commit 070abb6c7a4f6f1d158e26abbdff487644a52959 Author: kassam Date: Wed Aug 5 14:11:32 2026 +0400 Update 2026-08-05 14:11:31 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c02264b --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +__pycache__/ +*.pyc +Logs/ +*.log diff --git a/Audio_Recorder/DataG1/greeting.wav b/Audio_Recorder/DataG1/greeting.wav new file mode 100644 index 0000000..4d74e4b Binary files /dev/null and b/Audio_Recorder/DataG1/greeting.wav differ diff --git a/Audio_Recorder/g1_audio_devices.py b/Audio_Recorder/g1_audio_devices.py new file mode 100644 index 0000000..00a23fb --- /dev/null +++ b/Audio_Recorder/g1_audio_devices.py @@ -0,0 +1,271 @@ +#!/usr/bin/env python3 +""" +G1 AUDIO DEVICES — PulseAudio source/sink enumeration + Hollyland auto-setup. + +Pure-Python wrapper around `pactl`. No PulseAudio Python bindings required. +Safe to run on workstation or on the robot. + +Capabilities: + list — list every PulseAudio source and sink + find — find a source/sink by substring (case-insensitive) + auto-hollyland — detect Hollyland wireless mic, unmute, set default, volume 100% + quick-test — record 2 s from source via parec and report stats + mute — set-source-mute 1 + unmute — set-source-mute 0 + volume <%> — set-source-volume % + +See voice_note.txt for why parec is preferred over PyAudio on the robot. + +Usage: + python3 g1_audio_devices.py list + python3 g1_audio_devices.py find hollyland + python3 g1_audio_devices.py auto-hollyland + python3 g1_audio_devices.py quick-test 3 +""" + +from __future__ import annotations + +import argparse +import subprocess +import sys +import tempfile +from dataclasses import dataclass +from pathlib import Path +from typing import Iterable + + +HOLLYLAND_KEYWORDS = ("hollyland", "wireless_microphone", "shenzhen_hollyland") +ANKER_KEYWORDS = ("anker", "powerconf") + + +@dataclass +class PulseDevice: + index: int + name: str + description: str + state: str + mute: bool | None = None + volume_pct: int | None = None + + +def _run(cmd: list[str]) -> tuple[int, str, str]: + try: + p = subprocess.run(cmd, capture_output=True, text=True) + except FileNotFoundError: + tool = cmd[0] + print( + f"error: `{tool}` not on PATH. Install PulseAudio tools " + f"(e.g. `sudo apt install pulseaudio-utils`) or run this on the robot.", + file=sys.stderr, + ) + sys.exit(127) + return p.returncode, p.stdout, p.stderr + + +def _list(kind: str) -> list[PulseDevice]: + """kind = 'sources' or 'sinks'.""" + rc, out, _ = _run(["pactl", "list", "short", kind]) + devices: list[PulseDevice] = [] + if rc != 0: + return devices + for line in out.splitlines(): + parts = line.split("\t") + if len(parts) < 4: + continue + idx, name, _driver, _format = parts[0], parts[1], parts[2], parts[3] + state = parts[4] if len(parts) > 4 else "" + devices.append(PulseDevice(int(idx), name, "", state)) + # Enrich with mute + volume from `pactl list {sources,sinks}` (long form). + rc, long_out, _ = _run(["pactl", "list", kind]) + if rc != 0: + return devices + blocks = long_out.split("\n\n") + for block in blocks: + lines = block.strip().splitlines() + if not lines: + continue + try: + header_idx = int(lines[0].split("#")[-1].strip()) + except ValueError: + continue + mute = None + volume = None + desc = "" + for ln in lines: + s = ln.strip() + if s.startswith("Mute:"): + mute = s.endswith("yes") + elif s.startswith("Volume:"): + # "Volume: front-left: 65536 / 100% / 0.00 dB, ..." + pct_token = None + for tok in s.split(): + if tok.endswith("%") and tok[:-1].lstrip("-").isdigit(): + pct_token = tok + break + if pct_token: + try: + volume = int(pct_token.rstrip("%")) + except ValueError: + pass + elif s.startswith("Description:"): + desc = s.split(":", 1)[1].strip() + for d in devices: + if d.index == header_idx: + d.mute = mute + d.volume_pct = volume + if desc and not d.description: + d.description = desc + break + return devices + + +def list_sources() -> list[PulseDevice]: + return _list("sources") + + +def list_sinks() -> list[PulseDevice]: + return _list("sinks") + + +def find_by_keywords( + devices: Iterable[PulseDevice], keywords: tuple[str, ...] +) -> PulseDevice | None: + for d in devices: + haystack = f"{d.name} {d.description}".lower() + if any(k in haystack for k in keywords): + return d + return None + + +def pprint_devices(title: str, devices: Iterable[PulseDevice]) -> None: + print(f"\n{title}") + print("-" * len(title)) + if not devices: + print(" (none)") + return + for d in devices: + mute = "muted" if d.mute else "ok" + vol = f"{d.volume_pct}%" if d.volume_pct is not None else "?" + print(f" [{d.index:>2}] {d.name}") + if d.description: + print(f" desc: {d.description}") + print(f" state={d.state} {mute} vol={vol}") + + +def set_mute(index: int, mute: bool) -> None: + _run(["pactl", "set-source-mute", str(index), "1" if mute else "0"]) + + +def set_volume(index: int, pct: int) -> None: + _run(["pactl", "set-source-volume", str(index), f"{pct}%"]) + + +def set_default_source(name: str) -> None: + _run(["pactl", "set-default-source", name]) + + +def auto_hollyland() -> int: + """Follow the voice_note.txt recipe to bring the Hollyland mic online.""" + sources = list_sources() + mic = find_by_keywords(sources, HOLLYLAND_KEYWORDS) + if mic is None: + print("Hollyland mic not found. Plug it in and retry.") + pprint_devices("Current sources", sources) + return 1 + print(f"Found: [{mic.index}] {mic.name}") + set_default_source(mic.name) + set_mute(mic.index, False) + set_volume(mic.index, 100) + print(f"Set as default source, unmuted, volume 100%.") + return quick_test_capture(mic.index, seconds=2) + + +def quick_test_capture(index: int, seconds: float = 2.0) -> int: + """Record a few seconds with parec and report sample statistics.""" + import numpy as np + + with tempfile.NamedTemporaryFile(suffix=".pcm", delete=False) as tmp: + tmp_path = Path(tmp.name) + cmd = [ + "parec", "-d", str(index), + "--format=s16le", "--rate=16000", "--channels=1", "--raw", + ] + print(f"Capturing {seconds:.1f}s from source {index} ...") + proc = subprocess.Popen(cmd, stdout=open(tmp_path, "wb")) + try: + proc.wait(timeout=seconds + 2) + except subprocess.TimeoutExpired: + proc.terminate() + finally: + proc.poll() + try: + data = np.fromfile(tmp_path, dtype=np.int16) + finally: + tmp_path.unlink(missing_ok=True) + + if data.size == 0: + print(" No samples captured. Check device index and that parec is installed.") + return 2 + rms = float((data.astype("float32") ** 2).mean()) ** 0.5 + peak = int(abs(data).max()) + print(f" samples={data.size} peak={peak} rms={rms:.0f}") + if rms > 50: + print(" MIC WORKS.") + return 0 + print(" Signal looks silent — check transmitter is on + mic not muted + volume up.") + return 3 + + +def main() -> int: + p = argparse.ArgumentParser(description="G1 audio device helper (pactl wrapper)") + sub = p.add_subparsers(dest="cmd", required=True) + sub.add_parser("list", help="List sources and sinks") + f = sub.add_parser("find", help="Find a device by substring") + f.add_argument("keyword") + sub.add_parser("auto-hollyland", help="Auto-detect Hollyland mic and set up") + q = sub.add_parser("quick-test", help="Record 2s from a source and report") + q.add_argument("index", type=int) + q.add_argument("--seconds", type=float, default=2.0) + m = sub.add_parser("mute", help="Mute a source") + m.add_argument("index", type=int) + u = sub.add_parser("unmute", help="Unmute a source") + u.add_argument("index", type=int) + v = sub.add_parser("volume", help="Set source volume percent") + v.add_argument("index", type=int) + v.add_argument("percent", type=int) + args = p.parse_args() + + if args.cmd == "list": + pprint_devices("SOURCES (mics)", list_sources()) + pprint_devices("SINKS (speakers)", list_sinks()) + return 0 + if args.cmd == "find": + kw = args.keyword.lower() + src = find_by_keywords(list_sources(), (kw,)) + snk = find_by_keywords(list_sinks(), (kw,)) + if src: + print(f"source [{src.index}] {src.name}") + if snk: + print(f"sink [{snk.index}] {snk.name}") + if not src and not snk: + print(f"No device matches '{args.keyword}'") + return 1 + return 0 + if args.cmd == "auto-hollyland": + return auto_hollyland() + if args.cmd == "quick-test": + return quick_test_capture(args.index, args.seconds) + if args.cmd == "mute": + set_mute(args.index, True) + return 0 + if args.cmd == "unmute": + set_mute(args.index, False) + return 0 + if args.cmd == "volume": + set_volume(args.index, args.percent) + return 0 + return 1 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/Audio_Recorder/g1_edge_tts.py b/Audio_Recorder/g1_edge_tts.py new file mode 100644 index 0000000..4f276d9 --- /dev/null +++ b/Audio_Recorder/g1_edge_tts.py @@ -0,0 +1,165 @@ +#!/usr/bin/env python3 +""" +G1 EDGE-TTS — Text to G1 speaker via Microsoft Edge TTS (no API key). + +Pipeline matches Marcus's working path documented in voice_note.txt: + edge-tts → MP3 bytes → pydub 16 kHz mono WAV + → _CallRequestWithParamAndBin on G1 AudioClient + +Voices (defaults): + Arabic ar-AE-HamdanNeural (UAE male) + English en-US-GuyNeural (US male) + +Runs on robot (has AudioClient) OR on workstation (save WAV only with --save). + +Requirements: + pip install edge-tts pydub numpy + (on robot use the gemini conda env which has the audio SDK methods) + +Usage: + # Speak directly on G1 speaker: + python3 g1_edge_tts.py "مرحبا بكم" --lang ar + python3 g1_edge_tts.py "Hello welcome to Lootah" --lang en + + # Just save a WAV (no robot needed): + python3 g1_edge_tts.py "Good morning" --save greeting.wav + + # Override voice: + python3 g1_edge_tts.py "test" --lang ar --voice ar-SA-HamedNeural +""" + +from __future__ import annotations + +import argparse +import asyncio +import io +import json +import sys +import time +import wave +from pathlib import Path + +import numpy as np + +DEFAULT_VOICES = { + "ar": "ar-AE-HamdanNeural", + "en": "en-US-GuyNeural", +} +TARGET_RATE = 16000 +APP_NAME = "edge_tts" + + +async def _synthesize(text: str, voice: str) -> bytes: + """Call edge-tts and return raw MP3 bytes.""" + import edge_tts # lazy import — only needed when actually speaking + + communicate = edge_tts.Communicate(text=text, voice=voice) + buf = io.BytesIO() + async for chunk in communicate.stream(): + if chunk["type"] == "audio": + buf.write(chunk["data"]) + return buf.getvalue() + + +def _mp3_to_pcm16k(mp3: bytes) -> np.ndarray: + """Decode MP3 → 16 kHz mono int16.""" + from pydub import AudioSegment # lazy — pulls ffmpeg at import time + + seg = AudioSegment.from_file(io.BytesIO(mp3), format="mp3") + seg = seg.set_channels(1).set_frame_rate(TARGET_RATE).set_sample_width(2) + return np.frombuffer(seg.raw_data, dtype=np.int16) + + +def save_wav(pcm: np.ndarray, path: Path) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + with wave.open(str(path), "wb") as wf: + wf.setnchannels(1) + wf.setsampwidth(2) + wf.setframerate(TARGET_RATE) + wf.writeframes(pcm.tobytes()) + + +def _play_on_g1(pcm: np.ndarray, interface: str = "eth0", volume: int = 100) -> float: + """Single-call _CallRequestWithParamAndBin — the working method.""" + from unitree_sdk2py.core.channel import ChannelFactoryInitialize + from unitree_sdk2py.g1.audio.g1_audio_client import AudioClient + from unitree_sdk2py.g1.audio.g1_audio_api import ( + ROBOT_API_ID_AUDIO_START_PLAY, + ROBOT_API_ID_AUDIO_STOP_PLAY, + ) + + ChannelFactoryInitialize(0, interface) + c = AudioClient() + c.SetTimeout(10.0) + c.Init() + c.SetVolume(volume) + + c._Call(ROBOT_API_ID_AUDIO_STOP_PLAY, json.dumps({"app_name": APP_NAME})) + time.sleep(0.3) + + pcm_bytes = pcm.tobytes() + duration = len(pcm) / TARGET_RATE + sid = f"s_{int(time.time() * 1000)}" + param = json.dumps({ + "app_name": APP_NAME, + "stream_id": sid, + "sample_rate": TARGET_RATE, + "channels": 1, + "bits_per_sample": 16, + }) + start = time.time() + c._CallRequestWithParamAndBin( + ROBOT_API_ID_AUDIO_START_PLAY, param, list(pcm_bytes) + ) + time.sleep(duration + 0.5) + c._Call(ROBOT_API_ID_AUDIO_STOP_PLAY, json.dumps({"app_name": APP_NAME})) + return time.time() - start + + +def main() -> int: + p = argparse.ArgumentParser(description="Edge-TTS → G1 speaker (AR + EN)") + p.add_argument("text", help="Text to speak (wrap in quotes)") + p.add_argument("--lang", choices=["ar", "en"], default="en", + help="Language (default: en)") + p.add_argument("--voice", default=None, + help="Override voice (e.g. ar-SA-HamedNeural)") + p.add_argument("--save", metavar="PATH", + help="Also save the synthesized 16 kHz WAV to PATH") + p.add_argument("--no-play", action="store_true", + help="Skip G1 playback; useful with --save from workstation") + p.add_argument("--interface", default="eth0", help="DDS interface (default: eth0)") + p.add_argument("--volume", type=int, default=100, help="Speaker volume 0-100") + args = p.parse_args() + + voice = args.voice or DEFAULT_VOICES[args.lang] + print(f"Synthesizing ({args.lang}, voice={voice}) ...") + t0 = time.time() + try: + mp3 = asyncio.run(_synthesize(args.text, voice)) + except Exception as exc: + print(f"edge-tts failed: {exc}", file=sys.stderr) + return 1 + pcm = _mp3_to_pcm16k(mp3) + dur = len(pcm) / TARGET_RATE + print(f" {len(mp3):,} MP3 bytes -> {dur:.1f}s WAV ({time.time() - t0:.1f}s synth)") + + if args.save: + save_path = Path(args.save) + save_wav(pcm, save_path) + print(f" saved {save_path} ({save_path.stat().st_size/1024:.1f} KB)") + + if args.no_play: + return 0 + + try: + elapsed = _play_on_g1(pcm, args.interface, args.volume) + print(f"Played on G1 ({elapsed:.1f}s).") + except Exception as exc: + print(f"G1 playback failed: {exc}", file=sys.stderr) + print("Hint: run this on the robot inside the gemini conda env.") + return 2 + return 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/Audio_Recorder/g1_interactive_player.py b/Audio_Recorder/g1_interactive_player.py new file mode 100644 index 0000000..115cc47 --- /dev/null +++ b/Audio_Recorder/g1_interactive_player.py @@ -0,0 +1,184 @@ +#!/usr/bin/env python3 +""" +G1 Interactive Voice Player +---------------------------- +Lists WAV files and lets you pick which ones to play on the G1 built-in speaker. +Uses _CallRequestWithParamAndBin with format params (the working method). + +Usage (run ON the robot): + python3 g1_interactive_player.py "/home/unitree/SanadVoice/recorded voices" + python3 g1_interactive_player.py "/home/unitree/SanadVoice/recorded voices" --volume 80 +""" + +import sys +import time +import wave +import json +import argparse +import numpy as np +from pathlib import Path +from unitree_sdk2py.core.channel import ChannelFactoryInitialize +from unitree_sdk2py.g1.audio.g1_audio_client import AudioClient +from unitree_sdk2py.g1.audio.g1_audio_api import ( + ROBOT_API_ID_AUDIO_START_PLAY, + ROBOT_API_ID_AUDIO_STOP_PLAY, +) + +TARGET_RATE = 16000 +APP_NAME = "p" + + +def load_wav(path: str): + with wave.open(path, "rb") as wf: + rate = wf.getframerate() + nch = wf.getnchannels() + audio = np.frombuffer(wf.readframes(wf.getnframes()), dtype=np.int16) + + if nch == 2: + audio = audio.reshape(-1, 2).mean(axis=1).astype(np.int16) + + if rate != TARGET_RATE: + tl = int(len(audio) * TARGET_RATE / rate) + audio = np.interp( + np.linspace(0, len(audio), tl, endpoint=False), + np.arange(len(audio)), + audio.astype(np.float64), + ).astype(np.int16) + + return audio + + +def play_pcm(client, pcm: np.ndarray): + # Single call with a unique stream_id — chunked repeats with the same sid + # are dropped by the audio service, per voice_note.txt. + client._Call(ROBOT_API_ID_AUDIO_STOP_PLAY, json.dumps({"app_name": APP_NAME})) + time.sleep(0.2) + + pcm_bytes = pcm.tobytes() + duration = len(pcm) / TARGET_RATE + sid = f"s_{int(time.time() * 1000)}" + param = json.dumps({ + "app_name": APP_NAME, + "stream_id": sid, + "sample_rate": TARGET_RATE, + "channels": 1, + "bits_per_sample": 16, + }) + + start = time.time() + client._CallRequestWithParamAndBin( + ROBOT_API_ID_AUDIO_START_PLAY, param, list(pcm_bytes) + ) + time.sleep(duration + 0.3) + client._Call(ROBOT_API_ID_AUDIO_STOP_PLAY, json.dumps({"app_name": APP_NAME})) + return time.time() - start + + +def show_menu(wavs): + print(f"\n{'#':<4} {'Name':<45} {'Duration':>8}") + print("-" * 59) + for i, (p, dur) in enumerate(wavs): + print(f"{i:<4} {p.stem:<45} {dur:>6.1f}s") + print("-" * 59) + print(f"{'a':<4} {'Play ALL':<45}") + print(f"{'m':<4} {'Show menu':<45}") + print(f"{'q':<4} {'Quit':<45}") + print() + + +def main(): + parser = argparse.ArgumentParser(description="G1 Interactive Voice Player") + parser.add_argument("directory", help="Directory containing WAV files") + parser.add_argument("--volume", "-v", type=int, default=100, help="Volume 0-100") + parser.add_argument("--interface", "-i", default="eth0", help="Network interface") + + args = parser.parse_args() + + wav_dir = Path(args.directory) + if not wav_dir.is_dir(): + print(f"Not a directory: {wav_dir}") + sys.exit(1) + + wav_files = [] + for p in sorted(wav_dir.glob("*.wav")): + try: + with wave.open(str(p), "rb") as wf: + dur = wf.getnframes() / wf.getframerate() + wav_files.append((p, dur)) + except Exception: + pass + + if not wav_files: + print(f"No WAV files found in {wav_dir}") + sys.exit(1) + + print(f"Connecting to G1 speaker...") + ChannelFactoryInitialize(0, args.interface) + client = AudioClient() + client.SetTimeout(10.0) + client.Init() + client.SetVolume(args.volume) + print(f"Ready. Volume: {args.volume}%") + + show_menu(wav_files) + + while True: + try: + choice = input("Pick a number (or a/m/q): ").strip().lower() + except (KeyboardInterrupt, EOFError): + print("\nBye.") + break + + if choice == "q": + print("Bye.") + break + + if choice == "m": + show_menu(wav_files) + continue + + if choice == "a": + print(f"\nPlaying all {len(wav_files)} files...\n") + for i, (p, dur) in enumerate(wav_files): + print(f" [{i+1}/{len(wav_files)}] {p.stem} ({dur:.1f}s)...", end=" ", flush=True) + pcm = load_wav(str(p)) + elapsed = play_pcm(client, pcm) + print(f"done ({elapsed:.1f}s)") + time.sleep(0.5) + print("\nAll done.\n") + continue + + indices = [] + for part in choice.replace(" ", "").split(","): + if "-" in part: + try: + a, b = part.split("-", 1) + indices.extend(range(int(a), int(b) + 1)) + except ValueError: + pass + else: + try: + indices.append(int(part)) + except ValueError: + pass + + if not indices: + print("Invalid. Enter number, range (2-5), list (1,3,5), a, m, or q.") + continue + + for idx in indices: + if idx < 0 or idx >= len(wav_files): + print(f" #{idx} out of range, skipping.") + continue + + p, dur = wav_files[idx] + print(f" Playing: {p.stem} ({dur:.1f}s)...", end=" ", flush=True) + pcm = load_wav(str(p)) + elapsed = play_pcm(client, pcm) + print(f"done ({elapsed:.1f}s)") + + print() + + +if __name__ == "__main__": + main() diff --git a/Audio_Recorder/g1_play_wav.py b/Audio_Recorder/g1_play_wav.py new file mode 100644 index 0000000..fd502ca --- /dev/null +++ b/Audio_Recorder/g1_play_wav.py @@ -0,0 +1,168 @@ +#!/usr/bin/env python3 +""" +G1 WAV Player — plays WAV files through the G1 built-in speaker. +Runs ON the robot via AudioClient._CallRequestWithParamAndBin. + +(PlayStream chunked mode is unreliable — see voice_note.txt.) + +Usage: + python3 g1_play_wav.py + python3 g1_play_wav.py --volume 80 + python3 g1_play_wav.py --list + python3 g1_play_wav.py --all + +Examples: + python3 g1_play_wav.py "/home/unitree/SanadVoice/recorded voices/welcome_single.wav" + python3 g1_play_wav.py --list "/home/unitree/SanadVoice/recorded voices" + python3 g1_play_wav.py --all "/home/unitree/SanadVoice/recorded voices" +""" + +import sys +import time +import wave +import json +import argparse +import numpy as np +from pathlib import Path +from unitree_sdk2py.core.channel import ChannelFactoryInitialize +from unitree_sdk2py.g1.audio.g1_audio_client import AudioClient +from unitree_sdk2py.g1.audio.g1_audio_api import ( + ROBOT_API_ID_AUDIO_START_PLAY, + ROBOT_API_ID_AUDIO_STOP_PLAY, +) + +TARGET_RATE = 16000 +APP_NAME = "g1_player" + + +def init_client(interface: str = "eth0", volume: int = 100): + ChannelFactoryInitialize(0, interface) + client = AudioClient() + client.SetTimeout(10.0) + client.Init() + client.SetVolume(volume) + return client + + +def load_wav(path: str): + """Load WAV and convert to 16kHz mono 16-bit PCM.""" + with wave.open(path, "rb") as wf: + rate = wf.getframerate() + nch = wf.getnchannels() + audio = np.frombuffer(wf.readframes(wf.getnframes()), dtype=np.int16) + + if nch == 2: + audio = audio.reshape(-1, 2).mean(axis=1).astype(np.int16) + + if rate != TARGET_RATE: + target_len = int(len(audio) * TARGET_RATE / rate) + audio = np.interp( + np.linspace(0, len(audio), target_len, endpoint=False), + np.arange(len(audio)), + audio.astype(np.float64), + ).astype(np.int16) + + return audio + + +def play_wav(client, pcm: np.ndarray, label: str = ""): + """Send PCM to G1 speaker in ONE call (the working method).""" + pcm_bytes = pcm.tobytes() + duration = len(pcm) / TARGET_RATE + + if label: + print(f" {label} ({duration:.1f}s)...", end=" ", flush=True) + else: + print(f" Playing {duration:.1f}s...", end=" ", flush=True) + + client._Call(ROBOT_API_ID_AUDIO_STOP_PLAY, json.dumps({"app_name": APP_NAME})) + time.sleep(0.2) + + sid = f"s_{int(time.time() * 1000)}" + param = json.dumps({ + "app_name": APP_NAME, + "stream_id": sid, + "sample_rate": TARGET_RATE, + "channels": 1, + "bits_per_sample": 16, + }) + + start = time.time() + client._CallRequestWithParamAndBin( + ROBOT_API_ID_AUDIO_START_PLAY, param, list(pcm_bytes) + ) + time.sleep(duration + 0.5) + client._Call(ROBOT_API_ID_AUDIO_STOP_PLAY, json.dumps({"app_name": APP_NAME})) + print(f"done ({time.time() - start:.1f}s)") + + +def list_wavs(directory: str): + """List all WAV files in a directory.""" + wavs = sorted(Path(directory).glob("*.wav")) + if not wavs: + print(f"No WAV files in {directory}") + return [] + + print(f"\n{'#':<4} {'Name':<40} {'Duration':>10}") + print("-" * 56) + for i, p in enumerate(wavs): + try: + with wave.open(str(p), "rb") as wf: + dur = wf.getnframes() / wf.getframerate() + print(f"{i:<4} {p.stem:<40} {dur:>8.1f}s") + except Exception as e: + print(f"{i:<4} {p.stem:<40} {'ERROR':>10}") + print() + return wavs + + +def main(): + parser = argparse.ArgumentParser(description="G1 WAV Player (runs on robot)") + parser.add_argument("path", nargs="?", help="WAV file or directory path") + parser.add_argument("--list", metavar="DIR", help="List WAV files in directory") + parser.add_argument("--all", metavar="DIR", help="Play all WAV files in directory") + parser.add_argument("--volume", "-v", type=int, default=100, help="Volume 0-100") + parser.add_argument("--interface", "-i", default="eth0", help="Network interface") + parser.add_argument("--pause", "-p", type=float, default=1.0, + help="Pause between files in --all mode (seconds)") + + args = parser.parse_args() + + if args.list: + list_wavs(args.list) + return + + if args.all: + wavs = sorted(Path(args.all).glob("*.wav")) + if not wavs: + print(f"No WAV files in {args.all}") + return + + client = init_client(args.interface, args.volume) + print(f"\nPlaying {len(wavs)} files from {args.all}\n") + + for i, wav_path in enumerate(wavs): + pcm = load_wav(str(wav_path)) + play_wav(client, pcm, label=f"[{i+1}/{len(wavs)}] {wav_path.stem}") + if i < len(wavs) - 1: + time.sleep(args.pause) + + print(f"\nAll done.") + return + + if not args.path: + parser.print_help() + return + + path = Path(args.path) + if not path.exists(): + print(f"File not found: {path}") + sys.exit(1) + + client = init_client(args.interface, args.volume) + pcm = load_wav(str(path)) + play_wav(client, pcm, label=path.stem) + + +if __name__ == "__main__": + main() diff --git a/Audio_Recorder/g1_tts_arabic.py b/Audio_Recorder/g1_tts_arabic.py new file mode 100644 index 0000000..b92fc37 --- /dev/null +++ b/Audio_Recorder/g1_tts_arabic.py @@ -0,0 +1,342 @@ +#!/usr/bin/env python3 +""" +G1 Arabic TTS — Offline text-to-speech with playback on G1 built-in speaker. +Supports Piper TTS (recommended) and tts_arabic as backends. + +Install on robot (gemini env): + pip install piper-tts + # First run auto-downloads Arabic voice model (~50MB) + +Usage (run ON the robot): + python3 g1_tts_arabic.py "مرحبا بكم في لوتاه" + python3 g1_tts_arabic.py "مرحبا" --save "/home/unitree/SanadVoice/recorded voices/marhaba.wav" + python3 g1_tts_arabic.py --interactive + python3 g1_tts_arabic.py "Hello welcome" --lang en + python3 g1_tts_arabic.py --list-voices +""" + +import argparse +import io +import json +import os +import sys +import time +import wave +import numpy as np + +TARGET_RATE = 16000 +DDS_IFACE = "eth0" + + +def _init_g1_audio(): + """Initialize G1 AudioClient.""" + from unitree_sdk2py.core.channel import ChannelFactoryInitialize + from unitree_sdk2py.g1.audio.g1_audio_client import AudioClient + ChannelFactoryInitialize(0, DDS_IFACE) + client = AudioClient() + client.SetTimeout(10.0) + client.Init() + client.SetVolume(100) + return client + + +def _play_on_g1(client, audio_16k: np.ndarray): + """Play 16kHz mono int16 audio on G1 speaker.""" + from unitree_sdk2py.g1.audio.g1_audio_api import ( + ROBOT_API_ID_AUDIO_START_PLAY, + ROBOT_API_ID_AUDIO_STOP_PLAY, + ) + + client._Call(ROBOT_API_ID_AUDIO_STOP_PLAY, json.dumps({"app_name": "tts"})) + time.sleep(0.3) + + pcm = audio_16k.tobytes() + sid = f"s_{int(time.time() * 1000)}" + param = json.dumps({ + "app_name": "tts", + "stream_id": sid, + "sample_rate": TARGET_RATE, + "channels": 1, + "bits_per_sample": 16, + }) + client._CallRequestWithParamAndBin(ROBOT_API_ID_AUDIO_START_PLAY, param, list(pcm)) + + duration = len(audio_16k) / TARGET_RATE + time.sleep(duration + 0.5) + client._Call(ROBOT_API_ID_AUDIO_STOP_PLAY, json.dumps({"app_name": "tts"})) + return duration + + +def _resample(audio: np.ndarray, src_rate: int) -> np.ndarray: + """Resample to 16kHz.""" + if src_rate == TARGET_RATE: + return audio + tl = int(len(audio) * TARGET_RATE / src_rate) + return np.interp( + np.linspace(0, len(audio), tl, endpoint=False), + np.arange(len(audio)), + audio.astype(np.float64), + ).astype(np.int16) + + +def _save_wav(path: str, audio: np.ndarray, rate: int = TARGET_RATE): + """Save audio as WAV file.""" + wf = wave.open(path, "wb") + wf.setnchannels(1) + wf.setsampwidth(2) + wf.setframerate(rate) + wf.writeframes(audio.tobytes()) + wf.close() + + +# ─── PIPER TTS BACKEND ────────────────────────────────────── + +def tts_piper(text: str, voice: str = "ar_JO-kareem-medium", speaker: int = None): + """Generate speech using Piper TTS. Returns (audio_int16, sample_rate).""" + try: + import subprocess + # Use piper CLI — most reliable on ARM64 + cmd = ["piper", "--model", voice, "--output_raw"] + if speaker is not None: + cmd += ["--speaker", str(speaker)] + + proc = subprocess.run( + cmd, input=text.encode("utf-8"), + capture_output=True, timeout=30, + ) + + if proc.returncode != 0: + stderr = proc.stderr.decode() + # If model not found, try downloading + if "not found" in stderr.lower() or "No such file" in stderr: + print(f" Downloading voice model '{voice}'...") + proc = subprocess.run( + cmd, input=text.encode("utf-8"), + capture_output=True, timeout=120, + ) + + if proc.returncode != 0: + raise RuntimeError(f"Piper error: {proc.stderr.decode()[:200]}") + + # Piper outputs raw 16-bit mono PCM at 22050Hz by default + audio = np.frombuffer(proc.stdout, dtype=np.int16) + return audio, 22050 + + except FileNotFoundError: + raise RuntimeError("Piper not installed. Run: pip install piper-tts") + + +def tts_piper_python(text: str, voice: str = "ar_JO-kareem-medium"): + """Generate speech using Piper Python API.""" + try: + from piper import PiperVoice + + model_path = os.path.expanduser(f"~/.local/share/piper-voices/{voice}.onnx") + if not os.path.exists(model_path): + # Try auto-download via CLI first + print(f" Model not found at {model_path}") + print(f" Run: piper --model {voice} --output_raw <<< 'test'") + raise FileNotFoundError(model_path) + + pv = PiperVoice.load(model_path) + buf = io.BytesIO() + with wave.open(buf, "wb") as wf: + pv.synthesize(text, wf) + + buf.seek(0) + with wave.open(buf, "rb") as wf: + rate = wf.getframerate() + audio = np.frombuffer(wf.readframes(wf.getnframes()), dtype=np.int16) + + return audio, rate + + except ImportError: + raise RuntimeError("Piper not installed. Run: pip install piper-tts") + + +# ─── ESPEAK BACKEND (FALLBACK) ────────────────────────────── + +def tts_espeak(text: str, lang: str = "ar", speed: int = 130): + """Generate speech using espeak-ng. Low quality but always available.""" + import subprocess + + wav_path = "/tmp/_espeak_tts.wav" + cmd = ["espeak-ng", "-v", lang, "-s", str(speed), "-w", wav_path, text] + proc = subprocess.run(cmd, capture_output=True) + + if proc.returncode != 0: + raise RuntimeError(f"espeak-ng error: {proc.stderr.decode()[:200]}") + + with wave.open(wav_path, "rb") as wf: + rate = wf.getframerate() + audio = np.frombuffer(wf.readframes(wf.getnframes()), dtype=np.int16) + + os.unlink(wav_path) + return audio, rate + + +# ─── UNIFIED TTS ───────────────────────────────────────────── + +def synthesize(text: str, backend: str = "auto", lang: str = "ar", voice: str = None): + """Synthesize text to audio. Returns (audio_int16_16kHz, duration).""" + + if backend == "auto": + # Try piper first, fall back to espeak + for try_backend in ["piper", "espeak"]: + try: + return synthesize(text, backend=try_backend, lang=lang, voice=voice) + except RuntimeError as e: + print(f" {try_backend} failed: {e}") + continue + raise RuntimeError("No TTS backend available!") + + if backend == "piper": + if voice is None: + voice = "ar_JO-kareem-medium" if lang == "ar" else "en_US-lessac-medium" + audio, rate = tts_piper(text, voice=voice) + + elif backend == "espeak": + audio, rate = tts_espeak(text, lang=lang) + + else: + raise ValueError(f"Unknown backend: {backend}") + + # Resample to 16kHz + audio_16k = _resample(audio, rate) + duration = len(audio_16k) / TARGET_RATE + + return audio_16k, duration + + +# ─── COMMANDS ───────────────────────────────────────────────── + +def cmd_speak(args): + """Synthesize and play on G1.""" + text = args.text + print(f'Text: "{text}"') + print(f"Backend: {args.backend}, lang: {args.lang}") + + audio, duration = synthesize(text, backend=args.backend, lang=args.lang, voice=args.voice) + print(f"Generated: {duration:.1f}s") + + if args.save: + _save_wav(args.save, audio) + print(f"Saved: {args.save}") + + if not args.no_play: + print("Playing on G1...") + client = _init_g1_audio() + _play_on_g1(client, audio) + print("Done.") + + +def cmd_interactive(args): + """Interactive Arabic TTS loop.""" + print("G1 Arabic TTS — Interactive Mode") + print("Type Arabic (or English) text, press Enter to speak.") + print("Commands: /lang ar|en, /voice , /backend piper|espeak, /quit\n") + + client = _init_g1_audio() + lang = "ar" + backend = args.backend + voice = args.voice + + while True: + try: + text = input(f"[{lang}] > ").strip() + except (KeyboardInterrupt, EOFError): + print("\nBye.") + break + + if not text: + continue + + if text.startswith("/"): + parts = text.split() + cmd = parts[0] + if cmd == "/quit": + break + elif cmd == "/lang" and len(parts) > 1: + lang = parts[1] + print(f" Language: {lang}") + elif cmd == "/voice" and len(parts) > 1: + voice = parts[1] + print(f" Voice: {voice}") + elif cmd == "/backend" and len(parts) > 1: + backend = parts[1] + print(f" Backend: {backend}") + elif cmd == "/save" and len(parts) > 1: + save_path = " ".join(parts[1:]) + print(f" Next speech will be saved to: {save_path}") + else: + print(" Commands: /lang ar|en, /voice , /backend piper|espeak, /quit") + continue + + try: + audio, duration = synthesize(text, backend=backend, lang=lang, voice=voice) + print(f" {duration:.1f}s — playing...", end=" ", flush=True) + _play_on_g1(client, audio) + print("done") + except Exception as e: + print(f" Error: {e}") + + +def cmd_list_voices(args): + """List available Piper voices.""" + import subprocess + + print("Piper Arabic voices:") + print(" ar_JO-kareem-low — Jordanian Arabic (low quality, fastest)") + print(" ar_JO-kareem-medium — Jordanian Arabic (medium quality, recommended)") + print() + print("Piper English voices:") + print(" en_US-lessac-medium — US English male") + print(" en_US-amy-medium — US English female") + print(" en_GB-alba-medium — British English") + print() + print("espeak-ng Arabic voices:") + try: + result = subprocess.run(["espeak-ng", "--voices=ar"], capture_output=True, text=True) + print(result.stdout) + except FileNotFoundError: + print(" espeak-ng not installed") + + +def main(): + parser = argparse.ArgumentParser( + description="G1 Arabic TTS — Offline text-to-speech on G1 speaker", + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog=""" +Examples: + %(prog)s "مرحبا بكم في لوتاه" + %(prog)s "مرحبا" --save marhaba.wav + %(prog)s "Hello" --lang en + %(prog)s --interactive + %(prog)s --list-voices + %(prog)s "مرحبا" --backend espeak + """, + ) + parser.add_argument("text", nargs="?", help="Text to speak") + parser.add_argument("--lang", "-l", default="ar", help="Language: ar, en (default: ar)") + parser.add_argument("--backend", "-b", default="auto", choices=["auto", "piper", "espeak"], + help="TTS backend (default: auto)") + parser.add_argument("--voice", "-V", default=None, help="Piper voice name") + parser.add_argument("--save", "-s", default=None, help="Save WAV to path") + parser.add_argument("--no-play", action="store_true", help="Don't play on G1, just save") + parser.add_argument("--interactive", "-i", action="store_true", help="Interactive mode") + parser.add_argument("--list-voices", action="store_true", help="List available voices") + + args = parser.parse_args() + + if args.list_voices: + cmd_list_voices(args) + elif args.interactive: + cmd_interactive(args) + elif args.text: + cmd_speak(args) + else: + parser.print_help() + + +if __name__ == "__main__": + main() diff --git a/Audio_Recorder/g1_tts_test.py b/Audio_Recorder/g1_tts_test.py new file mode 100644 index 0000000..07b20e7 --- /dev/null +++ b/Audio_Recorder/g1_tts_test.py @@ -0,0 +1,49 @@ +#!/usr/bin/env python3 +"""Test TTS on G1 built-in speaker — Arabic, English, Chinese.""" + +import sys +import time +from unitree_sdk2py.core.channel import ChannelFactoryInitialize +from unitree_sdk2py.g1.audio.g1_audio_client import AudioClient + +if len(sys.argv) < 2: + print(f"Usage: python3 {sys.argv[0]} ") + print(f" e.g. python3 {sys.argv[0]} eth0") + sys.exit(1) + +ChannelFactoryInitialize(0, sys.argv[1]) +c = AudioClient() +c.SetTimeout(10.0) +c.Init() +c.SetVolume(100) + +tests = [ + ("English", 0, "Hello, I am the Unitree G1 robot. Welcome to Lootah."), + ("English", 0, "How are you today? I hope you are doing well."), + ("Chinese", 0, "你好,我是宇树科技的人形机器人。欢迎光临。"), + ("Arabic", 0, "مرحبا، أنا الروبوت يونيتري جي وان. أهلا وسهلا بكم."), + ("Arabic", 0, "كيف حالك اليوم؟ أتمنى أن تكون بخير."), + ("English", 0, "Testing numbers: one, two, three, four, five."), + ("Arabic", 0, "واحد، اثنان، ثلاثة، أربعة، خمسة."), +] + +for lang, speaker_id, text in tests: + print(f"\n[{lang}] speaker_id={speaker_id}") + print(f" Text: {text}") + code = c.TtsMaker(text, speaker_id) + print(f" Return code: {code}") + # Wait proportional to text length + wait = max(3, len(text) * 0.08) + print(f" Waiting {wait:.1f}s...") + time.sleep(wait) + +# Try different speaker IDs for English +print("\n--- Testing different speaker IDs ---") +for sid in [0, 1, 2]: + text = "Hello, testing speaker ID." + print(f"\n speaker_id={sid}: '{text}'") + code = c.TtsMaker(text, sid) + print(f" code={code}") + time.sleep(4) + +print("\nDone. Which languages did you hear?") diff --git a/Audio_Recorder/g1_voice_deploy.py b/Audio_Recorder/g1_voice_deploy.py new file mode 100644 index 0000000..04b7a5a --- /dev/null +++ b/Audio_Recorder/g1_voice_deploy.py @@ -0,0 +1,479 @@ +#!/usr/bin/env python3 +""" +G1 Voice Deploy — Record on workstation, deploy & play on G1 robot. +Also sets up mic on robot and manages remote recordings. + +Usage (run from workstation): + python3 g1_voice_deploy.py setup-mic # Unmute & configure wireless mic on robot + python3 g1_voice_deploy.py record --name hi # Record from workstation mic, save locally + python3 g1_voice_deploy.py record-robot --name arabic_greeting --seconds 5 # Record from robot mic + python3 g1_voice_deploy.py play --name hi # Deploy & play on G1 speaker + python3 g1_voice_deploy.py play-robot --path "/home/unitree/SanadVoice/recorded voices/welcome_single.wav" + python3 g1_voice_deploy.py tts --text "Hello" # TTS on G1 speaker + python3 g1_voice_deploy.py list # List local recordings + python3 g1_voice_deploy.py list-robot # List recordings on robot +""" + +import argparse +import os +import subprocess +import sys +import time +import wave +import numpy as np +from pathlib import Path + +SCRIPT_DIR = Path(__file__).resolve().parent +DATA_DIR = SCRIPT_DIR / "DataG1" + +ROBOT_IP = "192.168.123.164" +ROBOT_USER = "unitree" +ROBOT_PYTHON = "/home/unitree/miniconda3/envs/gemini/bin/python3" +ROBOT_VOICES_DIR = "/home/unitree/SanadVoice/recorded voices" +ROBOT_DDS_IFACE = "eth0" + +SAMPLE_RATE = 16000 +CHANNELS = 1 +SAMPLE_WIDTH = 2 +CHUNK_SIZE = 4096 + +SSH_OPTS = ["-o", "StrictHostKeyChecking=no", "-o", "ConnectTimeout=5"] + + +def ssh_cmd(cmd: str, capture=True): + """Run a command on the robot via SSH.""" + target = f"{ROBOT_USER}@{ROBOT_IP}" + result = subprocess.run( + ["ssh"] + SSH_OPTS + [target, cmd], + capture_output=capture, text=True, + ) + if capture: + return result.returncode, result.stdout.strip(), result.stderr.strip() + return result.returncode, "", "" + + +def scp_to_robot(local_path: str, remote_path: str): + """Copy a file to the robot.""" + target = f"{ROBOT_USER}@{ROBOT_IP}" + ret = subprocess.run( + ["scp"] + SSH_OPTS + [local_path, f"{target}:{remote_path}"], + capture_output=True, text=True, + ) + return ret.returncode == 0 + + +def scp_from_robot(remote_path: str, local_path: str): + """Copy a file from the robot.""" + target = f"{ROBOT_USER}@{ROBOT_IP}" + ret = subprocess.run( + ["scp"] + SSH_OPTS + [f"{target}:{remote_path}", local_path], + capture_output=True, text=True, + ) + return ret.returncode == 0 + + +# ─── SETUP MIC ────────────────────────────────────────────── + +def cmd_setup_mic(args): + """Unmute and configure the wireless mic on the robot.""" + print("Setting up wireless mic on G1...\n") + + # List sources + code, out, _ = ssh_cmd("pactl list sources short") + print("PulseAudio sources:") + print(out) + print() + + # Find wireless mic source + mic_source = None + for line in out.split("\n"): + if "Wireless" in line or "Hollyland" in line: + mic_source = line.split("\t")[1] if "\t" in line else None + mic_index = line.split("\t")[0] if "\t" in line else None + break + + if not mic_source: + print("Wireless mic not found. Is it plugged in?") + return + + print(f"Found mic: {mic_source} (index {mic_index})") + + # Set as default, unmute, set volume + ssh_cmd(f"pactl set-default-source {mic_source}") + print(" Set as default source.") + + ssh_cmd(f"pactl set-source-mute {mic_index} 0") + print(" Unmuted.") + + ssh_cmd(f"pactl set-source-volume {mic_index} 100%") + print(" Volume set to 100%.") + + # Check mute status + code, out, _ = ssh_cmd(f'pactl list sources | grep -A 3 "Wireless" | grep Mute') + print(f" Status: {out.strip()}") + + # Verify recording + print("\n Verifying mic (2 second test)...") + ssh_cmd("timeout 2 parec -d 3 --format=s16le --rate=16000 --channels=1 --raw > /tmp/_mic_verify.pcm") + code, out, _ = ssh_cmd( + f'{ROBOT_PYTHON} -c "' + 'import numpy as np;' + 'a = np.fromfile(\'/tmp/_mic_verify.pcm\', dtype=np.int16);' + 'print(f\'samples={len(a)} std={a.std():.0f}\')' + '"' + ) + print(f" Result: {out}") + if "std=0" in out: + print(" WARNING: Mic is silent! Check transmitter is powered on.") + else: + print(" Mic is working!") + + +# ─── RECORD ON WORKSTATION ─────────────────────────────────── + +def cmd_record(args): + """Record from workstation microphone.""" + import pyaudio + + DATA_DIR.mkdir(parents=True, exist_ok=True) + out_path = DATA_DIR / f"{args.name}.wav" + + pa = pyaudio.PyAudio() + + # Find best input device + device_index = args.device + if device_index is None: + for i in range(pa.get_device_count()): + info = pa.get_device_info_by_index(i) + if info["maxInputChannels"] > 0: + name = info["name"] + if name in ("default", "pipewire") or "pulse" in name.lower(): + device_index = i + break + if device_index is None: + for i in range(pa.get_device_count()): + if pa.get_device_info_by_index(i)["maxInputChannels"] > 0: + device_index = i + break + + # Find supported rate + info = pa.get_device_info_by_index(device_index) + rec_rate = int(info["defaultSampleRate"]) + print(f"Using device [{device_index}] {info['name']} @ {rec_rate}Hz") + print(f"Recording {args.seconds}s... speak now!\n") + + stream = pa.open( + format=pyaudio.paInt16, channels=1, rate=rec_rate, + input=True, input_device_index=device_index, frames_per_buffer=CHUNK_SIZE, + ) + + frames = [] + total = int(rec_rate / CHUNK_SIZE * args.seconds) + start = time.time() + for i in range(total): + frames.append(stream.read(CHUNK_SIZE, exception_on_overflow=False)) + elapsed = time.time() - start + pct = min(elapsed / args.seconds, 1.0) + bar = "█" * int(30 * pct) + "░" * (30 - int(30 * pct)) + print(f"\r [{bar}] {elapsed:.1f}s / {args.seconds:.1f}s", end="", flush=True) + + stream.stop_stream() + stream.close() + pa.terminate() + print() + + # Resample to 16kHz + audio = np.frombuffer(b"".join(frames), dtype=np.int16) + if rec_rate != SAMPLE_RATE: + tl = int(len(audio) * SAMPLE_RATE / rec_rate) + audio = np.interp( + np.linspace(0, len(audio), tl, endpoint=False), + np.arange(len(audio)), audio.astype(np.float64), + ).astype(np.int16) + + wf = wave.open(str(out_path), "wb") + wf.setnchannels(1) + wf.setsampwidth(2) + wf.setframerate(SAMPLE_RATE) + wf.writeframes(audio.tobytes()) + wf.close() + + print(f"Saved: {out_path} ({len(audio)/SAMPLE_RATE:.1f}s, {out_path.stat().st_size/1024:.1f}KB)") + + +# ─── RECORD ON ROBOT ───────────────────────────────────────── + +def cmd_record_robot(args): + """Record from the wireless mic on the robot.""" + DATA_DIR.mkdir(parents=True, exist_ok=True) + seconds = args.seconds + remote_wav = f"/tmp/_rec_{args.name}.wav" + local_path = DATA_DIR / f"{args.name}.wav" + + record_code = ( + f"import time, subprocess, wave, numpy as np;" + f"print('Recording {seconds}s... speak now!');" + f"proc = subprocess.Popen(['parec','-d','3','--format=s16le','--rate=16000','--channels=1','--raw'], stdout=subprocess.PIPE);" + f"time.sleep({seconds});" + f"proc.terminate();" + f"raw = proc.stdout.read();" + f"audio = np.frombuffer(raw, dtype=np.int16);" + f"print(f'Recorded {{len(audio)}} samples, std={{audio.std():.0f}}');" + f"wf = wave.open('{remote_wav}', 'wb');" + f"wf.setnchannels(1); wf.setsampwidth(2); wf.setframerate(16000);" + f"wf.writeframes(audio.tobytes()); wf.close();" + f"print('Saved on robot')" + ) + + print(f"Recording {seconds}s from robot wireless mic...") + code, out, err = ssh_cmd(f'{ROBOT_PYTHON} -c "{record_code}"') + print(f" {out}") + if err: + print(f" stderr: {err}") + + # Download to workstation + print(f"Downloading to {local_path}...") + if scp_from_robot(remote_wav, str(local_path)): + print(f" Saved: {local_path}") + ssh_cmd(f"rm -f {remote_wav}") + else: + print(" Download failed!") + + # Also save on robot in recorded voices dir + remote_final = f"{ROBOT_VOICES_DIR}/{args.name}.wav" + ssh_cmd(f'cp "{remote_wav}" "{remote_final}" 2>/dev/null') + + +# ─── PLAY ON G1 ────────────────────────────────────────────── + +def cmd_play(args): + """Deploy a local WAV file to G1 and play on built-in speaker.""" + wav_path = DATA_DIR / f"{args.name}.wav" + if not wav_path.exists(): + print(f"Not found: {wav_path}") + cmd_list(args) + return + + with wave.open(str(wav_path), "rb") as wf: + dur = wf.getnframes() / wf.getframerate() + print(f"Loaded: {wav_path.name} ({dur:.1f}s)") + + # SCP to robot + remote_wav = f"/tmp/_play_{args.name}.wav" + print(f"Copying to robot...") + if not scp_to_robot(str(wav_path), remote_wav): + print(" SCP failed!") + return + print(" Copied.") + + # Play on robot + _play_remote_wav(remote_wav, dur) + + # Cleanup + ssh_cmd(f"rm -f {remote_wav}") + + +def cmd_play_robot(args): + """Play a WAV file that already exists on the robot.""" + # Get duration + code, out, _ = ssh_cmd( + f'{ROBOT_PYTHON} -c "import wave; ' + f"wf = wave.open('{args.path}', 'rb'); " + f"print(wf.getnframes() / wf.getframerate()); wf.close()" + '"' + ) + try: + dur = float(out) + except ValueError: + print(f"Cannot read: {args.path}") + print(f" {out}") + return + + print(f"Playing: {args.path} ({dur:.1f}s)") + _play_remote_wav(args.path, dur) + + +def _play_remote_wav(remote_wav: str, duration: float): + """Play a WAV file on the G1 speaker (file must already be on robot).""" + play_code = ( + "import time, wave, json, numpy as np;" + "from unitree_sdk2py.core.channel import ChannelFactoryInitialize;" + "from unitree_sdk2py.g1.audio.g1_audio_client import AudioClient;" + "from unitree_sdk2py.g1.audio.g1_audio_api import *;" + f"ChannelFactoryInitialize(0, '{ROBOT_DDS_IFACE}');" + "c = AudioClient(); c.SetTimeout(10.0); c.Init(); c.SetVolume(100);" + "c._Call(ROBOT_API_ID_AUDIO_STOP_PLAY, json.dumps({'app_name':'p'}));" + "time.sleep(0.3);" + f"wf = wave.open('{remote_wav}', 'rb');" + "rate = wf.getframerate(); nch = wf.getnchannels();" + "audio = np.frombuffer(wf.readframes(wf.getnframes()), dtype=np.int16); wf.close();" + "audio = audio.reshape(-1, 2).mean(axis=1).astype(np.int16) if nch == 2 else audio;" + "tl = int(len(audio) * 16000 / rate) if rate != 16000 else len(audio);" + "audio = np.interp(np.linspace(0, len(audio), tl, endpoint=False), np.arange(len(audio)), audio.astype(np.float64)).astype(np.int16) if rate != 16000 else audio;" + "pcm = audio.tobytes();" + "sid = f's_{int(time.time()*1000)}';" + "param = json.dumps({'app_name':'p','stream_id':sid,'sample_rate':16000,'channels':1,'bits_per_sample':16});" + "c._CallRequestWithParamAndBin(ROBOT_API_ID_AUDIO_START_PLAY, param, list(pcm));" + f"time.sleep({duration + 1});" + "c._Call(ROBOT_API_ID_AUDIO_STOP_PLAY, json.dumps({'app_name':'p'}));" + "print('played')" + ) + + print(f"Playing on G1... ({duration:.1f}s)") + proc = subprocess.Popen( + ["ssh"] + SSH_OPTS + [f"{ROBOT_USER}@{ROBOT_IP}", + f'{ROBOT_PYTHON} -c "{play_code}"'], + stdout=subprocess.PIPE, stderr=subprocess.STDOUT, + ) + + start = time.time() + while proc.poll() is None: + elapsed = time.time() - start + pct = min(elapsed / duration, 1.0) + bar = "█" * int(30 * pct) + "░" * (30 - int(30 * pct)) + print(f"\r [{bar}] {min(elapsed, duration):.1f}s / {duration:.1f}s", end="", flush=True) + time.sleep(0.2) + + out = proc.stdout.read().decode().strip() + if "played" in out: + print(f"\n Done.") + else: + print(f"\n Robot output: {out}") + + +# ─── TTS ────────────────────────────────────────────────────── + +def cmd_tts(args): + """Play text-to-speech on G1 speaker (English/Chinese only).""" + tts_code = ( + "import json;" + "from unitree_sdk2py.core.channel import ChannelFactoryInitialize;" + "from unitree_sdk2py.g1.audio.g1_audio_client import AudioClient;" + f"ChannelFactoryInitialize(0, '{ROBOT_DDS_IFACE}');" + "c = AudioClient(); c.SetTimeout(10.0); c.Init();" + f"c.SetVolume({args.volume});" + f"c.TtsMaker('{args.text}', {args.speaker_id});" + "print('ok')" + ) + print(f"TTS: \"{args.text}\" (speaker_id={args.speaker_id}, vol={args.volume})") + code, out, _ = ssh_cmd(f'{ROBOT_PYTHON} -c "{tts_code}"') + if "ok" in out: + print(" Sent.") + else: + print(f" Result: {out}") + + +# ─── LIST ───────────────────────────────────────────────────── + +def cmd_list(args): + """List local recordings.""" + DATA_DIR.mkdir(parents=True, exist_ok=True) + wavs = sorted(DATA_DIR.glob("*.wav")) + if not wavs: + print(f"No recordings in {DATA_DIR}") + return + print(f"\n{'#':<4} {'Name':<35} {'Duration':>8} {'Size':>10}") + print("-" * 60) + for i, p in enumerate(wavs): + try: + with wave.open(str(p), "rb") as wf: + dur = wf.getnframes() / wf.getframerate() + size = p.stat().st_size / 1024 + print(f"{i:<4} {p.stem:<35} {dur:>6.1f}s {size:>8.1f}KB") + except Exception: + print(f"{i:<4} {p.stem:<35} {'ERROR':>8}") + print() + + +def cmd_list_robot(args): + """List recordings on the robot.""" + code, out, _ = ssh_cmd( + f'{ROBOT_PYTHON} -c "' + "import wave, os; from pathlib import Path;" + f"d = Path('{ROBOT_VOICES_DIR}');" + "wavs = sorted(d.glob('*.wav'));" + "print(f'{{len(wavs)}} files in {d}');" + "for p in wavs:" + " try:" + " wf = wave.open(str(p),'rb'); dur = wf.getnframes()/wf.getframerate(); wf.close();" + " print(f'{p.stem:<45} {dur:>6.1f}s')" + " except: print(f'{p.stem:<45} ERROR')" + '"' + ) + print(out) + + +# ─── MAIN ───────────────────────────────────────────────────── + +def main(): + parser = argparse.ArgumentParser( + description="G1 Voice Deploy — Record, deploy & play audio on G1 robot", + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog=""" +Examples: + %(prog)s setup-mic + %(prog)s record --name greeting --seconds 5 + %(prog)s record-robot --name arabic_hi --seconds 5 + %(prog)s play --name greeting + %(prog)s play-robot --path "/home/unitree/SanadVoice/recorded voices/welcome_single.wav" + %(prog)s tts --text "Hello, welcome!" + %(prog)s list + %(prog)s list-robot + """, + ) + + sub = parser.add_subparsers(dest="command") + + # setup-mic + sub.add_parser("setup-mic", help="Unmute & configure wireless mic on robot") + + # record + p = sub.add_parser("record", help="Record from workstation mic") + p.add_argument("--name", "-n", required=True, help="Recording name") + p.add_argument("--seconds", "-s", type=float, default=5.0) + p.add_argument("--device", "-d", type=int, default=None) + + # record-robot + p = sub.add_parser("record-robot", help="Record from robot wireless mic") + p.add_argument("--name", "-n", required=True, help="Recording name") + p.add_argument("--seconds", "-s", type=float, default=5.0) + + # play + p = sub.add_parser("play", help="Deploy & play local WAV on G1 speaker") + p.add_argument("--name", "-n", required=True, help="Recording name") + + # play-robot + p = sub.add_parser("play-robot", help="Play a WAV file already on robot") + p.add_argument("--path", "-p", required=True, help="Full path on robot") + + # tts + p = sub.add_parser("tts", help="Text-to-speech on G1 (English/Chinese)") + p.add_argument("--text", "-t", required=True, help="Text to speak") + p.add_argument("--speaker-id", type=int, default=0, help="Voice ID (0,1,2)") + p.add_argument("--volume", "-v", type=int, default=100) + + # list + sub.add_parser("list", help="List local recordings") + sub.add_parser("list-robot", help="List recordings on robot") + + args = parser.parse_args() + + commands = { + "setup-mic": cmd_setup_mic, + "record": cmd_record, + "record-robot": cmd_record_robot, + "play": cmd_play, + "play-robot": cmd_play_robot, + "tts": cmd_tts, + "list": cmd_list, + "list-robot": cmd_list_robot, + } + + if args.command in commands: + commands[args.command](args) + else: + parser.print_help() + + +if __name__ == "__main__": + main() diff --git a/Audio_Recorder/g1_voice_recorder.py b/Audio_Recorder/g1_voice_recorder.py new file mode 100644 index 0000000..e773a52 --- /dev/null +++ b/Audio_Recorder/g1_voice_recorder.py @@ -0,0 +1,463 @@ +#!/usr/bin/env python3 +""" +G1 VOICE RECORDER & REPLAYER +----------------------------- +Records voice from laptop microphone, saves as WAV, and replays +on the Unitree G1 robot via AudioClient.PlayStream(). + +Modes: + record - Record from mic and save to DataG1/.wav + replay - Play a saved WAV file on G1 speaker + list - List all saved recordings + live - Record then immediately replay on G1 + +Audio Format: + 16-bit PCM, 16000 Hz, Mono (G1 voice service expects this) + +Usage: + python3 g1_voice_recorder.py enp3s0 record --name greeting --seconds 5 + python3 g1_voice_recorder.py enp3s0 replay --name greeting + python3 g1_voice_recorder.py enp3s0 list + python3 g1_voice_recorder.py enp3s0 live --seconds 5 +""" + +import time +import sys +import wave +import argparse +import numpy as np +import os +from pathlib import Path + +SCRIPT_DIR = Path(__file__).resolve().parent +G1_LOOTAH_DIR = SCRIPT_DIR.parent +DATA_DIR = SCRIPT_DIR / "DataG1" + +# Add unitree_webrtc_connect to path +import sys +_webrtc_path = str(G1_LOOTAH_DIR / "unitree_webrtc_connect") +if _webrtc_path not in sys.path: + sys.path.insert(0, _webrtc_path) + +# G1 AudioClient PCM format +SAMPLE_RATE = 16000 +CHANNELS = 1 +SAMPLE_WIDTH = 2 # 16-bit +CHUNK_SIZE = 4096 # frames per buffer + + +def list_recordings(): + """List all saved WAV recordings.""" + wavs = sorted(DATA_DIR.glob("*.wav")) + if not wavs: + print("No recordings found in", DATA_DIR) + return [] + + print(f"\n{'Name':<30} {'Duration':>10} {'Size':>10}") + print("-" * 52) + for p in wavs: + try: + with wave.open(str(p), "rb") as wf: + frames = wf.getnframes() + rate = wf.getframerate() + dur = frames / rate + size_kb = p.stat().st_size / 1024 + print(f"{p.stem:<30} {dur:>8.1f}s {size_kb:>8.1f}KB") + except Exception as e: + print(f"{p.stem:<30} {'ERROR':>10} {str(e)}") + print() + return wavs + + +def _find_supported_rate(pa, device_index: int): + """Find a sample rate the device actually supports.""" + import pyaudio + info = pa.get_device_info_by_index(device_index) + # Try common rates, prefer the device's default first + candidates = [int(info["defaultSampleRate"]), 48000, 44100, 32000, 16000, 8000] + for rate in candidates: + try: + supported = pa.is_format_supported( + rate, input_device=device_index, + input_channels=1, input_format=pyaudio.paInt16, + ) + if supported: + return rate + except ValueError: + continue + # Fallback to device default + return int(info["defaultSampleRate"]) + + +def record_voice(name: str, seconds: float, device_index: int = None): + """Record audio from microphone and save as WAV.""" + import pyaudio + + DATA_DIR.mkdir(parents=True, exist_ok=True) + out_path = DATA_DIR / f"{name}.wav" + + pa = pyaudio.PyAudio() + + # Show available input devices — prefer 'default' or 'pipewire' over raw hw: + if device_index is None: + print("\nAvailable input devices:") + best_idx = None + for i in range(pa.get_device_count()): + info = pa.get_device_info_by_index(i) + if info["maxInputChannels"] > 0: + dname = info["name"] + marker = "" + # Prefer 'default' or 'pipewire' — they handle mixing/resampling properly + if best_idx is None: + if dname in ("default", "pipewire") or "pulse" in dname.lower(): + best_idx = i + marker = " [SELECTED]" + elif i == best_idx: + marker = " [SELECTED]" + print(f" [{i}] {dname} (in={info['maxInputChannels']}, " + f"default={int(info['defaultSampleRate'])}Hz){marker}") + # If no preferred device found, fall back to first available + if best_idx is None: + for i in range(pa.get_device_count()): + if pa.get_device_info_by_index(i)["maxInputChannels"] > 0: + best_idx = i + break + device_index = best_idx + print(f"\nUsing device [{device_index}] — {pa.get_device_info_by_index(device_index)['name']}") + + # Find a sample rate the hardware supports + rec_rate = _find_supported_rate(pa, device_index) + needs_resample = rec_rate != SAMPLE_RATE + + print(f"\nRecording: {seconds}s @ {rec_rate}Hz mono 16-bit" + + (f" (will resample to {SAMPLE_RATE}Hz)" if needs_resample else "")) + print(f"Output: {out_path}") + print("Press Ctrl+C to stop early.\n") + + stream = pa.open( + format=pyaudio.paInt16, + channels=CHANNELS, + rate=rec_rate, + input=True, + input_device_index=device_index, + frames_per_buffer=CHUNK_SIZE, + ) + + frames = [] + total_chunks = int(rec_rate / CHUNK_SIZE * seconds) + start = time.time() + + try: + for i in range(total_chunks): + data = stream.read(CHUNK_SIZE, exception_on_overflow=False) + frames.append(data) + + elapsed = time.time() - start + bar_len = 30 + progress = min(elapsed / seconds, 1.0) + filled = int(bar_len * progress) + bar = "█" * filled + "░" * (bar_len - filled) + print(f"\r [{bar}] {elapsed:.1f}s / {seconds:.1f}s", end="", flush=True) + + except KeyboardInterrupt: + print("\n Recording stopped early.") + + print() + + stream.stop_stream() + stream.close() + pa.terminate() + + # Convert raw frames to numpy + raw_audio = np.frombuffer(b"".join(frames), dtype=np.int16) + + # Resample to G1 target rate if needed + if needs_resample: + target_len = int(len(raw_audio) * SAMPLE_RATE / rec_rate) + raw_audio = np.interp( + np.linspace(0, len(raw_audio), target_len, endpoint=False), + np.arange(len(raw_audio)), + raw_audio.astype(np.float64), + ).astype(np.int16) + print(f" Resampled: {rec_rate}Hz -> {SAMPLE_RATE}Hz") + + # Save WAV at G1 target rate + wf = wave.open(str(out_path), "wb") + wf.setnchannels(CHANNELS) + wf.setsampwidth(SAMPLE_WIDTH) + wf.setframerate(SAMPLE_RATE) + wf.writeframes(raw_audio.tobytes()) + wf.close() + + duration = len(raw_audio) / SAMPLE_RATE + size_kb = out_path.stat().st_size / 1024 + print(f"Saved: {out_path.name} ({duration:.1f}s, {size_kb:.1f}KB)") + return out_path + + +def replay_on_g1(name: str, robot_ip: str, user: str = "unitree"): + """Replay a saved WAV file on the G1 built-in speaker. + + SCP the WAV + a tiny player script to the robot, then SSH and run it + using the robot's SDK which has AudioClient.PlayStream(). + """ + import subprocess + + wav_path = DATA_DIR / f"{name}.wav" + if not wav_path.exists(): + print(f"Recording not found: {wav_path}") + print("Available recordings:") + list_recordings() + sys.exit(1) + + # Read WAV info + with wave.open(str(wav_path), "rb") as wf: + framerate = wf.getframerate() + n_channels = wf.getnchannels() + sampwidth = wf.getsampwidth() + n_frames = wf.getnframes() + + duration = n_frames / framerate + print(f"\nLoaded: {wav_path.name}") + print(f" Format: {framerate}Hz, {n_channels}ch, {sampwidth * 8}-bit") + print(f" Duration: {duration:.1f}s") + + remote_wav = f"/tmp/{wav_path.name}" + remote_script = "/tmp/_g1_play_wav.py" + target = f"{user}@{robot_ip}" + ssh_opts = ["-o", "StrictHostKeyChecking=no", "-o", "ConnectTimeout=5"] + + # Player script that runs ON the robot — uses _CallRequestWithParamAndBin + # (single call, unique stream_id, format params in JSON). PlayStream is + # unreliable — see voice_note.txt. + player_script = '''\ +import sys, time, wave, json, numpy as np +from unitree_sdk2py.core.channel import ChannelFactoryInitialize +from unitree_sdk2py.g1.audio.g1_audio_client import AudioClient +from unitree_sdk2py.g1.audio.g1_audio_api import ( + ROBOT_API_ID_AUDIO_START_PLAY, ROBOT_API_ID_AUDIO_STOP_PLAY, +) + +TARGET_RATE = 16000 # G1 speaker expects 16kHz mono 16-bit + +wav_path = sys.argv[1] +ChannelFactoryInitialize(0, "eth0") +client = AudioClient() +client.SetTimeout(10.0) +client.Init() +client.SetVolume(100) + +with wave.open(wav_path, "rb") as wf: + rate = wf.getframerate() + nch = wf.getnchannels() + pcm_raw = wf.readframes(wf.getnframes()) + +audio = np.frombuffer(pcm_raw, dtype=np.int16) +if nch == 2: + audio = audio.reshape(-1, 2).mean(axis=1).astype(np.int16) +if rate != TARGET_RATE: + target_len = int(len(audio) * TARGET_RATE / rate) + audio = np.interp( + np.linspace(0, len(audio), target_len, endpoint=False), + np.arange(len(audio)), + audio.astype(np.float64), + ).astype(np.int16) + +pcm_bytes = audio.tobytes() +duration = len(audio) / TARGET_RATE + +# Reset any previous stream, then send ALL audio in ONE call with a unique sid. +client._Call(ROBOT_API_ID_AUDIO_STOP_PLAY, json.dumps({"app_name": "voice_rec"})) +time.sleep(0.3) + +sid = f"s_{int(time.time() * 1000)}" +param = json.dumps({ + "app_name": "voice_rec", + "stream_id": sid, + "sample_rate": TARGET_RATE, + "channels": 1, + "bits_per_sample": 16, +}) + +print(f"Playing {duration:.1f}s via _CallRequestWithParamAndBin (16kHz mono)...") +start = time.time() +client._CallRequestWithParamAndBin(ROBOT_API_ID_AUDIO_START_PLAY, param, list(pcm_bytes)) +time.sleep(duration + 0.5) +client._Call(ROBOT_API_ID_AUDIO_STOP_PLAY, json.dumps({"app_name": "voice_rec"})) +print(f"Done. ({time.time() - start:.1f}s)") +''' + + # Step 1: Copy WAV + player script to robot + print(f"\nCopying to {target}...") + + # Write player script to local temp file + import tempfile + local_script = os.path.join(tempfile.gettempdir(), "_g1_play_wav.py") + with open(local_script, "w") as f: + f.write(player_script) + + # SCP WAV file + ret = subprocess.run( + ["scp"] + ssh_opts + [str(wav_path), f"{target}:{remote_wav}"], + capture_output=True, text=True, + ) + if ret.returncode != 0: + print(f" SCP WAV failed: {ret.stderr.strip()}") + os.unlink(local_script) + sys.exit(1) + + # SCP player script + ret = subprocess.run( + ["scp"] + ssh_opts + [local_script, f"{target}:{remote_script}"], + capture_output=True, text=True, + ) + os.unlink(local_script) + + if ret.returncode != 0: + print(f" SCP script failed: {ret.stderr.strip()}") + sys.exit(1) + print(" Copied.") + + # Step 2: Run player script on robot via SSH + # Use full path to gemini env python (conda run fails in non-interactive SSH) + play_cmd = ( + f"/home/unitree/miniconda3/envs/gemini/bin/python3 " + f"{remote_script} {remote_wav}" + ) + + print(f"Playing on G1... ({duration:.1f}s)") + proc = subprocess.Popen( + ["ssh"] + ssh_opts + [target, play_cmd], + stdout=subprocess.PIPE, stderr=subprocess.STDOUT, + ) + + start = time.time() + while proc.poll() is None: + elapsed = time.time() - start + progress = min(elapsed / duration, 1.0) + bar_len = 30 + filled = int(bar_len * progress) + bar = "█" * filled + "░" * (bar_len - filled) + print(f"\r [{bar}] {min(elapsed, duration):.1f}s / {duration:.1f}s", + end="", flush=True) + time.sleep(0.2) + + output = proc.stdout.read().decode().strip() + if output: + print(f"\n Robot: {output}") + + if proc.returncode != 0: + print(f"\n SSH exit code: {proc.returncode}") + else: + print(f"\nPlayback complete.") + + # Cleanup + subprocess.run( + ["ssh"] + ssh_opts + [target, f"rm -f {remote_wav} {remote_script}"], + capture_output=True, + ) + + +def live_record_and_replay(seconds: float, robot_ip: str, device_index: int = None, user: str = "unitree"): + """Record voice then immediately replay on G1.""" + name = f"live_{int(time.time())}" + print("=== STEP 1: RECORD ===") + record_voice(name, seconds, device_index) + + print("\n=== STEP 2: REPLAY ON G1 ===") + replay_on_g1(name, robot_ip, user) + + +def play_local(name: str): + """Play a saved WAV file on the local workstation speaker.""" + import pyaudio + + wav_path = DATA_DIR / f"{name}.wav" + if not wav_path.exists(): + print(f"Recording not found: {wav_path}") + list_recordings() + sys.exit(1) + + with wave.open(str(wav_path), "rb") as wf: + n_channels = wf.getnchannels() + sampwidth = wf.getsampwidth() + framerate = wf.getframerate() + n_frames = wf.getnframes() + + duration = n_frames / framerate + print(f"\nPlaying locally: {wav_path.name}") + print(f" Format: {framerate}Hz, {n_channels}ch, {sampwidth * 8}-bit") + print(f" Duration: {duration:.1f}s\n") + + pa = pyaudio.PyAudio() + stream = pa.open( + format=pa.get_format_from_width(sampwidth), + channels=n_channels, + rate=framerate, + output=True, + ) + + start = time.time() + chunk = wf.readframes(CHUNK_SIZE) + while chunk: + stream.write(chunk) + elapsed = time.time() - start + progress = min(elapsed / duration, 1.0) + bar_len = 30 + filled = int(bar_len * progress) + bar = "█" * filled + "░" * (bar_len - filled) + print(f"\r [{bar}] {elapsed:.1f}s / {duration:.1f}s", end="", flush=True) + chunk = wf.readframes(CHUNK_SIZE) + + print(f"\n Done.") + stream.stop_stream() + stream.close() + pa.terminate() + + +def main(): + parser = argparse.ArgumentParser( + description="G1 Voice Recorder & Replayer", + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog=""" +Examples: + %(prog)s record --name hello --seconds 5 + %(prog)s playlocal --name hello + %(prog)s replay --name hello --ip 192.168.123.164 + %(prog)s list + %(prog)s live --seconds 5 --ip 192.168.123.164 + """, + ) + parser.add_argument("mode", choices=["record", "replay", "list", "live", "playlocal"], + help="Operation mode") + parser.add_argument("--name", "-n", default="recording", + help="Recording name (default: recording)") + parser.add_argument("--seconds", "-s", type=float, default=5.0, + help="Recording duration in seconds (default: 5)") + parser.add_argument("--device", "-d", type=int, default=None, + help="Audio input device index (default: auto-detect)") + parser.add_argument("--ip", default="192.168.123.164", + help="G1 robot IP for replay/live (default: 192.168.123.164)") + parser.add_argument("--user", "-u", default="unitree", + help="SSH user on G1 (default: unitree)") + + args = parser.parse_args() + + if args.mode == "list": + list_recordings() + + elif args.mode == "record": + record_voice(args.name, args.seconds, args.device) + + elif args.mode == "playlocal": + play_local(args.name) + + elif args.mode == "replay": + replay_on_g1(args.name, args.ip, args.user) + + elif args.mode == "live": + live_record_and_replay(args.seconds, args.ip, args.device, args.user) + + +if __name__ == "__main__": + main() diff --git a/Audio_Recorder/template_audio_script.py b/Audio_Recorder/template_audio_script.py new file mode 100644 index 0000000..b0c9222 --- /dev/null +++ b/Audio_Recorder/template_audio_script.py @@ -0,0 +1,162 @@ +#!/usr/bin/env python3 +""" +TEMPLATE — G1 Audio Script + +Copy-paste starter demonstrating every reliable primitive for G1 audio: + + 1. Auto-detect and prep the Hollyland mic (g1_audio_devices helpers) + 2. Record N seconds via parec (the method that actually works) + 3. Load / generate PCM (16 kHz mono int16) + 4. Play on the G1 speaker in ONE call (_CallRequestWithParamAndBin) + 5. Always STOP the stream at the end (mandatory reset) + +Do NOT use: + - PlayStream (chunked — unreliable, see voice_note.txt) + - PyAudio input against the pulse device on the robot (gives silence) + - aplay / paplay to the built-in speaker (no physical path) + +Run on the robot, gemini conda env (needs _CallRequestWithParamAndBin): + /home/unitree/miniconda3/envs/gemini/bin/python3 template_audio_script.py + +Run on the workstation (edit MODE below to "tone" — no robot needed). +""" + +from __future__ import annotations + +import argparse +import json +import math +import struct +import subprocess +import sys +import time +from pathlib import Path + +# ─── Constants ────────────────────────────────────────────────────────────── +TARGET_RATE = 16000 +BIT_DEPTH = 16 +CHANNELS = 1 +APP_NAME = "my_app" # pick any unique label for YOUR script +DDS_IFACE = "eth0" # on workstation use "enp3s0" +VOLUME = 100 + + +# ─── 1. Mic prep (optional — skip if recording is handled elsewhere) ──────── +def prep_mic(keywords=("hollyland", "wireless_microphone")): + """Auto-detect and unmute the first PulseAudio source matching keywords.""" + rc = subprocess.run(["pactl", "list", "short", "sources"], capture_output=True, text=True) + for line in rc.stdout.splitlines(): + parts = line.split("\t") + if len(parts) < 2: + continue + idx, name = parts[0], parts[1] + if any(k in name.lower() for k in keywords): + subprocess.run(["pactl", "set-default-source", name]) + subprocess.run(["pactl", "set-source-mute", idx, "0"]) + subprocess.run(["pactl", "set-source-volume", idx, "100%"]) + return int(idx), name + return None, None + + +# ─── 2. Record via parec (the method that works on the robot) ─────────────── +def record(seconds: float, source_index: int) -> bytes: + proc = subprocess.Popen( + ["parec", "-d", str(source_index), + "--format=s16le", "--rate=16000", "--channels=1", "--raw"], + stdout=subprocess.PIPE, + ) + time.sleep(seconds) + proc.terminate() + return proc.stdout.read() if proc.stdout else b"" + + +# ─── 3. Generate a demo PCM (used when MODE=tone) ─────────────────────────── +def sine_tone(freq_hz: float, seconds: float) -> bytes: + n = int(TARGET_RATE * seconds) + out = bytearray() + for i in range(n): + val = int(0.3 * 32767 * math.sin(2 * math.pi * freq_hz * i / TARGET_RATE)) + out += struct.pack(" int: + p = argparse.ArgumentParser(description="G1 audio template") + p.add_argument("mode", choices=["tone", "echo", "prep-mic"], + help="tone=440Hz beep; echo=record+play; prep-mic=auto-detect mic only") + p.add_argument("--seconds", "-s", type=float, default=3.0, + help="Recording / tone duration (default 3)") + args = p.parse_args() + + if args.mode == "prep-mic": + idx, name = prep_mic() + if idx is None: + print("No wireless mic found.") + return 1 + print(f"Prepped: [{idx}] {name}") + return 0 + + if args.mode == "tone": + pcm = sine_tone(440.0, args.seconds) + play_on_g1(pcm) + return 0 + + if args.mode == "echo": + idx, name = prep_mic() + if idx is None: + print("No wireless mic found.") + return 1 + print(f"Mic: [{idx}] {name}") + print(f"Recording {args.seconds:.1f}s ... speak now") + pcm = record(args.seconds, idx) + if not pcm: + print("No audio captured.") + return 2 + print(f"Captured {len(pcm):,} bytes. Playing back on G1 ...") + play_on_g1(pcm) + return 0 + + return 1 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/Audio_Recorder/test_g1_pcm.py b/Audio_Recorder/test_g1_pcm.py new file mode 100644 index 0000000..24aabea --- /dev/null +++ b/Audio_Recorder/test_g1_pcm.py @@ -0,0 +1,105 @@ +#!/usr/bin/env python3 +"""Test different PCM streaming approaches on G1 voice service.""" + +import sys +import time +import json +import wave +import numpy as np +from pathlib import Path +from unitree_sdk2py.core.channel import ChannelFactoryInitialize +from unitree_sdk2py.g1.audio.g1_audio_client import AudioClient +from unitree_sdk2py.g1.audio.g1_audio_api import * + +if len(sys.argv) < 2: + print(f"Usage: python3 {sys.argv[0]} ") + sys.exit(1) + +ChannelFactoryInitialize(0, sys.argv[1]) +client = AudioClient() +client.SetTimeout(10.0) +client.Init() + +# Load a small WAV chunk +wav_path = Path(__file__).parent / "DataG1" / "greeting.wav" +with wave.open(str(wav_path), "rb") as wf: + pcm_all = wf.readframes(wf.getnframes()) + rate = wf.getframerate() + channels = wf.getnchannels() + +print(f"Loaded {len(pcm_all)} bytes, {rate}Hz, {channels}ch") +chunk = pcm_all[:2048] # small test chunk + +print("\n=== Approach 1: Register stream then send binary chunks ===") +# Step 1: Open stream +param = json.dumps({"app_name": "rec", "stream_id": "s1"}) +code, data = client._Call(ROBOT_API_ID_AUDIO_START_PLAY, param) +print(f" Open stream: code={code}, data={data}") + +# Step 2: Send binary chunk (no reply) +try: + client._CallBinaryNoReply(ROBOT_API_ID_AUDIO_START_PLAY, list(chunk)) + print(" _CallBinaryNoReply: sent (no reply)") +except Exception as e: + print(f" _CallBinaryNoReply: {e}") + +time.sleep(1) + +# Step 3: Stop +param_stop = json.dumps({"app_name": "rec"}) +code, _ = client._Call(ROBOT_API_ID_AUDIO_STOP_PLAY, param_stop) +print(f" Stop: code={code}") + +print("\n=== Approach 2: _CallNoReply with JSON+PCM ===") +try: + param2 = json.dumps({"app_name": "rec2", "stream_id": "s2", "pcm": list(chunk[:512])}) + client._CallNoReply(ROBOT_API_ID_AUDIO_START_PLAY, param2) + print(" _CallNoReply: sent") +except Exception as e: + print(f" _CallNoReply: {e}") + +time.sleep(1) + +print("\n=== Approach 3: Multiple small _CallBinary chunks ===") +# Register first +param3 = json.dumps({"app_name": "rec3", "stream_id": "s3"}) +code, _ = client._Call(ROBOT_API_ID_AUDIO_START_PLAY, param3) +print(f" Register: code={code}") + +for i in range(5): + off = i * 512 + small = pcm_all[off:off+512] + try: + code, _ = client._CallBinary(ROBOT_API_ID_AUDIO_START_PLAY, list(small)) + print(f" Chunk {i}: code={code}") + except Exception as e: + print(f" Chunk {i}: {e}") + break + +print("\n=== Approach 4: Check all registered API methods ===") +for api_name, api_id in [ + ("TTS", ROBOT_API_ID_AUDIO_TTS), + ("ASR", ROBOT_API_ID_AUDIO_ASR), + ("START_PLAY", ROBOT_API_ID_AUDIO_START_PLAY), + ("STOP_PLAY", ROBOT_API_ID_AUDIO_STOP_PLAY), + ("GET_VOLUME", ROBOT_API_ID_AUDIO_GET_VOLUME), + ("SET_VOLUME", ROBOT_API_ID_AUDIO_SET_VOLUME), + ("SET_RGB_LED", ROBOT_API_ID_AUDIO_SET_RGB_LED), +]: + print(f" {api_name} = {api_id}") + +print("\n=== Approach 5: TTS with file path (maybe voice service can play files?) ===") +# Try passing a file path to TTS or a special API +param5 = json.dumps({"file": "/tmp/greeting.wav"}) +code, data = client._Call(ROBOT_API_ID_AUDIO_START_PLAY, param5) +print(f" file path via START_PLAY: code={code}, data={data}") + +param5b = json.dumps({"url": "/tmp/greeting.wav"}) +code, data = client._Call(ROBOT_API_ID_AUDIO_START_PLAY, param5b) +print(f" url path via START_PLAY: code={code}, data={data}") + +param5c = json.dumps({"path": "/tmp/greeting.wav"}) +code, data = client._Call(ROBOT_API_ID_AUDIO_START_PLAY, param5c) +print(f" path via START_PLAY: code={code}, data={data}") + +print("\nDone. Did you hear anything?") diff --git a/Audio_Recorder/test_g1_speaker.py b/Audio_Recorder/test_g1_speaker.py new file mode 100644 index 0000000..f1dcb67 --- /dev/null +++ b/Audio_Recorder/test_g1_speaker.py @@ -0,0 +1,88 @@ +#!/usr/bin/env python3 +"""Quick test: does the G1 built-in speaker work via AudioClient?""" + +import sys +import time +import json +from unitree_sdk2py.core.channel import ChannelFactoryInitialize +from unitree_sdk2py.g1.audio.g1_audio_client import AudioClient +from unitree_sdk2py.g1.audio.g1_audio_api import * + +if len(sys.argv) < 2: + print(f"Usage: python3 {sys.argv[0]} ") + print(f" e.g. python3 {sys.argv[0]} enp3s0") + sys.exit(1) + +iface = sys.argv[1] +print(f"Connecting via {iface}...") +ChannelFactoryInitialize(0, iface) + +client = AudioClient() +client.SetTimeout(10.0) +client.Init() + +# Test 1: Volume +print("\n--- Test 1: GetVolume ---") +code, vol = client.GetVolume() +print(f" code={code}, volume={vol}") + +print("\n--- Test 2: SetVolume(100) ---") +code = client.SetVolume(100) +print(f" code={code}") + +# Test 3: LED (visual confirmation that RPC works) +print("\n--- Test 3: LED Red ---") +code = client.LedControl(255, 0, 0) +print(f" code={code}") +time.sleep(1) + +print("--- Test 3b: LED Green ---") +code = client.LedControl(0, 255, 0) +print(f" code={code}") +time.sleep(1) + +print("--- Test 3c: LED off ---") +code = client.LedControl(0, 0, 0) +print(f" code={code}") + +# Test 4: TTS +print("\n--- Test 4: TTS 'Hello, testing speaker' ---") +code = client.TtsMaker("Hello, testing speaker", 0) +print(f" code={code}") +time.sleep(3) + +print("\n--- Test 5: TTS Chinese ---") +code = client.TtsMaker("你好,测试声音", 0) +print(f" code={code}") +time.sleep(3) + +# Test 6: Try _Call with AUDIO_START_PLAY different formats +print("\n--- Test 6: _Call AUDIO_START_PLAY formats ---") +import wave +import numpy as np +from pathlib import Path + +wav_path = Path(__file__).parent / "DataG1" / "greeting.wav" +if wav_path.exists(): + with wave.open(str(wav_path), "rb") as wf: + pcm = wf.readframes(wf.getnframes()) + # Small chunk for testing + chunk = pcm[:4096] + + # Format A: just JSON with pcm as list of ints + param_a = json.dumps({"pcm": list(chunk[:256])}) + code_a, data_a = client._Call(ROBOT_API_ID_AUDIO_START_PLAY, param_a) + print(f" Format A (_Call, pcm list): code={code_a}") + + # Format B: _CallBinary with raw bytes + code_b, data_b = client._CallBinary(ROBOT_API_ID_AUDIO_START_PLAY, list(chunk[:256])) + print(f" Format B (_CallBinary, raw): code={code_b}") + + # Format C: _Call with app_name + param_c = json.dumps({"app_name": "test", "stream_id": "s1"}) + code_c, data_c = client._Call(ROBOT_API_ID_AUDIO_START_PLAY, param_c) + print(f" Format C (_Call, app_name): code={code_c}") +else: + print(f" No greeting.wav found, skipping PCM tests") + +print("\nDone. Did you hear anything or see LED changes?") diff --git a/Audio_Recorder/test_marcus_audio.py b/Audio_Recorder/test_marcus_audio.py new file mode 100644 index 0000000..fc0d4e4 --- /dev/null +++ b/Audio_Recorder/test_marcus_audio.py @@ -0,0 +1,129 @@ +#!/usr/bin/env python3 +""" +Test script for Marcus env — TTS + Audio playback on G1 built-in speaker. +Deploy to robot: scp test_marcus_audio.py unitree@192.168.123.164:/home/unitree/Marcus/ +Run on robot: conda activate marcus && python3 ~/Marcus/test_marcus_audio.py +""" + +import sys +import time +import json +import struct +import math + +def check_sdk(): + """Check if marcus env has the required SDK methods.""" + print("=== SDK CHECK ===") + try: + from unitree_sdk2py.g1.audio.g1_audio_client import AudioClient + from unitree_sdk2py.rpc.client import Client + print(" unitree_sdk2py: installed") + + has_bin = hasattr(Client, '_CallRequestWithParamAndBin') + print(f" _CallRequestWithParamAndBin: {'YES' if has_bin else 'NO (need upgrade: pip install --upgrade unitree_sdk2py)'}") + return has_bin + except ImportError: + print(" unitree_sdk2py: NOT INSTALLED") + print(" Run: pip install unitree_sdk2py") + return False + + +def test_tts(): + """Test TTS on G1 speaker.""" + from unitree_sdk2py.core.channel import ChannelFactoryInitialize + from unitree_sdk2py.g1.audio.g1_audio_client import AudioClient + + print("\n=== TTS TEST ===") + ChannelFactoryInitialize(0, "eth0") + c = AudioClient() + c.SetTimeout(10.0) + c.Init() + + # Volume + code, vol = c.GetVolume() + print(f" Volume: {vol}") + c.SetVolume(100) + + # LED + print(" LED -> Green") + c.LedControl(0, 255, 0) + time.sleep(1) + c.LedControl(0, 0, 0) + + # TTS English + print(" TTS: 'Hello, Marcus is ready'") + c.TtsMaker("Hello, Marcus is ready", 0) + time.sleep(4) + + print(" TTS test done.") + + +def test_audio_playback(): + """Test audio playback with a sine tone.""" + from unitree_sdk2py.core.channel import ChannelFactoryInitialize + from unitree_sdk2py.g1.audio.g1_audio_client import AudioClient + from unitree_sdk2py.g1.audio.g1_audio_api import ( + ROBOT_API_ID_AUDIO_START_PLAY, + ROBOT_API_ID_AUDIO_STOP_PLAY, + ) + + print("\n=== AUDIO PLAYBACK TEST ===") + ChannelFactoryInitialize(0, "eth0") + c = AudioClient() + c.SetTimeout(10.0) + c.Init() + c.SetVolume(100) + + # Generate 2s sine tone at 440Hz + rate = 16000 + duration = 2 + pcm = b"" + for i in range(rate * duration): + val = int(30000 * math.sin(2 * math.pi * 440 * i / rate)) + pcm += struct.pack(" /tmp/raw_test.pcm + python3 -c " + import numpy as np + a = np.fromfile('/tmp/raw_test.pcm', dtype=np.int16) + print(f'Samples={len(a)}, min={a.min()}, max={a.max()}, std={a.std():.0f}') + if a.std() > 50: print('MIC WORKS!') + else: print('Still silent - check transmitter is ON') + " + +Recording method (parec, not PyAudio — PyAudio gives silence through pulse device): + subprocess.Popen(['parec', '-d', '3', '--format=s16le', '--rate=16000', '--channels=1', '--raw'], stdout=subprocess.PIPE) + time.sleep(duration) + proc.terminate() + raw = proc.stdout.read() + +PyAudio recording through device index 25 (pulse) gives ALL ZEROS even after unmuting. +Must use parec with source index 3 directly. + +FULL RECORD + PLAYBACK EXAMPLE (run on robot in gemini conda env): + python3 -c " + import time, wave, json, numpy as np, subprocess + from unitree_sdk2py.core.channel import ChannelFactoryInitialize + from unitree_sdk2py.g1.audio.g1_audio_client import AudioClient + from unitree_sdk2py.g1.audio.g1_audio_api import * + + # Record 5 seconds via parec (wireless mic, source index 3) + print('Recording 5 seconds... speak now!') + proc = subprocess.Popen( + ['parec', '-d', '3', '--format=s16le', '--rate=16000', '--channels=1', '--raw'], + stdout=subprocess.PIPE) + time.sleep(5) + proc.terminate() + raw = proc.stdout.read() + audio = np.frombuffer(raw, dtype=np.int16) + print(f'Recorded {len(audio)} samples, std={audio.std():.0f}') + + # Save to WAV + path = '/home/unitree/SanadVoice/recorded voices/my_recording.wav' + wf = wave.open(path, 'wb') + wf.setnchannels(1) + wf.setsampwidth(2) + wf.setframerate(16000) + wf.writeframes(audio.tobytes()) + wf.close() + print(f'Saved: {path}') + + # Play back on G1 built-in speaker + ChannelFactoryInitialize(0, 'eth0') + c = AudioClient() + c.SetTimeout(10.0) + c.Init() + c.SetVolume(100) + c._Call(ROBOT_API_ID_AUDIO_STOP_PLAY, json.dumps({'app_name':'p'})) + time.sleep(0.3) + + pcm = audio.tobytes() + sid = f's_{int(time.time()*1000)}' + param = json.dumps({ + 'app_name': 'p', + 'stream_id': sid, + 'sample_rate': 16000, + 'channels': 1, + 'bits_per_sample': 16 + }) + c._CallRequestWithParamAndBin(ROBOT_API_ID_AUDIO_START_PLAY, param, list(pcm)) + time.sleep(len(audio)/16000 + 1) + c._Call(ROBOT_API_ID_AUDIO_STOP_PLAY, json.dumps({'app_name':'p'})) + print('Done') + " + +NETWORK & SSH +-------------- +Robot IP: 192.168.123.164 +SSH user: unitree +SSH pass: 123 +SSH key: configured (ssh-copy-id done) +DDS interface on robot: eth0 +DDS interface on workstation: enp3s0 + +Robot conda envs: + - base: no unitree_sdk2py + - gemini: has unitree_sdk2py with PlayStream + _CallRequestWithParamAndBin + Python: /home/unitree/miniconda3/envs/gemini/bin/python3 + +RUNNING SERVICES ON ROBOT +--------------------------- +PulseAudio: PID 1752 (holds hw:1,0 speaker and hw:2,0 mic) +sanad_webserver.py: PID 1815 (gemini_voice_v2) +sanad_voice.py: PID ~4640+ (gemini_voice) +Systemd: sanad_voice.service (auto-start) + +PulseAudio sink (speaker): alsa_output.platform-sound.analog-stereo (card 1 APE device 0) + - Volume: 100%, not muted + - Does NOT produce audible output (no physical speaker on this path) + - Built-in speaker is only accessible through Unitree voice RPC service + +SanadVoice project speaker: Anker PowerConf USB (external, not always connected) + Sink: alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo + Source: alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback + +RECORDED VOICES LOCATION +-------------------------- +Robot: /home/unitree/SanadVoice/recorded voices/ (54 WAV files, English) +Robot: /home/unitree/SanadVoice/Audio/ (additional audio) +Workstation: ~/Robotics_workspace/yslootahtech/G1_Lootah/Audio_Recorder/DataG1/ + +MARCUS TTS CONFIGURATION (2026-04-08) +====================================== +Backend: edge-tts (online, Microsoft Edge TTS API, no API key needed) +Requires: Internet connection on robot + +Voices: + Arabic: ar-AE-HamdanNeural (UAE male) + English: en-US-GuyNeural (US male) + Note: For same voice both languages, use ar-AE-HamdanNeural for both + (English will have slight Arabic accent) + +Config: /home/unitree/Marcus/Config/config_Voice.json + "en_backend": "edge_tts" + "ar_backend": "edge_tts" + "edge_voice_ar": "ar-AE-HamdanNeural" + "edge_voice_en": "en-US-GuyNeural" + +Pipeline: + audio_api.speak(text, lang) + → edge-tts generates MP3 (1-2s) + → pydub converts MP3 → 16kHz WAV + → _CallRequestWithParamAndBin → G1 speaker + → mic muted during playback, unmuted after + +Fallback: Built-in TtsMaker for English if edge-tts fails (no internet) + +Mic: Auto-detected by scanning PulseAudio for "wireless"/"hollyland"/"usb" + Auto-unmutes, sets volume 100%, sets as default source + Uses parec (not PyAudio) for recording + Muted during TTS playback to prevent self-listening + +Files updated: + /home/unitree/Marcus/API/audio_api.py — XTTS + edge-tts + builtin backends + /home/unitree/Marcus/Voice/marcus_voice.py — Uses audio_api's auto-detected mic + /home/unitree/Marcus/Voice/xtts_server.py — XTTS-v2 persistent server (for offline use later) + /home/unitree/Marcus/Config/config_Voice.json — TTS config + +Conda envs: + marcus (Python 3.8) — Brain, vision, controller, audio playback SDK + marcus_tts (Python 3.10) — XTTS-v2, SILMA TTS (for future offline use) + gemini (Python 3.11) — Has _CallRequestWithParamAndBin + +TTS OPTIONS TESTED +------------------- +| Backend | Arabic | English | Offline | Speed | Status | +|------------------|--------|---------|---------|--------|---------------| +| edge-tts | Yes | Yes | No | 1-2s | WORKING ✓ | +| Built-in TtsMaker| No | Yes | Yes | 0s | WORKING ✓ | +| XTTS-v2 (CPU) | Yes | Yes | Yes | ~14s | WORKING (slow)| +| XTTS-v2 (GPU) | Yes | Yes | Yes | ~2s | NO (CUDA 11.4 no cp310 wheel) | +| SILMA TTS | Yes | Yes | Yes | ? | BROKEN (deps) | +| Piper TTS | Yes | No | Yes | ~1s | BROKEN (piper_phonemize on ARM64) | +| gTTS | Yes | Yes | No | 1-2s | WORKING (female only) | +| SpeechT5 local | Yes | No | Yes | ~2-3s | NOT TESTED (model on robot) | + +JETSON ORIN NX LIMITATIONS +--------------------------- +- JetPack 5.1.1, L4T R35.3.1, CUDA 11.4 +- NVIDIA only provides PyTorch cp38 wheels (Python 3.8) +- No cp310 GPU PyTorch available — must build from source +- scikit-learn TLS bug on aarch64 (libgomp cannot allocate memory in static TLS block) + Fix: LD_PRELOAD=$(find env/lib -name "libgomp*.so*" | head -1) +- apt is broken (unmet dependencies), cannot install espeak-ng + +SCRIPTS DEPLOYED ON ROBOT +--------------------------- +/home/unitree/g1_interactive_player.py — Interactive WAV selector + playback +/home/unitree/g1_play_wav.py — CLI WAV player +/home/unitree/g1_tts_test.py — TTS language test +/home/unitree/Marcus/Voice/xtts_server.py — XTTS-v2 persistent server + +FILE INVENTORY (workstation /G1_Lootah/Audio_Recorder) +------------------------------------------------------- +Recording + replay: + g1_voice_recorder.py — workstation PyAudio record → scp → G1 replay + g1_play_wav.py — (on-robot) play any WAV on G1 speaker + g1_interactive_player.py — (on-robot) interactive WAV picker + g1_voice_deploy.py — deploy recordings to robot +Device management: + g1_audio_devices.py — pactl wrapper: list/find/auto-hollyland/quick-test +TTS: + g1_edge_tts.py — Microsoft Edge TTS bilingual (AR+EN) + g1_tts_arabic.py — Piper / tts_arabic offline TTS (ARM64 broken per above) + g1_tts_test.py — TTS smoke test (English only) +Templates + tests: + template_audio_script.py — copy-paste starter with the reliable primitives + test_g1_speaker.py — speaker init sanity check + test_g1_pcm.py — raw PCM playback test + test_marcus_audio.py — Marcus env audio pipeline end-to-end +Data: + DataG1/ — local recordings (WAV, 16 kHz mono int16) + +Run recipes: + # Workstation side + python3 g1_voice_recorder.py record --name hello --seconds 5 + python3 g1_voice_recorder.py replay --name hello --ip 192.168.123.164 + python3 g1_edge_tts.py "Good morning" --lang en --save out.wav --no-play + + # On robot (gemini env) + python3 g1_audio_devices.py auto-hollyland + python3 g1_play_wav.py /path/to/file.wav + python3 g1_edge_tts.py "مرحبا بكم" --lang ar + python3 template_audio_script.py echo --seconds 3 diff --git a/Camera/CameraFunc/laptop_viewer.py b/Camera/CameraFunc/laptop_viewer.py new file mode 100644 index 0000000..a9863c4 --- /dev/null +++ b/Camera/CameraFunc/laptop_viewer.py @@ -0,0 +1,112 @@ +#!/usr/bin/env python3 +""" +Laptop ZMQ JPEG viewer (OpenCV window) +- Subscribes to robot ZMQ PUB stream (single-part JPEG) +- Displays live video in a popup window +- Optional FPS + frame age overlay + +Run: + pip install pyzmq opencv-python numpy + python laptop_zmq_viewer.py --robot 192.168.123.164 --port 55555 + +Keys: + q -> quit + f -> toggle overlay +""" + +import time +import argparse +import zmq +import cv2 +import numpy as np + + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument("--robot", default="10.255.254.86", help="Robot IP that publishes ZMQ JPEG") + ap.add_argument("--port", type=int, default=55555, help="ZMQ port (from cam_config_client.yaml)") + ap.add_argument("--hwm", type=int, default=1, help="ZMQ high-water-mark (keep latest frames)") + ap.add_argument("--timeout_ms", type=int, default=1000, help="ZMQ poll timeout") + ap.add_argument("--window", default="G1 Head Camera", help="OpenCV window name") + args = ap.parse_args() + + robot_ip = args.robot + port = args.port + + # ----------------------- + # ZMQ subscriber + # ----------------------- + ctx = zmq.Context.instance() + sub = ctx.socket(zmq.SUB) + sub.setsockopt(zmq.RCVHWM, args.hwm) + sub.setsockopt(zmq.LINGER, 0) + sub.setsockopt_string(zmq.SUBSCRIBE, "") + sub.connect(f"tcp://{robot_ip}:{port}") + + poller = zmq.Poller() + poller.register(sub, zmq.POLLIN) + + print(f"[INFO] Subscribing to tcp://{robot_ip}:{port}") + print("[INFO] Press 'q' to quit, 'f' to toggle overlay") + + # ----------------------- + # Stats + # ----------------------- + show_overlay = True + last_frame_ts = 0.0 + fps = 0.0 + fps_count = 0 + t0 = time.monotonic() + + cv2.namedWindow(args.window, cv2.WINDOW_NORMAL) + + while True: + events = dict(poller.poll(timeout=args.timeout_ms)) + if sub not in events: + # no frame received + # show a black frame with warning (optional) + black = np.zeros((480, 640, 3), dtype=np.uint8) + cv2.putText(black, "No frames...", (20, 50), + cv2.FONT_HERSHEY_SIMPLEX, 1.0, (0, 0, 255), 2, cv2.LINE_AA) + cv2.imshow(args.window, black) + else: + jpg = sub.recv() # single-part JPEG bytes + arr = np.frombuffer(jpg, dtype=np.uint8) + img = cv2.imdecode(arr, cv2.IMREAD_COLOR) + + if img is None: + continue + + now = time.monotonic() + last_frame_ts = now + + # FPS estimate (every 10 frames) + fps_count += 1 + if fps_count >= 10: + dt = now - t0 + if dt > 0: + fps = fps_count / dt + t0 = now + fps_count = 0 + + if show_overlay: + age_ms = (time.monotonic() - last_frame_ts) * 1000.0 + text = f"FPS: {fps:.1f} | Age: {age_ms:.0f} ms" + cv2.putText(img, text, (12, 28), + cv2.FONT_HERSHEY_SIMPLEX, 0.8, (255, 255, 255), 2, cv2.LINE_AA) + + cv2.imshow(args.window, img) + + key = cv2.waitKey(1) & 0xFF + if key == ord("q"): + break + if key == ord("f"): + show_overlay = not show_overlay + + cv2.destroyAllWindows() + sub.close() + ctx.term() + + +if __name__ == "__main__": + main() diff --git a/Camera/G1CAM/web_viewer.py b/Camera/G1CAM/web_viewer.py new file mode 100644 index 0000000..9c14041 --- /dev/null +++ b/Camera/G1CAM/web_viewer.py @@ -0,0 +1,239 @@ +#!/usr/bin/env python3 +""" +ZMQ (JPEG) -> Flask MJPEG Web Viewer +- Subscribes to a ZMQ PUB stream (single-part JPEG frames) +- Serves a browser page + MJPEG endpoint + +Usage: + On the robot: + conda activate teleimager + cd teleimager + python -m teleimager.image_server --rs + + On the PC: + python web_server.py + # then open: + http://:8080 + +Tip: +- If you run this ON the robot, set ROBOT_IP="127.0.0.1" +- If you run this on your laptop, set ROBOT_IP to the robot IP (e.g. 192.168.123.164) +""" + +import os +import time +import signal +import threading +from typing import Optional, Tuple + +import zmq +import cv2 +import numpy as np +from flask import Flask, Response, request + +# ----------------------- +# Config (env override) +# ----------------------- +ROBOT_IP = os.getenv("ROBOT_IP", "10.255.254.86") # set "127.0.0.1" if running on robot +ZMQ_PORT = int(os.getenv("ZMQ_PORT", "55555")) +HTTP_HOST = os.getenv("HTTP_HOST", "0.0.0.0") +HTTP_PORT = int(os.getenv("HTTP_PORT", "8080")) +JPEG_QUALITY = int(os.getenv("JPEG_QUALITY", "80")) +FRAME_TIMEOUT_MS = int(os.getenv("FRAME_TIMEOUT_MS", "1000")) # poll timeout for ZMQ +SHOW_FPS = os.getenv("SHOW_FPS", "1") == "1" + +app = Flask(__name__) + +# ----------------------- +# ZMQ Subscriber Worker +# ----------------------- +class LatestFrameBuffer: + """Thread-safe buffer storing only the latest JPEG bytes received.""" + def __init__(self): + self._lock = threading.Lock() + self._jpg: Optional[bytes] = None + self._last_ts = 0.0 + self._fps = 0.0 + self._count = 0 + self._t0 = None + + def update(self, jpg: bytes) -> None: + now = time.monotonic() + with self._lock: + self._jpg = jpg + self._last_ts = now + + # FPS calc + if self._t0 is None: + self._t0 = now + self._count += 1 + if self._count >= 10: + dt = now - self._t0 + if dt > 0: + self._fps = self._count / dt + self._t0 = now + self._count = 0 + + def get(self) -> Tuple[Optional[bytes], float, float]: + with self._lock: + return self._jpg, self._fps, self._last_ts + + +class ZMQCameraSubscriber(threading.Thread): + """Background thread that subscribes to ZMQ and stores the latest frame.""" + def __init__(self, host: str, port: int, buffer: LatestFrameBuffer): + super().__init__(daemon=True) + self.host = host + self.port = port + self.buffer = buffer + self._stop = threading.Event() + + self.ctx = zmq.Context.instance() + self.sub = self.ctx.socket(zmq.SUB) + self.sub.setsockopt(zmq.RCVHWM, 1) # keep only latest + self.sub.setsockopt(zmq.LINGER, 0) + self.sub.setsockopt_string(zmq.SUBSCRIBE, "") + self.sub.connect(f"tcp://{self.host}:{self.port}") + + self.poller = zmq.Poller() + self.poller.register(self.sub, zmq.POLLIN) + + def run(self): + while not self._stop.is_set(): + try: + events = dict(self.poller.poll(timeout=FRAME_TIMEOUT_MS)) + if self.sub in events: + msg = self.sub.recv() # single-part JPEG + if msg: + self.buffer.update(msg) + else: + # no frame received in timeout + continue + except Exception: + time.sleep(0.05) + + try: + self.sub.close() + except Exception: + pass + + def stop(self): + self._stop.set() + + +buffer = LatestFrameBuffer() +subscriber = ZMQCameraSubscriber(ROBOT_IP, ZMQ_PORT, buffer) +subscriber.start() + +# ----------------------- +# Helpers +# ----------------------- +def decode_jpeg(jpg: bytes) -> Optional[np.ndarray]: + try: + arr = np.frombuffer(jpg, dtype=np.uint8) + img = cv2.imdecode(arr, cv2.IMREAD_COLOR) + return img + except Exception: + return None + +def overlay_status(img: np.ndarray, fps: float, last_ts: float) -> np.ndarray: + if img is None: + return img + now = time.monotonic() + age_ms = (now - last_ts) * 1000.0 if last_ts > 0 else 0.0 + text = f"FPS: {fps:.1f} Age: {age_ms:.0f} ms" + cv2.putText(img, text, (12, 28), cv2.FONT_HERSHEY_SIMPLEX, 0.8, (255, 255, 255), 2, cv2.LINE_AA) + return img + +# ----------------------- +# MJPEG streaming +# ----------------------- +def mjpeg_generator(): + while True: + jpg, fps, last_ts = buffer.get() + if jpg is None: + time.sleep(0.02) + continue + + # Optional: decode->overlay->re-encode (adds CPU) + if SHOW_FPS: + img = decode_jpeg(jpg) + if img is None: + time.sleep(0.01) + continue + img = overlay_status(img, fps, last_ts) + ok, out = cv2.imencode(".jpg", img, [int(cv2.IMWRITE_JPEG_QUALITY), JPEG_QUALITY]) + if not ok: + continue + payload = out.tobytes() + else: + payload = jpg # send original JPEG directly (fastest) + + yield ( + b"--frame\r\n" + b"Content-Type: image/jpeg\r\n" + b"Cache-Control: no-cache\r\n\r\n" + payload + b"\r\n" + ) + +# ----------------------- +# Routes +# ----------------------- +@app.route("/") +def index(): + # Allow manual override: /?w=1280 + w = request.args.get("w", "1280") + return f""" + + + + Robot Head Camera + + +
+ Head Camera | ZMQ: {ROBOT_IP}:{ZMQ_PORT} | MJPEG: {HTTP_HOST}:{HTTP_PORT} +
+
+ +
+ + + """ + +@app.route("/video") +def video(): + return Response( + mjpeg_generator(), + mimetype="multipart/x-mixed-replace; boundary=frame" + ) + +@app.route("/health") +def health(): + jpg, fps, last_ts = buffer.get() + ok = jpg is not None + age = (time.monotonic() - last_ts) if last_ts else None + return { + "ok": ok, + "robot_ip": ROBOT_IP, + "zmq_port": ZMQ_PORT, + "fps": fps, + "age_sec": age, + } + +# ----------------------- +# Clean shutdown +# ----------------------- +def _shutdown(*_): + try: + subscriber.stop() + except Exception: + pass + time.sleep(0.1) + raise SystemExit(0) + +signal.signal(signal.SIGINT, _shutdown) +signal.signal(signal.SIGTERM, _shutdown) + +if __name__ == "__main__": + print(f"[INFO] Subscribing to: tcp://{ROBOT_IP}:{ZMQ_PORT}") + print(f"[INFO] Open in browser: http://:{HTTP_PORT}") + app.run(host=HTTP_HOST, port=HTTP_PORT, threaded=True) diff --git a/Camera_Recorder/DataG1/arm_home.jsonl b/Camera_Recorder/DataG1/arm_home.jsonl new file mode 100644 index 0000000..a7b1b62 --- /dev/null +++ b/Camera_Recorder/DataG1/arm_home.jsonl @@ -0,0 +1,482 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.3130820691585541, -0.01388593576848507, 0.015708694234490395, 0.6304575800895691, -0.326513409614563, 0.021098745986819267, -0.3218769133090973, 0.030117155984044075, -0.014771261252462864, 0.6223444938659668, -0.3365834653377533, -0.021014997735619545, 0.002691771136596799, 0.006411683280020952, -0.0298378374427557, 0.29042571783065796, 0.2159797102212906, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.0167, "q": [-0.3130394518375397, -0.01388593576848507, 0.015722084790468216, 0.6305854320526123, -0.3265092968940735, 0.02109152264893055, -0.3218769133090973, 0.030117155984044075, -0.01478465273976326, 0.6224552989006042, -0.3365916609764099, -0.021000416949391365, 0.002691771136596799, 0.006411683280020952, -0.0298378374427557, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.061706773936748505, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008844357915222645]} +{"t": 0.0336, "q": [-0.31300538778305054, -0.01388593576848507, 0.015708694234490395, 0.6306195259094238, -0.3265010416507721, 0.021077075973153114, -0.32190245389938354, 0.030100110918283463, -0.01478465273976326, 0.6225661039352417, -0.3365834653377533, -0.02100047469139099, 0.002691771136596799, 0.006464851088821888, -0.029813440516591072, 0.2904376983642578, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.2237934172153473, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.0503, "q": [-0.3129883408546448, -0.013868890702724457, 0.015695301815867424, 0.6306791305541992, -0.3265010416507721, 0.021077075973153114, -0.32190245389938354, 0.03009158931672573, -0.014771261252462864, 0.6225916743278503, -0.3365834653377533, -0.02100047469139099, 0.002691771136596799, 0.006480046082288027, -0.029823286458849907, 0.2904616594314575, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.067, "q": [-0.3129883408546448, -0.013868890702724457, 0.015681909397244453, 0.6306791305541992, -0.3265092968940735, 0.02109152264893055, -0.32190245389938354, 0.03009158931672573, -0.014771261252462864, 0.622617244720459, -0.33660396933555603, -0.020978543907403946, 0.002731946762651205, 0.006480061449110508, -0.029862530529499054, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9791951179504395, 0.15758058428764343, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.0838, "q": [-0.3129883408546448, -0.013868890702724457, 0.015681909397244453, 0.6307047009468079, -0.3265092968940735, 0.02109152264893055, -0.3219280242919922, 0.030066022649407387, -0.014731084927916527, 0.6226428151130676, -0.33661219477653503, -0.020963944494724274, 0.0026783791836351156, 0.00641929917037487, -0.029891815036535263, 0.2904856503009796, 0.21596772968769073, -0.005201153922826052, 0.9791951179504395, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.1005, "q": [-0.31299686431884766, -0.013868890702724457, 0.01565512642264366, 0.6307217478752136, -0.3265175223350525, 0.021076949313282967, -0.32195359468460083, 0.030066022649407387, -0.014757868833839893, 0.6226428151130676, -0.33660808205604553, -0.02095671370625496, 0.002718554809689522, 0.00648766802623868, -0.02988707646727562, 0.2905096113681793, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.1172, "q": [-0.3130139112472534, -0.013843324035406113, 0.015601558610796928, 0.6307047009468079, -0.326513409614563, 0.021098745986819267, -0.32194507122039795, 0.030057501047849655, -0.014757868833839893, 0.6226342916488647, -0.33662450313568115, -0.02097111940383911, 0.0026783791836351156, 0.006510468199849129, -0.0299018993973732, 0.2905455529689789, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.29507559537887573, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.134, "q": [-0.31304797530174255, -0.013851847499608994, 0.015588166192173958, 0.6307047009468079, -0.326521635055542, 0.021084172651171684, -0.32203882932662964, 0.030048979446291924, -0.014757868833839893, 0.6226513385772705, -0.33662450313568115, -0.02097111940383911, 0.0027051628567278385, 0.00654088007286191, -0.02994132786989212, 0.2905455529689789, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950875759124756, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008832373656332493]} +{"t": 0.1507, "q": [-0.31309911608695984, -0.013843324035406113, 0.015588166192173958, 0.6307047009468079, -0.326521635055542, 0.021084172651171684, -0.3220984637737274, 0.030040455982089043, -0.014731084927916527, 0.6226428151130676, -0.3366450071334839, -0.020963728427886963, 0.0026382035575807095, 0.006464953999966383, -0.03002951480448246, 0.2905455529689789, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29509955644607544, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18353840708732605, 0.05241899937391281, 0.008868326433002949]} +{"t": 0.1676, "q": [-0.3131246864795685, -0.013851847499608994, 0.015574774704873562, 0.6307132244110107, -0.326521635055542, 0.021084172651171684, -0.32217517495155334, 0.03003193438053131, -0.01470430102199316, 0.6226428151130676, -0.336649090051651, -0.020941896364092827, 0.0027989062946289778, 0.006419417914003134, -0.030117813497781754, 0.2905455529689789, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.2951115369796753, -0.22380541265010834, 0.023093601688742638, 0.9781045317649841, -0.1835503876209259, 0.05241899937391281, 0.008832373656332493]} +{"t": 0.1843, "q": [-0.3132099211215973, -0.013851847499608994, 0.015574774704873562, 0.6307132244110107, -0.326521635055542, 0.021098682656884193, -0.32222631573677063, 0.03003193438053131, -0.01471769344061613, 0.6226428151130676, -0.3366532027721405, -0.020934605970978737, 0.0027721223887056112, 0.006389044225215912, -0.030147191137075424, 0.2905455529689789, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.0409141443669796, 0.2950875759124756, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.201, "q": [-0.3132610321044922, -0.013851847499608994, 0.015574774704873562, 0.6307047009468079, -0.326521635055542, 0.021098682656884193, -0.32230299711227417, 0.030014891177415848, -0.014677518047392368, 0.6226428151130676, -0.33665731549263, -0.020956380292773247, 0.002731946762651205, 0.006381465587764978, -0.03018156625330448, 0.29053357243537903, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15754462778568268, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.2177, "q": [-0.3133121728897095, -0.013851847499608994, 0.015601558610796928, 0.6307047009468079, -0.3265340030193329, 0.021091332659125328, -0.32239675521850586, 0.03002341277897358, -0.014637341722846031, 0.6226257681846619, -0.3366696238517761, -0.02094901166856289, 0.002691771136596799, 0.00633589131757617, -0.030201058834791183, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15755660831928253, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.02310558594763279, 0.9780685901641846, -0.18358634412288666, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.2345, "q": [-0.3133974075317383, -0.013851847499608994, 0.015614950098097324, 0.6307047009468079, -0.3265298902988434, 0.02109861932694912, -0.3224649131298065, 0.029997846111655235, -0.014610557816922665, 0.6226257681846619, -0.33667370676994324, -0.020985309034585953, 0.002718554809689522, 0.006320723332464695, -0.030250148847699165, 0.2904736399650574, 0.21594375371932983, -0.005201153922826052, 0.9791951179504395, 0.15762852132320404, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.2512, "q": [-0.3135252296924591, -0.013860369101166725, 0.015588166192173958, 0.6306791305541992, -0.3265340030193329, 0.021105842664837837, -0.3226012885570526, 0.030006367713212967, -0.014637341722846031, 0.6226257681846619, -0.33666959404945374, -0.02097807638347149, 0.0026649872306734324, 0.0062523758970201015, -0.030303962528705597, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.0409141443669796, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.2679, "q": [-0.3136274814605713, -0.013877412304282188, 0.015614950098097324, 0.6307047009468079, -0.3265257775783539, 0.02110590599477291, -0.32262685894966125, 0.029997846111655235, -0.014637341722846031, 0.6226342916488647, -0.33666959404945374, -0.02097807638347149, 0.002731946762651205, 0.006108071189373732, -0.03038698434829712, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 0.2846, "q": [-0.3136615753173828, -0.013894457370042801, 0.01562834158539772, 0.6307047009468079, -0.3265257775783539, 0.021091395989060402, -0.3226609230041504, 0.029997846111655235, -0.014677518047392368, 0.6226342916488647, -0.3366449773311615, -0.021021820604801178, 0.0026382035575807095, 0.006092881318181753, -0.030396757647395134, 0.29042571783065796, 0.21596772968769073, -0.005201153922826052, 0.9791830778121948, 0.15760454535484314, 0.06169478967785835, -0.04087819159030914, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18358634412288666, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.3014, "q": [-0.3137127161026001, -0.01388593576848507, 0.01565512642264366, 0.630696177482605, -0.3265133798122406, 0.02111327461898327, -0.32266944646835327, 0.030014891177415848, -0.014677518047392368, 0.6226257681846619, -0.3366490602493286, -0.021029053255915642, 0.0026783791836351156, 0.006054885685443878, -0.03038187511265278, 0.2904137372970581, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.1575925648212433, 0.06169478967785835, -0.04092612862586975, 0.295051634311676, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008844357915222645]} +{"t": 0.3181, "q": [-0.31372976303100586, -0.013894457370042801, 0.01564173400402069, 0.6307047009468079, -0.326521635055542, 0.021113192662596703, -0.32267796993255615, 0.030014891177415848, -0.014677518047392368, 0.6226342916488647, -0.3366572856903076, -0.021014470607042313, 0.002731946762651205, 0.005994115956127644, -0.030401311814785004, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18358634412288666, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.3348, "q": [-0.3137127161026001, -0.01395411230623722, 0.01565512642264366, 0.6307047009468079, -0.326521635055542, 0.021113192662596703, -0.32268649339675903, 0.030014891177415848, -0.014664125628769398, 0.6226342916488647, -0.3366572856903076, -0.021014470607042313, 0.0026783791836351156, 0.0061156307347118855, -0.030323121696710587, 0.29044967889785767, 0.21594375371932983, -0.0051891696639359, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04086620733141899, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.3515, "q": [-0.31373828649520874, -0.01395411230623722, 0.015668518841266632, 0.6307047009468079, -0.326521635055542, 0.021113192662596703, -0.32267796993255615, 0.030014891177415848, -0.014677518047392368, 0.6226428151130676, -0.3366367518901825, -0.021050943061709404, 0.0027051628567278385, 0.006085248664021492, -0.030332839116454124, 0.29044967889785767, 0.21594375371932983, -0.005225121974945068, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008832373656332493]} +{"t": 0.3683, "q": [-0.3137127161026001, -0.01394559070467949, 0.015668518841266632, 0.6307132244110107, -0.3265175223350525, 0.021105969324707985, -0.32266944646835327, 0.03002341277897358, -0.014690909534692764, 0.6226769089698792, -0.3366285562515259, -0.021036479622125626, 0.002731946762651205, 0.006153599359095097, -0.030288858339190483, 0.29040175676345825, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06169478967785835, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 0.3851, "q": [-0.3137127161026001, -0.01395411230623722, 0.015668518841266632, 0.6307047009468079, -0.3265133798122406, 0.02111327461898327, -0.3226609230041504, 0.03003193438053131, -0.014731084927916527, 0.6227110028266907, -0.3366244435310364, -0.02105829305946827, 0.002731946762651205, 0.006100435741245747, -0.03032306581735611, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.29499170184135437, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.0088803106918931]} +{"t": 0.4018, "q": [-0.3136786222457886, -0.013962633907794952, 0.015695301815867424, 0.6307302713394165, -0.326521635055542, 0.021113192662596703, -0.3226523995399475, 0.03003193438053131, -0.01471769344061613, 0.6227365136146545, -0.33662036061286926, -0.02106558345258236, 0.0027453387156128883, 0.006123214494436979, -0.03029857575893402, 0.2904137372970581, 0.21594375371932983, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.06169478967785835, -0.04090216010808945, 0.29503965377807617, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.4185, "q": [-0.3136615753173828, -0.013962633907794952, 0.015681909397244453, 0.6307473182678223, -0.3265051543712616, 0.021113337948918343, -0.3226523995399475, 0.03003193438053131, -0.014731084927916527, 0.6228047013282776, -0.3366244435310364, -0.021072816103696823, 0.0026649872306734324, 0.006108025088906288, -0.030308350920677185, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.4352, "q": [-0.31363600492477417, -0.013971157371997833, 0.015735477209091187, 0.6308155059814453, -0.3265092670917511, 0.02110605128109455, -0.32263535261154175, 0.03003193438053131, -0.014690909534692764, 0.6228643655776978, -0.33662036061286926, -0.02106558345258236, 0.002691771136596799, 0.006100419443100691, -0.030293578281998634, 0.29040175676345825, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.452, "q": [-0.3136189579963684, -0.013971157371997833, 0.015722084790468216, 0.6308666467666626, -0.3265092670917511, 0.02110605128109455, -0.32262685894966125, 0.030040455982089043, -0.014690909534692764, 0.6229410767555237, -0.3366244435310364, -0.02105829305946827, 0.002691771136596799, 0.006138376891613007, -0.030239654704928398, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15765248239040375, 0.06167082488536835, -0.040890175849199295, 0.2950156629085541, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.4687, "q": [-0.31359341740608215, -0.013979678973555565, 0.015748869627714157, 0.6308922171592712, -0.326513409614563, 0.021098745986819267, -0.32262685894966125, 0.030014891177415848, -0.014677518047392368, 0.6229836940765381, -0.336632639169693, -0.021058233454823494, 0.002691771136596799, 0.006183940451592207, -0.030200503766536713, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04092612862586975, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 0.4854, "q": [-0.3135848939418793, -0.013979678973555565, 0.015748869627714157, 0.6309177875518799, -0.3265092670917511, 0.02110605128109455, -0.3226098120212555, 0.030014891177415848, -0.014677518047392368, 0.6230263113975525, -0.336640864610672, -0.021043652668595314, 0.0027051628567278385, 0.00623712595552206, -0.030205613002181053, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.5022, "q": [-0.3135763704776764, -0.013971157371997833, 0.015735477209091187, 0.6310114860534668, -0.3265092968940735, 0.02109152264893055, -0.3226012885570526, 0.030014891177415848, -0.014677518047392368, 0.6230774521827698, -0.3366326689720154, -0.02104371041059494, 0.002691771136596799, 0.006206746678799391, -0.030225161463022232, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.0088803106918931]} +{"t": 0.519, "q": [-0.3135763704776764, -0.01395411230623722, 0.015708694234490395, 0.631071150302887, -0.326513409614563, 0.021098745986819267, -0.3226012885570526, 0.030014891177415848, -0.014690909534692764, 0.6231200098991394, -0.3366285562515259, -0.021065523847937584, 0.002718554809689522, 0.006183956749737263, -0.030229991301894188, 0.2904856503009796, 0.2159557342529297, -0.005201153922826052, 0.9791951179504395, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.5357, "q": [-0.31354227662086487, -0.013962633907794952, 0.015708694234490395, 0.6310626268386841, -0.3265092968940735, 0.02107701264321804, -0.32259276509284973, 0.029997846111655235, -0.014677518047392368, 0.6231285333633423, -0.3366367518901825, -0.02103642001748085, 0.002718554809689522, 0.006176367402076721, -0.03024470806121826, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.5524, "q": [-0.31355932354927063, -0.01394559070467949, 0.015681909397244453, 0.6311052441596985, -0.3265092968940735, 0.02109152264893055, -0.3226012885570526, 0.030006367713212967, -0.014690909534692764, 0.6231541037559509, -0.336649090051651, -0.021014530211687088, 0.0027721223887056112, 0.006252326536923647, -0.030215498059988022, 0.2905096113681793, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15765248239040375, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 0.5692, "q": [-0.31355080008506775, -0.013928545638918877, 0.015681909397244453, 0.6311222910881042, -0.3265175223350525, 0.021091459318995476, -0.3226183354854584, 0.029997846111655235, -0.014677518047392368, 0.6231541037559509, -0.336649090051651, -0.021000007167458534, 0.002718554809689522, 0.006290311459451914, -0.030210722237825394, 0.2904856503009796, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 0.5859, "q": [-0.31354227662086487, -0.013920024037361145, 0.015681909397244453, 0.63113933801651, -0.3265175223350525, 0.021091459318995476, -0.3226012885570526, 0.029997846111655235, -0.014664125628769398, 0.6231626272201538, -0.3366408944129944, -0.021014587953686714, 0.002731946762651205, 0.0062143742106854916, -0.03027925081551075, 0.29053357243537903, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 0.6026, "q": [-0.31355080008506775, -0.01395411230623722, 0.015668518841266632, 0.6311734318733215, -0.3265257775783539, 0.021091395989060402, -0.32259276509284973, 0.029997846111655235, -0.014650734141469002, 0.623145580291748, -0.3366449773311615, -0.021007297560572624, 0.0027989062946289778, 0.006176416762173176, -0.030333172529935837, 0.2905096113681793, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22378143668174744, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 0.6193, "q": [-0.31355080008506775, -0.01394559070467949, 0.015668518841266632, 0.6311819553375244, -0.326521635055542, 0.021098682656884193, -0.32257571816444397, 0.029997846111655235, -0.014637341722846031, 0.6231541037559509, -0.3366572856903076, -0.020985424518585205, 0.0027051628567278385, 0.006206796038895845, -0.030313625931739807, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.04090216010808945, 0.29507559537887573, -0.22378143668174744, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.6361, "q": [-0.3135848939418793, -0.013920024037361145, 0.01565512642264366, 0.6311904788017273, -0.326521635055542, 0.021084172651171684, -0.32264387607574463, 0.029997846111655235, -0.014637341722846031, 0.6231541037559509, -0.3366572856903076, -0.021014470607042313, 0.002691771136596799, 0.006199211813509464, -0.030338170006871223, 0.29053357243537903, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.29509955644607544, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.6529, "q": [-0.31359341740608215, -0.013928545638918877, 0.015668518841266632, 0.6311990022659302, -0.326521635055542, 0.021098682656884193, -0.32264387607574463, 0.029997846111655235, -0.014637341722846031, 0.6231541037559509, -0.3366531729698181, -0.021007239818572998, 0.0027051628567278385, 0.006077686324715614, -0.030396701768040657, 0.29053357243537903, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.6697, "q": [-0.3136104345321655, -0.01395411230623722, 0.015681909397244453, 0.6312075257301331, -0.3265175223350525, 0.021105969324707985, -0.32264387607574463, 0.029980802908539772, -0.014650734141469002, 0.623145580291748, -0.3366613984107971, -0.021007180213928223, 0.0027453387156128883, 0.006115671247243881, -0.03039192594587803, 0.29049763083457947, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.6864, "q": [-0.3136104345321655, -0.01394559070467949, 0.015681909397244453, 0.6312160491943359, -0.326521635055542, 0.021113192662596703, -0.32263535261154175, 0.029989324510097504, -0.014637341722846031, 0.6231285333633423, -0.3366408944129944, -0.021014587953686714, 0.002718554809689522, 0.0060701025649905205, -0.030421247705817223, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008844357915222645]} +{"t": 0.7033, "q": [-0.3136274814605713, -0.01394559070467949, 0.015681909397244453, 0.6312330961227417, -0.3265175223350525, 0.021105969324707985, -0.3226523995399475, 0.029989324510097504, -0.014637341722846031, 0.6231370568275452, -0.3366449475288391, -0.021036362275481224, 0.0027051628567278385, 0.00604731822386384, -0.03043590858578682, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 0.7201, "q": [-0.3136786222457886, -0.013971157371997833, 0.015695301815867424, 0.6312245726585388, -0.3265257775783539, 0.02110590599477291, -0.3226523995399475, 0.029980802908539772, -0.014637341722846031, 0.6231370568275452, -0.336640864610672, -0.02102912962436676, 0.002731946762651205, 0.006115671247243881, -0.03039192594587803, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.29502764344215393, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 0.7368, "q": [-0.3136786222457886, -0.013962633907794952, 0.015681909397244453, 0.6312330961227417, -0.326521635055542, 0.021098682656884193, -0.3226523995399475, 0.029989324510097504, -0.014637341722846031, 0.623145580291748, -0.3366490602493286, -0.021029053255915642, 0.002718554809689522, 0.006115660537034273, -0.030372267588973045, 0.29042571783065796, 0.21594375371932983, -0.005213138181716204, 0.9791830778121948, 0.15758058428764343, 0.06167082488536835, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 0.7535, "q": [-0.3136700987815857, -0.013962633907794952, 0.015695301815867424, 0.6312501430511475, -0.326521635055542, 0.021084172651171684, -0.3226609230041504, 0.029997846111655235, -0.014637341722846031, 0.6231370568275452, -0.3366449773311615, -0.021021820604801178, 0.002758730435743928, 0.006100476253777742, -0.030391870066523552, 0.29040175676345825, 0.21596772968769073, -0.0051891696639359, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.2950156629085541, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.7702, "q": [-0.31369566917419434, -0.013979678973555565, 0.015708694234490395, 0.6312330961227417, -0.3265175223350525, 0.021105969324707985, -0.3226609230041504, 0.029989324510097504, -0.014677518047392368, 0.6231370568275452, -0.336640864610672, -0.021043652668595314, 0.002718554809689522, 0.006070069968700409, -0.030362272635102272, 0.29040175676345825, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.2950156629085541, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.787, "q": [-0.3136786222457886, -0.013979678973555565, 0.015695301815867424, 0.6312330961227417, -0.326521635055542, 0.021113192662596703, -0.32267796993255615, 0.029997846111655235, -0.01470430102199316, 0.6231541037559509, -0.3366285562515259, -0.021036479622125626, 0.002718554809689522, 0.006100454367697239, -0.030352553352713585, 0.2904376983642578, 0.21594375371932983, -0.0051891696639359, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04087819159030914, 0.2950156629085541, -0.2238173931837082, 0.02310558594763279, 0.9780925512313843, -0.1835743635892868, 0.052442967891693115, 0.008844357915222645]} +{"t": 0.8037, "q": [-0.31363600492477417, -0.013979678973555565, 0.015708694234490395, 0.6312330961227417, -0.3265175223350525, 0.021105969324707985, -0.3226609230041504, 0.030006367713212967, -0.014664125628769398, 0.6231541037559509, -0.3366367518901825, -0.021050943061709404, 0.002691771136596799, 0.006115636322647333, -0.03033295087516308, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.8204, "q": [-0.3136700987815857, -0.013979678973555565, 0.015708694234490395, 0.6312330961227417, -0.326513409614563, 0.021098745986819267, -0.32264387607574463, 0.030006367713212967, -0.01470430102199316, 0.6231541037559509, -0.3366285562515259, -0.02105100080370903, 0.0027453387156128883, 0.006100441329181194, -0.03033289685845375, 0.2904376983642578, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.8372, "q": [-0.31364452838897705, -0.013971157371997833, 0.015708694234490395, 0.6312245726585388, -0.3265175223350525, 0.021105969324707985, -0.32264387607574463, 0.030014891177415848, -0.01471769344061613, 0.6231626272201538, -0.336640864610672, -0.021043652668595314, 0.002691771136596799, 0.006123231258243322, -0.030328065156936646, 0.2904376983642578, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.8539, "q": [-0.31364452838897705, -0.013971157371997833, 0.015708694234490395, 0.6312330961227417, -0.326521635055542, 0.021098682656884193, -0.3226609230041504, 0.030014891177415848, -0.014731084927916527, 0.6231711506843567, -0.3366326689720154, -0.021029187366366386, 0.002718554809689522, 0.00625234842300415, -0.03025481477379799, 0.2904616594314575, 0.2159797102212906, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.8706, "q": [-0.31365305185317993, -0.013962633907794952, 0.015695301815867424, 0.6312330961227417, -0.3265092670917511, 0.02110605128109455, -0.3226523995399475, 0.03002341277897358, -0.014677518047392368, 0.6231881976127625, -0.3366326689720154, -0.021029187366366386, 0.002731946762651205, 0.006168789230287075, -0.03027908317744732, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.0409141443669796, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 0.8873, "q": [-0.31365305185317993, -0.01394559070467949, 0.015722084790468216, 0.6312501430511475, -0.326513409614563, 0.021098745986819267, -0.3226523995399475, 0.03002341277897358, -0.014690909534692764, 0.623222291469574, -0.3366326689720154, -0.021029187366366386, 0.0026783791836351156, 0.0061611998826265335, -0.030293799936771393, 0.2904616594314575, 0.21594375371932983, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.9041, "q": [-0.3136189579963684, -0.013962633907794952, 0.015708694234490395, 0.6312586665153503, -0.326521635055542, 0.021113192662596703, -0.3226609230041504, 0.030014891177415848, -0.014677518047392368, 0.6232308149337769, -0.336640864610672, -0.021043652668595314, 0.002718554809689522, 0.006199179217219353, -0.030279194936156273, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.061658840626478195, -0.040890175849199295, 0.29502764344215393, -0.22378143668174744, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.9209, "q": [-0.31363600492477417, -0.013962633907794952, 0.015695301815867424, 0.6312671899795532, -0.326513409614563, 0.021098745986819267, -0.32264387607574463, 0.030014891177415848, -0.014677518047392368, 0.6232649087905884, -0.3366367518901825, -0.02103642001748085, 0.002718554809689522, 0.006191589869558811, -0.030293911695480347, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15755660831928253, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.9376, "q": [-0.3136189579963684, -0.01395411230623722, 0.015681909397244453, 0.6313012838363647, -0.326513409614563, 0.021098745986819267, -0.32263535261154175, 0.030014891177415848, -0.014690909534692764, 0.6232819557189941, -0.3366285562515259, -0.02105100080370903, 0.0026783791836351156, 0.006168805528432131, -0.030308572575449944, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.9543, "q": [-0.3136189579963684, -0.013971157371997833, 0.015708694234490395, 0.6313268542289734, -0.3265175223350525, 0.021091459318995476, -0.3226523995399475, 0.029997846111655235, -0.014690909534692764, 0.6233245730400085, -0.3366285562515259, -0.021036479622125626, 0.0026783791836351156, 0.006244780961424112, -0.03030884824693203, 0.2904736399650574, 0.2159797102212906, -0.005213138181716204, 0.9791830778121948, 0.15762852132320404, 0.06167082488536835, -0.04087819159030914, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.0088803106918931]} +{"t": 0.9711, "q": [-0.31360191106796265, -0.013971157371997833, 0.015681909397244453, 0.6313268542289734, -0.326513409614563, 0.021098745986819267, -0.3226523995399475, 0.030014891177415848, -0.014677518047392368, 0.6233330965042114, -0.3366572856903076, -0.020985424518585205, 0.002718554809689522, 0.006161210592836142, -0.030313458293676376, 0.2905096113681793, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.06169478967785835, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9781045317649841, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.9878, "q": [-0.31359341740608215, -0.01395411230623722, 0.015681909397244453, 0.6313353776931763, -0.3265175223350525, 0.021091459318995476, -0.32264387607574463, 0.029997846111655235, -0.014677518047392368, 0.6233160495758057, -0.3366613984107971, -0.02099265716969967, 0.002718554809689522, 0.006199206691235304, -0.03032834082841873, 0.2904736399650574, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04087819159030914, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.005, "q": [-0.31360191106796265, -0.013962633907794952, 0.015681909397244453, 0.631352424621582, -0.3265175223350525, 0.021091459318995476, -0.32264387607574463, 0.029997846111655235, -0.014677518047392368, 0.6233416199684143, -0.33666548132896423, -0.020999889820814133, 0.0027051628567278385, 0.00619922298938036, -0.030357830226421356, 0.2904736399650574, 0.21593177318572998, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.0409141443669796, 0.29507559537887573, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 1.0217, "q": [-0.3136104345321655, -0.013971157371997833, 0.01564173400402069, 0.631352424621582, -0.326513409614563, 0.021098745986819267, -0.3226523995399475, 0.029989324510097504, -0.014664125628769398, 0.6233245730400085, -0.3366613984107971, -0.02099265716969967, 0.002691771136596799, 0.006191622465848923, -0.030352886766195297, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950875759124756, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 1.0384, "q": [-0.3136274814605713, -0.01394559070467949, 0.015668518841266632, 0.6313439011573792, -0.3265257775783539, 0.02110590599477291, -0.32267796993255615, 0.029989324510097504, -0.014690909534692764, 0.6233330965042114, -0.3366613984107971, -0.02099265716969967, 0.0026649872306734324, 0.006191633641719818, -0.03037254512310028, 0.2905096113681793, 0.21593177318572998, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.0552, "q": [-0.31360191106796265, -0.013962633907794952, 0.015668518841266632, 0.631352424621582, -0.326513409614563, 0.021098745986819267, -0.32268649339675903, 0.029980802908539772, -0.014664125628769398, 0.6233330965042114, -0.33666548132896423, -0.020999889820814133, 0.0027453387156128883, 0.006222012918442488, -0.03035299852490425, 0.29049763083457947, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.0719, "q": [-0.31363600492477417, -0.01395411230623722, 0.01565512642264366, 0.6313609480857849, -0.3265257775783539, 0.021091395989060402, -0.32268649339675903, 0.029980802908539772, -0.014637341722846031, 0.6233330965042114, -0.3366572856903076, -0.020985424518585205, 0.0026649872306734324, 0.006206828635185957, -0.030372601002454758, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 1.0887, "q": [-0.31363600492477417, -0.013971157371997833, 0.015681909397244453, 0.631352424621582, -0.3265133798122406, 0.02111327461898327, -0.32268649339675903, 0.02996375784277916, -0.014677518047392368, 0.6233330965042114, -0.3366572856903076, -0.021014470607042313, 0.002691771136596799, 0.006222023628652096, -0.030372656881809235, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.1054, "q": [-0.31365305185317993, -0.013971157371997833, 0.015668518841266632, 0.631352424621582, -0.326521635055542, 0.021098682656884193, -0.3226950168609619, 0.029980802908539772, -0.014650734141469002, 0.6233416199684143, -0.33666548132896423, -0.020999889820814133, 0.0026783791836351156, 0.006153656169772148, -0.0303871501237154, 0.2904616594314575, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05240701511502266, 0.008856342174112797]} +{"t": 1.1222, "q": [-0.3136615753173828, -0.013962633907794952, 0.015668518841266632, 0.6313439011573792, -0.3265175223350525, 0.021120497956871986, -0.3226950168609619, 0.029980802908539772, -0.014637341722846031, 0.6233330965042114, -0.33666548132896423, -0.020999889820814133, 0.0026783791836351156, 0.006070108152925968, -0.030431076884269714, 0.2904616594314575, 0.2159557342529297, -0.0051891696639359, 0.9791830778121948, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.2237934172153473, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.1389, "q": [-0.3136700987815857, -0.013962633907794952, 0.015695301815867424, 0.631352424621582, -0.326521635055542, 0.021098682656884193, -0.32272058725357056, 0.029980802908539772, -0.014650734141469002, 0.6233330965042114, -0.3366572856903076, -0.020985424518585205, 0.0026649872306734324, 0.006130866706371307, -0.030391981825232506, 0.2904856503009796, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.15762852132320404, 0.061706773936748505, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 1.1556, "q": [-0.3136615753173828, -0.013971157371997833, 0.015695301815867424, 0.6313694715499878, -0.326521635055542, 0.021098682656884193, -0.32272058725357056, 0.029980802908539772, -0.014637341722846031, 0.6233330965042114, -0.3366490602493286, -0.021029053255915642, 0.0027051628567278385, 0.00610808189958334, -0.030406642705202103, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04092612862586975, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.1723, "q": [-0.3137041926383972, -0.013971157371997833, 0.015695301815867424, 0.631352424621582, -0.3265257775783539, 0.02110590599477291, -0.3227376341819763, 0.029980802908539772, -0.014637341722846031, 0.6233330965042114, -0.3366572856903076, -0.021014470607042313, 0.002691771136596799, 0.00610808189958334, -0.030406642705202103, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.061706773936748505, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.1891, "q": [-0.3137041926383972, -0.014005245640873909, 0.015681909397244453, 0.631352424621582, -0.326521635055542, 0.021113192662596703, -0.32276320457458496, 0.02996375784277916, -0.014677518047392368, 0.6233245730400085, -0.3366613984107971, -0.02099265716969967, 0.002691771136596799, 0.006130866706371307, -0.030391981825232506, 0.29044967889785767, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 1.2058, "q": [-0.3137041926383972, -0.013979678973555565, 0.015681909397244453, 0.631352424621582, -0.3265257775783539, 0.02110590599477291, -0.3227546811103821, 0.029980802908539772, -0.014637341722846031, 0.6233330965042114, -0.33666548132896423, -0.020999889820814133, 0.002651595277711749, 0.006146050523966551, -0.03037237748503685, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.2225, "q": [-0.3137041926383972, -0.013971157371997833, 0.015681909397244453, 0.631352424621582, -0.3265175223350525, 0.021105969324707985, -0.32272058725357056, 0.02997227944433689, -0.014664125628769398, 0.6233245730400085, -0.33666548132896423, -0.020999889820814133, 0.0026649872306734324, 0.006153656169772148, -0.0303871501237154, 0.2904616594314575, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.2392, "q": [-0.31369566917419434, -0.013988200575113297, 0.015681909397244453, 0.6313609480857849, -0.326521635055542, 0.021113192662596703, -0.3227376341819763, 0.02997227944433689, -0.014637341722846031, 0.6233330965042114, -0.3366613984107971, -0.02099265716969967, 0.0027051628567278385, 0.0061232661828398705, -0.030387038365006447, 0.2904616594314575, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.2561, "q": [-0.3137041926383972, -0.013988200575113297, 0.015681909397244453, 0.6313694715499878, -0.3265298902988434, 0.02111312933266163, -0.3227376341819763, 0.029997846111655235, -0.014664125628769398, 0.6233330965042114, -0.3366613984107971, -0.021007180213928223, 0.002731946762651205, 0.006146066822111607, -0.030401866883039474, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023081617429852486, 0.9781045317649841, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 1.2728, "q": [-0.3137041926383972, -0.013971157371997833, 0.015668518841266632, 0.6313694715499878, -0.3265257775783539, 0.02110590599477291, -0.32272911071777344, 0.029980802908539772, -0.014677518047392368, 0.6233416199684143, -0.33666548132896423, -0.020999889820814133, 0.0027051628567278385, 0.006123277358710766, -0.03040669858455658, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.2895, "q": [-0.3137127161026001, -0.013988200575113297, 0.015681909397244453, 0.6313694715499878, -0.3265175223350525, 0.021091459318995476, -0.32272911071777344, 0.029997846111655235, -0.014690909534692764, 0.623367190361023, -0.3366490602493286, -0.021029053255915642, 0.002691771136596799, 0.006138466764241457, -0.030396923422813416, 0.29049763083457947, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.22378143668174744, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.3062, "q": [-0.31369566917419434, -0.013971157371997833, 0.015681909397244453, 0.6313864588737488, -0.326513409614563, 0.021098745986819267, -0.3227546811103821, 0.029980802908539772, -0.014690909534692764, 0.6233927607536316, -0.3366449773311615, -0.021021820604801178, 0.002691771136596799, 0.006047328934073448, -0.030455566942691803, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.323, "q": [-0.3136700987815857, -0.013996722176671028, 0.015681909397244453, 0.6314205527305603, -0.3265175223350525, 0.021091459318995476, -0.3227461576461792, 0.029980802908539772, -0.014664125628769398, 0.6234439015388489, -0.3366449773311615, -0.021021820604801178, 0.002731946762651205, 0.0061005037277936935, -0.03044101782143116, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.3397, "q": [-0.3136700987815857, -0.013971157371997833, 0.015681909397244453, 0.631446123123169, -0.3265175223350525, 0.021091459318995476, -0.3227376341819763, 0.029989324510097504, -0.014664125628769398, 0.6234779357910156, -0.3366449773311615, -0.021021820604801178, 0.0027051628567278385, 0.006100498139858246, -0.030431188642978668, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008832373656332493]} +{"t": 1.3564, "q": [-0.3136786222457886, -0.013988200575113297, 0.015681909397244453, 0.6314802169799805, -0.326513409614563, 0.021098745986819267, -0.32272911071777344, 0.029980802908539772, -0.014637341722846031, 0.6235035061836243, -0.3366408944129944, -0.021014587953686714, 0.0026649872306734324, 0.0060549345798790455, -0.030470339581370354, 0.2904856503009796, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 1.3731, "q": [-0.31365305185317993, -0.013971157371997833, 0.015695301815867424, 0.6315057873725891, -0.326513409614563, 0.021098745986819267, -0.3227461576461792, 0.02997227944433689, -0.014637341722846031, 0.6235376000404358, -0.3366449773311615, -0.021021820604801178, 0.0027453387156128883, 0.006062518805265427, -0.030445793643593788, 0.2904376983642578, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.3898, "q": [-0.3136615753173828, -0.013971157371997833, 0.015722084790468216, 0.6315398812294006, -0.326513409614563, 0.021098745986819267, -0.32272058725357056, 0.029980802908539772, -0.014664125628769398, 0.6235716938972473, -0.3366408944129944, -0.021014587953686714, 0.002691771136596799, 0.006024533417075872, -0.030450569465756416, 0.2904736399650574, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.4065, "q": [-0.3136615753173828, -0.013979678973555565, 0.015708694234490395, 0.631582498550415, -0.3265175223350525, 0.021105969324707985, -0.32272911071777344, 0.029980802908539772, -0.014690909534692764, 0.6235802173614502, -0.3366490602493286, -0.021029053255915642, 0.0026783791836351156, 0.006032133940607309, -0.030455512925982475, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04087819159030914, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.4234, "q": [-0.31364452838897705, -0.013979678973555565, 0.015708694234490395, 0.6315995454788208, -0.3265175223350525, 0.021105969324707985, -0.32272058725357056, 0.02997227944433689, -0.014664125628769398, 0.6236057877540588, -0.336640864610672, -0.021043652668595314, 0.002691771136596799, 0.006062518805265427, -0.030445793643593788, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.040890175849199295, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 1.4402, "q": [-0.31365305185317993, -0.013971157371997833, 0.015735477209091187, 0.6316165924072266, -0.3265092670917511, 0.02110605128109455, -0.3227546811103821, 0.02996375784277916, -0.014650734141469002, 0.623597264289856, -0.3366449773311615, -0.021021820604801178, 0.0026382035575807095, 0.006092898081988096, -0.03042624518275261, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18358634412288666, 0.05243098363280296, 0.008868326433002949]} +{"t": 1.4569, "q": [-0.3136615753173828, -0.013979678973555565, 0.015695301815867424, 0.6316251158714294, -0.326521635055542, 0.021098682656884193, -0.3227376341819763, 0.02997227944433689, -0.014664125628769398, 0.6236057877540588, -0.336649090051651, -0.021014530211687088, 0.002691771136596799, 0.006100492551922798, -0.030421359464526176, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15754462778568268, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.052395034581422806, 0.008856342174112797]} +{"t": 1.4736, "q": [-0.3136615753173828, -0.013971157371997833, 0.015695301815867424, 0.6316336393356323, -0.3265298902988434, 0.02109861932694912, -0.3227376341819763, 0.02997227944433689, -0.014650734141469002, 0.6236143112182617, -0.33666548132896423, -0.020999889820814133, 0.002731946762651205, 0.006138472352176905, -0.030406752601265907, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.4903, "q": [-0.3136786222457886, -0.013971157371997833, 0.015695301815867424, 0.6316421627998352, -0.326521635055542, 0.021113192662596703, -0.3227376341819763, 0.02997227944433689, -0.014637341722846031, 0.6236313581466675, -0.3366531729698181, -0.021021762862801552, 0.002691771136596799, 0.006062529515475035, -0.03046545200049877, 0.2904856503009796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 1.5071, "q": [-0.3136786222457886, -0.013979678973555565, 0.015695301815867424, 0.6316421627998352, -0.3265175223350525, 0.021105969324707985, -0.32276320457458496, 0.02996375784277916, -0.014637341722846031, 0.6236398816108704, -0.33666959404945374, -0.021007122471928596, 0.002731946762651205, 0.006092903204262257, -0.03043607622385025, 0.2904856503009796, 0.21596772968769073, -0.0051891696639359, 0.9791830778121948, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.5238, "q": [-0.3136786222457886, -0.013979678973555565, 0.015681909397244453, 0.6316506862640381, -0.3265175223350525, 0.021091459318995476, -0.32276320457458496, 0.02996375784277916, -0.014664125628769398, 0.6236398816108704, -0.33666548132896423, -0.020999889820814133, 0.0026649872306734324, 0.0061005037277936935, -0.03044101782143116, 0.29049763083457947, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.5406, "q": [-0.31368714570999146, -0.013988200575113297, 0.015681909397244453, 0.631659209728241, -0.326521635055542, 0.021098682656884193, -0.3227546811103821, 0.02997227944433689, -0.014637341722846031, 0.6236398816108704, -0.3366572856903076, -0.021014470607042313, 0.002691771136596799, 0.006062529515475035, -0.03046545200049877, 0.2905096113681793, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15754462778568268, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9781045317649841, -0.18358634412288666, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.5573, "q": [-0.3136786222457886, -0.013979678973555565, 0.015681909397244453, 0.6316933035850525, -0.3265175223350525, 0.021105969324707985, -0.3227546811103821, 0.02997227944433689, -0.014637341722846031, 0.6236398816108704, -0.3366572856903076, -0.021014470607042313, 0.0026649872306734324, 0.005994165316224098, -0.03048977628350258, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18358634412288666, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.574, "q": [-0.3136700987815857, -0.013996722176671028, 0.015708694234490395, 0.6316847801208496, -0.3265175223350525, 0.021091459318995476, -0.3227546811103821, 0.02997227944433689, -0.014650734141469002, 0.6236569285392761, -0.3366449773311615, -0.021021820604801178, 0.0027051628567278385, 0.006009360309690237, -0.030489832162857056, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1576405018568039, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 1.5908, "q": [-0.31368714570999146, -0.013962633907794952, 0.015695301815867424, 0.6317188739776611, -0.326521635055542, 0.021098682656884193, -0.3227546811103821, 0.029980802908539772, -0.014650734141469002, 0.6236569285392761, -0.3366367816925049, -0.021021896973252296, 0.002731946762651205, 0.0059258174151182175, -0.03054358996450901, 0.2904616594314575, 0.21594375371932983, -0.005225121974945068, 0.9792070984840393, 0.15752065181732178, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008844357915222645]} +{"t": 1.6075, "q": [-0.31369566917419434, -0.013979678973555565, 0.015708694234490395, 0.631727397441864, -0.3265175223350525, 0.021105969324707985, -0.3227546811103821, 0.02996375784277916, -0.014650734141469002, 0.6236739754676819, -0.3366490602493286, -0.021029053255915642, 0.002691771136596799, 0.005941001698374748, -0.030523985624313354, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.6242, "q": [-0.3136786222457886, -0.013996722176671028, 0.015722084790468216, 0.6317444443702698, -0.3265175223350525, 0.021105969324707985, -0.3227546811103821, 0.02997227944433689, -0.014623950235545635, 0.6236995458602905, -0.3366367518901825, -0.02103642001748085, 0.0027051628567278385, 0.005978975910693407, -0.030499551445245743, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 1.6412, "q": [-0.3136700987815857, -0.013988200575113297, 0.015748869627714157, 0.6317529678344727, -0.3265133798122406, 0.02111327461898327, -0.32276320457458496, 0.02996375784277916, -0.014664125628769398, 0.6237251162528992, -0.3366449773311615, -0.021021820604801178, 0.0026783791836351156, 0.005986565258353949, -0.03048483468592167, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008844357915222645]} +{"t": 1.658, "q": [-0.3136700987815857, -0.013979678973555565, 0.015735477209091187, 0.6317529678344727, -0.326513409614563, 0.021098745986819267, -0.32277172803878784, 0.029980802908539772, -0.014650734141469002, 0.6237677335739136, -0.336640864610672, -0.021043652668595314, 0.002731946762651205, 0.00597137538716197, -0.030494607985019684, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008844357915222645]} +{"t": 1.6747, "q": [-0.3136786222457886, -0.013996722176671028, 0.015735477209091187, 0.6317699551582336, -0.3265175223350525, 0.021091459318995476, -0.32277172803878784, 0.02997227944433689, -0.014664125628769398, 0.6237677335739136, -0.3366408944129944, -0.021014587953686714, 0.0027453387156128883, 0.005925806704908609, -0.030523929744958878, 0.2904616594314575, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.6915, "q": [-0.3136786222457886, -0.013971157371997833, 0.015748869627714157, 0.6317699551582336, -0.326521635055542, 0.021098682656884193, -0.32276320457458496, 0.029980802908539772, -0.014623950235545635, 0.6237762570381165, -0.3366449773311615, -0.021021820604801178, 0.0026783791836351156, 0.00597137538716197, -0.030494607985019684, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780685901641846, -0.18353840708732605, 0.05240701511502266, 0.008844357915222645]} +{"t": 1.7082, "q": [-0.3136615753173828, -0.013996722176671028, 0.015722084790468216, 0.6318040490150452, -0.3265257775783539, 0.021091395989060402, -0.3227546811103821, 0.029989324510097504, -0.014650734141469002, 0.6238188743591309, -0.3366490602493286, -0.021029053255915642, 0.002731946762651205, 0.00600175466388464, -0.030475059524178505, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.7249, "q": [-0.3136786222457886, -0.013971157371997833, 0.015748869627714157, 0.6318210959434509, -0.3265092670917511, 0.02110605128109455, -0.3227546811103821, 0.029980802908539772, -0.014677518047392368, 0.6238359212875366, -0.3366449773311615, -0.021021820604801178, 0.002691771136596799, 0.005994165316224098, -0.03048977628350258, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.02310558594763279, 0.9781045317649841, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.7417, "q": [-0.31365305185317993, -0.01401376724243164, 0.015762262046337128, 0.6318381428718567, -0.3265175223350525, 0.021091459318995476, -0.3227376341819763, 0.029980802908539772, -0.014637341722846031, 0.6239040493965149, -0.3366367816925049, -0.021021896973252296, 0.002731946762651205, 0.006024544592946768, -0.03047022968530655, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.7584, "q": [-0.3136615753173828, -0.013996722176671028, 0.015748869627714157, 0.6318637132644653, -0.3265175223350525, 0.021091459318995476, -0.32276320457458496, 0.029980802908539772, -0.014677518047392368, 0.6239210963249207, -0.3366490602493286, -0.021029053255915642, 0.002718554809689522, 0.006009349599480629, -0.030470173805952072, 0.2904736399650574, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.040890175849199295, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.7751, "q": [-0.31365305185317993, -0.014005245640873909, 0.015748869627714157, 0.631889283657074, -0.326513409614563, 0.021098745986819267, -0.3227546811103821, 0.029980802908539772, -0.014650734141469002, 0.6239551901817322, -0.3366408944129944, -0.021014587953686714, 0.002691771136596799, 0.00602453900501132, -0.030460398644208908, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.792, "q": [-0.31365305185317993, -0.013988200575113297, 0.015748869627714157, 0.6319404244422913, -0.326521635055542, 0.021098682656884193, -0.32276320457458496, 0.029980802908539772, -0.014650734141469002, 0.6240063309669495, -0.3366449773311615, -0.021021820604801178, 0.0027051628567278385, 0.006009349599480629, -0.030470173805952072, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.8087, "q": [-0.3136274814605713, -0.013996722176671028, 0.015748869627714157, 0.6319489479064941, -0.3265175223350525, 0.021091459318995476, -0.3227546811103821, 0.02997227944433689, -0.014637341722846031, 0.6240319013595581, -0.3366449773311615, -0.021021820604801178, 0.0026649872306734324, 0.006032139528542757, -0.030465342104434967, 0.29049763083457947, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835503876209259, 0.05241899937391281, 0.008844357915222645]} +{"t": 1.8254, "q": [-0.31363600492477417, -0.013996722176671028, 0.015748869627714157, 0.6319659948348999, -0.3265175223350525, 0.021091459318995476, -0.3227546811103821, 0.029980802908539772, -0.014664125628769398, 0.6240659952163696, -0.3366449773311615, -0.021021820604801178, 0.0027051628567278385, 0.005978970322757959, -0.03048972226679325, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.8422, "q": [-0.3136274814605713, -0.013988200575113297, 0.015735477209091187, 0.6319915652275085, -0.326513409614563, 0.021098745986819267, -0.32276320457458496, 0.029955236241221428, -0.014650734141469002, 0.6240830421447754, -0.3366490602493286, -0.021029053255915642, 0.002718554809689522, 0.006039739586412907, -0.030470283702015877, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.8589, "q": [-0.3136274814605713, -0.013979678973555565, 0.015722084790468216, 0.6320000886917114, -0.3265175223350525, 0.021091459318995476, -0.32277172803878784, 0.02996375784277916, -0.014650734141469002, 0.624108612537384, -0.336649090051651, -0.021000007167458534, 0.002718554809689522, 0.006077708210796118, -0.030436020344495773, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9792190790176392, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.29507559537887573, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.8756, "q": [-0.31363600492477417, -0.013988200575113297, 0.015722084790468216, 0.6320000886917114, -0.326521635055542, 0.021084172651171684, -0.3227887749671936, 0.029955236241221428, -0.014650734141469002, 0.6241256594657898, -0.3366449773311615, -0.021021820604801178, 0.0027051628567278385, 0.006070118863135576, -0.030450737103819847, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.8926, "q": [-0.31363600492477417, -0.013996722176671028, 0.015748869627714157, 0.6320171356201172, -0.326513409614563, 0.021098745986819267, -0.32281434535980225, 0.029955236241221428, -0.014637341722846031, 0.624108612537384, -0.33666136860847473, -0.021021703258156776, 0.002718554809689522, 0.006085303146392107, -0.03043113276362419, 0.2904856503009796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9781045317649841, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 1.9093, "q": [-0.31363600492477417, -0.013988200575113297, 0.015735477209091187, 0.6320086121559143, -0.3265175223350525, 0.021091459318995476, -0.3227972984313965, 0.029955236241221428, -0.014637341722846031, 0.6241256594657898, -0.33667367696762085, -0.02101435326039791, 0.0026783791836351156, 0.006070124451071024, -0.03046056628227234, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.9261, "q": [-0.31364452838897705, -0.013996722176671028, 0.015695301815867424, 0.6320171356201172, -0.3265092670917511, 0.02110605128109455, -0.32280582189559937, 0.029946712777018547, -0.014650734141469002, 0.6241256594657898, -0.33666548132896423, -0.020999889820814133, 0.0026783791836351156, 0.0060245501808822155, -0.03048005886375904, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.1575925648212433, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.052442967891693115, 0.008844357915222645]} +{"t": 1.943, "q": [-0.31364452838897705, -0.013988200575113297, 0.015668518841266632, 0.6320171356201172, -0.326521635055542, 0.021098682656884193, -0.32282283902168274, 0.029955236241221428, -0.014623950235545635, 0.624108612537384, -0.33666548132896423, -0.020999889820814133, 0.0026382035575807095, 0.0060245501808822155, -0.03048005886375904, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 1.9597, "q": [-0.31363600492477417, -0.013996722176671028, 0.015708694234490395, 0.6320256590843201, -0.326513409614563, 0.021098745986819267, -0.32280582189559937, 0.029946712777018547, -0.014637341722846031, 0.6241171360015869, -0.33666548132896423, -0.020999889820814133, 0.002718554809689522, 0.005994176026433706, -0.030509434640407562, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.29507559537887573, -0.2237934172153473, 0.023093601688742638, 0.9781045317649841, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 1.9765, "q": [-0.31363600492477417, -0.013988200575113297, 0.015695301815867424, 0.6320171356201172, -0.3265257775783539, 0.021091395989060402, -0.3228313624858856, 0.029946712777018547, -0.014650734141469002, 0.6241256594657898, -0.33667367696762085, -0.02101435326039791, 0.0027051628567278385, 0.006070130039006472, -0.03047039546072483, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.0409141443669796, 0.29507559537887573, -0.22380541265010834, 0.023069633170962334, 0.9781045317649841, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.9933, "q": [-0.3136615753173828, -0.013988200575113297, 0.015695301815867424, 0.6320171356201172, -0.3265298902988434, 0.02109861932694912, -0.3228825032711029, 0.029946712777018547, -0.014610557816922665, 0.6241000890731812, -0.33666548132896423, -0.020999889820814133, 0.002718554809689522, 0.006032150238752365, -0.03048500046133995, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04086620733141899, 0.295051634311676, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 2.0101, "q": [-0.31369566917419434, -0.013988200575113297, 0.015708694234490395, 0.6320171356201172, -0.326521635055542, 0.021113192662596703, -0.3228825032711029, 0.029938191175460815, -0.014623950235545635, 0.624108612537384, -0.33666959404945374, -0.021007122471928596, 0.002718554809689522, 0.006024555303156376, -0.030489888042211533, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.29503965377807617, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 2.0268, "q": [-0.3137127161026001, -0.013996722176671028, 0.015695301815867424, 0.6320171356201172, -0.3265257775783539, 0.02110590599477291, -0.32290807366371155, 0.029946712777018547, -0.014623950235545635, 0.624108612537384, -0.33666959404945374, -0.021007122471928596, 0.002731946762651205, 0.005978992208838463, -0.030529038980603218, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.0435, "q": [-0.3137127161026001, -0.013988200575113297, 0.015695301815867424, 0.6320171356201172, -0.3265257775783539, 0.02110590599477291, -0.3229251205921173, 0.029946712777018547, -0.014597166329622269, 0.6241000890731812, -0.33667778968811035, -0.021021604537963867, 0.002651595277711749, 0.005956196691840887, -0.03052404150366783, 0.2905096113681793, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04092612862586975, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05240701511502266, 0.008868326433002949]} +{"t": 2.0603, "q": [-0.3137553334236145, -0.013988200575113297, 0.015695301815867424, 0.6320171356201172, -0.3265257775783539, 0.02110590599477291, -0.32295069098472595, 0.029938191175460815, -0.014610557816922665, 0.6240830421447754, -0.33668190240859985, -0.02099977247416973, 0.0026783791836351156, 0.005887848790735006, -0.030577853322029114, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.077, "q": [-0.3138149678707123, -0.01401376724243164, 0.015708694234490395, 0.6320171356201172, -0.3265257775783539, 0.02110590599477291, -0.3229847848415375, 0.029938191175460815, -0.014583774842321873, 0.6241000890731812, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.005933412350714207, -0.03053870238363743, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.0409141443669796, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9781045317649841, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.0937, "q": [-0.31383201479911804, -0.01401376724243164, 0.015695301815867424, 0.6320256590843201, -0.3265257775783539, 0.02110590599477291, -0.32299330830574036, 0.029929669573903084, -0.014583774842321873, 0.6240915656089783, -0.33668190240859985, -0.02099977247416973, 0.0027051628567278385, 0.005910633131861687, -0.030563192442059517, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06169478967785835, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.1105, "q": [-0.3138490617275238, -0.014005245640873909, 0.015708694234490395, 0.6320171356201172, -0.3265340030193329, 0.02112036943435669, -0.3230103552341461, 0.029929669573903084, -0.014570382423698902, 0.6240915656089783, -0.33667778968811035, -0.020992539823055267, 0.0026783791836351156, 0.005880243144929409, -0.030563080683350563, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.061658840626478195, -0.04090216010808945, 0.29502764344215393, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.1274, "q": [-0.31386610865592957, -0.014005245640873909, 0.015708694234490395, 0.6320171356201172, -0.3265381455421448, 0.021113082766532898, -0.3230358958244324, 0.029921147972345352, -0.014583774842321873, 0.6240830421447754, -0.33669009804725647, -0.021014254540205002, 0.002718554809689522, 0.005895438138395548, -0.03056313656270504, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04087819159030914, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.1441, "q": [-0.3138916790485382, -0.014005245640873909, 0.015681909397244453, 0.6320256590843201, -0.3265257775783539, 0.021134961396455765, -0.3230188488960266, 0.029921147972345352, -0.014583774842321873, 0.6240915656089783, -0.33668190240859985, -0.02099977247416973, 0.0027453387156128883, 0.005880253855139017, -0.030582740902900696, 0.2904736399650574, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.1608, "q": [-0.3138831555843353, -0.014022288843989372, 0.015708694234490395, 0.6320171356201172, -0.3265175223350525, 0.021120497956871986, -0.3230358958244324, 0.029921147972345352, -0.014610557816922665, 0.6240915656089783, -0.33668598532676697, -0.021007023751735687, 0.002718554809689522, 0.0059334286488592625, -0.030568189918994904, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06169478967785835, -0.0409141443669796, 0.29507559537887573, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008868326433002949]} +{"t": 2.1776, "q": [-0.3138916790485382, -0.013996722176671028, 0.015735477209091187, 0.6320171356201172, -0.326521635055542, 0.021098682656884193, -0.3230358958244324, 0.02991262450814247, -0.014610557816922665, 0.6240915656089783, -0.33669009804725647, -0.021014254540205002, 0.002731946762651205, 0.005918233655393124, -0.030568134039640427, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.2238173931837082, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.1943, "q": [-0.31387463212013245, -0.014005245640873909, 0.015695301815867424, 0.632034182548523, -0.3265175223350525, 0.021091459318995476, -0.3230103552341461, 0.02990410290658474, -0.014623950235545635, 0.624108612537384, -0.33668187260627747, -0.02102883718907833, 0.002718554809689522, 0.005903043784201145, -0.03057790920138359, 0.2904736399650574, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 2.2111, "q": [-0.31387463212013245, -0.01401376724243164, 0.015681909397244453, 0.6320256590843201, -0.326513409614563, 0.021098745986819267, -0.3230273723602295, 0.02991262450814247, -0.014583774842321873, 0.6241000890731812, -0.33667367696762085, -0.02101435326039791, 0.002691771136596799, 0.005925823003053665, -0.030553419142961502, 0.2904616594314575, 0.21593177318572998, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.2278, "q": [-0.31387463212013245, -0.01401376724243164, 0.015708694234490395, 0.6320171356201172, -0.3265175223350525, 0.021091459318995476, -0.32304441928863525, 0.02991262450814247, -0.014597166329622269, 0.624108612537384, -0.33666956424713135, -0.02102164551615715, 0.002731946762651205, 0.00592581182718277, -0.03053375892341137, 0.2904616594314575, 0.21596772968769073, -0.0051891696639359, 0.9792070984840393, 0.1575925648212433, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05240701511502266, 0.008856342174112797]} +{"t": 2.2446, "q": [-0.3138575851917267, -0.013996722176671028, 0.015708694234490395, 0.632034182548523, -0.326521635055542, 0.021113192662596703, -0.3230103552341461, 0.029921147972345352, -0.014637341722846031, 0.624108612537384, -0.33666956424713135, -0.02102164551615715, 0.0027453387156128883, 0.005956196691840887, -0.03052404150366783, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9791830778121948, 0.15756858885288239, 0.06167082488536835, -0.04087819159030914, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835264265537262, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.2614, "q": [-0.3138575851917267, -0.013996722176671028, 0.015722084790468216, 0.632034182548523, -0.3265092670917511, 0.02110605128109455, -0.32299330830574036, 0.029929669573903084, -0.014637341722846031, 0.6241171360015869, -0.3366531729698181, -0.021036284044384956, 0.002718554809689522, 0.0059486073441803455, -0.030538758262991905, 0.29044967889785767, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.2782, "q": [-0.3138490617275238, -0.01401376724243164, 0.015695301815867424, 0.632034182548523, -0.3265092670917511, 0.02110605128109455, -0.3230103552341461, 0.029921147972345352, -0.014623950235545635, 0.6241171360015869, -0.3366531431674957, -0.021050825715065002, 0.002691771136596799, 0.005963802337646484, -0.030538812279701233, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.2949, "q": [-0.3138575851917267, -0.014022288843989372, 0.015708694234490395, 0.6320427060127258, -0.3265175223350525, 0.021091459318995476, -0.32300183176994324, 0.029929669573903084, -0.014650734141469002, 0.6241171360015869, -0.33665725588798523, -0.02104351669549942, 0.002691771136596799, 0.0059865922667086124, -0.030533980578184128, 0.2904856503009796, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023069633170962334, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.3118, "q": [-0.31383201479911804, -0.014005245640873909, 0.015722084790468216, 0.6320512294769287, -0.3265175223350525, 0.021091459318995476, -0.32299330830574036, 0.02991262450814247, -0.014623950235545635, 0.6241341829299927, -0.3366490602493286, -0.021058116108179092, 0.002758730435743928, 0.005956202279776335, -0.030533870682120323, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.0409141443669796, 0.2950636148452759, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.3285, "q": [-0.31383201479911804, -0.014005245640873909, 0.015708694234490395, 0.6320427060127258, -0.3265175223350525, 0.021105969324707985, -0.32299330830574036, 0.029929669573903084, -0.014623950235545635, 0.6241597533226013, -0.33666136860847473, -0.02103622630238533, 0.002718554809689522, 0.006039750762283802, -0.03048994392156601, 0.2905096113681793, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.3453, "q": [-0.3138405382633209, -0.01401376724243164, 0.015708694234490395, 0.6320512294769287, -0.3265092670917511, 0.02110605128109455, -0.32299330830574036, 0.029921147972345352, -0.014623950235545635, 0.6241597533226013, -0.3366490602493286, -0.02104359306395054, 0.0026783791836351156, 0.005978997331112623, -0.03053886815905571, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04092612862586975, 0.29507559537887573, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.1835503876209259, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.3621, "q": [-0.31383201479911804, -0.014022288843989372, 0.015722084790468216, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.32299330830574036, 0.029921147972345352, -0.014650734141469002, 0.6241597533226013, -0.33666548132896423, -0.021014412865042686, 0.002718554809689522, 0.005986575968563557, -0.030504493042826653, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.0409141443669796, 0.2950636148452759, -0.22380541265010834, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 2.3788, "q": [-0.31383201479911804, -0.014005245640873909, 0.015695301815867424, 0.6320512294769287, -0.326513409614563, 0.021098745986819267, -0.3229847848415375, 0.029921147972345352, -0.014637341722846031, 0.6241512298583984, -0.33666959404945374, -0.021036185324192047, 0.0026783791836351156, 0.005994176026433706, -0.030509434640407562, 0.2904856503009796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15758058428764343, 0.06169478967785835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835503876209259, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.3956, "q": [-0.3138405382633209, -0.013996722176671028, 0.015708694234490395, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.32299330830574036, 0.029929669573903084, -0.014623950235545635, 0.6241512298583984, -0.33667367696762085, -0.02104341797530651, 0.002691771136596799, 0.005986581556499004, -0.030514322221279144, 0.2904856503009796, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05243098363280296, 0.008868326433002949]} +{"t": 2.4123, "q": [-0.3138405382633209, -0.013996722176671028, 0.015722084790468216, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.3229847848415375, 0.029929669573903084, -0.014610557816922665, 0.6241427063941956, -0.33666136860847473, -0.021021703258156776, 0.002758730435743928, 0.005956191103905439, -0.03051421232521534, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.429, "q": [-0.3138575851917267, -0.013996722176671028, 0.015708694234490395, 0.6320512294769287, -0.3265175223350525, 0.021105969324707985, -0.3229762613773346, 0.02991262450814247, -0.014597166329622269, 0.6241597533226013, -0.33666959404945374, -0.021007122471928596, 0.0027453387156128883, 0.006039745174348354, -0.03048011288046837, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05240701511502266, 0.008868326433002949]} +{"t": 2.4458, "q": [-0.31387463212013245, -0.01401376724243164, 0.015695301815867424, 0.6320512294769287, -0.3265175223350525, 0.021105969324707985, -0.3230103552341461, 0.029921147972345352, -0.014623950235545635, 0.6241427063941956, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.006009371485561132, -0.03050949051976204, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 2.4627, "q": [-0.3138575851917267, -0.013996722176671028, 0.015708694234490395, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.32299330830574036, 0.029929669573903084, -0.014623950235545635, 0.6241512298583984, -0.33666548132896423, -0.02102893590927124, 0.0026783791836351156, 0.005956196691840887, -0.03052404150366783, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835503876209259, 0.05243098363280296, 0.008844357915222645]} +{"t": 2.4794, "q": [-0.31387463212013245, -0.014005245640873909, 0.015748869627714157, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.32299330830574036, 0.029921147972345352, -0.014597166329622269, 0.6241512298583984, -0.33667367696762085, -0.02101435326039791, 0.002758730435743928, 0.005986581556499004, -0.030514322221279144, 0.2904856503009796, 0.21594375371932983, -0.005201153922826052, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835264265537262, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.4962, "q": [-0.31387463212013245, -0.014005245640873909, 0.015722084790468216, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.32299330830574036, 0.029921147972345352, -0.014623950235545635, 0.6241512298583984, -0.33667367696762085, -0.02101435326039791, 0.002731946762651205, 0.005986575968563557, -0.030504493042826653, 0.2904616594314575, 0.2159797102212906, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.052395034581422806, 0.008856342174112797]} +{"t": 2.5129, "q": [-0.31386610865592957, -0.014005245640873909, 0.015722084790468216, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.32300183176994324, 0.029921147972345352, -0.014610557816922665, 0.6241427063941956, -0.33667367696762085, -0.02101435326039791, 0.0026783791836351156, 0.005994176026433706, -0.030509434640407562, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.5296, "q": [-0.3138490617275238, -0.013996722176671028, 0.015722084790468216, 0.6320512294769287, -0.3265092670917511, 0.02110605128109455, -0.32299330830574036, 0.02990410290658474, -0.014597166329622269, 0.6241427063941956, -0.33667778968811035, -0.021021604537963867, 0.002718554809689522, 0.006032150238752365, -0.03048500046133995, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04087819159030914, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835503876209259, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.5464, "q": [-0.3138490617275238, -0.01401376724243164, 0.015722084790468216, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.3230103552341461, 0.029921147972345352, -0.014597166329622269, 0.6241512298583984, -0.33666959404945374, -0.021007122471928596, 0.0027051628567278385, 0.0060017709620296955, -0.03050454892218113, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.5631, "q": [-0.3138575851917267, -0.01401376724243164, 0.015722084790468216, 0.6320597529411316, -0.3265092968940735, 0.02109152264893055, -0.32300183176994324, 0.029921147972345352, -0.014610557816922665, 0.6241427063941956, -0.33666136860847473, -0.021050767973065376, 0.002718554809689522, 0.006009371485561132, -0.03050949051976204, 0.29044967889785767, 0.21596772968769073, -0.0051891696639359, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.052442967891693115, 0.008856342174112797]} +{"t": 2.5798, "q": [-0.3138490617275238, -0.01401376724243164, 0.015708694234490395, 0.6320597529411316, -0.3265092670917511, 0.02110605128109455, -0.32300183176994324, 0.02990410290658474, -0.014610557816922665, 0.6241427063941956, -0.3366572856903076, -0.021014470607042313, 0.002718554809689522, 0.005986575968563557, -0.030504493042826653, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.040890175849199295, 0.295051634311676, -0.2238173931837082, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.5966, "q": [-0.3138575851917267, -0.014005245640873909, 0.015735477209091187, 0.6320597529411316, -0.3265133798122406, 0.02111327461898327, -0.32300183176994324, 0.02991262450814247, -0.014623950235545635, 0.6241512298583984, -0.33666136860847473, -0.02103622630238533, 0.0027051628567278385, 0.0060017709620296955, -0.03050454892218113, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.157616525888443, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.6133, "q": [-0.31382349133491516, -0.014022288843989372, 0.015748869627714157, 0.6320512294769287, -0.326513409614563, 0.021098745986819267, -0.32300183176994324, 0.02991262450814247, -0.014623950235545635, 0.6241427063941956, -0.33665725588798523, -0.02104351669549942, 0.002731946762651205, 0.005978986620903015, -0.030519209802150726, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06169478967785835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.6301, "q": [-0.3138405382633209, -0.014005245640873909, 0.015735477209091187, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.32299330830574036, 0.029929669573903084, -0.014610557816922665, 0.6241512298583984, -0.3366490602493286, -0.021058116108179092, 0.0026649872306734324, 0.005971380975097418, -0.030504437163472176, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.061658840626478195, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.647, "q": [-0.31382349133491516, -0.01401376724243164, 0.015695301815867424, 0.6320512294769287, -0.326521635055542, 0.021098682656884193, -0.3229762613773346, 0.029921147972345352, -0.014623950235545635, 0.6241427063941956, -0.33666956424713135, -0.02102164551615715, 0.002691771136596799, 0.0060245501808822155, -0.03048005886375904, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.6637, "q": [-0.3138575851917267, -0.014005245640873909, 0.015708694234490395, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.3229847848415375, 0.029921147972345352, -0.014623950235545635, 0.6241512298583984, -0.33666136860847473, -0.021021703258156776, 0.0026783791836351156, 0.006009365897625685, -0.030499661341309547, 0.2904736399650574, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 2.6805, "q": [-0.31382349133491516, -0.014005245640873909, 0.015722084790468216, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.3229847848415375, 0.029921147972345352, -0.014623950235545635, 0.6241341829299927, -0.33666548132896423, -0.02102893590927124, 0.002731946762651205, 0.006009365897625685, -0.030499661341309547, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 2.6972, "q": [-0.31382349133491516, -0.013996722176671028, 0.015722084790468216, 0.6320512294769287, -0.326521635055542, 0.021084172651171684, -0.32299330830574036, 0.029938191175460815, -0.014623950235545635, 0.6241512298583984, -0.33666959404945374, -0.021036185324192047, 0.002731946762651205, 0.006039750762283802, -0.03048994392156601, 0.2905096113681793, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18353840708732605, 0.05243098363280296, 0.008844357915222645]} +{"t": 2.714, "q": [-0.31382349133491516, -0.014022288843989372, 0.015735477209091187, 0.6320597529411316, -0.3265133798122406, 0.02111327461898327, -0.32299330830574036, 0.029938191175460815, -0.014623950235545635, 0.6241512298583984, -0.33666548132896423, -0.02102893590927124, 0.002691771136596799, 0.006115698721259832, -0.030441073700785637, 0.2905096113681793, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.7308, "q": [-0.31383201479911804, -0.013979678973555565, 0.015695301815867424, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.3229847848415375, 0.029946712777018547, -0.014637341722846031, 0.6241427063941956, -0.33668190240859985, -0.02099977247416973, 0.002758730435743928, 0.006100498139858246, -0.030431188642978668, 0.2905096113681793, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.7476, "q": [-0.31383201479911804, -0.013979678973555565, 0.015708694234490395, 0.6320597529411316, -0.3265092670917511, 0.02110605128109455, -0.32300183176994324, 0.029929669573903084, -0.014623950235545635, 0.6241341829299927, -0.33667778968811035, -0.021021604537963867, 0.0026783791836351156, 0.006054929457604885, -0.030460510402917862, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.7643, "q": [-0.3138405382633209, -0.013988200575113297, 0.015695301815867424, 0.6320682764053345, -0.326521635055542, 0.021098682656884193, -0.32300183176994324, 0.029921147972345352, -0.014637341722846031, 0.6241341829299927, -0.33667778968811035, -0.020992539823055267, 0.0027051628567278385, 0.006062529515475035, -0.03046545200049877, 0.2904616594314575, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.1576405018568039, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008832373656332493]} +{"t": 2.7812, "q": [-0.3138405382633209, -0.013962633907794952, 0.015708694234490395, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.3230103552341461, 0.029921147972345352, -0.014623950235545635, 0.6241256594657898, -0.33667367696762085, -0.02101435326039791, 0.0027051628567278385, 0.006108098663389683, -0.030436130240559578, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9781045317649841, -0.18356238305568695, 0.052442967891693115, 0.008844357915222645]} +{"t": 2.7981, "q": [-0.31386610865592957, -0.013971157371997833, 0.015681909397244453, 0.6320597529411316, -0.3265298902988434, 0.02109861932694912, -0.3230273723602295, 0.02991262450814247, -0.014623950235545635, 0.6241256594657898, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.006062523927539587, -0.03045562282204628, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04087819159030914, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.8148, "q": [-0.31387463212013245, -0.013971157371997833, 0.015681909397244453, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.3230273723602295, 0.029929669573903084, -0.014623950235545635, 0.6241256594657898, -0.33667367696762085, -0.02101435326039791, 0.0026649872306734324, 0.006077719386667013, -0.030455678701400757, 0.2904616594314575, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.8316, "q": [-0.31387463212013245, -0.013971157371997833, 0.015695301815867424, 0.6320512294769287, -0.326521635055542, 0.021113192662596703, -0.3230273723602295, 0.029921147972345352, -0.014610557816922665, 0.624108612537384, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.006077730096876621, -0.03047533705830574, 0.2904616594314575, 0.2159797102212906, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052395034581422806, 0.008868326433002949]} +{"t": 2.8483, "q": [-0.31387463212013245, -0.013971157371997833, 0.015695301815867424, 0.6320597529411316, -0.326521635055542, 0.021098682656884193, -0.323061466217041, 0.029929669573903084, -0.014623950235545635, 0.6241256594657898, -0.3366941809654236, -0.021021487191319466, 0.002691771136596799, 0.006077730096876621, -0.03047533705830574, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.8651, "q": [-0.3139002025127411, -0.013971157371997833, 0.015668518841266632, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.32305294275283813, 0.029921147972345352, -0.014597166329622269, 0.6241341829299927, -0.3367023766040802, -0.02102142944931984, 0.002691771136596799, 0.006039750762283802, -0.03048994392156601, 0.2904856503009796, 0.2159557342529297, -0.005225121974945068, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.8818, "q": [-0.3138916790485382, -0.013962633907794952, 0.015681909397244453, 0.6320597529411316, -0.3265257775783539, 0.02110590599477291, -0.323061466217041, 0.029929669573903084, -0.014597166329622269, 0.6240915656089783, -0.3367023766040802, -0.02102142944931984, 0.002758730435743928, 0.006032150238752365, -0.03048500046133995, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.8985, "q": [-0.31390872597694397, -0.01395411230623722, 0.015681909397244453, 0.6320512294769287, -0.3265298902988434, 0.02109861932694912, -0.32305294275283813, 0.029921147972345352, -0.014610557816922665, 0.6241000890731812, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.006032155826687813, -0.030494829639792442, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792190790176392, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.9152, "q": [-0.31390872597694397, -0.013971157371997833, 0.015681909397244453, 0.6320512294769287, -0.3265257775783539, 0.02112041600048542, -0.3230699896812439, 0.02991262450814247, -0.014583774842321873, 0.6241000890731812, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.006032150238752365, -0.03048500046133995, 0.2905096113681793, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.932, "q": [-0.3139342963695526, -0.013962633907794952, 0.015695301815867424, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.3230699896812439, 0.029921147972345352, -0.014570382423698902, 0.6241000890731812, -0.3366941809654236, -0.021021487191319466, 0.0026649872306734324, 0.005941017996519804, -0.03055347315967083, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04092612862586975, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.9487, "q": [-0.31391724944114685, -0.013979678973555565, 0.015668518841266632, 0.6320597529411316, -0.3265298902988434, 0.02109861932694912, -0.3230699896812439, 0.02990410290658474, -0.014583774842321873, 0.6241000890731812, -0.3366983234882355, -0.02099965512752533, 0.0026783791836351156, 0.005948612932115793, -0.030548587441444397, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.9655, "q": [-0.3139002025127411, -0.013971157371997833, 0.015708694234490395, 0.6320597529411316, -0.3265092670917511, 0.02110605128109455, -0.32304441928863525, 0.02990410290658474, -0.014597166329622269, 0.624108612537384, -0.33669009804725647, -0.021014254540205002, 0.0027051628567278385, 0.005903043784201145, -0.03057790920138359, 0.2905096113681793, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15762852132320404, 0.06167082488536835, -0.040890175849199295, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008844357915222645]} +{"t": 2.9824, "q": [-0.3138916790485382, -0.013988200575113297, 0.015708694234490395, 0.6320512294769287, -0.3265175223350525, 0.021105969324707985, -0.3230358958244324, 0.02990410290658474, -0.014583774842321873, 0.624108612537384, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.005903043784201145, -0.03057790920138359, 0.2904616594314575, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.052442967891693115, 0.008844357915222645]} +{"t": 2.9991, "q": [-0.31390872597694397, -0.013979678973555565, 0.015695301815867424, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.3230273723602295, 0.02991262450814247, -0.014583774842321873, 0.624108612537384, -0.33668598532676697, -0.021036067977547646, 0.002691771136596799, 0.0058954437263309956, -0.030572965741157532, 0.2904856503009796, 0.21594375371932983, -0.005201153922826052, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.2238173931837082, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.0158, "q": [-0.31390872597694397, -0.013988200575113297, 0.015708694234490395, 0.6320597529411316, -0.326521635055542, 0.021084172651171684, -0.3230273723602295, 0.029921147972345352, -0.014597166329622269, 0.624108612537384, -0.33668187260627747, -0.02102883718907833, 0.0027855143416672945, 0.005925828590989113, -0.030563248321413994, 0.29049763083457947, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.29507559537887573, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008868326433002949]} +{"t": 3.0327, "q": [-0.3138831555843353, -0.014005245640873909, 0.015695301815867424, 0.6320597529411316, -0.326521635055542, 0.021098682656884193, -0.3230188488960266, 0.029921147972345352, -0.014637341722846031, 0.6241171360015869, -0.33666548132896423, -0.02105799876153469, 0.002691771136596799, 0.006032150238752365, -0.03048500046133995, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.0494, "q": [-0.31387463212013245, -0.014005245640873909, 0.015722084790468216, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.3230103552341461, 0.029921147972345352, -0.014623950235545635, 0.6241341829299927, -0.33666548132896423, -0.02105799876153469, 0.002758730435743928, 0.005918222479522228, -0.030548475682735443, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 3.0662, "q": [-0.31387463212013245, -0.013979678973555565, 0.015708694234490395, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.32300183176994324, 0.02991262450814247, -0.014623950235545635, 0.624108612537384, -0.33666136860847473, -0.021065307781100273, 0.002691771136596799, 0.005956202279776335, -0.030533870682120323, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.2950875759124756, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.0831, "q": [-0.31386610865592957, -0.013988200575113297, 0.015722084790468216, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.3230103552341461, 0.02991262450814247, -0.014623950235545635, 0.624108612537384, -0.33666956424713135, -0.021065231412649155, 0.002731946762651205, 0.006009365897625685, -0.030499661341309547, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.0998, "q": [-0.3138831555843353, -0.013996722176671028, 0.015708694234490395, 0.6320682764053345, -0.3265175223350525, 0.021105969324707985, -0.32300183176994324, 0.02991262450814247, -0.014623950235545635, 0.6241171360015869, -0.33667367696762085, -0.02104341797530651, 0.002731946762651205, 0.006009365897625685, -0.030499661341309547, 0.2904616594314575, 0.2159797102212906, -0.00523710623383522, 0.9791951179504395, 0.15762852132320404, 0.06167082488536835, -0.0409141443669796, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 3.1165, "q": [-0.31387463212013245, -0.013996722176671028, 0.015708694234490395, 0.6320512294769287, -0.326521635055542, 0.021098682656884193, -0.32299330830574036, 0.02991262450814247, -0.014637341722846031, 0.624108612537384, -0.33668187260627747, -0.02102883718907833, 0.002718554809689522, 0.006024555303156376, -0.030489888042211533, 0.2904616594314575, 0.2159557342529297, -0.00523710623383522, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.052395034581422806, 0.008856342174112797]} +{"t": 3.1335, "q": [-0.31387463212013245, -0.013996722176671028, 0.015708694234490395, 0.6320512294769287, -0.326513409614563, 0.021098745986819267, -0.3230103552341461, 0.029929669573903084, -0.014623950235545635, 0.624108612537384, -0.33668598532676697, -0.021036067977547646, 0.002718554809689522, 0.005971397273242474, -0.0305339265614748, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.1502, "q": [-0.3138831555843353, -0.014005245640873909, 0.015681909397244453, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.32300183176994324, 0.029921147972345352, -0.014637341722846031, 0.6241171360015869, -0.33669009804725647, -0.021014254540205002, 0.002611419651657343, 0.006009371485561132, -0.03050949051976204, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.1669, "q": [-0.3138831555843353, -0.013971157371997833, 0.015722084790468216, 0.6320512294769287, -0.326521635055542, 0.021084172651171684, -0.3229847848415375, 0.029921147972345352, -0.014610557816922665, 0.6240915656089783, -0.33668598532676697, -0.021036067977547646, 0.002718554809689522, 0.005956196691840887, -0.03052404150366783, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008832373656332493]} +{"t": 3.1837, "q": [-0.31386610865592957, -0.013996722176671028, 0.015708694234490395, 0.6320512294769287, -0.3265257775783539, 0.021091395989060402, -0.3230103552341461, 0.029929669573903084, -0.014597166329622269, 0.6241000890731812, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.0060017709620296955, -0.03050454892218113, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950875759124756, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 3.2004, "q": [-0.3138831555843353, -0.013988200575113297, 0.015681909397244453, 0.6320512294769287, -0.326521635055542, 0.021098682656884193, -0.32299330830574036, 0.02991262450814247, -0.014583774842321873, 0.6241000890731812, -0.33669009804725647, -0.021028777584433556, 0.0026649872306734324, 0.005978959146887064, -0.03047006204724312, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1576405018568039, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.2172, "q": [-0.3138831555843353, -0.013971157371997833, 0.015695301815867424, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.32300183176994324, 0.029921147972345352, -0.014597166329622269, 0.6240915656089783, -0.33668598532676697, -0.021021544933319092, 0.002731946762651205, 0.005956180393695831, -0.030494552105665207, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008832373656332493]} +{"t": 3.2339, "q": [-0.31387463212013245, -0.013979678973555565, 0.015695301815867424, 0.6320597529411316, -0.3265257775783539, 0.02110590599477291, -0.32300183176994324, 0.02991262450814247, -0.014583774842321873, 0.6240915656089783, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.0059637753292918205, -0.030489666387438774, 0.2904856503009796, 0.21599169075489044, -0.00523710623383522, 0.9791951179504395, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.052395034581422806, 0.008856342174112797]} +{"t": 3.2506, "q": [-0.3139002025127411, -0.013979678973555565, 0.015695301815867424, 0.6320597529411316, -0.326521635055542, 0.021098682656884193, -0.3230358958244324, 0.029921147972345352, -0.014597166329622269, 0.6240830421447754, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.006047328934073448, -0.030455566942691803, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 3.2675, "q": [-0.31387463212013245, -0.013971157371997833, 0.015681909397244453, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.32300183176994324, 0.02991262450814247, -0.014597166329622269, 0.6240830421447754, -0.33669009804725647, -0.021028777584433556, 0.0026783791836351156, 0.006001760251820087, -0.030484890565276146, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.2950875759124756, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 3.2842, "q": [-0.3138831555843353, -0.013962633907794952, 0.015681909397244453, 0.6320512294769287, -0.326521635055542, 0.021113192662596703, -0.3230103552341461, 0.029921147972345352, -0.014610557816922665, 0.6240745186805725, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.0060245501808822155, -0.03048005886375904, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.2950875759124756, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.301, "q": [-0.3138916790485382, -0.013962633907794952, 0.015695301815867424, 0.6320427060127258, -0.326521635055542, 0.021098682656884193, -0.3230103552341461, 0.02991262450814247, -0.014597166329622269, 0.6240745186805725, -0.33668598532676697, -0.021007023751735687, 0.002731946762651205, 0.006001760251820087, -0.030484890565276146, 0.2904736399650574, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18353840708732605, 0.05240701511502266, 0.008856342174112797]} +{"t": 3.3177, "q": [-0.31387463212013245, -0.013979678973555565, 0.015695301815867424, 0.6320597529411316, -0.3265175223350525, 0.021105969324707985, -0.32300183176994324, 0.02991262450814247, -0.014623950235545635, 0.6240745186805725, -0.33668598532676697, -0.021021544933319092, 0.002718554809689522, 0.006062523927539587, -0.03045562282204628, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06169478967785835, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.3344, "q": [-0.31387463212013245, -0.013962633907794952, 0.015695301815867424, 0.6320512294769287, -0.3265175223350525, 0.021105969324707985, -0.3230103552341461, 0.02991262450814247, -0.014610557816922665, 0.6240830421447754, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.006024544592946768, -0.03047022968530655, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.3512, "q": [-0.31387463212013245, -0.013971157371997833, 0.015695301815867424, 0.6320597529411316, -0.3265092670917511, 0.02110605128109455, -0.3230103552341461, 0.029921147972345352, -0.014610557816922665, 0.6240830421447754, -0.33668598532676697, -0.021021544933319092, 0.0027453387156128883, 0.006016949657350779, -0.030475115403532982, 0.2904856503009796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.0409141443669796, 0.2950636148452759, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 3.3679, "q": [-0.31386610865592957, -0.013979678973555565, 0.015708694234490395, 0.6320512294769287, -0.326521635055542, 0.021098682656884193, -0.32299330830574036, 0.029929669573903084, -0.014610557816922665, 0.6240915656089783, -0.33666956424713135, -0.0210507083684206, 0.002691771136596799, 0.0060245501808822155, -0.03048005886375904, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.3846, "q": [-0.31387463212013245, -0.013979678973555565, 0.015695301815867424, 0.6320512294769287, -0.3265175223350525, 0.021091459318995476, -0.32299330830574036, 0.029921147972345352, -0.014623950235545635, 0.6240745186805725, -0.33667367696762085, -0.02104341797530651, 0.0027051628567278385, 0.00605491828173399, -0.03044085204601288, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.06167082488536835, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008832373656332493]} +{"t": 3.4014, "q": [-0.31387463212013245, -0.013971157371997833, 0.015681909397244453, 0.6320682764053345, -0.3265175223350525, 0.021091459318995476, -0.32299330830574036, 0.029921147972345352, -0.014623950235545635, 0.6240830421447754, -0.33668187260627747, -0.02102883718907833, 0.002651595277711749, 0.0060473233461380005, -0.03044573776423931, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04092612862586975, 0.29507559537887573, -0.22378143668174744, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 3.4181, "q": [-0.31387463212013245, -0.013979678973555565, 0.015708694234490395, 0.6320682764053345, -0.3265175223350525, 0.021105969324707985, -0.32300183176994324, 0.029921147972345352, -0.014623950235545635, 0.6240830421447754, -0.33668598532676697, -0.021036067977547646, 0.0027453387156128883, 0.006100492551922798, -0.030421359464526176, 0.2904616594314575, 0.2159797102212906, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.4348, "q": [-0.31387463212013245, -0.013971157371997833, 0.015695301815867424, 0.6320512294769287, -0.3265175223350525, 0.021091459318995476, -0.32299330830574036, 0.029929669573903084, -0.014623950235545635, 0.6240830421447754, -0.33668187260627747, -0.02102883718907833, 0.0027051628567278385, 0.0060473233461380005, -0.03044573776423931, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.4515, "q": [-0.31386610865592957, -0.013971157371997833, 0.015695301815867424, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.3229847848415375, 0.029921147972345352, -0.014597166329622269, 0.6240745186805725, -0.33668598532676697, -0.021036067977547646, 0.002758730435743928, 0.006070124451071024, -0.03046056628227234, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.02310558594763279, 0.978116512298584, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.4683, "q": [-0.31387463212013245, -0.01395411230623722, 0.015708694234490395, 0.6320682764053345, -0.326513409614563, 0.021084235981106758, -0.3229847848415375, 0.029921147972345352, -0.014597166329622269, 0.6240915656089783, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.00605491828173399, -0.03044085204601288, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792190790176392, 0.1575925648212433, 0.06169478967785835, -0.04092612862586975, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 3.485, "q": [-0.3138575851917267, -0.01395411230623722, 0.015681909397244453, 0.6320512294769287, -0.3265175223350525, 0.021105969324707985, -0.32299330830574036, 0.029921147972345352, -0.014623950235545635, 0.6240745186805725, -0.33668598532676697, -0.021036067977547646, 0.0027051628567278385, 0.006161262281239033, -0.030401920899748802, 0.2904856503009796, 0.2159557342529297, -0.005201153922826052, 0.9791830778121948, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 3.5017, "q": [-0.3138490617275238, -0.01395411230623722, 0.015695301815867424, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.32299330830574036, 0.029929669573903084, -0.014637341722846031, 0.6240830421447754, -0.33668187260627747, -0.02102883718907833, 0.0026783791836351156, 0.006199228577315807, -0.030367659404873848, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950875759124756, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.1835983246564865, 0.05240701511502266, 0.008856342174112797]} +{"t": 3.5184, "q": [-0.3138490617275238, -0.013962633907794952, 0.015681909397244453, 0.6320512294769287, -0.326521635055542, 0.021098682656884193, -0.3229762613773346, 0.029929669573903084, -0.014623950235545635, 0.6240489482879639, -0.3366941809654236, -0.021021487191319466, 0.0026783791836351156, 0.006184038706123829, -0.030377432703971863, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9791951179504395, 0.15760454535484314, 0.06169478967785835, -0.04090216010808945, 0.29507559537887573, -0.2237934172153473, 0.023093601688742638, 0.9781045317649841, -0.1835503876209259, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.5352, "q": [-0.31387463212013245, -0.013971157371997833, 0.015708694234490395, 0.6320512294769287, -0.326521635055542, 0.021098682656884193, -0.3229847848415375, 0.029921147972345352, -0.014597166329622269, 0.624040424823761, -0.33668598532676697, -0.021021544933319092, 0.002691771136596799, 0.006085303146392107, -0.03043113276362419, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008832373656332493]} +{"t": 3.5519, "q": [-0.31386610865592957, -0.013971157371997833, 0.015695301815867424, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.32299330830574036, 0.029921147972345352, -0.014623950235545635, 0.6240148544311523, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.006146066822111607, -0.030401866883039474, 0.2904736399650574, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 3.5686, "q": [-0.31387463212013245, -0.013962633907794952, 0.015668518841266632, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.3229847848415375, 0.029921147972345352, -0.014597166329622269, 0.6240063309669495, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.00616884371265769, -0.030377376824617386, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.0409141443669796, 0.2950636148452759, -0.22378143668174744, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 3.5854, "q": [-0.31387463212013245, -0.01394559070467949, 0.01565512642264366, 0.6320512294769287, -0.3265298902988434, 0.02111312933266163, -0.3229847848415375, 0.029921147972345352, -0.014623950235545635, 0.6240063309669495, -0.3366941809654236, -0.021021487191319466, 0.002691771136596799, 0.006161251105368137, -0.03038226254284382, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950875759124756, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.6021, "q": [-0.3138916790485382, -0.01395411230623722, 0.015681909397244453, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.3229762613773346, 0.029921147972345352, -0.014597166329622269, 0.6239892840385437, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.006100492551922798, -0.030421359464526176, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 3.619, "q": [-0.3139002025127411, -0.01395411230623722, 0.015668518841266632, 0.6320512294769287, -0.3265298902988434, 0.02109861932694912, -0.32299330830574036, 0.029921147972345352, -0.014583774842321873, 0.6239892840385437, -0.3366941809654236, -0.021021487191319466, 0.0027051628567278385, 0.006108093075454235, -0.030426301062107086, 0.29049763083457947, 0.2159557342529297, -0.005201153922826052, 0.9791951179504395, 0.15758058428764343, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.2237934172153473, 0.023081617429852486, 0.9780685901641846, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 3.6359, "q": [-0.3138916790485382, -0.01394559070467949, 0.015681909397244453, 0.6320427060127258, -0.3265257775783539, 0.02110590599477291, -0.3229847848415375, 0.029929669573903084, -0.014610557816922665, 0.6239892840385437, -0.33669009804725647, -0.021014254540205002, 0.0027051628567278385, 0.006100492551922798, -0.030421359464526176, 0.2904616594314575, 0.2159557342529297, -0.005225121974945068, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.2950875759124756, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 3.6527, "q": [-0.3139002025127411, -0.013962633907794952, 0.015668518841266632, 0.6320427060127258, -0.326521635055542, 0.021113192662596703, -0.32299330830574036, 0.029921147972345352, -0.014610557816922665, 0.6239551901817322, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.0062144179828464985, -0.030357884243130684, 0.2904616594314575, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.6694, "q": [-0.3138916790485382, -0.01394559070467949, 0.015681909397244453, 0.632034182548523, -0.3265257775783539, 0.02110590599477291, -0.3229847848415375, 0.029929669573903084, -0.014623950235545635, 0.6239637136459351, -0.33668598532676697, -0.021036067977547646, 0.002758730435743928, 0.006138456054031849, -0.030377265065908432, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.6862, "q": [-0.31390872597694397, -0.013962633907794952, 0.015668518841266632, 0.6320427060127258, -0.3265175223350525, 0.021105969324707985, -0.3229847848415375, 0.029921147972345352, -0.014623950235545635, 0.6239722371101379, -0.33669009804725647, -0.021014254540205002, 0.002718554809689522, 0.006108087487518787, -0.030416471883654594, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.703, "q": [-0.3139002025127411, -0.01394559070467949, 0.015681909397244453, 0.6320427060127258, -0.3265257775783539, 0.02110590599477291, -0.3229762613773346, 0.02991262450814247, -0.014637341722846031, 0.6239637136459351, -0.33668598532676697, -0.021021544933319092, 0.002731946762651205, 0.006130883004516363, -0.03042146936058998, 0.2904736399650574, 0.21594375371932983, -0.005225121974945068, 0.9791830778121948, 0.1576405018568039, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835983246564865, 0.05241899937391281, 0.008868326433002949]} +{"t": 3.7197, "q": [-0.3138916790485382, -0.01394559070467949, 0.015681909397244453, 0.6320427060127258, -0.3265257775783539, 0.02110590599477291, -0.3229847848415375, 0.029921147972345352, -0.014623950235545635, 0.6239551901817322, -0.3366941809654236, -0.021021487191319466, 0.002718554809689522, 0.006115676835179329, -0.03040175512433052, 0.29044967889785767, 0.21596772968769073, -0.005201153922826052, 0.9791951179504395, 0.15765248239040375, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.7366, "q": [-0.3138916790485382, -0.01394559070467949, 0.015668518841266632, 0.632034182548523, -0.326521635055542, 0.021098682656884193, -0.32299330830574036, 0.029921147972345352, -0.014597166329622269, 0.6239722371101379, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.006168851628899574, -0.030387206003069878, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.7534, "q": [-0.3138831555843353, -0.01394559070467949, 0.015668518841266632, 0.632034182548523, -0.326521635055542, 0.021098682656884193, -0.3229762613773346, 0.029929669573903084, -0.014623950235545635, 0.6239637136459351, -0.3366941809654236, -0.021006964147090912, 0.002718554809689522, 0.0060928924940526485, -0.030416416004300117, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.061658840626478195, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.7701, "q": [-0.31391724944114685, -0.01395411230623722, 0.015681909397244453, 0.632034182548523, -0.3265257775783539, 0.02110590599477291, -0.3229762613773346, 0.029929669573903084, -0.014610557816922665, 0.6239551901817322, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.006184038706123829, -0.030377432703971863, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792190790176392, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.7871, "q": [-0.31387463212013245, -0.01394559070467949, 0.01564173400402069, 0.6320512294769287, -0.326521635055542, 0.021113192662596703, -0.3229762613773346, 0.02991262450814247, -0.014610557816922665, 0.6239722371101379, -0.33669009804725647, -0.021028777584433556, 0.002691771136596799, 0.00622960738837719, -0.03034811094403267, 0.2904736399650574, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.0409141443669796, 0.2950875759124756, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.8038, "q": [-0.31387463212013245, -0.01395411230623722, 0.01565512642264366, 0.6320427060127258, -0.326521635055542, 0.021098682656884193, -0.3229762613773346, 0.029921147972345352, -0.014623950235545635, 0.6239551901817322, -0.33669009804725647, -0.021014254540205002, 0.002651595277711749, 0.006206817924976349, -0.030352942645549774, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.06169478967785835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.8205, "q": [-0.31387463212013245, -0.01395411230623722, 0.01565512642264366, 0.632034182548523, -0.3265257775783539, 0.02110590599477291, -0.32295069098472595, 0.029929669573903084, -0.014637341722846031, 0.6239466667175293, -0.33668598532676697, -0.021036067977547646, 0.0026649872306734324, 0.006138456054031849, -0.030377265065908432, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.2950875759124756, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 3.8376, "q": [-0.3138831555843353, -0.01394559070467949, 0.015668518841266632, 0.632034182548523, -0.326521635055542, 0.021098682656884193, -0.32295921444892883, 0.029921147972345352, -0.014610557816922665, 0.6239466667175293, -0.33669009804725647, -0.021014254540205002, 0.0027051628567278385, 0.006191617343574762, -0.030343057587742805, 0.29049763083457947, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.1576405018568039, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.8545, "q": [-0.31387463212013245, -0.01394559070467949, 0.015681909397244453, 0.632034182548523, -0.326521635055542, 0.021098682656884193, -0.3229677379131317, 0.029929669573903084, -0.014623950235545635, 0.6239466667175293, -0.33668187260627747, -0.02102883718907833, 0.0027051628567278385, 0.006237202323973179, -0.030343223363161087, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 3.8712, "q": [-0.31387463212013245, -0.01394559070467949, 0.01565512642264366, 0.6320256590843201, -0.326521635055542, 0.021098682656884193, -0.3229677379131317, 0.029921147972345352, -0.014637341722846031, 0.6239381432533264, -0.3366941809654236, -0.021021487191319466, 0.0027051628567278385, 0.006275165360420942, -0.030299130827188492, 0.2905215919017792, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008844357915222645]} +{"t": 3.888, "q": [-0.3138575851917267, -0.01394559070467949, 0.01564173400402069, 0.6320256590843201, -0.3265257775783539, 0.02110590599477291, -0.32295921444892883, 0.029929669573903084, -0.014610557816922665, 0.6239040493965149, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.006282765883952379, -0.0303040724247694, 0.2905096113681793, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.905, "q": [-0.3138916790485382, -0.013937067240476608, 0.01565512642264366, 0.6320256590843201, -0.3265257775783539, 0.021091395989060402, -0.32295069098472595, 0.02991262450814247, -0.014637341722846031, 0.623895525932312, -0.33668187260627747, -0.02102883718907833, 0.0027051628567278385, 0.006282765883952379, -0.0303040724247694, 0.2905096113681793, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.9217, "q": [-0.3138575851917267, -0.01395411230623722, 0.01565512642264366, 0.6320171356201172, -0.3265298902988434, 0.02109861932694912, -0.32294216752052307, 0.029929669573903084, -0.014650734141469002, 0.6238784790039062, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.006267587188631296, -0.03033350594341755, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.9384, "q": [-0.31387463212013245, -0.013937067240476608, 0.01564173400402069, 0.6320086121559143, -0.326521635055542, 0.021098682656884193, -0.3229336440563202, 0.02991262450814247, -0.014623950235545635, 0.6238529086112976, -0.3366941809654236, -0.021021487191319466, 0.0026649872306734324, 0.0062903608195483685, -0.03029918670654297, 0.2904616594314575, 0.21594375371932983, -0.005225121974945068, 0.9792070984840393, 0.15758058428764343, 0.06169478967785835, -0.040890175849199295, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.9552, "q": [-0.31387463212013245, -0.013937067240476608, 0.01565512642264366, 0.6319915652275085, -0.3265298902988434, 0.02109861932694912, -0.32295921444892883, 0.029938191175460815, -0.014623950235545635, 0.6238273978233337, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.006259981542825699, -0.030318733304739, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.0409141443669796, 0.2950636148452759, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.9719, "q": [-0.31387463212013245, -0.013911502435803413, 0.01562834158539772, 0.6319830417633057, -0.3265381157398224, 0.021084045991301537, -0.32294216752052307, 0.029921147972345352, -0.014623950235545635, 0.6238018274307251, -0.3366941809654236, -0.021006964147090912, 0.002731946762651205, 0.006267576012760401, -0.030313847586512566, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04087819159030914, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008832373656332493]} +{"t": 3.9886, "q": [-0.31387463212013245, -0.013928545638918877, 0.01562834158539772, 0.6319745182991028, -0.3265298902988434, 0.02109861932694912, -0.32294216752052307, 0.029929669573903084, -0.014610557816922665, 0.6237847805023193, -0.3366941809654236, -0.021021487191319466, 0.0026382035575807095, 0.006259986665099859, -0.03032856248319149, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.0055, "q": [-0.3138916790485382, -0.013920024037361145, 0.01565512642264366, 0.6319659948348999, -0.3265298902988434, 0.02111312933266163, -0.32294216752052307, 0.029921147972345352, -0.014650734141469002, 0.6237592101097107, -0.33668187260627747, -0.02102883718907833, 0.002691771136596799, 0.00622200733050704, -0.03034316934645176, 0.2904616594314575, 0.2159557342529297, -0.005225121974945068, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.0223, "q": [-0.3138916790485382, -0.013902978971600533, 0.01562834158539772, 0.631957471370697, -0.3265298902988434, 0.02111312933266163, -0.32295069098472595, 0.029929669573903084, -0.014623950235545635, 0.6237251162528992, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.006237186025828123, -0.030313735827803612, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.29507559537887573, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.039, "q": [-0.31390872597694397, -0.013911502435803413, 0.01562834158539772, 0.6319404244422913, -0.3265175223350525, 0.021105969324707985, -0.32294216752052307, 0.029938191175460815, -0.014623950235545635, 0.6237165927886963, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.006199228577315807, -0.030367659404873848, 0.2904616594314575, 0.2159797102212906, -0.0051891696639359, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.0409141443669796, 0.295051634311676, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008832373656332493]} +{"t": 4.0558, "q": [-0.3138831555843353, -0.013894457370042801, 0.01562834158539772, 0.6319404244422913, -0.3265298902988434, 0.02109861932694912, -0.3229251205921173, 0.02991262450814247, -0.014623950235545635, 0.6236910223960876, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.006184016820043325, -0.030338115990161896, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.0725, "q": [-0.31392577290534973, -0.013920024037361145, 0.015601558610796928, 0.6319233775138855, -0.3265298902988434, 0.02111312933266163, -0.32294216752052307, 0.029929669573903084, -0.014637341722846031, 0.6236484050750732, -0.3366983234882355, -0.02099965512752533, 0.0026649872306734324, 0.006252364721149206, -0.030284302309155464, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05243098363280296, 0.008868326433002949]} +{"t": 4.0893, "q": [-0.31390872597694397, -0.01388593576848507, 0.01564173400402069, 0.6319063305854797, -0.3265381455421448, 0.021113082766532898, -0.3229336440563202, 0.029929669573903084, -0.014623950235545635, 0.6236057877540588, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.006221969146281481, -0.030274363234639168, 0.2904856503009796, 0.21596772968769073, -0.00523710623383522, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 4.106, "q": [-0.31391724944114685, -0.013902978971600533, 0.015601558610796928, 0.6319063305854797, -0.3265340030193329, 0.02112036943435669, -0.3229336440563202, 0.029921147972345352, -0.014637341722846031, 0.6235716938972473, -0.3366941809654236, -0.021021487191319466, 0.002691771136596799, 0.006221979856491089, -0.03029402159154415, 0.2905096113681793, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.157616525888443, 0.06169478967785835, -0.040890175849199295, 0.295051634311676, -0.22378143668174744, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.1227, "q": [-0.3139342963695526, -0.013920024037361145, 0.015601558610796928, 0.631889283657074, -0.3265340030193329, 0.02112036943435669, -0.32294216752052307, 0.029921147972345352, -0.014597166329622269, 0.6235631704330444, -0.33669009804725647, -0.021014254540205002, 0.002718554809689522, 0.006252370309084654, -0.030294133350253105, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008844357915222645]} +{"t": 4.1396, "q": [-0.3139342963695526, -0.01388593576848507, 0.01562834158539772, 0.6318807601928711, -0.3265381455421448, 0.021113082766532898, -0.32289955019950867, 0.029929669573903084, -0.014623950235545635, 0.6235546469688416, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.0062827495858073235, -0.030274584889411926, 0.2904856503009796, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.1564, "q": [-0.3139428198337555, -0.01388593576848507, 0.015601558610796928, 0.6318722367286682, -0.3265340030193329, 0.021105842664837837, -0.32291659712791443, 0.029929669573903084, -0.014610557816922665, 0.6235376000404358, -0.33668598532676697, -0.021007023751735687, 0.0027453387156128883, 0.006297944579273462, -0.030274640768766403, 0.29044967889785767, 0.2159797102212906, -0.005225121974945068, 0.9792190790176392, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 4.1731, "q": [-0.3139342963695526, -0.013894457370042801, 0.01562834158539772, 0.6318637132644653, -0.3265381455421448, 0.021113082766532898, -0.32294216752052307, 0.029929669573903084, -0.014664125628769398, 0.62352055311203, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.006252370309084654, -0.030294133350253105, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22378143668174744, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 4.1898, "q": [-0.3139513432979584, -0.013894457370042801, 0.01562834158539772, 0.6318551898002625, -0.3265381455421448, 0.021113082766532898, -0.32291659712791443, 0.029938191175460815, -0.014623950235545635, 0.62352055311203, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.006275160238146782, -0.030289301648736, 0.29044967889785767, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.2066, "q": [-0.3139428198337555, -0.013894457370042801, 0.015601558610796928, 0.6318466663360596, -0.3265381455421448, 0.021113082766532898, -0.32291659712791443, 0.029938191175460815, -0.014597166329622269, 0.6235120296478271, -0.33669009804725647, -0.021014254540205002, 0.002718554809689522, 0.006267559714615345, -0.03028435818850994, 0.2904376983642578, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.29502764344215393, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.2233, "q": [-0.3139513432979584, -0.01388593576848507, 0.01562834158539772, 0.6318551898002625, -0.3265381455421448, 0.021113082766532898, -0.3229336440563202, 0.029938191175460815, -0.014650734141469002, 0.6234779357910156, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.0062523758970201015, -0.030303962528705597, 0.2904376983642578, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 4.24, "q": [-0.3139342963695526, -0.013877412304282188, 0.015614950098097324, 0.6318381428718567, -0.3265257775783539, 0.02110590599477291, -0.32291659712791443, 0.029938191175460815, -0.014623950235545635, 0.6234779357910156, -0.33668187260627747, -0.02102883718907833, 0.002758730435743928, 0.006252370309084654, -0.030294133350253105, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.0409141443669796, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.2568, "q": [-0.31392577290534973, -0.01388593576848507, 0.015614950098097324, 0.6318381428718567, -0.3265298902988434, 0.02111312933266163, -0.32289955019950867, 0.029921147972345352, -0.014664125628769398, 0.6234694719314575, -0.33669009804725647, -0.021014254540205002, 0.0027051628567278385, 0.0063055395148694515, -0.03026975318789482, 0.2904736399650574, 0.21594375371932983, -0.0051891696639359, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.0088803106918931]} +{"t": 4.2736, "q": [-0.31391724944114685, -0.01388593576848507, 0.015614950098097324, 0.6318381428718567, -0.3265381455421448, 0.021113082766532898, -0.32290807366371155, 0.029946712777018547, -0.014664125628769398, 0.6234779357910156, -0.33669009804725647, -0.021014254540205002, 0.002718554809689522, 0.006267554592341185, -0.03027452901005745, 0.2904736399650574, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.061658840626478195, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18353840708732605, 0.05240701511502266, 0.008892294950783253]} +{"t": 4.2904, "q": [-0.31392577290534973, -0.013902978971600533, 0.015601558610796928, 0.6318210959434509, -0.3265298902988434, 0.02111312933266163, -0.3228825032711029, 0.029938191175460815, -0.014637341722846031, 0.6234694719314575, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.0062751490622758865, -0.030269641429185867, 0.2904736399650574, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835983246564865, 0.05240701511502266, 0.008868326433002949]} +{"t": 4.3071, "q": [-0.3139342963695526, -0.013877412304282188, 0.015601558610796928, 0.6318296194076538, -0.3265175223350525, 0.021120497956871986, -0.3228825032711029, 0.029938191175460815, -0.014650734141469002, 0.6234694719314575, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.006290349643677473, -0.030279526486992836, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.29507559537887573, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 4.3239, "q": [-0.3139513432979584, -0.013894457370042801, 0.015588166192173958, 0.6318210959434509, -0.3265298902988434, 0.02109861932694912, -0.3228825032711029, 0.029938191175460815, -0.014664125628769398, 0.6234524250030518, -0.33668190240859985, -0.02099977247416973, 0.002691771136596799, 0.006335907615721226, -0.03023054637014866, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008844357915222645]} +{"t": 4.3407, "q": [-0.3139342963695526, -0.013894457370042801, 0.015588166192173958, 0.6318296194076538, -0.3265381157398224, 0.021098555997014046, -0.3228739798069, 0.029938191175460815, -0.014677518047392368, 0.6234524250030518, -0.33669009804725647, -0.021014254540205002, 0.002718554809689522, 0.00629032775759697, -0.03024020977318287, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 4.3574, "q": [-0.3139342963695526, -0.013877412304282188, 0.015601558610796928, 0.6318296194076538, -0.3265298902988434, 0.02111312933266163, -0.32285693287849426, 0.029938191175460815, -0.014677518047392368, 0.623435378074646, -0.33669009804725647, -0.021014254540205002, 0.002731946762651205, 0.006320723332464695, -0.030250148847699165, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.3742, "q": [-0.31392577290534973, -0.01388593576848507, 0.015601558610796928, 0.6318210959434509, -0.3265340030193329, 0.021105842664837837, -0.3228910267353058, 0.029946712777018547, -0.014637341722846031, 0.6234524250030518, -0.33669009804725647, -0.021014254540205002, 0.002758730435743928, 0.006305523216724396, -0.030240265652537346, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792190790176392, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.3909, "q": [-0.31390872597694397, -0.01388593576848507, 0.015574774704873562, 0.6318210959434509, -0.3265175223350525, 0.021120497956871986, -0.3228484094142914, 0.029938191175460815, -0.014650734141469002, 0.623435378074646, -0.33668598532676697, -0.021007023751735687, 0.0027051628567278385, 0.0063283126801252365, -0.03023543395102024, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 4.4077, "q": [-0.31390872597694397, -0.013868890702724457, 0.015574774704873562, 0.6318210959434509, -0.3265298902988434, 0.02109861932694912, -0.3228398859500885, 0.029946712777018547, -0.014650734141469002, 0.623435378074646, -0.33668187260627747, -0.02102883718907833, 0.002758730435743928, 0.006313128862529993, -0.030255036428570747, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 4.4244, "q": [-0.31390872597694397, -0.013868890702724457, 0.015601558610796928, 0.6318040490150452, -0.3265340030193329, 0.021105842664837837, -0.32285693287849426, 0.029946712777018547, -0.014677518047392368, 0.6234268546104431, -0.33668598532676697, -0.021021544933319092, 0.0027453387156128883, 0.006389076821506023, -0.030206166207790375, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1576405018568039, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 4.4411, "q": [-0.3138916790485382, -0.013868890702724457, 0.015588166192173958, 0.6318040490150452, -0.3265340030193329, 0.021105842664837837, -0.3228398859500885, 0.029946712777018547, -0.014637341722846031, 0.6234183311462402, -0.33668598532676697, -0.021021544933319092, 0.002718554809689522, 0.006320712622255087, -0.030230490490794182, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008868326433002949]} +{"t": 4.4578, "q": [-0.3138916790485382, -0.013877412304282188, 0.015601558610796928, 0.6317955255508423, -0.3265257775783539, 0.02110590599477291, -0.3228313624858856, 0.029938191175460815, -0.014664125628769398, 0.6234183311462402, -0.33667367696762085, -0.02101435326039791, 0.002718554809689522, 0.006434645503759384, -0.03017684444785118, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.052442967891693115, 0.008856342174112797]} +{"t": 4.4746, "q": [-0.31390872597694397, -0.013877412304282188, 0.015574774704873562, 0.6317870020866394, -0.3265257775783539, 0.02110590599477291, -0.3228398859500885, 0.029946712777018547, -0.014650734141469002, 0.6233842372894287, -0.33668187260627747, -0.02102883718907833, 0.002731946762651205, 0.006396660581231117, -0.03018162027001381, 0.2904616594314575, 0.21593177318572998, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.040890175849199295, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.4913, "q": [-0.3138831555843353, -0.013877412304282188, 0.015588166192173958, 0.6317784786224365, -0.3265257775783539, 0.02110590599477291, -0.3228313624858856, 0.029946712777018547, -0.014690909534692764, 0.6233757138252258, -0.33669009804725647, -0.021014254540205002, 0.002651595277711749, 0.006389066111296415, -0.03018650785088539, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.0409141443669796, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 4.5082, "q": [-0.31387463212013245, -0.013868890702724457, 0.015601558610796928, 0.6317784786224365, -0.3265257775783539, 0.02112041600048542, -0.32282283902168274, 0.029955236241221428, -0.014677518047392368, 0.6233757138252258, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.006404266692698002, -0.03019639290869236, 0.2904616594314575, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.5249, "q": [-0.31390872597694397, -0.013868890702724457, 0.015574774704873562, 0.6317529678344727, -0.3265298902988434, 0.02109861932694912, -0.3228313624858856, 0.029955236241221428, -0.014677518047392368, 0.623367190361023, -0.33668598532676697, -0.021007023751735687, 0.002718554809689522, 0.006449829787015915, -0.030157241970300674, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.5417, "q": [-0.31387463212013245, -0.013868890702724457, 0.015574774704873562, 0.6317444443702698, -0.3265298902988434, 0.02109861932694912, -0.32281434535980225, 0.029955236241221428, -0.014650734141469002, 0.623367190361023, -0.33667367696762085, -0.02101435326039791, 0.002624811604619026, 0.006366276182234287, -0.030191339552402496, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06169478967785835, -0.04087819159030914, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.5584, "q": [-0.31387463212013245, -0.013877412304282188, 0.015588166192173958, 0.6317359209060669, -0.3265298902988434, 0.02109861932694912, -0.32281434535980225, 0.02996375784277916, -0.014664125628769398, 0.6233586668968201, -0.33668598532676697, -0.021021544933319092, 0.0027453387156128883, 0.006449829787015915, -0.030157241970300674, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 4.5752, "q": [-0.3138490617275238, -0.013868890702724457, 0.015601558610796928, 0.631727397441864, -0.3265257775783539, 0.021091395989060402, -0.32282283902168274, 0.02996375784277916, -0.014677518047392368, 0.6233586668968201, -0.33668187260627747, -0.02102883718907833, 0.0027453387156128883, 0.006434640381485224, -0.03016701526939869, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.06169478967785835, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.5919, "q": [-0.3138405382633209, -0.013868890702724457, 0.015574774704873562, 0.631727397441864, -0.3265257775783539, 0.021091395989060402, -0.32282283902168274, 0.02996375784277916, -0.014664125628769398, 0.6233501434326172, -0.33667778968811035, -0.021021604537963867, 0.0027453387156128883, 0.006434629205614328, -0.030147356912493706, 0.2904736399650574, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.6087, "q": [-0.31383201479911804, -0.013877412304282188, 0.015588166192173958, 0.6317188739776611, -0.326521635055542, 0.021098682656884193, -0.3227972984313965, 0.029955236241221428, -0.014664125628769398, 0.6233330965042114, -0.33667778968811035, -0.021021604537963867, 0.0026649872306734324, 0.0064118392765522, -0.03015218861401081, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.6254, "q": [-0.3138490617275238, -0.013868890702724457, 0.015588166192173958, 0.6316762566566467, -0.3265133798122406, 0.02111327461898327, -0.3227887749671936, 0.02996375784277916, -0.014677518047392368, 0.6233160495758057, -0.33668187260627747, -0.02102883718907833, 0.002691771136596799, 0.006533356383442879, -0.030073996633291245, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 4.6422, "q": [-0.3138405382633209, -0.013843324035406113, 0.015574774704873562, 0.631659209728241, -0.326521635055542, 0.021098682656884193, -0.3227972984313965, 0.029955236241221428, -0.014677518047392368, 0.6233075261116028, -0.33668190240859985, -0.021014314144849777, 0.0026783791836351156, 0.006540956906974316, -0.030078938230872154, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.2237934172153473, 0.023081617429852486, 0.9780685901641846, -0.1835743635892868, 0.05243098363280296, 0.008868326433002949]} +{"t": 4.6591, "q": [-0.31382349133491516, -0.013851847499608994, 0.015588166192173958, 0.6316421627998352, -0.3265257775783539, 0.021091395989060402, -0.32276320457458496, 0.02996375784277916, -0.014677518047392368, 0.6232734322547913, -0.33668187260627747, -0.02102883718907833, 0.002651595277711749, 0.00654094573110342, -0.03005927987396717, 0.29049763083457947, 0.2159797102212906, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 4.6758, "q": [-0.3138064444065094, -0.013868890702724457, 0.015588166192173958, 0.6316251158714294, -0.326521635055542, 0.021098682656884193, -0.3227546811103821, 0.02996375784277916, -0.014650734141469002, 0.6232649087905884, -0.33668187260627747, -0.02102883718907833, 0.0027051628567278385, 0.006601709872484207, -0.030030013993382454, 0.2904616594314575, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.061658840626478195, -0.04086620733141899, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008892294950783253]} +{"t": 4.6925, "q": [-0.3138064444065094, -0.013868890702724457, 0.015574774704873562, 0.6315995454788208, -0.326521635055542, 0.021098682656884193, -0.3227376341819763, 0.02996375784277916, -0.014690909534692764, 0.6232308149337769, -0.33666548132896423, -0.020999889820814133, 0.002691771136596799, 0.0066548679023981094, -0.029985975474119186, 0.2905096113681793, 0.2159797102212906, -0.005213138181716204, 0.9791830778121948, 0.15754462778568268, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 4.7093, "q": [-0.3138064444065094, -0.013868890702724457, 0.015601558610796928, 0.6315654516220093, -0.3265257775783539, 0.02110590599477291, -0.3227546811103821, 0.02996375784277916, -0.014731084927916527, 0.6231796741485596, -0.33668187260627747, -0.02102883718907833, 0.0026649872306734324, 0.0066548679023981094, -0.029985975474119186, 0.2904856503009796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.06169478967785835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.726, "q": [-0.31378939747810364, -0.013860369101166725, 0.015574774704873562, 0.6315313577651978, -0.3265298902988434, 0.02109861932694912, -0.3227376341819763, 0.02996375784277916, -0.014664125628769398, 0.6231200098991394, -0.33669009804725647, -0.021014254540205002, 0.002731946762651205, 0.0066548679023981094, -0.029985975474119186, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.7427, "q": [-0.31378090381622314, -0.013860369101166725, 0.015601558610796928, 0.6314802169799805, -0.3265257775783539, 0.02110590599477291, -0.32272058725357056, 0.02996375784277916, -0.014650734141469002, 0.6230944395065308, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.006609299220144749, -0.03001529723405838, 0.29049763083457947, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06169478967785835, -0.0409141443669796, 0.29507559537887573, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.052395034581422806, 0.008844357915222645]} +{"t": 4.7595, "q": [-0.3138064444065094, -0.013834802433848381, 0.015588166192173958, 0.6314802169799805, -0.3265257775783539, 0.02110590599477291, -0.32272058725357056, 0.029980802908539772, -0.014664125628769398, 0.6230348348617554, -0.33667778968811035, -0.021021604537963867, 0.002691771136596799, 0.006586514879018068, -0.030029958114027977, 0.2904736399650574, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 4.7762, "q": [-0.31378939747810364, -0.013834802433848381, 0.015588166192173958, 0.6314375996589661, -0.326521635055542, 0.021113192662596703, -0.3227120637893677, 0.029980802908539772, -0.014664125628769398, 0.6229751706123352, -0.33668187260627747, -0.02102883718907833, 0.0027051628567278385, 0.006632083561271429, -0.030000636354088783, 0.2904616594314575, 0.21594375371932983, -0.005201153922826052, 0.9792190790176392, 0.15760454535484314, 0.061658840626478195, -0.040890175849199295, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 4.793, "q": [-0.31377238035202026, -0.01382628083229065, 0.015588166192173958, 0.6313949823379517, -0.3265381157398224, 0.021084045991301537, -0.32272058725357056, 0.02997227944433689, -0.014690909534692764, 0.622915506362915, -0.33667367696762085, -0.02101435326039791, 0.002718554809689522, 0.006616894155740738, -0.030010409653186798, 0.29049763083457947, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950875759124756, -0.22378143668174744, 0.023093601688742638, 0.9781045317649841, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.8097, "q": [-0.31382349133491516, -0.01382628083229065, 0.015561383217573166, 0.6313694715499878, -0.3265257775783539, 0.02110590599477291, -0.3227035403251648, 0.02997227944433689, -0.014690909534692764, 0.6228728890419006, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.006586514879018068, -0.030029958114027977, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.040890175849199295, 0.29507559537887573, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.8265, "q": [-0.3137979209423065, -0.013834802433848381, 0.015588166192173958, 0.6313439011573792, -0.3265257775783539, 0.02110590599477291, -0.3227035403251648, 0.029989324510097504, -0.014677518047392368, 0.6228217482566833, -0.33667778968811035, -0.021021604537963867, 0.0027051628567278385, 0.0066017042845487595, -0.030020184814929962, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.8433, "q": [-0.3138149678707123, -0.013809235766530037, 0.015588166192173958, 0.6313353776931763, -0.3265340030193329, 0.021105842664837837, -0.32264387607574463, 0.029997846111655235, -0.01470430102199316, 0.6227876543998718, -0.33666959404945374, -0.021007122471928596, 0.0026649872306734324, 0.006586509291082621, -0.030020128935575485, 0.29049763083457947, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.86, "q": [-0.31378090381622314, -0.013817759230732918, 0.015561383217573166, 0.6312757134437561, -0.3265340030193329, 0.02112036943435669, -0.32262685894966125, 0.029989324510097504, -0.014677518047392368, 0.6227194666862488, -0.33667367696762085, -0.02101435326039791, 0.0027051628567278385, 0.006632077973335981, -0.02999080717563629, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008868326433002949]} +{"t": 4.8767, "q": [-0.31377238035202026, -0.013834802433848381, 0.015561383217573166, 0.6312160491943359, -0.3265257775783539, 0.02110590599477291, -0.32262685894966125, 0.029989324510097504, -0.01470430102199316, 0.6226769089698792, -0.33667367696762085, -0.02101435326039791, 0.0026649872306734324, 0.006662462837994099, -0.029981087893247604, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 4.8935, "q": [-0.3137979209423065, -0.013843324035406113, 0.015588166192173958, 0.6311563849449158, -0.3265298902988434, 0.02109861932694912, -0.32259276509284973, 0.029989324510097504, -0.014677518047392368, 0.6226428151130676, -0.33667367696762085, -0.02101435326039791, 0.0027051628567278385, 0.0066700465977191925, -0.02995654195547104, 0.2904616594314575, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.9116, "q": [-0.31378090381622314, -0.013817759230732918, 0.015574774704873562, 0.63113933801651, -0.3265298902988434, 0.02109861932694912, -0.3226012885570526, 0.029997846111655235, -0.01470430102199316, 0.6225831508636475, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.006639656610786915, -0.029956432059407234, 0.29044967889785767, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023069633170962334, 0.9780925512313843, -0.1835503876209259, 0.05243098363280296, 0.0088803106918931]} +{"t": 4.9283, "q": [-0.31378939747810364, -0.01382628083229065, 0.015561383217573166, 0.6311052441596985, -0.3265298902988434, 0.02111312933266163, -0.3225671947002411, 0.029997846111655235, -0.014731084927916527, 0.6225490570068359, -0.33668190240859985, -0.02099977247416973, 0.002718554809689522, 0.006624466739594936, -0.02996620535850525, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 4.9451, "q": [-0.3137979209423065, -0.013817759230732918, 0.015561383217573166, 0.6310455799102783, -0.3265298902988434, 0.02109861932694912, -0.32258424162864685, 0.029997846111655235, -0.01470430102199316, 0.6225234866142273, -0.33666959404945374, -0.021007122471928596, 0.002731946762651205, 0.006723205093294382, -0.02991250343620777, 0.29044967889785767, 0.2159797102212906, -0.005225121974945068, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.9618, "q": [-0.31377238035202026, -0.013817759230732918, 0.015561383217573166, 0.6310114860534668, -0.3265298902988434, 0.02109861932694912, -0.32253310084342957, 0.029997846111655235, -0.014731084927916527, 0.62247234582901, -0.33667367696762085, -0.02101435326039791, 0.002731946762651205, 0.0067080045118927956, -0.029902620241045952, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008844357915222645]} +{"t": 4.9786, "q": [-0.31377238035202026, -0.013817759230732918, 0.015547990798950195, 0.6309689283370972, -0.3265298902988434, 0.02109861932694912, -0.3225245773792267, 0.029989324510097504, -0.014690909534692764, 0.622404158115387, -0.33667367696762085, -0.02101435326039791, 0.0026783791836351156, 0.006707998923957348, -0.02989278919994831, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008868326433002949]} +{"t": 4.9953, "q": [-0.3137553334236145, -0.013809235766530037, 0.015561383217573166, 0.6309348344802856, -0.3265381157398224, 0.021098555997014046, -0.32249900698661804, 0.029989324510097504, -0.014731084927916527, 0.6223785877227783, -0.33666959404945374, -0.021007122471928596, 0.002718554809689522, 0.006700403988361359, -0.029897676780819893, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.29507559537887573, -0.2238173931837082, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 5.012, "q": [-0.3137553334236145, -0.013800714164972305, 0.015561383217573166, 0.6309263110160828, -0.3265257775783539, 0.02110590599477291, -0.3224819600582123, 0.029989324510097504, -0.01471769344061613, 0.6223530173301697, -0.33666548132896423, -0.020999889820814133, 0.002691771136596799, 0.00665482971817255, -0.029917169362306595, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.0616828091442585, -0.04086620733141899, 0.29503965377807617, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 5.0288, "q": [-0.31372976303100586, -0.013800714164972305, 0.015561383217573166, 0.6309007406234741, -0.326521635055542, 0.021113192662596703, -0.3224649131298065, 0.030006367713212967, -0.01470430102199316, 0.6223104596138, -0.33667778968811035, -0.020992539823055267, 0.0027453387156128883, 0.006662430241703987, -0.029922112822532654, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 5.0455, "q": [-0.3137127161026001, -0.013800714164972305, 0.015547990798950195, 0.6308240294456482, -0.3265257775783539, 0.02110590599477291, -0.3224819600582123, 0.029997846111655235, -0.01471769344061613, 0.622242271900177, -0.33667370676994324, -0.020985309034585953, 0.002718554809689522, 0.006806714925915003, -0.029829397797584534, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.0623, "q": [-0.3136786222457886, -0.013809235766530037, 0.015561383217573166, 0.6307814121246338, -0.3265298902988434, 0.02109861932694912, -0.32245638966560364, 0.029997846111655235, -0.014731084927916527, 0.6222081780433655, -0.33667778968811035, -0.020992539823055267, 0.002691771136596799, 0.0068067223764956, -0.029839208349585533, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.0791, "q": [-0.31368714570999146, -0.013792192563414574, 0.015547990798950195, 0.6307558417320251, -0.3265298902988434, 0.02109861932694912, -0.32243937253952026, 0.029997846111655235, -0.014744477346539497, 0.6221996545791626, -0.33667370676994324, -0.020985309034585953, 0.0027051628567278385, 0.006829492282122374, -0.029814792796969414, 0.2904616594314575, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.1575925648212433, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 5.0958, "q": [-0.31368714570999146, -0.013792192563414574, 0.0155345993116498, 0.6307217478752136, -0.326521635055542, 0.021098682656884193, -0.3224308490753174, 0.030006367713212967, -0.014731084927916527, 0.6221314668655396, -0.33666548132896423, -0.020999889820814133, 0.002691771136596799, 0.0068067223764956, -0.029839208349585533, 0.2904736399650574, 0.21594375371932983, -0.0051891696639359, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9781045317649841, -0.1835503876209259, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.1126, "q": [-0.31363600492477417, -0.01376662589609623, 0.015521206893026829, 0.6307047009468079, -0.3265257775783539, 0.02110590599477291, -0.32239675521850586, 0.030006367713212967, -0.014731084927916527, 0.6221058964729309, -0.33667367696762085, -0.02101435326039791, 0.0027051628567278385, 0.006776344496756792, -0.029848871752619743, 0.2904736399650574, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.06169478967785835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.1293, "q": [-0.3136274814605713, -0.01376662589609623, 0.0155345993116498, 0.6306791305541992, -0.3265298902988434, 0.02109861932694912, -0.32235413789749146, 0.030014891177415848, -0.014731084927916527, 0.6220718026161194, -0.33666959404945374, -0.021007122471928596, 0.0027051628567278385, 0.006821899674832821, -0.029819661751389503, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 5.146, "q": [-0.31363600492477417, -0.01376662589609623, 0.015521206893026829, 0.6306279897689819, -0.3265298902988434, 0.02109861932694912, -0.3223711848258972, 0.030014891177415848, -0.014731084927916527, 0.6220206618309021, -0.33667370676994324, -0.020985309034585953, 0.0027453387156128883, 0.006859861314296722, -0.029795320704579353, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.1628, "q": [-0.31363600492477417, -0.013775147497653961, 0.015521206893026829, 0.6305939555168152, -0.3265257775783539, 0.02110590599477291, -0.3223711848258972, 0.030006367713212967, -0.014731084927916527, 0.6219525337219238, -0.33667367696762085, -0.02101435326039791, 0.0026783791836351156, 0.006867461837828159, -0.029800262302160263, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 5.1795, "q": [-0.31363600492477417, -0.013749580830335617, 0.015521206893026829, 0.6305513381958008, -0.3265298902988434, 0.02109861932694912, -0.3223711848258972, 0.030014891177415848, -0.014731084927916527, 0.6218843460083008, -0.33666548132896423, -0.020999889820814133, 0.0026783791836351156, 0.006837077438831329, -0.029800113290548325, 0.29044967889785767, 0.2159557342529297, -0.005225121974945068, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.1962, "q": [-0.31363600492477417, -0.013749580830335617, 0.015507815405726433, 0.630534291267395, -0.326521635055542, 0.021098682656884193, -0.32236266136169434, 0.03002341277897358, -0.014690909534692764, 0.621867299079895, -0.33668190240859985, -0.02099977247416973, 0.002731946762651205, 0.006859861314296722, -0.029795320704579353, 0.2904376983642578, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 5.213, "q": [-0.31364452838897705, -0.013758104294538498, 0.015507815405726433, 0.6305001974105835, -0.3265298902988434, 0.02109861932694912, -0.3223456144332886, 0.030014891177415848, -0.014731084927916527, 0.6218332052230835, -0.33666548132896423, -0.020999889820814133, 0.002718554809689522, 0.006844677496701479, -0.029805056750774384, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.2297, "q": [-0.3136189579963684, -0.013749580830335617, 0.015507815405726433, 0.6304575800895691, -0.3265298902988434, 0.02109861932694912, -0.32235413789749146, 0.03002341277897358, -0.014731084927916527, 0.6217650175094604, -0.33666959404945374, -0.020992599427700043, 0.002718554809689522, 0.006859861314296722, -0.029795320704579353, 0.2904856503009796, 0.2159557342529297, -0.005225121974945068, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 5.2465, "q": [-0.31360191106796265, -0.013749580830335617, 0.015507815405726433, 0.6303723454475403, -0.3265340030193329, 0.021091332659125328, -0.32236266136169434, 0.03002341277897358, -0.014731084927916527, 0.6216627359390259, -0.33666548132896423, -0.020999889820814133, 0.002718554809689522, 0.006897824816405773, -0.029770951718091965, 0.2904856503009796, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.2635, "q": [-0.31363600492477417, -0.013749580830335617, 0.015494422987103462, 0.630321204662323, -0.3265298902988434, 0.02109861932694912, -0.3223370909690857, 0.03003193438053131, -0.01471769344061613, 0.6215945482254028, -0.33666959404945374, -0.021007122471928596, 0.0027453387156128883, 0.006875039078295231, -0.029775751754641533, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.061658840626478195, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.2802, "q": [-0.31363600492477417, -0.013749580830335617, 0.015507815405726433, 0.6303041577339172, -0.3265340030193329, 0.021105842664837837, -0.32231152057647705, 0.03003193438053131, -0.014731084927916527, 0.6215605139732361, -0.33666959404945374, -0.020992599427700043, 0.002731946762651205, 0.006905409973114729, -0.02975625731050968, 0.2904616594314575, 0.21596772968769073, -0.0051891696639359, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.2969, "q": [-0.31364452838897705, -0.013741059228777885, 0.015507815405726433, 0.6302530169487, -0.3265340030193329, 0.021105842664837837, -0.3222944736480713, 0.030040455982089043, -0.01471769344061613, 0.6215093731880188, -0.33666959404945374, -0.021007122471928596, 0.0027453387156128883, 0.00692818034440279, -0.029731813818216324, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.061706773936748505, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.3138, "q": [-0.31359341740608215, -0.013741059228777885, 0.015507815405726433, 0.630236029624939, -0.3265298902988434, 0.02109861932694912, -0.32226890325546265, 0.030048979446291924, -0.014744477346539497, 0.6214582324028015, -0.33667367696762085, -0.02101435326039791, 0.0026783791836351156, 0.006928187794983387, -0.02974163554608822, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18358634412288666, 0.052442967891693115, 0.008856342174112797]} +{"t": 5.3305, "q": [-0.31360191106796265, -0.013749580830335617, 0.015494422987103462, 0.6302104592323303, -0.3265340030193329, 0.021105842664837837, -0.32226890325546265, 0.030040455982089043, -0.014744477346539497, 0.62142413854599, -0.33667370676994324, -0.020985309034585953, 0.002731946762651205, 0.006897802464663982, -0.02974148653447628, 0.2904376983642578, 0.21593177318572998, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.061706773936748505, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 5.3473, "q": [-0.3136189579963684, -0.013749580830335617, 0.015507815405726433, 0.6301678419113159, -0.3265298902988434, 0.02109861932694912, -0.3222433626651764, 0.030040455982089043, -0.014744477346539497, 0.6213474273681641, -0.33666136860847473, -0.021021703258156776, 0.0027051628567278385, 0.006966136395931244, -0.02969762124121189, 0.29042571783065796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.3641, "q": [-0.3136104345321655, -0.013749580830335617, 0.015507815405726433, 0.6301252245903015, -0.3265257775783539, 0.02110590599477291, -0.3222348392009735, 0.030040455982089043, -0.014757868833839893, 0.6213048100471497, -0.33666959404945374, -0.020992599427700043, 0.0026783791836351156, 0.006996514275670052, -0.029687948524951935, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18358634412288666, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.3808, "q": [-0.3136104345321655, -0.013749580830335617, 0.015507815405726433, 0.6301252245903015, -0.3265298902988434, 0.02109861932694912, -0.32221779227256775, 0.030048979446291924, -0.014771261252462864, 0.6212877631187439, -0.3366572856903076, -0.021014470607042313, 0.002718554809689522, 0.0070041147992014885, -0.029692895710468292, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950156629085541, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008844357915222645]} +{"t": 5.3976, "q": [-0.31360191106796265, -0.013749580830335617, 0.015481031499803066, 0.6300996541976929, -0.3265298902988434, 0.02111312933266163, -0.322200745344162, 0.030057501047849655, -0.014771261252462864, 0.6212536692619324, -0.3366572856903076, -0.02099994756281376, 0.002731946762651205, 0.006981306709349155, -0.029668230563402176, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.4143, "q": [-0.31360191106796265, -0.013749580830335617, 0.015521206893026829, 0.6300826072692871, -0.326521635055542, 0.021098682656884193, -0.3221836984157562, 0.030048979446291924, -0.01479804515838623, 0.6212451457977295, -0.33666136860847473, -0.021021703258156776, 0.0027051628567278385, 0.006981306709349155, -0.029668230563402176, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.431, "q": [-0.31359341740608215, -0.013732537627220154, 0.015507815405726433, 0.6300570368766785, -0.3265298902988434, 0.02109861932694912, -0.3221836984157562, 0.030048979446291924, -0.01479804515838623, 0.6211855411529541, -0.33666959404945374, -0.021007122471928596, 0.002731946762651205, 0.0070344251580536366, -0.029594825580716133, 0.2904376983642578, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 5.4478, "q": [-0.3135763704776764, -0.013749580830335617, 0.015507815405726433, 0.6300314664840698, -0.3265257775783539, 0.02110590599477291, -0.32216665148735046, 0.030048979446291924, -0.01478465273976326, 0.6211514472961426, -0.33666548132896423, -0.020999889820814133, 0.002731946762651205, 0.007057209499180317, -0.029590027406811714, 0.29042571783065796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.4646, "q": [-0.31360191106796265, -0.013732537627220154, 0.015481031499803066, 0.6300144195556641, -0.3265298902988434, 0.02109861932694912, -0.32217517495155334, 0.030048979446291924, -0.01478465273976326, 0.6211258769035339, -0.33667778968811035, -0.020992539823055267, 0.002758730435743928, 0.007042017765343189, -0.029589951038360596, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04087819159030914, 0.29502764344215393, -0.22378143668174744, 0.023069633170962334, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 5.4813, "q": [-0.31359341740608215, -0.013732537627220154, 0.015481031499803066, 0.6299803256988525, -0.3265298902988434, 0.02109861932694912, -0.3221581280231476, 0.030048979446291924, -0.014757868833839893, 0.6211003065109253, -0.33666959404945374, -0.02097807638347149, 0.0027453387156128883, 0.007057209499180317, -0.029590027406811714, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.0616828091442585, -0.0409141443669796, 0.29503965377807617, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.4981, "q": [-0.31354227662086487, -0.01370697095990181, 0.015481031499803066, 0.629946231842041, -0.3265298902988434, 0.02109861932694912, -0.3221581280231476, 0.030057501047849655, -0.014744477346539497, 0.6210576891899109, -0.33666548132896423, -0.020999889820814133, 0.0026783791836351156, 0.0070344251580536366, -0.029594825580716133, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008844357915222645]} +{"t": 5.5148, "q": [-0.31355932354927063, -0.01370697095990181, 0.015481031499803066, 0.629946231842041, -0.3265340030193329, 0.021091332659125328, -0.32212403416633606, 0.030057501047849655, -0.014731084927916527, 0.621049165725708, -0.33667370676994324, -0.020985309034585953, 0.002718554809689522, 0.006996462121605873, -0.02961919456720352, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.2237934172153473, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 5.5315, "q": [-0.31354227662086487, -0.01370697095990181, 0.0154542475938797, 0.6299377083778381, -0.3265298902988434, 0.02109861932694912, -0.32212403416633606, 0.030048979446291924, -0.01479804515838623, 0.6210065484046936, -0.33666959404945374, -0.021007122471928596, 0.002731946762651205, 0.0070648095570504665, -0.02959497459232807, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.1576405018568039, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.5485, "q": [-0.31355080008506775, -0.013698449358344078, 0.015481031499803066, 0.6299036145210266, -0.3265381455421448, 0.021113082766532898, -0.3221069872379303, 0.030048979446291924, -0.014757868833839893, 0.6210065484046936, -0.33666548132896423, -0.020999889820814133, 0.0026783791836351156, 0.007049609441310167, -0.029585078358650208, 0.2904376983642578, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.5654, "q": [-0.31354227662086487, -0.013672882691025734, 0.015481031499803066, 0.6299036145210266, -0.3265340030193329, 0.021091332659125328, -0.3221155107021332, 0.030074546113610268, -0.014771261252462864, 0.6209980249404907, -0.3366572856903076, -0.02099994756281376, 0.002718554809689522, 0.00705720204859972, -0.02958020567893982, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18358634412288666, 0.05243098363280296, 0.008844357915222645]} +{"t": 5.5821, "q": [-0.313533753156662, -0.013681404292583466, 0.015467639081180096, 0.6298950910568237, -0.3265298902988434, 0.02109861932694912, -0.3221155107021332, 0.030066022649407387, -0.01478465273976326, 0.620980978012085, -0.33666548132896423, -0.020999889820814133, 0.002731946762651205, 0.00706480210646987, -0.029585152864456177, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 5.5988, "q": [-0.3135252296924591, -0.013655837625265121, 0.015481031499803066, 0.6298695802688599, -0.3265298902988434, 0.02109861932694912, -0.3221069872379303, 0.030066022649407387, -0.014771261252462864, 0.6209639310836792, -0.33667370676994324, -0.020985309034585953, 0.002758730435743928, 0.007057209499180317, -0.029590027406811714, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.6156, "q": [-0.313533753156662, -0.013672882691025734, 0.015481031499803066, 0.629878044128418, -0.3265298902988434, 0.02109861932694912, -0.3220984637737274, 0.030074546113610268, -0.01478465273976326, 0.6209468841552734, -0.33666548132896423, -0.020999889820814133, 0.0026783791836351156, 0.007049609441310167, -0.029585078358650208, 0.29042571783065796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.0088803106918931]} +{"t": 5.6324, "q": [-0.313533753156662, -0.013672882691025734, 0.015467639081180096, 0.6298269629478455, -0.3265298902988434, 0.02109861932694912, -0.32212403416633606, 0.030066022649407387, -0.014811436645686626, 0.6209298372268677, -0.33666548132896423, -0.020999889820814133, 0.0027051628567278385, 0.007079987786710262, -0.02957540564239025, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15758058428764343, 0.06167082488536835, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023069633170962334, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.6491, "q": [-0.31354227662086487, -0.013664361089468002, 0.015467639081180096, 0.6298184394836426, -0.3265298902988434, 0.02109861932694912, -0.3220643997192383, 0.030083067715168, -0.01479804515838623, 0.6209127902984619, -0.3366613984107971, -0.02099265716969967, 0.002718554809689522, 0.007064794655889273, -0.029575331136584282, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.6658, "q": [-0.3135252296924591, -0.013655837625265121, 0.015481031499803066, 0.6298184394836426, -0.3265257775783539, 0.02110590599477291, -0.3220473527908325, 0.030083067715168, -0.01478465273976326, 0.6208616495132446, -0.3366572856903076, -0.020985424518585205, 0.0026649872306734324, 0.00704960199072957, -0.029575256630778313, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 5.6826, "q": [-0.3135167062282562, -0.013655837625265121, 0.015481031499803066, 0.6298099160194397, -0.3265298902988434, 0.02109861932694912, -0.32198768854141235, 0.030083067715168, -0.01479804515838623, 0.620836079120636, -0.3366613984107971, -0.02099265716969967, 0.0027051628567278385, 0.007064787205308676, -0.029565509408712387, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.6993, "q": [-0.3134911358356476, -0.013672882691025734, 0.0154542475938797, 0.6298099160194397, -0.3265340030193329, 0.021105842664837837, -0.32193654775619507, 0.03009158931672573, -0.01479804515838623, 0.6208105683326721, -0.3366613984107971, -0.02099265716969967, 0.0027051628567278385, 0.007064787205308676, -0.029565509408712387, 0.29042571783065796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 5.716, "q": [-0.31350818276405334, -0.013638794422149658, 0.0154542475938797, 0.629784345626831, -0.3265298902988434, 0.02109861932694912, -0.32194507122039795, 0.030083067715168, -0.014838220551609993, 0.6207168102264404, -0.33666959404945374, -0.021007122471928596, 0.0027051628567278385, 0.00704960199072957, -0.029575256630778313, 0.29042571783065796, 0.21594375371932983, -0.005201153922826052, 0.9791951179504395, 0.15755660831928253, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008832373656332493]} +{"t": 5.7328, "q": [-0.3134826123714447, -0.013664361089468002, 0.0154542475938797, 0.6297502517700195, -0.3265257775783539, 0.021091395989060402, -0.3219109773635864, 0.030083067715168, -0.014838220551609993, 0.6207082867622375, -0.33666548132896423, -0.020999889820814133, 0.002691771136596799, 0.007133121136575937, -0.029521644115447998, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05240701511502266, 0.008856342174112797]} +{"t": 5.7498, "q": [-0.3134826123714447, -0.01364731602370739, 0.015440856106579304, 0.6297417283058167, -0.3265298902988434, 0.02109861932694912, -0.3218854069709778, 0.03009158931672573, -0.014811436645686626, 0.6206912398338318, -0.33666548132896423, -0.020999889820814133, 0.002731946762651205, 0.007110335864126682, -0.029526444151997566, 0.29042571783065796, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.7665, "q": [-0.3134826123714447, -0.01364731602370739, 0.015467639081180096, 0.6297332048416138, -0.3265298902988434, 0.02111312933266163, -0.3218683898448944, 0.03009158931672573, -0.014811436645686626, 0.6206486225128174, -0.33667370676994324, -0.020985309034585953, 0.002718554809689522, 0.007102735806256533, -0.02952149510383606, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.7833, "q": [-0.3134826123714447, -0.013655837625265121, 0.015467639081180096, 0.629716157913208, -0.3265257775783539, 0.02110590599477291, -0.3218342959880829, 0.03009158931672573, -0.014824828132987022, 0.6206145286560059, -0.3366531729698181, -0.021007239818572998, 0.002731946762651205, 0.007095127832144499, -0.029506726190447807, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008868326433002949]} +{"t": 5.8, "q": [-0.31346556544303894, -0.01364731602370739, 0.0154542475938797, 0.6297076344490051, -0.3265257775783539, 0.02110590599477291, -0.32182577252388, 0.030083067715168, -0.014811436645686626, 0.6205889582633972, -0.3366572856903076, -0.02099994756281376, 0.002691771136596799, 0.0071027278900146484, -0.029511673375964165, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15765248239040375, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.8168, "q": [-0.3134485185146332, -0.013638794422149658, 0.015467639081180096, 0.6296905875205994, -0.3265298902988434, 0.02109861932694912, -0.32182577252388, 0.030100110918283463, -0.014838220551609993, 0.6205548644065857, -0.336649090051651, -0.021014530211687088, 0.002731946762651205, 0.0071027204394340515, -0.02950185164809227, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.040890175849199295, 0.29503965377807617, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.8336, "q": [-0.3134399950504303, -0.013638794422149658, 0.0154542475938797, 0.6296905875205994, -0.3265257775783539, 0.02110590599477291, -0.3217746317386627, 0.030100110918283463, -0.014824828132987022, 0.6205037236213684, -0.3366572856903076, -0.020985424518585205, 0.002758730435743928, 0.007110306061804295, -0.029487160965800285, 0.2904376983642578, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 5.8503, "q": [-0.31342294812202454, -0.013638794422149658, 0.015427463687956333, 0.6296394467353821, -0.3265298902988434, 0.02109861932694912, -0.3217746317386627, 0.030100110918283463, -0.014838220551609993, 0.6204696297645569, -0.336649090051651, -0.02098548412322998, 0.0027051628567278385, 0.0071254912763834, -0.02947741374373436, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.8671, "q": [-0.3134314715862274, -0.013621749356389046, 0.015427463687956333, 0.6296138763427734, -0.3265422582626343, 0.021105796098709106, -0.3217490613460541, 0.030100110918283463, -0.014838220551609993, 0.6203929781913757, -0.3366572856903076, -0.020985424518585205, 0.0027051628567278385, 0.0071254912763834, -0.02947741374373436, 0.2904376983642578, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008868326433002949]} +{"t": 5.8838, "q": [-0.31341442465782166, -0.013630270957946777, 0.015400679782032967, 0.6295627355575562, -0.3265298902988434, 0.02109861932694912, -0.3217320144176483, 0.030108634382486343, -0.014851612038910389, 0.6203588843345642, -0.336649090051651, -0.02098548412322998, 0.002731946762651205, 0.007140676956623793, -0.029467666521668434, 0.29044967889785767, 0.2159797102212906, -0.005225121974945068, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 5.9006, "q": [-0.31340593099594116, -0.013630270957946777, 0.015427463687956333, 0.6295201182365417, -0.3265298902988434, 0.02109861932694912, -0.32171496748924255, 0.03009158931672573, -0.014851612038910389, 0.6203333139419556, -0.3366572856903076, -0.020985424518585205, 0.002691771136596799, 0.007140670903027058, -0.029457861557602882, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04087819159030914, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.9173, "q": [-0.31340593099594116, -0.013621749356389046, 0.015414072200655937, 0.6295286417007446, -0.3265257775783539, 0.02110590599477291, -0.3216553330421448, 0.030100110918283463, -0.014851612038910389, 0.6202566027641296, -0.3366572856903076, -0.020985424518585205, 0.0026649872306734324, 0.007125479634851217, -0.029457805678248405, 0.2904736399650574, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.9343, "q": [-0.31340593099594116, -0.013613227754831314, 0.01538728829473257, 0.6294775605201721, -0.3265340030193329, 0.021105842664837837, -0.32166385650634766, 0.030100110918283463, -0.014905179850757122, 0.620162844657898, -0.3366572856903076, -0.020985424518585205, 0.002718554809689522, 0.007171047385782003, -0.029448170214891434, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.951, "q": [-0.3133974075317383, -0.013604706153273582, 0.015347111970186234, 0.629417896270752, -0.3265340030193329, 0.021105842664837837, -0.32166385650634766, 0.03009158931672573, -0.014918571338057518, 0.6200435757637024, -0.3366572856903076, -0.020985424518585205, 0.0027051628567278385, 0.00714826351031661, -0.029452988877892494, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9791951179504395, 0.15760454535484314, 0.06169478967785835, -0.04090216010808945, 0.29507559537887573, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008832373656332493]} +{"t": 5.9677, "q": [-0.3133888840675354, -0.013604706153273582, 0.015347111970186234, 0.6293582320213318, -0.3265340030193329, 0.021105842664837837, -0.32167237997055054, 0.03009158931672573, -0.014905179850757122, 0.6200180053710938, -0.336649090051651, -0.020970961079001427, 0.002691771136596799, 0.00714826351031661, -0.029452988877892494, 0.2904376983642578, 0.2159797102212906, -0.005225121974945068, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.9846, "q": [-0.3133974075317383, -0.013596182689070702, 0.015347111970186234, 0.6292900443077087, -0.3265298902988434, 0.02111312933266163, -0.3216809034347534, 0.030100110918283463, -0.014905179850757122, 0.6199157238006592, -0.3366572856903076, -0.020985424518585205, 0.0027453387156128883, 0.007186232600361109, -0.029438422992825508, 0.2904616594314575, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008844357915222645]} +{"t": 6.0013, "q": [-0.3133974075317383, -0.013613227754831314, 0.015347111970186234, 0.6292048096656799, -0.3265381455421448, 0.021113082766532898, -0.3216809034347534, 0.030108634382486343, -0.014891788363456726, 0.6198475360870361, -0.3366572856903076, -0.020985424518585205, 0.002691771136596799, 0.007148257456719875, -0.029443183913826942, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.018, "q": [-0.31340593099594116, -0.013621749356389046, 0.015333720482885838, 0.6291195750236511, -0.3265298902988434, 0.02109861932694912, -0.3216894268989563, 0.030117155984044075, -0.01486500445753336, 0.6197367310523987, -0.3366532027721405, -0.02097819373011589, 0.002758730435743928, 0.007186220958828926, -0.029418814927339554, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.0351, "q": [-0.31341442465782166, -0.013613227754831314, 0.015320328995585442, 0.6290770173072815, -0.3265340030193329, 0.021105842664837837, -0.3216809034347534, 0.030108634382486343, -0.014878395944833755, 0.6196515560150146, -0.336649090051651, -0.020970961079001427, 0.002691771136596799, 0.007155856117606163, -0.029448114335536957, 0.2904376983642578, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15765248239040375, 0.06167082488536835, -0.04090216010808945, 0.29502764344215393, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18358634412288666, 0.05241899937391281, 0.008868326433002949]} +{"t": 6.0519, "q": [-0.3133974075317383, -0.013596182689070702, 0.015320328995585442, 0.6290684938430786, -0.3265298902988434, 0.02109861932694912, -0.3216468095779419, 0.030108634382486343, -0.014931963756680489, 0.6196174621582031, -0.3366532027721405, -0.02097819373011589, 0.002691771136596799, 0.007171041332185268, -0.02943836711347103, 0.29044967889785767, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.0409141443669796, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 6.0686, "q": [-0.3134314715862274, -0.013596182689070702, 0.015306936576962471, 0.6290343999862671, -0.3265381455421448, 0.021113082766532898, -0.3216468095779419, 0.030125677585601807, -0.014878395944833755, 0.6195748448371887, -0.3366532027721405, -0.02097819373011589, 0.0026783791836351156, 0.007171035744249821, -0.02942856401205063, 0.2904616594314575, 0.2159797102212906, -0.005213138181716204, 0.9791951179504395, 0.1575925648212433, 0.06169478967785835, -0.04090216010808945, 0.29503965377807617, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.0854, "q": [-0.31341442465782166, -0.01358766108751297, 0.015320328995585442, 0.6289917826652527, -0.3265340030193329, 0.021105842664837837, -0.3216553330421448, 0.030125677585601807, -0.014891788363456726, 0.6194725632667542, -0.336649090051651, -0.020970961079001427, 0.0026649872306734324, 0.007193813566118479, -0.029413942247629166, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 6.1023, "q": [-0.31342294812202454, -0.013613227754831314, 0.015320328995585442, 0.6289406418800354, -0.3265340030193329, 0.021105842664837837, -0.3216468095779419, 0.030134201049804688, -0.014878395944833755, 0.6193873286247253, -0.3366450071334839, -0.020978251472115517, 0.002691771136596799, 0.007178616244345903, -0.029404081404209137, 0.2904616594314575, 0.21594375371932983, -0.0051891696639359, 0.9791830778121948, 0.15758058428764343, 0.0616828091442585, -0.0409141443669796, 0.2950156629085541, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835264265537262, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.119, "q": [-0.31341442465782166, -0.01358766108751297, 0.015320328995585442, 0.6289406418800354, -0.3265298902988434, 0.02111312933266163, -0.3215530514717102, 0.03014272265136242, -0.014905179850757122, 0.6193873286247253, -0.3366408944129944, -0.02100006490945816, 0.002691771136596799, 0.007148239761590958, -0.029413774609565735, 0.29040175676345825, 0.2159557342529297, -0.005201153922826052, 0.9791830778121948, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780685901641846, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.1358, "q": [-0.31342294812202454, -0.01358766108751297, 0.015347111970186234, 0.6289491653442383, -0.3265381455421448, 0.021113082766532898, -0.32153600454330444, 0.03015124425292015, -0.014891788363456726, 0.6193192005157471, -0.3366532027721405, -0.02097819373011589, 0.002691771136596799, 0.007140625733882189, -0.029379436746239662, 0.29040175676345825, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.1526, "q": [-0.3133974075317383, -0.013579139485955238, 0.015360504388809204, 0.6289406418800354, -0.3265257775783539, 0.02110590599477291, -0.32153600454330444, 0.03015124425292015, -0.014931963756680489, 0.6193192005157471, -0.33663269877433777, -0.021000124514102936, 0.002718554809689522, 0.007178594823926687, -0.029364870861172676, 0.2904137372970581, 0.21596772968769073, -0.0051891696639359, 0.9791830778121948, 0.15756858885288239, 0.0616828091442585, -0.0409141443669796, 0.2950036823749542, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05240701511502266, 0.008856342174112797]} +{"t": 6.1693, "q": [-0.3133974075317383, -0.013570617884397507, 0.015360504388809204, 0.6289406418800354, -0.3265298902988434, 0.02109861932694912, -0.3215104341506958, 0.03015124425292015, -0.014918571338057518, 0.6192936301231384, -0.3366367816925049, -0.02100735530257225, 0.002731946762651205, 0.007193774450570345, -0.0293453186750412, 0.2903897762298584, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 6.186, "q": [-0.3133888840675354, -0.013596182689070702, 0.0153738958761096, 0.6289406418800354, -0.3265340030193329, 0.021105842664837837, -0.32147637009620667, 0.030159765854477882, -0.014905179850757122, 0.6192936301231384, -0.33663269877433777, -0.021000124514102936, 0.002691771136596799, 0.007186163682490587, -0.02932078205049038, 0.29040175676345825, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023069633170962334, 0.9780805706977844, -0.18356238305568695, 0.052383050322532654, 0.008832373656332493]} +{"t": 6.2029, "q": [-0.31337183713912964, -0.01358766108751297, 0.01538728829473257, 0.6289406418800354, -0.326521635055542, 0.021113192662596703, -0.3214252293109894, 0.030159765854477882, -0.014918571338057518, 0.6192765831947327, -0.33663269877433777, -0.021000124514102936, 0.002691771136596799, 0.0071861459873616695, -0.029291372746229172, 0.29037776589393616, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.06167082488536835, -0.040890175849199295, 0.2950156629085541, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 6.2196, "q": [-0.31327807903289795, -0.013579139485955238, 0.015360504388809204, 0.6289321184158325, -0.3265298902988434, 0.02109861932694912, -0.3213314712047577, 0.03015124425292015, -0.014905179850757122, 0.6192680597305298, -0.33663269877433777, -0.021000124514102936, 0.0026649872306734324, 0.007239282596856356, -0.029237648472189903, 0.29037776589393616, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.1576405018568039, 0.0616828091442585, -0.0409141443669796, 0.2950036823749542, -0.2238173931837082, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008844357915222645]} +{"t": 6.2365, "q": [-0.31319287419319153, -0.013570617884397507, 0.015400679782032967, 0.6289321184158325, -0.3265298902988434, 0.02109861932694912, -0.3212292194366455, 0.030168289318680763, -0.014918571338057518, 0.6192765831947327, -0.33663269877433777, -0.021000124514102936, 0.0026783791836351156, 0.007239239756017923, -0.029169024899601936, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.0409141443669796, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.2533, "q": [-0.31313320994377136, -0.013596182689070702, 0.0153738958761096, 0.6289321184158325, -0.3265257775783539, 0.02110590599477291, -0.32116955518722534, 0.030176810920238495, -0.014931963756680489, 0.6192595362663269, -0.33662858605384827, -0.021007433533668518, 0.002691771136596799, 0.007246814668178558, -0.029134739190340042, 0.2904137372970581, 0.2159797102212906, -0.005201153922826052, 0.9792190790176392, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 6.27, "q": [-0.3130309283733368, -0.013579139485955238, 0.01538728829473257, 0.6289321184158325, -0.3265257775783539, 0.02110590599477291, -0.3211354613304138, 0.030176810920238495, -0.014918571338057518, 0.6192595362663269, -0.33662447333335876, -0.021000200882554054, 0.002718554809689522, 0.007360704708844423, -0.029061632230877876, 0.29040175676345825, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.2867, "q": [-0.3129883408546448, -0.013570617884397507, 0.0153738958761096, 0.6289065480232239, -0.3265257775783539, 0.02110590599477291, -0.3210587799549103, 0.030185332521796227, -0.014931963756680489, 0.619251012802124, -0.33662858605384827, -0.020992891862988472, 0.002691771136596799, 0.007368279621005058, -0.029027346521615982, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.0409141443669796, 0.2950036823749542, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.3036, "q": [-0.3129883408546448, -0.01358766108751297, 0.0153738958761096, 0.6288809776306152, -0.3265257775783539, 0.02110590599477291, -0.3210502564907074, 0.030185332521796227, -0.014931963756680489, 0.6192595362663269, -0.33663269877433777, -0.021000124514102936, 0.002691771136596799, 0.007383470889180899, -0.02902740240097046, 0.29042571783065796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.3204, "q": [-0.3129883408546448, -0.013570617884397507, 0.015347111970186234, 0.6288639307022095, -0.3265340030193329, 0.021105842664837837, -0.32103320956230164, 0.030193854123353958, -0.014945355243980885, 0.6192424893379211, -0.33662858605384827, -0.020992891862988472, 0.002691771136596799, 0.007421433925628662, -0.02900303341448307, 0.29042571783065796, 0.2159797102212906, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.3371, "q": [-0.3129883408546448, -0.013562094420194626, 0.015347111970186234, 0.6288809776306152, -0.3265298902988434, 0.02109861932694912, -0.32103320956230164, 0.030185332521796227, -0.014931963756680489, 0.6192169189453125, -0.33662858605384827, -0.020992891862988472, 0.002731946762651205, 0.007375883869826794, -0.0290420800447464, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.354, "q": [-0.31294572353363037, -0.013553572818636894, 0.015347111970186234, 0.6288639307022095, -0.3265257775783539, 0.02110590599477291, -0.3210417330265045, 0.030193854123353958, -0.014918571338057518, 0.6192339658737183, -0.33663269877433777, -0.020985601469874382, 0.002731946762651205, 0.007391063496470451, -0.02902252972126007, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.3707, "q": [-0.3129372000694275, -0.013553572818636894, 0.015320328995585442, 0.6288383603096008, -0.3265298902988434, 0.02109861932694912, -0.3210161626338959, 0.030193854123353958, -0.014918571338057518, 0.6192169189453125, -0.33663269877433777, -0.021000124514102936, 0.002691771136596799, 0.007413847371935844, -0.02901771105825901, 0.2904376983642578, 0.21594375371932983, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.3874, "q": [-0.31292015314102173, -0.013553572818636894, 0.015306936576962471, 0.6288383603096008, -0.3265298902988434, 0.02109861932694912, -0.32102468609809875, 0.030185332521796227, -0.014931963756680489, 0.6192083954811096, -0.3366367816925049, -0.020992834120988846, 0.002718554809689522, 0.007368285208940506, -0.029037151485681534, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.4042, "q": [-0.31292015314102173, -0.013553572818636894, 0.015293545089662075, 0.6288213133811951, -0.3265257775783539, 0.02110590599477291, -0.32103320956230164, 0.030193854123353958, -0.014958747662603855, 0.6191913485527039, -0.33663681149482727, -0.020978311076760292, 0.002718554809689522, 0.007375883869826794, -0.0290420800447464, 0.2904616594314575, 0.2159557342529297, -0.005225121974945068, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.4209, "q": [-0.31290310621261597, -0.01352800615131855, 0.015293545089662075, 0.6287616491317749, -0.3265298902988434, 0.02108410932123661, -0.3210417330265045, 0.03020237758755684, -0.014905179850757122, 0.619182825088501, -0.3366408944129944, -0.020985541865229607, 0.002718554809689522, 0.007398668210953474, -0.02903726138174534, 0.2904736399650574, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.4376, "q": [-0.31291162967681885, -0.01352800615131855, 0.015293545089662075, 0.6287105679512024, -0.3265257775783539, 0.021091395989060402, -0.3210587799549103, 0.030193854123353958, -0.014905179850757122, 0.6191146373748779, -0.33663269877433777, -0.020985601469874382, 0.002731946762651205, 0.007383482530713081, -0.029047010466456413, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.4543, "q": [-0.31292015314102173, -0.01352800615131855, 0.015280152671039104, 0.6286935210227966, -0.3265381157398224, 0.021084045991301537, -0.3210587799549103, 0.030193854123353958, -0.014918571338057518, 0.6190890669822693, -0.3366408944129944, -0.020985541865229607, 0.002758730435743928, 0.007383494637906551, -0.02906661666929722, 0.29044967889785767, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.4711, "q": [-0.3129286766052246, -0.013536527752876282, 0.015306936576962471, 0.6286764740943909, -0.3265298902988434, 0.02109861932694912, -0.32106730341911316, 0.030193854123353958, -0.014931963756680489, 0.6190634965896606, -0.3366408944129944, -0.020985541865229607, 0.002691771136596799, 0.007375895977020264, -0.029061686247587204, 0.2904616594314575, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.4878, "q": [-0.3129372000694275, -0.013519484549760818, 0.015266761183738708, 0.6286509037017822, -0.3265257775783539, 0.02110590599477291, -0.3210587799549103, 0.03020237758755684, -0.014945355243980885, 0.619037926197052, -0.336649090051651, -0.020970961079001427, 0.0027453387156128883, 0.007368297316133976, -0.02905675768852234, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15754462778568268, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 6.5045, "q": [-0.3129286766052246, -0.013545051217079163, 0.015280152671039104, 0.6286168098449707, -0.3265257775783539, 0.02110590599477291, -0.32106730341911316, 0.03020237758755684, -0.014945355243980885, 0.6189953088760376, -0.3366408944129944, -0.020971018821001053, 0.002718554809689522, 0.007360698655247688, -0.029051827266812325, 0.29042571783065796, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.5214, "q": [-0.31296277046203613, -0.013545051217079163, 0.015280152671039104, 0.6285741925239563, -0.3265298902988434, 0.02109861932694912, -0.32106730341911316, 0.03020237758755684, -0.014891788363456726, 0.6189101338386536, -0.3366449773311615, -0.02099277451634407, 0.002731946762651205, 0.007375883869826794, -0.0290420800447464, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.5383, "q": [-0.31294572353363037, -0.013553572818636894, 0.015280152671039104, 0.6285400986671448, -0.3265257775783539, 0.021091395989060402, -0.32103320956230164, 0.03020237758755684, -0.014918571338057518, 0.618876039981842, -0.3366367816925049, -0.020963769406080246, 0.0027051628567278385, 0.007368297316133976, -0.02905675768852234, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.555, "q": [-0.31291162967681885, -0.01352800615131855, 0.015306936576962471, 0.628523051738739, -0.3265257775783539, 0.02110590599477291, -0.32103320956230164, 0.03020237758755684, -0.014918571338057518, 0.6188248991966248, -0.3366367816925049, -0.020992834120988846, 0.002691771136596799, 0.007345507387071848, -0.029051773250102997, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.5718, "q": [-0.31294572353363037, -0.013545051217079163, 0.015320328995585442, 0.6284889578819275, -0.3265340030193329, 0.021105842664837837, -0.3210161626338959, 0.03020237758755684, -0.014918571338057518, 0.6187737584114075, -0.33663269877433777, -0.021000124514102936, 0.002731946762651205, 0.007368291262537241, -0.029046954587101936, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 6.5885, "q": [-0.3129372000694275, -0.013536527752876282, 0.015333720482885838, 0.6284719109535217, -0.3265381157398224, 0.021084045991301537, -0.321007639169693, 0.03020237758755684, -0.014918571338057518, 0.6187481880187988, -0.33662858605384827, -0.020992891862988472, 0.002691771136596799, 0.007353088352829218, -0.029027290642261505, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.06167082488536835, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023069633170962334, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.6053, "q": [-0.31292015314102173, -0.013553572818636894, 0.015333720482885838, 0.6284463405609131, -0.3265257775783539, 0.02110590599477291, -0.3209564983844757, 0.03020237758755684, -0.014918571338057518, 0.6186970472335815, -0.33662447333335876, -0.020985642448067665, 0.002691771136596799, 0.007330292370170355, -0.02901250310242176, 0.29037776589393616, 0.21594375371932983, -0.005201153922826052, 0.9791830778121948, 0.1575925648212433, 0.06167082488536835, -0.040890175849199295, 0.29499170184135437, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.622, "q": [-0.3129372000694275, -0.013553572818636894, 0.015360504388809204, 0.6284037232398987, -0.3265381157398224, 0.021084045991301537, -0.3209564983844757, 0.030193854123353958, -0.014918571338057518, 0.61866295337677, -0.33662447333335876, -0.020985642448067665, 0.002731946762651205, 0.007330280262976885, -0.028992895036935806, 0.29040175676345825, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1576405018568039, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.6389, "q": [-0.31290310621261597, -0.013545051217079163, 0.015347111970186234, 0.6283951997756958, -0.3265298902988434, 0.02109861932694912, -0.32087981700897217, 0.03020237758755684, -0.014918571338057518, 0.6186288595199585, -0.33662858605384827, -0.020992891862988472, 0.002691771136596799, 0.007322681602090597, -0.02898796647787094, 0.29040175676345825, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780685901641846, -0.1835743635892868, 0.05243098363280296, 0.008868326433002949]} +{"t": 6.6556, "q": [-0.31290310621261597, -0.013553572818636894, 0.015333720482885838, 0.62837815284729, -0.3265298902988434, 0.02109861932694912, -0.32088834047317505, 0.03021089918911457, -0.014958747662603855, 0.6186118125915527, -0.33663269877433777, -0.020971059799194336, 0.002691771136596799, 0.007383422926068306, -0.02894897572696209, 0.29042571783065796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.0088803106918931]} +{"t": 6.6724, "q": [-0.3128775358200073, -0.013545051217079163, 0.015333720482885838, 0.6283696293830872, -0.3265381455421448, 0.021113082766532898, -0.32083719968795776, 0.03020237758755684, -0.014958747662603855, 0.6185862421989441, -0.33663269877433777, -0.020971059799194336, 0.002718554809689522, 0.007391003891825676, -0.028924494981765747, 0.29040175676345825, 0.2159557342529297, -0.005225121974945068, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 6.6893, "q": [-0.31286048889160156, -0.013545051217079163, 0.015306936576962471, 0.6283526420593262, -0.3265340030193329, 0.021105842664837837, -0.3208286762237549, 0.03020237758755684, -0.014945355243980885, 0.6186032891273499, -0.33663269877433777, -0.020985601469874382, 0.002758730435743928, 0.007391003891825676, -0.028924494981765747, 0.2904137372970581, 0.2159557342529297, -0.005201153922826052, 0.9791951179504395, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008868326433002949]} +{"t": 6.706, "q": [-0.3128434419631958, -0.013553572818636894, 0.015320328995585442, 0.6283526420593262, -0.3265340030193329, 0.021105842664837837, -0.32080310583114624, 0.030193854123353958, -0.014931963756680489, 0.6186032891273499, -0.3366408944129944, -0.020985541865229607, 0.002718554809689522, 0.007398590445518494, -0.028909817337989807, 0.29040175676345825, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.7227, "q": [-0.31281790137290955, -0.013536527752876282, 0.015320328995585442, 0.6283100247383118, -0.3265257775783539, 0.02110590599477291, -0.32080310583114624, 0.03020237758755684, -0.014958747662603855, 0.618594765663147, -0.3366408944129944, -0.020985541865229607, 0.002731946762651205, 0.007444152608513832, -0.028890376910567284, 0.29042571783065796, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.7395, "q": [-0.31280937790870667, -0.013553572818636894, 0.015293545089662075, 0.6282674074172974, -0.3265257775783539, 0.02110590599477291, -0.320820152759552, 0.030193854123353958, -0.014945355243980885, 0.6185692548751831, -0.3366450071334839, -0.020963728427886963, 0.002718554809689522, 0.007436553947627544, -0.02888544835150242, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.7562, "q": [-0.31281790137290955, -0.013519484549760818, 0.015280152671039104, 0.628224790096283, -0.3265298902988434, 0.02109861932694912, -0.32080310583114624, 0.03020237758755684, -0.014931963756680489, 0.6185266375541687, -0.336649090051651, -0.020970961079001427, 0.002691771136596799, 0.00745173916220665, -0.028875699266791344, 0.2904376983642578, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.7731, "q": [-0.3128008544445038, -0.013510962948203087, 0.015253368765115738, 0.628224790096283, -0.3265340030193329, 0.021091332659125328, -0.320820152759552, 0.03020237758755684, -0.014945355243980885, 0.6184925436973572, -0.33663681149482727, -0.020978311076760292, 0.0027453387156128883, 0.007413770072162151, -0.02889026515185833, 0.2903897762298584, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04086620733141899, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.7898, "q": [-0.3128264248371124, -0.013502439484000206, 0.015266761183738708, 0.6281906962394714, -0.3265463709831238, 0.021083982661366463, -0.3208542466163635, 0.030193854123353958, -0.014931963756680489, 0.6184499263763428, -0.33665731549263, -0.020941857248544693, 0.002758730435743928, 0.007390991784632206, -0.028904886916279793, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.8066, "q": [-0.3128264248371124, -0.01346835121512413, 0.015239977277815342, 0.6281310319900513, -0.3265422582626343, 0.021091269329190254, -0.3209053874015808, 0.03020237758755684, -0.014958747662603855, 0.6183732151985168, -0.3366655111312866, -0.020941779017448425, 0.002691771136596799, 0.007421380374580622, -0.02891480177640915, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.8233, "q": [-0.3128434419631958, -0.013476874679327011, 0.015239977277815342, 0.6280969381332397, -0.3265340030193329, 0.021091332659125328, -0.3209139108657837, 0.030193854123353958, -0.014958747662603855, 0.6183391213417053, -0.3366655111312866, -0.020941779017448425, 0.002691771136596799, 0.007406201213598251, -0.028934353962540627, 0.2904616594314575, 0.21594375371932983, -0.00523710623383522, 0.9792070984840393, 0.15758058428764343, 0.06169478967785835, -0.04090216010808945, 0.29502764344215393, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.84, "q": [-0.31286901235580444, -0.01346835121512413, 0.015253368765115738, 0.628079891204834, -0.3265340030193329, 0.021091332659125328, -0.3209139108657837, 0.030193854123353958, -0.014931963756680489, 0.6183220744132996, -0.336665540933609, -0.02092725783586502, 0.002731946762651205, 0.007406201213598251, -0.028934353962540627, 0.2904616594314575, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008832373656332493]} +{"t": 6.8568, "q": [-0.3128434419631958, -0.013485396280884743, 0.015226585790514946, 0.6280202269554138, -0.3265381157398224, 0.021098555997014046, -0.3209053874015808, 0.030193854123353958, -0.014918571338057518, 0.6182794570922852, -0.3366655111312866, -0.020941779017448425, 0.002758730435743928, 0.007406207267194986, -0.02894415706396103, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.8736, "q": [-0.3128434419631958, -0.01346835121512413, 0.015239977277815342, 0.6279776692390442, -0.3265381157398224, 0.021098555997014046, -0.3209224343299866, 0.03020237758755684, -0.014918571338057518, 0.618219792842865, -0.33665731549263, -0.020941857248544693, 0.0027051628567278385, 0.007398608606308699, -0.028939226642251015, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15752065181732178, 0.0616828091442585, -0.04087819159030914, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 6.8903, "q": [-0.3128434419631958, -0.013459829613566399, 0.015239977277815342, 0.6279350519180298, -0.3265463709831238, 0.021098509430885315, -0.3209224343299866, 0.030185332521796227, -0.014945355243980885, 0.6181260943412781, -0.3366532027721405, -0.020949147641658783, 0.002718554809689522, 0.007383422926068306, -0.02894897572696209, 0.2904376983642578, 0.21596772968769073, -0.005201153922826052, 0.9791951179504395, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 6.9071, "q": [-0.3128434419631958, -0.013459829613566399, 0.015239977277815342, 0.6279009580612183, -0.3265381157398224, 0.021084045991301537, -0.3209139108657837, 0.030193854123353958, -0.014931963756680489, 0.6181175708770752, -0.3366532027721405, -0.020949147641658783, 0.002718554809689522, 0.007383422926068306, -0.02894897572696209, 0.29042571783065796, 0.21594375371932983, -0.0051891696639359, 0.9791951179504395, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.924, "q": [-0.3128519654273987, -0.013485396280884743, 0.015253368765115738, 0.6278839111328125, -0.3265422582626343, 0.021091269329190254, -0.3209139108657837, 0.030193854123353958, -0.014945355243980885, 0.6180238127708435, -0.336649090051651, -0.020941896364092827, 0.002758730435743928, 0.007391015999019146, -0.028944101184606552, 0.2904376983642578, 0.21593177318572998, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04086620733141899, 0.29503965377807617, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008868326433002949]} +{"t": 6.9407, "q": [-0.31286048889160156, -0.013502439484000206, 0.015226585790514946, 0.6278157234191895, -0.3265422582626343, 0.021105796098709106, -0.3209053874015808, 0.03020237758755684, -0.014918571338057518, 0.6179726719856262, -0.3366532027721405, -0.020949147641658783, 0.0027721223887056112, 0.007368231657892466, -0.028948919847607613, 0.2904376983642578, 0.21596772968769073, -0.005201153922826052, 0.9791830778121948, 0.15762852132320404, 0.06169478967785835, -0.040890175849199295, 0.29502764344215393, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 6.9575, "q": [-0.31286901235580444, -0.013493917882442474, 0.015253368765115738, 0.6277986764907837, -0.3265340030193329, 0.021105842664837837, -0.32087981700897217, 0.03020237758755684, -0.014918571338057518, 0.6179471015930176, -0.33665731549263, -0.020941857248544693, 0.002718554809689522, 0.007360639050602913, -0.028953792527318, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06169478967785835, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.9744, "q": [-0.31286901235580444, -0.013493917882442474, 0.015280152671039104, 0.6278157234191895, -0.3265381455421448, 0.021113082766532898, -0.32089686393737793, 0.03020237758755684, -0.014918571338057518, 0.6179300546646118, -0.3366655111312866, -0.020941779017448425, 0.002731946762651205, 0.007368226069957018, -0.02893911674618721, 0.29042571783065796, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.9911, "q": [-0.3128775358200073, -0.013510962948203087, 0.015266761183738708, 0.6277986764907837, -0.3265422582626343, 0.021076759323477745, -0.32083719968795776, 0.03021089918911457, -0.014931963756680489, 0.617913007736206, -0.33663269877433777, -0.021000124514102936, 0.0026382035575807095, 0.007368226069957018, -0.02893911674618721, 0.29040175676345825, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.1576644629240036, 0.0616828091442585, -0.0409141443669796, 0.29499170184135437, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18358634412288666, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.0078, "q": [-0.3128775358200073, -0.013519484549760818, 0.015280152671039104, 0.6277901530265808, -0.3265381455421448, 0.021113082766532898, -0.32079458236694336, 0.03020237758755684, -0.014958747662603855, 0.6178874373435974, -0.3366367816925049, -0.020992834120988846, 0.002691771136596799, 0.007368226069957018, -0.02893911674618721, 0.29040175676345825, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 7.0247, "q": [-0.3128519654273987, -0.013510962948203087, 0.015293545089662075, 0.6277986764907837, -0.3265381455421448, 0.021113082766532898, -0.32079458236694336, 0.03020237758755684, -0.014931963756680489, 0.6178789138793945, -0.3366367816925049, -0.020992834120988846, 0.002718554809689522, 0.007383393589407206, -0.028899958357214928, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023081617429852486, 0.9780685901641846, -0.18356238305568695, 0.05241899937391281, 0.0088803106918931]} +{"t": 7.0414, "q": [-0.31286048889160156, -0.01352800615131855, 0.015280152671039104, 0.6277986764907837, -0.3265340030193329, 0.021105842664837837, -0.32075196504592896, 0.03020237758755684, -0.014958747662603855, 0.6178874373435974, -0.3366367816925049, -0.020992834120988846, 0.002691771136596799, 0.007375794928520918, -0.028895027935504913, 0.29040175676345825, 0.2159557342529297, -0.0051891696639359, 0.9791830778121948, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.29499170184135437, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.0582, "q": [-0.3128519654273987, -0.01352800615131855, 0.015293545089662075, 0.6277986764907837, -0.3265298902988434, 0.02109861932694912, -0.32070085406303406, 0.03020237758755684, -0.014931963756680489, 0.6178874373435974, -0.3366367816925049, -0.020992834120988846, 0.002691771136596799, 0.007368178106844425, -0.02886068820953369, 0.2903897762298584, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.29499170184135437, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008868326433002949]} +{"t": 7.0749, "q": [-0.31276676058769226, -0.013510962948203087, 0.015293545089662075, 0.627773106098175, -0.3265381455421448, 0.021113082766532898, -0.32066676020622253, 0.03020237758755684, -0.014918571338057518, 0.6178789138793945, -0.3366367816925049, -0.020992834120988846, 0.002718554809689522, 0.007421315182000399, -0.028806963935494423, 0.2903897762298584, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04087819159030914, 0.2949797213077545, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.0916, "q": [-0.3127582371234894, -0.013519484549760818, 0.015293545089662075, 0.6277901530265808, -0.3265257775783539, 0.02110590599477291, -0.32065823674201965, 0.030193854123353958, -0.014945355243980885, 0.6179044842720032, -0.3366408944129944, -0.020956479012966156, 0.002718554809689522, 0.007451679557561874, -0.02877766452729702, 0.2903897762298584, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 7.1086, "q": [-0.3127411901950836, -0.013519484549760818, 0.015293545089662075, 0.6277901530265808, -0.3265298902988434, 0.02111312933266163, -0.32060709595680237, 0.03020237758755684, -0.014985531568527222, 0.6178959608078003, -0.33663269877433777, -0.020985601469874382, 0.002691771136596799, 0.007436482701450586, -0.02876780554652214, 0.29040175676345825, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.1253, "q": [-0.3127070963382721, -0.013510962948203087, 0.015280152671039104, 0.6277645826339722, -0.3265340030193329, 0.021091332659125328, -0.3205985724925995, 0.03021089918911457, -0.014985531568527222, 0.6179044842720032, -0.33663269877433777, -0.020985601469874382, 0.0027855143416672945, 0.007512426003813744, -0.02874847874045372, 0.29040175676345825, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.1835503876209259, 0.05243098363280296, 0.008844357915222645]} +{"t": 7.142, "q": [-0.31259632110595703, -0.013510962948203087, 0.015266761183738708, 0.627773106098175, -0.3265340030193329, 0.021105842664837837, -0.3204622268676758, 0.03021089918911457, -0.014998923055827618, 0.617913007736206, -0.33663681149482727, -0.020978311076760292, 0.002691771136596799, 0.007482043467462063, -0.028748366981744766, 0.2904137372970581, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15758058428764343, 0.061706773936748505, -0.04090216010808945, 0.2950036823749542, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008844357915222645]} +{"t": 7.1588, "q": [-0.3124769926071167, -0.013519484549760818, 0.015226585790514946, 0.6277645826339722, -0.3265340030193329, 0.021091332659125328, -0.32034292817115784, 0.030219420790672302, -0.015025706961750984, 0.617913007736206, -0.3366367816925049, -0.020963769406080246, 0.002691771136596799, 0.007520012557506561, -0.02873380109667778, 0.2904137372970581, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.1756, "q": [-0.31235769391059875, -0.013519484549760818, 0.015239977277815342, 0.6277560591697693, -0.3265381157398224, 0.021084045991301537, -0.32020655274391174, 0.03021089918911457, -0.014998923055827618, 0.617913007736206, -0.33663269877433777, -0.020971059799194336, 0.002691771136596799, 0.007504827342927456, -0.028743548318743706, 0.29042571783065796, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.1923, "q": [-0.31217020750045776, -0.013485396280884743, 0.015226585790514946, 0.6277645826339722, -0.3265340030193329, 0.021091332659125328, -0.320002019405365, 0.030227944254875183, -0.015025706961750984, 0.6179044842720032, -0.3366408944129944, -0.020956479012966156, 0.002691771136596799, 0.0074896421283483505, -0.02875329554080963, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.0409141443669796, 0.2950036823749542, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.209, "q": [-0.31203386187553406, -0.013459829613566399, 0.015226585790514946, 0.6277645826339722, -0.3265257775783539, 0.02110590599477291, -0.3198060393333435, 0.030236465856432915, -0.01505249086767435, 0.6179215312004089, -0.3366408944129944, -0.020956479012966156, 0.0027989062946289778, 0.00747445086017251, -0.028753241524100304, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.2258, "q": [-0.3118293285369873, -0.013459829613566399, 0.015173017978668213, 0.6277645826339722, -0.3265298902988434, 0.02108410932123661, -0.31959298253059387, 0.030244987457990646, -0.01503909844905138, 0.6179044842720032, -0.336649090051651, -0.020941896364092827, 0.002758730435743928, 0.007504815235733986, -0.0287239421159029, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.2425, "q": [-0.3116588890552521, -0.013451308012008667, 0.01519980188459158, 0.6277475357055664, -0.3265340030193329, 0.02107682265341282, -0.3194566071033478, 0.030236465856432915, -0.015079274773597717, 0.6178789138793945, -0.3366450071334839, -0.020963728427886963, 0.002758730435743928, 0.007512419950217009, -0.028738675639033318, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.2592, "q": [-0.31159070134162903, -0.013459829613566399, 0.015173017978668213, 0.6277475357055664, -0.3265381157398224, 0.021084045991301537, -0.3193202614784241, 0.030244987457990646, -0.015092666260898113, 0.6178703904151917, -0.3366450071334839, -0.020963728427886963, 0.0027989062946289778, 0.007520012557506561, -0.02873380109667778, 0.2904376983642578, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.276, "q": [-0.31153956055641174, -0.013451308012008667, 0.015132841654121876, 0.6277304887771606, -0.3265340030193329, 0.021091332659125328, -0.31927764415740967, 0.030244987457990646, -0.015079274773597717, 0.617844820022583, -0.336649090051651, -0.020970961079001427, 0.0027453387156128883, 0.007497228682041168, -0.02873861975967884, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.2927, "q": [-0.31153956055641174, -0.013451308012008667, 0.015132841654121876, 0.6277560591697693, -0.3265422582626343, 0.021091269329190254, -0.31924358010292053, 0.030244987457990646, -0.01505249086767435, 0.617844820022583, -0.3366532027721405, -0.020949147641658783, 0.0027453387156128883, 0.0074896421283483505, -0.02875329554080963, 0.29040175676345825, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29499170184135437, -0.22378143668174744, 0.023093601688742638, 0.9780685901641846, -0.18353840708732605, 0.05241899937391281, 0.008844357915222645]} +{"t": 7.3094, "q": [-0.3115480840206146, -0.013451308012008667, 0.015146234072744846, 0.6277560591697693, -0.3265340030193329, 0.021105842664837837, -0.31923505663871765, 0.030244987457990646, -0.015079274773597717, 0.6178277730941772, -0.33665731549263, -0.020956380292773247, 0.002731946762651205, 0.0074896300211548805, -0.028733689337968826, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023081617429852486, 0.9780685901641846, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.3261, "q": [-0.3114969730377197, -0.013451308012008667, 0.015132841654121876, 0.6277560591697693, -0.3265381157398224, 0.021084045991301537, -0.3192180097103119, 0.030236465856432915, -0.015079274773597717, 0.6178277730941772, -0.3366450071334839, -0.020963728427886963, 0.0027453387156128883, 0.007512426003813744, -0.02874847874045372, 0.2904736399650574, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04087819159030914, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835264265537262, 0.05243098363280296, 0.008868326433002949]} +{"t": 7.3428, "q": [-0.3114969730377197, -0.013459829613566399, 0.01511945016682148, 0.6277560591697693, -0.3265381157398224, 0.021084045991301537, -0.31920096278190613, 0.030236465856432915, -0.01505249086767435, 0.6178107857704163, -0.3366450071334839, -0.020963728427886963, 0.002624811604619026, 0.007466863840818405, -0.028767917305231094, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9791951179504395, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 7.3595, "q": [-0.3114628791809082, -0.013442784547805786, 0.015146234072744846, 0.6277560591697693, -0.3265381157398224, 0.021098555997014046, -0.31920096278190613, 0.030236465856432915, -0.015065882354974747, 0.6178022623062134, -0.3366408944129944, -0.020956479012966156, 0.002731946762651205, 0.007451679557561874, -0.02877766452729702, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.06169478967785835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835503876209259, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.3763, "q": [-0.3115054965019226, -0.01346835121512413, 0.015146234072744846, 0.6277475357055664, -0.3265381157398224, 0.021098555997014046, -0.319209486246109, 0.030219420790672302, -0.01503909844905138, 0.6177511215209961, -0.3366450071334839, -0.020963728427886963, 0.002758730435743928, 0.0074592712335288525, -0.028772791847586632, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008844357915222645]} +{"t": 7.393, "q": [-0.3115054965019226, -0.01346835121512413, 0.015146234072744846, 0.6277475357055664, -0.3265381455421448, 0.021113082766532898, -0.31920096278190613, 0.030219420790672302, -0.015079274773597717, 0.6177170276641846, -0.3366532027721405, -0.020949147641658783, 0.0027855143416672945, 0.007474462501704693, -0.02877284772694111, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04092612862586975, 0.29502764344215393, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 7.4097, "q": [-0.31153103709220886, -0.013476874679327011, 0.015132841654121876, 0.6277475357055664, -0.3265422582626343, 0.021105796098709106, -0.31919243931770325, 0.030219420790672302, -0.015092666260898113, 0.6176658868789673, -0.33665731549263, -0.020956380292773247, 0.002718554809689522, 0.007451679557561874, -0.02877766452729702, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008844357915222645]} +{"t": 7.4264, "q": [-0.31153103709220886, -0.013459829613566399, 0.01511945016682148, 0.6277390122413635, -0.3265463709831238, 0.021113019436597824, -0.31920096278190613, 0.030219420790672302, -0.015092666260898113, 0.6176317930221558, -0.3366450071334839, -0.020949188619852066, 0.002718554809689522, 0.007428901735693216, -0.028792286291718483, 0.29042571783065796, 0.2159557342529297, -0.005201153922826052, 0.9791951179504395, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.2237934172153473, 0.023069633170962334, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.4432, "q": [-0.3115651309490204, -0.013451308012008667, 0.015106058679521084, 0.6277304887771606, -0.3265463709831238, 0.021098509430885315, -0.319209486246109, 0.030227944254875183, -0.015092666260898113, 0.6175891757011414, -0.3366532027721405, -0.020949147641658783, 0.0026783791836351156, 0.007451691664755344, -0.028797272592782974, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.040890175849199295, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.4599, "q": [-0.31157365441322327, -0.013459829613566399, 0.015092666260898113, 0.6277304887771606, -0.3265422582626343, 0.021105796098709106, -0.31920096278190613, 0.030219420790672302, -0.015079274773597717, 0.6175550818443298, -0.3366532027721405, -0.020949147641658783, 0.002718554809689522, 0.007451679557561874, -0.02877766452729702, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.4768, "q": [-0.3115566074848175, -0.01346835121512413, 0.015092666260898113, 0.6277134418487549, -0.3265463709831238, 0.021098509430885315, -0.31920096278190613, 0.030227944254875183, -0.015106058679521084, 0.6174954175949097, -0.33665731549263, -0.020956380292773247, 0.002691771136596799, 0.007436494342982769, -0.028787413612008095, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.4935, "q": [-0.3115651309490204, -0.013485396280884743, 0.015092666260898113, 0.6276793479919434, -0.3265504837036133, 0.021105732768774033, -0.31920096278190613, 0.030219420790672302, -0.015079274773597717, 0.6174954175949097, -0.3366532027721405, -0.020949147641658783, 0.002691771136596799, 0.007436494342982769, -0.028787413612008095, 0.2904376983642578, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.5103, "q": [-0.3115992248058319, -0.01346835121512413, 0.015106058679521084, 0.6276793479919434, -0.3265422582626343, 0.021105796098709106, -0.31920096278190613, 0.030227944254875183, -0.015079274773597717, 0.6174954175949097, -0.336649090051651, -0.020941896364092827, 0.002758730435743928, 0.007444086950272322, -0.028782539069652557, 0.29042571783065796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 7.527, "q": [-0.31159070134162903, -0.013476874679327011, 0.015092666260898113, 0.6276878714561462, -0.3265422582626343, 0.021120306104421616, -0.31920096278190613, 0.030227944254875183, -0.015079274773597717, 0.6174613237380981, -0.3366532027721405, -0.020949147641658783, 0.0026783791836351156, 0.007444086950272322, -0.028782539069652557, 0.2903897762298584, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.5437, "q": [-0.31159070134162903, -0.013451308012008667, 0.015106058679521084, 0.6276793479919434, -0.3265422582626343, 0.021120306104421616, -0.319209486246109, 0.030236465856432915, -0.015106058679521084, 0.6174442768096924, -0.336649090051651, -0.020941896364092827, 0.0027453387156128883, 0.007436494342982769, -0.028787413612008095, 0.29040175676345825, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29499170184135437, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008868326433002949]} +{"t": 7.5606, "q": [-0.31159070134162903, -0.01346835121512413, 0.015106058679521084, 0.6276793479919434, -0.3265381455421448, 0.021113082766532898, -0.3191668689250946, 0.030227944254875183, -0.01511945016682148, 0.6174358129501343, -0.3366532027721405, -0.020949147641658783, 0.002691771136596799, 0.007413704413920641, -0.028782427310943604, 0.2903897762298584, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15760454535484314, 0.06167082488536835, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 7.5773, "q": [-0.31159070134162903, -0.01346835121512413, 0.015106058679521084, 0.6276708245277405, -0.3265463709831238, 0.021098509430885315, -0.31914129853248596, 0.030227944254875183, -0.01511945016682148, 0.6174358129501343, -0.33665731549263, -0.020941857248544693, 0.0026783791836351156, 0.007421297021210194, -0.028777554631233215, 0.2904137372970581, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008844357915222645]} +{"t": 7.594, "q": [-0.31157365441322327, -0.013451308012008667, 0.01511945016682148, 0.6276708245277405, -0.3265381455421448, 0.021113082766532898, -0.31914129853248596, 0.030236465856432915, -0.01511945016682148, 0.6174358129501343, -0.3366532027721405, -0.020949147641658783, 0.002691771136596799, 0.007444086950272322, -0.028782539069652557, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008844357915222645]} +{"t": 7.6109, "q": [-0.3115651309490204, -0.013485396280884743, 0.01511945016682148, 0.6276623010635376, -0.3265422582626343, 0.021105796098709106, -0.31914129853248596, 0.030236465856432915, -0.01511945016682148, 0.6174358129501343, -0.3366532027721405, -0.020949147641658783, 0.0026649872306734324, 0.007428890094161034, -0.028772680088877678, 0.29040175676345825, 0.21596772968769073, -0.005225121974945068, 0.9791830778121948, 0.15760454535484314, 0.06167082488536835, -0.040890175849199295, 0.2950036823749542, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 7.6277, "q": [-0.3115651309490204, -0.013459829613566399, 0.01511945016682148, 0.6276623010635376, -0.3265340030193329, 0.02112036943435669, -0.3191327750682831, 0.030219420790672302, -0.015132841654121876, 0.6174528002738953, -0.336649090051651, -0.020941896364092827, 0.0027453387156128883, 0.0074592651799321175, -0.02876298874616623, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 7.6444, "q": [-0.3115651309490204, -0.013485396280884743, 0.015106058679521084, 0.6276623010635376, -0.3265381455421448, 0.021113082766532898, -0.3190816342830658, 0.030244987457990646, -0.015092666260898113, 0.6174358129501343, -0.3366532027721405, -0.020949147641658783, 0.002691771136596799, 0.007474456448107958, -0.028763044625520706, 0.29042571783065796, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 7.6611, "q": [-0.31153103709220886, -0.013476874679327011, 0.015092666260898113, 0.6276878714561462, -0.3265340030193329, 0.021105842664837837, -0.31901347637176514, 0.03026203252375126, -0.015186409465968609, 0.6174613237380981, -0.3366408944129944, -0.020956479012966156, 0.002691771136596799, 0.0074592651799321175, -0.02876298874616623, 0.2904137372970581, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 7.6778, "q": [-0.3114714026451111, -0.013493917882442474, 0.015092666260898113, 0.6276878714561462, -0.3265381455421448, 0.021113082766532898, -0.31891971826553345, 0.030253509059548378, -0.015186409465968609, 0.6174783706665039, -0.3366450071334839, -0.020963728427886963, 0.002731946762651205, 0.007436482701450586, -0.02876780554652214, 0.29042571783065796, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.0409141443669796, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.6946, "q": [-0.31140321493148804, -0.01346835121512413, 0.015079274773597717, 0.6276963949203491, -0.3265340030193329, 0.021091332659125328, -0.3188430368900299, 0.030244987457990646, -0.01519980188459158, 0.6174442768096924, -0.336649090051651, -0.020941896364092827, 0.002691771136596799, 0.00747445086017251, -0.028753241524100304, 0.2904376983642578, 0.2159797102212906, -0.005225121974945068, 0.9791830778121948, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008832373656332493]} +{"t": 7.7113, "q": [-0.31135207414627075, -0.013459829613566399, 0.01503909844905138, 0.6276963949203491, -0.3265422582626343, 0.021105796098709106, -0.31878337264060974, 0.030244987457990646, -0.01519980188459158, 0.6174868941307068, -0.33663681149482727, -0.020949246361851692, 0.002691771136596799, 0.0074668521992862225, -0.02874831110239029, 0.2904137372970581, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.061658840626478195, -0.04087819159030914, 0.2950036823749542, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.728, "q": [-0.31134355068206787, -0.01346835121512413, 0.01503909844905138, 0.627704918384552, -0.3265381455421448, 0.021113082766532898, -0.31873223185539246, 0.030244987457990646, -0.01519980188459158, 0.6174783706665039, -0.33663681149482727, -0.020949246361851692, 0.002718554809689522, 0.00745166651904583, -0.028758058324456215, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15760454535484314, 0.0616828091442585, -0.0409141443669796, 0.2950036823749542, -0.22380541265010834, 0.023069633170962334, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.745, "q": [-0.31126686930656433, -0.013451308012008667, 0.01505249086767435, 0.6277134418487549, -0.3265340030193329, 0.021091332659125328, -0.3186555504798889, 0.030253509059548378, -0.015213193371891975, 0.6174783706665039, -0.33663681149482727, -0.020978311076760292, 0.002691771136596799, 0.0074668521992862225, -0.02874831110239029, 0.2904137372970581, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.7617, "q": [-0.3112412989139557, -0.013459829613566399, 0.01505249086767435, 0.627704918384552, -0.3265381455421448, 0.021113082766532898, -0.3186555504798889, 0.030244987457990646, -0.015226585790514946, 0.6174783706665039, -0.3366450071334839, -0.020963728427886963, 0.0026649872306734324, 0.0074896421283483505, -0.02875329554080963, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.7784, "q": [-0.3112327754497528, -0.013459829613566399, 0.015025706961750984, 0.627704918384552, -0.3265422582626343, 0.021105796098709106, -0.3186555504798889, 0.030244987457990646, -0.015226585790514946, 0.617469847202301, -0.336649090051651, -0.020970961079001427, 0.002691771136596799, 0.00747445086017251, -0.028753241524100304, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.04087819159030914, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008844357915222645]} +{"t": 7.7952, "q": [-0.3112412989139557, -0.013451308012008667, 0.015025706961750984, 0.6276963949203491, -0.3265381157398224, 0.021098555997014046, -0.3186555504798889, 0.030244987457990646, -0.015226585790514946, 0.617469847202301, -0.3366408944129944, -0.020956479012966156, 0.002718554809689522, 0.0074668521992862225, -0.02874831110239029, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.8119, "q": [-0.31126686930656433, -0.013451308012008667, 0.015025706961750984, 0.627704918384552, -0.3265504837036133, 0.02107669599354267, -0.31868109107017517, 0.030244987457990646, -0.015226585790514946, 0.617469847202301, -0.3366408944129944, -0.020971018821001053, 0.0027453387156128883, 0.007504821289330721, -0.028733745217323303, 0.2904616594314575, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780685901641846, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.8288, "q": [-0.3112839162349701, -0.013451308012008667, 0.015025706961750984, 0.6277134418487549, -0.3265381157398224, 0.021098555997014046, -0.31868109107017517, 0.030244987457990646, -0.015226585790514946, 0.6174613237380981, -0.3366450071334839, -0.020963728427886963, 0.002731946762651205, 0.007444067858159542, -0.02875312976539135, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780685901641846, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.8456, "q": [-0.31125834584236145, -0.013451308012008667, 0.015012315474450588, 0.627704918384552, -0.3265381157398224, 0.021098555997014046, -0.3187066614627838, 0.030244987457990646, -0.015213193371891975, 0.6174528002738953, -0.33663681149482727, -0.020949246361851692, 0.002731946762651205, 0.007451679557561874, -0.02877766452729702, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.8623, "q": [-0.31126686930656433, -0.01346835121512413, 0.015012315474450588, 0.627704918384552, -0.3265463709831238, 0.021098509430885315, -0.31868109107017517, 0.030244987457990646, -0.015213193371891975, 0.617469847202301, -0.3366408944129944, -0.020956479012966156, 0.002731946762651205, 0.007444086950272322, -0.028782539069652557, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 7.879, "q": [-0.31126686930656433, -0.013442784547805786, 0.015012315474450588, 0.627704918384552, -0.3265422582626343, 0.021105796098709106, -0.31868961453437805, 0.030244987457990646, -0.01519980188459158, 0.6174613237380981, -0.3366408944129944, -0.020956479012966156, 0.002731946762651205, 0.007451679557561874, -0.02877766452729702, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.8958, "q": [-0.31126686930656433, -0.01346835121512413, 0.015012315474450588, 0.6277219653129578, -0.3265298902988434, 0.02109861932694912, -0.31868961453437805, 0.030253509059548378, -0.015226585790514946, 0.6174954175949097, -0.3366450071334839, -0.020963728427886963, 0.002691771136596799, 0.007428895682096481, -0.02878248319029808, 0.29044967889785767, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.9126, "q": [-0.31125834584236145, -0.013451308012008667, 0.015025706961750984, 0.627704918384552, -0.3265298902988434, 0.02111312933266163, -0.3186640739440918, 0.030253509059548378, -0.01519980188459158, 0.617469847202301, -0.3366367816925049, -0.020963769406080246, 0.002691771136596799, 0.007421309128403664, -0.02879716083407402, 0.2904376983642578, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04087819159030914, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008868326433002949]} +{"t": 7.9293, "q": [-0.31126686930656433, -0.013459829613566399, 0.01503909844905138, 0.6277304887771606, -0.3265340030193329, 0.021105842664837837, -0.31864702701568604, 0.03027055412530899, -0.01519980188459158, 0.6174954175949097, -0.33662447333335876, -0.020985642448067665, 0.002691771136596799, 0.007413704413920641, -0.028782427310943604, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 7.946, "q": [-0.31126686930656433, -0.01346835121512413, 0.015065882354974747, 0.6277219653129578, -0.3265381455421448, 0.021113082766532898, -0.3186299800872803, 0.03027055412530899, -0.01519980188459158, 0.6174868941307068, -0.33662036061286926, -0.020992949604988098, 0.002731946762651205, 0.007406105753034353, -0.02877749875187874, 0.2904137372970581, 0.2159797102212906, -0.005201153922826052, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023069633170962334, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 7.9627, "q": [-0.31124982237815857, -0.01346835121512413, 0.015065882354974747, 0.6277304887771606, -0.3265463709831238, 0.021098509430885315, -0.3186299800872803, 0.03026203252375126, -0.01519980188459158, 0.6174868941307068, -0.33662858605384827, -0.020992891862988472, 0.0027453387156128883, 0.007413692772388458, -0.0287628211081028, 0.2904376983642578, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.1576405018568039, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 7.9795, "q": [-0.31125834584236145, -0.01346835121512413, 0.015079274773597717, 0.6277560591697693, -0.3265340030193329, 0.021105842664837837, -0.3186299800872803, 0.03026203252375126, -0.01519980188459158, 0.617469847202301, -0.33661627769470215, -0.020971177145838737, 0.002758730435743928, 0.007390908896923065, -0.02876763977110386, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 7.9962, "q": [-0.31124982237815857, -0.013476874679327011, 0.015079274773597717, 0.6277645826339722, -0.3265422582626343, 0.021105796098709106, -0.31858736276626587, 0.030253509059548378, -0.015213193371891975, 0.6174954175949097, -0.33662447333335876, -0.020985642448067665, 0.002718554809689522, 0.007398495450615883, -0.02875296212732792, 0.29040175676345825, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15765248239040375, 0.06167082488536835, -0.04090216010808945, 0.29502764344215393, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05240701511502266, 0.008844357915222645]} +{"t": 8.0129, "q": [-0.3112327754497528, -0.01346835121512413, 0.015079274773597717, 0.627773106098175, -0.3265340030193329, 0.021105842664837837, -0.3185703158378601, 0.030279075726866722, -0.015226585790514946, 0.6174868941307068, -0.33662039041519165, -0.0209784097969532, 0.002691771136596799, 0.007398495450615883, -0.02875296212732792, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.1576405018568039, 0.0616828091442585, -0.0409381128847599, 0.2950036823749542, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008856342174112797]} +{"t": 8.0299, "q": [-0.3112327754497528, -0.01346835121512413, 0.015106058679521084, 0.6277645826339722, -0.3265340030193329, 0.021105842664837837, -0.318578839302063, 0.03027055412530899, -0.01519980188459158, 0.6174868941307068, -0.33661627769470215, -0.020971177145838737, 0.0026783791836351156, 0.00746682845056057, -0.02870909683406353, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052395034581422806, 0.008844357915222645]} +{"t": 8.0469, "q": [-0.3112412989139557, -0.01346835121512413, 0.015079274773597717, 0.6277645826339722, -0.3265381157398224, 0.021098555997014046, -0.31854474544525146, 0.03026203252375126, -0.015253368765115738, 0.617469847202301, -0.33662039041519165, -0.0209784097969532, 0.002691771136596799, 0.00745923537760973, -0.028713971376419067, 0.2903897762298584, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} diff --git a/Camera_Recorder/DataG1/bird.jsonl b/Camera_Recorder/DataG1/bird.jsonl new file mode 100644 index 0000000..97a01c9 --- /dev/null +++ b/Camera_Recorder/DataG1/bird.jsonl @@ -0,0 +1,1051 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.3479716181755066, -0.011644618585705757, 0.005155880004167557, 0.6285741925239563, -0.3162897527217865, 0.015583221800625324, -0.38725003600120544, 0.0005113269435241818, -0.00483447453007102, 0.6020533442497253, -0.2821338474750519, -9.098838199861348e-05, 0.0026649872306734324, 0.005223850253969431, -0.04208042845129967, 0.2891673743724823, 0.2220437228679657, -0.005117264110594988, 0.980141818523407, 0.14554841816425323, 0.04054263234138489, -0.061347249895334244, 0.2941887676715851, -0.22290658950805664, 0.02281796559691429, 0.9774333834648132, -0.17528127133846283, 0.07061105221509933, 0.024052340537309647]} +{"t": 0.0169, "q": [-0.34795457124710083, -0.011636096984148026, 0.00512909609824419, 0.6285400986671448, -0.3162360191345215, 0.015663331374526024, -0.3872756063938141, 0.000502804818097502, -0.00483447453007102, 0.60199373960495, -0.28214210271835327, -0.00010539558570599183, 0.003361365757882595, 0.005376083310693502, -0.04246625676751137, 0.28800490498542786, 0.2198745757341385, -0.00490154791623354, 0.9816758036613464, 0.14545254409313202, 0.04084223881363869, -0.06162288784980774, 0.29374533891677856, -0.22163626551628113, 0.02310558594763279, 0.9782363772392273, -0.1753891408443451, 0.07113835960626602, 0.024112261831760406]} +{"t": 0.0337, "q": [-0.3479716181755066, -0.011687229387462139, 0.00516927195712924, 0.6285400986671448, -0.3162360191345215, 0.015648813918232918, -0.3873097002506256, 0.000502804818097502, -0.004847866017371416, 0.6020362973213196, -0.2821338474750519, -9.098838199861348e-05, 0.003696163184940815, 0.005315353628247976, -0.042713116854429245, 0.28715401887893677, 0.217873215675354, -0.004577973857522011, 0.982970118522644, 0.14548850059509277, 0.04127367213368416, -0.061838600784540176, 0.2929903268814087, -0.2202940285205841, 0.02323741279542446, 0.9794228076934814, -0.17540112137794495, 0.07171360403299332, 0.024172183126211166]} +{"t": 0.0505, "q": [-0.3479716181755066, -0.011653141118586063, 0.005182663444429636, 0.6285400986671448, -0.31632286310195923, 0.015495986677706242, -0.3873182237148285, 0.0004857605672441423, -0.004807690624147654, 0.6020533442497253, -0.2821338474750519, -9.098838199861348e-05, 0.0038300822488963604, 0.005429505370557308, -0.04292595386505127, 0.2865188717842102, 0.2157520055770874, -0.004757737275213003, 0.9834974408149719, 0.14557237923145294, 0.041309624910354614, -0.06199439615011215, 0.2923072278499603, -0.21820877492427826, 0.02353701926767826, 0.9803215861320496, -0.17542508244514465, 0.07207313179969788, 0.024172183126211166]} +{"t": 0.0673, "q": [-0.3479801416397095, -0.011653141118586063, 0.005236231256276369, 0.6285400986671448, -0.3162815272808075, 0.015568753704428673, -0.38733527064323425, 0.00046871634549461305, -0.004847866017371416, 0.6020362973213196, -0.2821338474750519, -9.098838199861348e-05, 0.0038300822488963604, 0.00567290373146534, -0.04308485612273216, 0.28606346249580383, 0.2123604714870453, -0.005117264110594988, 0.983797013759613, 0.14545254409313202, 0.041321609169244766, -0.06221011281013489, 0.29160016775131226, -0.2157280445098877, 0.02394448220729828, 0.9810166954994202, -0.1754370778799057, 0.07232479751110077, 0.02424408681690693]} +{"t": 0.0842, "q": [-0.3479290008544922, -0.011678706854581833, 0.005236231256276369, 0.6285486221313477, -0.3162236213684082, 0.015685157850384712, -0.3872756063938141, 0.000502804818097502, -0.00479429867118597, 0.6020448207855225, -0.2821296453475952, -9.823574509937316e-05, 0.0038300822488963604, 0.005764226894825697, -0.04325314983725548, 0.2857039272785187, 0.20894496142864227, -0.005320996046066284, 0.9838929176330566, 0.14553643763065338, 0.04133359342813492, -0.06238987669348717, 0.29088112711906433, -0.2131034880876541, 0.02449575625360012, 0.9817237854003906, -0.17547301948070526, 0.07255250215530396, 0.024280039593577385]} +{"t": 0.1009, "q": [-0.34794604778289795, -0.011644618585705757, 0.005196055397391319, 0.6285400986671448, -0.3163352310657501, 0.015503180213272572, -0.38729265332221985, 0.000502804818097502, -0.004807690624147654, 0.6020022630691528, -0.28214210271835327, -0.00010539558570599183, 0.003816690295934677, 0.006007606163620949, -0.04337251931428909, 0.2853923439979553, 0.2057931125164032, -0.005404885392636061, 0.983940839767456, 0.14551246166229248, 0.04133359342813492, -0.06247376650571823, 0.29032984375953674, -0.21110212802886963, 0.024999093264341354, 0.9823229908943176, -0.17544905841350555, 0.07263638824224472, 0.024292023852467537]} +{"t": 0.1176, "q": [-0.34790343046188354, -0.011653141118586063, 0.005196055397391319, 0.6285571455955505, -0.3163393437862396, 0.015510405413806438, -0.38725003600120544, 0.000502804818097502, -0.004847866017371416, 0.6020277738571167, -0.28214216232299805, -9.095356654142961e-05, 0.0038434739690274, 0.006045674905180931, -0.04348628595471382, 0.28511670231819153, 0.2033722996711731, -0.0054887752048671246, 0.9839767813682556, 0.14550048112869263, 0.04133359342813492, -0.062557652592659, 0.28995832800865173, -0.20967599749565125, 0.025502432137727737, 0.982742428779602, -0.17549699544906616, 0.07270829379558563, 0.02431599237024784]} +{"t": 0.1345, "q": [-0.3478863835334778, -0.011670185253024101, 0.0052094473503530025, 0.6285315752029419, -0.31633108854293823, 0.015524954535067081, -0.3872670829296112, 0.000502804818097502, -0.004847866017371416, 0.6020192503929138, -0.28214210271835327, -0.00010539558570599183, 0.0038300822488963604, 0.006106516346335411, -0.04350624606013298, 0.2849009931087494, 0.20153871178627014, -0.005584648810327053, 0.9840007424354553, 0.14550048112869263, 0.04129764065146446, -0.06261757761240005, 0.28968268632888794, -0.20864535868167877, 0.025802036747336388, 0.9829940795898438, -0.1754610389471054, 0.07270829379558563, 0.024327976629137993]} +{"t": 0.1512, "q": [-0.34790343046188354, -0.011678706854581833, 0.005196055397391319, 0.6285400986671448, -0.31632697582244873, 0.015503229573369026, -0.38729265332221985, 0.000502804818097502, -0.004888041876256466, 0.6020277738571167, -0.28214210271835327, -0.00010539558570599183, 0.0038300822488963604, 0.006106516346335411, -0.04350624606013298, 0.28478115797042847, 0.2001485526561737, -0.005584648810327053, 0.9840726852416992, 0.14554841816425323, 0.041321609169244766, -0.06259360909461975, 0.28961077332496643, -0.2079143226146698, 0.02593386359512806, 0.983197808265686, -0.17550897598266602, 0.07272028177976608, 0.024327976629137993]} +{"t": 0.1679, "q": [-0.34790343046188354, -0.011670185253024101, 0.005196055397391319, 0.6285315752029419, -0.31632697582244873, 0.01551773026585579, -0.3872756063938141, 0.000502804818097502, -0.00483447453007102, 0.6020618677139282, -0.28214210271835327, -0.00010539558570599183, 0.003816690295934677, 0.006091312039643526, -0.04351608082652092, 0.2847212255001068, 0.1989021897315979, -0.0055367122404277325, 0.9840846657752991, 0.14550048112869263, 0.041321609169244766, -0.0626055896282196, 0.28962278366088867, -0.2073630541563034, 0.02606569044291973, 0.9834015369415283, -0.17549699544906616, 0.07275623083114624, 0.024327976629137993]} +{"t": 0.1847, "q": [-0.34790343046188354, -0.011653141118586063, 0.0052094473503530025, 0.6285315752029419, -0.31631872057914734, 0.015517779625952244, -0.3872756063938141, 0.0004942826926708221, -0.0049148257821798325, 0.6020618677139282, -0.2821338474750519, -9.098838199861348e-05, 0.0038300822488963604, 0.006060895975679159, -0.04351598396897316, 0.2847451865673065, 0.19784757494926453, -0.0055247279815375805, 0.9840846657752991, 0.14551246166229248, 0.04133359342813492, -0.06261757761240005, 0.28962278366088867, -0.20693162083625793, 0.026089658960700035, 0.9836891889572144, -0.17544905841350555, 0.07276821881532669, 0.024327976629137993]} +{"t": 0.2014, "q": [-0.34789490699768066, -0.011644618585705757, 0.005196055397391319, 0.628523051738739, -0.31632286310195923, 0.015495986677706242, -0.38734379410743713, 0.000502804818097502, -0.004941609688103199, 0.6020703911781311, -0.282137930393219, -0.00011264294880675152, 0.0038702578749507666, 0.0060304878279566765, -0.04353564977645874, 0.2847451865673065, 0.19674502313137054, -0.0055247279815375805, 0.9840846657752991, 0.14553643763065338, 0.04134557768702507, -0.0626055896282196, 0.28961077332496643, -0.20647621154785156, 0.026101643219590187, 0.9840127229690552, -0.17553295195102692, 0.0728401243686676, 0.02431599237024784]} +{"t": 0.2181, "q": [-0.3479204773902893, -0.011627575382590294, 0.00516927195712924, 0.6285315752029419, -0.3163146376609802, 0.01549603696912527, -0.38732674717903137, 0.000502804818097502, -0.004928217735141516, 0.6020959615707397, -0.28214210271835327, -0.00010539558570599183, 0.0038300822488963604, 0.006030475255101919, -0.04350600391626358, 0.2847451865673065, 0.19584621489048004, -0.0055486964993178844, 0.9840966463088989, 0.14553643763065338, 0.04134557768702507, -0.06264154613018036, 0.2896347641944885, -0.20596089959144592, 0.026101643219590187, 0.9842044711112976, -0.17550897598266602, 0.07285210490226746, 0.02431599237024784]} +{"t": 0.2349, "q": [-0.3479801416397095, -0.01160200871527195, 0.005115704145282507, 0.6285400986671448, -0.31637659668922424, 0.015415913425385952, -0.38738641142845154, 0.0005454153870232403, -0.004847866017371416, 0.6020703911781311, -0.28214627504348755, -9.814822260523215e-05, 0.0038434739690274, 0.006030475255101919, -0.04350600391626358, 0.2847451865673065, 0.1953308880329132, -0.0055486964993178844, 0.9841086268424988, 0.14552444219589233, 0.04133359342813492, -0.06265352666378021, 0.2896347641944885, -0.2055174857378006, 0.026137595996260643, 0.9843482971191406, -0.17544905841350555, 0.0728640928864479, 0.024339960888028145]} +{"t": 0.2516, "q": [-0.3479801416397095, -0.011584963649511337, 0.005075528286397457, 0.6285315752029419, -0.31636008620262146, 0.015430495142936707, -0.38735231757164, 0.0005113269435241818, -0.004888041876256466, 0.6020959615707397, -0.28214627504348755, -9.814822260523215e-05, 0.0038568659219890833, 0.006053285673260689, -0.04350113496184349, 0.2847212255001068, 0.19507922232151031, -0.005560680292546749, 0.9841206073760986, 0.14554841816425323, 0.041321609169244766, -0.06266551464796066, 0.28962278366088867, -0.20502611994743347, 0.026137595996260643, 0.9844081997871399, -0.1754370778799057, 0.0728401243686676, 0.02431599237024784]} +{"t": 0.2683, "q": [-0.3479716181755066, -0.011584963649511337, 0.005048744846135378, 0.6285315752029419, -0.3163600564002991, 0.015445012599229813, -0.3873693645000458, 0.0005113269435241818, -0.00483447453007102, 0.6020959615707397, -0.28215041756629944, -0.00010534287139307708, 0.0038702578749507666, 0.006007677875459194, -0.04354051873087883, 0.2847212255001068, 0.1950312852859497, -0.0055247279815375805, 0.9841445684432983, 0.14547650516033173, 0.04135756194591522, -0.06266551464796066, 0.28961077332496643, -0.2046665996313095, 0.026161564514040947, 0.9844681620597839, -0.17544905841350555, 0.0728401243686676, 0.02431599237024784]} +{"t": 0.285, "q": [-0.3479716181755066, -0.011584963649511337, 0.005075528286397457, 0.6285315752029419, -0.3163518011569977, 0.01544504426419735, -0.38742899894714355, 0.0005454153870232403, -0.004807690624147654, 0.6020703911781311, -0.28214624524116516, -0.00011259023449383676, 0.0038434739690274, 0.006068510469049215, -0.04354071244597435, 0.2847212255001068, 0.19509120285511017, -0.0055247279815375805, 0.9841445684432983, 0.14544056355953217, 0.04134557768702507, -0.06266551464796066, 0.28962278366088867, -0.20439095795154572, 0.026149580255150795, 0.9844921231269836, -0.17544905841350555, 0.07282813638448715, 0.02431599237024784]} +{"t": 0.302, "q": [-0.34799718856811523, -0.011584963649511337, 0.005075528286397457, 0.628523051738739, -0.31637248396873474, 0.015423187986016273, -0.38743752241134644, 0.0005198490689508617, -0.004700555466115475, 0.6020618677139282, -0.2821504771709442, -9.090085950447246e-05, 0.0038568659219890833, 0.006083718501031399, -0.04354076460003853, 0.28470924496650696, 0.19512715935707092, -0.005476790945976973, 0.9841325879096985, 0.14552444219589233, 0.04134557768702507, -0.06268948316574097, 0.2895987927913666, -0.20412731170654297, 0.0261735487729311, 0.9845160841941833, -0.1754850149154663, 0.0728401243686676, 0.02431599237024784]} +{"t": 0.3187, "q": [-0.34799718856811523, -0.011584963649511337, 0.00508892023935914, 0.628523051738739, -0.31636834144592285, 0.015430462546646595, -0.3874630928039551, 0.0005283711361698806, -0.004713947419077158, 0.6020703911781311, -0.28214210271835327, -0.00010539558570599183, 0.0038970415480434895, 0.006076112389564514, -0.04353579878807068, 0.2847212255001068, 0.19511516392230988, -0.005452822428196669, 0.9841445684432983, 0.14554841816425323, 0.04135756194591522, -0.06270146369934082, 0.2895987927913666, -0.20389960706233978, 0.026197517290711403, 0.9845520257949829, -0.1754850149154663, 0.07288806140422821, 0.02431599237024784]} +{"t": 0.3354, "q": [-0.34803980588912964, -0.011593486182391644, 0.00508892023935914, 0.628523051738739, -0.3163641691207886, 0.01545223779976368, -0.38751423358917236, 0.0005113269435241818, -0.004687163513153791, 0.6020703911781311, -0.28214627504348755, -9.814822260523215e-05, 0.0038970415480434895, 0.006022894289344549, -0.04356033354997635, 0.2847451865673065, 0.19510318338871002, -0.005464806687086821, 0.984168529510498, 0.14552444219589233, 0.041369546204805374, -0.06268948316574097, 0.2896467447280884, -0.20373183488845825, 0.026221483945846558, 0.9845759868621826, -0.17552095651626587, 0.07288806140422821, 0.024327976629137993]} +{"t": 0.3523, "q": [-0.34803128242492676, -0.01160200871527195, 0.005075528286397457, 0.628523051738739, -0.31637245416641235, 0.015437687747180462, -0.38751423358917236, 0.0005198490689508617, -0.004740730859339237, 0.6020703911781311, -0.28214627504348755, -9.814822260523215e-05, 0.0038434739690274, 0.006038093939423561, -0.04354061558842659, 0.2847212255001068, 0.19509120285511017, -0.005476790945976973, 0.9841805100440979, 0.14553643763065338, 0.04139351472258568, -0.06270146369934082, 0.2896347641944885, -0.20354008674621582, 0.026221483945846558, 0.9846359491348267, -0.17555691301822662, 0.07295996695756912, 0.02430400811135769]} +{"t": 0.369, "q": [-0.3480483293533325, -0.01160200871527195, 0.005102312192320824, 0.6285400986671448, -0.3163600265979767, 0.01547401212155819, -0.38751423358917236, 0.0005454153870232403, -0.00479429867118597, 0.6020703911781311, -0.2821504771709442, -9.090085950447246e-05, 0.0038568659219890833, 0.006022885907441378, -0.04354056715965271, 0.2847212255001068, 0.19509120285511017, -0.005476790945976973, 0.9841805100440979, 0.14554841816425323, 0.041369546204805374, -0.06268948316574097, 0.28961077332496643, -0.20336031913757324, 0.02624545246362686, 0.9846479296684265, -0.17550897598266602, 0.07290004193782806, 0.02431599237024784]} +{"t": 0.3858, "q": [-0.348056823015213, -0.011636096984148026, 0.00512909609824419, 0.6285145282745361, -0.316339373588562, 0.01549590565264225, -0.38751423358917236, 0.0005198490689508617, -0.00479429867118597, 0.6020448207855225, -0.28214627504348755, -9.814822260523215e-05, 0.0038300822488963604, 0.005992478225380182, -0.04356023296713829, 0.2847212255001068, 0.19510318338871002, -0.0055007594637572765, 0.9841805100440979, 0.14545254409313202, 0.041369546204805374, -0.06270146369934082, 0.2895987927913666, -0.20324046909809113, 0.02630537375807762, 0.9846359491348267, -0.17553295195102692, 0.07290004193782806, 0.024339960888028145]} +{"t": 0.4025, "q": [-0.34803128242492676, -0.011644618585705757, 0.00516927195712924, 0.628523051738739, -0.3163434863090515, 0.015503129921853542, -0.38751423358917236, 0.0005113269435241818, -0.00483447453007102, 0.6020618677139282, -0.28214627504348755, -9.814822260523215e-05, 0.003816690295934677, 0.006030492018908262, -0.04354553297162056, 0.2846972644329071, 0.19511516392230988, -0.005476790945976973, 0.9841805100440979, 0.14552444219589233, 0.041369546204805374, -0.06270146369934082, 0.28961077332496643, -0.2031685709953308, 0.026377279311418533, 0.9846599102020264, -0.1754370778799057, 0.07290004193782806, 0.024327976629137993]} +{"t": 0.4192, "q": [-0.34798866510391235, -0.011670185253024101, 0.005222839303314686, 0.6285486221313477, -0.3161698281764984, 0.015794266015291214, -0.38743752241134644, 0.000502804818097502, -0.004861257970333099, 0.6020703911781311, -0.28214627504348755, -9.814822260523215e-05, 0.0038970415480434895, 0.006015283986926079, -0.04354548454284668, 0.28468528389930725, 0.19512715935707092, -0.005464806687086821, 0.9841924905776978, 0.14551246166229248, 0.041369546204805374, -0.06268948316574097, 0.2895868122577667, -0.20308467745780945, 0.026401247829198837, 0.9846718907356262, -0.1754610389471054, 0.07290004193782806, 0.024327976629137993]} +{"t": 0.4359, "q": [-0.34798866510391235, -0.011653141118586063, 0.005263015162199736, 0.628523051738739, -0.3161863684654236, 0.015765167772769928, -0.3874630928039551, 0.000502804818097502, -0.00483447453007102, 0.6020533442497253, -0.2821337878704071, -0.0001054483000189066, 0.00388364982791245, 0.005984880030155182, -0.04357503354549408, 0.28468528389930725, 0.19511516392230988, -0.005452822428196669, 0.9841924905776978, 0.14550048112869263, 0.041381530463695526, -0.06270146369934082, 0.2895987927913666, -0.20296484231948853, 0.026437200605869293, 0.9846599102020264, -0.17542508244514465, 0.07288806140422821, 0.024292023852467537]} +{"t": 0.4527, "q": [-0.348014235496521, -0.011670185253024101, 0.005276407115161419, 0.6285315752029419, -0.31619876623153687, 0.01575782522559166, -0.3874460458755493, 0.000502804818097502, -0.004888041876256466, 0.6020618677139282, -0.28213801980018616, -8.374101889785379e-05, 0.0038702578749507666, 0.005992469377815723, -0.04354047030210495, 0.28470924496650696, 0.19512715935707092, -0.005476790945976973, 0.9841924905776978, 0.14553643763065338, 0.041381530463695526, -0.06271345168352127, 0.28961077332496643, -0.20289292931556702, 0.02653307467699051, 0.9846718907356262, -0.1754370778799057, 0.07290004193782806, 0.024292023852467537]} +{"t": 0.4694, "q": [-0.34799718856811523, -0.011678706854581833, 0.005263015162199736, 0.6285400986671448, -0.3161781132221222, 0.01577971689403057, -0.3874204754829407, 0.000502804818097502, -0.004941609688103199, 0.6020618677139282, -0.28212547302246094, -0.00010548310820013285, 0.00388364982791245, 0.006000067573040724, -0.04352566972374916, 0.28468528389930725, 0.19510318338871002, -0.0055007594637572765, 0.984168529510498, 0.14552444219589233, 0.04135756194591522, -0.06271345168352127, 0.2895868122577667, -0.20283301174640656, 0.026581011712551117, 0.9846718907356262, -0.1754131019115448, 0.07288806140422821, 0.02431599237024784]} +{"t": 0.4862, "q": [-0.3479716181755066, -0.011678706854581833, 0.005249623209238052, 0.6285400986671448, -0.3161657154560089, 0.01580154150724411, -0.3874034583568573, 0.000502804818097502, -0.004968393128365278, 0.6020874381065369, -0.2821255326271057, -9.104109631152824e-05, 0.003816690295934677, 0.006007669493556023, -0.04352075234055519, 0.2846972644329071, 0.19509120285511017, -0.005476790945976973, 0.9841805100440979, 0.14551246166229248, 0.041381530463695526, -0.06270146369934082, 0.28961077332496643, -0.2027970552444458, 0.02672482281923294, 0.9846718907356262, -0.1754610389471054, 0.07294797897338867, 0.02431599237024784]} +{"t": 0.5029, "q": [-0.34798866510391235, -0.011670185253024101, 0.005249623209238052, 0.6285400986671448, -0.3161863684654236, 0.015765167772769928, -0.3874034583568573, 0.0005198490689508617, -0.004968393128365278, 0.6020703911781311, -0.28213801980018616, -8.374101889785379e-05, 0.0038568659219890833, 0.006007677875459194, -0.04354051873087883, 0.28468528389930725, 0.19510318338871002, -0.0055007594637572765, 0.9841805100440979, 0.14547650516033173, 0.04139351472258568, -0.06268948316574097, 0.2895987927913666, -0.2027730941772461, 0.02683268114924431, 0.9846718907356262, -0.1754610389471054, 0.07293599843978882, 0.02430400811135769]} +{"t": 0.5196, "q": [-0.3479630947113037, -0.011670185253024101, 0.005276407115161419, 0.6285400986671448, -0.3161822557449341, 0.01575794257223606, -0.3873693645000458, 0.0005198490689508617, -0.004955001175403595, 0.6020703911781311, -0.2821255326271057, -9.104109631152824e-05, 0.0038702578749507666, 0.005969667807221413, -0.04356510192155838, 0.28468528389930725, 0.19511516392230988, -0.005476790945976973, 0.9841805100440979, 0.1455603986978531, 0.04139351472258568, -0.06270146369934082, 0.2895987927913666, -0.20272515714168549, 0.027060380205512047, 0.9846479296684265, -0.17542508244514465, 0.07298392802476883, 0.024292023852467537]} +{"t": 0.5363, "q": [-0.3479716181755066, -0.011687229387462139, 0.005249623209238052, 0.6285315752029419, -0.3163435161113739, 0.015474130399525166, -0.3873693645000458, 0.000502804818097502, -0.004968393128365278, 0.6021044850349426, -0.2821255326271057, -9.104109631152824e-05, 0.0038300822488963604, 0.0059772697277367115, -0.04356018453836441, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.984168529510498, 0.14547650516033173, 0.041381530463695526, -0.06271345168352127, 0.2895987927913666, -0.20271317660808563, 0.02726411260664463, 0.9846958518028259, -0.17549699544906616, 0.07297194749116898, 0.02431599237024784]} +{"t": 0.5531, "q": [-0.3479630947113037, -0.011687229387462139, 0.005222839303314686, 0.6285486221313477, -0.3163145184516907, 0.015554072335362434, -0.3873693645000458, 0.0005113269435241818, -0.004968393128365278, 0.6020874381065369, -0.2821213901042938, -8.38464402477257e-05, 0.0038300822488963604, 0.005977273918688297, -0.04357006773352623, 0.28468528389930725, 0.19510318338871002, -0.005476790945976973, 0.9841805100440979, 0.14548850059509277, 0.041381530463695526, -0.06272543221712112, 0.28961077332496643, -0.20267722010612488, 0.02744387648999691, 0.9846838712692261, -0.17553295195102692, 0.07297194749116898, 0.02430400811135769]} +{"t": 0.5698, "q": [-0.34795457124710083, -0.011695751920342445, 0.005222839303314686, 0.6285400986671448, -0.31631457805633545, 0.015525072813034058, -0.3873693645000458, 0.000502804818097502, -0.0049148257821798325, 0.6021130084991455, -0.2821296453475952, -9.823574509937316e-05, 0.0038970415480434895, 0.005969667807221413, -0.04356510192155838, 0.28468528389930725, 0.19511516392230988, -0.005476790945976973, 0.9841924905776978, 0.14551246166229248, 0.04140549898147583, -0.06271345168352127, 0.28961077332496643, -0.20265324413776398, 0.027575701475143433, 0.9846958518028259, -0.1754850149154663, 0.07297194749116898, 0.024327976629137993]} +{"t": 0.5865, "q": [-0.3479630947113037, -0.01166166365146637, 0.005182663444429636, 0.6285400986671448, -0.31631872057914734, 0.015517779625952244, -0.38734379410743713, 0.000502804818097502, -0.0049148257821798325, 0.6021044850349426, -0.28212970495224, -8.379373321076855e-05, 0.0038434739690274, 0.005992478225380182, -0.04356023296713829, 0.28468528389930725, 0.19510318338871002, -0.0055007594637572765, 0.9841805100440979, 0.14553643763065338, 0.041381530463695526, -0.06273742020130157, 0.2895868122577667, -0.20262928307056427, 0.02761165425181389, 0.9846958518028259, -0.17549699544906616, 0.07298392802476883, 0.024327976629137993]} +{"t": 0.6033, "q": [-0.34795457124710083, -0.011687229387462139, 0.005155880004167557, 0.6285571455955505, -0.31631872057914734, 0.015517779625952244, -0.3873693645000458, 0.0005113269435241818, -0.004941609688103199, 0.6021215319633484, -0.2821296453475952, -9.823574509937316e-05, 0.0038702578749507666, 0.005954468157142401, -0.04358481988310814, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9841805100440979, 0.14551246166229248, 0.04139351472258568, -0.06271345168352127, 0.2895987927913666, -0.20261730253696442, 0.027791418135166168, 0.9847078323364258, -0.17554493248462677, 0.07300789654254913, 0.024339960888028145]} +{"t": 0.6202, "q": [-0.3479290008544922, -0.011670185253024101, 0.0051424880512058735, 0.6285571455955505, -0.31631460785865784, 0.01551053673028946, -0.38735231757164, 0.0005198490689508617, -0.004847866017371416, 0.6021300554275513, -0.28212970495224, -8.379373321076855e-05, 0.00388364982791245, 0.005984884686768055, -0.0435849167406559, 0.28466129302978516, 0.19509120285511017, -0.005476790945976973, 0.9841805100440979, 0.14550048112869263, 0.04140549898147583, -0.06270146369934082, 0.2895868122577667, -0.20260530710220337, 0.027851339429616928, 0.9846958518028259, -0.17554493248462677, 0.07301988452672958, 0.02431599237024784]} +{"t": 0.637, "q": [-0.3479716181755066, -0.01166166365146637, 0.005155880004167557, 0.6285656690597534, -0.31631457805633545, 0.015525072813034058, -0.3873693645000458, 0.0005198490689508617, -0.004767514765262604, 0.6021300554275513, -0.28213801980018616, -8.374101889785379e-05, 0.0038300822488963604, 0.006000096909701824, -0.0435948483645916, 0.28468528389930725, 0.19511516392230988, -0.005476790945976973, 0.9841805100440979, 0.14546452462673187, 0.041369546204805374, -0.06272543221712112, 0.2895987927913666, -0.20259332656860352, 0.02805507183074951, 0.9846958518028259, -0.17554493248462677, 0.07301988452672958, 0.02431599237024784]} +{"t": 0.6537, "q": [-0.3479630947113037, -0.011670185253024101, 0.005155880004167557, 0.6285656690597534, -0.31632283329963684, 0.01552500482648611, -0.38738641142845154, 0.0004857605672441423, -0.004780906718224287, 0.6021044850349426, -0.2821338474750519, -9.098838199861348e-05, 0.0038434739690274, 0.005992494989186525, -0.04359976202249527, 0.28468528389930725, 0.19510318338871002, -0.005464806687086821, 0.9841924905776978, 0.14552444219589233, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20259332656860352, 0.02810300886631012, 0.9847317934036255, -0.17550897598266602, 0.07304385304450989, 0.024327976629137993]} +{"t": 0.6705, "q": [-0.3479716181755066, -0.011670185253024101, 0.0051424880512058735, 0.6285741925239563, -0.31632286310195923, 0.015510505065321922, -0.38738641142845154, 0.000502804818097502, -0.0047541228123009205, 0.6021215319633484, -0.28213387727737427, -7.654637011000887e-05, 0.0038702578749507666, 0.006015296559780836, -0.04357513040304184, 0.28468528389930725, 0.19510318338871002, -0.005464806687086821, 0.9841924905776978, 0.14542856812477112, 0.04140549898147583, -0.06272543221712112, 0.28961077332496643, -0.20259332656860352, 0.028126977384090424, 0.9846958518028259, -0.17553295195102692, 0.07305583357810974, 0.02431599237024784]} +{"t": 0.6872, "q": [-0.3479716181755066, -0.011678706854581833, 0.005155880004167557, 0.6285571455955505, -0.31631872057914734, 0.015517779625952244, -0.38738641142845154, 0.000502804818097502, -0.004821082577109337, 0.6021215319633484, -0.28213801980018616, -8.374101889785379e-05, 0.0038702578749507666, 0.005939272698014975, -0.04361441731452942, 0.28468528389930725, 0.19510318338871002, -0.005464806687086821, 0.9842165112495422, 0.14541658759117126, 0.04140549898147583, -0.06272543221712112, 0.2895868122577667, -0.20260530710220337, 0.028138961642980576, 0.9846958518028259, -0.17555691301822662, 0.07306782156229019, 0.02430400811135769]} +{"t": 0.704, "q": [-0.3479716181755066, -0.011678706854581833, 0.00516927195712924, 0.6285486221313477, -0.31632697582244873, 0.015503229573369026, -0.3874119520187378, 0.000502804818097502, -0.00479429867118597, 0.6021215319633484, -0.28213387727737427, -7.654637011000887e-05, 0.0038970415480434895, 0.0059696887619793415, -0.04361451417207718, 0.28468528389930725, 0.19513913989067078, -0.005476790945976973, 0.9841924905776978, 0.14553643763065338, 0.04140549898147583, -0.06272543221712112, 0.28961077332496643, -0.20259332656860352, 0.02816293016076088, 0.9846958518028259, -0.1754850149154663, 0.07303186506032944, 0.02431599237024784]} +{"t": 0.7208, "q": [-0.3479801416397095, -0.011687229387462139, 0.00516927195712924, 0.6285571455955505, -0.31631872057914734, 0.015517779625952244, -0.3874034583568573, 0.0005113269435241818, -0.00483447453007102, 0.6021044850349426, -0.28214216232299805, -9.095356654142961e-05, 0.0038300822488963604, 0.005962078459560871, -0.04359966516494751, 0.28468528389930725, 0.19510318338871002, -0.005452822428196669, 0.9842044711112976, 0.14552444219589233, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20259332656860352, 0.02816293016076088, 0.9847317934036255, -0.17553295195102692, 0.07306782156229019, 0.024327976629137993]} +{"t": 0.7375, "q": [-0.3479801416397095, -0.011687229387462139, 0.005182663444429636, 0.6285571455955505, -0.3162690997123718, 0.015590596944093704, -0.38738641142845154, 0.000502804818097502, -0.004727339372038841, 0.6020959615707397, -0.28212970495224, -8.379373321076855e-05, 0.0038300822488963604, 0.005962078459560871, -0.04359966516494751, 0.28468528389930725, 0.19510318338871002, -0.005452822428196669, 0.9842044711112976, 0.14541658759117126, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.20258134603500366, 0.028198881074786186, 0.9847437739372253, -0.17549699544906616, 0.07305583357810974, 0.024339960888028145]} +{"t": 0.7542, "q": [-0.3479716181755066, -0.011678706854581833, 0.005196055397391319, 0.6285656690597534, -0.31625255942344666, 0.015634214505553246, -0.3873693645000458, 0.000502804818097502, -0.004767514765262604, 0.6021215319633484, -0.28212970495224, -8.379373321076855e-05, 0.0038434739690274, 0.005962074268609285, -0.04358978196978569, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9841924905776978, 0.14547650516033173, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.20259332656860352, 0.02822284959256649, 0.9847317934036255, -0.1754131019115448, 0.07306782156229019, 0.02431599237024784]} +{"t": 0.7714, "q": [-0.3479716181755066, -0.011687229387462139, 0.0052094473503530025, 0.6285741925239563, -0.3162194788455963, 0.01569243147969246, -0.3873608410358429, 0.000502804818097502, -0.004740730859339237, 0.6021044850349426, -0.2821255326271057, -9.104109631152824e-05, 0.0038568659219890833, 0.005977278109639883, -0.04357995092868805, 0.28468528389930725, 0.19512715935707092, -0.005452822428196669, 0.9842044711112976, 0.14548850059509277, 0.04140549898147583, -0.06272543221712112, 0.28961077332496643, -0.20259332656860352, 0.028258802369236946, 0.9847317934036255, -0.17547301948070526, 0.07303186506032944, 0.024327976629137993]} +{"t": 0.7883, "q": [-0.3479801416397095, -0.011687229387462139, 0.005222839303314686, 0.6285741925239563, -0.31620293855667114, 0.015721550211310387, -0.3873608410358429, 0.0004942826926708221, -0.00479429867118597, 0.6020959615707397, -0.28213387727737427, -7.654637011000887e-05, 0.0038970415480434895, 0.005969676189124584, -0.04358486831188202, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842044711112976, 0.14550048112869263, 0.04140549898147583, -0.06273742020130157, 0.28961077332496643, -0.20258134603500366, 0.02834269218146801, 0.9847317934036255, -0.1754370778799057, 0.0730917900800705, 0.02431599237024784]} +{"t": 0.805, "q": [-0.3479716181755066, -0.011712796054780483, 0.005222839303314686, 0.6285571455955505, -0.3161616027355194, 0.015794316306710243, -0.3873693645000458, 0.000502804818097502, -0.004821082577109337, 0.6020959615707397, -0.2821255326271057, -9.104109631152824e-05, 0.0038702578749507666, 0.005954476539045572, -0.04360458254814148, 0.28466129302978516, 0.19509120285511017, -0.005452822428196669, 0.9842165112495422, 0.14550048112869263, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20258134603500366, 0.028438566252589226, 0.9847317934036255, -0.1754850149154663, 0.07310377061367035, 0.024339960888028145]} +{"t": 0.8218, "q": [-0.34795457124710083, -0.011704273521900177, 0.005236231256276369, 0.6285741925239563, -0.31615743041038513, 0.015816092491149902, -0.3873693645000458, 0.0004857605672441423, -0.004901433829218149, 0.6021130084991455, -0.28211721777915955, -9.1093810624443e-05, 0.0038300822488963604, 0.005924064200371504, -0.04361436888575554, 0.28468528389930725, 0.19511516392230988, -0.005452822428196669, 0.9842044711112976, 0.14547650516033173, 0.04141748324036598, -0.06272543221712112, 0.2895987927913666, -0.2025693655014038, 0.028438566252589226, 0.9847317934036255, -0.17544905841350555, 0.0730917900800705, 0.02430400811135769]} +{"t": 0.8386, "q": [-0.3479716181755066, -0.011695751920342445, 0.005249623209238052, 0.6285827159881592, -0.3161657154560089, 0.01580154150724411, -0.3873608410358429, 0.0005113269435241818, -0.004888041876256466, 0.6021130084991455, -0.28212970495224, -8.379373321076855e-05, 0.0038434739690274, 0.005916462279856205, -0.04361928254365921, 0.28466129302978516, 0.19510318338871002, -0.005452822428196669, 0.9842044711112976, 0.14553643763065338, 0.04141748324036598, -0.06274940073490143, 0.2895987927913666, -0.20258134603500366, 0.028438566252589226, 0.9847317934036255, -0.17547301948070526, 0.07307980209589005, 0.024292023852467537]} +{"t": 0.8554, "q": [-0.3479630947113037, -0.011704273521900177, 0.005236231256276369, 0.6285656690597534, -0.31619879603385925, 0.015743324533104897, -0.38735231757164, 0.000502804818097502, -0.004861257970333099, 0.6021044850349426, -0.2821213901042938, -8.38464402477257e-05, 0.0038434739690274, 0.005893652327358723, -0.0436241514980793, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842284917831421, 0.14551246166229248, 0.041441451758146286, -0.06272543221712112, 0.2895987927913666, -0.20258134603500366, 0.02846253477036953, 0.9847317934036255, -0.17549699544906616, 0.07312773913145065, 0.02430400811135769]} +{"t": 0.8721, "q": [-0.34795457124710083, -0.011695751920342445, 0.005263015162199736, 0.6285741925239563, -0.3161657452583313, 0.01577252335846424, -0.38735231757164, 0.0004942826926708221, -0.004861257970333099, 0.6021215319633484, -0.2821255326271057, -9.104109631152824e-05, 0.003910433501005173, 0.00593166658654809, -0.04360945150256157, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9842165112495422, 0.14548850059509277, 0.041429467499256134, -0.06272543221712112, 0.2895868122577667, -0.20258134603500366, 0.028510471805930138, 0.9847437739372253, -0.1754850149154663, 0.0730917900800705, 0.02430400811135769]} +{"t": 0.889, "q": [-0.3479290008544922, -0.011712796054780483, 0.005249623209238052, 0.6285571455955505, -0.3161574602127075, 0.01580159179866314, -0.38734379410743713, 0.0005113269435241818, -0.004888041876256466, 0.6021044850349426, -0.2821089029312134, -9.114651766140014e-05, 0.00388364982791245, 0.005924064200371504, -0.04361436888575554, 0.28466129302978516, 0.19510318338871002, -0.005452822428196669, 0.9841924905776978, 0.14551246166229248, 0.04140549898147583, -0.06271345168352127, 0.2895868122577667, -0.20258134603500366, 0.028510471805930138, 0.9847198128700256, -0.17547301948070526, 0.0730917900800705, 0.02431599237024784]} +{"t": 0.9057, "q": [-0.34790343046188354, -0.011712796054780483, 0.005249623209238052, 0.6285827159881592, -0.31614917516708374, 0.015816159546375275, -0.3872756063938141, 0.0005113269435241818, -0.004928217735141516, 0.6021300554275513, -0.2821213901042938, -8.38464402477257e-05, 0.0038970415480434895, 0.005924060009419918, -0.04360448569059372, 0.28468528389930725, 0.19510318338871002, -0.005452822428196669, 0.9842165112495422, 0.14542856812477112, 0.04141748324036598, -0.06273742020130157, 0.2895987927913666, -0.2025693655014038, 0.028510471805930138, 0.9847557544708252, -0.17550897598266602, 0.0730917900800705, 0.02431599237024784]} +{"t": 0.9225, "q": [-0.3479119539260864, -0.011712796054780483, 0.005249623209238052, 0.6285656690597534, -0.3161740005016327, 0.015772491693496704, -0.38729265332221985, 0.0005113269435241818, -0.004941609688103199, 0.6021215319633484, -0.2821255326271057, -9.104109631152824e-05, 0.0038702578749507666, 0.005886050406843424, -0.04362906888127327, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842284917831421, 0.14552444219589233, 0.041429467499256134, -0.06271345168352127, 0.2895987927913666, -0.20258134603500366, 0.028558408841490746, 0.9847557544708252, -0.17547301948070526, 0.0731397271156311, 0.02431599237024784]} +{"t": 0.9392, "q": [-0.34789490699768066, -0.011704273521900177, 0.005236231256276369, 0.6285827159881592, -0.3161781132221222, 0.015765216201543808, -0.38729265332221985, 0.0005113269435241818, -0.004968393128365278, 0.6021300554275513, -0.2821172773838043, -7.665179145988077e-05, 0.0038300822488963604, 0.00596968038007617, -0.04359474778175354, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842284917831421, 0.14552444219589233, 0.041429467499256134, -0.06271345168352127, 0.2895987927913666, -0.2025693655014038, 0.02858237735927105, 0.9847557544708252, -0.1754610389471054, 0.0731397271156311, 0.02430400811135769]} +{"t": 0.9559, "q": [-0.34789490699768066, -0.011704273521900177, 0.0052094473503530025, 0.6285656690597534, -0.3162401616573334, 0.015656057745218277, -0.38729265332221985, 0.0004942826926708221, -0.004901433829218149, 0.6021385788917542, -0.2821214497089386, -6.940442835912108e-05, 0.0038300822488963604, 0.005939272698014975, -0.04361441731452942, 0.284673273563385, 0.19509120285511017, -0.005476790945976973, 0.9842284917831421, 0.14547650516033173, 0.04140549898147583, -0.06272543221712112, 0.2895868122577667, -0.2025693655014038, 0.028546424582600594, 0.9847557544708252, -0.1754610389471054, 0.07310377061367035, 0.024327976629137993]} +{"t": 0.9726, "q": [-0.3479119539260864, -0.011704273521900177, 0.0052094473503530025, 0.6285827159881592, -0.3162153661251068, 0.01568518951535225, -0.3872756063938141, 0.000502804818097502, -0.004861257970333099, 0.6021300554275513, -0.2821172773838043, -7.665179145988077e-05, 0.00388364982791245, 0.00592406839132309, -0.04362424835562706, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842165112495422, 0.14554841816425323, 0.04140549898147583, -0.06271345168352127, 0.28962278366088867, -0.2025693655014038, 0.028558408841490746, 0.9847557544708252, -0.1754610389471054, 0.0731397271156311, 0.02431599237024784]} +{"t": 0.9894, "q": [-0.3479119539260864, -0.011712796054780483, 0.0052094473503530025, 0.6285656690597534, -0.3162897825241089, 0.01555420458316803, -0.38728412985801697, 0.000502804818097502, -0.004861257970333099, 0.6021300554275513, -0.28211721777915955, -9.1093810624443e-05, 0.003816690295934677, 0.00596968038007617, -0.04359474778175354, 0.28468528389930725, 0.19510318338871002, -0.005476790945976973, 0.9842284917831421, 0.14551246166229248, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.2025693655014038, 0.02858237735927105, 0.9847557544708252, -0.17552095651626587, 0.07310377061367035, 0.02431599237024784]} +{"t": 1.0061, "q": [-0.34790343046188354, -0.011695751920342445, 0.005222839303314686, 0.6285997629165649, -0.3161740005016327, 0.015772491693496704, -0.3872585594654083, 0.00046871634549461305, -0.004874649923294783, 0.602147102355957, -0.28211721777915955, -9.1093810624443e-05, 0.00388364982791245, 0.005939272698014975, -0.04361441731452942, 0.28468528389930725, 0.19511516392230988, -0.005476790945976973, 0.9842404723167419, 0.14551246166229248, 0.041429467499256134, -0.06273742020130157, 0.28961077332496643, -0.20255737006664276, 0.028618330135941505, 0.9847797155380249, -0.1754850149154663, 0.07315170764923096, 0.024292023852467537]} +{"t": 1.0228, "q": [-0.34790343046188354, -0.011704273521900177, 0.005222839303314686, 0.6285997629165649, -0.3161698877811432, 0.015765249729156494, -0.3872585594654083, 0.0005113269435241818, -0.004941609688103199, 0.6021556258201599, -0.2821089029312134, -9.114651766140014e-05, 0.0038970415480434895, 0.0059468746185302734, -0.04360949993133545, 0.28468528389930725, 0.19509120285511017, -0.005452822428196669, 0.9842284917831421, 0.14553643763065338, 0.04141748324036598, -0.06271345168352127, 0.2895987927913666, -0.2025693655014038, 0.028630314394831657, 0.9847557544708252, -0.17547301948070526, 0.07318766415119171, 0.02430400811135769]} +{"t": 1.0396, "q": [-0.3478863835334778, -0.011704273521900177, 0.005236231256276369, 0.6285827159881592, -0.3161657750606537, 0.015758024528622627, -0.3872756063938141, 0.0005283711361698806, -0.0049148257821798325, 0.6021641492843628, -0.2821172773838043, -7.665179145988077e-05, 0.0038300822488963604, 0.005908864550292492, -0.043634083122015, 0.28468528389930725, 0.19511516392230988, -0.005476790945976973, 0.9842284917831421, 0.14552444219589233, 0.041429467499256134, -0.06274940073490143, 0.2895868122577667, -0.20255737006664276, 0.028678251430392265, 0.984767735004425, -0.1754850149154663, 0.07315170764923096, 0.024327976629137993]} +{"t": 1.0563, "q": [-0.3478863835334778, -0.011712796054780483, 0.005222839303314686, 0.6285912394523621, -0.31614917516708374, 0.015816159546375275, -0.3872585594654083, 0.0005198490689508617, -0.0049148257821798325, 0.602147102355957, -0.2821213901042938, -8.38464402477257e-05, 0.0038434739690274, 0.005901262629777193, -0.04363900050520897, 0.284673273563385, 0.19510318338871002, -0.005452822428196669, 0.9842404723167419, 0.14551246166229248, 0.04140549898147583, -0.06271345168352127, 0.2895868122577667, -0.2025693655014038, 0.028678251430392265, 0.984767735004425, -0.17550897598266602, 0.07315170764923096, 0.02430400811135769]} +{"t": 1.0734, "q": [-0.3478778600692749, -0.011729840189218521, 0.0052094473503530025, 0.6285997629165649, -0.3161616027355194, 0.015779798850417137, -0.38725003600120544, 0.0005113269435241818, -0.005008568987250328, 0.6021641492843628, -0.2821089029312134, -9.114651766140014e-05, 0.0038434739690274, 0.005855644587427378, -0.04366853088140488, 0.28468528389930725, 0.19510318338871002, -0.005464806687086821, 0.9842284917831421, 0.1455603986978531, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.028678251430392265, 0.9847557544708252, -0.17544905841350555, 0.0731157585978508, 0.024292023852467537]} +{"t": 1.0902, "q": [-0.3478863835334778, -0.01172131858766079, 0.005196055397391319, 0.6285997629165649, -0.31614506244659424, 0.015808915719389915, -0.38724151253700256, 0.000502804818097502, -0.004968393128365278, 0.6021897196769714, -0.2821213901042938, -8.38464402477257e-05, 0.0038702578749507666, 0.005886058323085308, -0.04364883527159691, 0.28468528389930725, 0.19510318338871002, -0.005464806687086821, 0.9842404723167419, 0.14551246166229248, 0.04141748324036598, -0.06272543221712112, 0.2895987927913666, -0.2025693655014038, 0.02871420420706272, 0.9847557544708252, -0.1754370778799057, 0.07316369563341141, 0.02430400811135769]} +{"t": 1.1069, "q": [-0.3478778600692749, -0.01172131858766079, 0.005196055397391319, 0.6285827159881592, -0.3161616027355194, 0.015779798850417137, -0.3872756063938141, 0.0004857605672441423, -0.005008568987250328, 0.6021641492843628, -0.282100647687912, -7.675721280975267e-05, 0.0038702578749507666, 0.005863245110958815, -0.04365371912717819, 0.28466129302978516, 0.19510318338871002, -0.005452822428196669, 0.9842165112495422, 0.14553643763065338, 0.04140549898147583, -0.06271345168352127, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.9847557544708252, -0.17544905841350555, 0.07316369563341141, 0.02430400811135769]} +{"t": 1.1236, "q": [-0.3478863835334778, -0.011746884323656559, 0.005222839303314686, 0.6285827159881592, -0.3161740303039551, 0.015743473544716835, -0.3872585594654083, 0.0005113269435241818, -0.005021960940212011, 0.6021811962127686, -0.2821089029312134, -9.114651766140014e-05, 0.0038702578749507666, 0.0058784522116184235, -0.04364386945962906, 0.28468528389930725, 0.19510318338871002, -0.005464806687086821, 0.9842284917831421, 0.14552444219589233, 0.04141748324036598, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.02870221994817257, 0.984767735004425, -0.1754370778799057, 0.07315170764923096, 0.02431599237024784]} +{"t": 1.1404, "q": [-0.3478778600692749, -0.01172131858766079, 0.005249623209238052, 0.6285827159881592, -0.3161740005016327, 0.015772491693496704, -0.3872585594654083, 0.0005113269435241818, -0.005062136333435774, 0.6021726727485657, -0.28211307525634766, -8.389915456064045e-05, 0.003816690295934677, 0.005886058323085308, -0.04364883527159691, 0.28468528389930725, 0.19511516392230988, -0.005452822428196669, 0.9842404723167419, 0.14554841816425323, 0.04141748324036598, -0.06272543221712112, 0.2895868122577667, -0.2025693655014038, 0.02871420420706272, 0.9847916960716248, -0.1754610389471054, 0.07316369563341141, 0.024339960888028145]} +{"t": 1.1571, "q": [-0.3478778600692749, -0.011729840189218521, 0.0052094473503530025, 0.6285827159881592, -0.3161657452583313, 0.01577252335846424, -0.3872670829296112, 0.0005113269435241818, -0.005048744846135378, 0.6021726727485657, -0.28211307525634766, -8.389915456064045e-05, 0.0038568659219890833, 0.005878455005586147, -0.043653760105371475, 0.28466129302978516, 0.19511516392230988, -0.005452822428196669, 0.9842165112495422, 0.14547650516033173, 0.041429467499256134, -0.06272543221712112, 0.2895868122577667, -0.2025693655014038, 0.028726188465952873, 0.984767735004425, -0.17550897598266602, 0.07315170764923096, 0.024292023852467537]} +{"t": 1.174, "q": [-0.347869336605072, -0.011755406856536865, 0.005249623209238052, 0.6285912394523621, -0.31619054079055786, 0.01572885550558567, -0.3872756063938141, 0.0005113269435241818, -0.005048744846135378, 0.6021726727485657, -0.28211313486099243, -6.945713539607823e-05, 0.0038702578749507666, 0.005901262629777193, -0.04363900050520897, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842404723167419, 0.14547650516033173, 0.041429467499256134, -0.06271345168352127, 0.2895868122577667, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.17547301948070526, 0.07315170764923096, 0.024327976629137993]} +{"t": 1.1907, "q": [-0.347869336605072, -0.01172131858766079, 0.005222839303314686, 0.6285827159881592, -0.3163311183452606, 0.015495955012738705, -0.3872670829296112, 0.0005113269435241818, -0.005062136333435774, 0.6021726727485657, -0.2821172773838043, -7.665179145988077e-05, 0.0038300822488963604, 0.005916466470807791, -0.04362916573882103, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9842404723167419, 0.14550048112869263, 0.041429467499256134, -0.06272543221712112, 0.2895868122577667, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.1754850149154663, 0.07315170764923096, 0.02430400811135769]} +{"t": 1.2075, "q": [-0.34789490699768066, -0.011712796054780483, 0.005236231256276369, 0.6285827159881592, -0.3161657154560089, 0.015787042677402496, -0.3872670829296112, 0.0005113269435241818, -0.004941609688103199, 0.6021556258201599, -0.2821213901042938, -8.38464402477257e-05, 0.003910433501005173, 0.0058784522116184235, -0.04364386945962906, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842404723167419, 0.14547650516033173, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.1754850149154663, 0.07317567616701126, 0.024327976629137993]} +{"t": 1.2242, "q": [-0.34789490699768066, -0.01172131858766079, 0.005222839303314686, 0.6285912394523621, -0.3162401616573334, 0.01564154028892517, -0.38729265332221985, 0.0004942826926708221, -0.005021960940212011, 0.6021726727485657, -0.2821172773838043, -7.665179145988077e-05, 0.003816690295934677, 0.005901258438825607, -0.04362911731004715, 0.28466129302978516, 0.19510318338871002, -0.005452822428196669, 0.9842404723167419, 0.14552444219589233, 0.04141748324036598, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.17544905841350555, 0.07316369563341141, 0.024327976629137993]} +{"t": 1.2409, "q": [-0.34790343046188354, -0.01172131858766079, 0.005196055397391319, 0.6285827159881592, -0.3162898123264313, 0.015539704822003841, -0.38729265332221985, 0.0004942826926708221, -0.005008568987250328, 0.6021641492843628, -0.2821172773838043, -7.665179145988077e-05, 0.0038434739690274, 0.0058936565183103085, -0.04363403469324112, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842404723167419, 0.14551246166229248, 0.04141748324036598, -0.06272543221712112, 0.28961077332496643, -0.2025693655014038, 0.028738172724843025, 0.9847916960716248, -0.1754610389471054, 0.07316369563341141, 0.024351945146918297]} +{"t": 1.2577, "q": [-0.3478778600692749, -0.011712796054780483, 0.0052094473503530025, 0.6285827159881592, -0.3162442743778229, 0.01564878225326538, -0.3872756063938141, 0.0005113269435241818, -0.004941609688103199, 0.6021811962127686, -0.28211307525634766, -8.389915456064045e-05, 0.0038300822488963604, 0.005886058323085308, -0.04364883527159691, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9842524528503418, 0.14550048112869263, 0.04141748324036598, -0.06270146369934082, 0.2895868122577667, -0.2025693655014038, 0.02871420420706272, 0.9847916960716248, -0.17542508244514465, 0.07315170764923096, 0.024292023852467537]} +{"t": 1.2745, "q": [-0.3478778600692749, -0.01172131858766079, 0.005222839303314686, 0.6285827159881592, -0.3162112236022949, 0.01569248177111149, -0.38729265332221985, 0.0005113269435241818, -0.004968393128365278, 0.6021897196769714, -0.28210899233818054, -6.22624866082333e-05, 0.0038702578749507666, 0.005878455005586147, -0.043653760105371475, 0.28466129302978516, 0.19509120285511017, -0.005464806687086821, 0.9842404723167419, 0.14552444219589233, 0.04141748324036598, -0.06271345168352127, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.9847916960716248, -0.17547301948070526, 0.07315170764923096, 0.024292023852467537]} +{"t": 1.2912, "q": [-0.3478778600692749, -0.01172131858766079, 0.005236231256276369, 0.6285827159881592, -0.31618639826774597, 0.015750648453831673, -0.38728412985801697, 0.0005113269435241818, -0.005008568987250328, 0.6021811962127686, -0.28211307525634766, -8.389915456064045e-05, 0.0038434739690274, 0.00584804080426693, -0.04367345571517944, 0.28466129302978516, 0.19511516392230988, -0.005452822428196669, 0.9842644333839417, 0.14546452462673187, 0.04141748324036598, -0.06272543221712112, 0.2895868122577667, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.17550897598266602, 0.07316369563341141, 0.024327976629137993]} +{"t": 1.308, "q": [-0.3478863835334778, -0.01172131858766079, 0.005236231256276369, 0.6285741925239563, -0.3161740005016327, 0.015772491693496704, -0.38729265332221985, 0.000502804818097502, -0.0049817850813269615, 0.6021897196769714, -0.2821172773838043, -7.665179145988077e-05, 0.0038434739690274, 0.005893660709261894, -0.04364391788840294, 0.28466129302978516, 0.19510318338871002, -0.005452822428196669, 0.9842644333839417, 0.14553643763065338, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.02871420420706272, 0.9848157167434692, -0.1754610389471054, 0.07316369563341141, 0.024292023852467537]} +{"t": 1.3247, "q": [-0.3478863835334778, -0.011738361790776253, 0.0052094473503530025, 0.6285997629165649, -0.3161781430244446, 0.015750698745250702, -0.3872756063938141, 0.0005113269435241818, -0.004995177034288645, 0.6021897196769714, -0.28211307525634766, -8.389915456064045e-05, 0.003910433501005173, 0.005870851222425699, -0.04365868493914604, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9842524528503418, 0.14554841816425323, 0.04140549898147583, -0.06272543221712112, 0.28961077332496643, -0.2025693655014038, 0.028726188465952873, 0.9847916960716248, -0.1754850149154663, 0.07317567616701126, 0.02430400811135769]} +{"t": 1.3415, "q": [-0.3478778600692749, -0.01172131858766079, 0.005222839303314686, 0.6285912394523621, -0.3161822557449341, 0.01575794257223606, -0.3872756063938141, 0.000502804818097502, -0.005021960940212011, 0.6022067666053772, -0.28211307525634766, -8.389915456064045e-05, 0.0038300822488963604, 0.005901262629777193, -0.04363900050520897, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842524528503418, 0.14554841816425323, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.2025453895330429, 0.02871420420706272, 0.9847916960716248, -0.17542508244514465, 0.07316369563341141, 0.02430400811135769]} +{"t": 1.3584, "q": [-0.3478778600692749, -0.01172131858766079, 0.005222839303314686, 0.6285997629165649, -0.3161863684654236, 0.015765167772769928, -0.38729265332221985, 0.0005113269435241818, -0.004995177034288645, 0.6022067666053772, -0.2821047604084015, -8.395186887355521e-05, 0.0038702578749507666, 0.005908864550292492, -0.043634083122015, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842644333839417, 0.14547650516033173, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.9848037362098694, -0.1754610389471054, 0.07317567616701126, 0.02430400811135769]} +{"t": 1.3751, "q": [-0.3478778600692749, -0.01172131858766079, 0.005249623209238052, 0.6285997629165649, -0.3161822557449341, 0.01575794257223606, -0.3872756063938141, 0.0005113269435241818, -0.005021960940212011, 0.6022152900695801, -0.2821089029312134, -9.114651766140014e-05, 0.0038568659219890833, 0.00592406839132309, -0.04362424835562706, 0.28466129302978516, 0.19511516392230988, -0.005452822428196669, 0.9842524528503418, 0.14550048112869263, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.2025693655014038, 0.028726188465952873, 0.9848157167434692, -0.1754850149154663, 0.07316369563341141, 0.024327976629137993]} +{"t": 1.3919, "q": [-0.347869336605072, -0.011746884323656559, 0.005236231256276369, 0.6285741925239563, -0.3161740005016327, 0.015772491693496704, -0.3872756063938141, 0.0005113269435241818, -0.005062136333435774, 0.6022408604621887, -0.28211307525634766, -8.389915456064045e-05, 0.0038434739690274, 0.005901262629777193, -0.04363900050520897, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842404723167419, 0.14541658759117126, 0.04140549898147583, -0.06273742020130157, 0.28961077332496643, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.17542508244514465, 0.07317567616701126, 0.02430400811135769]} +{"t": 1.4087, "q": [-0.347869336605072, -0.011729840189218521, 0.005222839303314686, 0.6285997629165649, -0.3161740005016327, 0.015772491693496704, -0.3872670829296112, 0.0004857605672441423, -0.0049817850813269615, 0.6022408604621887, -0.28211307525634766, -8.389915456064045e-05, 0.0038434739690274, 0.005901262629777193, -0.04363900050520897, 0.28466129302978516, 0.19509120285511017, -0.005452822428196669, 0.9842404723167419, 0.14553643763065338, 0.04141748324036598, -0.06274940073490143, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.9847916960716248, -0.17544905841350555, 0.0731397271156311, 0.02430400811135769]} +{"t": 1.4254, "q": [-0.34786084294319153, -0.011755406856536865, 0.005249623209238052, 0.6285997629165649, -0.31614920496940613, 0.015801623463630676, -0.3872756063938141, 0.0004942826926708221, -0.004941609688103199, 0.6022408604621887, -0.2821089029312134, -9.114651766140014e-05, 0.0038702578749507666, 0.005901262629777193, -0.04363900050520897, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842524528503418, 0.14551246166229248, 0.04141748324036598, -0.06272543221712112, 0.2895868122577667, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.17553295195102692, 0.07316369563341141, 0.02430400811135769]} +{"t": 1.4421, "q": [-0.34785231947898865, -0.011755406856536865, 0.005289798602461815, 0.6285997629165649, -0.31615743041038513, 0.015816092491149902, -0.3872756063938141, 0.0005113269435241818, -0.0049817850813269615, 0.6022579073905945, -0.28210482001304626, -6.950984970899299e-05, 0.0038970415480434895, 0.005901262629777193, -0.04363900050520897, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842644333839417, 0.14551246166229248, 0.04141748324036598, -0.06273742020130157, 0.28961077332496643, -0.20258134603500366, 0.02871420420706272, 0.9848037362098694, -0.1754850149154663, 0.0731397271156311, 0.02430400811135769]} +{"t": 1.4589, "q": [-0.3478352725505829, -0.011738361790776253, 0.005263015162199736, 0.6285997629165649, -0.31614917516708374, 0.015816159546375275, -0.38728412985801697, 0.000502804818097502, -0.005021960940212011, 0.6022493839263916, -0.2821172773838043, -7.665179145988077e-05, 0.0038434739690274, 0.005893660709261894, -0.04364391788840294, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842644333839417, 0.14553643763065338, 0.04141748324036598, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.9847916960716248, -0.17544905841350555, 0.07317567616701126, 0.02431599237024784]} +{"t": 1.4756, "q": [-0.3478352725505829, -0.011763928458094597, 0.005249623209238052, 0.6285997629165649, -0.31614920496940613, 0.015801623463630676, -0.38730117678642273, 0.0004942826926708221, -0.005048744846135378, 0.6022749543190002, -0.28210896253585815, -7.670450577279553e-05, 0.0038434739690274, 0.0058784522116184235, -0.04364386945962906, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842644333839417, 0.14551246166229248, 0.04139351472258568, -0.06272543221712112, 0.2895868122577667, -0.2025693655014038, 0.028726188465952873, 0.9848157167434692, -0.17544905841350555, 0.07316369563341141, 0.02430400811135769]} +{"t": 1.4924, "q": [-0.34784379601478577, -0.011755406856536865, 0.005263015162199736, 0.6286082863807678, -0.31614091992378235, 0.01581619121134281, -0.3872585594654083, 0.0005113269435241818, -0.005035352893173695, 0.602292001247406, -0.28211721777915955, -9.1093810624443e-05, 0.0038434739690274, 0.005832833703607321, -0.04368330538272858, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842644333839417, 0.14548850059509277, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.17547301948070526, 0.07317567616701126, 0.024327976629137993]} +{"t": 1.5093, "q": [-0.3478352725505829, -0.011763928458094597, 0.005276407115161419, 0.6285997629165649, -0.31614917516708374, 0.015816159546375275, -0.3872756063938141, 0.0005113269435241818, -0.005021960940212011, 0.602292001247406, -0.28211313486099243, -6.945713539607823e-05, 0.0038568659219890833, 0.0058632479049265385, -0.04366360604763031, 0.28466129302978516, 0.19510318338871002, -0.0055007594637572765, 0.9842524528503418, 0.14551246166229248, 0.04140549898147583, -0.06272543221712112, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.9848037362098694, -0.1754370778799057, 0.07317567616701126, 0.02431599237024784]} +{"t": 1.5261, "q": [-0.34786084294319153, -0.011763928458094597, 0.005249623209238052, 0.6285827159881592, -0.3161822557449341, 0.01575794257223606, -0.38729265332221985, 0.000502804818097502, -0.004968393128365278, 0.602292001247406, -0.2821172773838043, -7.665179145988077e-05, 0.0038970415480434895, 0.00588605459779501, -0.04363895207643509, 0.2846493124961853, 0.19512715935707092, -0.005476790945976973, 0.9842644333839417, 0.14544056355953217, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.9848157167434692, -0.1754131019115448, 0.07317567616701126, 0.02430400811135769]} +{"t": 1.5428, "q": [-0.34785231947898865, -0.011746884323656559, 0.005249623209238052, 0.6285997629165649, -0.31631043553352356, 0.015532347373664379, -0.38730117678642273, 0.000502804818097502, -0.005008568987250328, 0.6022834777832031, -0.2821131944656372, -5.501512350747362e-05, 0.0038568659219890833, 0.005855644587427378, -0.04366853088140488, 0.28466129302978516, 0.19510318338871002, -0.005452822428196669, 0.9842644333839417, 0.14547650516033173, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.9848276972770691, -0.17544905841350555, 0.07318766415119171, 0.024327976629137993]} +{"t": 1.5596, "q": [-0.34784379601478577, -0.011763928458094597, 0.005249623209238052, 0.6286168098449707, -0.3162360191345215, 0.015648813918232918, -0.38730117678642273, 0.000502804818097502, -0.004968393128365278, 0.6022749543190002, -0.28211313486099243, -6.945713539607823e-05, 0.0038970415480434895, 0.005878455005586147, -0.043653760105371475, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.14542856812477112, 0.04140549898147583, -0.06274940073490143, 0.28961077332496643, -0.20255737006664276, 0.02871420420706272, 0.984839677810669, -0.1754131019115448, 0.07316369563341141, 0.02431599237024784]} +{"t": 1.5763, "q": [-0.34784379601478577, -0.011763928458094597, 0.005263015162199736, 0.6285997629165649, -0.31620705127716064, 0.015728775411844254, -0.38732674717903137, 0.000502804818097502, -0.004941609688103199, 0.6022749543190002, -0.2821172773838043, -7.665179145988077e-05, 0.003816690295934677, 0.0058632479049265385, -0.04366360604763031, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842764139175415, 0.14550048112869263, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.9847916960716248, -0.17550897598266602, 0.07318766415119171, 0.02431599237024784]} +{"t": 1.593, "q": [-0.34785231947898865, -0.011763928458094597, 0.005249623209238052, 0.6285827159881592, -0.31631872057914734, 0.015517779625952244, -0.3873097002506256, 0.0004942826926708221, -0.004995177034288645, 0.602292001247406, -0.2821172773838043, -7.665179145988077e-05, 0.0038568659219890833, 0.005810020491480827, -0.04368818551301956, 0.28466129302978516, 0.19512715935707092, -0.0055007594637572765, 0.9842764139175415, 0.14545254409313202, 0.04141748324036598, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028738172724843025, 0.9848037362098694, -0.17552095651626587, 0.07317567616701126, 0.02430400811135769]} +{"t": 1.6097, "q": [-0.34784379601478577, -0.011738361790776253, 0.005236231256276369, 0.6285827159881592, -0.31632697582244873, 0.01551773026585579, -0.38732674717903137, 0.0005113269435241818, -0.0049148257821798325, 0.6022834777832031, -0.2821213901042938, -8.38464402477257e-05, 0.0038702578749507666, 0.005810020491480827, -0.04368818551301956, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.14544056355953217, 0.041429467499256134, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.9848037362098694, -0.17542508244514465, 0.07318766415119171, 0.024327976629137993]} +{"t": 1.6265, "q": [-0.34785231947898865, -0.011746884323656559, 0.005236231256276369, 0.6285997629165649, -0.3161616027355194, 0.015794316306710243, -0.3873182237148285, 0.000502804818097502, -0.004941609688103199, 0.6022493839263916, -0.2821214497089386, -6.940442835912108e-05, 0.0038300822488963604, 0.005817627068608999, -0.04369315132498741, 0.2846493124961853, 0.19509120285511017, -0.0055007594637572765, 0.9842644333839417, 0.14551246166229248, 0.04140549898147583, -0.06271345168352127, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.9848037362098694, -0.17544905841350555, 0.07321163266897202, 0.02430400811135769]} +{"t": 1.6433, "q": [-0.34786084294319153, -0.011763928458094597, 0.005263015162199736, 0.6285997629165649, -0.3161781430244446, 0.015750698745250702, -0.3873097002506256, 0.000502804818097502, -0.004941609688103199, 0.6022834777832031, -0.2821172773838043, -7.665179145988077e-05, 0.0038434739690274, 0.00584804080426693, -0.04367345571517944, 0.284673273563385, 0.19511516392230988, -0.005464806687086821, 0.9842644333839417, 0.14547650516033173, 0.04140549898147583, -0.06274940073490143, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.9848276972770691, -0.1754610389471054, 0.07319964468479156, 0.024327976629137993]} +{"t": 1.66, "q": [-0.34786084294319153, -0.011755406856536865, 0.005249623209238052, 0.6286082863807678, -0.3161822557449341, 0.01575794257223606, -0.3873097002506256, 0.0005113269435241818, -0.0049817850813269615, 0.602292001247406, -0.28210899233818054, -6.22624866082333e-05, 0.0038568659219890833, 0.005832833703607321, -0.04368330538272858, 0.28466129302978516, 0.19509120285511017, -0.005464806687086821, 0.9842883944511414, 0.14553643763065338, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.984839677810669, -0.17549699544906616, 0.07318766415119171, 0.02430400811135769]} +{"t": 1.6767, "q": [-0.34785231947898865, -0.011755406856536865, 0.005263015162199736, 0.6285997629165649, -0.3161740303039551, 0.015743473544716835, -0.3873182237148285, 0.000502804818097502, -0.004955001175403595, 0.6023005247116089, -0.2821172773838043, -7.665179145988077e-05, 0.0038970415480434895, 0.005855644587427378, -0.04366853088140488, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842644333839417, 0.14541658759117126, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.984839677810669, -0.17542508244514465, 0.07316369563341141, 0.02431599237024784]} +{"t": 1.6934, "q": [-0.34785231947898865, -0.011738361790776253, 0.005263015162199736, 0.6285997629165649, -0.3161657154560089, 0.015787042677402496, -0.3873097002506256, 0.000502804818097502, -0.004968393128365278, 0.602292001247406, -0.282100647687912, -7.675721280975267e-05, 0.00388364982791245, 0.005840437486767769, -0.04367838054895401, 0.284673273563385, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.1454046070575714, 0.04141748324036598, -0.06274940073490143, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.1754610389471054, 0.07317567616701126, 0.02431599237024784]} +{"t": 1.7102, "q": [-0.34786084294319153, -0.011755406856536865, 0.005249623209238052, 0.6285997629165649, -0.3161574602127075, 0.015787074342370033, -0.3873182237148285, 0.000502804818097502, -0.0049817850813269615, 0.6023005247116089, -0.28211307525634766, -8.389915456064045e-05, 0.0038970415480434895, 0.005840434692800045, -0.043668489903211594, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.1454046070575714, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.17547301948070526, 0.07319964468479156, 0.02430400811135769]} +{"t": 1.7269, "q": [-0.3478352725505829, -0.011772450059652328, 0.005276407115161419, 0.6285997629165649, -0.3161657154560089, 0.015787042677402496, -0.3873182237148285, 0.000502804818097502, -0.004995177034288645, 0.6023260951042175, -0.28210896253585815, -7.670450577279553e-05, 0.00388364982791245, 0.005817624274641275, -0.043683260679244995, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.14544056355953217, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.9848276972770691, -0.17544905841350555, 0.07319964468479156, 0.02430400811135769]} +{"t": 1.7439, "q": [-0.34785231947898865, -0.011772450059652328, 0.005276407115161419, 0.6285997629165649, -0.3161574602127075, 0.015787074342370033, -0.3873097002506256, 0.0004857605672441423, -0.005048744846135378, 0.6023431420326233, -0.28210896253585815, -7.670450577279553e-05, 0.00388364982791245, 0.005817624274641275, -0.043683260679244995, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842644333839417, 0.14544056355953217, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.1754370778799057, 0.07323560118675232, 0.024292023852467537]} +{"t": 1.7606, "q": [-0.34784379601478577, -0.011772450059652328, 0.005289798602461815, 0.6286168098449707, -0.31615331768989563, 0.015808867290616035, -0.38729265332221985, 0.000502804818097502, -0.005008568987250328, 0.6023175716400146, -0.28210482001304626, -6.950984970899299e-05, 0.0038300822488963604, 0.005840434692800045, -0.043668489903211594, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9842764139175415, 0.14552444219589233, 0.04140549898147583, -0.06276138871908188, 0.2895987927913666, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.17552095651626587, 0.07322361320257187, 0.024292023852467537]} +{"t": 1.7773, "q": [-0.34784379601478577, -0.011772450059652328, 0.005276407115161419, 0.6286168098449707, -0.31614917516708374, 0.015816159546375275, -0.38730117678642273, 0.0004857605672441423, -0.004995177034288645, 0.6023346185684204, -0.28211307525634766, -8.389915456064045e-05, 0.0038300822488963604, 0.005817624274641275, -0.043683260679244995, 0.2846493124961853, 0.19512715935707092, -0.005476790945976973, 0.9842883944511414, 0.14551246166229248, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028738172724843025, 0.9848516583442688, -0.17554493248462677, 0.07319964468479156, 0.02431599237024784]} +{"t": 1.7941, "q": [-0.34786084294319153, -0.01178097352385521, 0.005276407115161419, 0.6286168098449707, -0.31614506244659424, 0.015808915719389915, -0.38729265332221985, 0.0004857605672441423, -0.005008568987250328, 0.6023431420326233, -0.28211307525634766, -8.389915456064045e-05, 0.0038434739690274, 0.005855641793459654, -0.04365864023566246, 0.2846493124961853, 0.19511516392230988, -0.005476790945976973, 0.9842644333839417, 0.14551246166229248, 0.04141748324036598, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.984839677810669, -0.17550897598266602, 0.07321163266897202, 0.024327976629137993]} +{"t": 1.8109, "q": [-0.34782674908638, -0.01178097352385521, 0.005316582508385181, 0.6286168098449707, -0.316153347492218, 0.01579434797167778, -0.3872756063938141, 0.0004857605672441423, -0.004968393128365278, 0.6023431420326233, -0.28211307525634766, -8.389915456064045e-05, 0.003816690295934677, 0.005848038010299206, -0.04366356506943703, 0.2846493124961853, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.14542856812477112, 0.04141748324036598, -0.06271345168352127, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.9848516583442688, -0.17547301948070526, 0.07321163266897202, 0.024327976629137993]} +{"t": 1.8276, "q": [-0.3478182256221771, -0.01178097352385521, 0.005289798602461815, 0.6286168098449707, -0.3161450922489166, 0.01579439826309681, -0.3872585594654083, 0.0005113269435241818, -0.004968393128365278, 0.6023431420326233, -0.28210482001304626, -6.950984970899299e-05, 0.0038300822488963604, 0.005825227592140436, -0.04367833957076073, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.14548850059509277, 0.04141748324036598, -0.06274940073490143, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.984839677810669, -0.17547301948070526, 0.07321163266897202, 0.02431599237024784]} +{"t": 1.8443, "q": [-0.34780970215797424, -0.011806539259850979, 0.005316582508385181, 0.6286338567733765, -0.3161492347717285, 0.015787122771143913, -0.3872756063938141, 0.000502804818097502, -0.004968393128365278, 0.6023516654968262, -0.28210896253585815, -7.670450577279553e-05, 0.0038568659219890833, 0.0058480435982346535, -0.04368334636092186, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.14547650516033173, 0.041429467499256134, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.984839677810669, -0.1754370778799057, 0.07321163266897202, 0.024292023852467537]} +{"t": 1.861, "q": [-0.3478182256221771, -0.011815061792731285, 0.005303190555423498, 0.6286338567733765, -0.31614506244659424, 0.015808915719389915, -0.3872756063938141, 0.0004942826926708221, -0.005021960940212011, 0.6023856997489929, -0.28210482001304626, -6.950984970899299e-05, 0.0038300822488963604, 0.005832833703607321, -0.04368330538272858, 0.2846493124961853, 0.19512715935707092, -0.005476790945976973, 0.9842883944511414, 0.14545254409313202, 0.04141748324036598, -0.06272543221712112, 0.28961077332496643, -0.20255737006664276, 0.028738172724843025, 0.9848516583442688, -0.17552095651626587, 0.07323560118675232, 0.02430400811135769]} +{"t": 1.8778, "q": [-0.34780970215797424, -0.011806539259850979, 0.005316582508385181, 0.6286253333091736, -0.31614917516708374, 0.015816159546375275, -0.3872756063938141, 0.0004942826926708221, -0.005021960940212011, 0.6023687124252319, -0.28210482001304626, -6.950984970899299e-05, 0.003923825453966856, 0.005832833703607321, -0.04368330538272858, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842883944511414, 0.14547650516033173, 0.04141748324036598, -0.06274940073490143, 0.2895987927913666, -0.2025453895330429, 0.028738172724843025, 0.984839677810669, -0.17552095651626587, 0.07321163266897202, 0.024327976629137993]} +{"t": 1.8946, "q": [-0.34780970215797424, -0.011815061792731285, 0.005316582508385181, 0.6286338567733765, -0.3161657452583313, 0.01577252335846424, -0.3872756063938141, 0.000502804818097502, -0.005035352893173695, 0.6024112701416016, -0.2821047604084015, -8.395186887355521e-05, 0.0038568659219890833, 0.00584804080426693, -0.04367345571517944, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9842644333839417, 0.14547650516033173, 0.04140549898147583, -0.06272543221712112, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.9848516583442688, -0.1754850149154663, 0.07319964468479156, 0.02431599237024784]} +{"t": 1.9113, "q": [-0.3478352725505829, -0.011798016726970673, 0.005289798602461815, 0.6286338567733765, -0.31635594367980957, 0.015452287159860134, -0.38734379410743713, 0.0004942826926708221, -0.005062136333435774, 0.6024283170700073, -0.28210896253585815, -7.670450577279553e-05, 0.0038300822488963604, 0.005810020491480827, -0.04368818551301956, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.14547650516033173, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.17547301948070526, 0.07319964468479156, 0.024327976629137993]} +{"t": 1.928, "q": [-0.3478352725505829, -0.011815061792731285, 0.005276407115161419, 0.6286338567733765, -0.31614506244659424, 0.01582343503832817, -0.3873097002506256, 0.0005113269435241818, -0.005048744846135378, 0.6024283170700073, -0.2821089029312134, -9.114651766140014e-05, 0.0038434739690274, 0.005840434692800045, -0.043668489903211594, 0.2846493124961853, 0.19513913989067078, -0.005476790945976973, 0.9842883944511414, 0.14551246166229248, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.02876214124262333, 0.9848516583442688, -0.1754610389471054, 0.07321163266897202, 0.02431599237024784]} +{"t": 1.9448, "q": [-0.3478352725505829, -0.011789495125412941, 0.005276407115161419, 0.6286338567733765, -0.3161781430244446, 0.015750698745250702, -0.3873182237148285, 0.0004942826926708221, -0.004995177034288645, 0.6024709343910217, -0.28210482001304626, -6.950984970899299e-05, 0.0038434739690274, 0.005810020491480827, -0.04368818551301956, 0.284673273563385, 0.19511516392230988, -0.0055007594637572765, 0.9842644333839417, 0.14547650516033173, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.9848516583442688, -0.1754370778799057, 0.07321163266897202, 0.02431599237024784]} +{"t": 1.9615, "q": [-0.3478352725505829, -0.011772450059652328, 0.005289798602461815, 0.6286168098449707, -0.31624430418014526, 0.015634264796972275, -0.38733527064323425, 0.0004942826926708221, -0.005035352893173695, 0.6024453639984131, -0.28211313486099243, -6.945713539607823e-05, 0.0038300822488963604, 0.005787212867289782, -0.04371284693479538, 0.28466129302978516, 0.19512715935707092, -0.005476790945976973, 0.9842883944511414, 0.14544056355953217, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.984839677810669, -0.17544905841350555, 0.07323560118675232, 0.024327976629137993]} +{"t": 1.9782, "q": [-0.3478352725505829, -0.011772450059652328, 0.005276407115161419, 0.6286338567733765, -0.31630218029022217, 0.01553237996995449, -0.3873608410358429, 0.000502804818097502, -0.005062136333435774, 0.6024453639984131, -0.2821172773838043, -7.665179145988077e-05, 0.0038434739690274, 0.005840437486767769, -0.04367838054895401, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842764139175415, 0.14542856812477112, 0.04141748324036598, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.9848516583442688, -0.1754850149154663, 0.07323560118675232, 0.02430400811135769]} +{"t": 1.9949, "q": [-0.34784379601478577, -0.011772450059652328, 0.005263015162199736, 0.6286168098449707, -0.3162732422351837, 0.015597839839756489, -0.38735231757164, 0.000502804818097502, -0.005035352893173695, 0.6024453639984131, -0.28210899233818054, -6.22624866082333e-05, 0.0038434739690274, 0.005840437486767769, -0.04367838054895401, 0.28466129302978516, 0.19511516392230988, -0.005452822428196669, 0.9842883944511414, 0.14548850059509277, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.9848516583442688, -0.17547301948070526, 0.07324758172035217, 0.024327976629137993]} +{"t": 2.0116, "q": [-0.34784379601478577, -0.011789495125412941, 0.005276407115161419, 0.6286253333091736, -0.3161657154560089, 0.015787042677402496, -0.3873693645000458, 0.0004942826926708221, -0.005008568987250328, 0.6024368405342102, -0.2821047604084015, -8.395186887355521e-05, 0.0038702578749507666, 0.005794816184788942, -0.04370792582631111, 0.2846493124961853, 0.19510318338871002, -0.005476790945976973, 0.9842883944511414, 0.14547650516033173, 0.04140549898147583, -0.06274940073490143, 0.2895987927913666, -0.20255737006664276, 0.028750156983733177, 0.984839677810669, -0.17542508244514465, 0.07321163266897202, 0.024327976629137993]} +{"t": 2.0284, "q": [-0.34784379601478577, -0.01178097352385521, 0.005249623209238052, 0.6286338567733765, -0.3161781430244446, 0.015750698745250702, -0.3873693645000458, 0.0004942826926708221, -0.005008568987250328, 0.6024368405342102, -0.28210482001304626, -6.950984970899299e-05, 0.0038568659219890833, 0.00582523038610816, -0.043688226491212845, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842764139175415, 0.14544056355953217, 0.04141748324036598, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.1754370778799057, 0.07324758172035217, 0.02430400811135769]} +{"t": 2.0452, "q": [-0.34785231947898865, -0.01178097352385521, 0.005289798602461815, 0.6286338567733765, -0.31618228554725647, 0.015743406489491463, -0.3873693645000458, 0.0004772384709212929, -0.005021960940212011, 0.6024709343910217, -0.28210482001304626, -6.950984970899299e-05, 0.0038568659219890833, 0.005832831375300884, -0.04367341473698616, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842883944511414, 0.14539262652397156, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.17544905841350555, 0.07323560118675232, 0.024327976629137993]} +{"t": 2.0619, "q": [-0.3478352725505829, -0.011772450059652328, 0.005276407115161419, 0.6286168098449707, -0.3161822557449341, 0.01575794257223606, -0.38737788796424866, 0.000502804818097502, -0.005021960940212011, 0.6024453639984131, -0.28211307525634766, -8.389915456064045e-05, 0.0038434739690274, 0.005855644587427378, -0.04366853088140488, 0.2846493124961853, 0.19511516392230988, -0.005476790945976973, 0.9842644333839417, 0.14536865055561066, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.2025453895330429, 0.028738172724843025, 0.984839677810669, -0.17552095651626587, 0.07324758172035217, 0.024327976629137993]} +{"t": 2.0787, "q": [-0.34786084294319153, -0.011763928458094597, 0.005289798602461815, 0.6286338567733765, -0.31619054079055786, 0.015743374824523926, -0.3873693645000458, 0.000502804818097502, -0.005048744846135378, 0.6024453639984131, -0.28211307525634766, -8.389915456064045e-05, 0.003816690295934677, 0.005855644587427378, -0.04366853088140488, 0.2846493124961853, 0.19510318338871002, -0.005476790945976973, 0.9842644333839417, 0.14542856812477112, 0.041429467499256134, -0.06274940073490143, 0.2895868122577667, -0.20255737006664276, 0.028750156983733177, 0.984839677810669, -0.17553295195102692, 0.07321163266897202, 0.024292023852467537]} +{"t": 2.0954, "q": [-0.3478778600692749, -0.011755406856536865, 0.005276407115161419, 0.6286338567733765, -0.31619054079055786, 0.015743374824523926, -0.3873693645000458, 0.0004857605672441423, -0.004941609688103199, 0.6024368405342102, -0.282100647687912, -7.675721280975267e-05, 0.00388364982791245, 0.00584804080426693, -0.04367345571517944, 0.2846493124961853, 0.19510318338871002, -0.005464806687086821, 0.9842764139175415, 0.14547650516033173, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028750156983733177, 0.9848516583442688, -0.17550897598266602, 0.07323560118675232, 0.02431599237024784]} +{"t": 2.1121, "q": [-0.347869336605072, -0.011789495125412941, 0.005249623209238052, 0.6286253333091736, -0.31619054079055786, 0.015743374824523926, -0.38737788796424866, 0.0004857605672441423, -0.004995177034288645, 0.6024453639984131, -0.28210482001304626, -6.950984970899299e-05, 0.0038970415480434895, 0.00584804080426693, -0.04367345571517944, 0.2846493124961853, 0.19510318338871002, -0.0055007594637572765, 0.9842883944511414, 0.14542856812477112, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.9848516583442688, -0.1754370778799057, 0.07321163266897202, 0.02431599237024784]} +{"t": 2.1289, "q": [-0.347869336605072, -0.011772450059652328, 0.005289798602461815, 0.6286338567733765, -0.31618642807006836, 0.015736130997538567, -0.38738641142845154, 0.000502804818097502, -0.005021960940212011, 0.602453887462616, -0.28210899233818054, -6.22624866082333e-05, 0.0038434739690274, 0.005848038010299206, -0.04366356506943703, 0.2846493124961853, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.1454046070575714, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028750156983733177, 0.9848516583442688, -0.17549699544906616, 0.07321163266897202, 0.02431599237024784]} +{"t": 2.1456, "q": [-0.3478863835334778, -0.011763928458094597, 0.005276407115161419, 0.6286253333091736, -0.31619468331336975, 0.01573609933257103, -0.3874204754829407, 0.0004942826926708221, -0.005021960940212011, 0.6024453639984131, -0.28210899233818054, -6.22624866082333e-05, 0.0038568659219890833, 0.005855646915733814, -0.04367842152714729, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842644333839417, 0.1453806310892105, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.02876214124262333, 0.984839677810669, -0.1754610389471054, 0.07321163266897202, 0.02431599237024784]} +{"t": 2.1623, "q": [-0.3478778600692749, -0.011789495125412941, 0.005303190555423498, 0.6286253333091736, -0.31618228554725647, 0.015743406489491463, -0.3874204754829407, 0.0004857605672441423, -0.004968393128365278, 0.6024453639984131, -0.2821173071861267, -6.220977229531854e-05, 0.0038970415480434895, 0.005855644587427378, -0.04366853088140488, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842764139175415, 0.14541658759117126, 0.041429467499256134, -0.06273742020130157, 0.2895987927913666, -0.2025453895330429, 0.028738172724843025, 0.984839677810669, -0.17544905841350555, 0.07323560118675232, 0.024292023852467537]} +{"t": 2.1791, "q": [-0.3478778600692749, -0.011789495125412941, 0.005316582508385181, 0.6286338567733765, -0.31618639826774597, 0.015750648453831673, -0.3874204754829407, 0.0004942826926708221, -0.005008568987250328, 0.6024453639984131, -0.2821172773838043, -7.665179145988077e-05, 0.0038568659219890833, 0.005817624274641275, -0.043683260679244995, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.14539262652397156, 0.04141748324036598, -0.06274940073490143, 0.2895868122577667, -0.2025453895330429, 0.028750156983733177, 0.9848516583442688, -0.17547301948070526, 0.07323560118675232, 0.024292023852467537]} +{"t": 2.1959, "q": [-0.3478778600692749, -0.011798016726970673, 0.005289798602461815, 0.6286338567733765, -0.31619054079055786, 0.015743374824523926, -0.3874034583568573, 0.0004942826926708221, -0.004995177034288645, 0.6024368405342102, -0.28210896253585815, -7.670450577279553e-05, 0.0038970415480434895, 0.005817627068608999, -0.04369315132498741, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842883944511414, 0.14544056355953217, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028750156983733177, 0.9848756194114685, -0.1754610389471054, 0.07323560118675232, 0.024292023852467537]} +{"t": 2.2126, "q": [-0.3478863835334778, -0.011789495125412941, 0.005289798602461815, 0.6286338567733765, -0.3163476884365082, 0.015452319756150246, -0.38743752241134644, 0.0004942826926708221, -0.004968393128365278, 0.6024368405342102, -0.28210899233818054, -6.22624866082333e-05, 0.003816690295934677, 0.005855644587427378, -0.04366853088140488, 0.28466129302978516, 0.19512715935707092, -0.005476790945976973, 0.9842764139175415, 0.14539262652397156, 0.041429467499256134, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.9848516583442688, -0.1754610389471054, 0.07324758172035217, 0.02430400811135769]} +{"t": 2.2295, "q": [-0.347869336605072, -0.011806539259850979, 0.005303190555423498, 0.6286338567733765, -0.31608301401138306, 0.015932593494653702, -0.38735231757164, 0.000502804818097502, -0.005008568987250328, 0.6024453639984131, -0.2821131944656372, -5.501512350747362e-05, 0.0038434739690274, 0.005840431898832321, -0.04365859925746918, 0.2846493124961853, 0.19511516392230988, -0.005464806687086821, 0.9842883944511414, 0.14539262652397156, 0.041429467499256134, -0.06274940073490143, 0.289562851190567, -0.20255737006664276, 0.028738172724843025, 0.9848516583442688, -0.17544905841350555, 0.07324758172035217, 0.024292023852467537]} +{"t": 2.2466, "q": [-0.3478778600692749, -0.01178097352385521, 0.005316582508385181, 0.6286509037017822, -0.31601688265800476, 0.016049010679125786, -0.38734379410743713, 0.000502804818097502, -0.004995177034288645, 0.602453887462616, -0.28210482001304626, -6.950984970899299e-05, 0.0038568659219890833, 0.005832831375300884, -0.04367341473698616, 0.28466129302978516, 0.19512715935707092, -0.005476790945976973, 0.9842764139175415, 0.14547650516033173, 0.04141748324036598, -0.06274940073490143, 0.2895987927913666, -0.20255737006664276, 0.02876214124262333, 0.9848516583442688, -0.17553295195102692, 0.07324758172035217, 0.024292023852467537]} +{"t": 2.2634, "q": [-0.34786084294319153, -0.01178097352385521, 0.005303190555423498, 0.628667950630188, -0.31601688265800476, 0.016049010679125786, -0.38737788796424866, 0.0004942826926708221, -0.005021960940212011, 0.602453887462616, -0.282100647687912, -7.675721280975267e-05, 0.0038970415480434895, 0.005817627068608999, -0.04369315132498741, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842883944511414, 0.14546452462673187, 0.04141748324036598, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028750156983733177, 0.9848516583442688, -0.17549699544906616, 0.07324758172035217, 0.024292023852467537]} +{"t": 2.2801, "q": [-0.34785231947898865, -0.011798016726970673, 0.005329974461346865, 0.628667950630188, -0.3160044848918915, 0.01605633646249771, -0.3873608410358429, 0.0005113269435241818, -0.005021960940212011, 0.6024709343910217, -0.28210896253585815, -7.670450577279553e-05, 0.0038970415480434895, 0.005840431898832321, -0.04365859925746918, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.14541658759117126, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.17544905841350555, 0.07323560118675232, 0.02431599237024784]} +{"t": 2.2969, "q": [-0.34784379601478577, -0.011806539259850979, 0.005316582508385181, 0.628667950630188, -0.316008597612381, 0.01606357842683792, -0.3873608410358429, 0.0005113269435241818, -0.005035352893173695, 0.602522075176239, -0.28210482001304626, -6.950984970899299e-05, 0.0038434739690274, 0.005840434692800045, -0.043668489903211594, 0.2846493124961853, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.14544056355953217, 0.04140549898147583, -0.06274940073490143, 0.2895987927913666, -0.2025453895330429, 0.028750156983733177, 0.9848516583442688, -0.1754610389471054, 0.07324758172035217, 0.02431599237024784]} +{"t": 2.3137, "q": [-0.34785231947898865, -0.011806539259850979, 0.005329974461346865, 0.628667950630188, -0.31601274013519287, 0.016041768714785576, -0.3873693645000458, 0.0004857605672441423, -0.005035352893173695, 0.6025391221046448, -0.282100647687912, -7.675721280975267e-05, 0.0038300822488963604, 0.005840437486767769, -0.04367838054895401, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.14547650516033173, 0.04141748324036598, -0.06274940073490143, 0.2895868122577667, -0.2025453895330429, 0.028738172724843025, 0.9848756194114685, -0.1754370778799057, 0.07323560118675232, 0.02431599237024784]} +{"t": 2.3304, "q": [-0.3478352725505829, -0.011815061792731285, 0.005329974461346865, 0.6286764740943909, -0.316008597612381, 0.016049060970544815, -0.38733527064323425, 0.0005113269435241818, -0.005062136333435774, 0.6025476455688477, -0.28210482001304626, -6.950984970899299e-05, 0.0038300822488963604, 0.005840434692800045, -0.043668489903211594, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9843003749847412, 0.1454046070575714, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028750156983733177, 0.9848516583442688, -0.17542508244514465, 0.07325956970453262, 0.024292023852467537]} +{"t": 2.3473, "q": [-0.3478182256221771, -0.011823583394289017, 0.005343366414308548, 0.6286764740943909, -0.31600454449653625, 0.016027318313717842, -0.3873097002506256, 0.0005113269435241818, -0.005062136333435774, 0.6026158332824707, -0.2820757329463959, -6.247346755117178e-05, 0.0038568659219890833, 0.005825227592140436, -0.04367833957076073, 0.2846493124961853, 0.19510318338871002, -0.005464806687086821, 0.9842883944511414, 0.14548850059509277, 0.041441451758146286, -0.06274940073490143, 0.2895987927913666, -0.20255737006664276, 0.028750156983733177, 0.984839677810669, -0.17544905841350555, 0.07324758172035217, 0.02431599237024784]} +{"t": 2.364, "q": [-0.34780970215797424, -0.011806539259850979, 0.005356758367270231, 0.6287190914154053, -0.31600040197372437, 0.01603461056947708, -0.3873097002506256, 0.0005113269435241818, -0.005035352893173695, 0.6026328802108765, -0.28207170963287354, -2.637675243022386e-05, 0.0038568659219890833, 0.0058176214806735516, -0.04367337375879288, 0.28466129302978516, 0.19512715935707092, -0.005476790945976973, 0.9843003749847412, 0.14550048112869263, 0.04140549898147583, -0.06272543221712112, 0.28961077332496643, -0.20255737006664276, 0.028750156983733177, 0.9848516583442688, -0.17542508244514465, 0.07324758172035217, 0.02430400811135769]} +{"t": 2.3808, "q": [-0.3477756083011627, -0.011815061792731285, 0.0053701503202319145, 0.6287105679512024, -0.3159879744052887, 0.01605643518269062, -0.38730117678642273, 0.0005113269435241818, -0.005048744846135378, 0.6026243567466736, -0.28204667568206787, -5.54369471501559e-05, 0.0038702578749507666, 0.005840434692800045, -0.043668489903211594, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9843003749847412, 0.14550048112869263, 0.041441451758146286, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028750156983733177, 0.9848756194114685, -0.1754850149154663, 0.07323560118675232, 0.02431599237024784]} +{"t": 2.3976, "q": [-0.3477500379085541, -0.011840627528727055, 0.005437109619379044, 0.6287276148796082, -0.31504112482070923, 0.0176938958466053, -0.3872585594654083, 0.0005113269435241818, -0.00508892023935914, 0.6026840209960938, -0.28203830122947693, -6.993167335167527e-05, 0.00388364982791245, 0.005810020491480827, -0.04368818551301956, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.14546452462673187, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.9848756194114685, -0.1754370778799057, 0.07324758172035217, 0.024339960888028145]} +{"t": 2.4143, "q": [-0.34775856137275696, -0.011815061792731285, 0.005410325713455677, 0.6287276148796082, -0.31496667861938477, 0.017839381471276283, -0.38728412985801697, 0.0005113269435241818, -0.005062136333435774, 0.6026840209960938, -0.28204676508903503, -2.6552916096989065e-05, 0.0038300822488963604, 0.005810020491480827, -0.04368818551301956, 0.28463733196258545, 0.19510318338871002, -0.005476790945976973, 0.9843003749847412, 0.14547650516033173, 0.04141748324036598, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028750156983733177, 0.9848756194114685, -0.17544905841350555, 0.07324758172035217, 0.02431599237024784]} +{"t": 2.431, "q": [-0.3477415144443512, -0.011840627528727055, 0.005437109619379044, 0.6287446022033691, -0.3149997889995575, 0.017766663804650307, -0.38730117678642273, 0.0005113269435241818, -0.005062136333435774, 0.6027266383171082, -0.28204262256622314, -1.9340366634423845e-05, 0.0038300822488963604, 0.005840440280735493, -0.043688271194696426, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.14544056355953217, 0.04141748324036598, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028750156983733177, 0.9848756194114685, -0.17540112137794495, 0.07324758172035217, 0.02431599237024784]} +{"t": 2.4479, "q": [-0.3477415144443512, -0.011832104995846748, 0.00542371766641736, 0.628753125667572, -0.3150535225868225, 0.017686571925878525, -0.3873097002506256, 0.0005113269435241818, -0.005062136333435774, 0.6027522087097168, -0.28204676508903503, -2.6552916096989065e-05, 0.0038568659219890833, 0.005855646915733814, -0.04367842152714729, 0.2846493124961853, 0.19511516392230988, -0.005464806687086821, 0.9842883944511414, 0.14539262652397156, 0.041429467499256134, -0.06273742020130157, 0.2895868122577667, -0.20253340899944305, 0.028750156983733177, 0.9848516583442688, -0.17549699544906616, 0.07325956970453262, 0.02431599237024784]} +{"t": 2.4647, "q": [-0.3477500379085541, -0.011832104995846748, 0.005437109619379044, 0.6287446022033691, -0.31504523754119873, 0.017701121047139168, -0.3873097002506256, 0.0005368932615965605, -0.005035352893173695, 0.602735161781311, -0.282042533159256, -4.824229472433217e-05, 0.0038300822488963604, 0.0058632479049265385, -0.04366360604763031, 0.284673273563385, 0.19510318338871002, -0.005452822428196669, 0.9842883944511414, 0.14548850059509277, 0.041429467499256134, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028750156983733177, 0.9848875999450684, -0.1754850149154663, 0.07324758172035217, 0.02430400811135769]} +{"t": 2.4814, "q": [-0.3477500379085541, -0.011815061792731285, 0.00542371766641736, 0.6287786960601807, -0.3150535225868225, 0.017686571925878525, -0.3873182237148285, 0.000502804818097502, -0.005062136333435774, 0.6027522087097168, -0.2820509076118469, -3.37475685228128e-05, 0.0038300822488963604, 0.005870851222425699, -0.04365868493914604, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9843123555183411, 0.14551246166229248, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.2025453895330429, 0.028750156983733177, 0.9848756194114685, -0.17547301948070526, 0.07323560118675232, 0.02431599237024784]} +{"t": 2.4981, "q": [-0.34775856137275696, -0.011832104995846748, 0.005410325713455677, 0.6287786960601807, -0.3150535225868225, 0.017686571925878525, -0.3873097002506256, 0.0004942826926708221, -0.0049817850813269615, 0.6027436852455139, -0.2820509076118469, -3.37475685228128e-05, 0.0038434739690274, 0.005870856810361147, -0.043678462505340576, 0.28466129302978516, 0.19511516392230988, -0.0055007594637572765, 0.9843123555183411, 0.14550048112869263, 0.041429467499256134, -0.06273742020130157, 0.2895868122577667, -0.2025453895330429, 0.028750156983733177, 0.9848756194114685, -0.17547301948070526, 0.07324758172035217, 0.02430400811135769]} +{"t": 2.5149, "q": [-0.3477841317653656, -0.011806539259850979, 0.005396933760493994, 0.6287872195243835, -0.3150700032711029, 0.017686471343040466, -0.38732674717903137, 0.000502804818097502, -0.0049817850813269615, 0.6027266383171082, -0.2820509076118469, -3.37475685228128e-05, 0.0038434739690274, 0.005901266820728779, -0.04364888370037079, 0.28466129302978516, 0.19510318338871002, -0.005452822428196669, 0.9843123555183411, 0.14548850059509277, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.2025453895330429, 0.028750156983733177, 0.9848875999450684, -0.17544905841350555, 0.07324758172035217, 0.024292023852467537]} +{"t": 2.5316, "q": [-0.34776708483695984, -0.011823583394289017, 0.005396933760493994, 0.6287957429885864, -0.3150617480278015, 0.01770102232694626, -0.3873608410358429, 0.000502804818097502, -0.004928217735141516, 0.6027181148529053, -0.2820509076118469, -3.37475685228128e-05, 0.0038300822488963604, 0.0058480435982346535, -0.04368334636092186, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9843123555183411, 0.1454046070575714, 0.04141748324036598, -0.06274940073490143, 0.2895987927913666, -0.20255737006664276, 0.028750156983733177, 0.9848875999450684, -0.1754610389471054, 0.07324758172035217, 0.024292023852467537]} +{"t": 2.5483, "q": [-0.34776708483695984, -0.011815061792731285, 0.005396933760493994, 0.6287957429885864, -0.31502044200897217, 0.01774478890001774, -0.38734379410743713, 0.0004942826926708221, -0.004941609688103199, 0.6027436852455139, -0.28204667568206787, -5.54369471501559e-05, 0.0038434739690274, 0.00584804080426693, -0.04367345571517944, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9843003749847412, 0.14541658759117126, 0.04140549898147583, -0.06276138871908188, 0.2895987927913666, -0.2025453895330429, 0.028750156983733177, 0.9848756194114685, -0.1754850149154663, 0.07324758172035217, 0.02430400811135769]} +{"t": 2.5651, "q": [-0.3477841317653656, -0.011840627528727055, 0.005396933760493994, 0.6288127899169922, -0.3150080144405365, 0.01778111420571804, -0.3873693645000458, 0.0004857605672441423, -0.004955001175403595, 0.6027266383171082, -0.2820384204387665, -4.104764593648724e-05, 0.0038434739690274, 0.0058480435982346535, -0.04368334636092186, 0.28466129302978516, 0.19510318338871002, -0.0055007594637572765, 0.9843123555183411, 0.14547650516033173, 0.041429467499256134, -0.06278535723686218, 0.2895987927913666, -0.20255737006664276, 0.02876214124262333, 0.9848756194114685, -0.17547301948070526, 0.07324758172035217, 0.024327976629137993]} +{"t": 2.5819, "q": [-0.3477926552295685, -0.011823583394289017, 0.005383542273193598, 0.6288127899169922, -0.315003901720047, 0.017773889005184174, -0.38738641142845154, 0.0004942826926708221, -0.0049817850813269615, 0.602735161781311, -0.28204262256622314, -1.9340366634423845e-05, 0.0038434739690274, 0.005787212867289782, -0.04371284693479538, 0.2846493124961853, 0.19511516392230988, -0.005464806687086821, 0.9843123555183411, 0.14550048112869263, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.2025453895330429, 0.028750156983733177, 0.9849115610122681, -0.17544905841350555, 0.07325956970453262, 0.02431599237024784]} +{"t": 2.5986, "q": [-0.34780117869377136, -0.011789495125412941, 0.00542371766641736, 0.6288127899169922, -0.3150121569633484, 0.01775933802127838, -0.38738641142845154, 0.00046871634549461305, -0.004955001175403595, 0.6027266383171082, -0.28204676508903503, -2.6552916096989065e-05, 0.0038434739690274, 0.005817624274641275, -0.043683260679244995, 0.2846493124961853, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.14541658759117126, 0.04141748324036598, -0.06274940073490143, 0.2895868122577667, -0.20255737006664276, 0.02877412550151348, 0.9849115610122681, -0.17549699544906616, 0.07323560118675232, 0.02431599237024784]} +{"t": 2.6153, "q": [-0.3477926552295685, -0.01184915006160736, 0.005383542273193598, 0.6288127899169922, -0.3150038719177246, 0.017788387835025787, -0.38737788796424866, 0.0004857605672441423, -0.0049817850813269615, 0.602735161781311, -0.28204262256622314, -1.9340366634423845e-05, 0.0038300822488963604, 0.00584804080426693, -0.04367345571517944, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9842883944511414, 0.14548850059509277, 0.04140549898147583, -0.06274940073490143, 0.2895987927913666, -0.20253340899944305, 0.02877412550151348, 0.9849115610122681, -0.17547301948070526, 0.07324758172035217, 0.024339960888028145]} +{"t": 2.6321, "q": [-0.3477926552295685, -0.011840627528727055, 0.005410325713455677, 0.6288213133811951, -0.3149997293949127, 0.017795681953430176, -0.38737788796424866, 0.0004857605672441423, -0.005021960940212011, 0.6027266383171082, -0.28204676508903503, -2.6552916096989065e-05, 0.00388364982791245, 0.0058632479049265385, -0.04366360604763031, 0.2846493124961853, 0.19510318338871002, -0.005476790945976973, 0.9843243360519409, 0.14548850059509277, 0.04141748324036598, -0.06274940073490143, 0.2895868122577667, -0.20253340899944305, 0.028798094019293785, 0.9849115610122681, -0.17547301948070526, 0.07325956970453262, 0.024327976629137993]} +{"t": 2.6488, "q": [-0.34780117869377136, -0.011883238330483437, 0.00542371766641736, 0.6288127899169922, -0.3149873614311218, 0.017803005874156952, -0.38735231757164, 0.0004942826926708221, -0.005021960940212011, 0.6027436852455139, -0.2820509076118469, -3.37475685228128e-05, 0.003816690295934677, 0.005840434692800045, -0.043668489903211594, 0.2846493124961853, 0.19511516392230988, -0.005464806687086821, 0.9843003749847412, 0.14547650516033173, 0.041441451758146286, -0.06276138871908188, 0.289562851190567, -0.20253340899944305, 0.028786109760403633, 0.9849355220794678, -0.17547301948070526, 0.07325956970453262, 0.02431599237024784]} +{"t": 2.6655, "q": [-0.3477926552295685, -0.011874716728925705, 0.005410325713455677, 0.6288127899169922, -0.3149832785129547, 0.01778128184378147, -0.3873608410358429, 0.0004857605672441423, -0.005008568987250328, 0.602735161781311, -0.2820300757884979, -4.10824577556923e-05, 0.00388364982791245, 0.005832831375300884, -0.04367341473698616, 0.2846253514289856, 0.19510318338871002, -0.005476790945976973, 0.9843243360519409, 0.14544056355953217, 0.04141748324036598, -0.06276138871908188, 0.2895388901233673, -0.20250943303108215, 0.02877412550151348, 0.9849355220794678, -0.17555691301822662, 0.07324758172035217, 0.02430400811135769]} +{"t": 2.6823, "q": [-0.34780117869377136, -0.011883238330483437, 0.005437109619379044, 0.6288042664527893, -0.31499147415161133, 0.01781023107469082, -0.38733527064323425, 0.0004942826926708221, -0.005008568987250328, 0.6027436852455139, -0.2820259630680084, -3.388780532986857e-05, 0.003937217406928539, 0.005794808268547058, -0.04367825388908386, 0.2846253514289856, 0.19510318338871002, -0.0054887752048671246, 0.9843123555183411, 0.14546452462673187, 0.04140549898147583, -0.06273742020130157, 0.28947895765304565, -0.20250943303108215, 0.028798094019293785, 0.9849475026130676, -0.17553295195102692, 0.07328353822231293, 0.024292023852467537]} +{"t": 2.699, "q": [-0.34780117869377136, -0.011891759932041168, 0.00542371766641736, 0.6288213133811951, -0.31499147415161133, 0.017795730382204056, -0.38732674717903137, 0.0004942826926708221, -0.005035352893173695, 0.6027266383171082, -0.2820218801498413, -1.225113828695612e-05, 0.0038970415480434895, 0.00579480268061161, -0.04365847632288933, 0.2846013903617859, 0.19510318338871002, -0.005476790945976973, 0.9843243360519409, 0.14552444219589233, 0.04141748324036598, -0.06276138871908188, 0.289419025182724, -0.20250943303108215, 0.028786109760403633, 0.9849594831466675, -0.17550897598266602, 0.07325956970453262, 0.02430400811135769]} +{"t": 2.7157, "q": [-0.34784379601478577, -0.011891759932041168, 0.005437109619379044, 0.6288213133811951, -0.31499969959259033, 0.01781018078327179, -0.38733527064323425, 0.0004601942200679332, -0.005048744846135378, 0.6027266383171082, -0.28203436732292175, -4.951062237523729e-06, 0.0039506093598902225, 0.005802409257739782, -0.04366344213485718, 0.2846253514289856, 0.19511516392230988, -0.005464806687086821, 0.9843123555183411, 0.14551246166229248, 0.04141748324036598, -0.06274940073490143, 0.2893711030483246, -0.2024974524974823, 0.028810078278183937, 0.9849475026130676, -0.17547301948070526, 0.07323560118675232, 0.024339960888028145]} +{"t": 2.7325, "q": [-0.3478352725505829, -0.01190880499780178, 0.005437109619379044, 0.6288213133811951, -0.31499558687210083, 0.017802955582737923, -0.38733527064323425, 0.00046871634549461305, -0.00508892023935914, 0.6027266383171082, -0.28203436732292175, -4.951062237523729e-06, 0.004071136470884085, 0.0058176107704639435, -0.04363381490111351, 0.2846253514289856, 0.19511516392230988, -0.0055007594637572765, 0.9843243360519409, 0.1454046070575714, 0.04139351472258568, -0.06274940073490143, 0.2892872095108032, -0.2024974524974823, 0.02882206253707409, 0.9849594831466675, -0.17555691301822662, 0.07322361320257187, 0.024327976629137993]} +{"t": 2.7492, "q": [-0.34784379601478577, -0.01190880499780178, 0.005450501572340727, 0.6288042664527893, -0.31499147415161133, 0.01781023107469082, -0.38735231757164, 0.0004772384709212929, -0.005075528286397457, 0.6027436852455139, -0.2820386290550232, 1.6756346667534672e-05, 0.004111311864107847, 0.005802398081868887, -0.04362388327717781, 0.2846253514289856, 0.19511516392230988, -0.005476790945976973, 0.9843243360519409, 0.14550048112869263, 0.04141748324036598, -0.06276138871908188, 0.2892632484436035, -0.2024974524974823, 0.028798094019293785, 0.9849475026130676, -0.17554493248462677, 0.07327155023813248, 0.02431599237024784]} +{"t": 2.7659, "q": [-0.34784379601478577, -0.011917326599359512, 0.00542371766641736, 0.6288042664527893, -0.3150079846382141, 0.017795613035559654, -0.38735231757164, 0.0004772384709212929, -0.005062136333435774, 0.6027266383171082, -0.2820386290550232, 1.6756346667534672e-05, 0.004151487722992897, 0.005779587663710117, -0.04363865405321121, 0.2846253514289856, 0.19511516392230988, -0.005476790945976973, 0.9843243360519409, 0.14544056355953217, 0.041429467499256134, -0.06276138871908188, 0.28920331597328186, -0.2024974524974823, 0.028798094019293785, 0.9849594831466675, -0.17544905841350555, 0.07324758172035217, 0.02431599237024784]} +{"t": 2.7826, "q": [-0.34784379601478577, -0.01190880499780178, 0.005410325713455677, 0.6288127899169922, -0.31499969959259033, 0.01781018078327179, -0.38735231757164, 0.00046871634549461305, -0.005075528286397457, 0.6027181148529053, -0.2820426821708679, -4.8983501983457245e-06, 0.00416487967595458, 0.005756774451583624, -0.043643537908792496, 0.2846253514289856, 0.19511516392230988, -0.005476790945976973, 0.9843243360519409, 0.14542856812477112, 0.04141748324036598, -0.06273742020130157, 0.28917935490608215, -0.2024974524974823, 0.028798094019293785, 0.9849475026130676, -0.17547301948070526, 0.07325956970453262, 0.024339960888028145]} +{"t": 2.7995, "q": [-0.3478778600692749, -0.011900282464921474, 0.005410325713455677, 0.6288127899169922, -0.3150079846382141, 0.017795613035559654, -0.38735231757164, 0.00046871634549461305, -0.005035352893173695, 0.6027181148529053, -0.2820386290550232, 1.6756346667534672e-05, 0.004111311864107847, 0.005749179050326347, -0.04367813095450401, 0.2846493124961853, 0.19510318338871002, -0.005452822428196669, 0.9843363165855408, 0.1454046070575714, 0.04141748324036598, -0.06276138871908188, 0.2891434133052826, -0.20248547196388245, 0.028786109760403633, 0.9849235415458679, -0.17550897598266602, 0.07327155023813248, 0.02431599237024784]} +{"t": 2.8162, "q": [-0.3478352725505829, -0.01190880499780178, 0.00542371766641736, 0.6288042664527893, -0.3150700330734253, 0.01767195388674736, -0.38738641142845154, 0.0004516721237450838, -0.005021960940212011, 0.602735161781311, -0.2820427417755127, 9.561694241710939e-06, 0.004084527958184481, 0.005779593251645565, -0.043658435344696045, 0.2846253514289856, 0.19512715935707092, -0.005464806687086821, 0.9843243360519409, 0.14536865055561066, 0.041429467499256134, -0.06272543221712112, 0.2891434133052826, -0.2024734914302826, 0.02883404679596424, 0.9849475026130676, -0.17547301948070526, 0.07324758172035217, 0.02431599237024784]} +{"t": 2.8329, "q": [-0.34782674908638, -0.011883238330483437, 0.00542371766641736, 0.6288042664527893, -0.3150617480278015, 0.017686521634459496, -0.3873693645000458, 0.0004601942200679332, -0.005008568987250328, 0.6027181148529053, -0.28203850984573364, -1.2145714208600111e-05, 0.004097919911146164, 0.00579480268061161, -0.04365847632288933, 0.2846253514289856, 0.19510318338871002, -0.005452822428196669, 0.9843243360519409, 0.14546452462673187, 0.041429467499256134, -0.06273742020130157, 0.2891673743724823, -0.20248547196388245, 0.028786109760403633, 0.9849475026130676, -0.17554493248462677, 0.07325956970453262, 0.024327976629137993]} +{"t": 2.8498, "q": [-0.34784379601478577, -0.011857671663165092, 0.005410325713455677, 0.6288213133811951, -0.315057635307312, 0.01769379712641239, -0.3874034583568573, 0.00044314999831840396, -0.005021960940212011, 0.6027266383171082, -0.2820468842983246, 2.3670420432608807e-06, 0.004044352564960718, 0.005794800352305174, -0.04364858567714691, 0.2846253514289856, 0.19510318338871002, -0.005476790945976973, 0.9843243360519409, 0.1454046070575714, 0.04141748324036598, -0.06276138871908188, 0.28920331597328186, -0.20242555439472198, 0.028846031054854393, 0.9849954843521118, -0.17549699544906616, 0.07324758172035217, 0.0243759136646986]} +{"t": 2.8666, "q": [-0.3478352725505829, -0.011883238330483437, 0.00542371766641736, 0.6288042664527893, -0.31504935026168823, 0.017708346247673035, -0.3874204754829407, 0.0004516721237450838, -0.004968393128365278, 0.6027095913887024, -0.2820468842983246, 2.3670420432608807e-06, 0.004004176706075668, 0.005779596045613289, -0.04366832226514816, 0.2846253514289856, 0.19510318338871002, -0.005476790945976973, 0.9843243360519409, 0.1454046070575714, 0.04141748324036598, -0.06278535723686218, 0.2892392873764038, -0.20220983028411865, 0.02894190326333046, 0.9851992130279541, -0.17552095651626587, 0.07329551875591278, 0.024387897923588753]} +{"t": 2.8833, "q": [-0.34785231947898865, -0.011891759932041168, 0.00542371766641736, 0.6288213133811951, -0.3150617480278015, 0.01770102232694626, -0.3874119520187378, 0.0004516721237450838, -0.0049148257821798325, 0.602735161781311, -0.2820468842983246, 2.3670420432608807e-06, 0.004017568659037352, 0.005810009781271219, -0.043648626655340195, 0.2846013903617859, 0.19510318338871002, -0.005452822428196669, 0.9843243360519409, 0.14547650516033173, 0.04141748324036598, -0.06277336925268173, 0.2892392873764038, -0.2019461840391159, 0.02906174585223198, 0.9854508638381958, -0.17549699544906616, 0.07328353822231293, 0.02443583495914936]} +{"t": 2.9003, "q": [-0.34785231947898865, -0.011883238330483437, 0.005410325713455677, 0.6288213133811951, -0.315057635307312, 0.01769379712641239, -0.38743752241134644, 0.00044314999831840396, -0.004888041876256466, 0.6027266383171082, -0.28205105662345886, 9.614405826141592e-06, 0.003977392800152302, 0.005779596045613289, -0.04366832226514816, 0.2846253514289856, 0.19512715935707092, -0.005464806687086821, 0.9843243360519409, 0.14545254409313202, 0.04140549898147583, -0.06277336925268173, 0.28938308358192444, -0.2015986442565918, 0.029157619923353195, 0.9856306314468384, -0.17547301948070526, 0.07333147525787354, 0.02443583495914936]} +{"t": 2.917, "q": [-0.3478778600692749, -0.011874716728925705, 0.005410325713455677, 0.6288127899169922, -0.3150576055049896, 0.017708295956254005, -0.3875312805175781, 0.00044314999831840396, -0.0049148257821798325, 0.6027181148529053, -0.28204694390296936, 1.6809059161460027e-05, 0.004004176706075668, 0.005810012575238943, -0.04365851730108261, 0.2846253514289856, 0.19512715935707092, -0.005476790945976973, 0.9843243360519409, 0.14548850059509277, 0.041429467499256134, -0.06276138871908188, 0.289419025182724, -0.20121514797210693, 0.02930143103003502, 0.9861219525337219, -0.17544905841350555, 0.07334345579147339, 0.02443583495914936]} +{"t": 2.9337, "q": [-0.3478778600692749, -0.011866194196045399, 0.005410325713455677, 0.6288127899169922, -0.315065860748291, 0.017693746834993362, -0.38752275705337524, 0.0004346278728917241, -0.004847866017371416, 0.6027181148529053, -0.2820468842983246, 2.3670420432608807e-06, 0.003977392800152302, 0.00579480268061161, -0.04365847632288933, 0.2846253514289856, 0.19509120285511017, -0.005464806687086821, 0.9843243360519409, 0.14541658759117126, 0.041429467499256134, -0.06277336925268173, 0.28945499658584595, -0.20079569518566132, 0.029397305101156235, 0.9865893721580505, -0.17542508244514465, 0.07336742430925369, 0.024459803476929665]} +{"t": 2.9505, "q": [-0.3479290008544922, -0.011883238330483437, 0.005410325713455677, 0.6288127899169922, -0.315057635307312, 0.01769379712641239, -0.38756537437438965, 0.00044314999831840396, -0.004901433829218149, 0.6027095913887024, -0.2820552587509155, 1.686176983639598e-05, 0.004004176706075668, 0.005779596045613289, -0.04366832226514816, 0.2846253514289856, 0.19511516392230988, -0.005476790945976973, 0.9843243360519409, 0.14536865055561066, 0.04139351472258568, -0.06276138871908188, 0.28947895765304565, -0.2003762423992157, 0.02949317917227745, 0.9869848489761353, -0.1754370778799057, 0.07337941229343414, 0.024531709030270576]} +{"t": 2.9674, "q": [-0.34794604778289795, -0.011866194196045399, 0.005410325713455677, 0.6288042664527893, -0.3150617480278015, 0.01770102232694626, -0.3875824213027954, 0.0004346278728917241, -0.004861257970333099, 0.6027181148529053, -0.28205519914627075, 2.4197540824388852e-06, 0.003977392800152302, 0.00578719936311245, -0.043663401156663895, 0.2846253514289856, 0.19510318338871002, -0.005476790945976973, 0.9843243360519409, 0.14542856812477112, 0.041429467499256134, -0.06274940073490143, 0.2894909381866455, -0.20000474154949188, 0.029565082862973213, 0.9873204231262207, -0.17547301948070526, 0.07340338081121445, 0.02455567754805088]} +{"t": 2.9841, "q": [-0.34795457124710083, -0.011866194196045399, 0.005437109619379044, 0.6288127899169922, -0.3150699734687805, 0.01770097203552723, -0.38761648535728455, 0.00044314999831840396, -0.004847866017371416, 0.6026840209960938, -0.2820594310760498, 2.4109134756145068e-05, 0.0039506093598902225, 0.005779596045613289, -0.04366832226514816, 0.2846253514289856, 0.19511516392230988, -0.005476790945976973, 0.9843243360519409, 0.14542856812477112, 0.041429467499256134, -0.06276138871908188, 0.28950291872024536, -0.19969314336776733, 0.029684925451874733, 0.9875960350036621, -0.1754610389471054, 0.07340338081121445, 0.024579646065831184]} +{"t": 3.0008, "q": [-0.34795457124710083, -0.011874716728925705, 0.005450501572340727, 0.6288127899169922, -0.3150699734687805, 0.017715489491820335, -0.3876335322856903, 0.0004346278728917241, -0.004847866017371416, 0.6027010679244995, -0.28205519914627075, 2.4197540824388852e-06, 0.004030960611999035, 0.005810006987303495, -0.04363873600959778, 0.28463733196258545, 0.19511516392230988, -0.005476790945976973, 0.9843243360519409, 0.14544056355953217, 0.041429467499256134, -0.06274940073490143, 0.28950291872024536, -0.1994774341583252, 0.02972087822854519, 0.9877278804779053, -0.1754850149154663, 0.07342734932899475, 0.02455567754805088]} +{"t": 3.0176, "q": [-0.3479290008544922, -0.011874716728925705, 0.005530852824449539, 0.6287616491317749, -0.3150700032711029, 0.017686471343040466, -0.38765057921409607, 0.0004346278728917241, -0.004928217735141516, 0.602666974067688, -0.28205105662345886, 9.614405826141592e-06, 0.003977392800152302, 0.005779596045613289, -0.04366832226514816, 0.28428977727890015, 0.19301792979240417, -0.004853611346334219, 0.9849834442138672, 0.14547650516033173, 0.041501373052597046, -0.06289321184158325, 0.2885681688785553, -0.1977277249097824, 0.030356042087078094, 0.9900168180465698, -0.17558088898658752, 0.07396663725376129, 0.02448377199470997]} +{"t": 3.0343, "q": [-0.34798866510391235, -0.011832104995846748, 0.005450501572340727, 0.6288042664527893, -0.3150741457939148, 0.017679179087281227, -0.3876420557498932, 0.0004346278728917241, -0.004968393128365278, 0.6026584506034851, -0.2820468842983246, 2.3670420432608807e-06, 0.0039506093598902225, 0.005749181844294071, -0.04368802160024643, 0.2834988236427307, 0.19120831787586212, -0.004422178957611322, 0.9863616824150085, 0.14548850059509277, 0.04164518415927887, -0.06291718035936356, 0.2868663966655731, -0.1955825537443161, 0.03057175874710083, 0.9934802651405334, -0.17552095651626587, 0.07451791316270828, 0.02436392940580845]} +{"t": 3.0511, "q": [-0.3480057120323181, -0.011840627528727055, 0.005410325713455677, 0.6288127899169922, -0.3150782287120819, 0.017700940370559692, -0.3876335322856903, 0.00044314999831840396, -0.004968393128365278, 0.602666974067688, -0.28205934166908264, -4.79279515275266e-06, 0.004017568659037352, 0.005741575732827187, -0.04368305578827858, 0.2826000154018402, 0.1886197179555893, -0.004542021546512842, 0.9878596663475037, 0.14545254409313202, 0.041681136935949326, -0.06298908591270447, 0.2855001986026764, -0.19289809465408325, 0.031218906864523888, 0.9960688948631287, -0.17550897598266602, 0.07485347241163254, 0.0243759136646986]} +{"t": 3.0679, "q": [-0.3480057120323181, -0.011874716728925705, 0.005410325713455677, 0.6288213133811951, -0.3150576055049896, 0.017708295956254005, -0.3876335322856903, 0.0004261057765688747, -0.0049817850813269615, 0.602666974067688, -0.2820427417755127, 9.561694241710939e-06, 0.004030960611999035, 0.005764383357018232, -0.04365839064121246, 0.28178510069847107, 0.18458104133605957, -0.004554005805402994, 0.9893816709518433, 0.14544056355953217, 0.04169312119483948, -0.06298908591270447, 0.283846378326416, -0.18953052163124084, 0.03141065314412117, 0.9981301426887512, -0.17550897598266602, 0.07498529553413391, 0.02436392940580845]} +{"t": 3.0846, "q": [-0.3479716181755066, -0.011866194196045399, 0.005437109619379044, 0.6288042664527893, -0.3150079846382141, 0.017795613035559654, -0.3876335322856903, 0.0004516721237450838, -0.004955001175403595, 0.6026840209960938, -0.2820385694503784, 2.2963020001043333e-06, 0.004044352564960718, 0.005764383357018232, -0.04365839064121246, 0.28053873777389526, 0.1795836091041565, -0.004673847928643227, 0.991946280002594, 0.14551246166229248, 0.04169312119483948, -0.06309694796800613, 0.28191691637039185, -0.18552778661251068, 0.03147057443857193, 1.0005030632019043, -0.17553295195102692, 0.07520101219415665, 0.02436392940580845]} +{"t": 3.1013, "q": [-0.3479716181755066, -0.011866194196045399, 0.00546389352530241, 0.6287872195243835, -0.3150079548358917, 0.01781013049185276, -0.3876335322856903, 0.0004516721237450838, -0.004968393128365278, 0.6026840209960938, -0.2820427417755127, 9.561694241710939e-06, 0.004071136470884085, 0.00575679074972868, -0.0437028743326664, 0.27934029698371887, 0.17349563539028168, -0.004637895151972771, 0.9945349097251892, 0.14544056355953217, 0.041741058230400085, -0.06312091648578644, 0.2801312506198883, -0.18103370070457458, 0.03147057443857193, 1.0029717683792114, -0.17552095651626587, 0.07524894922971725, 0.024351945146918297]} +{"t": 3.1181, "q": [-0.3479716181755066, -0.011883238330483437, 0.00542371766641736, 0.6288127899169922, -0.3150162100791931, 0.01781008206307888, -0.3875824213027954, 0.00044314999831840396, -0.005008568987250328, 0.602666974067688, -0.28205105662345886, 9.614405826141592e-06, 0.004111311864107847, 0.005817618686705828, -0.04366348311305046, 0.27799805998802185, 0.16701216995716095, -0.004733768757432699, 0.9974590539932251, 0.14550048112869263, 0.04177701100707054, -0.06325273960828781, 0.2781538665294647, -0.17619207501411438, 0.03177018091082573, 1.0059318542480469, -0.17550897598266602, 0.07532085478305817, 0.0243759136646986]} +{"t": 3.1348, "q": [-0.3479630947113037, -0.011874716728925705, 0.005410325713455677, 0.6288042664527893, -0.3150162398815155, 0.01778106391429901, -0.3875909447669983, 0.0004346278728917241, -0.005048744846135378, 0.6026840209960938, -0.2820427417755127, 9.561694241710939e-06, 0.004205055069178343, 0.005810009781271219, -0.043648626655340195, 0.2769314646720886, 0.15965384244918823, -0.0047217849642038345, 0.9998438954353333, 0.14550048112869263, 0.04176502674818039, -0.06324075907468796, 0.27645209431648254, -0.17123061418533325, 0.03183010220527649, 1.008160948753357, -0.17547301948070526, 0.07545268535614014, 0.0243759136646986]} +{"t": 3.1515, "q": [-0.3479630947113037, -0.011883238330483437, 0.005410325713455677, 0.6288042664527893, -0.31499141454696655, 0.0178537480533123, -0.38757389783859253, 0.00044314999831840396, -0.005008568987250328, 0.6027010679244995, -0.2820426821708679, -4.8983501983457245e-06, 0.004178271628916264, 0.005779596045613289, -0.04366832226514816, 0.2760806083679199, 0.1523195058107376, -0.004793690051883459, 1.0021928548812866, 0.14546452462673187, 0.04178899526596069, -0.06330067664384842, 0.27435487508773804, -0.1667005717754364, 0.03191399201750755, 1.01091730594635, -0.17549699544906616, 0.07552459090948105, 0.0243759136646986]} +{"t": 3.1683, "q": [-0.3479630947113037, -0.011874716728925705, 0.00546389352530241, 0.6288127899169922, -0.31498733162879944, 0.017817506566643715, -0.38757389783859253, 0.0004516721237450838, -0.005008568987250328, 0.6027095913887024, -0.2820426821708679, -4.8983501983457245e-06, 0.004017568659037352, 0.005703533999621868, -0.043618667870759964, 0.2754933834075928, 0.1444578468799591, -0.004889564123004675, 1.0042661428451538, 0.14541658759117126, 0.04177701100707054, -0.06338457018136978, 0.2719700038433075, -0.1618110090494156, 0.03184208646416664, 1.0135178565979004, -0.17547301948070526, 0.07571633160114288, 0.02436392940580845]} +{"t": 3.185, "q": [-0.3479716181755066, -0.011857671663165092, 0.005437109619379044, 0.6288127899169922, -0.31498730182647705, 0.01783200539648533, -0.3875824213027954, 0.0004601942200679332, -0.005021960940212011, 0.6027181148529053, -0.2820385694503784, 2.2963020001043333e-06, 0.003964001312851906, 0.005642684176564217, -0.043578941375017166, 0.2751098871231079, 0.1369677037000656, -0.0049614692106842995, 1.00566828250885, 0.14544056355953217, 0.04180097579956055, -0.06340853869915009, 0.26988476514816284, -0.15700533986091614, 0.03177018091082573, 1.0152915716171265, -0.17552095651626587, 0.0757882371544838, 0.024339960888028145]} +{"t": 3.2018, "q": [-0.3479801416397095, -0.011815061792731285, 0.0053701503202319145, 0.6288383603096008, -0.31498318910598755, 0.017839280888438225, -0.387539803981781, 0.0005113269435241818, -0.005062136333435774, 0.6027436852455139, -0.2820427417755127, 9.561694241710939e-06, 0.003977392800152302, 0.005619865842163563, -0.04356404393911362, 0.274810254573822, 0.1291539967060089, -0.004865595605224371, 1.0067708492279053, 0.14545254409313202, 0.0418129600584507, -0.06332464516162872, 0.26764369010925293, -0.15175624191761017, 0.03183010220527649, 1.017053246498108, -0.17553295195102692, 0.07593204826116562, 0.02436392940580845]} +{"t": 3.2185, "q": [-0.34793752431869507, -0.011798016726970673, 0.005383542273193598, 0.628829836845398, -0.31499147415161133, 0.01781023107469082, -0.3875312805175781, 0.0005198490689508617, -0.005021960940212011, 0.6027436852455139, -0.2820386290550232, 1.6756346667534672e-05, 0.004004176706075668, 0.005650285165756941, -0.04356412962079048, 0.27435487508773804, 0.12163988500833511, -0.004817658569663763, 1.008220911026001, 0.14542856812477112, 0.041836928576231, -0.06328869611024857, 0.26509106159210205, -0.14644722640514374, 0.03185407072305679, 1.0188509225845337, -0.17552095651626587, 0.07599197328090668, 0.02436392940580845]} +{"t": 3.2352, "q": [-0.3479290008544922, -0.011806539259850979, 0.005329974461346865, 0.6288213133811951, -0.3149873912334442, 0.01778850518167019, -0.38757389783859253, 0.0005539375124499202, -0.004995177034288645, 0.602735161781311, -0.2820468842983246, 2.3670420432608807e-06, 0.004017568659037352, 0.005771978758275509, -0.043623797595500946, 0.2736957371234894, 0.11489276587963104, -0.004374242387712002, 1.010102391242981, 0.14532071352005005, 0.041908834129571915, -0.062006380409002304, 0.26246652007102966, -0.14161759614944458, 0.03196192905306816, 1.0207923650741577, -0.17544905841350555, 0.07603991031646729, 0.0243759136646986]} +{"t": 3.2519, "q": [-0.34790343046188354, -0.01172131858766079, 0.005316582508385181, 0.6288213133811951, -0.3149873614311218, 0.017803005874156952, -0.38755685091018677, 0.0006221143994480371, -0.004995177034288645, 0.6027777194976807, -0.2820301353931427, -2.6640442229108885e-05, 0.004017568659037352, 0.005870867520570755, -0.04371802136301994, 0.2724733352661133, 0.1095358207821846, -0.0036312201991677284, 1.012846827507019, 0.14539262652397156, 0.042028676718473434, -0.06058025732636452, 0.25999775528907776, -0.13711151480674744, 0.03199788182973862, 1.0230693817138672, -0.17549699544906616, 0.07606387883424759, 0.0243759136646986]} +{"t": 3.2688, "q": [-0.3479204773902893, -0.01172131858766079, 0.00512909609824419, 0.628829836845398, -0.3149791359901428, 0.017788555473089218, -0.3874971866607666, 0.0006221143994480371, -0.0049817850813269615, 0.6027862429618835, -0.28204676508903503, -2.6552916096989065e-05, 0.004807690624147654, 0.006045812740921974, -0.043842121958732605, 0.2710472345352173, 0.10723485052585602, -0.0017137442482635379, 1.0154473781585693, 0.14541658759117126, 0.04212455078959465, -0.059297945350408554, 0.2576847970485687, -0.1333005428314209, 0.03200986608862877, 1.0258616209030151, -0.1754850149154663, 0.0760878473520279, 0.0243759136646986]} +{"t": 3.2855, "q": [-0.34794604778289795, -0.011738361790776253, 0.00483447453007102, 0.6288213133811951, -0.3149626851081848, 0.017759637907147408, -0.3873608410358429, 0.0005539375124499202, -0.0049817850813269615, 0.6027862429618835, -0.2820633351802826, -4.088951027370058e-05, 0.005450501572340727, 0.006258775480091572, -0.043941598385572433, 0.2694533169269562, 0.1067914292216301, -7.190534961409867e-05, 1.0187909603118896, 0.14539262652397156, 0.04212455078959465, -0.05878262594342232, 0.25490447878837585, -0.12977717816829681, 0.03175819665193558, 1.0292651653289795, -0.17554493248462677, 0.07633951306343079, 0.0240643247961998]} +{"t": 3.3023, "q": [-0.34799718856811523, -0.011704273521900177, 0.00479429867118597, 0.6288213133811951, -0.3149585425853729, 0.017766913399100304, -0.3874119520187378, 0.0005368932615965605, -0.004955001175403595, 0.6028118133544922, -0.282071590423584, -5.527881148736924e-05, 0.005825474392622709, 0.00666182953864336, -0.04401698708534241, 0.2680271863937378, 0.10685135424137115, 0.001761681167408824, 1.0224940776824951, 0.14541658759117126, 0.04212455078959465, -0.05874667316675186, 0.25174063444137573, -0.12697286903858185, 0.03163835406303406, 1.0328484773635864, -0.17558088898658752, 0.07663912326097488, 0.02329733408987522]} +{"t": 3.319, "q": [-0.3481079638004303, -0.011712796054780483, 0.00479429867118597, 0.6288213133811951, -0.3150247633457184, 0.01762147806584835, -0.38751423358917236, 0.0005283711361698806, -0.004888041876256466, 0.6028203368186951, -0.28208404779434204, -6.240272341528907e-05, 0.005986177362501621, 0.007262552157044411, -0.043975040316581726, 0.2673201262950897, 0.10685135424137115, 0.002996056340634823, 1.0244594812393188, 0.1454046070575714, 0.04212455078959465, -0.05874667316675186, 0.24838505685329437, -0.12531904876232147, 0.03133874759078026, 1.036335825920105, -0.17552095651626587, 0.0770106315612793, 0.022889869287610054]} +{"t": 3.3357, "q": [-0.3481846749782562, -0.011695751920342445, 0.004847866017371416, 0.6287872195243835, -0.3150205910205841, 0.01764325238764286, -0.3875994384288788, 0.0005454153870232403, -0.00483447453007102, 0.6028032898902893, -0.28208404779434204, -6.240272341528907e-05, 0.005932609550654888, 0.007848130539059639, -0.04402211681008339, 0.2668048143386841, 0.10685135424137115, 0.003595267655327916, 1.0257657766342163, 0.1453806310892105, 0.0421125665307045, -0.05879461020231247, 0.24562868475914001, -0.1248876079916954, 0.0312788262963295, 1.0388405323028564, -0.1754850149154663, 0.07752595096826553, 0.02268613874912262]} +{"t": 3.3525, "q": [-0.34821876883506775, -0.011712796054780483, 0.004847866017371416, 0.6287786960601807, -0.3150164484977722, 0.01766502857208252, -0.38760796189308167, 0.0005624596378766, -0.00483447453007102, 0.6028203368186951, -0.28208819031715393, -6.961527105886489e-05, 0.005785298999398947, 0.008433744311332703, -0.04413841664791107, 0.2660737633705139, 0.10659968107938766, 0.0036551887169480324, 1.0271799564361572, 0.1454046070575714, 0.0421125665307045, -0.05880659446120262, 0.2431359589099884, -0.1248396709561348, 0.031123032793402672, 1.041189432144165, -0.17552095651626587, 0.07816112041473389, 0.022530343383550644]} +{"t": 3.3692, "q": [-0.34821024537086487, -0.011712796054780483, 0.004874649923294783, 0.628753125667572, -0.3150123655796051, 0.01764330267906189, -0.38761648535728455, 0.0005454153870232403, -0.004807690624147654, 0.6027862429618835, -0.28210070729255676, -6.231520092114806e-05, 0.005785298999398947, 0.008738026022911072, -0.044317763298749924, 0.26536670327186584, 0.10627610981464386, 0.0036551887169480324, 1.028174638748169, 0.14541658759117126, 0.0421125665307045, -0.05880659446120262, 0.24157801270484924, -0.12492356449365616, 0.031135017052292824, 1.0433826446533203, -0.1754850149154663, 0.0788322314620018, 0.022542327642440796]} +{"t": 3.3859, "q": [-0.3481846749782562, -0.011729840189218521, 0.004888041876256466, 0.6287446022033691, -0.3150288462638855, 0.01764320395886898, -0.3876335322856903, 0.0005368932615965605, -0.004861257970333099, 0.6028032898902893, -0.28213798999786377, -9.82009296421893e-05, 0.0057719070464372635, 0.008897816762328148, -0.04449155554175377, 0.26444390416145325, 0.10609634965658188, 0.0036791572347283363, 1.0291932821273804, 0.1454046070575714, 0.04212455078959465, -0.05880659446120262, 0.24055935442447662, -0.12489959597587585, 0.031135017052292824, 1.0456596612930298, -0.1754850149154663, 0.07928763329982758, 0.022602248936891556]} +{"t": 3.4027, "q": [-0.34816762804985046, -0.011729840189218521, 0.004888041876256466, 0.6286764740943909, -0.315032958984375, 0.017650427296757698, -0.3876335322856903, 0.0005454153870232403, -0.004901433829218149, 0.6027947664260864, -0.28215041756629944, -0.00010534287139307708, 0.005785298999398947, 0.008951082825660706, -0.044556111097335815, 0.2633293867111206, 0.10606039315462112, 0.0037510625552386045, 1.0307872295379639, 0.1454046070575714, 0.042088598012924194, -0.05878262594342232, 0.239912211894989, -0.1248876079916954, 0.031158985570073128, 1.0482481718063354, -0.1754610389471054, 0.07967112958431244, 0.022590264678001404]} +{"t": 3.4195, "q": [-0.348201721906662, -0.01172131858766079, 0.004888041876256466, 0.6286935210227966, -0.3150370717048645, 0.017657671123743057, -0.38765057921409607, 0.000570981705095619, -0.004968393128365278, 0.6027691960334778, -0.2821628153324127, -0.00012692682503256947, 0.005785298999398947, 0.008951082825660706, -0.044556111097335815, 0.2622627913951874, 0.10614427924156189, 0.003918841481208801, 1.0322492122650146, 0.14544056355953217, 0.0421125665307045, -0.058770641684532166, 0.23963657021522522, -0.12492356449365616, 0.03117096982896328, 1.0500218868255615, -0.1754370778799057, 0.07999470084905624, 0.022614233195781708]} +{"t": 3.4363, "q": [-0.34826987981796265, -0.011738361790776253, 0.004955001175403595, 0.628667950630188, -0.31499573588371277, 0.017730439081788063, -0.387727290391922, 0.0005795038305222988, -0.004995177034288645, 0.6027606725692749, -0.28215450048446655, -0.00012697954662144184, 0.005691555794328451, 0.008943464607000351, -0.04453134909272194, 0.260980486869812, 0.1061922162771225, 0.003990747034549713, 1.0340348482131958, 0.1453566700220108, 0.0421125665307045, -0.058770641684532166, 0.23950473964214325, -0.1248876079916954, 0.031147001311182976, 1.0516157150268555, -0.1754131019115448, 0.08010256290435791, 0.022602248936891556]} +{"t": 3.4531, "q": [-0.3482784032821655, -0.011738361790776253, 0.004995177034288645, 0.6286509037017822, -0.31500402092933655, 0.017701370641589165, -0.3877613842487335, 0.0005880259559489787, -0.005035352893173695, 0.6027862429618835, -0.28215450048446655, -0.00012697954662144184, 0.005637987982481718, 0.009004268795251846, -0.04447232186794281, 0.2594345211982727, 0.10626412183046341, 0.004050668329000473, 1.0360362529754639, 0.14539262652397156, 0.0421125665307045, -0.058758657425642014, 0.23918116092681885, -0.12492356449365616, 0.031123032793402672, 1.0535931587219238, -0.17537714540958405, 0.08016248047351837, 0.022614233195781708]} +{"t": 3.4701, "q": [-0.34826135635375977, -0.011738361790776253, 0.005048744846135378, 0.6286594271659851, -0.31500402092933655, 0.017701370641589165, -0.3877613842487335, 0.0005795038305222988, -0.005062136333435774, 0.6027862429618835, -0.28215861320495605, -0.00013417418813332915, 0.005664771888405085, 0.009034686721861362, -0.044472478330135345, 0.25767281651496887, 0.10633602738380432, 0.00407463638111949, 1.038265347480774, 0.14541658759117126, 0.0421125665307045, -0.058770641684532166, 0.23873774707317352, -0.12489959597587585, 0.031087080016732216, 1.055678367614746, -0.17537714540958405, 0.08022240549325943, 0.022578280419111252]} +{"t": 3.4868, "q": [-0.34821876883506775, -0.011755406856536865, 0.005075528286397457, 0.6286423802375793, -0.31499576568603516, 0.017701420933008194, -0.3877784311771393, 0.0006050702068023384, -0.0051424880512058735, 0.6027947664260864, -0.28215867280960083, -0.00011973217624472454, 0.00571833923459053, 0.009065126068890095, -0.04451218992471695, 0.2555396258831024, 0.10638396441936493, 0.004098604898899794, 1.041632890701294, 0.14536865055561066, 0.0421125665307045, -0.058758657425642014, 0.23835425078868866, -0.12489959597587585, 0.031087080016732216, 1.0572603940963745, -0.1754370778799057, 0.08027034252882004, 0.022554311901330948]} +{"t": 3.5036, "q": [-0.34817615151405334, -0.01178097352385521, 0.005196055397391319, 0.6286594271659851, -0.31497922539711, 0.01773051917552948, -0.38774433732032776, 0.0005454153870232403, -0.00516927195712924, 0.6028459072113037, -0.28214624524116516, -0.00011259023449383676, 0.005651379935443401, 0.009118352085351944, -0.04450751468539238, 0.25390976667404175, 0.1064918264746666, 0.004098604898899794, 1.0437061786651611, 0.14542856812477112, 0.042148519307374954, -0.058770641684532166, 0.23743146657943726, -0.1248396709561348, 0.031039142981171608, 1.0589021444320679, -0.1754131019115448, 0.08034224808216095, 0.022518359124660492]} +{"t": 3.5203, "q": [-0.34817615151405334, -0.011798016726970673, 0.005236231256276369, 0.6286764740943909, -0.3149791955947876, 0.01775955595076084, -0.38774433732032776, 0.0005880259559489787, -0.005222839303314686, 0.602897047996521, -0.2821255326271057, -9.104109631152824e-05, 0.005624596029520035, 0.009118357673287392, -0.044517405331134796, 0.2523518204689026, 0.10652777552604675, 0.0041585261933505535, 1.045120358467102, 0.14545254409313202, 0.04218447208404541, -0.058770641684532166, 0.23620907962322235, -0.1248396709561348, 0.031027158722281456, 1.0603402853012085, -0.17540112137794495, 0.08037819713354111, 0.022530343383550644]} +{"t": 3.5371, "q": [-0.348201721906662, -0.011815061792731285, 0.005303190555423498, 0.6286935210227966, -0.3149709403514862, 0.01775958761572838, -0.38774433732032776, 0.0005539375124499202, -0.0051424880512058735, 0.602897047996521, -0.2821173071861267, -6.220977229531854e-05, 0.0055442447774112225, 0.009110745042562485, -0.044502533972263336, 0.25096166133880615, 0.10659968107938766, 0.0041824947111308575, 1.0462827682495117, 0.14550048112869263, 0.04223240911960602, -0.05878262594342232, 0.23450732231140137, -0.12489959597587585, 0.031075095757842064, 1.0623536109924316, -0.17540112137794495, 0.08043812215328217, 0.022542327642440796]} +{"t": 3.5538, "q": [-0.3481846749782562, -0.011840627528727055, 0.005329974461346865, 0.6286935210227966, -0.314987450838089, 0.017744988203048706, -0.38774433732032776, 0.0005454153870232403, -0.005155880004167557, 0.602897047996521, -0.2820923924446106, -6.23679079581052e-05, 0.005517460871487856, 0.00912595447152853, -0.044502608478069305, 0.24921196699142456, 0.10667158663272858, 0.0041824947111308575, 1.0482721328735352, 0.14550048112869263, 0.042280346155166626, -0.058758657425642014, 0.23241007328033447, -0.12487562745809555, 0.031158985570073128, 1.0645227432250977, -0.1754370778799057, 0.08049803972244263, 0.022662170231342316]} +{"t": 3.5706, "q": [-0.34817615151405334, -0.011866194196045399, 0.005343366414308548, 0.6287105679512024, -0.3149915933609009, 0.017723195254802704, -0.38775286078453064, 0.0005198490689508617, -0.0051424880512058735, 0.6029481887817383, -0.28209659457206726, -4.066063411301002e-05, 0.005557636730372906, 0.009087950922548771, -0.044537030160427094, 0.24745027720928192, 0.10674349218606949, 0.004206463228911161, 1.0508008003234863, 0.14552444219589233, 0.04230431467294693, -0.058758657425642014, 0.23004919290542603, -0.12491157650947571, 0.031254857778549194, 1.0673271417617798, -0.1754610389471054, 0.08053399622440338, 0.022793997079133987]} +{"t": 3.5873, "q": [-0.3481420576572418, -0.01184915006160736, 0.005383542273193598, 0.6287446022033691, -0.31501641869544983, 0.01769404485821724, -0.387727290391922, 0.0005113269435241818, -0.00516927195712924, 0.6029822826385498, -0.28209659457206726, -4.066063411301002e-05, 0.005557636730372906, 0.00908796675503254, -0.044566698372364044, 0.24597622454166412, 0.10682738572359085, 0.0041944789700210094, 1.053281545639038, 0.14550048112869263, 0.04231629893183708, -0.05874667316675186, 0.22657376527786255, -0.12536698579788208, 0.031314779072999954, 1.0709342956542969, -0.17550897598266602, 0.08066581934690475, 0.022913837805390358]} +{"t": 3.604, "q": [-0.34813353419303894, -0.011840627528727055, 0.005356758367270231, 0.6287276148796082, -0.3150329291820526, 0.017664946615695953, -0.38774433732032776, 0.0005198490689508617, -0.005155880004167557, 0.60304194688797, -0.28210070729255676, -6.231520092114806e-05, 0.005530852824449539, 0.009080369956791401, -0.044581491500139236, 0.24512533843517303, 0.10693524032831192, 0.0041944789700210094, 1.055139183998108, 0.14547650516033173, 0.042328283190727234, -0.058758657425642014, 0.22336198389530182, -0.12545086443424225, 0.03136271610856056, 1.0742778778076172, -0.17553295195102692, 0.0809055045247078, 0.02298574335873127]} +{"t": 3.6209, "q": [-0.3481846749782562, -0.011840627528727055, 0.005249623209238052, 0.6287276148796082, -0.3150205612182617, 0.017657753080129623, -0.3877784311771393, 0.0005113269435241818, -0.00508892023935914, 0.6030248999595642, -0.2821049392223358, -4.062581865582615e-05, 0.005678163841366768, 0.009095584973692894, -0.04459146037697792, 0.24432240426540375, 0.10697119683027267, 0.0041824947111308575, 1.0570565462112427, 0.14550048112869263, 0.04231629893183708, -0.058770641684532166, 0.22070148587226868, -0.1255347579717636, 0.03136271610856056, 1.0776695013046265, -0.17553295195102692, 0.08102534711360931, 0.023021696135401726]} +{"t": 3.6376, "q": [-0.348201721906662, -0.011815061792731285, 0.00508892023935914, 0.6287190914154053, -0.3150247037410736, 0.017650477588176727, -0.38774433732032776, 0.0004772384709212929, -0.005102312192320824, 0.6030589938163757, -0.2821131944656372, -5.501512350747362e-05, 0.006039745174348354, 0.009103202261030674, -0.0446162223815918, 0.24339962005615234, 0.10693524032831192, 0.004218447487801313, 1.0593096017837524, 0.14545254409313202, 0.04225637763738632, -0.05878262594342232, 0.21880798041820526, -0.1255587339401245, 0.031374700367450714, 1.0799823999404907, -0.17552095651626587, 0.08119312673807144, 0.023021696135401726]} +{"t": 3.6543, "q": [-0.34826135635375977, -0.011798016726970673, 0.004968393128365278, 0.6287105679512024, -0.3150205612182617, 0.017657753080129623, -0.3877699077129364, 0.0004942826926708221, -0.005062136333435774, 0.6030504703521729, -0.28213798999786377, -9.82009296421893e-05, 0.006294190883636475, 0.00911841168999672, -0.044616300612688065, 0.2425607144832611, 0.10689929127693176, 0.0041944789700210094, 1.0621978044509888, 0.14539262652397156, 0.0421125665307045, -0.058770641684532166, 0.21705828607082367, -0.12559467554092407, 0.03145859017968178, 1.0822235345840454, -0.17549699544906616, 0.08144479244947433, 0.023021696135401726]} +{"t": 3.6712, "q": [-0.34831249713897705, -0.011746884323656559, 0.004888041876256466, 0.6287105679512024, -0.3150123357772827, 0.017657803371548653, -0.3878210186958313, 0.0005113269435241818, -0.005021960940212011, 0.60304194688797, -0.28215858340263367, -0.00014861620729789138, 0.006307582836598158, 0.009110793471336365, -0.04459153860807419, 0.2424888163805008, 0.10675548017024994, 0.004230431281030178, 1.0634441375732422, 0.1454046070575714, 0.042160503566265106, -0.058758657425642014, 0.21522469818592072, -0.12570254504680634, 0.03139866888523102, 1.084356665611267, -0.17553295195102692, 0.08166050910949707, 0.023069633170962334]} +{"t": 3.688, "q": [-0.3484147787094116, -0.011738361790776253, 0.00483447453007102, 0.6286764740943909, -0.3150288462638855, 0.01764320395886898, -0.38793182373046875, 0.0005880259559489787, -0.0049817850813269615, 0.6030334234237671, -0.2821792960166931, -0.00017016535275615752, 0.006307582836598158, 0.009125986136496067, -0.044561948627233505, 0.24242889881134033, 0.10667158663272858, 0.004218447487801313, 1.0641632080078125, 0.14536865055561066, 0.0421125665307045, -0.05874667316675186, 0.21352294087409973, -0.12593023478984833, 0.031374700367450714, 1.0862621068954468, -0.17552095651626587, 0.08179233968257904, 0.02311757020652294]} +{"t": 3.7049, "q": [-0.34849146008491516, -0.011712796054780483, 0.004780906718224287, 0.628667950630188, -0.315024733543396, 0.017635978758335114, -0.38802555203437805, 0.0006221143994480371, -0.0049817850813269615, 0.60304194688797, -0.28222471475601196, -0.00024932442465797067, 0.006254015490412712, 0.009110772050917149, -0.04455197975039482, 0.2422850877046585, 0.10663563758134842, 0.004230431281030178, 1.0644748210906982, 0.14536865055561066, 0.04212455078959465, -0.05874667316675186, 0.21216872334480286, -0.12616991996765137, 0.03136271610856056, 1.0881916284561157, -0.17549699544906616, 0.08191218227148056, 0.023153522983193398]} +{"t": 3.7218, "q": [-0.3484829366207123, -0.011678706854581833, 0.004767514765262604, 0.6286509037017822, -0.31498342752456665, 0.017679745331406593, -0.3880085051059723, 0.0006988134700804949, -0.0049817850813269615, 0.6030504703521729, -0.28223705291748047, -0.0002853682963177562, 0.006200447678565979, 0.00911837350577116, -0.04454707354307175, 0.24202142655849457, 0.10665960609912872, 0.004230431281030178, 1.064618706703186, 0.1454046070575714, 0.042100582271814346, -0.058770641684532166, 0.21104221045970917, -0.1263856440782547, 0.031374700367450714, 1.0902289152145386, -0.17549699544906616, 0.08193615078926086, 0.0231774915009737]} +{"t": 3.7386, "q": [-0.3484829366207123, -0.011619052849709988, 0.004740730859339237, 0.6286338567733765, -0.31499171257019043, 0.01766519621014595, -0.38802555203437805, 0.0008010788587853312, -0.004928217735141516, 0.60304194688797, -0.2822742462158203, -0.00035013805609196424, 0.0060933125205338, 0.009110772050917149, -0.04455197975039482, 0.24160197377204895, 0.10668357461690903, 0.004230431281030178, 1.064798355102539, 0.14534468948841095, 0.0421125665307045, -0.058758657425642014, 0.20964005589485168, -0.12679310142993927, 0.031326763331890106, 1.0920385122299194, -0.17552095651626587, 0.08192416280508041, 0.02316550724208355]} +{"t": 3.7554, "q": [-0.34844884276390076, -0.011550875380635262, 0.004727339372038841, 0.6286168098449707, -0.3149958550930023, 0.017657902091741562, -0.3880425989627838, 0.0009203884401358664, -0.005008568987250328, 0.6030760407447815, -0.2823031544685364, -0.0004005185328423977, 0.0059995693154633045, 0.009110783226788044, -0.044571757316589355, 0.24090689420700073, 0.10675548017024994, 0.004230431281030178, 1.0651220083236694, 0.14539262652397156, 0.0421125665307045, -0.05873468890786171, 0.20742297172546387, -0.12766794860363007, 0.03141065314412117, 1.0938482284545898, -0.1754610389471054, 0.08194813132286072, 0.023249397054314613]} +{"t": 3.7722, "q": [-0.3484403192996979, -0.011567920446395874, 0.004713947419077158, 0.6286253333091736, -0.3149876296520233, 0.017643451690673828, -0.3880425989627838, 0.0009800433181226254, -0.005008568987250328, 0.6031186580657959, -0.2823486626148224, -0.0004652355855796486, 0.0059995693154633045, 0.009110772050917149, -0.04455197975039482, 0.23999609053134918, 0.1068153977394104, 0.004230431281030178, 1.0654215812683105, 0.14539262652397156, 0.042160503566265106, -0.05873468890786171, 0.204594686627388, -0.12932176887989044, 0.03142263740301132, 1.095573902130127, -0.17553295195102692, 0.08191218227148056, 0.02335725538432598]} +{"t": 3.789, "q": [-0.3484658896923065, -0.011550875380635262, 0.004700555466115475, 0.6286253333091736, -0.3149835169315338, 0.01763622649013996, -0.3880425989627838, 0.0010396981379017234, -0.004968393128365278, 0.6031186580657959, -0.2823815941810608, -0.0005516947130672634, 0.006026353221386671, 0.00908796675503254, -0.044566698372364044, 0.23906132578849792, 0.10692325979471207, 0.004230431281030178, 1.0658769607543945, 0.1453087329864502, 0.042208440601825714, -0.05874667316675186, 0.2018503099679947, -0.13139504194259644, 0.03136271610856056, 1.097227692604065, -0.17554493248462677, 0.08190019428730011, 0.02340519241988659]} +{"t": 3.8057, "q": [-0.348431795835495, -0.011567920446395874, 0.004553244449198246, 0.6286253333091736, -0.3149629533290863, 0.017600083723664284, -0.3879659175872803, 0.001065264455974102, -0.005062136333435774, 0.6031271815299988, -0.28238576650619507, -0.0005444473354145885, 0.006079920567572117, 0.009034753777086735, -0.044601038098335266, 0.23828235268592834, 0.10693524032831192, 0.004254399798810482, 1.0664881467819214, 0.1453326940536499, 0.04225637763738632, -0.058758657425642014, 0.1983509063720703, -0.13495436310768127, 0.03141065314412117, 1.0987616777420044, -0.1754850149154663, 0.08188821375370026, 0.023453129455447197]} +{"t": 3.8226, "q": [-0.3484147787094116, -0.011533831246197224, 0.00445950124412775, 0.6286338567733765, -0.3149547278881073, 0.01758563332259655, -0.38793182373046875, 0.0011504855938255787, -0.005035352893173695, 0.6031271815299988, -0.2823857069015503, -0.0005588893545791507, 0.0060933125205338, 0.008989164605736732, -0.04467003047466278, 0.23782694339752197, 0.10694722831249237, 0.00424241553992033, 1.067183256149292, 0.14534468948841095, 0.042280346155166626, -0.05873468890786171, 0.1942882537841797, -0.13955630362033844, 0.03159041702747345, 1.099984049797058, -0.17549699544906616, 0.08190019428730011, 0.023632891476154327]} +{"t": 3.8396, "q": [-0.348389208316803, -0.01160200871527195, 0.00445950124412775, 0.6286509037017822, -0.3149506151676178, 0.017578409984707832, -0.38793182373046875, 0.001193096162751317, -0.005048744846135378, 0.6031186580657959, -0.28237736225128174, -0.0005733841098845005, 0.006106704473495483, 0.008905556052923203, -0.04474377632141113, 0.23768313229084015, 0.10694722831249237, 0.00424241553992033, 1.067530870437622, 0.14541658759117126, 0.04230431467294693, -0.05872270464897156, 0.19003385305404663, -0.1450570672750473, 0.031626369804143906, 1.1002837419509888, -0.17544905841350555, 0.0818762257695198, 0.023800671100616455]} +{"t": 3.8563, "q": [-0.348389208316803, -0.011559397913515568, 0.00445950124412775, 0.6286509037017822, -0.31497541069984436, 0.017534758895635605, -0.38793182373046875, 0.001184574095532298, -0.005021960940212011, 0.6031186580657959, -0.28240230679512024, -0.00057324388762936, 0.0060933125205338, 0.008799118921160698, -0.044792722910642624, 0.23773106932640076, 0.10697119683027267, 0.004254399798810482, 1.0679502487182617, 0.14541658759117126, 0.04230431467294693, -0.05872270464897156, 0.18485666811466217, -0.15106116235256195, 0.03151851147413254, 1.100643277168274, -0.17544905841350555, 0.08190019428730011, 0.023848608136177063]} +{"t": 3.8731, "q": [-0.3484233021736145, -0.011567920446395874, 0.004432717338204384, 0.628667950630188, -0.31497129797935486, 0.017527516931295395, -0.387914776802063, 0.001184574095532298, -0.005048744846135378, 0.6031271815299988, -0.282389760017395, -0.0005949859623797238, 0.006106704473495483, 0.008707907050848007, -0.044871438294649124, 0.23765917122364044, 0.10703111439943314, 0.004338289611041546, 1.0687772035598755, 0.14539262652397156, 0.042280346155166626, -0.05872270464897156, 0.17945179343223572, -0.1585393100976944, 0.03148255869746208, 1.1005712747573853, -0.1754850149154663, 0.08186424523591995, 0.02382463961839676]} +{"t": 3.8901, "q": [-0.34840625524520874, -0.011525308713316917, 0.004272014833986759, 0.628667950630188, -0.31495893001556396, 0.01753484085202217, -0.387914776802063, 0.001184574095532298, -0.00508892023935914, 0.6031016111373901, -0.2823980748653412, -0.0005949332262389362, 0.006280798930674791, 0.008502645418047905, -0.04498426616191864, 0.23735956847667694, 0.10705508291721344, 0.00436225812882185, 1.0701314210891724, 0.14542856812477112, 0.04225637763738632, -0.05872270464897156, 0.17434650659561157, -0.16701216995716095, 0.031446605920791626, 1.100595235824585, -0.17552095651626587, 0.0818762257695198, 0.023788686841726303]} +{"t": 3.9069, "q": [-0.348431795835495, -0.011525308713316917, 0.004097919911146164, 0.6286935210227966, -0.31497544050216675, 0.0175202414393425, -0.38784658908843994, 0.0011504855938255787, -0.005222839303314686, 0.6030845642089844, -0.2824229598045349, -0.0006092171533964574, 0.00642810994759202, 0.008244171738624573, -0.045131467282772064, 0.23723971843719482, 0.10717492550611496, 0.004386226646602154, 1.0711380243301392, 0.14541658759117126, 0.04224439337849617, -0.058710720390081406, 0.16951686143875122, -0.17649167776107788, 0.031506527215242386, 1.1004635095596313, -0.17553295195102692, 0.08173241466283798, 0.023752734065055847]} +{"t": 3.9236, "q": [-0.3484147787094116, -0.011533831246197224, 0.003990784753113985, 0.6286935210227966, -0.3150457441806793, 0.01738201454281807, -0.3878636360168457, 0.001141963410191238, -0.005263015162199736, 0.6030675172805786, -0.28248491883277893, -0.0007171726902015507, 0.006588812451809645, 0.008069274947047234, -0.045175276696681976, 0.23729965090751648, 0.10717492550611496, 0.0043982104398310184, 1.0720728635787964, 0.14536865055561066, 0.04224439337849617, -0.058698736131191254, 0.16242220997810364, -0.18701383471488953, 0.03151851147413254, 1.0997084379196167, -0.17552095651626587, 0.08101335912942886, 0.023728765547275543]} +{"t": 3.9403, "q": [-0.3484403192996979, -0.011474177241325378, 0.003937217406928539, 0.6286935210227966, -0.3150705099105835, 0.01736738160252571, -0.38784658908843994, 0.0011504855938255787, -0.005236231256276369, 0.6030589938163757, -0.28248903155326843, -0.000724367331713438, 0.00676290737465024, 0.00792477373033762, -0.04516976699233055, 0.2373715490102768, 0.10717492550611496, 0.004446147475391626, 1.0725642442703247, 0.1454046070575714, 0.04224439337849617, -0.05867476761341095, 0.15508785843849182, -0.19806328415870667, 0.031554464250802994, 1.099456787109375, -0.17555691301822662, 0.08047407120466232, 0.023692812770605087]} +{"t": 3.9571, "q": [-0.3484658896923065, -0.011448610574007034, 0.0038300822488963604, 0.6286764740943909, -0.3150705099105835, 0.01736738160252571, -0.3878721594810486, 0.001133441342972219, -0.005289798602461815, 0.6030504703521729, -0.2825179696083069, -0.0007747478084638715, 0.006937001831829548, 0.00774221820756793, -0.04509977623820305, 0.23733559250831604, 0.10722286254167557, 0.004506068769842386, 1.0728158950805664, 0.14541658759117126, 0.042220424860715866, -0.0586627833545208, 0.1482808142900467, -0.20894496142864227, 0.0315784327685833, 1.0992530584335327, -0.17550897598266602, 0.08009057492017746, 0.023680828511714935]} +{"t": 3.9738, "q": [-0.34849146008491516, -0.011440088041126728, 0.003669379511848092, 0.6286849975585938, -0.3150746822357178, 0.017331089824438095, -0.3878721594810486, 0.0011760519118979573, -0.005410325713455677, 0.6030504703521729, -0.2825634479522705, -0.0008394648903049529, 0.007070920895785093, 0.0073087457567453384, -0.045182205736637115, 0.23733559250831604, 0.10727079957723618, 0.004542021546512842, 1.0729836225509644, 0.14539262652397156, 0.04224439337849617, -0.05861484631896019, 0.14104235172271729, -0.2217441201210022, 0.03199788182973862, 1.0990732908248901, -0.17553295195102692, 0.0794314444065094, 0.023764718323946]} +{"t": 3.9907, "q": [-0.3484233021736145, -0.011440088041126728, 0.00354885240085423, 0.6286764740943909, -0.31504160165786743, 0.01738930679857731, -0.3878551125526428, 0.001184574095532298, -0.005530852824449539, 0.6030589938163757, -0.28261303901672363, -0.0009258365025743842, 0.007178056053817272, 0.006327818613499403, -0.045599211007356644, 0.2373236119747162, 0.10727079957723618, 0.004542021546512842, 1.073163390159607, 0.14544056355953217, 0.04224439337849617, -0.05861484631896019, 0.13418737053871155, -0.23327293992042542, 0.03193796053528786, 1.0984621047973633, -0.17552095651626587, 0.07835286110639572, 0.023668844252824783]} +{"t": 4.0075, "q": [-0.3484403192996979, -0.011414522305130959, 0.0034149333368986845, 0.6287020444869995, -0.3150457441806793, 0.01738201454281807, -0.3878721594810486, 0.001193096162751317, -0.005651379935443401, 0.6030589938163757, -0.2826790511608124, -0.001055428758263588, 0.00735215051099658, 0.0053316885605454445, -0.04605622589588165, 0.23729965090751648, 0.10731873661279678, 0.004542021546512842, 1.0734390020370483, 0.14541658759117126, 0.04224439337849617, -0.05861484631896019, 0.1278357356786728, -0.24410668015480042, 0.03194994479417801, 1.0971318483352661, -0.17549699544906616, 0.07677094638347626, 0.023620907217264175]} +{"t": 4.0243, "q": [-0.3484233021736145, -0.011346344836056232, 0.0031470954418182373, 0.6287446022033691, -0.3150457441806793, 0.01738201454281807, -0.3878721594810486, 0.0012101404136046767, -0.005825474392622709, 0.6030248999595642, -0.28269150853157043, -0.0010625707218423486, 0.00743250222876668, 0.004274554084986448, -0.046454500406980515, 0.23723971843719482, 0.10733072459697723, 0.004554005805402994, 1.0738584995269775, 0.14542856812477112, 0.04224439337849617, -0.058590877801179886, 0.12065718322992325, -0.25587520003318787, 0.03209375590085983, 1.0949627161026, -0.17552095651626587, 0.07520101219415665, 0.02352503500878811]} +{"t": 4.0411, "q": [-0.3482869267463684, -0.011346344836056232, 0.003093527862802148, 0.628753125667572, -0.31503334641456604, 0.0174038577824831, -0.3878721594810486, 0.0012101404136046767, -0.005892434157431126, 0.6030248999595642, -0.2826956510543823, -0.001069765305146575, 0.007673555985093117, 0.0035215988755226135, -0.04667583107948303, 0.237095907330513, 0.10749849677085876, 0.004589958116412163, 1.0742778778076172, 0.14542856812477112, 0.04223240911960602, -0.05856690928339958, 0.11317902058362961, -0.2672242522239685, 0.03242931514978409, 1.0921703577041626, -0.17553295195102692, 0.0740145742893219, 0.023489082232117653]} +{"t": 4.058, "q": [-0.34826135635375977, -0.011329300701618195, 0.003093527862802148, 0.6287872195243835, -0.31504160165786743, 0.01738930679857731, -0.3878721594810486, 0.001201618229970336, -0.005879042204469442, 0.6030163764953613, -0.28269144892692566, -0.0010770127410069108, 0.007820867002010345, 0.0028598953504115343, -0.04680820554494858, 0.2371198832988739, 0.10758239030838013, 0.004625910893082619, 1.0745415687561035, 0.14539262652397156, 0.042208440601825714, -0.058590877801179886, 0.105341337621212, -0.27836957573890686, 0.03269296512007713, 1.0894500017166138, -0.17564080655574799, 0.07300789654254913, 0.02340519241988659]} +{"t": 4.0748, "q": [-0.3482784032821655, -0.011218513362109661, 0.003066744189709425, 0.6288213133811951, -0.3150334358215332, 0.01736033894121647, -0.3878721594810486, 0.001201618229970336, -0.005919218063354492, 0.6030334234237671, -0.28269144892692566, -0.0010770127410069108, 0.008008353412151337, 0.002342718653380871, -0.0469854436814785, 0.237095907330513, 0.1076902449131012, 0.004661863669753075, 1.0747932195663452, 0.14536865055561066, 0.042220424860715866, -0.05855492502450943, 0.09861818701028824, -0.28885579109191895, 0.032704949378967285, 1.0854471921920776, -0.1756647676229477, 0.07237273454666138, 0.02316550724208355]} +{"t": 4.0916, "q": [-0.34830397367477417, -0.011235557496547699, 0.0029997846577316523, 0.6288127899169922, -0.31502100825309753, 0.0173821821808815, -0.3878636360168457, 0.0012101404136046767, -0.0059995693154633045, 0.6030334234237671, -0.2826830744743347, -0.0010915073798969388, 0.008128880523145199, 0.0015821040142327547, -0.04715348407626152, 0.23705996572971344, 0.10778611898422241, 0.004817658569663763, 1.0750089883804321, 0.14542856812477112, 0.04219645634293556, -0.058530956506729126, 0.09158344566822052, -0.29996514320373535, 0.033256225287914276, 1.0804258584976196, -0.1756647676229477, 0.0715937614440918, 0.023201460018754005]} +{"t": 4.1084, "q": [-0.3482869267463684, -0.01124407909810543, 0.002959609031677246, 0.6288468837738037, -0.31502097845077515, 0.017396681010723114, -0.3878721594810486, 0.001201618229970336, -0.0059995693154633045, 0.6030078530311584, -0.28269144892692566, -0.0010770127410069108, 0.00832975935190916, 0.0008366885012947023, -0.04734156280755997, 0.237095907330513, 0.10790596157312393, 0.004889564123004675, 1.0751527547836304, 0.14544056355953217, 0.042208440601825714, -0.05842309817671776, 0.0848483145236969, -0.3097802400588989, 0.03341202065348625, 1.075692057609558, -0.1756887435913086, 0.07055113464593887, 0.023093601688742638]} +{"t": 4.1252, "q": [-0.3482954502105713, -0.011209990829229355, 0.0028122980147600174, 0.6288809776306152, -0.31514090299606323, 0.0171856377273798, -0.3878721594810486, 0.0012101404136046767, -0.0060933125205338, 0.6029481887817383, -0.2826997637748718, -0.0010769600048661232, 0.008597597479820251, 8.366908878087997e-05, -0.04769296944141388, 0.23710790276527405, 0.10815763473510742, 0.004985437728464603, 1.0752966403961182, 0.14542856812477112, 0.042220424860715866, -0.058279287070035934, 0.07737015932798386, -0.3197271525859833, 0.033963292837142944, 1.0715694427490234, -0.1757127046585083, 0.06808238476514816, 0.02310558594763279]} +{"t": 4.1419, "q": [-0.34826135635375977, -0.011218513362109661, 0.0026382035575807095, 0.6288809776306152, -0.3151491582393646, 0.01718558743596077, -0.387914776802063, 0.001184574095532298, -0.006187055725604296, 0.6029226183891296, -0.2827245593070984, -0.0011201457818970084, 0.008744907565414906, -0.0004791933170054108, -0.04796023666858673, 0.237095907330513, 0.10838533192873001, 0.005165201146155596, 1.0754404067993164, 0.14536865055561066, 0.042220424860715866, -0.05805158615112305, 0.06971223652362823, -0.328978955745697, 0.03576092794537544, 1.06769859790802, -0.1757127046585083, 0.06425941735506058, 0.02311757020652294]} +{"t": 4.1588, "q": [-0.34830397367477417, -0.011192946694791317, 0.00254446011967957, 0.6288809776306152, -0.3151450753211975, 0.01716386154294014, -0.3879573941230774, 0.001184574095532298, -0.006294190883636475, 0.602897047996521, -0.2827162444591522, -0.001120198518037796, 0.008878827095031738, -0.0010649376781657338, -0.048272695392370224, 0.237095907330513, 0.10864898562431335, 0.005320996046066284, 1.0756081342697144, 0.14545254409313202, 0.04219645634293556, -0.057739995419979095, 0.06210225448012352, -0.3385423719882965, 0.03864912688732147, 1.0630366802215576, -0.17565278708934784, 0.06070009991526604, 0.0231774915009737]} +{"t": 4.1756, "q": [-0.34832102060317993, -0.011082159355282784, 0.0024775005877017975, 0.6288809776306152, -0.3151450753211975, 0.01716386154294014, -0.3879659175872803, 0.001184574095532298, -0.006320974789559841, 0.6028800010681152, -0.28273698687553406, -0.001127287745475769, 0.009173448197543621, -0.0015137778827920556, -0.04858526960015297, 0.23705996572971344, 0.10884073376655579, 0.005380917340517044, 1.075680136680603, 0.14536865055561066, 0.04219645634293556, -0.05722467601299286, 0.055630773305892944, -0.346907377243042, 0.041309624910354614, 1.0572004318237305, -0.1756887435913086, 0.058219365775585175, 0.02323741279542446]} +{"t": 4.1923, "q": [-0.3483806848526001, -0.011065115220844746, 0.0023435817565768957, 0.6288809776306152, -0.3151533305644989, 0.017149312421679497, -0.38799145817756653, 0.001193096162751317, -0.006374542135745287, 0.6027862429618835, -0.2827617824077606, -0.0011704735225066543, 0.009293975308537483, -0.002137585077434778, -0.048952504992485046, 0.2370719462633133, 0.10910438746213913, 0.0055127437226474285, 1.075835943222046, 0.14539262652397156, 0.04219645634293556, -0.05631387606263161, 0.04836833477020264, -0.3552723526954651, 0.04326305165886879, 1.0515079498291016, -0.1756887435913086, 0.0553431510925293, 0.02328534983098507]} +{"t": 4.2091, "q": [-0.34839773178100586, -0.011022504419088364, 0.0021828790195286274, 0.6288554072380066, -0.3151533007621765, 0.01716381311416626, -0.38799145817756653, 0.001193096162751317, -0.006535245105624199, 0.6026754975318909, -0.28280723094940186, -0.0012496504932641983, 0.009427894838154316, -0.0026472622994333506, -0.04912668094038963, 0.23703598976135254, 0.10930811613798141, 0.005608617328107357, 1.0760875940322876, 0.14539262652397156, 0.04218447208404541, -0.05475592613220215, 0.042220424860715866, -0.3637092411518097, 0.045288387686014175, 1.0444611310958862, -0.17567676305770874, 0.05277852714061737, 0.023273365572094917]} +{"t": 4.2259, "q": [-0.348389208316803, -0.011039548553526402, 0.0018748653819784522, 0.6288468837738037, -0.3151615858078003, 0.017149262130260468, -0.3880085051059723, 0.001201618229970336, -0.006682556122541428, 0.6025135517120361, -0.28285276889801025, -0.0012999254977330565, 0.009441286325454712, -0.003217774908989668, -0.04916224256157875, 0.23703598976135254, 0.10935605317354202, 0.005644570104777813, 1.0764471292495728, 0.14532071352005005, 0.04217248782515526, -0.05255082622170448, 0.036264266818761826, -0.37165477871894836, 0.0484282523393631, 1.0360362529754639, -0.1757846176624298, 0.05128049850463867, 0.02328534983098507]} +{"t": 4.2427, "q": [-0.34840625524520874, -0.010979894548654556, 0.0018480815924704075, 0.6288468837738037, -0.3151615262031555, 0.017178261652588844, -0.38801702857017517, 0.0012357067316770554, -0.006709339562803507, 0.6024709343910217, -0.282885879278183, -0.0013430406106635928, 0.009374327026307583, -0.0041839126497507095, -0.04919882491230965, 0.2370479702949524, 0.10932010412216187, 0.005656554363667965, 1.0772979259490967, 0.1453566700220108, 0.042148519307374954, -0.05044160410761833, 0.02773149684071541, -0.3805830478668213, 0.05398893356323242, 1.0280067920684814, -0.1757366806268692, 0.04954278841614723, 0.02329733408987522]} +{"t": 4.2594, "q": [-0.34844884276390076, -0.010920239612460136, 0.0018614735454320908, 0.6288468837738037, -0.3151780664920807, 0.017149144783616066, -0.38802555203437805, 0.0012783173006027937, -0.006709339562803507, 0.6023942232131958, -0.2828899025917053, -0.0013791373930871487, 0.009414502419531345, -0.005005545914173126, -0.0493893176317215, 0.23658059537410736, 0.1092362105846405, 0.005656554363667965, 1.0787240266799927, 0.14532071352005005, 0.042148519307374954, -0.04896754398941994, 0.019402461126446724, -0.3894873261451721, 0.05903429538011551, 1.0194740295410156, -0.1757606416940689, 0.04728975147008896, 0.023309318348765373]} +{"t": 4.2762, "q": [-0.3484403192996979, -0.010945805348455906, 0.0016873788554221392, 0.6288213133811951, -0.31518635153770447, 0.017134595662355423, -0.38802555203437805, 0.001261273049749434, -0.0067896912805736065, 0.6023346185684204, -0.2829313278198242, -0.0014221996534615755, 0.009494854137301445, -0.005773899611085653, -0.049485620111227036, 0.23608924448490143, 0.10924819856882095, 0.005656554363667965, 1.079946517944336, 0.1453566700220108, 0.04212455078959465, -0.04821253940463066, 0.011900335550308228, -0.39816388487815857, 0.06284527480602264, 1.0097668170928955, -0.17580857872962952, 0.04286757484078407, 0.023321302607655525]} +{"t": 4.293, "q": [-0.3484403192996979, -0.010835018008947372, 0.0014731085393577814, 0.628829836845398, -0.3151532709598541, 0.017192812636494637, -0.3879999816417694, 0.0012783173006027937, -0.006963785737752914, 0.6023260951042175, -0.28295600414276123, -0.0014942875131964684, 0.00958859734237194, -0.006473775487393141, -0.049606673419475555, 0.23551400005817413, 0.10934407263994217, 0.005656554363667965, 1.0813605785369873, 0.14527277648448944, 0.04212455078959465, -0.04760134220123291, 0.0033316146582365036, -0.40712809562683105, 0.06644054502248764, 0.998214066028595, -0.1757846176624298, 0.0385173000395298, 0.023333286866545677]} +{"t": 4.3098, "q": [-0.34840625524520874, -0.01082649640738964, 0.0012052706442773342, 0.6288383603096008, -0.31513679027557373, 0.017192911356687546, -0.38797444105148315, 0.0012953615514561534, -0.007151272147893906, 0.602223813533783, -0.2830263376235962, -0.0015877303667366505, 0.009722515940666199, -0.007067081052809954, -0.04957912117242813, 0.2349746972322464, 0.10940399020910263, 0.005692507140338421, 1.0827268362045288, 0.14534468948841095, 0.0421125665307045, -0.04721784591674805, -0.004601942375302315, -0.41572079062461853, 0.07016763836145401, 0.9863616824150085, -0.17579659819602966, 0.033903371542692184, 0.023549001663923264]} +{"t": 4.3266, "q": [-0.34835511445999146, -0.010707186535000801, 0.0009910003282129765, 0.6288127899169922, -0.31514087319374084, 0.017200136557221413, -0.38799145817756653, 0.0012953615514561534, -0.007285191211849451, 0.6021726727485657, -0.28307175636291504, -0.0016668894095346332, 0.00973590835928917, -0.007622386794537306, -0.049576535820961, 0.23451930284500122, 0.10942795872688293, 0.005704491399228573, 1.0838533639907837, 0.1453326940536499, 0.04207661375403404, -0.04688229039311409, -0.014153369702398777, -0.4238460958003998, 0.07417037338018417, 0.9748927354812622, -0.17572470009326935, 0.029804768040776253, 0.023728765547275543]} +{"t": 4.3433, "q": [-0.3483806848526001, -0.010690141469240189, 0.0007365542696788907, 0.6288213133811951, -0.3151450455188751, 0.017178362235426903, -0.3879659175872803, 0.001312405802309513, -0.007459285669028759, 0.602078914642334, -0.28311312198638916, -0.0017244118498638272, 0.009950178675353527, -0.008055908605456352, -0.049404848366975784, 0.23383620381355286, 0.10952383279800415, 0.005704491399228573, 1.0844285488128662, 0.14534468948841095, 0.042088598012924194, -0.04669054225087166, -0.022722091525793076, -0.43146806955337524, 0.07780159264802933, 0.962273359298706, -0.17561683058738708, 0.025646241381764412, 0.023920513689517975]} +{"t": 4.3602, "q": [-0.34840625524520874, -0.010690141469240189, 0.0001740946463542059, 0.6288213133811951, -0.31517812609672546, 0.01712014526128769, -0.3879999816417694, 0.001312405802309513, -0.007794083096086979, 0.6019766926765442, -0.2831461727619171, -0.001781987026333809, 0.010472462512552738, -0.008420929312705994, -0.0491485632956028, 0.23291341960430145, 0.10963169485330582, 0.0057404437102377415, 1.0847041606903076, 0.1453087329864502, 0.0421125665307045, -0.04653474688529968, -0.029816752299666405, -0.4384189248085022, 0.08078566193580627, 0.9498097896575928, -0.1756647676229477, 0.01870737597346306, 0.024028372019529343]} +{"t": 4.377, "q": [-0.3484403192996979, -0.010690141469240189, -0.00016070275160018355, 0.628829836845398, -0.315202921628952, 0.01707647740840912, -0.3879999816417694, 0.0013379721203818917, -0.008102096617221832, 0.6019511222839355, -0.2832247018814087, -0.0019042791100218892, 0.010767084546387196, -0.008687105029821396, -0.04898607358336449, 0.23214642703533173, 0.10967963188886642, 0.005836317781358957, 1.0849319696426392, 0.14527277648448944, 0.0421125665307045, -0.046426888555288315, -0.03676760196685791, -0.44402754306793213, 0.08321846276521683, 0.9387603402137756, -0.17572470009326935, 0.012175972573459148, 0.0240643247961998]} +{"t": 4.3937, "q": [-0.34845736622810364, -0.010596398264169693, -0.00042854066123254597, 0.6288468837738037, -0.315202921628952, 0.01707647740840912, -0.38797444105148315, 0.00138058268930763, -0.008383326232433319, 0.601917028427124, -0.2832908034324646, -0.0020194293465465307, 0.010887610726058483, -0.008793565444648266, -0.048907190561294556, 0.23169103264808655, 0.10972756892442703, 0.005884254816919565, 1.0851596593856812, 0.1452607959508896, 0.0421365350484848, -0.0463310144841671, -0.04448544234037399, -0.45036718249320984, 0.08810802549123764, 0.925517737865448, -0.17574866116046906, 0.00717855105176568, 0.02412424609065056]} +{"t": 4.4105, "q": [-0.3484233021736145, -0.010587876662611961, -0.0005892434273846447, 0.6288383603096008, -0.31520289182662964, 0.017090994864702225, -0.3880085051059723, 0.0014317154418677092, -0.008557421155273914, 0.6018914580345154, -0.2834024429321289, -0.0021848545875400305, 0.01091439463198185, -0.008808774873614311, -0.048897337168455124, 0.23124760389328003, 0.10972756892442703, 0.005968144163489342, 1.0856269598007202, 0.14529675245285034, 0.042148519307374954, -0.04621117189526558, -0.052143365144729614, -0.4565151035785675, 0.09381251782178879, 0.9124069809913635, -0.1757606416940689, 0.0020972394850105047, 0.024232102558016777]} +{"t": 4.4272, "q": [-0.3483380675315857, -0.01057935506105423, -0.0006562029011547565, 0.6288213133811951, -0.3155254125595093, 0.016537871211767197, -0.38801702857017517, 0.0015169365797191858, -0.008570813573896885, 0.6017806529998779, -0.28346017003059387, -0.002314499579370022, 0.01091439463198185, -0.008816407062113285, -0.04895192012190819, 0.2308281660079956, 0.10973954945802689, 0.005980128422379494, 1.0862741470336914, 0.14534468948841095, 0.042160503566265106, -0.04609132930636406, -0.06053232029080391, -0.46304649114608765, 0.09955295920372009, 0.8973308205604553, -0.17580857872962952, -0.00529702752828598, 0.02436392940580845]} +{"t": 4.444, "q": [-0.3482358157634735, -0.010434478521347046, -0.0007901218486949801, 0.6288042664527893, -0.3162696957588196, 0.015227990224957466, -0.3880937397480011, 0.0016532903537154198, -0.008691340684890747, 0.6016442775726318, -0.2835097908973694, -0.00238642911426723, 0.010901003144681454, -0.008922934532165527, -0.04901193827390671, 0.23038475215435028, 0.10987138003110886, 0.005992112681269646, 1.0868374109268188, 0.14534468948841095, 0.04217248782515526, -0.04595950245857239, -0.06860969215631485, -0.4684034287929535, 0.10276473313570023, 0.8805170059204102, -0.17585651576519012, -0.012140019796788692, 0.02443583495914936]} +{"t": 4.4608, "q": [-0.34808239340782166, -0.010315168648958206, -0.0009642164804972708, 0.628829836845398, -0.316654235124588, 0.01455120649188757, -0.38826417922973633, 0.0018322548130527139, -0.008825259283185005, 0.6015931963920593, -0.28357577323913574, -0.002530463505536318, 0.010834043845534325, -0.009227250702679157, -0.04910273477435112, 0.2301570475101471, 0.11005114018917084, 0.006087986286729574, 1.087196946144104, 0.14536865055561066, 0.04219645634293556, -0.045875612646341324, -0.07660316675901413, -0.4749108850955963, 0.10652777552604675, 0.8639068603515625, -0.1757127046585083, -0.018192054703831673, 0.024567661806941032]} +{"t": 4.4776, "q": [-0.34790343046188354, -0.010332213714718819, -0.0010177841177210212, 0.6289491653442383, -0.3166542053222656, 0.014580224640667439, -0.3883834779262543, 0.0019430422689765692, -0.00881186779588461, 0.6015676259994507, -0.2836253046989441, -0.0026312770787626505, 0.010807259939610958, -0.009698949754238129, -0.04925388842821121, 0.23006117343902588, 0.11031479388475418, 0.006099970545619726, 1.0877362489700317, 0.14534468948841095, 0.04219645634293556, -0.0457318052649498, -0.08587896078824997, -0.48119062185287476, 0.11056645959615707, 0.8476802110671997, -0.17572470009326935, -0.026581011712551117, 0.024891234934329987]} +{"t": 4.4944, "q": [-0.3478778600692749, -0.01022142544388771, -0.001044567907229066, 0.6289406418800354, -0.3167286515235901, 0.014434722252190113, -0.38903117179870605, 0.0019259981345385313, -0.008825259283185005, 0.6015335321426392, -0.283753365278244, -0.0028543828520923853, 0.010740300640463829, -0.010505449958145618, -0.04962493106722832, 0.22991736233234406, 0.1107582077383995, 0.006111954804509878, 1.0887188911437988, 0.1453087329864502, 0.042220424860715866, -0.04557600989937782, -0.09509482979774475, -0.48693105578422546, 0.11441339552402496, 0.8308184146881104, -0.17558088898658752, -0.033615753054618835, 0.025059014558792114]} +{"t": 4.5113, "q": [-0.3479290008544922, -0.010068027302622795, -0.001191878691315651, 0.6289150714874268, -0.3167699873447418, 0.014361954294145107, -0.3891930878162384, 0.0019430422689765692, -0.0089190024882555, 0.6014909148216248, -0.2838938236236572, -0.0030990727245807648, 0.010820651426911354, -0.011479286476969719, -0.04997764527797699, 0.22941403090953827, 0.11141734570264816, 0.006111954804509878, 1.0896416902542114, 0.14532071352005005, 0.04218447208404541, -0.04539624601602554, -0.10392720252275467, -0.49327072501182556, 0.11950669437646866, 0.8142202496528625, -0.17552095651626587, -0.039320241659879684, 0.02546647936105728]} +{"t": 4.5283, "q": [-0.34799718856811523, -0.009744187816977501, -0.0016472031129524112, 0.6289321184158325, -0.31692299246788025, 0.01410721056163311, -0.38917604088783264, 0.0019004317000508308, -0.00925379991531372, 0.6014227271080017, -0.2840052843093872, -0.0033078419510275126, 0.011075098067522049, -0.012688765302300453, -0.05005020275712013, 0.22867099940776825, 0.11224425584077835, 0.006099970545619726, 1.0904207229614258, 0.1453806310892105, 0.04219645634293556, -0.045216482132673264, -0.11268766969442368, -0.4996822774410248, 0.1227424368262291, 0.796028196811676, -0.17540112137794495, -0.04715792462229729, 0.026461169123649597]} +{"t": 4.5452, "q": [-0.34803128242492676, -0.009369214065372944, -0.002383757382631302, 0.6288639307022095, -0.3170801103115082, 0.013830691576004028, -0.38912490010261536, 0.0019259981345385313, -0.009776083752512932, 0.6013374924659729, -0.2841796875, -0.0035958888474851847, 0.011075098067522049, -0.014453483745455742, -0.05010250583291054, 0.22827552258968353, 0.11328688263893127, 0.006099970545619726, 1.0914033651351929, 0.1453087329864502, 0.042160503566265106, -0.04500076547265053, -0.12180766463279724, -0.5059739947319031, 0.12657739222049713, 0.7810958623886108, -0.17528127133846283, -0.054252587258815765, 0.02738395519554615]} +{"t": 4.562, "q": [-0.3480483293533325, -0.008678922429680824, -0.002651595277711749, 0.628898024559021, -0.31715455651283264, 0.013685171492397785, -0.3891078531742096, 0.0019259981345385313, -0.010043921880424023, 0.6012693047523499, -0.28432121872901917, -0.003884301520884037, 0.010834043845534325, -0.01647668518126011, -0.050079669803380966, 0.22822758555412292, 0.1149766594171524, 0.006087986286729574, 1.0923501253128052, 0.1453566700220108, 0.042160503566265106, -0.044797033071517944, -0.13243767619132996, -0.5136559009552002, 0.13231782615184784, 0.7657320499420166, -0.17522135376930237, -0.05983723700046539, 0.028570393100380898]} +{"t": 4.5787, "q": [-0.3481591045856476, -0.00817611813545227, -0.0029194331727921963, 0.6289406418800354, -0.31716692447662354, 0.01369236409664154, -0.3891589939594269, 0.0019430422689765692, -0.010151056572794914, 0.6010562777519226, -0.2844045162200928, -0.004042877350002527, 0.010887610726058483, -0.018750909715890884, -0.05024475231766701, 0.22817964851856232, 0.1167742908000946, 0.006087986286729574, 1.0928415060043335, 0.14539262652397156, 0.042160503566265106, -0.04464123770594597, -0.14227671921253204, -0.5229676365852356, 0.13858558237552643, 0.7503323554992676, -0.1751134991645813, -0.0674232542514801, 0.029876673594117165]} +{"t": 4.5955, "q": [-0.3481505811214447, -0.007843755185604095, -0.003066744189709425, 0.6289747357368469, -0.3171916604042053, 0.013677714392542839, -0.3891589939594269, 0.0019259981345385313, -0.010311760008335114, 0.600868821144104, -0.2845335602760315, -0.0043096584267914295, 0.01092778705060482, -0.021549977362155914, -0.050552017986774445, 0.22821560502052307, 0.11834422498941422, 0.006111954804509878, 1.0932129621505737, 0.1453087329864502, 0.042160503566265106, -0.04444948956370354, -0.1525951325893402, -0.5316681861877441, 0.1428639441728592, 0.7365145087242126, -0.17512547969818115, -0.07409846782684326, 0.03154247999191284]} +{"t": 4.6122, "q": [-0.3482784032821655, -0.0070682428777217865, -0.0034015413839370012, 0.628966212272644, -0.3173777759075165, 0.01333573553711176, -0.38917604088783264, 0.0019600866362452507, -0.010606381110846996, 0.6007494926452637, -0.28477510809898376, -0.004742091055959463, 0.011048314161598682, -0.024501070380210876, -0.051004525274038315, 0.22820360958576202, 0.11950669437646866, 0.006255765445530415, 1.093536615371704, 0.14536865055561066, 0.04217248782515526, -0.044077981263399124, -0.16276974976062775, -0.5411357283592224, 0.14739398658275604, 0.7221574187278748, -0.17500564455986023, -0.07950334995985031, 0.03305249288678169]} +{"t": 4.629, "q": [-0.34832102060317993, -0.006360907573252916, -0.0034952848218381405, 0.6289150714874268, -0.3174935281276703, 0.013146483339369297, -0.38936352729797363, 0.0022327941842377186, -0.010780476033687592, 0.6007409691810608, -0.284941703081131, -0.00503035681322217, 0.011021530255675316, -0.027794554829597473, -0.05177935212850571, 0.2283833771944046, 0.12033360451459885, 0.00635163951665163, 1.0940759181976318, 0.1453087329864502, 0.04219645634293556, -0.04345479980111122, -0.17344769835472107, -0.5502557158470154, 0.15198394656181335, 0.7106406092643738, -0.17498166859149933, -0.08353005349636078, 0.03450258448719978]} +{"t": 4.6457, "q": [-0.3483465909957886, -0.00627568643540144, -0.0038300822488963604, 0.6289235949516296, -0.31782394647598267, 0.012607538141310215, -0.38930386304855347, 0.002710032742470503, -0.011115273460745811, 0.6006216406822205, -0.2851916253566742, -0.005448294337838888, 0.011209016665816307, -0.031102953478693962, -0.05253029987215996, 0.228335440158844, 0.12098075449466705, 0.006495450157672167, 1.0945671796798706, 0.1453087329864502, 0.042280346155166626, -0.0424361415207386, -0.18247181177139282, -0.5604902505874634, 0.15640611946582794, 0.699950635433197, -0.17492175102233887, -0.09027716517448425, 0.036192361265420914]} +{"t": 4.6625, "q": [-0.34839773178100586, -0.006028545089066029, -0.004338974133133888, 0.6289406418800354, -0.3181990087032318, 0.011973291635513306, -0.3892442286014557, 0.003093527862802148, -0.011637557297945023, 0.6005193591117859, -0.28547897934913635, -0.005960011389106512, 0.011423286981880665, -0.034555573016405106, -0.053374651819467545, 0.2283114790916443, 0.12155599892139435, 0.006962834857404232, 1.0952264070510864, 0.14536865055561066, 0.04230431467294693, -0.041261687874794006, -0.1908128410577774, -0.5700656175613403, 0.16084028780460358, 0.6887933611869812, -0.17484985291957855, -0.09674865007400513, 0.03858920559287071]} +{"t": 4.6792, "q": [-0.348389208316803, -0.005466085392981768, -0.004700555466115475, 0.6289321184158325, -0.3183927536010742, 0.0116307083517313, -0.3891078531742096, 0.0034855452831834555, -0.011985746212303638, 0.60028076171875, -0.2857496738433838, -0.006442910525947809, 0.011825043708086014, -0.037277668714523315, -0.05392211303114891, 0.22825154662132263, 0.12213123589754105, 0.0076818885281682014, 1.0962929725646973, 0.14532071352005005, 0.04229233041405678, -0.04043477773666382, -0.19819511473178864, -0.5785863995552063, 0.16532239317893982, 0.6773604154586792, -0.17470604181289673, -0.10276473313570023, 0.04108192399144173]} +{"t": 4.696, "q": [-0.34826135635375977, -0.0049803247675299644, -0.004955001175403595, 0.6289491653442383, -0.31880900263786316, 0.010967094451189041, -0.38880959153175354, 0.00390312890522182, -0.012240192852914333, 0.5999569296836853, -0.28603294491767883, -0.006904031615704298, 0.011905395425856113, -0.03996902331709862, -0.054433196783065796, 0.228335440158844, 0.12275441735982895, 0.008808405138552189, 1.0974793434143066, 0.14527277648448944, 0.04230431467294693, -0.03997937589883804, -0.2072911411523819, -0.5871791243553162, 0.1726687103509903, 0.6654840111732483, -0.17464610934257507, -0.10873287916183472, 0.04440155625343323]} +{"t": 4.7128, "q": [-0.3479204773902893, -0.0047246613539755344, -0.005008568987250328, 0.6289491653442383, -0.3190068304538727, 0.010631754994392395, -0.38848575949668884, 0.004542287439107895, -0.012280368246138096, 0.5997098088264465, -0.28612861037254333, -0.007084236014634371, 0.011892003007233143, -0.04234754294157028, -0.054480038583278656, 0.228335440158844, 0.12328172475099564, 0.010426276363432407, 1.0987976789474487, 0.14527277648448944, 0.042268361896276474, -0.03965580090880394, -0.2154044657945633, -0.5947172045707703, 0.18084195256233215, 0.6540870070457458, -0.1746101677417755, -0.11532419919967651, 0.0463549830019474]} +{"t": 4.7295, "q": [-0.34762221574783325, -0.004315599799156189, -0.005182663444429636, 0.6289576888084412, -0.31929540634155273, 0.010165078565478325, -0.3879573941230774, 0.005283711478114128, -0.012320543639361858, 0.5992496013641357, -0.2862900495529175, -0.007379744201898575, 0.011958963237702847, -0.044634297490119934, -0.054368238896131516, 0.2278081327676773, 0.1236652210354805, 0.01356614287942648, 1.100367546081543, 0.14527277648448944, 0.042280346155166626, -0.03953595831990242, -0.22235532104969025, -0.601164698600769, 0.18752916157245636, 0.6390708088874817, -0.17450229823589325, -0.12247878313064575, 0.04764927923679352]} +{"t": 4.7462, "q": [-0.34724724292755127, -0.0038468833081424236, -0.005383542273193598, 0.6289747357368469, -0.31959375739097595, 0.00966934859752655, -0.3874971866607666, 0.005871737375855446, -0.012494638562202454, 0.5987041592597961, -0.2863396108150482, -0.007567405700683594, 0.011905395425856113, -0.04655619338154793, -0.05437026545405388, 0.2275085300207138, 0.12422847747802734, 0.016178704798221588, 1.1014821529388428, 0.1453326940536499, 0.04224439337849617, -0.039500005543231964, -0.23002521693706512, -0.607372522354126, 0.19529493153095245, 0.6227482557296753, -0.17450229823589325, -0.13114337623119354, 0.04906341806054115]} +{"t": 4.7632, "q": [-0.34684669971466064, -0.0032929459121078253, -0.0053701503202319145, 0.6289747357368469, -0.3197884261608124, 0.009370320476591587, -0.3869943916797638, 0.006357498001307249, -0.012508030980825424, 0.5981758236885071, -0.2863144874572754, -0.007741013541817665, 0.011972354725003242, -0.04830321669578552, -0.054333772510290146, 0.2271130532026291, 0.12481570243835449, 0.01738911122083664, 1.1020933389663696, 0.1453087329864502, 0.04224439337849617, -0.03947603702545166, -0.23745544254779816, -0.6129811406135559, 0.20171847939491272, 0.6067373752593994, -0.17455023527145386, -0.14095845818519592, 0.05083708465099335]} +{"t": 4.7799, "q": [-0.34625867009162903, -0.002244725590571761, -0.0053701503202319145, 0.628966212272644, -0.3199542462825775, 0.009078781120479107, -0.38614216446876526, 0.006868824828416109, -0.012534813955426216, 0.5976729989051819, -0.2863061726093292, -0.007741057779639959, 0.011731300503015518, -0.04981414973735809, -0.054169390350580215, 0.22699320316314697, 0.125486820936203, 0.017976338043808937, 1.1024049520492554, 0.1453326940536499, 0.04224439337849617, -0.039452068507671356, -0.24633574485778809, -0.6185298562049866, 0.20912472903728485, 0.5885692834854126, -0.17452627420425415, -0.15048591792583466, 0.05240701511502266]} +{"t": 4.7966, "q": [-0.34592631459236145, 0.0019651991315186024, -0.005236231256276369, 0.628966212272644, -0.3202398717403412, 0.008677499368786812, -0.385716050863266, 0.007337541319429874, -0.012508030980825424, 0.5971190333366394, -0.2862439453601837, -0.00771969323977828, 0.011557205580174923, -0.050763845443725586, -0.05438842996954918, 0.2268374115228653, 0.12616991996765137, 0.018263958394527435, 1.1029082536697388, 0.1453087329864502, 0.04225637763738632, -0.03942809998989105, -0.2561148703098297, -0.6241744160652161, 0.21758559346199036, 0.5708445906639099, -0.17455023527145386, -0.16081631183624268, 0.053114086389541626]} +{"t": 4.8135, "q": [-0.34538090229034424, 0.0022805174812674522, -0.004646987654268742, 0.6292815208435059, -0.3206787109375, 0.008050069212913513, -0.3849831521511078, 0.008019310422241688, -0.012467854656279087, 0.5963776111602783, -0.2855730950832367, -0.007383465301245451, 0.011744692921638489, -0.051341280341148376, -0.0545329749584198, 0.22614233195781708, 0.12681707739830017, 0.018743328750133514, 1.1036392450332642, 0.14521285891532898, 0.04225637763738632, -0.03942809998989105, -0.2660018503665924, -0.6298429369926453, 0.2236376255750656, 0.5515140295028687, -0.17459817230701447, -0.1705954521894455, 0.05364139378070831]} +{"t": 4.8305, "q": [-0.3448440134525299, 0.0024765264242887497, -0.004606812261044979, 0.6292815208435059, -0.32087746262550354, 0.00775828305631876, -0.38449740409851074, 0.00848802737891674, -0.012333936057984829, 0.5961390137672424, -0.2847649157047272, -0.006101013161242008, 0.01159738190472126, -0.05209341645240784, -0.05469709262251854, 0.22580677270889282, 0.1276559680700302, 0.019390476867556572, 1.104178547859192, 0.14527277648448944, 0.04225637763738632, -0.039452068507671356, -0.2778542637825012, -0.6346006989479065, 0.2282875031232834, 0.5329145193099976, -0.1745622307062149, -0.18238791823387146, 0.05372528359293938]} +{"t": 4.8472, "q": [-0.3444945812225342, 0.0025106146931648254, -0.004646987654268742, 0.6292303800582886, -0.3209769129753113, 0.007597870659083128, -0.3842758238315582, 0.00875221285969019, -0.012333936057984829, 0.5961475372314453, -0.28413593769073486, -0.005085103213787079, 0.011222408153116703, -0.05255701392889023, -0.054873354732990265, 0.22537533938884735, 0.12805144488811493, 0.020421119406819344, 1.1051013469696045, 0.14534468948841095, 0.042280346155166626, -0.039452068507671356, -0.28895166516304016, -0.6383397579193115, 0.23076824843883514, 0.5141592025756836, -0.1745861917734146, -0.19174760580062866, 0.0538690909743309]} +{"t": 4.8639, "q": [-0.3442474603652954, 0.0026640123687684536, -0.004646987654268742, 0.6292133331298828, -0.3210681080818176, 0.007437537424266338, -0.3840712904930115, 0.009076053276658058, -0.012280368246138096, 0.5960708260536194, -0.28416892886161804, -0.0053885262459516525, 0.01065994892269373, -0.05272432044148445, -0.05498705431818962, 0.22489596903324127, 0.12821923196315765, 0.02178732119500637, 1.1061559915542603, 0.14534468948841095, 0.042280346155166626, -0.03948802128434181, -0.3004685044288635, -0.6421986818313599, 0.23360849916934967, 0.49502041935920715, -0.1745622307062149, -0.2028449922800064, 0.05385710671544075]} +{"t": 4.8808, "q": [-0.34408554434776306, 0.0027833222411572933, -0.004646987654268742, 0.6292048096656799, -0.32112205028533936, 0.007328270003199577, -0.3839775621891022, 0.009212406352162361, -0.0122669767588377, 0.5961134433746338, -0.2845394015312195, -0.00617446843534708, 0.010445678606629372, -0.052724339067935944, -0.054996974766254425, 0.2241409718990326, 0.1281832754611969, 0.022937806323170662, 1.1069828271865845, 0.14534468948841095, 0.04229233041405678, -0.039511989802122116, -0.31077492237091064, -0.6462373733520508, 0.23670043051242828, 0.4761572480201721, -0.174538254737854, -0.2130076140165329, 0.05380916967988014]} +{"t": 4.8976, "q": [-0.3439832627773285, 0.002962287049740553, -0.004700555466115475, 0.6291877627372742, -0.321130633354187, 0.007241107523441315, -0.38390085101127625, 0.009314672090113163, -0.012293760664761066, 0.5961219668388367, -0.2844642698764801, -0.006174855399876833, 0.010432287119328976, -0.052663564682006836, -0.05498543009161949, 0.2232900857925415, 0.12803946435451508, 0.024028372019529343, 1.1076899766921997, 0.14539262652397156, 0.04230431467294693, -0.039511989802122116, -0.3212251663208008, -0.6511269211769104, 0.239540696144104, 0.455843985080719, -0.1745622307062149, -0.2253393828868866, 0.053761232644319534]} +{"t": 4.9143, "q": [-0.3439832627773285, 0.0030475077219307423, -0.004821082577109337, 0.6291621923446655, -0.3211265504360199, 0.007233882788568735, -0.38395199179649353, 0.009553291834890842, -0.012320543639361858, 0.5961390137672424, -0.2857593297958374, -0.008575146086513996, 0.010459070093929768, -0.05260283127427101, -0.054993726313114166, 0.22237928211688995, 0.12801548838615417, 0.024268055334687233, 1.1088165044784546, 0.14539262652397156, 0.042328283190727234, -0.039511989802122116, -0.33191511034965515, -0.655105710029602, 0.24204540252685547, 0.43506333231925964, -0.17455023527145386, -0.23553796112537384, 0.053713299334049225]} +{"t": 4.9311, "q": [-0.34390658140182495, 0.0031156851910054684, -0.004968393128365278, 0.6291621923446655, -0.3211020827293396, 0.007176006678491831, -0.38389232754707336, 0.00990269798785448, -0.012494638562202454, 0.5961901545524597, -0.2863234281539917, -0.01033583004027605, 0.010499246418476105, -0.05260287597775459, -0.055013567209243774, 0.2216961830854416, 0.12808740139007568, 0.024471787735819817, 1.109847068786621, 0.14547650516033173, 0.04235225170850754, -0.03953595831990242, -0.3417661488056183, -0.6582695245742798, 0.24478977918624878, 0.4148579239845276, -0.174538254737854, -0.2466593235731125, 0.05372528359293938]} +{"t": 4.9478, "q": [-0.3438724875450134, 0.003371348138898611, -0.0051424880512058735, 0.6291707158088684, -0.32117265462875366, 0.007023083511739969, -0.3838411867618561, 0.010439591482281685, -0.012628557160496712, 0.5962072014808655, -0.2863481044769287, -0.010494721122086048, 0.0105126379057765, -0.05263327807188034, -0.05502430349588394, 0.2210969775915146, 0.128159299492836, 0.02460361458361149, 1.1108417510986328, 0.14544056355953217, 0.04236423596739769, -0.03952397406101227, -0.35095804929733276, -0.6611457467079163, 0.2484569549560547, 0.3956112563610077, -0.1745622307062149, -0.2567620277404785, 0.05373726412653923]} +{"t": 4.9645, "q": [-0.3436679542064667, 0.0037548434920608997, -0.005236231256276369, 0.629196286201477, -0.32125988602638245, 0.006826485972851515, -0.3836963176727295, 0.01110431645065546, -0.012641949579119682, 0.5962157249450684, -0.28638505935668945, -0.010790873318910599, 0.010378719307482243, -0.05262569710612297, -0.05502906069159508, 0.22060561180114746, 0.1281353384256363, 0.024627583101391792, 1.111548900604248, 0.14536865055561066, 0.04235225170850754, -0.03953595831990242, -0.3603536784648895, -0.6633628010749817, 0.2526514232158661, 0.37797048687934875, -0.17457421123981476, -0.2674279808998108, 0.05373726412653923]} +{"t": 4.9814, "q": [-0.3436168134212494, 0.004172427114099264, -0.005182663444429636, 0.6291877627372742, -0.32144632935523987, 0.006527519319206476, -0.38376450538635254, 0.011598599143326283, -0.012615165673196316, 0.5962072014808655, -0.2863306999206543, -0.011087529361248016, 0.010231408290565014, -0.052580151706933975, -0.055037762969732285, 0.2199704498052597, 0.12800350785255432, 0.024687504395842552, 1.1121001243591309, 0.14544056355953217, 0.04236423596739769, -0.039511989802122116, -0.3702166974544525, -0.665136456489563, 0.25665417313575745, 0.358112633228302, -0.17462214827537537, -0.2768116295337677, 0.05374924838542938]} +{"t": 4.9981, "q": [-0.34354010224342346, 0.004351391922682524, -0.005249623209238052, 0.6291707158088684, -0.3214879631996155, 0.006411106791347265, -0.38380712270736694, 0.011666775681078434, -0.01258838176727295, 0.5962327718734741, -0.28640520572662354, -0.011231685057282448, 0.01017784047871828, -0.05253469571471214, -0.055086154490709305, 0.21890385448932648, 0.12799152731895447, 0.024711472913622856, 1.1124956607818604, 0.1453566700220108, 0.04236423596739769, -0.03953595831990242, -0.37842586636543274, -0.6670179963111877, 0.2599618136882782, 0.34057968854904175, -0.17470604181289673, -0.28718996047973633, 0.05373726412653923]} +{"t": 5.0148, "q": [-0.34358271956443787, 0.004598533269017935, -0.005450501572340727, 0.6291792392730713, -0.32152536511421204, 0.006316455081105232, -0.3838411867618561, 0.012016182765364647, -0.012682124972343445, 0.5962157249450684, -0.2865252196788788, -0.01146957091987133, 0.010084097273647785, -0.05251948535442352, -0.05507582798600197, 0.21796908974647522, 0.12799152731895447, 0.02473544143140316, 1.113202691078186, 0.14534468948841095, 0.04236423596739769, -0.03952397406101227, -0.38535276055336, -0.6691272258758545, 0.2627061903476715, 0.32405343651771545, -0.1748857945203781, -0.2964058518409729, 0.053773216903209686]} +{"t": 5.0316, "q": [-0.3437105715274811, 0.004726364742964506, -0.0056112040765583515, 0.6291451454162598, -0.3218071460723877, 0.005849887616932392, -0.38404572010040283, 0.012527509592473507, -0.012695517390966415, 0.5962242484092712, -0.2866577208042145, -0.011685713194310665, 0.010017137974500656, -0.052420906722545624, -0.05513767898082733, 0.21753765642642975, 0.12797954678535461, 0.024759409949183464, 1.1140056848526, 0.14539262652397156, 0.04235225170850754, -0.03954794257879257, -0.3906378149986267, -0.6712843775749207, 0.2640604078769684, 0.30952855944633484, -0.1748857945203781, -0.3036443293094635, 0.05362940952181816]} +{"t": 5.0483, "q": [-0.3437872529029846, 0.004845674615353346, -0.005852258298546076, 0.629128098487854, -0.3234224021434784, 0.0033847838640213013, -0.38435253500938416, 0.013098491355776787, -0.012708908878266811, 0.5962327718734741, -0.2866491377353668, -0.011902587488293648, 0.009695732034742832, -0.05215531960129738, -0.05522482469677925, 0.21741782128810883, 0.127931609749794, 0.024759409949183464, 1.1146048307418823, 0.1454046070575714, 0.04236423596739769, -0.03952397406101227, -0.3965100646018982, -0.6731778979301453, 0.26501914858818054, 0.2947879731655121, -0.17496968805789948, -0.31259652972221375, 0.05378520116209984]} +{"t": 5.065, "q": [-0.3438724875450134, 0.004905329551547766, -0.005852258298546076, 0.6290514469146729, -0.32330644130706787, 0.0035598305985331535, -0.38471898436546326, 0.013643906451761723, -0.012615165673196316, 0.5962327718734741, -0.28669023513793945, -0.012191509827971458, 0.009601988829672337, -0.05183671414852142, -0.05537504330277443, 0.21733392775058746, 0.12791961431503296, 0.024759409949183464, 1.1152639389038086, 0.14534468948841095, 0.04236423596739769, -0.03954794257879257, -0.4022505283355713, -0.6741006970405579, 0.2670444846153259, 0.2796398997306824, -0.17517341673374176, -0.3212131857872009, 0.054060839116573334]} +{"t": 5.0818, "q": [-0.3439321219921112, 0.005178036633878946, -0.005892434157431126, 0.6288639307022095, -0.3233526051044464, 0.003334502223879099, -0.3849831521511078, 0.014180799946188927, -0.012655341066420078, 0.5962242484092712, -0.2867770195007324, -0.012458475306630135, 0.009374327026307583, -0.05151811242103577, -0.05552526190876961, 0.21723805367946625, 0.12797954678535461, 0.024759409949183464, 1.115815281867981, 0.14536865055561066, 0.04236423596739769, -0.03954794257879257, -0.4081946909427643, -0.6741006970405579, 0.27083149552345276, 0.2637368440628052, -0.1760362833738327, -0.33092039823532104, 0.054863784462213516]} +{"t": 5.0985, "q": [-0.3440599739551544, 0.005783106666058302, -0.006307582836598158, 0.6288127899169922, -0.32337385416030884, 0.0031674199271947145, -0.3850342929363251, 0.014666561037302017, -0.012990138493478298, 0.5962072014808655, -0.28692588210105896, -0.012848003767430782, 0.009642165154218674, -0.051282744854688644, -0.055543769150972366, 0.21707026660442352, 0.12797954678535461, 0.024759409949183464, 1.1165822744369507, 0.14536865055561066, 0.04236423596739769, -0.03953595831990242, -0.4117540121078491, -0.6739928126335144, 0.27428296208381653, 0.24709075689315796, -0.17674335837364197, -0.34037595987319946, 0.05560680478811264]} +{"t": 5.1152, "q": [-0.3441537022590637, 0.006175124552100897, -0.006642380263656378, 0.6287105679512024, -0.32337453961372375, 0.002993236295878887, -0.38512805104255676, 0.014785869978368282, -0.013713301159441471, 0.5962072014808655, -0.28714096546173096, -0.013381714932620525, 0.009695732034742832, -0.051024653017520905, -0.05558647960424423, 0.21696241199970245, 0.1278596967458725, 0.024819331243634224, 1.11776864528656, 0.14541658759117126, 0.04236423596739769, -0.03953595831990242, -0.4151335656642914, -0.6734055876731873, 0.27721908688545227, 0.23153522610664368, -0.1777380406856537, -0.3490285873413086, 0.05661347880959511]} +{"t": 5.1319, "q": [-0.3441707491874695, 0.006481920834630728, -0.00709770480170846, 0.628523051738739, -0.3233547806739807, 0.00278293015435338, -0.3851024806499481, 0.015050055459141731, -0.014222193509340286, 0.5962157249450684, -0.28730642795562744, -0.013756703585386276, 0.00992339476943016, -0.050667956471443176, -0.05568111315369606, 0.21591979265213013, 0.12769192457199097, 0.024819331243634224, 1.1193625926971436, 0.14536865055561066, 0.04236423596739769, -0.03953595831990242, -0.41844120621681213, -0.6729262471199036, 0.27917253971099854, 0.21502096951007843, -0.18006297945976257, -0.358340322971344, 0.05811150744557381]} +{"t": 5.1487, "q": [-0.3441707491874695, 0.0067375837825238705, -0.007311975117772818, 0.6283185482025146, -0.3233596086502075, 0.0026014423929154873, -0.3851450979709625, 0.015271631069481373, -0.014543598517775536, 0.5962668657302856, -0.2875175476074219, -0.014153126627206802, 0.00991000235080719, -0.05009882152080536, -0.05586938187479973, 0.21541644632816315, 0.1275121569633484, 0.024783378466963768, 1.1205130815505981, 0.1453566700220108, 0.04236423596739769, -0.03953595831990242, -0.4227195680141449, -0.6728423237800598, 0.2807064950466156, 0.19898608326911926, -0.18263959884643555, -0.3658544421195984, 0.05963350459933281]} +{"t": 5.1654, "q": [-0.34404292702674866, 0.007010291796177626, -0.007311975117772818, 0.6280202269554138, -0.3234098255634308, 0.0023978673852980137, -0.38518768548965454, 0.015586948953568935, -0.014570382423698902, 0.5962753891944885, -0.28764578700065613, -0.014434341341257095, 0.009869826957583427, -0.04922597482800484, -0.05617962405085564, 0.21511684358119965, 0.12738032639026642, 0.024807346984744072, 1.1221189498901367, 0.14534468948841095, 0.04237622022628784, -0.03952397406101227, -0.42817240953445435, -0.672974169254303, 0.281761109828949, 0.1835503876209259, -0.1850723922252655, -0.37564554810523987, 0.06179066374897957]} +{"t": 5.1821, "q": [-0.34389805793762207, 0.007163689937442541, -0.007298583164811134, 0.6277816295623779, -0.3234969973564148, 0.0022157810162752867, -0.3852388262748718, 0.015808524563908577, -0.014556990936398506, 0.5963435769081116, -0.2877616882324219, -0.014650571160018444, 0.00966894906014204, -0.04825400188565254, -0.05631377920508385, 0.21504493057727814, 0.12729644775390625, 0.024807346984744072, 1.123125672340393, 0.14539262652397156, 0.042328283190727234, -0.03952397406101227, -0.4337690472602844, -0.6730340719223022, 0.28203675150871277, 0.168821781873703, -0.18696589767932892, -0.38476553559303284, 0.06397179514169693]} +{"t": 5.1988, "q": [-0.3438469171524048, 0.007214822340756655, -0.0072584073059260845, 0.6275600790977478, -0.3235429525375366, 0.002048513852059841, -0.3854348361492157, 0.015902267768979073, -0.014543598517775536, 0.5964969396591187, -0.2877575159072876, -0.014672270976006985, 0.009454678744077682, -0.047008708119392395, -0.05653081461787224, 0.21491311490535736, 0.1272844523191452, 0.024807346984744072, 1.1239405870437622, 0.14534468948841095, 0.042340267449617386, -0.039511989802122116, -0.43925780057907104, -0.6729861497879028, 0.28212064504623413, 0.15448865294456482, -0.18881146609783173, -0.39274701476097107, 0.06615292280912399]} +{"t": 5.2156, "q": [-0.3437105715274811, 0.007206300739198923, -0.007111096754670143, 0.6273043751716614, -0.3235105276107788, 0.0019181272946298122, -0.3854689300060272, 0.015919310972094536, -0.014503423124551773, 0.5967015027999878, -0.287720263004303, -0.014607418328523636, 0.009360934607684612, -0.04548194259405136, -0.05670788884162903, 0.21437382698059082, 0.12715263664722443, 0.024807346984744072, 1.1247555017471313, 0.14539262652397156, 0.042328283190727234, -0.03953595831990242, -0.4455015957355499, -0.6729981303215027, 0.28203675150871277, 0.13948439061641693, -0.1929580122232437, -0.4021186828613281, 0.06784269958734512]} +{"t": 5.2323, "q": [-0.3437531590461731, 0.007180734071880579, -0.007070920895785093, 0.6271851062774658, -0.32349416613578796, 0.0018892111256718636, -0.38550302386283875, 0.015919310972094536, -0.014516814611852169, 0.5967952013015747, -0.28746360540390015, -0.014146187342703342, 0.00932075921446085, -0.04365886375308037, -0.056943684816360474, 0.21313944458961487, 0.12712866067886353, 0.024807346984744072, 1.1264092922210693, 0.14536865055561066, 0.04235225170850754, -0.03952397406101227, -0.4509783685207367, -0.6735374331474304, 0.2819288969039917, 0.12505538761615753, -0.19684089720249176, -0.4098365306854248, 0.06934072822332382]} +{"t": 5.2491, "q": [-0.34363386034965515, 0.007146645803004503, -0.006990569643676281, 0.6269805431365967, -0.32346975803375244, 0.0018168240785598755, -0.3854263126850128, 0.015910789370536804, -0.014503423124551773, 0.5969571471214294, -0.2873890697956085, -0.014030935242772102, 0.009307367727160454, -0.04172911494970322, -0.05723908543586731, 0.21152158081531525, 0.126960888504982, 0.024771394208073616, 1.129105806350708, 0.1454046070575714, 0.042388204485177994, -0.03953595831990242, -0.45685064792633057, -0.6742924451828003, 0.2816292941570282, 0.11084210127592087, -0.19986093044281006, -0.4195437431335449, 0.07144995033740997]} +{"t": 5.2658, "q": [-0.343386709690094, 0.007052902597934008, -0.00676290737465024, 0.6266226172447205, -0.3234166204929352, 0.0017228687647730112, -0.38535812497138977, 0.015851134434342384, -0.014423071406781673, 0.5971872210502625, -0.2873062491416931, -0.013901256956160069, 0.009267191402614117, -0.04008791968226433, -0.057441819459199905, 0.2103111743927002, 0.1263856440782547, 0.024759409949183464, 1.1313947439193726, 0.14532071352005005, 0.042448125779628754, -0.03953595831990242, -0.4625791013240814, -0.6746759414672852, 0.28124579787254333, 0.09514276683330536, -0.20453476905822754, -0.42727357149124146, 0.07394266873598099]} +{"t": 5.2826, "q": [-0.3432844579219818, 0.006959159392863512, -0.006709339562803507, 0.626511812210083, -0.32335522770881653, 0.0016289930790662766, -0.38522177934646606, 0.015851134434342384, -0.014315936714410782, 0.5974003076553345, -0.28731870651245117, -0.013893982395529747, 0.00906631350517273, -0.03864404931664467, -0.05767117068171501, 0.20947226881980896, 0.12600214779376984, 0.024711472913622856, 1.1328208446502686, 0.1453087329864502, 0.04247209429740906, -0.03952397406101227, -0.4676963686943054, -0.6746999025344849, 0.28081437945365906, 0.08137288689613342, -0.20802217721939087, -0.433433473110199, 0.07593204826116562]} +{"t": 5.2993, "q": [-0.34304583072662354, 0.006848371122032404, -0.006361150648444891, 0.6263328790664673, -0.3232981860637665, 0.0014842808013781905, -0.38485532999038696, 0.01582556776702404, -0.014074882492423058, 0.5980564951896667, -0.28692957758903503, -0.01320215780287981, 0.008704732172191143, -0.037306152284145355, -0.05764465034008026, 0.20893298089504242, 0.1254628598690033, 0.024711472913622856, 1.1339473724365234, 0.14541658759117126, 0.042520031332969666, -0.03953595831990242, -0.473736435174942, -0.6746280193328857, 0.28044286370277405, 0.06780674308538437, -0.21372666954994202, -0.442062109708786, 0.07780159264802933]} +{"t": 5.3161, "q": [-0.34303730726242065, 0.006703495513647795, -0.005972785409539938, 0.6262050271034241, -0.32324492931365967, 0.0014193471288308501, -0.38422468304634094, 0.0157062578946352, -0.01379365287721157, 0.5988746285438538, -0.2868136763572693, -0.012971476651728153, 0.008517245762050152, -0.036097317934036255, -0.0575467012822628, 0.20813004672527313, 0.12505538761615753, 0.024663535878062248, 1.1355173587799072, 0.14539262652397156, 0.04253201559185982, -0.03954794257879257, -0.47954878211021423, -0.6746519804000854, 0.2803829312324524, 0.05368933081626892, -0.21979069709777832, -0.45036718249320984, 0.08088153600692749]} +{"t": 5.333, "q": [-0.3430714011192322, 0.006550097372382879, -0.005651379935443401, 0.6261197924613953, -0.32317957282066345, 0.0012892072554677725, -0.38335543870925903, 0.01563808135688305, -0.013686517253518105, 0.5997438430786133, -0.2867225408554077, -0.012856312096118927, 0.008343150839209557, -0.034941643476486206, -0.05747547373175621, 0.20735105872154236, 0.12476776540279388, 0.02473544143140316, 1.1372071504592896, 0.14544056355953217, 0.042520031332969666, -0.039559926837682724, -0.4855768382549286, -0.6745560765266418, 0.2803110182285309, 0.040518663823604584, -0.22706511616706848, -0.45949915051460266, 0.08495616912841797]} +{"t": 5.3497, "q": [-0.3430202603340149, 0.006422265898436308, -0.005477285478264093, 0.6260346174240112, -0.3231140077114105, 0.001217128592543304, -0.3829975128173828, 0.015629559755325317, -0.013579382561147213, 0.6001955270767212, -0.2867266535758972, -0.012892419472336769, 0.008343150839209557, -0.033831145614385605, -0.05713747441768646, 0.20645225048065186, 0.12442022562026978, 0.024699488654732704, 1.1389567852020264, 0.1454046070575714, 0.042520031332969666, -0.03954794257879257, -0.4906221926212311, -0.6746159791946411, 0.2803589701652527, 0.027875307947397232, -0.2337043732404709, -0.4671211242675781, 0.08937834948301315]} +{"t": 5.3665, "q": [-0.3427986800670624, 0.006362610962241888, -0.005490677431225777, 0.6257703900337219, -0.3230119049549103, 0.0010074209421873093, -0.38266515731811523, 0.01564660482108593, -0.013699909672141075, 0.6003915667533875, -0.28674736618995667, -0.012914004735648632, 0.008343150839209557, -0.0326976552605629, -0.05667509138584137, 0.20564930140972137, 0.1239887923002243, 0.024663535878062248, 1.140634536743164, 0.14541658759117126, 0.04249606281518936, -0.039559926837682724, -0.4957274794578552, -0.6746280193328857, 0.28122183680534363, 0.014872423373162746, -0.2400919646024704, -0.47383230924606323, 0.09362076967954636]} +{"t": 5.3832, "q": [-0.3425089418888092, 0.006251823622733355, -0.005571028683334589, 0.6253443360328674, -0.3228932321071625, 0.0008268760866485536, -0.38249471783638, 0.015629559755325317, -0.013713301159441471, 0.600493848323822, -0.2867763936519623, -0.012921075336635113, 0.008624380454421043, -0.03176194429397583, -0.05632660165429115, 0.20500215888023376, 0.12350942194461823, 0.024663535878062248, 1.1415214538574219, 0.14542856812477112, 0.04248407855629921, -0.039559926837682724, -0.5000537633895874, -0.6745920181274414, 0.28221651911735535, 0.0036671729758381844, -0.24784576892852783, -0.48114266991615295, 0.09783921390771866]} +{"t": 5.3999, "q": [-0.34211692214012146, 0.006149557884782553, -0.005678163841366768, 0.6249523162841797, -0.322758287191391, 0.0006029042415320873, -0.3820430338382721, 0.015595471486449242, -0.013874003663659096, 0.6005960702896118, -0.2868219316005707, -0.013000335544347763, 0.00898596178740263, -0.031023887917399406, -0.05595192313194275, 0.20447485148906708, 0.1227424368262291, 0.024711472913622856, 1.1419289112091064, 0.14542856812477112, 0.04247209429740906, -0.039559926837682724, -0.5046916604042053, -0.6750474572181702, 0.2846253514289856, -0.006447513122111559, -0.2565942406654358, -0.4888485372066498, 0.10288457572460175]} +{"t": 5.4167, "q": [-0.34170785546302795, 0.006098425481468439, -0.005825474392622709, 0.624483585357666, -0.32259872555732727, 0.00035009588464163244, -0.38165953755378723, 0.01555286068469286, -0.014088273979723454, 0.6007068753242493, -0.2869420349597931, -0.013180396519601345, 0.00940111093223095, -0.030430302023887634, -0.0555543527007103, 0.20400746166706085, 0.12203536927700043, 0.024723457172513008, 1.1422884464263916, 0.14536865055561066, 0.04249606281518936, -0.03954794257879257, -0.5080353021621704, -0.6755627393722534, 0.2866267263889313, -0.01661013625562191, -0.267152339220047, -0.49502041935920715, 0.1086370050907135]} +{"t": 5.4334, "q": [-0.341145396232605, 0.0060472930781543255, -0.005905826110392809, 0.6240063309669495, -0.3224557638168335, 6.812442734371871e-05, -0.38119083642959595, 0.015535816550254822, -0.014222193509340286, 0.6007494926452637, -0.28708288073539734, -0.013367571868002415, 0.009521638043224812, -0.029981285333633423, -0.05523372441530228, 0.20386365056037903, 0.12117250263690948, 0.024723457172513008, 1.1427438259124756, 0.14539262652397156, 0.042460110038518906, -0.03953595831990242, -0.5122897028923035, -0.6759462356567383, 0.2902939021587372, -0.026137595996260643, -0.2778303027153015, -0.5011683106422424, 0.11411379277706146]} +{"t": 5.4502, "q": [-0.3406681716442108, 0.0060472930781543255, -0.005972785409539938, 0.6235802173614502, -0.32237401604652405, -7.642084528924897e-05, -0.3808499276638031, 0.015561383217573166, -0.014289152808487415, 0.6008262038230896, -0.28724440932273865, -0.01359078474342823, 0.009561813436448574, -0.029425663873553276, -0.05480277165770531, 0.20383968949317932, 0.12048940360546112, 0.024759409949183464, 1.143319010734558, 0.14539262652397156, 0.042448125779628754, -0.039511989802122116, -0.5162444710731506, -0.6767612099647522, 0.29542315006256104, -0.03568902239203453, -0.28790903091430664, -0.5077716112136841, 0.11851200461387634]} +{"t": 5.467, "q": [-0.3401823937892914, 0.006030248012393713, -0.005946001503616571, 0.6228814125061035, -0.3222104012966156, -0.00033639557659626007, -0.3806113302707672, 0.015561383217573166, -0.014289152808487415, 0.6009284257888794, -0.28736448287963867, -0.013785297982394695, 0.00958859734237194, -0.029136447235941887, -0.0545896477997303, 0.2037917524576187, 0.11978232860565186, 0.024759409949183464, 1.1438822746276855, 0.14539262652397156, 0.04247209429740906, -0.039511989802122116, -0.5199356079101562, -0.677456259727478, 0.30081602931022644, -0.0448329858481884, -0.2979997396469116, -0.5140153765678406, 0.12386894971132278]} +{"t": 5.4838, "q": [-0.3396710753440857, 0.006038770545274019, -0.005959393456578255, 0.6222252249717712, -0.32201051712036133, -0.0007192817283794284, -0.3804323673248291, 0.015544338151812553, -0.014275760389864445, 0.6009199023246765, -0.2875012755393982, -0.013907444663345814, 0.009709124453365803, -0.028968945145606995, -0.05441815033555031, 0.2036479413509369, 0.11955463141202927, 0.024771394208073616, 1.1442298889160156, 0.14539262652397156, 0.0424121730029583, -0.039511989802122116, -0.5232911705970764, -0.6789423227310181, 0.30653250217437744, -0.05378520116209984, -0.30912110209465027, -0.5182577967643738, 0.1291060596704483]} +{"t": 5.5005, "q": [-0.33919385075569153, 0.0060046822763979435, -0.005972785409539938, 0.6216201186180115, -0.3218471109867096, -0.0009791037300601602, -0.38022783398628235, 0.015544338151812553, -0.014302544295787811, 0.6009199023246765, -0.2876378893852234, -0.014145242050290108, 0.010084097273647785, -0.028938381001353264, -0.05429844930768013, 0.20328840613365173, 0.11938685178756714, 0.024771394208073616, 1.1445894241333008, 0.14532071352005005, 0.0424121730029583, -0.039500005543231964, -0.5259157419204712, -0.6810035705566406, 0.3121411204338074, -0.06289321184158325, -0.3192477822303772, -0.5240102410316467, 0.1341514140367508]} +{"t": 5.5172, "q": [-0.33881887793540955, 0.005987638141959906, -0.006026353221386671, 0.6211088299751282, -0.3217654526233673, -0.0011235199635848403, -0.380108505487442, 0.015510249882936478, -0.01436950359493494, 0.6009454727172852, -0.28781601786613464, -0.014368385076522827, 0.010619773529469967, -0.02893827296793461, -0.05420903116464615, 0.20273713767528534, 0.11931494623422623, 0.024783378466963768, 1.1450088024139404, 0.14532071352005005, 0.0424121730029583, -0.039511989802122116, -0.5278452038764954, -0.683580219745636, 0.316719114780426, -0.07176154106855392, -0.328152060508728, -0.5300982594490051, 0.13683588802814484]} +{"t": 5.534, "q": [-0.338529109954834, 0.005970594007521868, -0.00605313666164875, 0.6205548644065857, -0.3216552436351776, -0.0013184873387217522, -0.38004887104034424, 0.015450594946742058, -0.014409679919481277, 0.6010051369667053, -0.288010835647583, -0.014533578418195248, 0.011061705648899078, -0.028930624946951866, -0.054174136370420456, 0.2021738737821579, 0.11920709162950516, 0.024783378466963768, 1.1455001831054688, 0.1453566700220108, 0.0424121730029583, -0.03952397406101227, -0.5298824906349182, -0.686492383480072, 0.32128509879112244, -0.08140884339809418, -0.3375237286090851, -0.5360663533210754, 0.1405869424343109]} +{"t": 5.5507, "q": [-0.3381882309913635, 0.005868328269571066, -0.0059995693154633045, 0.6198816299438477, -0.32154083251953125, -0.001491681206971407, -0.3800744116306305, 0.015356851741671562, -0.01436950359493494, 0.6010221838951111, -0.28815993666648865, -0.014735179953277111, 0.01124919205904007, -0.028900183737277985, -0.054153796285390854, 0.20180237293243408, 0.11920709162950516, 0.024819331243634224, 1.1459436416625977, 0.14539262652397156, 0.0424361415207386, -0.039511989802122116, -0.5331541895866394, -0.6901355981826782, 0.3284037113189697, -0.09104415774345398, -0.34659576416015625, -0.5394698977470398, 0.1434391885995865]} +{"t": 5.5674, "q": [-0.3377450704574585, 0.005646753590553999, -0.005932609550654888, 0.6190123558044434, -0.3213651180267334, -0.0017586731119081378, -0.3800573945045471, 0.015237542800605297, -0.014289152808487415, 0.6010392308235168, -0.28828006982803345, -0.01488631870597601, 0.011463462375104427, -0.02877841703593731, -0.05407244712114334, 0.20121514797210693, 0.1191471666097641, 0.02479536272585392, 1.1467944383621216, 0.14536865055561066, 0.042400188744068146, -0.039500005543231964, -0.5363420248031616, -0.6941622495651245, 0.3361695110797882, -0.10053566843271255, -0.35575172305107117, -0.5426816940307617, 0.14643524587154388]} +{"t": 5.5842, "q": [-0.33712297677993774, 0.0053484789095819, -0.005892434157431126, 0.617913007736206, -0.32104235887527466, -0.0022710980847477913, -0.3800318241119385, 0.014998923055827618, -0.014222193509340286, 0.6010818481445312, -0.2884872257709503, -0.015145435929298401, 0.011570597998797894, -0.028747864067554474, -0.05396270751953125, 0.20025640726089478, 0.1191471666097641, 0.02479536272585392, 1.148556113243103, 0.1453566700220108, 0.04242415726184845, -0.039511989802122116, -0.5395417809486389, -0.6977455615997314, 0.34407907724380493, -0.10905645042657852, -0.3627864718437195, -0.5480985641479492, 0.1507735401391983]} +{"t": 5.6009, "q": [-0.33653494715690613, 0.005160992499440908, -0.005825474392622709, 0.6169074177742004, -0.32065820693969727, -0.0028483285568654537, -0.37991249561309814, 0.014905179850757122, -0.014141841791570187, 0.6011329889297485, -0.2886444926261902, -0.015448174439370632, 0.011650948785245419, -0.028724931180477142, -0.05386797711253166, 0.19939354062080383, 0.11911121755838394, 0.024831315502524376, 1.1503537893295288, 0.1453087329864502, 0.0424121730029583, -0.03948802128434181, -0.5426816940307617, -0.7006816864013672, 0.35196471214294434, -0.11750532686710358, -0.3704923093318939, -0.5519334673881531, 0.15405721962451935]} +{"t": 5.6176, "q": [-0.33610883355140686, 0.005084293428808451, -0.005825474392622709, 0.6160381436347961, -0.3205191195011139, -0.003021302865818143, -0.3798954486846924, 0.014819959178566933, -0.014168625697493553, 0.6011585593223572, -0.28895506262779236, -0.01594526879489422, 0.012133057229220867, -0.028785668313503265, -0.05378939211368561, 0.19869846105575562, 0.11907526105642319, 0.024771394208073616, 1.1511447429656982, 0.1453566700220108, 0.04242415726184845, -0.03952397406101227, -0.5448388457298279, -0.7042410373687744, 0.3598383367061615, -0.1273563653230667, -0.3784857988357544, -0.5560201406478882, 0.155543252825737]} +{"t": 5.6344, "q": [-0.33569976687431335, 0.005084293428808451, -0.005825474392622709, 0.6155439019203186, -0.32044970989227295, -0.0031440621241927147, -0.3797420561313629, 0.014828480780124664, -0.014235584996640682, 0.6013119220733643, -0.2892371714115143, -0.01636352203786373, 0.012682124972343445, -0.028922371566295624, -0.05365239828824997, 0.1983029693365097, 0.11900335550308228, 0.024747425690293312, 1.151456356048584, 0.1453087329864502, 0.0424121730029583, -0.03953595831990242, -0.547079861164093, -0.7087111473083496, 0.36888644099235535, -0.13762684166431427, -0.3862156271934509, -0.5586087107658386, 0.15625032782554626]} +{"t": 5.6513, "q": [-0.3352225422859192, 0.005075771827250719, -0.005825474392622709, 0.6151177883148193, -0.32043758034706116, -0.0031947477255016565, -0.37949493527412415, 0.01483700331300497, -0.014222193509340286, 0.6015761494636536, -0.2896521985530853, -0.016781242564320564, 0.01285621989518404, -0.02899811416864395, -0.05341511592268944, 0.19815915822982788, 0.11901534348726273, 0.024783378466963768, 1.151755928993225, 0.1453087329864502, 0.0424121730029583, -0.03952397406101227, -0.5500280261039734, -0.7139002680778503, 0.3795284330844879, -0.14723819494247437, -0.3942570388317108, -0.5599988698959351, 0.15629826486110687]} +{"t": 5.668, "q": [-0.3347708582878113, 0.005084293428808451, -0.0058388663455843925, 0.6147769093513489, -0.32044175267219543, -0.0032020339276641607, -0.37930744886398315, 0.014828480780124664, -0.014262368902564049, 0.601772129535675, -0.2900507152080536, -0.017039896920323372, 0.012923179194331169, -0.029096532613039017, -0.05308389663696289, 0.19796741008758545, 0.11897938698530197, 0.024819331243634224, 1.1519477367401123, 0.14529675245285034, 0.0424121730029583, -0.03952397406101227, -0.5534914135932922, -0.719221293926239, 0.3904939889907837, -0.15658588707447052, -0.4009802043437958, -0.5618804097175598, 0.15637017786502838]} +{"t": 5.6849, "q": [-0.33450666069984436, 0.005067249294370413, -0.005892434157431126, 0.6144444942474365, -0.32046225666999817, -0.003194949124008417, -0.37912845611572266, 0.01483700331300497, -0.01436950359493494, 0.6017891764640808, -0.2902539372444153, -0.017422353848814964, 0.013164233416318893, -0.02923295460641384, -0.05277831852436066, 0.19752399623394012, 0.11895541846752167, 0.024819331243634224, 1.1521754264831543, 0.1453566700220108, 0.0424121730029583, -0.039500005543231964, -0.5561639070510864, -0.7240149974822998, 0.3997578024864197, -0.16497483849525452, -0.4058937132358551, -0.563893735408783, 0.15622636675834656]} +{"t": 5.7018, "q": [-0.3341061472892761, 0.005075771827250719, -0.005932609550654888, 0.6142399907112122, -0.3204747140407562, -0.0032168258912861347, -0.3787534832954407, 0.014871091581881046, -0.01446324773132801, 0.6020362973213196, -0.29029515385627747, -0.017841653898358345, 0.013592774048447609, -0.029422137886285782, -0.05214130878448486, 0.19690081477165222, 0.11895541846752167, 0.024819331243634224, 1.1523312330245972, 0.1453326940536499, 0.0424121730029583, -0.03948802128434181, -0.5604902505874634, -0.7305223941802979, 0.41212552785873413, -0.17310014367103577, -0.4122813045978546, -0.5667340159416199, 0.15509983897209167]} +{"t": 5.7185, "q": [-0.3339442014694214, 0.005033161025494337, -0.005905826110392809, 0.6140950918197632, -0.32048702239990234, -0.0032096561044454575, -0.3787364661693573, 0.014854047447443008, -0.01446324773132801, 0.6022749543190002, -0.29031139612197876, -0.018304459750652313, 0.01411505788564682, -0.02955820970237255, -0.051577914506196976, 0.1962536722421646, 0.11897938698530197, 0.024819331243634224, 1.1525229215621948, 0.1452607959508896, 0.042400188744068146, -0.03947603702545166, -0.5639057159423828, -0.7363347411155701, 0.4227914810180664, -0.18001504242420197, -0.41798579692840576, -0.5675249695777893, 0.1534460186958313]} +{"t": 5.7352, "q": [-0.3337567150592804, 0.004922373685985804, -0.005905826110392809, 0.6138224005699158, -0.32049933075904846, -0.003202504478394985, -0.37861713767051697, 0.01480291411280632, -0.014476639218628407, 0.602360188961029, -0.290377676486969, -0.018492233008146286, 0.014985531568527222, -0.029656432569026947, -0.05113794282078743, 0.19557057321071625, 0.11897938698530197, 0.02479536272585392, 1.1526668071746826, 0.1452607959508896, 0.04242415726184845, -0.03948802128434181, -0.5652838945388794, -0.7414160966873169, 0.4321032166481018, -0.1874932050704956, -0.42473292350769043, -0.567920446395874, 0.15204386413097382]} +{"t": 5.752, "q": [-0.33349254727363586, 0.004828630480915308, -0.005852258298546076, 0.6136690378189087, -0.32051175832748413, -0.003224363084882498, -0.3783359229564667, 0.014768825843930244, -0.014476639218628407, 0.6024197936058044, -0.2901488244533539, -0.019021175801753998, 0.015869395807385445, -0.029860856011509895, -0.050560932606458664, 0.1946837455034256, 0.11900335550308228, 0.024819331243634224, 1.1528465747833252, 0.14536865055561066, 0.0424361415207386, -0.03948802128434181, -0.5660508871078491, -0.7453708648681641, 0.44124719500541687, -0.1932096779346466, -0.4312763214111328, -0.5683998465538025, 0.15004250407218933]} +{"t": 5.7687, "q": [-0.3333391547203064, 0.004666709806770086, -0.005785298999398947, 0.6136860251426697, -0.32057780027389526, -0.0032684344332665205, -0.3781825304031372, 0.014709170907735825, -0.01444985531270504, 0.6025817394256592, -0.28996163606643677, -0.019361885264515877, 0.01664612628519535, -0.02994358167052269, -0.049992237240076065, 0.19384483993053436, 0.11897938698530197, 0.024807346984744072, 1.1532180309295654, 0.14536865055561066, 0.0424121730029583, -0.039500005543231964, -0.5667819380760193, -0.7490260601043701, 0.4513978362083435, -0.19808726012706757, -0.43597412109375, -0.5683518648147583, 0.14728613197803497]} +{"t": 5.7854, "q": [-0.3331942558288574, 0.0043854801915585995, -0.005664771888405085, 0.6137030720710754, -0.3206729590892792, -0.003363583702594042, -0.37803763151168823, 0.014640994369983673, -0.014329328201711178, 0.6028032898902893, -0.2899532914161682, -0.019390860572457314, 0.017342504113912582, -0.029996128752827644, -0.04957175627350807, 0.19285015761852264, 0.11894343793392181, 0.024807346984744072, 1.1537094116210938, 0.14536865055561066, 0.0424361415207386, -0.03948802128434181, -0.567093551158905, -0.7518423795700073, 0.46090131998062134, -0.20163458585739136, -0.4429609477519989, -0.5663145780563354, 0.14273212850093842]} +{"t": 5.8021, "q": [-0.333109050989151, 0.004027551505714655, -0.005517460871487856, 0.6137030720710754, -0.32070592045783997, -0.0033493647351861, -0.37799501419067383, 0.014623950235545635, -0.014248977415263653, 0.6030675172805786, -0.2899533212184906, -0.019376398995518684, 0.018025491386651993, -0.029941996559500694, -0.04898129776120186, 0.1916397511959076, 0.11899137496948242, 0.02479536272585392, 1.1542247533798218, 0.14536865055561066, 0.042448125779628754, -0.039500005543231964, -0.56672203540802, -0.7543950080871582, 0.46929028630256653, -0.2046426236629486, -0.44912081956863403, -0.5645289421081543, 0.1365242898464203]} +{"t": 5.8189, "q": [-0.33299824595451355, 0.0034224814735352993, -0.00546389352530241, 0.613737165927887, -0.3206893801689148, -0.003349206643179059, -0.37798652052879333, 0.014632471837103367, -0.014235584996640682, 0.6035106182098389, -0.289982408285141, -0.01934010535478592, 0.0186415184289217, -0.029780877754092216, -0.04802274331450462, 0.19028553366661072, 0.11896740645170212, 0.02479536272585392, 1.1547399759292603, 0.14539262652397156, 0.042448125779628754, -0.039511989802122116, -0.5664463639259338, -0.7576786875724792, 0.47699612379074097, -0.20795027911663055, -0.4543219804763794, -0.5619043707847595, 0.12808740139007568]} +{"t": 5.8356, "q": [-0.33292156457901, 0.0030134194530546665, -0.005316582508385181, 0.6138138771057129, -0.3206893801689148, -0.003349206643179059, -0.3779609501361847, 0.014658038504421711, -0.01419540960341692, 0.6040219664573669, -0.29011136293411255, -0.019115347415208817, 0.018735261633992195, -0.029390906915068626, -0.04666521027684212, 0.1892668753862381, 0.11894343793392181, 0.024747425690293312, 1.1552433967590332, 0.14539262652397156, 0.042448125779628754, -0.039511989802122116, -0.5663864612579346, -0.7609503865242004, 0.4856966733932495, -0.21046696603298187, -0.4614645838737488, -0.5572904348373413, 0.11939883977174759]} +{"t": 5.8523, "q": [-0.3326062560081482, 0.0027662781067192554, -0.00483447453007102, 0.6139246821403503, -0.32070162892341614, -0.0033275496680289507, -0.37794390320777893, 0.014640994369983673, -0.013807044364511967, 0.6047378182411194, -0.2901945412158966, -0.018970351666212082, 0.018708478659391403, -0.029320145025849342, -0.04527416452765465, 0.18858376145362854, 0.11895541846752167, 0.024783378466963768, 1.156082272529602, 0.14539262652397156, 0.042448125779628754, -0.039511989802122116, -0.5663145780563354, -0.7637666463851929, 0.49536794424057007, -0.21073061227798462, -0.4680798649787903, -0.5534794330596924, 0.11031479388475418]} +{"t": 5.8691, "q": [-0.3323420584201813, 0.0025191367603838444, -0.004379149992018938, 0.6142058968544006, -0.3207056224346161, -0.00330581353046, -0.37797799706459045, 0.014606906101107597, -0.01344546303153038, 0.6054707169532776, -0.2902735471725464, -0.01886150799691677, 0.018708478659391403, -0.029089033603668213, -0.043550390750169754, 0.18757709860801697, 0.11894343793392181, 0.024771394208073616, 1.1572567224502563, 0.14536865055561066, 0.04242415726184845, -0.039511989802122116, -0.5661587715148926, -0.767266035079956, 0.5039246678352356, -0.21075458824634552, -0.4719507694244385, -0.5491172075271606, 0.10184194892644882]} +{"t": 5.8858, "q": [-0.33239319920539856, 0.0022464292123913765, -0.004231838975101709, 0.614555299282074, -0.32069745659828186, -0.00332025159150362, -0.37816548347473145, 0.014615427702665329, -0.013338328339159489, 0.6062036156654358, -0.29034844040870667, -0.018702087923884392, 0.018681693822145462, -0.029002919793128967, -0.042180877178907394, 0.1864985078573227, 0.11899137496948242, 0.024783378466963768, 1.1582874059677124, 0.14539262652397156, 0.0424121730029583, -0.039511989802122116, -0.5660389065742493, -0.77070552110672, 0.511954128742218, -0.21069467067718506, -0.47547414898872375, -0.5446950197219849, 0.09182313084602356]} +{"t": 5.9025, "q": [-0.33248692750930786, 0.0019396329298615456, -0.004178271628916264, 0.6148279905319214, -0.3207097053527832, -0.003298594616353512, -0.3783614933490753, 0.014606906101107597, -0.013244585134088993, 0.6068939566612244, -0.2905271649360657, -0.01854943484067917, 0.018735261633992195, -0.029167592525482178, -0.040910229086875916, 0.18556374311447144, 0.11900335550308228, 0.024783378466963768, 1.1590543985366821, 0.1453566700220108, 0.04235225170850754, -0.03952397406101227, -0.5643970966339111, -0.7742648124694824, 0.5197558403015137, -0.21039505302906036, -0.48137038946151733, -0.5402129292488098, 0.08127701282501221]} +{"t": 5.9194, "q": [-0.3324102461338043, 0.0017521465197205544, -0.003964001312851906, 0.6151348352432251, -0.3207055330276489, -0.0032912965398281813, -0.3785915672779083, 0.01447055209428072, -0.013070490211248398, 0.6076012849807739, -0.2906600534915924, -0.018592266365885735, 0.018614735454320908, -0.029066406190395355, -0.03971048817038536, 0.18518024682998657, 0.11891946941614151, 0.024807346984744072, 1.1595816612243652, 0.1453566700220108, 0.042280346155166626, -0.03953595831990242, -0.563582181930542, -0.7773327827453613, 0.52899569272995, -0.20992767810821533, -0.48703891038894653, -0.5335376858711243, 0.06962835043668747]} +{"t": 5.9361, "q": [-0.33240172266960144, 0.0017521465197205544, -0.003589028026908636, 0.6154160499572754, -0.32070961594581604, -0.0032840773928910494, -0.37890690565109253, 0.014197844080626965, -0.012708908878266811, 0.6080784797668457, -0.2909386157989502, -0.018251148983836174, 0.018614735454320908, -0.028859548270702362, -0.03883384168148041, 0.1846769154071808, 0.11894343793392181, 0.024771394208073616, 1.1602407693862915, 0.1453087329864502, 0.042268361896276474, -0.03954794257879257, -0.563582181930542, -0.7805445790290833, 0.5384512543678284, -0.2097598910331726, -0.49144911766052246, -0.5288518667221069, 0.0589863583445549]} +{"t": 5.9528, "q": [-0.3324187695980072, 0.0017691906541585922, -0.0035086767747998238, 0.6155609488487244, -0.3207055330276489, -0.0032912965398281813, -0.37911996245384216, 0.01383991539478302, -0.01260177418589592, 0.6085642576217651, -0.292677104473114, -0.015408622100949287, 0.018695086240768433, -0.028653107583522797, -0.038204941898584366, 0.18364626169204712, 0.11891946941614151, 0.024771394208073616, 1.1608879566192627, 0.14532071352005005, 0.042280346155166626, -0.03953595831990242, -0.563522219657898, -0.7838282585144043, 0.5483621954917908, -0.20961607992649078, -0.49506834149360657, -0.5242499113082886, 0.047445546835660934]} +{"t": 5.9696, "q": [-0.3324698805809021, 0.0017691906541585922, -0.003562244353815913, 0.6156546473503113, -0.32068920135498047, -0.0033201726619154215, -0.37932446599006653, 0.013422331772744656, -0.012668733485043049, 0.6090585589408875, -0.29315927624702454, -0.014987066388130188, 0.019016491249203682, -0.028636524453759193, -0.03756483644247055, 0.18220816552639008, 0.11894343793392181, 0.024759409949183464, 1.1616309881210327, 0.1453087329864502, 0.04224439337849617, -0.039559926837682724, -0.5632705688476562, -0.7867763638496399, 0.5568110942840576, -0.20743495225906372, -0.5008687376976013, -0.5194682478904724, 0.03711514547467232]} +{"t": 5.9863, "q": [-0.3325977325439453, 0.001794756855815649, -0.0036024199798703194, 0.6158592104911804, -0.320672869682312, -0.003349066711962223, -0.3796568512916565, 0.013243366964161396, -0.012695517390966415, 0.6097573637962341, -0.2935203015804291, -0.015397768467664719, 0.019699478521943092, -0.028589380905032158, -0.03683529049158096, 0.18039853870868683, 0.11900335550308228, 0.024771394208073616, 1.162290096282959, 0.14532071352005005, 0.04224439337849617, -0.03954794257879257, -0.5632585883140564, -0.790347695350647, 0.5672852993011475, -0.2057931125164032, -0.5072203278541565, -0.5116185545921326, 0.025382589548826218]} +{"t": 6.0031, "q": [-0.3326062560081482, 0.0019140667282044888, -0.003575636073946953, 0.6159955263137817, -0.320672869682312, -0.003349066711962223, -0.38006591796875, 0.012911004945635796, -0.012682124972343445, 0.6105499267578125, -0.2938023805618286, -0.015830516815185547, 0.02051638439297676, -0.02865637093782425, -0.036180995404720306, 0.17887654900550842, 0.11894343793392181, 0.024771394208073616, 1.1629852056503296, 0.1453087329864502, 0.04230431467294693, -0.03954794257879257, -0.563438355922699, -0.7940747737884521, 0.578071117401123, -0.20422318577766418, -0.5114028453826904, -0.5038408041000366, 0.013674001209437847]} +{"t": 6.0198, "q": [-0.33258920907974243, 0.002093031071126461, -0.0036158119328320026, 0.6160807609558105, -0.3206687867641449, -0.0033562856260687113, -0.38027042150497437, 0.012621252797544003, -0.012682124972343445, 0.6111464500427246, -0.29405543208122253, -0.016256161034107208, 0.021748438477516174, -0.028920907527208328, -0.03557948023080826, 0.17730660736560822, 0.11891946941614151, 0.024783378466963768, 1.1632847785949707, 0.1453326940536499, 0.042328283190727234, -0.03954794257879257, -0.5635342001914978, -0.7978857755661011, 0.5874307751655579, -0.20289292931556702, -0.5135360360145569, -0.49799248576164246, 0.002133192028850317]} +{"t": 6.0366, "q": [-0.332546591758728, 0.002374260686337948, -0.0036158119328320026, 0.6161404252052307, -0.3206608295440674, -0.003399757668375969, -0.380440890789032, 0.012340023182332516, -0.012682124972343445, 0.611564040184021, -0.29426276683807373, -0.01667473278939724, 0.024092020466923714, -0.028957223519682884, -0.03486743941903114, 0.17504160106182098, 0.11893144994974136, 0.024783378466963768, 1.1640757322311401, 0.1453326940536499, 0.04236423596739769, -0.03954794257879257, -0.563582181930542, -0.8031588196754456, 0.5963590145111084, -0.20278507471084595, -0.5170593857765198, -0.49070608615875244, -0.008532768115401268]} +{"t": 6.0533, "q": [-0.33253806829452515, 0.0025447034277021885, -0.0036425956059247255, 0.6161404252052307, -0.320636123418808, -0.003414055798202753, -0.3806198537349701, 0.012442288920283318, -0.012682124972343445, 0.6119049191474915, -0.2944701611995697, -0.017035461962223053, 0.02703823707997799, -0.028963306918740273, -0.03421379625797272, 0.17205752432346344, 0.11894343793392181, 0.02473544143140316, 1.1657055616378784, 0.1452847570180893, 0.042460110038518906, -0.03954794257879257, -0.5636181235313416, -0.809402585029602, 0.605431079864502, -0.2024734914302826, -0.5211939811706543, -0.4836713373661041, -0.020313261076807976]} +{"t": 6.07, "q": [-0.3325039744377136, 0.0025873142294585705, -0.0037899063900113106, 0.6160807609558105, -0.32059940695762634, -0.003479044884443283, -0.3807561993598938, 0.012476377189159393, -0.01284282747656107, 0.6123054623603821, -0.29468169808387756, -0.01738896407186985, 0.02938181906938553, -0.028810296207666397, -0.03371938318014145, 0.1699962317943573, 0.11894343793392181, 0.024723457172513008, 1.167527198791504, 0.1453087329864502, 0.042448125779628754, -0.03954794257879257, -0.5635941624641418, -0.8148314356803894, 0.6151143312454224, -0.2012031525373459, -0.5262273550033569, -0.4765167534351349, -0.03178216516971588]} +{"t": 6.0867, "q": [-0.332546591758728, 0.0026043583638966084, -0.003964001312851906, 0.616046667098999, -0.320587158203125, -0.0035007018595933914, -0.38100335001945496, 0.012484898790717125, -0.013003530912101269, 0.6128679513931274, -0.29490983486175537, -0.017800234258174896, 0.031323645263910294, -0.028604155406355858, -0.03323889896273613, 0.16853415966033936, 0.11875168979167938, 0.024759409949183464, 1.1695765256881714, 0.1453806310892105, 0.04242415726184845, -0.03953595831990242, -0.5636420845985413, -0.8190139532089233, 0.6238987445831299, -0.19965718686580658, -0.5309491157531738, -0.467504620552063, -0.044437509030103683]} +{"t": 6.1035, "q": [-0.3325210213661194, 0.0026469682343304157, -0.004231838975101709, 0.616046667098999, -0.3205791711807251, -0.003544192062690854, -0.3810288906097412, 0.012510465458035469, -0.013204408809542656, 0.6132173538208008, -0.2950756549835205, -0.018204541876912117, 0.032528914511203766, -0.028511950746178627, -0.03275562450289726, 0.16775518655776978, 0.11859589070081711, 0.024747425690293312, 1.1715059280395508, 0.1452368199825287, 0.04242415726184845, -0.03954794257879257, -0.5639896392822266, -0.8218661546707153, 0.6311971545219421, -0.19778765738010406, -0.5345084071159363, -0.4588879644870758, -0.05548696219921112]} +{"t": 6.1202, "q": [-0.33252954483032227, 0.0026895790360867977, -0.004553244449198246, 0.6159443855285645, -0.3205791711807251, -0.003544192062690854, -0.38102036714553833, 0.012518987990915775, -0.01351242233067751, 0.6134048104286194, -0.29520413279533386, -0.018543900921940804, 0.03322529420256615, -0.02847341075539589, -0.03251439705491066, 0.16769526898860931, 0.11847604811191559, 0.024747425690293312, 1.1725245714187622, 0.1452847570180893, 0.04235225170850754, -0.03953595831990242, -0.5646487474441528, -0.8251138925552368, 0.6375248432159424, -0.19539080560207367, -0.538403332233429, -0.4524044990539551, -0.06691991537809372]} +{"t": 6.1369, "q": [-0.3325039744377136, 0.0026895790360867977, -0.004888041876256466, 0.6158080697059631, -0.32055041193962097, -0.0035656909458339214, -0.38091811537742615, 0.012510465458035469, -0.0138606121763587, 0.6135326623916626, -0.29516223073005676, -0.01896357350051403, 0.033694010227918625, -0.028480634093284607, -0.03236229717731476, 0.16788701713085175, 0.11838017404079437, 0.024771394208073616, 1.17341148853302, 0.14527277648448944, 0.04219645634293556, -0.03953595831990242, -0.5665063261985779, -0.8284814953804016, 0.6445955038070679, -0.19334150850772858, -0.5424899458885193, -0.4438597559928894, -0.07787349820137024]} +{"t": 6.1539, "q": [-0.3324102461338043, 0.0027236673049628735, -0.005048744846135378, 0.6157057881355286, -0.32055041193962097, -0.0035656909458339214, -0.380858451128006, 0.012544553726911545, -0.014074882492423058, 0.6137542128562927, -0.2951037287712097, -0.019426681101322174, 0.033854711800813675, -0.028526073321700096, -0.03231390193104744, 0.16800685226917267, 0.11826033145189285, 0.024759409949183464, 1.1745139360427856, 0.14527277648448944, 0.042160503566265106, -0.03954794257879257, -0.5688312649726868, -0.8313816785812378, 0.6519298553466797, -0.19057315587997437, -0.5477150678634644, -0.4361898601055145, -0.0887671560049057]} +{"t": 6.1706, "q": [-0.33231648802757263, 0.0027066231705248356, -0.005075528286397457, 0.615603506565094, -0.3205544948577881, -0.003558472031727433, -0.38082435727119446, 0.012570120394229889, -0.01412845030426979, 0.6139417290687561, -0.2943674325942993, -0.02091248892247677, 0.033868104219436646, -0.028647230938076973, -0.03217829018831253, 0.16797089576721191, 0.11804462224245071, 0.024747425690293312, 1.1756165027618408, 0.14524881541728973, 0.042160503566265106, -0.03953595831990242, -0.5714557766914368, -0.8340061902999878, 0.6582096219062805, -0.18786472082138062, -0.5511305332183838, -0.4302816092967987, -0.096580870449543]} +{"t": 6.1873, "q": [-0.3322312831878662, 0.002715145703405142, -0.005155880004167557, 0.615441620349884, -0.32056283950805664, -0.0035730679519474506, -0.3807988166809082, 0.012561597861349583, -0.014168625697493553, 0.6140354871749878, -0.294379860162735, -0.020905204117298126, 0.03389488905668259, -0.02874550223350525, -0.03199813887476921, 0.16756343841552734, 0.11786485463380814, 0.024747425690293312, 1.1766951084136963, 0.14527277648448944, 0.042148519307374954, -0.03952397406101227, -0.5740563869476318, -0.8373377919197083, 0.6647650003433228, -0.18648652732372284, -0.5543063879013062, -0.4237861633300781, -0.10428673028945923]} +{"t": 6.2041, "q": [-0.33198413252830505, 0.0027066231705248356, -0.00512909609824419, 0.6151604056358337, -0.32056283950805664, -0.0035730679519474506, -0.38073062896728516, 0.012595686130225658, -0.014235584996640682, 0.6140780448913574, -0.2942723333835602, -0.021079275757074356, 0.03390828147530556, -0.028805864974856377, -0.031841982156038284, 0.16703613102436066, 0.11776898056268692, 0.024771394208073616, 1.1777976751327515, 0.14524881541728973, 0.042088598012924194, -0.039511989802122116, -0.5771962404251099, -0.8407652974128723, 0.6694148778915405, -0.18565961718559265, -0.5580334663391113, -0.4191003441810608, -0.10984741151332855]} +{"t": 6.2208, "q": [-0.3317369818687439, 0.002681057434529066, -0.005102312192320824, 0.6149814128875732, -0.32056283950805664, -0.0035730679519474506, -0.3805260956287384, 0.012714996002614498, -0.014222193509340286, 0.6140865683555603, -0.2942516505718231, -0.021115539595484734, 0.03398863226175308, -0.028805002570152283, -0.03148845210671425, 0.16628111898899078, 0.11776898056268692, 0.024783378466963768, 1.1790800094604492, 0.1453087329864502, 0.042040660977363586, -0.03952397406101227, -0.5816184282302856, -0.8454031944274902, 0.67357337474823, -0.18545588850975037, -0.5603104829788208, -0.4157807230949402, -0.11341870576143265]} +{"t": 6.2376, "q": [-0.33138757944107056, 0.0026469682343304157, -0.005062136333435774, 0.6147342920303345, -0.3205587565898895, -0.0035802870988845825, -0.3802874684333801, 0.012732040137052536, -0.014235584996640682, 0.6140950918197632, -0.2942516505718231, -0.021115539595484734, 0.03400202468037605, -0.02884216420352459, -0.031160084530711174, 0.16578976809978485, 0.11781691759824753, 0.024759409949183464, 1.1796791553497314, 0.14524881541728973, 0.04206462949514389, -0.03953595831990242, -0.5859686732292175, -0.8500770330429077, 0.6773004531860352, -0.1853959709405899, -0.5634862780570984, -0.41337189078330994, -0.1164507195353508]} +{"t": 6.2546, "q": [-0.3308165967464447, 0.002595835831016302, -0.005035352893173695, 0.6144104599952698, -0.3205587565898895, -0.0035802870988845825, -0.37986990809440613, 0.012749084271490574, -0.014235584996640682, 0.6140695214271545, -0.2942599356174469, -0.021101024001836777, 0.03389488905668259, -0.029023220762610435, -0.030681833624839783, 0.1655740588903427, 0.11796072870492935, 0.024819331243634224, 1.1799068450927734, 0.1452847570180893, 0.042028676718473434, -0.03952397406101227, -0.5913376212120056, -0.8541396856307983, 0.6814470291137695, -0.18476079404354095, -0.567692756652832, -0.41035184264183044, -0.11956661194562912]} +{"t": 6.2714, "q": [-0.3301859498023987, 0.0025873142294585705, -0.004941609688103199, 0.614180326461792, -0.3205793499946594, -0.0035732260439544916, -0.37940970063209534, 0.012885438278317451, -0.014208801090717316, 0.6140440106391907, -0.2942723333835602, -0.021079275757074356, 0.03378775343298912, -0.02921929955482483, -0.030154943466186523, 0.16538231074810028, 0.11805660277605057, 0.024807346984744072, 1.1801226139068604, 0.1452607959508896, 0.04200470820069313, -0.03952397406101227, -0.5975214838981628, -0.8580345511436462, 0.6871874332427979, -0.18431738018989563, -0.5700296759605408, -0.40563008189201355, -0.12232298403978348]} +{"t": 6.2881, "q": [-0.32956385612487793, 0.002595835831016302, -0.004955001175403595, 0.6139161586761475, -0.3205958902835846, -0.0035734022967517376, -0.3788387179374695, 0.012859872542321682, -0.01419540960341692, 0.6139672994613647, -0.294301301240921, -0.021042976528406143, 0.03378775343298912, -0.029680732637643814, -0.029549378901720047, 0.16491492092609406, 0.11806859076023102, 0.024807346984744072, 1.1801944971084595, 0.1453087329864502, 0.04201669245958328, -0.03952397406101227, -0.6032260060310364, -0.8615219593048096, 0.6923766136169434, -0.18413762748241425, -0.5724984407424927, -0.4018790125846863, -0.12344950437545776]} +{"t": 6.3048, "q": [-0.3292059302330017, 0.0025873142294585705, -0.005008568987250328, 0.6136519908905029, -0.3205876350402832, -0.0035733049735426903, -0.3784552216529846, 0.01296213734894991, -0.014302544295787811, 0.6138479709625244, -0.2943095266819, -0.02101401425898075, 0.033868104219436646, -0.030188199132680893, -0.0291211549192667, 0.1642797589302063, 0.11803263425827026, 0.024831315502524376, 1.180362343788147, 0.1453087329864502, 0.042028676718473434, -0.039500005543231964, -0.6077679991722107, -0.8653689026832581, 0.6978654265403748, -0.18423350155353546, -0.574871301651001, -0.39878708124160767, -0.12480372190475464]} +{"t": 6.3216, "q": [-0.3289417326450348, 0.0025617475621402264, -0.00508892023935914, 0.6134815216064453, -0.3205918073654175, -0.003580621210858226, -0.3781058192253113, 0.013107013888657093, -0.01444985531270504, 0.6137968301773071, -0.29430535435676575, -0.02100680023431778, 0.034028805792331696, -0.03089294023811817, -0.028657034039497375, 0.16378840804100037, 0.11805660277605057, 0.024831315502524376, 1.1805181503295898, 0.14532071352005005, 0.042040660977363586, -0.039511989802122116, -0.6116628646850586, -0.8690001368522644, 0.7024673223495483, -0.18435333669185638, -0.5774958729743958, -0.3968576192855835, -0.12588229775428772]} +{"t": 6.3383, "q": [-0.32872867584228516, 0.0025532254949212074, -0.005155880004167557, 0.6133536696434021, -0.320604145526886, -0.0035734812263399363, -0.37788423895835876, 0.013320066034793854, -0.014556990936398506, 0.6137286424636841, -0.29434266686439514, -0.02097046561539173, 0.03410915657877922, -0.03159738704562187, -0.028184298425912857, 0.16350078582763672, 0.11803263425827026, 0.024807346984744072, 1.180601954460144, 0.14527277648448944, 0.042040660977363586, -0.039511989802122116, -0.6150903701782227, -0.8724995255470276, 0.707500696182251, -0.1844971477985382, -0.5790297985076904, -0.3958509564399719, -0.12720057368278503]} +{"t": 6.3552, "q": [-0.3286179006099701, 0.0025532254949212074, -0.005182663444429636, 0.6132344007492065, -0.3206126093864441, -0.003602594370022416, -0.37785014510154724, 0.01332858856767416, -0.014556990936398506, 0.6136605143547058, -0.29434671998023987, -0.020934289321303368, 0.03409576788544655, -0.03224889561533928, -0.02778421901166439, 0.16336895525455475, 0.11809255182743073, 0.024819331243634224, 1.1807218790054321, 0.1452368199825287, 0.042028676718473434, -0.039511989802122116, -0.6178227663040161, -0.8747645616531372, 0.7115633487701416, -0.18466491997241974, -0.5799166560173035, -0.3955633342266083, -0.12802748382091522]} +{"t": 6.372, "q": [-0.32860085368156433, 0.0025873142294585705, -0.00512909609824419, 0.6131150722503662, -0.3206126093864441, -0.003602594370022416, -0.377867192029953, 0.013303021900355816, -0.014556990936398506, 0.6135838031768799, -0.2943550646305084, -0.02094871737062931, 0.03396184742450714, -0.03277156502008438, -0.02744557522237301, 0.16326110064983368, 0.11808057129383087, 0.024807346984744072, 1.180829644203186, 0.1452368199825287, 0.042040660977363586, -0.03952397406101227, -0.62126225233078, -0.8771494030952454, 0.7164769172668457, -0.18465293943881989, -0.5802043080329895, -0.39529967308044434, -0.1291060596704483]} +{"t": 6.3887, "q": [-0.3285582363605499, 0.0025873142294585705, -0.005102312192320824, 0.6129446029663086, -0.32060444355010986, -0.0036170324310660362, -0.3778586685657501, 0.013303021900355816, -0.014503423124551773, 0.6134474277496338, -0.29434671998023987, -0.020934289321303368, 0.03396184742450714, -0.0330972783267498, -0.027230847626924515, 0.1630573719739914, 0.11810453981161118, 0.024831315502524376, 1.1810214519500732, 0.14524881541728973, 0.04205264523625374, -0.039511989802122116, -0.6251930594444275, -0.8803731799125671, 0.7227925658226013, -0.18478477001190186, -0.5802761912345886, -0.3948802351951599, -0.12989701330661774]} +{"t": 6.4056, "q": [-0.3285241425037384, 0.0025532254949212074, -0.005102312192320824, 0.6128849983215332, -0.3206126093864441, -0.003602594370022416, -0.3777734637260437, 0.01338824350386858, -0.014543598517775536, 0.613362193107605, -0.294342577457428, -0.020941538736224174, 0.03398863226175308, -0.03320324420928955, -0.027144646272063255, 0.16270983219146729, 0.11811652034521103, 0.024843299761414528, 1.1810693740844727, 0.14516492187976837, 0.04207661375403404, -0.039511989802122116, -0.6292197704315186, -0.8843638896942139, 0.7292041778564453, -0.1849525421857834, -0.5803720355033875, -0.3944368064403534, -0.13068798184394836]} +{"t": 6.4223, "q": [-0.3284730017185211, 0.0025106146931648254, -0.005155880004167557, 0.6127827167510986, -0.3206126093864441, -0.003602594370022416, -0.37771379947662354, 0.013481986708939075, -0.014570382423698902, 0.6132344007492065, -0.2943756878376007, -0.020883528515696526, 0.03428325429558754, -0.033202897757291794, -0.02703702263534069, 0.16207465529441833, 0.11815247684717178, 0.024819331243634224, 1.1811652183532715, 0.1453087329864502, 0.042100582271814346, -0.03953595831990242, -0.6322157979011536, -0.8889418840408325, 0.7338540554046631, -0.18501247465610504, -0.5805757641792297, -0.3942570388317108, -0.13170664012432098]} +{"t": 6.4391, "q": [-0.32840484380722046, 0.00241687148809433, -0.005222839303314686, 0.6125952005386353, -0.3206126093864441, -0.003602594370022416, -0.3775518834590912, 0.013626862317323685, -0.014677518047392368, 0.6131406426429749, -0.29439646005630493, -0.020847270265221596, 0.034350212663412094, -0.0331873819231987, -0.02692912146449089, 0.16161926090717316, 0.11811652034521103, 0.024807346984744072, 1.181273102760315, 0.14529675245285034, 0.0421365350484848, -0.03952397406101227, -0.6357151865959167, -0.8926809430122375, 0.7388994097709656, -0.1850963532924652, -0.5806117653846741, -0.3940652906894684, -0.1336241066455841]} +{"t": 6.456, "q": [-0.32813212275505066, 0.00241687148809433, -0.005155880004167557, 0.6124759316444397, -0.3206126093864441, -0.003602594370022416, -0.37742406129837036, 0.013891047798097134, -0.014664125628769398, 0.6130980253219604, -0.29439646005630493, -0.020847270265221596, 0.03431003540754318, -0.03311838582158089, -0.0267077274620533, 0.16142751276493073, 0.11812850832939148, 0.024819331243634224, 1.1815367937088013, 0.1452847570180893, 0.04212455078959465, -0.03953595831990242, -0.6403411030769348, -0.894586443901062, 0.7446877956390381, -0.1855996996164322, -0.5805878043174744, -0.3940413296222687, -0.13605691492557526]} +{"t": 6.4728, "q": [-0.32800430059432983, 0.0024253935553133488, -0.005155880004167557, 0.6122884154319763, -0.3206126093864441, -0.003602594370022416, -0.37733882665634155, 0.013856959529221058, -0.014637341722846031, 0.6130298376083374, -0.29439231753349304, -0.020854517817497253, 0.03431003540754318, -0.03313334286212921, -0.02663951925933361, 0.16109195351600647, 0.11810453981161118, 0.02479536272585392, 1.181800365447998, 0.14534468948841095, 0.04217248782515526, -0.03954794257879257, -0.6436008214950562, -0.8952216506004333, 0.749265730381012, -0.18604311347007751, -0.5806117653846741, -0.3940652906894684, -0.13905297219753265]} +{"t": 6.4895, "q": [-0.3278423845767975, 0.0024424376897513866, -0.005276407115161419, 0.6121180057525635, -0.32060444355010986, -0.0036170324310660362, -0.3770916759967804, 0.013771738857030869, -0.014771261252462864, 0.6129275560379028, -0.29439646005630493, -0.020847270265221596, 0.034376997500658035, -0.033094827085733414, -0.02645781822502613, 0.16046877205371857, 0.11806859076023102, 0.024819331243634224, 1.1821000576019287, 0.1453566700220108, 0.042160503566265106, -0.03954794257879257, -0.6465129852294922, -0.8951736688613892, 0.7538557052612305, -0.18628279864788055, -0.5806117653846741, -0.39405331015586853, -0.14361895620822906]} +{"t": 6.5063, "q": [-0.32767194509506226, 0.0024509597569704056, -0.0053701503202319145, 0.612007200717926, -0.32060444355010986, -0.0036170324310660362, -0.37698090076446533, 0.013976269401609898, -0.014851612038910389, 0.6129275560379028, -0.2944006323814392, -0.020840022712945938, 0.034510914236307144, -0.03298768773674965, -0.026172129437327385, 0.15991750359535217, 0.11805660277605057, 0.024807346984744072, 1.1822677850723267, 0.14527277648448944, 0.04218447208404541, -0.03953595831990242, -0.6497727036476135, -0.8946703672409058, 0.7600515484809875, -0.1862947791814804, -0.5806237459182739, -0.39389750361442566, -0.14877216517925262]} +{"t": 6.523, "q": [-0.3275696635246277, 0.0024594818241894245, -0.005396933760493994, 0.6118111610412598, -0.32059627771377563, -0.0036314704921096563, -0.37696385383605957, 0.013942181132733822, -0.014824828132987022, 0.6129105687141418, -0.29444634914398193, -0.020789198577404022, 0.03479214385151863, -0.032812561839818954, -0.025978131219744682, 0.15949805080890656, 0.11809255182743073, 0.024771394208073616, 1.1825075149536133, 0.14534468948841095, 0.04219645634293556, -0.03953595831990242, -0.6526010036468506, -0.8941071033477783, 0.7669305205345154, -0.18642660975456238, -0.5805997848510742, -0.39359790086746216, -0.1540931612253189]} +{"t": 6.5398, "q": [-0.3274674117565155, 0.0024594818241894245, -0.005490677431225777, 0.6116237044334412, -0.3205921947956085, -0.0036386894062161446, -0.3769041895866394, 0.01398479100316763, -0.014945355243980885, 0.6128849983215332, -0.29445886611938477, -0.020752975717186928, 0.03515372797846794, -0.032690562307834625, -0.025789998471736908, 0.1591624915599823, 0.11806859076023102, 0.02479536272585392, 1.1826512813568115, 0.1453087329864502, 0.042220424860715866, -0.03953595831990242, -0.6540151238441467, -0.8933640718460083, 0.7731982469558716, -0.18672621250152588, -0.5805637836456299, -0.3934301435947418, -0.1594620943069458]} +{"t": 6.5566, "q": [-0.3274162709712982, 0.0024935705587267876, -0.005637987982481718, 0.6115469932556152, -0.3205922842025757, -0.0036532243248075247, -0.37682750821113586, 0.013993313536047935, -0.015025706961750984, 0.6128935217857361, -0.29447129368782043, -0.020789090543985367, 0.03530103713274002, -0.03256811946630478, -0.025454731658101082, 0.15900669991970062, 0.11811652034521103, 0.024843299761414528, 1.1829508543014526, 0.14521285891532898, 0.042208440601825714, -0.03953595831990242, -0.6544824838638306, -0.892932653427124, 0.778998613357544, -0.1865704208612442, -0.580467939376831, -0.39283090829849243, -0.1651546061038971]} +{"t": 6.5734, "q": [-0.3273907005786896, 0.0025361808948218822, -0.005731731187552214, 0.6114532351493835, -0.32058802247047424, -0.003631391329690814, -0.376818984746933, 0.01401888020336628, -0.01511945016682148, 0.612902045249939, -0.2944754660129547, -0.02078184299170971, 0.03527425229549408, -0.03230065107345581, -0.024837804958224297, 0.15900669991970062, 0.11805660277605057, 0.024831315502524376, 1.1830947399139404, 0.14524881541728973, 0.042208440601825714, -0.03952397406101227, -0.6545783877372742, -0.8926689624786377, 0.7858056426048279, -0.18634271621704102, -0.5804319977760315, -0.3916324973106384, -0.1717459261417389]} +{"t": 6.5901, "q": [-0.3273821771144867, 0.0025447034277021885, -0.00579869095236063, 0.6114106774330139, -0.3205921947956085, -0.0036386894062161446, -0.376818984746933, 0.014001836068928242, -0.01519980188459158, 0.6129275560379028, -0.2944754362106323, -0.02079630456864834, 0.035394780337810516, -0.03197202831506729, -0.024054566398262978, 0.15874305367469788, 0.11800866574048996, 0.024819331243634224, 1.1832265853881836, 0.1452847570180893, 0.04219645634293556, -0.03954794257879257, -0.6544225811958313, -0.8918300867080688, 0.7916539311408997, -0.1862947791814804, -0.5804799199104309, -0.389870822429657, -0.1785050332546234]} +{"t": 6.6069, "q": [-0.3273907005786896, 0.0025447034277021885, -0.005785298999398947, 0.6113680601119995, -0.3205840289592743, -0.003653145395219326, -0.376818984746933, 0.01401888020336628, -0.015213193371891975, 0.6129105687141418, -0.2944837510585785, -0.020796269178390503, 0.035367995500564575, -0.03147618845105171, -0.02317020483314991, 0.15857526659965515, 0.11809255182743073, 0.024807346984744072, 1.1834062337875366, 0.1453087329864502, 0.04217248782515526, -0.039511989802122116, -0.6547102332115173, -0.8910391330718994, 0.7975382208824158, -0.18655844032764435, -0.5805038809776306, -0.38683879375457764, -0.1862947791814804]} +{"t": 6.6236, "q": [-0.32734808325767517, 0.0025276588276028633, -0.005731731187552214, 0.6112572550773621, -0.3205799460411072, -0.0036603643093258142, -0.37682750821113586, 0.014035924337804317, -0.015159625560045242, 0.6128509044647217, -0.2944795787334442, -0.02080351673066616, 0.03528764471411705, -0.030783098191022873, -0.022293223068118095, 0.15846741199493408, 0.11810453981161118, 0.024819331243634224, 1.1835501194000244, 0.1452607959508896, 0.042148519307374954, -0.039500005543231964, -0.6555371284484863, -0.8902002573013306, 0.8041295409202576, -0.18698987364768982, -0.5804559588432312, -0.3825964033603668, -0.19516310095787048]} +{"t": 6.6405, "q": [-0.3273225426673889, 0.0024765264242887497, -0.005637987982481718, 0.6112146377563477, -0.3205921947956085, -0.0036386894062161446, -0.3768104612827301, 0.014087056741118431, -0.015132841654121876, 0.6128423810005188, -0.2944754660129547, -0.02076738327741623, 0.03527425229549408, -0.030151521787047386, -0.021662315353751183, 0.15811987221240997, 0.11800866574048996, 0.024819331243634224, 1.1837059259414673, 0.14529675245285034, 0.042160503566265106, -0.03952397406101227, -0.6560884118080139, -0.8898407220840454, 0.8093187212944031, -0.18733741343021393, -0.5803840160369873, -0.3798519968986511, -0.2022697478532791]} +{"t": 6.6572, "q": [-0.3272884488105774, 0.002340172417461872, -0.0056112040765583515, 0.6111720204353333, -0.3205840289592743, -0.003653145395219326, -0.3767593204975128, 0.01426602154970169, -0.015159625560045242, 0.6128168106079102, -0.2945003807544708, -0.020752815529704094, 0.03524747118353844, -0.029664305970072746, -0.021107103675603867, 0.15758058428764343, 0.11784088611602783, 0.02479536272585392, 1.1838017702102661, 0.14527277648448944, 0.042160503566265106, -0.03952397406101227, -0.6562561988830566, -0.8898407220840454, 0.8136809468269348, -0.18752916157245636, -0.5802282691001892, -0.3774431645870209, -0.21019132435321808]} +{"t": 6.674, "q": [-0.3272032141685486, 0.0022549512796103954, -0.005571028683334589, 0.6111549735069275, -0.3205840289592743, -0.003653145395219326, -0.37665706872940063, 0.014547251164913177, -0.015146234072744846, 0.6128082871437073, -0.2945087254047394, -0.020709380507469177, 0.035234078764915466, -0.029374374076724052, -0.020555870607495308, 0.15698136389255524, 0.11780493706464767, 0.024783378466963768, 1.183969497680664, 0.1452847570180893, 0.042160503566265106, -0.03952397406101227, -0.6569033265113831, -0.8902361989021301, 0.8177555799484253, -0.18752916157245636, -0.5800604820251465, -0.3753699064254761, -0.21893981099128723]} +{"t": 6.6907, "q": [-0.32722026109695435, 0.0021867742761969566, -0.005530852824449539, 0.6111038327217102, -0.3205921947956085, -0.0036386894062161446, -0.37659740447998047, 0.014462029561400414, -0.015146234072744846, 0.6127230525016785, -0.29451704025268555, -0.020709345117211342, 0.035126943141222, -0.02943379431962967, -0.020147129893302917, 0.1564660519361496, 0.11790081113576889, 0.024771394208073616, 1.1840415000915527, 0.1452368199825287, 0.042160503566265106, -0.03953595831990242, -0.657131016254425, -0.8902601599693298, 0.821063220500946, -0.1875411421060562, -0.5798926949501038, -0.3735123574733734, -0.22762838006019592]} +{"t": 6.7075, "q": [-0.3271350562572479, 0.0021782522089779377, -0.005517460871487856, 0.6110526919364929, -0.3205921947956085, -0.0036386894062161446, -0.3764951229095459, 0.014513162896037102, -0.015132841654121876, 0.6126804351806641, -0.2945087254047394, -0.020723842084407806, 0.035033199936151505, -0.029592003673315048, -0.01979333907365799, 0.1560945361852646, 0.1179247796535492, 0.024783378466963768, 1.1842092275619507, 0.1452607959508896, 0.04219645634293556, -0.03954794257879257, -0.6578500866889954, -0.8899725079536438, 0.8243588805198669, -0.1874692291021347, -0.5796650052070618, -0.37178662419319153, -0.2365206629037857]} +{"t": 6.7242, "q": [-0.3270924389362335, 0.0021612080745399, -0.005517460871487856, 0.611027181148529, -0.3205921947956085, -0.0036386894062161446, -0.3764013946056366, 0.01453020703047514, -0.01511945016682148, 0.612612247467041, -0.2945004105567932, -0.02070939913392067, 0.03497963026165962, -0.02978830598294735, -0.01949375681579113, 0.15547135472297668, 0.11803263425827026, 0.02479536272585392, 1.184401035308838, 0.1453326940536499, 0.042208440601825714, -0.03952397406101227, -0.6586410403251648, -0.8898047804832458, 0.8270313739776611, -0.18745724856853485, -0.5794253349304199, -0.370144784450531, -0.2450055032968521]} +{"t": 6.7409, "q": [-0.3270924389362335, 0.0021271193400025368, -0.005557636730372906, 0.6110016107559204, -0.3205921947956085, -0.0036386894062161446, -0.37627357244491577, 0.01458986196666956, -0.015226585790514946, 0.6125441193580627, -0.2945045828819275, -0.020702151581645012, 0.03507337346673012, -0.029893815517425537, -0.019280798733234406, 0.15470436215400696, 0.11802065372467041, 0.02479536272585392, 1.1846166849136353, 0.1453087329864502, 0.04223240911960602, -0.03953595831990242, -0.6595518589019775, -0.8897687792778015, 0.8289488554000854, -0.18745724856853485, -0.5792575478553772, -0.36888644099235535, -0.25283119082450867]} +{"t": 6.7576, "q": [-0.32708391547203064, 0.0020674648694694042, -0.005584420636296272, 0.6110016107559204, -0.3205921947956085, -0.0036386894062161446, -0.3761201500892639, 0.014675082638859749, -0.015347111970186234, 0.6123736500740051, -0.29450875520706177, -0.020665982738137245, 0.035126943141222, -0.030037516728043556, -0.01917121186852455, 0.1541171371936798, 0.11803263425827026, 0.02479536272585392, 1.1848803758621216, 0.14534468948841095, 0.042268361896276474, -0.03952397406101227, -0.6605225801467896, -0.8897088766098022, 0.8305187821388245, -0.18743328750133514, -0.5790538191795349, -0.36760413646698, -0.2618313431739807]} +{"t": 6.7744, "q": [-0.3270157277584076, 0.0019992878660559654, -0.0056112040765583515, 0.6109675168991089, -0.3205921947956085, -0.0036386894062161446, -0.3759497106075287, 0.01477734837681055, -0.0153738958761096, 0.6121861338615417, -0.2945046126842499, -0.020658770576119423, 0.03516711667180061, -0.03008291684091091, -0.019142761826515198, 0.15357784926891327, 0.11809255182743073, 0.02479536272585392, 1.1854076385498047, 0.14529675245285034, 0.04225637763738632, -0.03952397406101227, -0.6618048548698425, -0.8896369934082031, 0.8322804570198059, -0.18762503564357758, -0.578981876373291, -0.36581847071647644, -0.2700525224208832]} +{"t": 6.7911, "q": [-0.3267856240272522, 0.0019140667282044888, -0.005571028683334589, 0.6109163761138916, -0.32058385014533997, -0.0036240932531654835, -0.37568554282188416, 0.014828480780124664, -0.01538728829473257, 0.612083911895752, -0.2944921553134918, -0.020651591941714287, 0.03515372797846794, -0.03009798377752304, -0.019113784655928612, 0.15281085669994354, 0.11806859076023102, 0.024783378466963768, 1.1868937015533447, 0.14524881541728973, 0.04225637763738632, -0.03953595831990242, -0.6638182401657104, -0.8895171284675598, 0.8350608348846436, -0.18780478835105896, -0.5790538191795349, -0.36261868476867676, -0.27852538228034973]} +{"t": 6.8079, "q": [-0.32665780186653137, 0.0017691906541585922, -0.005584420636296272, 0.6108737587928772, -0.32059627771377563, -0.0036314704921096563, -0.37549805641174316, 0.01480291411280632, -0.01538728829473257, 0.6119986772537231, -0.2945503890514374, -0.020550085231661797, 0.03511355072259903, -0.030090417712926865, -0.019118526950478554, 0.15182815492153168, 0.11806859076023102, 0.02479536272585392, 1.1886913776397705, 0.1452847570180893, 0.042280346155166626, -0.03952397406101227, -0.6671139001846313, -0.8894452452659607, 0.8392313122749329, -0.18788868188858032, -0.5790657997131348, -0.3600061237812042, -0.2866267263889313]} +{"t": 6.8246, "q": [-0.3265896141529083, 0.0016243145801126957, -0.005557636730372906, 0.610890805721283, -0.3205920159816742, -0.003609655424952507, -0.3753872513771057, 0.014794392511248589, -0.015400679782032967, 0.6119475364685059, -0.2945712208747864, -0.020484905689954758, 0.035126943141222, -0.03015108034014702, -0.01911957934498787, 0.15089337527751923, 0.11809255182743073, 0.02479536272585392, 1.1897938251495361, 0.14532071352005005, 0.04225637763738632, -0.03953595831990242, -0.6705413460731506, -0.889277458190918, 0.8436894416809082, -0.18792463839054108, -0.5790897607803345, -0.3586399257183075, -0.29387718439102173]} +{"t": 6.8413, "q": [-0.32657259702682495, 0.0014709164388477802, -0.0055978125892579556, 0.6108737587928772, -0.32059627771377563, -0.0036314704921096563, -0.37522533535957336, 0.014819959178566933, -0.015414072200655937, 0.6118452548980713, -0.29455044865608215, -0.020477764308452606, 0.035193901509046555, -0.030249545350670815, -0.019087178632616997, 0.15004250407218933, 0.11811652034521103, 0.024783378466963768, 1.1908605098724365, 0.14534468948841095, 0.042268361896276474, -0.03953595831990242, -0.6729861497879028, -0.8889299035072327, 0.8475603461265564, -0.18790066242218018, -0.5791856050491333, -0.357597291469574, -0.3020983636379242]} +{"t": 6.858, "q": [-0.3265044093132019, 0.001283430028706789, -0.0056112040765583515, 0.6108652353286743, -0.3205920159816742, -0.003609655424952507, -0.3750804662704468, 0.014794392511248589, -0.015481031499803066, 0.6117856502532959, -0.2945588231086731, -0.0203909482806921, 0.035207293927669525, -0.030416175723075867, -0.019031595438718796, 0.14946725964546204, 0.11812850832939148, 0.024819331243634224, 1.1919989585876465, 0.14534468948841095, 0.042268361896276474, -0.03953595831990242, -0.6751672625541687, -0.8881868720054626, 0.8509279489517212, -0.18785272538661957, -0.5792934894561768, -0.3566145896911621, -0.30957651138305664]} +{"t": 6.8749, "q": [-0.32638511061668396, 0.001070377416908741, -0.0055442447774112225, 0.6108481884002686, -0.32060423493385315, -0.003587998216971755, -0.37495264410972595, 0.014760304242372513, -0.015427463687956333, 0.6117856502532959, -0.2945713996887207, -0.020267946645617485, 0.03516711667180061, -0.030651234090328217, -0.01903080753982067, 0.14928749203681946, 0.11812850832939148, 0.024819331243634224, 1.1929577589035034, 0.14534468948841095, 0.04225637763738632, -0.03954794257879257, -0.6776120662689209, -0.8874078989028931, 0.8543673753738403, -0.18773289024829865, -0.579353392124176, -0.3555120527744293, -0.315832257270813]} +{"t": 6.8916, "q": [-0.3262743055820465, 0.0008743684738874435, -0.005530852824449539, 0.6108737587928772, -0.32059189677238464, -0.0035951382014900446, -0.3747481107711792, 0.014734737575054169, -0.015400679782032967, 0.6117515563964844, -0.2945340573787689, -0.020217476412653923, 0.03514033555984497, -0.030878497287631035, -0.01896653138101101, 0.14898788928985596, 0.11812850832939148, 0.024831315502524376, 1.193820595741272, 0.1452847570180893, 0.04224439337849617, -0.03952397406101227, -0.6795175671577454, -0.8871203064918518, 0.8580585718154907, -0.1876969337463379, -0.5794612765312195, -0.3544454574584961, -0.3226393163204193]} +{"t": 6.9084, "q": [-0.3261464834213257, 0.0006272271275520325, -0.005530852824449539, 0.6108396649360657, -0.32059189677238464, -0.0035951382014900446, -0.3745180070400238, 0.014683605171740055, -0.015400679782032967, 0.6116492748260498, -0.29452162981033325, -0.020152421668171883, 0.035126943141222, -0.031211890280246735, -0.01889435388147831, 0.14886803925037384, 0.11815247684717178, 0.024819331243634224, 1.1944317817687988, 0.14532071352005005, 0.042208440601825714, -0.03953595831990242, -0.6813271641731262, -0.8871203064918518, 0.8616538047790527, -0.1877209097146988, -0.5794612765312195, -0.35373836755752563, -0.3281160891056061]} +{"t": 6.9251, "q": [-0.3260612487792969, 0.00046530691906809807, -0.005530852824449539, 0.6108567118644714, -0.32059168815612793, -0.003566086059436202, -0.3743305206298828, 0.014615427702665329, -0.015400679782032967, 0.6115810871124268, -0.2945092022418976, -0.020116306841373444, 0.03515372797846794, -0.0316518098115921, -0.01893124170601368, 0.14880812168121338, 0.11805660277605057, 0.02485528402030468, 1.1951388120651245, 0.14529675245285034, 0.04219645634293556, -0.03954794257879257, -0.6820821762084961, -0.8870244026184082, 0.8641465306282043, -0.1877209097146988, -0.579497218132019, -0.35353463888168335, -0.33138778805732727]} +{"t": 6.9418, "q": [-0.3259163796901703, 0.0003374754451215267, -0.005530852824449539, 0.6108567118644714, -0.3205876350402832, -0.0035733049735426903, -0.3741004168987274, 0.014547251164913177, -0.01538728829473257, 0.6115128993988037, -0.29453834891319275, -0.02003663219511509, 0.035126943141222, -0.03235701844096184, -0.018938623368740082, 0.14877216517925262, 0.11812850832939148, 0.02485528402030468, 1.1959776878356934, 0.14532071352005005, 0.04217248782515526, -0.039511989802122116, -0.6821780800819397, -0.8867607712745667, 0.8661598563194275, -0.1877928078174591, -0.5794732570648193, -0.35355859994888306, -0.3339763879776001]} +{"t": 6.9586, "q": [-0.3257203698158264, 0.00030338671058416367, -0.005490677431225777, 0.6108481884002686, -0.3206082284450531, -0.003566262312233448, -0.37394702434539795, 0.014538728632032871, -0.015293545089662075, 0.6114617586135864, -0.29450517892837524, -0.01997891440987587, 0.03500641509890556, -0.03306954726576805, -0.018863454461097717, 0.14876018464565277, 0.11803263425827026, 0.024831315502524376, 1.1968646049499512, 0.14534468948841095, 0.042148519307374954, -0.03953595831990242, -0.6818065643310547, -0.8862214684486389, 0.8679695129394531, -0.18755312263965607, -0.5793773531913757, -0.35355859994888306, -0.33650505542755127]} +{"t": 6.9753, "q": [-0.3255925476551056, 0.00030338671058416367, -0.005303190555423498, 0.6108652353286743, -0.3205958902835846, -0.0035734022967517376, -0.37390440702438354, 0.014538728632032871, -0.015132841654121876, 0.6114106774330139, -0.2944512367248535, -0.01988513395190239, 0.034497521817684174, -0.033759355545043945, -0.01882302202284336, 0.14884407818317413, 0.11805660277605057, 0.024819331243634224, 1.1978832483291626, 0.1453087329864502, 0.0421365350484848, -0.03954794257879257, -0.6815308928489685, -0.8851908445358276, 0.8689881563186646, -0.18731343746185303, -0.5791975855827332, -0.35355859994888306, -0.33878207206726074]} +{"t": 6.9921, "q": [-0.3253539204597473, 0.00029486464336514473, -0.005062136333435774, 0.6108481884002686, -0.3206082284450531, -0.003566262312233448, -0.37381067872047424, 0.014496118761599064, -0.014945355243980885, 0.6114276647567749, -0.29440560936927795, -0.01980576105415821, 0.03376096859574318, -0.03438027575612068, -0.018630357459187508, 0.14884407818317413, 0.11808057129383087, 0.02485528402030468, 1.1988179683685303, 0.14534468948841095, 0.04212455078959465, -0.03952397406101227, -0.6814590096473694, -0.8834890723228455, 0.86932373046875, -0.1871696263551712, -0.5790058374404907, -0.3535226583480835, -0.340220183134079]} +{"t": 7.0088, "q": [-0.3251323401927948, 0.00029486464336514473, -0.00483447453007102, 0.6108567118644714, -0.3206123113632202, -0.003559025237336755, -0.37375953793525696, 0.014513162896037102, -0.014757868833839893, 0.611402153968811, -0.2943143844604492, -0.019647052511572838, 0.033211901783943176, -0.03494824841618538, -0.01847078651189804, 0.14879614114761353, 0.11815247684717178, 0.02485528402030468, 1.1994891166687012, 0.14532071352005005, 0.0421365350484848, -0.03952397406101227, -0.6806800365447998, -0.8823865056037903, 0.8695993423461914, -0.18696589767932892, -0.5785384774208069, -0.35343876481056213, -0.3412867784500122]} +{"t": 7.0256, "q": [-0.3249022364616394, 0.00030338671058416367, -0.0045264605432748795, 0.6108652353286743, -0.3205958902835846, -0.0035734022967517376, -0.3737083971500397, 0.014513162896037102, -0.014490030705928802, 0.6114361882209778, -0.294235497713089, -0.019567839801311493, 0.032528914511203766, -0.03536425530910492, -0.018220508471131325, 0.14882010221481323, 0.11812850832939148, 0.024819331243634224, 1.1998846530914307, 0.14532071352005005, 0.0421365350484848, -0.03953595831990242, -0.678283154964447, -0.8820030093193054, 0.871349036693573, -0.1857195347547531, -0.578298807144165, -0.3533428907394409, -0.3420417606830597]} +{"t": 7.0424, "q": [-0.3247573673725128, 0.0003630416467785835, -0.004258622881025076, 0.6108652353286743, -0.3205958902835846, -0.0035734022967517376, -0.3737083971500397, 0.014513162896037102, -0.014275760389864445, 0.6114532351493835, -0.2941732704639435, -0.019474076107144356, 0.0317789688706398, -0.03568166494369507, -0.01796366088092327, 0.14884407818317413, 0.11809255182743073, 0.024819331243634224, 1.2004718780517578, 0.14529675245285034, 0.0421365350484848, -0.03952397406101227, -0.6753470301628113, -0.8820509910583496, 0.8738417625427246, -0.18390992283821106, -0.5775437951087952, -0.3528755009174347, -0.3437555134296417]} +{"t": 7.0591, "q": [-0.32461249828338623, 0.00043974071741104126, -0.003977392800152302, 0.6108652353286743, -0.32058364152908325, -0.003595059271901846, -0.3737339675426483, 0.014521684497594833, -0.014074882492423058, 0.6114361882209778, -0.29411518573760986, -0.01943092606961727, 0.030868319794535637, -0.035726554691791534, -0.01780855655670166, 0.14882010221481323, 0.11815247684717178, 0.024831315502524376, 1.2011789083480835, 0.1453087329864502, 0.042148519307374954, -0.03952397406101227, -0.672147274017334, -0.8822667002677917, 0.8755914568901062, -0.1832507848739624, -0.5769805312156677, -0.35249200463294983, -0.346535861492157]} +{"t": 7.0759, "q": [-0.32445910573005676, 0.0005590501241385937, -0.0038702578749507666, 0.610890805721283, -0.32057130336761475, -0.0036021810956299305, -0.3737339675426483, 0.014581339433789253, -0.013967746868729591, 0.6114617586135864, -0.2940694987773895, -0.019409431144595146, 0.03025229275226593, -0.035733748227357864, -0.01770632155239582, 0.14879614114761353, 0.11815247684717178, 0.024807346984744072, 1.2014305591583252, 0.14529675245285034, 0.042148519307374954, -0.03954794257879257, -0.6690073609352112, -0.8827340602874756, 0.8769816160202026, -0.18335863947868347, -0.5767528414726257, -0.35233622789382935, -0.3488008677959442]} +{"t": 7.0927, "q": [-0.3243483006954193, 0.0006698379293084145, -0.003816690295934677, 0.6108737587928772, -0.32057130336761475, -0.0036021810956299305, -0.3737424910068512, 0.014572817832231522, -0.013900787569582462, 0.6114873290061951, -0.29406946897506714, -0.019423890858888626, 0.02959609031677246, -0.03574894741177559, -0.017716379836201668, 0.14879614114761353, 0.11815247684717178, 0.02479536272585392, 1.2016702890396118, 0.14539262652397156, 0.04217248782515526, -0.03954794257879257, -0.6670060157775879, -0.8829497694969177, 0.8794503808021545, -0.1834545135498047, -0.5766569375991821, -0.35243210196495056, -0.35058653354644775]} +{"t": 7.1094, "q": [-0.32413527369499207, 0.0008488022722303867, -0.003816690295934677, 0.6108567118644714, -0.32057130336761475, -0.0036021810956299305, -0.37366577982902527, 0.014606906101107597, -0.013833828270435333, 0.6115214228630066, -0.29406946897506714, -0.019423890858888626, 0.029154157266020775, -0.03573378548026085, -0.017716072499752045, 0.1486043930053711, 0.11828429996967316, 0.02479536272585392, 1.2018260955810547, 0.1453566700220108, 0.04217248782515526, -0.03954794257879257, -0.6661311984062195, -0.8829138278961182, 0.8826022148132324, -0.18373015522956848, -0.5765730738639832, -0.35249200463294983, -0.3520725667476654]} +{"t": 7.1261, "q": [-0.32400742173194885, 0.0010448107495903969, -0.00388364982791245, 0.610814094543457, -0.3205755650997162, -0.003624032251536846, -0.3736061453819275, 0.014581339433789253, -0.013900787569582462, 0.6115214228630066, -0.29407361149787903, -0.019445564597845078, 0.02938181906938553, -0.035741422325372696, -0.01773085445165634, 0.14795725047588348, 0.11820041388273239, 0.024807346984744072, 1.2019098997116089, 0.14532071352005005, 0.042160503566265106, -0.03953595831990242, -0.6646331548690796, -0.8828659057617188, 0.8849631547927856, -0.1838979423046112, -0.5764651894569397, -0.35250401496887207, -0.3534747362136841]} +{"t": 7.1429, "q": [-0.32405856251716614, 0.0012322976253926754, -0.004084527958184481, 0.6108226180076599, -0.32054680585861206, -0.003645513206720352, -0.3735464811325073, 0.014606906101107597, -0.014061490073800087, 0.6115043759346008, -0.29406946897506714, -0.019452812150120735, 0.029944278299808502, -0.035786982625722885, -0.01775127649307251, 0.14737001061439514, 0.11815247684717178, 0.024819331243634224, 1.2019578218460083, 0.14536865055561066, 0.04218447208404541, -0.039559926837682724, -0.6628475189208984, -0.8823984861373901, 0.8863053321838379, -0.18395785987377167, -0.5763453841209412, -0.3525159955024719, -0.3551165759563446]} +{"t": 7.1599, "q": [-0.3240756094455719, 0.0013601290993392467, -0.004231838975101709, 0.6108481884002686, -0.3205345571041107, -0.003667188109830022, -0.37353795766830444, 0.014581339433789253, -0.01419540960341692, 0.6114873290061951, -0.29404863715171814, -0.019517989829182625, 0.030506737530231476, -0.03580981865525246, -0.017776114866137505, 0.14725017547607422, 0.11816445738077164, 0.024819331243634224, 1.2019938230514526, 0.14534468948841095, 0.04219645634293556, -0.039559926837682724, -0.6614573001861572, -0.8814038038253784, 0.8870843648910522, -0.18405373394489288, -0.5760217905044556, -0.35256391763687134, -0.35683029890060425]} +{"t": 7.1766, "q": [-0.32409265637397766, 0.0014453502371907234, -0.0043523660860955715, 0.6108226180076599, -0.32053884863853455, -0.003689021337777376, -0.3735209107398987, 0.014555772766470909, -0.014262368902564049, 0.6114873290061951, -0.29404446482658386, -0.01952523924410343, 0.0310691986232996, -0.03581734374165535, -0.01776164025068283, 0.14729811251163483, 0.11810453981161118, 0.02479536272585392, 1.2020657062530518, 0.1454046070575714, 0.04219645634293556, -0.03953595831990242, -0.6604027152061462, -0.8802652955055237, 0.8876116275787354, -0.1831788867712021, -0.5758779644966125, -0.35249200463294983, -0.35807666182518005]} +{"t": 7.1934, "q": [-0.32423752546310425, 0.0014709164388477802, -0.0045800283551216125, 0.6108311414718628, -0.3205018937587738, -0.0037249403540045023, -0.37353795766830444, 0.014444985426962376, -0.014409679919481277, 0.611495852470398, -0.29404863715171814, -0.019546929746866226, 0.03188610449433327, -0.035900458693504333, -0.01769019104540348, 0.14733406901359558, 0.11818842589855194, 0.024807346984744072, 1.2020777463912964, 0.14536865055561066, 0.04218447208404541, -0.03952397406101227, -0.6592402458190918, -0.8799177408218384, 0.8886662721633911, -0.18039853870868683, -0.5758540034294128, -0.3524440824985504, -0.3586159646511078]} +{"t": 7.2102, "q": [-0.3243568241596222, 0.0014453502371907234, -0.004767514765262604, 0.6108226180076599, -0.3204936385154724, -0.003724879352375865, -0.3735464811325073, 0.01453020703047514, -0.014610557816922665, 0.6114361882209778, -0.29405277967453003, -0.01953968219459057, 0.03262265771627426, -0.03599820286035538, -0.017502371221780777, 0.14739398658275604, 0.11812850832939148, 0.02485528402030468, 1.2020777463912964, 0.1452607959508896, 0.042160503566265106, -0.039500005543231964, -0.6584373116493225, -0.8796181678771973, 0.8905118107795715, -0.17705494165420532, -0.57569819688797, -0.3523961305618286, -0.3590713441371918]} +{"t": 7.227, "q": [-0.3244761526584625, 0.0014197840355336666, -0.004901433829218149, 0.6107970476150513, -0.3204854726791382, -0.003739317413419485, -0.37358057498931885, 0.01458986196666956, -0.01470430102199316, 0.6113680601119995, -0.29404863715171814, -0.019546929746866226, 0.033037807792425156, -0.03610321506857872, -0.017241600900888443, 0.14764565229415894, 0.11810453981161118, 0.024831315502524376, 1.2020896673202515, 0.14524881541728973, 0.042160503566265106, -0.03952397406101227, -0.6581856608390808, -0.8789230585098267, 0.8918420672416687, -0.1721893548965454, -0.5754225850105286, -0.35228827595710754, -0.3598862886428833]} +{"t": 7.2438, "q": [-0.32451024651527405, 0.0013942178338766098, -0.004847866017371416, 0.610745906829834, -0.32048138976097107, -0.0037465363275259733, -0.37358057498931885, 0.014581339433789253, -0.014731084927916527, 0.6112572550773621, -0.2940319776535034, -0.01957593858242035, 0.03310476616024971, -0.03625384718179703, -0.017010832205414772, 0.1479812115430832, 0.11820041388273239, 0.024831315502524376, 1.2021375894546509, 0.14529675245285034, 0.042148519307374954, -0.03952397406101227, -0.6582455635070801, -0.8782879114151001, 0.8921297192573547, -0.16668859124183655, -0.5744638442993164, -0.35213249921798706, -0.36084502935409546]} +{"t": 7.2606, "q": [-0.32446762919425964, 0.0013771732337772846, -0.004767514765262604, 0.6105925440788269, -0.3204895555973053, -0.003732098266482353, -0.37358057498931885, 0.014649515971541405, -0.014690909534692764, 0.6111634969711304, -0.2940070331096649, -0.019619427621364594, 0.03281014412641525, -0.036351438611745834, -0.0167838167399168, 0.14819693565368652, 0.11815247684717178, 0.024807346984744072, 1.202197551727295, 0.1453087329864502, 0.042148519307374954, -0.03952397406101227, -0.6582815051078796, -0.8783717751502991, 0.8920338153839111, -0.16371649503707886, -0.573157548904419, -0.3521804213523865, -0.3618277311325073]} +{"t": 7.2774, "q": [-0.32438239455223083, 0.0013686511665582657, -0.004646987654268742, 0.6103368401527405, -0.32048937678337097, -0.0037030463572591543, -0.37358909845352173, 0.014683605171740055, -0.014570382423698902, 0.6110357046127319, -0.294002890586853, -0.01961221545934677, 0.03211376443505287, -0.03632831946015358, -0.016690731048583984, 0.1483527272939682, 0.11812850832939148, 0.024819331243634224, 1.202257513999939, 0.14529675245285034, 0.042148519307374954, -0.03952397406101227, -0.6583054661750793, -0.878587543964386, 0.8924652338027954, -0.1636565774679184, -0.571731448173523, -0.3523961305618286, -0.36252281069755554]} +{"t": 7.2942, "q": [-0.3240329921245575, 0.0013430849649012089, -0.004365758039057255, 0.6099789142608643, -0.3204977214336395, -0.0037176422774791718, -0.37348681688308716, 0.014794392511248589, -0.014409679919481277, 0.6110016107559204, -0.29397377371788025, -0.019648490473628044, 0.03139060363173485, -0.03642675280570984, -0.01666843332350254, 0.14852049946784973, 0.11816445738077164, 0.024819331243634224, 1.2024133205413818, 0.14524881541728973, 0.042160503566265106, -0.03952397406101227, -0.6583774089813232, -0.8785395622253418, 0.8939512968063354, -0.1639322191476822, -0.5706528425216675, -0.3528994917869568, -0.3627265393733978]} +{"t": 7.3109, "q": [-0.3237517774105072, 0.0013430849649012089, -0.004298798739910126, 0.6098937392234802, -0.3204977214336395, -0.0037176422774791718, -0.37321412563323975, 0.01486256904900074, -0.01444985531270504, 0.6110357046127319, -0.2939613163471222, -0.019655773416161537, 0.03122990019619465, -0.03654778376221657, -0.016612503677606583, 0.14817295968532562, 0.11815247684717178, 0.024831315502524376, 1.2025930881500244, 0.14529675245285034, 0.04219645634293556, -0.03952397406101227, -0.6584732532501221, -0.8782998919487, 0.8946344256401062, -0.16433967649936676, -0.5692267417907715, -0.35313916206359863, -0.3628343939781189]} +{"t": 7.3277, "q": [-0.32355576753616333, 0.00133456289768219, -0.004312190227210522, 0.6098425984382629, -0.32048937678337097, -0.0037030463572591543, -0.3729584515094757, 0.014998923055827618, -0.01444985531270504, 0.6110357046127319, -0.29396960139274597, -0.019655738025903702, 0.031189724802970886, -0.03663105517625809, -0.016589894890785217, 0.14703446626663208, 0.11818842589855194, 0.024819331243634224, 1.2025930881500244, 0.14527277648448944, 0.042208440601825714, -0.039511989802122116, -0.6585931181907654, -0.8778085708618164, 0.8950299024581909, -0.1645314246416092, -0.5683279037475586, -0.35321107506752014, -0.36294224858283997]} +{"t": 7.3444, "q": [-0.3232915699481964, 0.001283430028706789, -0.004325582180172205, 0.6098425984382629, -0.32050180435180664, -0.0037104233633726835, -0.3726516664028168, 0.015007445588707924, -0.014503423124551773, 0.6110016107559204, -0.2939654588699341, -0.01966298557817936, 0.03136381879448891, -0.036714330315589905, -0.016567286103963852, 0.14582405984401703, 0.11816445738077164, 0.024723457172513008, 1.2026289701461792, 0.14532071352005005, 0.04225637763738632, -0.03953595831990242, -0.6587488651275635, -0.8772333264350891, 0.8950658440589905, -0.16386030614376068, -0.5680882334709167, -0.35321107506752014, -0.36299020051956177]} +{"t": 7.3612, "q": [-0.3230699896812439, 0.0012067309580743313, -0.004338974133133888, 0.6097914576530457, -0.3204977214336395, -0.0037176422774791718, -0.37238746881484985, 0.014990401454269886, -0.014516814611852169, 0.6110016107559204, -0.29397377371788025, -0.019648490473628044, 0.031484346836805344, -0.03672165051102638, -0.0165040772408247, 0.14514094591140747, 0.11815247684717178, 0.024711472913622856, 1.202712893486023, 0.1453326940536499, 0.042340267449617386, -0.03954794257879257, -0.6588208079338074, -0.8770175576210022, 0.8950658440589905, -0.16371649503707886, -0.5679324269294739, -0.3532470166683197, -0.3631579875946045]} +{"t": 7.3779, "q": [-0.3228398859500885, 0.0011470764875411987, -0.004325582180172205, 0.6097403168678284, -0.3204934597015381, -0.0036958272103220224, -0.37219998240470886, 0.01492222398519516, -0.014503423124551773, 0.6110101342201233, -0.2939820885658264, -0.01963399350643158, 0.03160487487912178, -0.03672916814684868, -0.01648961566388607, 0.1449611932039261, 0.11820041388273239, 0.024699488654732704, 1.2029045820236206, 0.1453806310892105, 0.042388204485177994, -0.03953595831990242, -0.6589046716690063, -0.8764663338661194, 0.8950658440589905, -0.16383634507656097, -0.5679683685302734, -0.35328298807144165, -0.3633856773376465]} +{"t": 7.3948, "q": [-0.3226183354854584, 0.0011470764875411987, -0.004298798739910126, 0.6097403168678284, -0.3204977214336395, -0.0037176422774791718, -0.37196987867355347, 0.014905179850757122, -0.014476639218628407, 0.6110016107559204, -0.2939862608909607, -0.019612286239862442, 0.03161826729774475, -0.036713968962430954, -0.016479546204209328, 0.1450091302394867, 0.11815247684717178, 0.024723457172513008, 1.203228235244751, 0.14536865055561066, 0.0424121730029583, -0.03954794257879257, -0.6590245366096497, -0.875459611415863, 0.8949819207191467, -0.16387230157852173, -0.568004310131073, -0.3533189296722412, -0.3641047179698944]} +{"t": 7.4115, "q": [-0.32230299711227417, 0.0011470764875411987, -0.004325582180172205, 0.6097317934036255, -0.32048937678337097, -0.0037030463572591543, -0.37166309356689453, 0.014854047447443008, -0.014476639218628407, 0.6109675168991089, -0.29399043321609497, -0.019590558484196663, 0.031645048409700394, -0.03670645132660866, -0.016494007781147957, 0.1452607959508896, 0.11810453981161118, 0.024711472913622856, 1.2035877704620361, 0.14534468948841095, 0.0424121730029583, -0.03954794257879257, -0.6590365171432495, -0.8741773366928101, 0.8950058817863464, -0.16417190432548523, -0.5681002140045166, -0.353450745344162, -0.36551886796951294]} +{"t": 7.4283, "q": [-0.3217831552028656, 0.0011555985547602177, -0.004338974133133888, 0.6097062230110168, -0.32050180435180664, -0.0037104233633726835, -0.3713136911392212, 0.014871091581881046, -0.014476639218628407, 0.610890805721283, -0.29399874806404114, -0.019576063379645348, 0.03160487487912178, -0.03675192594528198, -0.01649497076869011, 0.14541658759117126, 0.11816445738077164, 0.024783378466963768, 1.2041510343551636, 0.14536865055561066, 0.0424121730029583, -0.03954794257879257, -0.6590245366096497, -0.8721519708633423, 0.8950299024581909, -0.1643516719341278, -0.5681601166725159, -0.3535466194152832, -0.3677000105381012]} +{"t": 7.445, "q": [-0.32098206877708435, 0.0011470764875411987, -0.004312190227210522, 0.6096380352973938, -0.32050180435180664, -0.0037104233633726835, -0.37070009112358093, 0.014845524914562702, -0.01444985531270504, 0.6107885241508484, -0.29401537775993347, -0.019547071307897568, 0.03161826729774475, -0.0368049219250679, -0.016481468454003334, 0.14550048112869263, 0.11815247684717178, 0.024771394208073616, 1.205109715461731, 0.1453087329864502, 0.042388204485177994, -0.03953595831990242, -0.6588807106018066, -0.869263768196106, 0.8950299024581909, -0.1646033376455307, -0.5681601166725159, -0.3535466194152832, -0.36980921030044556]} +{"t": 7.4617, "q": [-0.3200531601905823, 0.0011555985547602177, -0.004298798739910126, 0.6094931960105896, -0.32050180435180664, -0.0037104233633726835, -0.36991605162620544, 0.014819959178566933, -0.01436950359493494, 0.6106947660446167, -0.2940278649330139, -0.019525310024619102, 0.03157809004187584, -0.03682764247059822, -0.016477076336741447, 0.14545254409313202, 0.11812850832939148, 0.02479536272585392, 1.2062002420425415, 0.14534468948841095, 0.042400188744068146, -0.03954794257879257, -0.6587488651275635, -0.8666033148765564, 0.894814133644104, -0.1646512746810913, -0.5681720972061157, -0.3534747362136841, -0.3713911473751068]} +{"t": 7.4784, "q": [-0.3179396688938141, 0.0011555985547602177, -0.004057744517922401, 0.6091437935829163, -0.3204977214336395, -0.0037176422774791718, -0.3688678443431854, 0.014785869978368282, -0.014168625697493553, 0.6105328798294067, -0.2940320372581482, -0.019518062472343445, 0.03160487487912178, -0.03680488467216492, -0.01647171936929226, 0.1453806310892105, 0.118248350918293, 0.024819331243634224, 1.2073148488998413, 0.14534468948841095, 0.04237622022628784, -0.03953595831990242, -0.6586290597915649, -0.864170491695404, 0.8946104049682617, -0.16454340517520905, -0.5681361556053162, -0.3534267842769623, -0.37350037693977356]} +{"t": 7.4952, "q": [-0.3157835900783539, 0.0011555985547602177, -0.003910433501005173, 0.6086750626564026, -0.320514053106308, -0.0036887661553919315, -0.3674616813659668, 0.014709170907735825, -0.014007923193275928, 0.6100130081176758, -0.2941276729106903, -0.01939472183585167, 0.03160487487912178, -0.03678212687373161, -0.01646636426448822, 0.14517690241336823, 0.11809255182743073, 0.024807346984744072, 1.2089565992355347, 0.14536865055561066, 0.042328283190727234, -0.03952397406101227, -0.6586290597915649, -0.8622889518737793, 0.894502580165863, -0.16419586539268494, -0.5681002140045166, -0.3533428907394409, -0.37582531571388245]} +{"t": 7.512, "q": [-0.31516146659851074, 0.0011726426891982555, -0.003964001312851906, 0.6080784797668457, -0.32050997018814087, -0.0036959853023290634, -0.3658083975315094, 0.014581339433789253, -0.013994530774652958, 0.6092033982276917, -0.2941567897796631, -0.019329490140080452, 0.03153791278600693, -0.036759328097105026, -0.016451260074973106, 0.14502111077308655, 0.11815247684717178, 0.02485528402030468, 1.2102868556976318, 0.1453806310892105, 0.042328283190727234, -0.03952397406101227, -0.6586530208587646, -0.86074298620224, 0.8945145606994629, -0.16419586539268494, -0.5681241750717163, -0.3533189296722412, -0.37785065174102783]} +{"t": 7.5287, "q": [-0.31387463212013245, 0.0012237750925123692, -0.0041247038170695305, 0.6073200106620789, -0.3205304741859436, -0.0036744072567671537, -0.3643340766429901, 0.014547251164913177, -0.014048098586499691, 0.6079421639442444, -0.29428157210350037, -0.019111977890133858, 0.03141738846898079, -0.0367748849093914, -0.016549069434404373, 0.14514094591140747, 0.11815247684717178, 0.024807346984744072, 1.2112696170806885, 0.1453566700220108, 0.04230431467294693, -0.039511989802122116, -0.6585931181907654, -0.8589932918548584, 0.8944426774978638, -0.16418388485908508, -0.5681121945381165, -0.3532709777355194, -0.3798519968986511]} +{"t": 7.5454, "q": [-0.31181228160858154, 0.0013601290993392467, -0.004111311864107847, 0.6066212058067322, -0.32054710388183594, -0.0036891005001962185, -0.3622205853462219, 0.014513162896037102, -0.014061490073800087, 0.6069620847702026, -0.29436057806015015, -0.019003169611096382, 0.03140399605035782, -0.03682824224233627, -0.01662330888211727, 0.14516492187976837, 0.11812850832939148, 0.024843299761414528, 1.2124080657958984, 0.14536865055561066, 0.042268361896276474, -0.03953595831990242, -0.6578860282897949, -0.8579986095428467, 0.8943467736244202, -0.164076030254364, -0.5681720972061157, -0.3532709777355194, -0.381949245929718]} +{"t": 7.5622, "q": [-0.31075555086135864, 0.0016243145801126957, -0.004231838975101709, 0.6063485145568848, -0.32060471177101135, -0.0036605834029614925, -0.36070364713668823, 0.014368286356329918, -0.01411505788564682, 0.6060246825218201, -0.2947640120983124, -0.018328823149204254, 0.031122766435146332, -0.03680632635951042, -0.016822680830955505, 0.14514094591140747, 0.11811652034521103, 0.024831315502524376, 1.2140859365463257, 0.1453566700220108, 0.04223240911960602, -0.03952397406101227, -0.6570711135864258, -0.8573514819145203, 0.8943946957588196, -0.164076030254364, -0.5681960582733154, -0.3532470166683197, -0.38423824310302734]} +{"t": 7.5791, "q": [-0.31067031621932983, 0.0017777127213776112, -0.004392541944980621, 0.6061950922012329, -0.3206005394458771, -0.003653285326436162, -0.36037981510162354, 0.014393853023648262, -0.01419540960341692, 0.6051980257034302, -0.2948971390724182, -0.018067894503474236, 0.03093527816236019, -0.03692268580198288, -0.017473237589001656, 0.1449851542711258, 0.11816445738077164, 0.024831315502524376, 1.2156318426132202, 0.1452847570180893, 0.042208440601825714, -0.039511989802122116, -0.6563280820846558, -0.8569799661636353, 0.8943707346916199, -0.1640280932188034, -0.5682080984115601, -0.3531751036643982, -0.3863953948020935]} +{"t": 7.5958, "q": [-0.3106788396835327, 0.0019737216643989086, -0.004446109291166067, 0.6062121391296387, -0.3206005394458771, -0.003653285326436162, -0.3601241409778595, 0.014427941292524338, -0.014222193509340286, 0.6046440601348877, -0.294855535030365, -0.018154853954911232, 0.0307477917522192, -0.03712048754096031, -0.017652682960033417, 0.1444338858127594, 0.11818842589855194, 0.024831315502524376, 1.2167943716049194, 0.14527277648448944, 0.042148519307374954, -0.03952397406101227, -0.655932605266571, -0.8568001985549927, 0.8943467736244202, -0.1640520542860031, -0.5682799816131592, -0.35318711400032043, -0.388864129781723]} +{"t": 7.6126, "q": [-0.310917466878891, 0.0022038184106349945, -0.004446109291166067, 0.6062718033790588, -0.32058003544807434, -0.0036748815327882767, -0.36019232869148254, 0.014479073695838451, -0.014222193509340286, 0.6042265295982361, -0.2947099804878235, -0.018365204334259033, 0.030707616358995438, -0.03737831488251686, -0.017687346786260605, 0.14365491271018982, 0.11841613054275513, 0.024867268279194832, 1.217944860458374, 0.14532071352005005, 0.04212455078959465, -0.03952397406101227, -0.6555251479148865, -0.8566683530807495, 0.8943108320236206, -0.1640520542860031, -0.5683039426803589, -0.3531271815299988, -0.3913328945636749]} +{"t": 7.6294, "q": [-0.31102824211120605, 0.002340172417461872, -0.004432717338204384, 0.6063826084136963, -0.32057178020477295, -0.0036748023703694344, -0.3601752817630768, 0.014521684497594833, -0.014248977415263653, 0.6038515567779541, -0.2942899763584137, -0.01896730251610279, 0.030546914786100388, -0.037575092166662216, -0.017623350024223328, 0.14307966828346252, 0.11841613054275513, 0.024831315502524376, 1.2188676595687866, 0.14534468948841095, 0.0421365350484848, -0.03954794257879257, -0.655105710029602, -0.8565964698791504, 0.8941789865493774, -0.16404007375240326, -0.5682799816131592, -0.3531271815299988, -0.39269909262657166]} +{"t": 7.6463, "q": [-0.3110538125038147, 0.0023146062158048153, -0.004365758039057255, 0.6064678430557251, -0.32057586312294006, -0.003667583456262946, -0.36018380522727966, 0.01453020703047514, -0.014235584996640682, 0.6038345098495483, -0.2941402792930603, -0.01919938065111637, 0.030506737530231476, -0.03764316439628601, -0.017590710893273354, 0.14260029792785645, 0.11840414255857468, 0.02485528402030468, 1.2193949222564697, 0.14532071352005005, 0.04212455078959465, -0.039511989802122116, -0.6548779606819153, -0.8561050891876221, 0.8939393162727356, -0.16401611268520355, -0.5684118270874023, -0.3531152009963989, -0.39380162954330444]} +{"t": 7.663, "q": [-0.3110623359680176, 0.0021867742761969566, -0.0043523660860955715, 0.6065700650215149, -0.32057565450668335, -0.003638549242168665, -0.36014118790626526, 0.014615427702665329, -0.014235584996640682, 0.6039026379585266, -0.29402798414230347, -0.019366208463907242, 0.030627265572547913, -0.03763560578227043, -0.01759541966021061, 0.1421089470386505, 0.11839216202497482, 0.024831315502524376, 1.2196346521377563, 0.14534468948841095, 0.04212455078959465, -0.039511989802122116, -0.654734194278717, -0.855206310749054, 0.8937475681304932, -0.1639801561832428, -0.5683998465538025, -0.353079229593277, -0.3949041962623596]} +{"t": 7.6797, "q": [-0.31111347675323486, 0.002033376134932041, -0.004338974133133888, 0.6066041588783264, -0.3205716013908386, -0.003645768389105797, -0.36014971137046814, 0.014675082638859749, -0.014275760389864445, 0.6040134429931641, -0.29401135444641113, -0.01939520053565502, 0.0307477917522192, -0.03761276602745056, -0.01757059432566166, 0.14150972664356232, 0.11834422498941422, 0.024819331243634224, 1.2198742628097534, 0.1453566700220108, 0.04212455078959465, -0.03954794257879257, -0.6546023488044739, -0.8535284996032715, 0.8935917615890503, -0.16351276636123657, -0.568435788154602, -0.3526957631111145, -0.39613857865333557]} +{"t": 7.6965, "q": [-0.3111986815929413, 0.00184588972479105, -0.0043523660860955715, 0.6066979169845581, -0.32058385014533997, -0.0036240932531654835, -0.3602178990840912, 0.014743260107934475, -0.014329328201711178, 0.6042606234550476, -0.2939946949481964, -0.019438670948147774, 0.03089510276913643, -0.037551842629909515, -0.017501147463917732, 0.14082662761211395, 0.11834422498941422, 0.02479536272585392, 1.2201619148254395, 0.14539262652397156, 0.042160503566265106, -0.03952397406101227, -0.6544225811958313, -0.85176682472229, 0.8934719562530518, -0.16291356086730957, -0.5684477686882019, -0.3522163927555084, -0.39719316363334656]} +{"t": 7.7132, "q": [-0.3112412989139557, 0.0017265803180634975, -0.004379149992018938, 0.6068854331970215, -0.32058385014533997, -0.0036240932531654835, -0.36024346947669983, 0.014845524914562702, -0.014409679919481277, 0.6045162677764893, -0.29397809505462646, -0.019453203305602074, 0.031122766435146332, -0.03753574937582016, -0.017276769503951073, 0.1401435285806656, 0.11828429996967316, 0.024819331243634224, 1.220353603363037, 0.14534468948841095, 0.04219645634293556, -0.03954794257879257, -0.6540630459785461, -0.8499212265014648, 0.8933520913124084, -0.1624581515789032, -0.5684956908226013, -0.35176098346710205, -0.3982837498188019]} +{"t": 7.73, "q": [-0.3112242519855499, 0.0016413591802120209, -0.0043523660860955715, 0.6071325540542603, -0.3205837309360504, -0.0036095762625336647, -0.3602605164051056, 0.014913702383637428, -0.014490030705928802, 0.6048656702041626, -0.2939531207084656, -0.01949670910835266, 0.03109598159790039, -0.0375119112432003, -0.017008192837238312, 0.13953232765197754, 0.11821239441633224, 0.024807346984744072, 1.2205214500427246, 0.1453566700220108, 0.04219645634293556, -0.039571911096572876, -0.6534278988838196, -0.848339319229126, 0.8931124210357666, -0.16208665072917938, -0.5685316324234009, -0.3514014482498169, -0.3993743062019348]} +{"t": 7.7468, "q": [-0.3112242519855499, 0.001539093442261219, -0.0043523660860955715, 0.6073370575904846, -0.32058781385421753, -0.0036023573484271765, -0.36027756333351135, 0.014956312254071236, -0.01453020703047514, 0.6052662134170532, -0.29396143555641174, -0.019482212141156197, 0.0310691986232996, -0.03755618631839752, -0.016716687008738518, 0.1390409767627716, 0.11816445738077164, 0.024783378466963768, 1.2206532955169678, 0.14536865055561066, 0.04217248782515526, -0.03953595831990242, -0.6524691581726074, -0.8472967147827148, 0.892788827419281, -0.16201473772525787, -0.5685316324234009, -0.3512216806411743, -0.4004289209842682]} +{"t": 7.7635, "q": [-0.31120720505714417, 0.001326040830463171, -0.004298798739910126, 0.6076012849807739, -0.3206124007701874, -0.003573560155928135, -0.36027756333351135, 0.015041533857584, -0.01453020703047514, 0.6058627367019653, -0.2939697504043579, -0.01948217675089836, 0.031029021367430687, -0.03769153729081154, -0.016456354409456253, 0.1386694759130478, 0.11820041388273239, 0.024771394208073616, 1.2208091020584106, 0.14532071352005005, 0.042220424860715866, -0.03953595831990242, -0.6514744758605957, -0.8464818000793457, 0.8924532532691956, -0.16197878122329712, -0.5685915946960449, -0.35108986496925354, -0.40180709958076477]} +{"t": 7.7804, "q": [-0.3111390471458435, 0.0009595896117389202, -0.004325582180172205, 0.6079165935516357, -0.32062864303588867, -0.0035301491152495146, -0.36032015085220337, 0.014913702383637428, -0.01446324773132801, 0.6068939566612244, -0.29396146535873413, -0.019467752426862717, 0.031015630811452866, -0.03788714483380318, -0.016109632328152657, 0.1381901055574417, 0.118248350918293, 0.02479536272585392, 1.2209649085998535, 0.14534468948841095, 0.04224439337849617, -0.03952397406101227, -0.6505396962165833, -0.8458226323127747, 0.891818106174469, -0.16201473772525787, -0.5686994194984436, -0.35106590390205383, -0.40390434861183167]} +{"t": 7.7971, "q": [-0.3111305236816406, 0.0006272271275520325, -0.004298798739910126, 0.6084534525871277, -0.32066139578819275, -0.0034868961665779352, -0.36037981510162354, 0.01486256904900074, -0.014503423124551773, 0.6078569293022156, -0.29408207535743713, -0.01928641088306904, 0.030988845974206924, -0.03787845000624657, -0.01586122065782547, 0.13745906949043274, 0.11818842589855194, 0.02479536272585392, 1.2212284803390503, 0.1453566700220108, 0.042268361896276474, -0.03953595831990242, -0.6502161026000977, -0.8450077176094055, 0.8908593654632568, -0.16199077665805817, -0.568747341632843, -0.35106590390205383, -0.40610945224761963]} +{"t": 7.8139, "q": [-0.3110623359680176, 0.00039712991565465927, -0.004218447022140026, 0.6089392304420471, -0.32068198919296265, -0.0034798351116478443, -0.3603883385658264, 0.014751781709492207, -0.014409679919481277, 0.6085813045501709, -0.29415690898895264, -0.019184831529855728, 0.031042413786053658, -0.037756435573101044, -0.015683474019169807, 0.13621270656585693, 0.1182243824005127, 0.024783378466963768, 1.2215760946273804, 0.14534468948841095, 0.042328283190727234, -0.03953595831990242, -0.6500003933906555, -0.8441088795661926, 0.8903560042381287, -0.16206267476081848, -0.5687114000320435, -0.35106590390205383, -0.4082905650138855]} +{"t": 7.8307, "q": [-0.31103676557540894, 0.0002692984417080879, -0.004138095770031214, 0.6092801094055176, -0.32071056962013245, -0.0034292840864509344, -0.36041390895843506, 0.014623950235545635, -0.014382896013557911, 0.6090670824050903, -0.294206827878952, -0.019097838550806046, 0.03109598159790039, -0.037611812353134155, -0.015529717318713665, 0.1350262612104416, 0.11821239441633224, 0.024771394208073616, 1.2219475507736206, 0.1453566700220108, 0.04236423596739769, -0.03952397406101227, -0.6494371294975281, -0.843329906463623, 0.890332043170929, -0.16208665072917938, -0.5687353610992432, -0.351053923368454, -0.4109870195388794]} +{"t": 7.8474, "q": [-0.311104953289032, 0.000218165572732687, -0.004111311864107847, 0.609620988368988, -0.32072290778160095, -0.003422143869102001, -0.3604480028152466, 0.014623950235545635, -0.014382896013557911, 0.6093653440475464, -0.2942151427268982, -0.01908334158360958, 0.03108258917927742, -0.037511877715587616, -0.01520191878080368, 0.13339641690254211, 0.11820041388273239, 0.024747425690293312, 1.2222471237182617, 0.14536865055561066, 0.0424121730029583, -0.03953595831990242, -0.6488618850708008, -0.8427067399024963, 0.8902841210365295, -0.16207465529441833, -0.5687233805656433, -0.3510299324989319, -0.413851261138916]} +{"t": 7.8642, "q": [-0.31107085943222046, 0.00020112143829464912, -0.004071136470884085, 0.6099703907966614, -0.3207187354564667, -0.0034148460254073143, -0.36046504974365234, 0.014606906101107597, -0.014329328201711178, 0.6097999811172485, -0.2942151427268982, -0.0190688818693161, 0.030975455418229103, -0.03757821023464203, -0.014780436642467976, 0.13146695494651794, 0.1182243824005127, 0.02473544143140316, 1.2227745056152344, 0.14539262652397156, 0.04242415726184845, -0.03954794257879257, -0.648166835308075, -0.8420835733413696, 0.8901642560958862, -0.16206267476081848, -0.5687713027000427, -0.3510059714317322, -0.4159964323043823]} +{"t": 7.881, "q": [-0.31107085943222046, 0.0001925993710756302, -0.004030960611999035, 0.610584020614624, -0.3207228183746338, -0.003407608950510621, -0.3605246841907501, 0.014606906101107597, -0.014262368902564049, 0.6104987859725952, -0.2942151427268982, -0.0190688818693161, 0.030868319794535637, -0.03769787400960922, -0.014423160813748837, 0.13074789941310883, 0.11815247684717178, 0.024723457172513008, 1.2233736515045166, 0.1453806310892105, 0.0424361415207386, -0.03953595831990242, -0.6470403075218201, -0.8412206768989563, 0.8896849155426025, -0.16201473772525787, -0.5686395168304443, -0.35093405842781067, -0.41780605912208557]} +{"t": 7.8978, "q": [-0.31111347675323486, 0.00020964350551366806, -0.003977392800152302, 0.6111123561859131, -0.3207474946975708, -0.003393328981474042, -0.3606269657611847, 0.014538728632032871, -0.014208801090717316, 0.6111038327217102, -0.2942608892917633, -0.019018039107322693, 0.030613873153924942, -0.03778771311044693, -0.014172013849020004, 0.13061606884002686, 0.1182243824005127, 0.024723457172513008, 1.2237212657928467, 0.14532071352005005, 0.0424361415207386, -0.03953595831990242, -0.6456022262573242, -0.8401421308517456, 0.8890377879142761, -0.16182298958301544, -0.568663477897644, -0.3508741557598114, -0.4191722571849823]} +{"t": 7.9145, "q": [-0.31107938289642334, 0.0001925993710756302, -0.00388364982791245, 0.6114276647567749, -0.32075178623199463, -0.0034151622094213963, -0.3607292175292969, 0.014496118761599064, -0.014074882492423058, 0.6115555167198181, -0.2942899763584137, -0.01896730251610279, 0.03038621135056019, -0.037764668464660645, -0.01409852597862482, 0.13064004480838776, 0.1182243824005127, 0.024747425690293312, 1.2239608764648438, 0.1453566700220108, 0.0424361415207386, -0.03954794257879257, -0.6431214809417725, -0.8387759327888489, 0.8881269693374634, -0.16145148873329163, -0.5686754584312439, -0.3507303297519684, -0.4205264747142792]} +{"t": 7.9312, "q": [-0.31107085943222046, 0.00016703316941857338, -0.0037899063900113106, 0.6117430329322815, -0.3207477033138275, -0.0034223811235278845, -0.3607974052429199, 0.0144108971580863, -0.013914179988205433, 0.6119219660758972, -0.29430246353149414, -0.018960000947117805, 0.030171940103173256, -0.03769632801413536, -0.014063009060919285, 0.1306520253419876, 0.11818842589855194, 0.024759409949183464, 1.2241885662078857, 0.14536865055561066, 0.04242415726184845, -0.03953595831990242, -0.6402332782745361, -0.8374336957931519, 0.8866409063339233, -0.16113989055156708, -0.5686994194984436, -0.35056254267692566, -0.42225217819213867]} +{"t": 7.9479, "q": [-0.3110026717185974, 0.00018407730385661125, -0.0037497307639569044, 0.6121776103973389, -0.32074350118637085, -0.0034150651190429926, -0.36092522740364075, 0.014334198087453842, -0.013699909672141075, 0.6124844551086426, -0.29441893100738525, -0.018757004290819168, 0.02973000891506672, -0.037498824298381805, -0.01394201721996069, 0.13078385591506958, 0.11817644536495209, 0.024759409949183464, 1.2244162559509277, 0.1453326940536499, 0.04242415726184845, -0.03953595831990242, -0.637704610824585, -0.8357439041137695, 0.885694146156311, -0.16051670908927917, -0.5686155557632446, -0.3504307270050049, -0.42512840032577515]} +{"t": 7.9647, "q": [-0.31099414825439453, 0.0001925993710756302, -0.0035220684949308634, 0.6126378178596497, -0.32073941826820374, -0.003422284033149481, -0.3612064719200134, 0.014257499016821384, -0.013432071544229984, 0.6132258772850037, -0.2944604754447937, -0.018727906048297882, 0.029100589454174042, -0.03730899840593338, -0.01384552102535963, 0.13084377348423004, 0.11818842589855194, 0.024759409949183464, 1.2247997522354126, 0.1452847570180893, 0.042400188744068146, -0.03954794257879257, -0.6357151865959167, -0.8334069848060608, 0.8849391341209412, -0.15936622023582458, -0.5686275362968445, -0.3503707945346832, -0.42842406034469604]} +{"t": 7.9814, "q": [-0.3110538125038147, 0.000218165572732687, -0.003321190131828189, 0.612987220287323, -0.32073545455932617, -0.003444056259468198, -0.3615303039550781, 0.014146711677312851, -0.013257976621389389, 0.6137030720710754, -0.2944563329219818, -0.01873515360057354, 0.02856491319835186, -0.03721022605895996, -0.013780158013105392, 0.1308078169822693, 0.11816445738077164, 0.024819331243634224, 1.2253750562667847, 0.14536865055561066, 0.0424121730029583, -0.03953595831990242, -0.6334022283554077, -0.8306146860122681, 0.8840283751487732, -0.1582157462835312, -0.5686994194984436, -0.3503228724002838, -0.431599885225296]} +{"t": 7.9981, "q": [-0.3111390471458435, 0.0003630416467785835, -0.003321190131828189, 0.613200306892395, -0.3207108676433563, -0.0034728350583463907, -0.36178597807884216, 0.014112623408436775, -0.013097274117171764, 0.6139076352119446, -0.29448121786117554, -0.018763968721032143, 0.028337251394987106, -0.03716488927602768, -0.013808393850922585, 0.13061606884002686, 0.1182243824005127, 0.024819331243634224, 1.2260581254959106, 0.14534468948841095, 0.0424121730029583, -0.03953595831990242, -0.6306818127632141, -0.8277384638786316, 0.8836089372634888, -0.15692144632339478, -0.5686155557632446, -0.3502030372619629, -0.4359022378921509]} +{"t": 8.0148, "q": [-0.3111816346645355, 0.0005420059897005558, -0.0033077981788665056, 0.6134644746780396, -0.3206822872161865, -0.0035233863163739443, -0.3618711829185486, 0.014027401804924011, -0.013057098723948002, 0.6139076352119446, -0.2945560812950134, -0.018633469939231873, 0.028364034369587898, -0.03718012571334839, -0.013828183524310589, 0.13044829666614532, 0.118248350918293, 0.024783378466963768, 1.227064847946167, 0.14532071352005005, 0.042400188744068146, -0.03954794257879257, -0.6284887194633484, -0.8256531953811646, 0.883525013923645, -0.15550731122493744, -0.5685316324234009, -0.35004723072052, -0.438323050737381]} +{"t": 8.0316, "q": [-0.3112839162349701, 0.0008573243394494057, -0.0033747577108442783, 0.61380535364151, -0.3206822872161865, -0.0035233863163739443, -0.3619990050792694, 0.013712083920836449, -0.013070490211248398, 0.6139246821403503, -0.29481810331344604, -0.018220102414488792, 0.028538130223751068, -0.03724099323153496, -0.013887873850762844, 0.13046027719974518, 0.1182243824005127, 0.024807346984744072, 1.2279876470565796, 0.14536865055561066, 0.04237622022628784, -0.03954794257879257, -0.6264514327049255, -0.8242270946502686, 0.883525013923645, -0.1533980816602707, -0.5684956908226013, -0.3500232696533203, -0.4406359791755676]} +{"t": 8.0483, "q": [-0.3114543557167053, 0.0011726426891982555, -0.0034015413839370012, 0.614180326461792, -0.32066595554351807, -0.003552280133590102, -0.3620501458644867, 0.01320927869528532, -0.013083881698548794, 0.6139076352119446, -0.29496362805366516, -0.01803867146372795, 0.02875239960849285, -0.03738543763756752, -0.014002872630953789, 0.13040035963058472, 0.11826033145189285, 0.024807346984744072, 1.2283830642700195, 0.1453566700220108, 0.042388204485177994, -0.03953595831990242, -0.624114453792572, -0.8236278891563416, 0.883441150188446, -0.1513487845659256, -0.5685316324234009, -0.35004723072052, -0.44322457909584045]} +{"t": 8.065, "q": [-0.31153103709220886, 0.0013516070321202278, -0.0034551091957837343, 0.6144104599952698, -0.32065778970718384, -0.0035667181946337223, -0.3620842397212982, 0.013072924688458443, -0.013097274117171764, 0.6138820648193359, -0.2950093150138855, -0.018045706674456596, 0.02889971062541008, -0.03756774961948395, -0.014113808050751686, 0.13038836419582367, 0.11834422498941422, 0.02479536272585392, 1.2286347150802612, 0.1453566700220108, 0.04236423596739769, -0.03954794257879257, -0.6219213604927063, -0.8233641982078552, 0.8833931684494019, -0.14963503181934357, -0.5685316324234009, -0.3500232696533203, -0.4465082585811615]} +{"t": 8.0818, "q": [-0.3116077482700348, 0.0014794389717280865, -0.003468500915914774, 0.6145808696746826, -0.32066187262535095, -0.003559499280527234, -0.36221206188201904, 0.013081447221338749, -0.013097274117171764, 0.6139076352119446, -0.2950757145881653, -0.018103282898664474, 0.02888631820678711, -0.03778829798102379, -0.01430828683078289, 0.13047225773334503, 0.11828429996967316, 0.024807346984744072, 1.2288984060287476, 0.1453326940536499, 0.042328283190727234, -0.03954794257879257, -0.6199799180030823, -0.8232803344726562, 0.8833692073822021, -0.14783740043640137, -0.5685076713562012, -0.34998732805252075, -0.45025932788848877]} +{"t": 8.0985, "q": [-0.3117015063762665, 0.0016072704456746578, -0.0034283252898603678, 0.6148279905319214, -0.32065361738204956, -0.0035594203509390354, -0.3622717261314392, 0.013098491355776787, -0.013016922399401665, 0.6139076352119446, -0.29505491256713867, -0.018139541149139404, 0.02875239960849285, -0.03784932941198349, -0.01440691202878952, 0.13041234016418457, 0.11828429996967316, 0.02479536272585392, 1.2291860580444336, 0.14532071352005005, 0.04230431467294693, -0.03953595831990242, -0.6188414096832275, -0.8232443928718567, 0.8834291696548462, -0.14559635519981384, -0.5685316324234009, -0.3499753177165985, -0.4548133313655853]} +{"t": 8.1152, "q": [-0.3117952346801758, 0.0016584033146500587, -0.0033747577108442783, 0.6149728894233704, -0.32064953446388245, -0.0035666392650455236, -0.36239102482795715, 0.013021792285144329, -0.012909787707030773, 0.6139161586761475, -0.2950673997402191, -0.018117796629667282, 0.028645263984799385, -0.03783426061272621, -0.014426058158278465, 0.13044829666614532, 0.11830826848745346, 0.02485528402030468, 1.2296414375305176, 0.1452607959508896, 0.04224439337849617, -0.039511989802122116, -0.6179905533790588, -0.823304295539856, 0.8833452463150024, -0.14334331452846527, -0.5685555934906006, -0.3499513566493988, -0.4584924876689911]} +{"t": 8.132, "q": [-0.31195715069770813, 0.0016924915835261345, -0.003334582084789872, 0.6151177883148193, -0.3206537067890167, -0.003573937341570854, -0.36248478293418884, 0.013004748150706291, -0.01285621989518404, 0.6139417290687561, -0.2950258255004883, -0.01817583292722702, 0.028471169993281364, -0.03783434256911278, -0.014445525594055653, 0.13041234016418457, 0.11828429996967316, 0.02485528402030468, 1.2299649715423584, 0.14524881541728973, 0.04225637763738632, -0.039511989802122116, -0.6176789402961731, -0.823448121547699, 0.8831894397735596, -0.14147378504276276, -0.5684597492218018, -0.3499034345149994, -0.46132075786590576]} +{"t": 8.1487, "q": [-0.3120253384113312, 0.0017010136507451534, -0.0032810145057737827, 0.6151859164237976, -0.32065778970718384, -0.0035667181946337223, -0.3625529706478119, 0.013004748150706291, -0.012789260596036911, 0.6139332056045532, -0.29498839378356934, -0.018212145194411278, 0.028364034369587898, -0.03781922906637192, -0.014454937539994717, 0.13044829666614532, 0.11820041388273239, 0.02485528402030468, 1.230432391166687, 0.1453087329864502, 0.04223240911960602, -0.03954794257879257, -0.617690920829773, -0.8237357139587402, 0.8830336928367615, -0.1399397999048233, -0.568435788154602, -0.349819540977478, -0.46472427248954773]} +{"t": 8.1654, "q": [-0.3120594322681427, 0.0016924915835261345, -0.003254230599850416, 0.615228533744812, -0.32065361738204956, -0.0035594203509390354, -0.362587034702301, 0.013030314818024635, -0.012762476690113544, 0.6139417290687561, -0.2949967086315155, -0.018226588144898415, 0.028323858976364136, -0.037819355726242065, -0.014484139159321785, 0.13041234016418457, 0.11828429996967316, 0.024831315502524376, 1.2307919263839722, 0.1452847570180893, 0.042220424860715866, -0.03952397406101227, -0.6178467273712158, -0.8242390751838684, 0.8826261758804321, -0.1383698582649231, -0.5683998465538025, -0.34954389929771423, -0.46876296401023865]} +{"t": 8.1823, "q": [-0.31209349632263184, 0.0016839695163071156, -0.003254230599850416, 0.6152881979942322, -0.32065778970718384, -0.0035667181946337223, -0.36256998777389526, 0.013107013888657093, -0.012802652083337307, 0.6139587759971619, -0.29498839378356934, -0.018226604908704758, 0.028310466557741165, -0.03788773715496063, -0.014529389329254627, 0.13037638366222382, 0.11821239441633224, 0.024819331243634224, 1.2310795783996582, 0.14524881541728973, 0.042208440601825714, -0.03952397406101227, -0.6181823015213013, -0.82450270652771, 0.8824464678764343, -0.13626064360141754, -0.5682080984115601, -0.34930419921875, -0.47323307394981384]} +{"t": 8.1992, "q": [-0.312153160572052, 0.0016669253818690777, -0.003254230599850416, 0.6153904795646667, -0.32065361738204956, -0.0035594203509390354, -0.3625614643096924, 0.013166667893528938, -0.01284282747656107, 0.6139758229255676, -0.2949301600456238, -0.018313633278012276, 0.028444387018680573, -0.03798651695251465, -0.01459467876702547, 0.13040035963058472, 0.11828429996967316, 0.02485528402030468, 1.2313910722732544, 0.1452847570180893, 0.042220424860715866, -0.03953595831990242, -0.6183740496635437, -0.8244907259941101, 0.8824224472045898, -0.1341993510723114, -0.5682200789451599, -0.3491004705429077, -0.4774874746799469]} +{"t": 8.2159, "q": [-0.31222987174987793, 0.0016328366473317146, -0.0032810145057737827, 0.6154245734214783, -0.32065361738204956, -0.0035594203509390354, -0.3625103533267975, 0.013251889497041702, -0.012909787707030773, 0.6139758229255676, -0.2943894565105438, -0.0192416962236166, 0.02857830561697483, -0.03808516636490822, -0.014630800113081932, 0.13041234016418457, 0.11840414255857468, 0.024819331243634224, 1.2318345308303833, 0.14524881541728973, 0.042208440601825714, -0.03952397406101227, -0.6186257004737854, -0.8245866298675537, 0.8824224472045898, -0.13144297897815704, -0.5681840777397156, -0.34904056787490845, -0.48039963841438293]} +{"t": 8.2326, "q": [-0.31230655312538147, 0.0016072704456746578, -0.0032810145057737827, 0.6154671907424927, -0.32065361738204956, -0.0035594203509390354, -0.3625103533267975, 0.013294500298798084, -0.012963354587554932, 0.6139758229255676, -0.2943645119667053, -0.019285202026367188, 0.028658656403422356, -0.03813067451119423, -0.014641488902270794, 0.13041234016418457, 0.11840414255857468, 0.024831315502524376, 1.232301950454712, 0.1453087329864502, 0.042220424860715866, -0.03952397406101227, -0.6188174486160278, -0.8245506286621094, 0.8826861381530762, -0.1284828782081604, -0.5681840777397156, -0.3490285873413086, -0.482628732919693]} +{"t": 8.2494, "q": [-0.3124258816242218, 0.001539093442261219, -0.0032944062259048223, 0.6154842376708984, -0.3206452429294586, -0.0035448241978883743, -0.3625018298625946, 0.013320066034793854, -0.013070490211248398, 0.6139587759971619, -0.29432711005210876, -0.019307071343064308, 0.02908719703555107, -0.038236964493989944, -0.014692354947328568, 0.13044829666614532, 0.11835620552301407, 0.024819331243634224, 1.2327213287353516, 0.14529675245285034, 0.04224439337849617, -0.03952397406101227, -0.6198840737342834, -0.8245866298675537, 0.8827220797538757, -0.12649349868297577, -0.5682080984115601, -0.34906452894210815, -0.48488175868988037]} +{"t": 8.2661, "q": [-0.312528133392334, 0.0014368281699717045, -0.0033881496638059616, 0.6154842376708984, -0.3206615746021271, -0.0035159301478415728, -0.3624677360057831, 0.013362676836550236, -0.01317762490361929, 0.6139417290687561, -0.29433128237724304, -0.01928536221385002, 0.02973000891506672, -0.038320377469062805, -0.01470870990306139, 0.13040035963058472, 0.11835620552301407, 0.024819331243634224, 1.2333685159683228, 0.14520087838172913, 0.04224439337849617, -0.03952397406101227, -0.621034562587738, -0.82450270652771, 0.8826741576194763, -0.12416855990886688, -0.5681720972061157, -0.3490285873413086, -0.48736247420310974]} +{"t": 8.2829, "q": [-0.3125707507133484, 0.0013430849649012089, -0.003441717242822051, 0.6154671907424927, -0.3206697404384613, -0.0035014920867979527, -0.36239102482795715, 0.013677995651960373, -0.013324935920536518, 0.6139246821403503, -0.2943479120731354, -0.01927081309258938, 0.03026568330824375, -0.0385938324034214, -0.014870066195726395, 0.12978915870189667, 0.11834422498941422, 0.02479536272585392, 1.2349504232406616, 0.14529675245285034, 0.04225637763738632, -0.039511989802122116, -0.6227842569351196, -0.82450270652771, 0.8826501965522766, -0.12117250263690948, -0.568148136138916, -0.3490285873413086, -0.49087387323379517]} +{"t": 8.2997, "q": [-0.3124855160713196, 0.0011811647564172745, -0.003589028026908636, 0.6154501438140869, -0.32067403197288513, -0.003523307153955102, -0.3622205853462219, 0.014138189144432545, -0.013499030843377113, 0.6139758229255676, -0.2943229675292969, -0.019270919263362885, 0.031042413786053658, -0.03882135450839996, -0.014923506416380405, 0.1290341466665268, 0.11840414255857468, 0.024819331243634224, 1.2365922927856445, 0.1453326940536499, 0.042220424860715866, -0.03952397406101227, -0.6244739890098572, -0.8245866298675537, 0.8827340602874756, -0.11918312311172485, -0.5681960582733154, -0.34906452894210815, -0.4946369230747223]} +{"t": 8.3164, "q": [-0.3124684691429138, 0.001027766615152359, -0.0037497307639569044, 0.6153990030288696, -0.32067790627479553, -0.0034870540257543325, -0.3621268570423126, 0.014376808889210224, -0.013753476552665234, 0.613950252532959, -0.29433128237724304, -0.01927090249955654, 0.03163165599107742, -0.03906425088644028, -0.01502592395991087, 0.12881843745708466, 0.11841613054275513, 0.024819331243634224, 1.2376948595046997, 0.14527277648448944, 0.04219645634293556, -0.03952397406101227, -0.6265113353729248, -0.8246345520019531, 0.882925808429718, -0.11796072870492935, -0.5681960582733154, -0.34908849000930786, -0.49829208850860596]} +{"t": 8.3331, "q": [-0.31235769391059875, 0.0008743684738874435, -0.0038702578749507666, 0.615373432636261, -0.32067811489105225, -0.0035160882398486137, -0.36193084716796875, 0.014393853023648262, -0.013887396082282066, 0.6139246821403503, -0.29433128237724304, -0.01927090249955654, 0.03196645528078079, -0.039299264550209045, -0.015055445954203606, 0.12896224856376648, 0.11844009906053543, 0.024819331243634224, 1.2380304336547852, 0.1452607959508896, 0.0421365350484848, -0.03953595831990242, -0.6301186084747314, -0.8245986104011536, 0.8832733631134033, -0.11722969263792038, -0.5682440400123596, -0.3491484224796295, -0.5014799237251282]} +{"t": 8.3498, "q": [-0.31232360005378723, 0.0007976694032549858, -0.003977392800152302, 0.6153393387794495, -0.3206944167613983, -0.0034872121177613735, -0.3617774546146393, 0.014359764754772186, -0.013994530774652958, 0.6138224005699158, -0.2943479120731354, -0.0192563533782959, 0.032314643263816833, -0.03957183659076691, -0.015012790448963642, 0.1290581226348877, 0.11840414255857468, 0.024819331243634224, 1.2384737730026245, 0.1452368199825287, 0.04212455078959465, -0.03952397406101227, -0.6339295506477356, -0.8245866298675537, 0.8833332657814026, -0.11693008244037628, -0.5682560205459595, -0.34913644194602966, -0.5038168430328369]} +{"t": 8.3666, "q": [-0.312340646982193, 0.0007039261981844902, -0.004111311864107847, 0.6153222918510437, -0.32070261240005493, -0.003472756128758192, -0.3615303039550781, 0.014334198087453842, -0.014141841791570187, 0.613737165927887, -0.2943437695503235, -0.019234661012887955, 0.032542306929826736, -0.03991257771849632, -0.014966892078518867, 0.12917795777320862, 0.11832025647163391, 0.024831315502524376, 1.2386655807495117, 0.1452847570180893, 0.042088598012924194, -0.03952397406101227, -0.6393344402313232, -0.8249821066856384, 0.8833093047142029, -0.11595936119556427, -0.5682799816131592, -0.34916040301322937, -0.5061897039413452]} +{"t": 8.3833, "q": [-0.3121446371078491, 0.0006527937948703766, -0.004111311864107847, 0.6153137683868408, -0.32070666551589966, -0.00346553698182106, -0.36124905943870544, 0.014376808889210224, -0.014155233278870583, 0.6137201189994812, -0.2943396270275116, -0.01924191042780876, 0.03255569934844971, -0.04041251167654991, -0.01494914386421442, 0.12920193374156952, 0.11835620552301407, 0.024831315502524376, 1.2389891147613525, 0.14527277648448944, 0.042100582271814346, -0.03953595831990242, -0.6443079113960266, -0.8253415822982788, 0.8834052085876465, -0.1143295094370842, -0.5682799816131592, -0.34913644194602966, -0.5079154372215271]} +{"t": 8.4, "q": [-0.3119230568408966, 0.0006442712619900703, -0.004178271628916264, 0.6152455806732178, -0.3207148313522339, -0.0034510991536080837, -0.36101046204566956, 0.014393853023648262, -0.01419540960341692, 0.6136178970336914, -0.29438120126724243, -0.019169412553310394, 0.03259587287902832, -0.041132524609565735, -0.015038910321891308, 0.12917795777320862, 0.11841613054275513, 0.02485528402030468, 1.2392048835754395, 0.14521285891532898, 0.042088598012924194, -0.03954794257879257, -0.6489577889442444, -0.8254255056381226, 0.8833692073822021, -0.11229219287633896, -0.5682799816131592, -0.3491484224796295, -0.5099287629127502]} +{"t": 8.417, "q": [-0.31171002984046936, 0.0006187050603330135, -0.00416487967595458, 0.615228533744812, -0.3207107484340668, -0.003458318067714572, -0.3607718348503113, 0.014402374625205994, -0.014182017184793949, 0.6135326623916626, -0.2943936884403229, -0.0191331896930933, 0.03260926529765129, -0.04189005866646767, -0.015056610107421875, 0.12916597723960876, 0.11851200461387634, 0.024831315502524376, 1.239384651184082, 0.1453087329864502, 0.042088598012924194, -0.03953595831990242, -0.6531162858009338, -0.8254015445709229, 0.883381187915802, -0.11002717167139053, -0.5682680010795593, -0.3491484224796295, -0.5127450823783875]} +{"t": 8.4339, "q": [-0.31153103709220886, 0.0006101829931139946, -0.004178271628916264, 0.6152455806732178, -0.3207230865955353, -0.0034511780831962824, -0.3605417311191559, 0.014376808889210224, -0.01419540960341692, 0.6134900450706482, -0.29439786076545715, -0.019125942140817642, 0.032542306929826736, -0.042791400104761124, -0.015063704922795296, 0.12909407913684845, 0.11877565830945969, 0.024867268279194832, 1.2394444942474365, 0.14527277648448944, 0.042088598012924194, -0.03952397406101227, -0.6578860282897949, -0.8258689045906067, 0.8834052085876465, -0.10730675607919693, -0.5682200789451599, -0.3491484224796295, -0.5155373811721802]} +{"t": 8.4506, "q": [-0.3114543557167053, 0.0006101829931139946, -0.0041916631162166595, 0.6152796745300293, -0.320735365152359, -0.003429502947255969, -0.3604053854942322, 0.014342720620334148, -0.014168625697493553, 0.613430380821228, -0.2944103479385376, -0.01908973790705204, 0.03255569934844971, -0.043745603412389755, -0.015038219280540943, 0.12907010316848755, 0.11905129253864288, 0.02490321919322014, 1.2395163774490356, 0.14527277648448944, 0.04207661375403404, -0.039511989802122116, -0.6625478863716125, -0.8272351026535034, 0.8836089372634888, -0.10508967190980911, -0.5681840777397156, -0.34913644194602966, -0.5170833468437195]} +{"t": 8.4673, "q": [-0.31139469146728516, 0.0006101829931139946, -0.004178271628916264, 0.6153137683868408, -0.32073545455932617, -0.003444056259468198, -0.3603627681732178, 0.014317153953015804, -0.014155233278870583, 0.6134218573570251, -0.2944020628929138, -0.019075313583016396, 0.032528914511203766, -0.04495865851640701, -0.01527295634150505, 0.12917795777320862, 0.11955463141202927, 0.024927187711000443, 1.2395163774490356, 0.14522483944892883, 0.042088598012924194, -0.03948802128434181, -0.6677490472793579, -0.8288889527320862, 0.8842440843582153, -0.10179401189088821, -0.5681601166725159, -0.34916040301322937, -0.5184855461120605]} +{"t": 8.4841, "q": [-0.3113861680030823, 0.0006442712619900703, -0.004151487722992897, 0.6153649091720581, -0.3207230865955353, -0.0034511780831962824, -0.36037129163742065, 0.01429158728569746, -0.014141841791570187, 0.6134218573570251, -0.2944311797618866, -0.019024558365345, 0.03247534856200218, -0.0460808090865612, -0.015545198693871498, 0.12929780781269073, 0.12027368694543839, 0.0249631404876709, 1.239612340927124, 0.1452847570180893, 0.042088598012924194, -0.03948802128434181, -0.6722910404205322, -0.8305786848068237, 0.8849871158599854, -0.09857024997472763, -0.5682200789451599, -0.3491723835468292, -0.5197678208351135]} +{"t": 8.5008, "q": [-0.3114202618598938, 0.0006613158620893955, -0.004205055069178343, 0.6154075264930725, -0.3207312524318695, -0.0034367400221526623, -0.3603627681732178, 0.014274543151259422, -0.014141841791570187, 0.6132940649986267, -0.29443952441215515, -0.018966663628816605, 0.03243517130613327, -0.04745432734489441, -0.016092197969555855, 0.1294056624174118, 0.12119647115468979, 0.02503504604101181, 1.2396602630615234, 0.1452368199825287, 0.042088598012924194, -0.039440084248781204, -0.6757664680480957, -0.8325321674346924, 0.8851428627967834, -0.0954064205288887, -0.5681960582733154, -0.34916040301322937, -0.5215534567832947]} +{"t": 8.5176, "q": [-0.31139469146728516, 0.0007124482654035091, -0.004205055069178343, 0.6154075264930725, -0.3207436203956604, -0.0034296002704650164, -0.3603883385658264, 0.014300109818577766, -0.014074882492423058, 0.6132599711418152, -0.29446864128112793, -0.01891591027379036, 0.03239499405026436, -0.04870682954788208, -0.016656462103128433, 0.1294775754213333, 0.12217917293310165, 0.025142904371023178, 1.2396842241287231, 0.1452847570180893, 0.04207661375403404, -0.039440084248781204, -0.6789902448654175, -0.8344616293907166, 0.8858140110969543, -0.09256615489721298, -0.5682080984115601, -0.3491723835468292, -0.5228477716445923]} +{"t": 8.5346, "q": [-0.3113691210746765, 0.0007465369999408722, -0.004231838975101709, 0.6154501438140869, -0.3207395374774933, -0.0034368191845715046, -0.36037129163742065, 0.014223410747945309, -0.014021314680576324, 0.613132119178772, -0.29451024532318115, -0.01881447434425354, 0.03227446973323822, -0.049846433103084564, -0.017350124195218086, 0.12952551245689392, 0.12322180718183517, 0.025178857147693634, 1.2396842241287231, 0.1452847570180893, 0.04207661375403404, -0.03946405276656151, -0.6814350485801697, -0.8363431096076965, 0.886293351650238, -0.09030113369226456, -0.5681960582733154, -0.3491843640804291, -0.5235428810119629]} +{"t": 8.5513, "q": [-0.31134355068206787, 0.0007891473360359669, -0.004258622881025076, 0.6154160499572754, -0.3207395374774933, -0.0034368191845715046, -0.3603542447090149, 0.014214888215065002, -0.014021314680576324, 0.612987220287323, -0.294551819562912, -0.018770914524793625, 0.03214054927229881, -0.050849709659814835, -0.018021104857325554, 0.12953749299049377, 0.12409665435552597, 0.025178857147693634, 1.2396721839904785, 0.1452847570180893, 0.04205264523625374, -0.039440084248781204, -0.6828611493110657, -0.8379849791526794, 0.8864012360572815, -0.08841961622238159, -0.5682080984115601, -0.34919634461402893, -0.5239623188972473]} +{"t": 8.568, "q": [-0.31130096316337585, 0.0008317581377923489, -0.004258622881025076, 0.615441620349884, -0.32074370980262756, -0.003444117261096835, -0.3602519929409027, 0.014180799946188927, -0.013994530774652958, 0.6128168106079102, -0.29474732279777527, -0.018415674567222595, 0.0321003757417202, -0.051662907004356384, -0.018565572798252106, 0.12957344949245453, 0.12498348206281662, 0.025226794183254242, 1.2396842241287231, 0.1453087329864502, 0.042028676718473434, -0.039452068507671356, -0.6840236186981201, -0.8398424983024597, 0.8866409063339233, -0.08649015426635742, -0.5682440400123596, -0.3492323160171509, -0.524357795715332]} +{"t": 8.5849, "q": [-0.311292439699173, 0.0008914126083254814, -0.004231838975101709, 0.61551833152771, -0.3207312524318695, -0.0034367400221526623, -0.3602008521556854, 0.01420636661350727, -0.013967746868729591, 0.6126889586448669, -0.2947307527065277, -0.018386824056506157, 0.03211376443505287, -0.05238489434123039, -0.019040368497371674, 0.12957344949245453, 0.12565460801124573, 0.025226794183254242, 1.2396961450576782, 0.14518888294696808, 0.04205264523625374, -0.03946405276656151, -0.685150146484375, -0.8416761159896851, 0.8870483636856079, -0.08493220061063766, -0.5682080984115601, -0.34926825761795044, -0.5246214270591736]} +{"t": 8.6016, "q": [-0.31130948662757874, 0.0009169792756438255, -0.004258622881025076, 0.615603506565094, -0.320735365152359, -0.003429502947255969, -0.36014118790626526, 0.014155233278870583, -0.013914179988205433, 0.6125185489654541, -0.29468920826911926, -0.018387002870440483, 0.0321003757417202, -0.053000226616859436, -0.019394753500819206, 0.12957344949245453, 0.12607404589653015, 0.025250762701034546, 1.2397921085357666, 0.14524881541728973, 0.04205264523625374, -0.03947603702545166, -0.6861568093299866, -0.8439651131629944, 0.8872401118278503, -0.08342219144105911, -0.5682200789451599, -0.34929221868515015, -0.5249210596084595]} +{"t": 8.6184, "q": [-0.3113180100917816, 0.0009510675445199013, -0.004231838975101709, 0.6156802177429199, -0.3207312524318695, -0.0034367400221526623, -0.3601156175136566, 0.014214888215065002, -0.013874003663659096, 0.612313985824585, -0.2946104407310486, -0.018220990896224976, 0.032006628811359406, -0.05335747450590134, -0.019634218886494637, 0.12950153648853302, 0.12639762461185455, 0.025226794183254242, 1.239768147468567, 0.14521285891532898, 0.042028676718473434, -0.03946405276656151, -0.6870796084403992, -0.846397876739502, 0.8872401118278503, -0.08184027671813965, -0.5682560205459595, -0.34929221868515015, -0.5252206325531006]} +{"t": 8.6353, "q": [-0.31130096316337585, 0.0009340234100818634, -0.004205055069178343, 0.615748405456543, -0.3207312524318695, -0.0034367400221526623, -0.3600304126739502, 0.014214888215065002, -0.013807044364511967, 0.6120583415031433, -0.2944817543029785, -0.01809859089553356, 0.03191288560628891, -0.053532302379608154, -0.019751405343413353, 0.12957344949245453, 0.12657739222049713, 0.02521480992436409, 1.2398160696029663, 0.14527277648448944, 0.04201669245958328, -0.03946405276656151, -0.6880742907524109, -0.848027765750885, 0.8872161507606506, -0.07982692122459412, -0.5682680010795593, -0.3493761122226715, -0.5256280899047852]} +{"t": 8.6521, "q": [-0.311292439699173, 0.000976633746176958, -0.004178271628916264, 0.6158421635627747, -0.3207312524318695, -0.0034367400221526623, -0.3598940670490265, 0.014214888215065002, -0.013807044364511967, 0.6116833686828613, -0.2943863570690155, -0.017947111278772354, 0.0317789688706398, -0.05357801914215088, -0.01980145461857319, 0.12956145405769348, 0.1266852468252182, 0.025202825665473938, 1.2398879528045654, 0.1452368199825287, 0.04201669245958328, -0.03947603702545166, -0.6889851093292236, -0.8485430479049683, 0.8872281312942505, -0.07799334079027176, -0.5682560205459595, -0.34943604469299316, -0.5261673927307129]} +{"t": 8.6688, "q": [-0.3113180100917816, 0.0009936783462762833, -0.004178271628916264, 0.6158592104911804, -0.3207230865955353, -0.0034511780831962824, -0.3597576916217804, 0.014240454882383347, -0.013740085065364838, 0.6113680601119995, -0.294295072555542, -0.017817340791225433, 0.03176557645201683, -0.053577907383441925, -0.01978197507560253, 0.12952551245689392, 0.12678112089633942, 0.025178857147693634, 1.2398879528045654, 0.1452607959508896, 0.042028676718473434, -0.039500005543231964, -0.6894644498825073, -0.8485430479049683, 0.8872281312942505, -0.07654324918985367, -0.568291962146759, -0.34943604469299316, -0.52675461769104]} +{"t": 8.6856, "q": [-0.31136059761047363, 0.0010448107495903969, -0.004178271628916264, 0.6158677339553833, -0.32071056962013245, -0.0034292840864509344, -0.3597065806388855, 0.014283065684139729, -0.013753476552665234, 0.6110697388648987, -0.2941872179508209, -0.01765868440270424, 0.03171201050281525, -0.053562819957733154, -0.019791264086961746, 0.12959741055965424, 0.12681707739830017, 0.025166872888803482, 1.2398879528045654, 0.14522483944892883, 0.04200470820069313, -0.039511989802122116, -0.6897521018981934, -0.8485790491104126, 0.8872161507606506, -0.074913389980793, -0.568291962146759, -0.34943604469299316, -0.5274018049240112]} +{"t": 8.7024, "q": [-0.3113691210746765, 0.0010874215513467789, -0.004178271628916264, 0.6159443855285645, -0.320718914270401, -0.003443880006670952, -0.359672486782074, 0.014368286356329918, -0.013753476552665234, 0.6108396649360657, -0.294145792722702, -0.01752866432070732, 0.031671833246946335, -0.05357041582465172, -0.019796356558799744, 0.12954947352409363, 0.12680508196353912, 0.025166872888803482, 1.2399239540100098, 0.14521285891532898, 0.04199272394180298, -0.039500005543231964, -0.6898719072341919, -0.8485910296440125, 0.8871921896934509, -0.07337941229343414, -0.5682560205459595, -0.34941208362579346, -0.5281447768211365]} +{"t": 8.7191, "q": [-0.3114202618598938, 0.0011555985547602177, -0.004178271628916264, 0.6159699559211731, -0.3207148313522339, -0.0034510991536080837, -0.3596213459968567, 0.014359764754772186, -0.013753476552665234, 0.6106522083282471, -0.2941209077835083, -0.017470911145210266, 0.031645048409700394, -0.053562819957733154, -0.019791264086961746, 0.12954947352409363, 0.12679310142993927, 0.025178857147693634, 1.2399479150772095, 0.14522483944892883, 0.04199272394180298, -0.03948802128434181, -0.6898359656333923, -0.8485430479049683, 0.8871921896934509, -0.07176154106855392, -0.568291962146759, -0.34943604469299316, -0.5289717316627502]} +{"t": 8.7358, "q": [-0.3114202618598938, 0.0011726426891982555, -0.004178271628916264, 0.6159699559211731, -0.32071056962013245, -0.0034292840864509344, -0.3595616817474365, 0.014368286356329918, -0.013766868971288204, 0.6105414032936096, -0.29410427808761597, -0.01748546026647091, 0.031511131674051285, -0.053577907383441925, -0.01978197507560253, 0.12956145405769348, 0.12681707739830017, 0.025178857147693634, 1.2399358749389648, 0.1452607959508896, 0.04199272394180298, -0.039500005543231964, -0.6897281408309937, -0.848567008972168, 0.8872281312942505, -0.07025153189897537, -0.5682680010795593, -0.34943604469299316, -0.5299783945083618]} +{"t": 8.7526, "q": [-0.3114202618598938, 0.0011896868236362934, -0.004178271628916264, 0.6159699559211731, -0.3207147419452667, -0.0034365819301456213, -0.35955315828323364, 0.014393853023648262, -0.013766868971288204, 0.6104476451873779, -0.2941126227378845, -0.017456484958529472, 0.03140399605035782, -0.053555216640233994, -0.01978616788983345, 0.1296093910932541, 0.12682905793190002, 0.025142904371023178, 1.2399718761444092, 0.1452607959508896, 0.04195677116513252, -0.039511989802122116, -0.68963223695755, -0.8485910296440125, 0.8872281312942505, -0.0688973143696785, -0.5682799816131592, -0.349448025226593, -0.5314404964447021]} +{"t": 8.7693, "q": [-0.31143730878829956, 0.0012237750925123692, -0.004178271628916264, 0.6159443855285645, -0.3207107484340668, -0.003458318067714572, -0.35950204730033875, 0.01447055209428072, -0.013753476552665234, 0.6103283166885376, -0.2940918207168579, -0.017492743209004402, 0.031337037682533264, -0.05355510115623474, -0.019766688346862793, 0.12952551245689392, 0.12684103846549988, 0.025142904371023178, 1.2399718761444092, 0.14532071352005005, 0.04195677116513252, -0.039511989802122116, -0.6895723342895508, -0.848567008972168, 0.8872281312942505, -0.06751912832260132, -0.5682799816131592, -0.349448025226593, -0.5336455702781677]} +{"t": 8.7861, "q": [-0.3114543557167053, 0.001291952095925808, -0.004205055069178343, 0.6159103512763977, -0.3207230865955353, -0.0034511780831962824, -0.35950204730033875, 0.014444985426962376, -0.01379365287721157, 0.6102175712585449, -0.29406270384788513, -0.017543496564030647, 0.03129686042666435, -0.05355510115623474, -0.019766688346862793, 0.12957344949245453, 0.12681707739830017, 0.025142904371023178, 1.2399718761444092, 0.14529675245285034, 0.04195677116513252, -0.039511989802122116, -0.6895363926887512, -0.8482913970947266, 0.8872161507606506, -0.06614094227552414, -0.5683039426803589, -0.3494719862937927, -0.5358386635780334]} +{"t": 8.8029, "q": [-0.3114714026451111, 0.001326040830463171, -0.004231838975101709, 0.6158847808837891, -0.3207107484340668, -0.003458318067714572, -0.3594338595867157, 0.014487596228718758, -0.013833828270435333, 0.6101323366165161, -0.2937715947628021, -0.01797867938876152, 0.03141738846898079, -0.05354750156402588, -0.019761595875024796, 0.12957344949245453, 0.12681707739830017, 0.025142904371023178, 1.2400437593460083, 0.14529675245285034, 0.04193280264735222, -0.039511989802122116, -0.6895843148231506, -0.8477640748023987, 0.8872520923614502, -0.06478672474622726, -0.568291962146759, -0.3494719862937927, -0.5374805331230164]} +{"t": 8.8197, "q": [-0.3115054965019226, 0.0013601290993392467, -0.004312190227210522, 0.6158251166343689, -0.3207065761089325, -0.0034510199911892414, -0.3594338595867157, 0.014547251164913177, -0.013927571475505829, 0.6100385785102844, -0.29369252920150757, -0.018145347014069557, 0.031484346836805344, -0.05351715534925461, -0.01975095272064209, 0.12959741055965424, 0.12675714492797852, 0.025178857147693634, 1.2400556802749634, 0.1453087329864502, 0.041968755424022675, -0.039511989802122116, -0.689488410949707, -0.8472967147827148, 0.8872520923614502, -0.0634564757347107, -0.5683159232139587, -0.3494839668273926, -0.5390264987945557]} +{"t": 8.8364, "q": [-0.3115140199661255, 0.0013856953009963036, -0.004338974133133888, 0.6157569289207458, -0.3207024037837982, -0.0034437221474945545, -0.3594253361225128, 0.014632471837103367, -0.014007923193275928, 0.6098937392234802, -0.29370084404945374, -0.018130850046873093, 0.031484346836805344, -0.05349435284733772, -0.01973566971719265, 0.1296093910932541, 0.12679310142993927, 0.025142904371023178, 1.2400916814804077, 0.1452607959508896, 0.04198073968291283, -0.039500005543231964, -0.6890809535980225, -0.8470690250396729, 0.8873120546340942, -0.06241384521126747, -0.5683159232139587, -0.34949594736099243, -0.5407042503356934]} +{"t": 8.8532, "q": [-0.3115140199661255, 0.0014368281699717045, -0.004325582180172205, 0.6156546473503113, -0.3207148313522339, -0.0034510991536080837, -0.3593827188014984, 0.014615427702665329, -0.014007923193275928, 0.609765887260437, -0.29365092515945435, -0.018217861652374268, 0.03147095441818237, -0.05343354493379593, -0.01969490945339203, 0.12956145405769348, 0.12678112089633942, 0.025142904371023178, 1.240127682685852, 0.1452847570180893, 0.04198073968291283, -0.03952397406101227, -0.6888652443885803, -0.8469012379646301, 0.8873719573020935, -0.06127534434199333, -0.5683039426803589, -0.3495079576969147, -0.543256938457489]} +{"t": 8.87, "q": [-0.3115054965019226, 0.0014794389717280865, -0.004325582180172205, 0.6156120300292969, -0.32070666551589966, -0.00346553698182106, -0.35936567187309265, 0.014649515971541405, -0.014007923193275928, 0.6096636056900024, -0.2936301529407501, -0.018254103139042854, 0.03144416958093643, -0.05338028073310852, -0.019649505615234375, 0.12953749299049377, 0.12675714492797852, 0.025142904371023178, 1.240127682685852, 0.1452607959508896, 0.04199272394180298, -0.039500005543231964, -0.6887574195861816, -0.8468053340911865, 0.8873240351676941, -0.06019676476716995, -0.5683279037475586, -0.3494839668273926, -0.545138418674469]} +{"t": 8.8867, "q": [-0.3114543557167053, 0.0015305713750422, -0.004312190227210522, 0.6154842376708984, -0.32070666551589966, -0.00346553698182106, -0.35936567187309265, 0.014768825843930244, -0.013967746868729591, 0.609620988368988, -0.2936176657676697, -0.01827586442232132, 0.03125668317079544, -0.05337267741560936, -0.01964440941810608, 0.12954947352409363, 0.12678112089633942, 0.025142904371023178, 1.2402474880218506, 0.14527277648448944, 0.04198073968291283, -0.039511989802122116, -0.6887813806533813, -0.8466735482215881, 0.8872161507606506, -0.05902231112122536, -0.5683878064155579, -0.3495079576969147, -0.5460372567176819]} +{"t": 8.9035, "q": [-0.31143730878829956, 0.0015305713750422, -0.004312190227210522, 0.615441620349884, -0.32070666551589966, -0.00346553698182106, -0.359297513961792, 0.014845524914562702, -0.014007923193275928, 0.6095783710479736, -0.29360517859458923, -0.01831206865608692, 0.03122990019619465, -0.053372737020254135, -0.019654149189591408, 0.12954947352409363, 0.12678112089633942, 0.02515488862991333, 1.2402714490890503, 0.1453087329864502, 0.04199272394180298, -0.039511989802122116, -0.6888293027877808, -0.8465057611465454, 0.8871442675590515, -0.05753626674413681, -0.5683638453483582, -0.34956786036491394, -0.5469000935554504]} +{"t": 8.9202, "q": [-0.3114287853240967, 0.001539093442261219, -0.004325582180172205, 0.6154245734214783, -0.3207067847251892, -0.0034800542052835226, -0.35926342010498047, 0.014854047447443008, -0.014007923193275928, 0.6095783710479736, -0.29357606172561646, -0.018348362296819687, 0.03127007558941841, -0.0533650778234005, -0.019639315083622932, 0.12952551245689392, 0.12678112089633942, 0.025142904371023178, 1.2403672933578491, 0.1452847570180893, 0.04199272394180298, -0.039511989802122116, -0.6888652443885803, -0.8463619351387024, 0.8871322870254517, -0.05625395476818085, -0.5684118270874023, -0.34956786036491394, -0.5478948354721069]} +{"t": 8.9369, "q": [-0.31144583225250244, 0.0015305713750422, -0.004325582180172205, 0.6154160499572754, -0.32070261240005493, -0.003472756128758192, -0.3592463731765747, 0.01483700331300497, -0.014021314680576324, 0.609552800655365, -0.2935885190963745, -0.018341077491641045, 0.03131025284528732, -0.0533498153090477, -0.01961938478052616, 0.12958543002605438, 0.12678112089633942, 0.025142904371023178, 1.2403912544250488, 0.1452847570180893, 0.04200470820069313, -0.03952397406101227, -0.6886734962463379, -0.8462061285972595, 0.8871322870254517, -0.05518735572695732, -0.5684477686882019, -0.3495558798313141, -0.5490453243255615]} +{"t": 8.9537, "q": [-0.31144583225250244, 0.0015305713750422, -0.004325582180172205, 0.6154160499572754, -0.32070666551589966, -0.00346553698182106, -0.3592122793197632, 0.014871091581881046, -0.014021314680576324, 0.6095187664031982, -0.29354697465896606, -0.018370194360613823, 0.031337037682533264, -0.05331181362271309, -0.01959391124546528, 0.12958543002605438, 0.12676914036273956, 0.025118935853242874, 1.2404032945632935, 0.14529675245285034, 0.04201669245958328, -0.039511989802122116, -0.6883019804954529, -0.8460023999214172, 0.8871682286262512, -0.05422861874103546, -0.5684118270874023, -0.34956786036491394, -0.5503995418548584]} +{"t": 8.9704, "q": [-0.3114202618598938, 0.0014964831061661243, -0.004298798739910126, 0.6154330968856812, -0.32070666551589966, -0.00346553698182106, -0.3591611683368683, 0.01492222398519516, -0.014034707099199295, 0.6095102429389954, -0.29355114698410034, -0.018362928181886673, 0.03131025284528732, -0.053251005709171295, -0.019553150981664658, 0.12953749299049377, 0.12678112089633942, 0.02515488862991333, 1.2404272556304932, 0.14524881541728973, 0.042028676718473434, -0.039500005543231964, -0.6877626776695251, -0.8457507491111755, 0.8871682286262512, -0.05344964563846588, -0.5684238076210022, -0.34956786036491394, -0.5518855452537537]} +{"t": 8.9872, "q": [-0.3114287853240967, 0.0014794389717280865, -0.004298798739910126, 0.6154160499572754, -0.32070666551589966, -0.00346553698182106, -0.35912707448005676, 0.01492222398519516, -0.014048098586499691, 0.609467625617981, -0.29354703426361084, -0.01832679472863674, 0.03128346800804138, -0.05325094610452652, -0.01954340934753418, 0.12954947352409363, 0.12676914036273956, 0.025130920112133026, 1.2405470609664917, 0.14532071352005005, 0.04201669245958328, -0.039500005543231964, -0.6870197057723999, -0.845487117767334, 0.8871682286262512, -0.0529463067650795, -0.568375825881958, -0.3495558798313141, -0.5538150072097778]} +{"t": 9.0046, "q": [-0.31140321493148804, 0.0014538723044097424, -0.004325582180172205, 0.6153990030288696, -0.32070666551589966, -0.00346553698182106, -0.35905036330223083, 0.01492222398519516, -0.014048098586499691, 0.6094420552253723, -0.293555349111557, -0.018312299624085426, 0.03128346800804138, -0.05325094610452652, -0.01954340934753418, 0.12958543002605438, 0.12675714492797852, 0.025130920112133026, 1.2405470609664917, 0.14527277648448944, 0.042028676718473434, -0.03952397406101227, -0.6863605380058289, -0.8453672528266907, 0.8871322870254517, -0.05275455862283707, -0.568435788154602, -0.34954389929771423, -0.555660605430603]} +{"t": 9.0214, "q": [-0.31136059761047363, 0.0014453502371907234, -0.004298798739910126, 0.6154075264930725, -0.32070666551589966, -0.00346553698182106, -0.35900774598121643, 0.014896657317876816, -0.014021314680576324, 0.6093823909759521, -0.29357194900512695, -0.018297767266631126, 0.03129686042666435, -0.05325860157608986, -0.019558243453502655, 0.12957344949245453, 0.1267331838607788, 0.025106951594352722, 1.2405470609664917, 0.1452368199825287, 0.04200470820069313, -0.039511989802122116, -0.6854977011680603, -0.8452953696250916, 0.8871682286262512, -0.05271860584616661, -0.5684238076210022, -0.3495558798313141, -0.5578057765960693]} +{"t": 9.0382, "q": [-0.31134355068206787, 0.0014197840355336666, -0.004298798739910126, 0.6154160499572754, -0.32071900367736816, -0.0034583969973027706, -0.35895663499832153, 0.014913702383637428, -0.014007923193275928, 0.6093056797981262, -0.2935636639595032, -0.01829780451953411, 0.03124329261481762, -0.053266093134880066, -0.019543861970305443, 0.12954947352409363, 0.12672120332717896, 0.025118935853242874, 1.240523099899292, 0.14529675245285034, 0.04200470820069313, -0.039511989802122116, -0.684922456741333, -0.8453073501586914, 0.8871442675590515, -0.052742574363946915, -0.5684118270874023, -0.34954389929771423, -0.5593996644020081]} +{"t": 9.0549, "q": [-0.3113350570201874, 0.0014368281699717045, -0.004298798739910126, 0.6153904795646667, -0.32071900367736816, -0.0034583969973027706, -0.35889697074890137, 0.014888135716319084, -0.014007923193275928, 0.6091267466545105, -0.29359695315361023, -0.018196385353803635, 0.03127007558941841, -0.053273752331733704, -0.019558696076273918, 0.1296093910932541, 0.12672120332717896, 0.025178857147693634, 1.240583062171936, 0.1452368199825287, 0.04200470820069313, -0.039511989802122116, -0.6842752695083618, -0.8452593684196472, 0.8871921896934509, -0.052742574363946915, -0.568435788154602, -0.34956786036491394, -0.5612332224845886]} +{"t": 9.0716, "q": [-0.3113350570201874, 0.0014283061027526855, -0.004325582180172205, 0.6153904795646667, -0.3207230865955353, -0.0034511780831962824, -0.35885435342788696, 0.014888135716319084, -0.014048098586499691, 0.6089818477630615, -0.293597012758255, -0.018153004348278046, 0.03131025284528732, -0.05327380448579788, -0.019568433985114098, 0.1296093910932541, 0.1267331838607788, 0.025142904371023178, 1.2405470609664917, 0.1453326940536499, 0.04200470820069313, -0.03952397406101227, -0.6833764910697937, -0.8452234268188477, 0.8872281312942505, -0.052742574363946915, -0.5684238076210022, -0.3495798408985138, -0.5637139678001404]} +{"t": 9.0884, "q": [-0.31136059761047363, 0.0014368281699717045, -0.004379149992018938, 0.615373432636261, -0.3207271695137024, -0.0034439589362591505, -0.3588287830352783, 0.014871091581881046, -0.014074882492423058, 0.6088625192642212, -0.2935970425605774, -0.018109621480107307, 0.03144416958093643, -0.05328895524144173, -0.01956888660788536, 0.12956145405769348, 0.12675714492797852, 0.025130920112133026, 1.2405591011047363, 0.14529675245285034, 0.04199272394180298, -0.03952397406101227, -0.6824057698249817, -0.845115602016449, 0.8872281312942505, -0.052742574363946915, -0.5684238076210022, -0.34956786036491394, -0.56597900390625]} +{"t": 9.1051, "q": [-0.3113691210746765, 0.0014453502371907234, -0.004432717338204384, 0.6153904795646667, -0.3207271695137024, -0.0034439589362591505, -0.3588373064994812, 0.014879613183438778, -0.014074882492423058, 0.608717679977417, -0.2937426269054413, -0.017855852842330933, 0.03143078088760376, -0.053281351923942566, -0.019563790410757065, 0.12953749299049377, 0.12672120332717896, 0.025142904371023178, 1.2405591011047363, 0.14527277648448944, 0.04199272394180298, -0.03952397406101227, -0.6816148161888123, -0.8450316786766052, 0.8872281312942505, -0.05275455862283707, -0.5684118270874023, -0.3495558798313141, -0.567405104637146]} +{"t": 9.1219, "q": [-0.31140321493148804, 0.0014368281699717045, -0.00445950124412775, 0.615373432636261, -0.3207271695137024, -0.0034439589362591505, -0.3588287830352783, 0.014828480780124664, -0.014088273979723454, 0.608572781085968, -0.2937842011451721, -0.017768878489732742, 0.03137721121311188, -0.05328895524144173, -0.01956888660788536, 0.12958543002605438, 0.12672120332717896, 0.025142904371023178, 1.2405591011047363, 0.14524881541728973, 0.04198073968291283, -0.039511989802122116, -0.6809436678886414, -0.844971776008606, 0.88726407289505, -0.05275455862283707, -0.5683638453483582, -0.34956786036491394, -0.5685915946960449]} +{"t": 9.1389, "q": [-0.31143730878829956, 0.0014709164388477802, -0.004472893197089434, 0.6153478622436523, -0.3207271695137024, -0.0034439589362591505, -0.3588373064994812, 0.014794392511248589, -0.014048098586499691, 0.6083597540855408, -0.29379257559776306, -0.017725443467497826, 0.03139060363173485, -0.05327380448579788, -0.019568433985114098, 0.12959741055965424, 0.12672120332717896, 0.025130920112133026, 1.2405591011047363, 0.14527277648448944, 0.041968755424022675, -0.039511989802122116, -0.6801766753196716, -0.8449837565422058, 0.8873000741004944, -0.052742574363946915, -0.5684238076210022, -0.34956786036491394, -0.5701495409011841]} +{"t": 9.1556, "q": [-0.3114543557167053, 0.0015220493078231812, -0.0044996771030128, 0.6152881979942322, -0.3207271695137024, -0.0034439589362591505, -0.3588458299636841, 0.014768825843930244, -0.014048098586499691, 0.6081040501594543, -0.2937718331813812, -0.017674902454018593, 0.031323645263910294, -0.05327380448579788, -0.019568433985114098, 0.12957344949245453, 0.1267331838607788, 0.025142904371023178, 1.2405710220336914, 0.1452368199825287, 0.041968755424022675, -0.03953595831990242, -0.6793617606163025, -0.8449957370758057, 0.8873240351676941, -0.052742574363946915, -0.5684238076210022, -0.34956786036491394, -0.5720310211181641]} +{"t": 9.1723, "q": [-0.31152254343032837, 0.0015646601095795631, -0.0045130690559744835, 0.6152370572090149, -0.3207312524318695, -0.0034367400221526623, -0.3588373064994812, 0.014794392511248589, -0.014074882492423058, 0.6079506874084473, -0.2937510907649994, -0.017653299495577812, 0.03129686042666435, -0.053281351923942566, -0.019563790410757065, 0.12957344949245453, 0.12675714492797852, 0.025142904371023178, 1.2405710220336914, 0.1452607959508896, 0.041968755424022675, -0.03953595831990242, -0.6785468459129333, -0.8449837565422058, 0.8873240351676941, -0.052742574363946915, -0.5684597492218018, -0.34956786036491394, -0.5738646388053894]} +{"t": 9.1891, "q": [-0.31153103709220886, 0.0016243145801126957, -0.0045264605432748795, 0.6151859164237976, -0.32073545455932617, -0.003444056259468198, -0.3588287830352783, 0.014794392511248589, -0.014048098586499691, 0.6078143119812012, -0.2937178313732147, -0.017682380974292755, 0.03122990019619465, -0.05327380448579788, -0.019568433985114098, 0.12951351702213287, 0.12676914036273956, 0.025130920112133026, 1.2405949831008911, 0.14527277648448944, 0.04195677116513252, -0.03952397406101227, -0.677971601486206, -0.8449597954750061, 0.8873479962348938, -0.052742574363946915, -0.5684837102890015, -0.3495798408985138, -0.5754824876785278]} +{"t": 9.2058, "q": [-0.31153956055641174, 0.0016243145801126957, -0.0045264605432748795, 0.6151007413864136, -0.32073941826820374, -0.003422284033149481, -0.3588458299636841, 0.014794392511248589, -0.014048098586499691, 0.6077461242675781, -0.2937261760234833, -0.01765342429280281, 0.03122990019619465, -0.05327380448579788, -0.019568433985114098, 0.12954947352409363, 0.12678112089633942, 0.025142904371023178, 1.2405710220336914, 0.14524881541728973, 0.041968755424022675, -0.03953595831990242, -0.6776599884033203, -0.8449957370758057, 0.8874078989028931, -0.052742574363946915, -0.5684477686882019, -0.3495558798313141, -0.5771123766899109]} +{"t": 9.2226, "q": [-0.3115566074848175, 0.0016328366473317146, -0.0045130690559744835, 0.6150496006011963, -0.3207271695137024, -0.0034439589362591505, -0.3588373064994812, 0.014794392511248589, -0.014048098586499691, 0.6077035069465637, -0.29356810450553894, -0.017928918823599815, 0.03125668317079544, -0.05327380448579788, -0.019568433985114098, 0.12957344949245453, 0.12678112089633942, 0.025142904371023178, 1.2405949831008911, 0.14527277648448944, 0.04198073968291283, -0.03953595831990242, -0.6773963570594788, -0.8449957370758057, 0.8874918222427368, -0.052742574363946915, -0.5684597492218018, -0.34959182143211365, -0.5790178179740906]} +{"t": 9.2396, "q": [-0.31157365441322327, 0.0016328366473317146, -0.004553244449198246, 0.6150325536727905, -0.3207436203956604, -0.0034296002704650164, -0.35885435342788696, 0.014819959178566933, -0.014088273979723454, 0.6076694130897522, -0.2934350073337555, -0.018146466463804245, 0.03125668317079544, -0.05328129604458809, -0.019554052501916885, 0.12956145405769348, 0.12679310142993927, 0.025142904371023178, 1.2405949831008911, 0.1453087329864502, 0.04199272394180298, -0.03952397406101227, -0.6772525310516357, -0.8449597954750061, 0.8875876665115356, -0.05276654288172722, -0.5685076713562012, -0.3496277928352356, -0.5809832811355591]} +{"t": 9.2563, "q": [-0.31157365441322327, 0.0016413591802120209, -0.004539852496236563, 0.614998459815979, -0.3207271695137024, -0.0034439589362591505, -0.35885435342788696, 0.014845524914562702, -0.01411505788564682, 0.6076523661613464, -0.2934059202671051, -0.01815382018685341, 0.03124329261481762, -0.05326620489358902, -0.01956333965063095, 0.12951351702213287, 0.12679310142993927, 0.025142904371023178, 1.2406549453735352, 0.1452607959508896, 0.04200470820069313, -0.03952397406101227, -0.6772405505180359, -0.844971776008606, 0.8878033757209778, -0.052742574363946915, -0.5684597492218018, -0.3496517539024353, -0.5829966068267822]} +{"t": 9.2731, "q": [-0.31157365441322327, 0.0016584033146500587, -0.004539852496236563, 0.6149643659591675, -0.3207230865955353, -0.0034511780831962824, -0.3588799238204956, 0.014888135716319084, -0.014141841791570187, 0.6076098084449768, -0.29341423511505127, -0.018139325082302094, 0.03125668317079544, -0.05328889563679695, -0.019559144973754883, 0.12956145405769348, 0.12679310142993927, 0.025118935853242874, 1.2406668663024902, 0.14527277648448944, 0.04200470820069313, -0.039511989802122116, -0.6772165894508362, -0.844971776008606, 0.8882827758789062, -0.052742574363946915, -0.5684477686882019, -0.34968769550323486, -0.5853814482688904]} +{"t": 9.2899, "q": [-0.3115651309490204, 0.0016498812474310398, -0.0045264605432748795, 0.6149387955665588, -0.3207230865955353, -0.0034511780831962824, -0.35886287689208984, 0.014879613183438778, -0.014155233278870583, 0.6076268553733826, -0.29339346289634705, -0.01817556470632553, 0.03124329261481762, -0.05326614901423454, -0.019553599879145622, 0.12956145405769348, 0.12679310142993927, 0.025118935853242874, 1.2406549453735352, 0.14532071352005005, 0.04201669245958328, -0.03953595831990242, -0.6772165894508362, -0.8449957370758057, 0.889133632183075, -0.052742574363946915, -0.568435788154602, -0.34968769550323486, -0.5876704454421997]} +{"t": 9.3067, "q": [-0.31152254343032837, 0.0016498812474310398, -0.0045130690559744835, 0.6149132251739502, -0.3207271695137024, -0.0034439589362591505, -0.35886287689208984, 0.014939268119633198, -0.014155233278870583, 0.6076268553733826, -0.29334354400634766, -0.018262576311826706, 0.03125668317079544, -0.05326614901423454, -0.019553599879145622, 0.12951351702213287, 0.12681707739830017, 0.025130920112133026, 1.2406668663024902, 0.14529675245285034, 0.04201669245958328, -0.039511989802122116, -0.677228569984436, -0.8449837565422058, 0.890020489692688, -0.05273059010505676, -0.5684477686882019, -0.349675714969635, -0.589072585105896]} +{"t": 9.3234, "q": [-0.31157365441322327, 0.0016584033146500587, -0.0044996771030128, 0.6149217486381531, -0.3207230865955353, -0.0034511780831962824, -0.35885435342788696, 0.014939268119633198, -0.014141841791570187, 0.6076353788375854, -0.2933352291584015, -0.018248150125145912, 0.03122990019619465, -0.05327369272708893, -0.01954895444214344, 0.12952551245689392, 0.12680508196353912, 0.025130920112133026, 1.2406789064407349, 0.1452368199825287, 0.04200470820069313, -0.03953595831990242, -0.6772165894508362, -0.8449957370758057, 0.8911229968070984, -0.052682653069496155, -0.568519651889801, -0.3496517539024353, -0.5904387831687927]} +{"t": 9.3402, "q": [-0.3115566074848175, 0.0016328366473317146, -0.0044996771030128, 0.6148876547813416, -0.3207271695137024, -0.0034439589362591505, -0.3588373064994812, 0.014947790652513504, -0.014141841791570187, 0.6076523661613464, -0.2933310866355896, -0.01824093796312809, 0.031162941828370094, -0.053258489817380905, -0.019538765773177147, 0.1296093910932541, 0.12679310142993927, 0.025118935853242874, 1.2406789064407349, 0.1452847570180893, 0.04201669245958328, -0.03952397406101227, -0.6771566867828369, -0.8449837565422058, 0.892045795917511, -0.05252685770392418, -0.5684238076210022, -0.34963977336883545, -0.5919727683067322]} +{"t": 9.3569, "q": [-0.3115566074848175, 0.0016413591802120209, -0.004486285150051117, 0.6149132251739502, -0.3207271695137024, -0.0034439589362591505, -0.3588458299636841, 0.01498187892138958, -0.01412845030426979, 0.6076694130897522, -0.2933269441127777, -0.018248185515403748, 0.031122766435146332, -0.05324328690767288, -0.019528575241565704, 0.1296093910932541, 0.12680508196353912, 0.025178857147693634, 1.2406789064407349, 0.14527277648448944, 0.04201669245958328, -0.03952397406101227, -0.6770128607749939, -0.844971776008606, 0.892932653427124, -0.05216733366250992, -0.5684477686882019, -0.34961581230163574, -0.5932910442352295]} +{"t": 9.3737, "q": [-0.3115480840206146, 0.0016072704456746578, -0.00445950124412775, 0.6149132251739502, -0.32071495056152344, -0.0034656161442399025, -0.3588458299636841, 0.015015967190265656, -0.01412845030426979, 0.6077120304107666, -0.2933228015899658, -0.018240973353385925, 0.03108258917927742, -0.053220488131046295, -0.019513292238116264, 0.1296093910932541, 0.12678112089633942, 0.025142904371023178, 1.2406789064407349, 0.14529675245285034, 0.04201669245958328, -0.03953595831990242, -0.6767851710319519, -0.8449597954750061, 0.893903374671936, -0.05183177441358566, -0.5684118270874023, -0.3496277928352356, -0.5944894552230835]} +{"t": 9.3904, "q": [-0.31153956055641174, 0.0016157925128936768, -0.004472893197089434, 0.614930272102356, -0.3207230865955353, -0.0034511780831962824, -0.35881173610687256, 0.015050055459141731, -0.014155233278870583, 0.6077376008033752, -0.29331862926483154, -0.018248222768306732, 0.031122766435146332, -0.053220488131046295, -0.019513292238116264, 0.12959741055965424, 0.12678112089633942, 0.025142904371023178, 1.2406789064407349, 0.14524881541728973, 0.04200470820069313, -0.039511989802122116, -0.6763057708740234, -0.8449597954750061, 0.8943707346916199, -0.051663994789123535, -0.5684597492218018, -0.34961581230163574, -0.5953763127326965]} +{"t": 9.4071, "q": [-0.3115054965019226, 0.0016072704456746578, -0.00445950124412775, 0.614930272102356, -0.32070648670196533, -0.0034365030005574226, -0.3587776720523834, 0.015041533857584, -0.01411505788564682, 0.6077461242675781, -0.29331862926483154, -0.018262682482600212, 0.03109598159790039, -0.05322803184390068, -0.019508646801114082, 0.12959741055965424, 0.12678112089633942, 0.025142904371023178, 1.2406789064407349, 0.14527277648448944, 0.04201669245958328, -0.03953595831990242, -0.6756346821784973, -0.844971776008606, 0.8945744633674622, -0.05159208923578262, -0.5684477686882019, -0.3496277928352356, -0.5963230729103088]} +{"t": 9.4238, "q": [-0.31147992610931396, 0.0016072704456746578, -0.004472893197089434, 0.6149217486381531, -0.32071900367736816, -0.0034583969973027706, -0.3587776720523834, 0.014930746518075466, -0.01412845030426979, 0.6077461242675781, -0.293331116437912, -0.018211999908089638, 0.03109598159790039, -0.053220488131046295, -0.019513292238116264, 0.12958543002605438, 0.12679310142993927, 0.025142904371023178, 1.2406668663024902, 0.14522483944892883, 0.04200470820069313, -0.039511989802122116, -0.6747238636016846, -0.8449118733406067, 0.8946104049682617, -0.051604073494672775, -0.5684837102890015, -0.3496277928352356, -0.5974376201629639]} +{"t": 9.4406, "q": [-0.3114714026451111, 0.0016072704456746578, -0.004472893197089434, 0.614930272102356, -0.32071900367736816, -0.0034583969973027706, -0.3587776720523834, 0.014973356388509274, -0.01412845030426979, 0.6077631711959839, -0.293331116437912, -0.018211999908089638, 0.031122766435146332, -0.053220488131046295, -0.019513292238116264, 0.12959741055965424, 0.12679310142993927, 0.025118935853242874, 1.24069082736969, 0.1452368199825287, 0.04201669245958328, -0.03953595831990242, -0.6737890839576721, -0.8449118733406067, 0.894646406173706, -0.05159208923578262, -0.5684238076210022, -0.34963977336883545, -0.5991633534431458]} +{"t": 9.4573, "q": [-0.3114714026451111, 0.0016157925128936768, -0.0044996771030128, 0.6149643659591675, -0.32071495056152344, -0.0034656161442399025, -0.3587521016597748, 0.014947790652513504, -0.01412845030426979, 0.6077716946601868, -0.29333943128585815, -0.018226424232125282, 0.031136156991124153, -0.053220488131046295, -0.019513292238116264, 0.12957344949245453, 0.12679310142993927, 0.025118935853242874, 1.24069082736969, 0.14527277648448944, 0.04201669245958328, -0.039511989802122116, -0.6727105379104614, -0.8449118733406067, 0.894646406173706, -0.05158010497689247, -0.5684238076210022, -0.34961581230163574, -0.6016080975532532]} +{"t": 9.4742, "q": [-0.3114543557167053, 0.0016072704456746578, -0.0044996771030128, 0.6149387955665588, -0.3207148313522339, -0.0034510991536080837, -0.35876062512397766, 0.014973356388509274, -0.014141841791570187, 0.6077972650527954, -0.2933727204799652, -0.01815396174788475, 0.031136156991124153, -0.053220488131046295, -0.019513292238116264, 0.12957344949245453, 0.12676914036273956, 0.025130920112133026, 1.2407028675079346, 0.1452368199825287, 0.04200470820069313, -0.03952397406101227, -0.6717278361320496, -0.8449597954750061, 0.8946703672409058, -0.05156812071800232, -0.5684118270874023, -0.3496277928352356, -0.6038252115249634]} +{"t": 9.4909, "q": [-0.31148844957351685, 0.0016328366473317146, -0.0044996771030128, 0.6149217486381531, -0.3207230865955353, -0.0034511780831962824, -0.35876914858818054, 0.014930746518075466, -0.01412845030426979, 0.6077887415885925, -0.29338517785072327, -0.018146678805351257, 0.031162941828370094, -0.05322808772325516, -0.019518384709954262, 0.129633367061615, 0.12676914036273956, 0.025142904371023178, 1.24069082736969, 0.14524881541728973, 0.04200470820069313, -0.03952397406101227, -0.6707690954208374, -0.844971776008606, 0.8946823477745056, -0.05153216794133186, -0.5684477686882019, -0.34963977336883545, -0.6060063242912292]} +{"t": 9.5076, "q": [-0.3115140199661255, 0.0016498812474310398, -0.0045264605432748795, 0.6149387955665588, -0.32071495056152344, -0.0034656161442399025, -0.35876914858818054, 0.014828480780124664, -0.014141841791570187, 0.6077802181243896, -0.29341843724250793, -0.018088677898049355, 0.031176332384347916, -0.05323569104075432, -0.019523480907082558, 0.12953749299049377, 0.12678112089633942, 0.025118935853242874, 1.24069082736969, 0.14524881541728973, 0.04199272394180298, -0.039511989802122116, -0.6697144508361816, -0.8450556397438049, 0.8947063088417053, -0.05153216794133186, -0.5684477686882019, -0.3496517539024353, -0.6088346242904663]} +{"t": 9.5246, "q": [-0.3114969730377197, 0.0016839695163071156, -0.004553244449198246, 0.614930272102356, -0.3207314610481262, -0.003465792164206505, -0.3587776720523834, 0.01486256904900074, -0.014155233278870583, 0.607754647731781, -0.29338932037353516, -0.0181394312530756, 0.031203117221593857, -0.053220488131046295, -0.019513292238116264, 0.12959741055965424, 0.12676914036273956, 0.025142904371023178, 1.24069082736969, 0.1452368199825287, 0.04198073968291283, -0.039511989802122116, -0.6687437295913696, -0.8450556397438049, 0.894730269908905, -0.05152018368244171, -0.5685076713562012, -0.3496277928352356, -0.611027717590332]} +{"t": 9.5413, "q": [-0.3115054965019226, 0.0016839695163071156, -0.004553244449198246, 0.6148961782455444, -0.3207271695137024, -0.0034439589362591505, -0.3588032126426697, 0.01483700331300497, -0.014155233278870583, 0.6077290773391724, -0.29353076219558716, -0.017892928794026375, 0.031189724802970886, -0.053220488131046295, -0.019513292238116264, 0.12962138652801514, 0.12676914036273956, 0.025142904371023178, 1.2406789064407349, 0.14529675245285034, 0.041968755424022675, -0.03952397406101227, -0.6680126786231995, -0.8450316786766052, 0.8947542309761047, -0.05149621516466141, -0.5685316324234009, -0.3496517539024353, -0.6127175092697144]} +{"t": 9.558, "q": [-0.31152254343032837, 0.0017010136507451534, -0.004566636402159929, 0.61485356092453, -0.3207314610481262, -0.003465792164206505, -0.3588032126426697, 0.014845524914562702, -0.014155233278870583, 0.6077205538749695, -0.2935931384563446, -0.017798632383346558, 0.031176332384347916, -0.05322808772325516, -0.019518384709954262, 0.12959741055965424, 0.12675714492797852, 0.025130920112133026, 1.24069082736969, 0.1452847570180893, 0.04198073968291283, -0.039511989802122116, -0.6672576665878296, -0.8450077176094055, 0.8947781920433044, -0.0514482781291008, -0.5684717297554016, -0.3496517539024353, -0.6140956878662109]} +{"t": 9.5747, "q": [-0.31152254343032837, 0.0017095357179641724, -0.0045800283551216125, 0.6148450374603271, -0.3207230865955353, -0.0034511780831962824, -0.3588458299636841, 0.014845524914562702, -0.014141841791570187, 0.6077120304107666, -0.29353073239326477, -0.017921848222613335, 0.03125668317079544, -0.053220488131046295, -0.019513292238116264, 0.1296093910932541, 0.1267331838607788, 0.025106951594352722, 1.2407028675079346, 0.1453087329864502, 0.04199272394180298, -0.039511989802122116, -0.6665146946907043, -0.8449957370758057, 0.8947781920433044, -0.05143629387021065, -0.5685076713562012, -0.34963977336883545, -0.6151502728462219]} +{"t": 9.5915, "q": [-0.31157365441322327, 0.0017180577851831913, -0.004633595701307058, 0.6148279905319214, -0.3207314610481262, -0.003465792164206505, -0.3588458299636841, 0.01483700331300497, -0.014182017184793949, 0.6076523661613464, -0.2935182452201843, -0.017943592742085457, 0.03127007558941841, -0.05322808772325516, -0.019518384709954262, 0.129633367061615, 0.12676914036273956, 0.025118935853242874, 1.24069082736969, 0.1453087329864502, 0.04198073968291283, -0.039511989802122116, -0.665567934513092, -0.8450436592102051, 0.8947662115097046, -0.051424309611320496, -0.5684956908226013, -0.3496277928352356, -0.6160850524902344]} +{"t": 9.6082, "q": [-0.31157365441322327, 0.0017180577851831913, -0.004646987654268742, 0.6147939562797546, -0.32073137164115906, -0.003451275173574686, -0.3588458299636841, 0.014845524914562702, -0.014222193509340286, 0.6076098084449768, -0.29343917965888977, -0.018110278993844986, 0.03125668317079544, -0.053212884813547134, -0.01950819604098797, 0.129633367061615, 0.12675714492797852, 0.025142904371023178, 1.2406789064407349, 0.14529675245285034, 0.04199272394180298, -0.039511989802122116, -0.6645852327346802, -0.8450316786766052, 0.8947542309761047, -0.051412325352430344, -0.5684956908226013, -0.34963977336883545, -0.6169598698616028]} +{"t": 9.6249, "q": [-0.3115992248058319, 0.0017180577851831913, -0.004673771560192108, 0.6147854328155518, -0.32073137164115906, -0.003451275173574686, -0.3588373064994812, 0.01483700331300497, -0.014275760389864445, 0.6076183319091797, -0.2934100925922394, -0.01813211292028427, 0.03137721121311188, -0.05322808772325516, -0.019518384709954262, 0.12958543002605438, 0.12676914036273956, 0.025142904371023178, 1.24069082736969, 0.14532071352005005, 0.041968755424022675, -0.039500005543231964, -0.6636624336242676, -0.8450436592102051, 0.8947542309761047, -0.051412325352430344, -0.5684837102890015, -0.34963977336883545, -0.6178946495056152]} +{"t": 9.6416, "q": [-0.31158217787742615, 0.0017436244525015354, -0.004673771560192108, 0.6147342920303345, -0.3207312524318695, -0.0034367400221526623, -0.35885435342788696, 0.014879613183438778, -0.014262368902564049, 0.607592761516571, -0.2933851182460785, -0.01820453815162182, 0.03140399605035782, -0.05322808772325516, -0.019518384709954262, 0.1296093910932541, 0.12676914036273956, 0.025178857147693634, 1.2407149076461792, 0.14522483944892883, 0.04199272394180298, -0.03953595831990242, -0.662595808506012, -0.8450196981430054, 0.8947542309761047, -0.05140034109354019, -0.5684477686882019, -0.3496277928352356, -0.619093120098114]} +{"t": 9.6586, "q": [-0.3115992248058319, 0.0017180577851831913, -0.004687163513153791, 0.6146831512451172, -0.3207314610481262, -0.003465792164206505, -0.35886287689208984, 0.014888135716319084, -0.014289152808487415, 0.6076012849807739, -0.2933560311794281, -0.01824081316590309, 0.0314575619995594, -0.05322803184390068, -0.019508646801114082, 0.129633367061615, 0.12678112089633942, 0.025142904371023178, 1.24069082736969, 0.1452368199825287, 0.04199272394180298, -0.039511989802122116, -0.6615532040596008, -0.8449957370758057, 0.8947542309761047, -0.05131645128130913, -0.5685436129570007, -0.34963977336883545, -0.6211663484573364]} +{"t": 9.6756, "q": [-0.3116077482700348, 0.0017010136507451534, -0.004713947419077158, 0.6146746277809143, -0.32071900367736816, -0.0034583969973027706, -0.35885435342788696, 0.014930746518075466, -0.014315936714410782, 0.6075757145881653, -0.2933518588542938, -0.0182480625808239, 0.031497739255428314, -0.053235407918691635, -0.019474783912301064, 0.1296093910932541, 0.12676914036273956, 0.025178857147693634, 1.2407028675079346, 0.14527277648448944, 0.04199272394180298, -0.039511989802122116, -0.6604386568069458, -0.8449957370758057, 0.8947662115097046, -0.05119660869240761, -0.5684477686882019, -0.3496277928352356, -0.6235632300376892]} +{"t": 9.6923, "q": [-0.31159070134162903, 0.0016754474490880966, -0.004713947419077158, 0.6146405339241028, -0.320723295211792, -0.003480230225250125, -0.3588714003562927, 0.014973356388509274, -0.014329328201711178, 0.6075757145881653, -0.29334771633148193, -0.018255310133099556, 0.03147095441818237, -0.05323535203933716, -0.019465046003460884, 0.1296093910932541, 0.12679310142993927, 0.025118935853242874, 1.240738868713379, 0.1452607959508896, 0.04198073968291283, -0.039511989802122116, -0.6595398783683777, -0.8449837565422058, 0.8947781920433044, -0.05105280131101608, -0.5684956908226013, -0.34963977336883545, -0.6254447102546692]} +{"t": 9.709, "q": [-0.3115651309490204, 0.0016669253818690777, -0.004673771560192108, 0.6146575808525085, -0.3207230865955353, -0.0034511780831962824, -0.35885435342788696, 0.015058577992022038, -0.014329328201711178, 0.607592761516571, -0.2933144271373749, -0.01831331104040146, 0.03144416958093643, -0.05324278399348259, -0.019440922886133194, 0.129633367061615, 0.12676914036273956, 0.025130920112133026, 1.2407028675079346, 0.1452607959508896, 0.04200470820069313, -0.03953595831990242, -0.6587488651275635, -0.8449957370758057, 0.894814133644104, -0.05078914761543274, -0.5684837102890015, -0.3496277928352356, -0.6274940371513367]} +{"t": 9.7258, "q": [-0.3115566074848175, 0.0016413591802120209, -0.004673771560192108, 0.6146575808525085, -0.3207230865955353, -0.0034511780831962824, -0.35885435342788696, 0.015033011324703693, -0.014329328201711178, 0.607592761516571, -0.29331856966018677, -0.01832052320241928, 0.03144416958093643, -0.053257763385772705, -0.01941215619444847, 0.1296093910932541, 0.12678112089633942, 0.025130920112133026, 1.240738868713379, 0.1452847570180893, 0.04199272394180298, -0.03952397406101227, -0.6581256985664368, -0.8450196981430054, 0.8948621153831482, -0.05044160410761833, -0.5685316324234009, -0.3496277928352356, -0.630154550075531]} +{"t": 9.7425, "q": [-0.3115480840206146, 0.0016157925128936768, -0.004673771560192108, 0.6146575808525085, -0.32073137164115906, -0.003451275173574686, -0.3588458299636841, 0.015067100524902344, -0.014329328201711178, 0.607592761516571, -0.2933061420917511, -0.018298886716365814, 0.03143078088760376, -0.053234849125146866, -0.019377393648028374, 0.12959741055965424, 0.12679310142993927, 0.025142904371023178, 1.2407149076461792, 0.14532071352005005, 0.04200470820069313, -0.03952397406101227, -0.6575025320053101, -0.8450196981430054, 0.8948860764503479, -0.05010604485869408, -0.5685795545578003, -0.3496277928352356, -0.6322997212409973]} +{"t": 9.7593, "q": [-0.3115480840206146, 0.0016243145801126957, -0.004646987654268742, 0.6146575808525085, -0.32071900367736816, -0.0034583969973027706, -0.3588458299636841, 0.015058577992022038, -0.014329328201711178, 0.6076353788375854, -0.2933144271373749, -0.01831331104040146, 0.03144416958093643, -0.05324988067150116, -0.01935836300253868, 0.12959741055965424, 0.12678112089633942, 0.025118935853242874, 1.240750789642334, 0.14529675245285034, 0.04199272394180298, -0.03953595831990242, -0.6569752097129822, -0.8450196981430054, 0.8948980569839478, -0.049914296716451645, -0.5685436129570007, -0.34963977336883545, -0.6332584619522095]} +{"t": 9.776, "q": [-0.3115480840206146, 0.001581704244017601, -0.004620204214006662, 0.6146490573883057, -0.3207230865955353, -0.0034511780831962824, -0.3588373064994812, 0.015067100524902344, -0.014342720620334148, 0.6076353788375854, -0.2933019697666168, -0.018306152895092964, 0.0314575619995594, -0.05325731262564659, -0.01933423988521099, 0.12962138652801514, 0.12678112089633942, 0.025118935853242874, 1.240738868713379, 0.14522483944892883, 0.04200470820069313, -0.039511989802122116, -0.6563999652862549, -0.8449957370758057, 0.894874095916748, -0.049746520817279816, -0.5685076713562012, -0.3496277928352356, -0.6338576674461365]} +{"t": 9.7928, "q": [-0.31153956055641174, 0.001573182176798582, -0.004673771560192108, 0.6146320104598999, -0.32071495056152344, -0.0034656161442399025, -0.35882025957107544, 0.015050055459141731, -0.014329328201711178, 0.6076523661613464, -0.29332277178764343, -0.018284354358911514, 0.031497739255428314, -0.05325731262564659, -0.01933423988521099, 0.12959741055965424, 0.12679310142993927, 0.025118935853242874, 1.240750789642334, 0.14529675245285034, 0.04201669245958328, -0.039511989802122116, -0.6558966636657715, -0.8449957370758057, 0.8948860764503479, -0.049554772675037384, -0.5684837102890015, -0.3496277928352356, -0.6344209313392639]} +{"t": 9.8095, "q": [-0.3115651309490204, 0.001581704244017601, -0.004660379607230425, 0.6146575808525085, -0.3207271695137024, -0.0034439589362591505, -0.3588287830352783, 0.015050055459141731, -0.014342720620334148, 0.6076523661613464, -0.29332277178764343, -0.018284354358911514, 0.03156469762325287, -0.05326491594314575, -0.019339337944984436, 0.12958543002605438, 0.12676914036273956, 0.025142904371023178, 1.240738868713379, 0.1452847570180893, 0.04201669245958328, -0.03952397406101227, -0.6554052829742432, -0.8449957370758057, 0.894874095916748, -0.0493510402739048, -0.5685316324234009, -0.3496277928352356, -0.6349602341651917]} +{"t": 9.8262, "q": [-0.31159070134162903, 0.001573182176798582, -0.004673771560192108, 0.6146490573883057, -0.3207230865955353, -0.0034511780831962824, -0.35882025957107544, 0.015024489723145962, -0.014329328201711178, 0.6076523661613464, -0.2933352291584015, -0.018248150125145912, 0.03156469762325287, -0.053279947489500046, -0.019320307299494743, 0.12964534759521484, 0.12678112089633942, 0.02509496733546257, 1.2407149076461792, 0.1452847570180893, 0.04201669245958328, -0.03952397406101227, -0.6550098061561584, -0.8449957370758057, 0.894874095916748, -0.04912333935499191, -0.5685316324234009, -0.3496277928352356, -0.6355354189872742]} +{"t": 9.843, "q": [-0.31157365441322327, 0.001581704244017601, -0.004673771560192108, 0.6146575808525085, -0.3207230865955353, -0.0034511780831962824, -0.35882025957107544, 0.015033011324703693, -0.014342720620334148, 0.6076608896255493, -0.29334354400634766, -0.018248097971081734, 0.03159148246049881, -0.05327240005135536, -0.019324952736496925, 0.12950153648853302, 0.12676914036273956, 0.025118935853242874, 1.2407628297805786, 0.1453326940536499, 0.04199272394180298, -0.039559926837682724, -0.6546862125396729, -0.8449837565422058, 0.894874095916748, -0.04897952824831009, -0.5685316324234009, -0.3496277928352356, -0.6360148191452026]} +{"t": 9.8597, "q": [-0.3115566074848175, 0.001581704244017601, -0.004687163513153791, 0.6146575808525085, -0.32072728872299194, -0.003458494320511818, -0.3588287830352783, 0.015015967190265656, -0.014302544295787811, 0.6076694130897522, -0.29336848855018616, -0.01821907050907612, 0.03156469762325287, -0.05328000336885452, -0.01933004893362522, 0.12957344949245453, 0.12678112089633942, 0.02509496733546257, 1.2407149076461792, 0.14529675245285034, 0.04199272394180298, -0.03952397406101227, -0.6543986201286316, -0.8449837565422058, 0.8948980569839478, -0.04885968565940857, -0.5685076713562012, -0.3496277928352356, -0.6365181803703308]} +{"t": 9.8764, "q": [-0.31153956055641174, 0.001573182176798582, -0.004673771560192108, 0.6146661043167114, -0.3207271695137024, -0.0034439589362591505, -0.35882025957107544, 0.015007445588707924, -0.014329328201711178, 0.6076694130897522, -0.29336848855018616, -0.01821907050907612, 0.03156469762325287, -0.05328755080699921, -0.01932540349662304, 0.1296093910932541, 0.12676914036273956, 0.025142904371023178, 1.240738868713379, 0.1452847570180893, 0.04199272394180298, -0.03953595831990242, -0.6539791822433472, -0.8449837565422058, 0.8948860764503479, -0.048775795847177505, -0.5684956908226013, -0.3496277928352356, -0.6372012495994568]} +{"t": 9.8933, "q": [-0.3115651309490204, 0.001573182176798582, -0.004673771560192108, 0.6146746277809143, -0.3207312524318695, -0.0034367400221526623, -0.3588287830352783, 0.014964834786951542, -0.014329328201711178, 0.6076608896255493, -0.2933768033981323, -0.018204573541879654, 0.03159148246049881, -0.05326491594314575, -0.019339337944984436, 0.12956145405769348, 0.12678112089633942, 0.025106951594352722, 1.240738868713379, 0.14524881541728973, 0.04199272394180298, -0.03952397406101227, -0.653331995010376, -0.8450196981430054, 0.8948980569839478, -0.048775795847177505, -0.5684956908226013, -0.3496277928352356, -0.6378363966941833]} +{"t": 9.9102, "q": [-0.3115566074848175, 0.00159022631123662, -0.004673771560192108, 0.6146746277809143, -0.32073554396629333, -0.0034585732501000166, -0.35881173610687256, 0.014896657317876816, -0.014329328201711178, 0.6076608896255493, -0.2933851182460785, -0.01820453815162182, 0.03159148246049881, -0.05328000336885452, -0.01933004893362522, 0.12966932356357574, 0.12674516439437866, 0.025118935853242874, 1.240738868713379, 0.1452368199825287, 0.04199272394180298, -0.03953595831990242, -0.6523013710975647, -0.8449837565422058, 0.8948980569839478, -0.048715874552726746, -0.5685076713562012, -0.34963977336883545, -0.6385434865951538]} +{"t": 9.927, "q": [-0.31157365441322327, 0.001581704244017601, -0.004687163513153791, 0.6146746277809143, -0.32073554396629333, -0.0034585732501000166, -0.3588373064994812, 0.01492222398519516, -0.014329328201711178, 0.6076608896255493, -0.2933851182460785, -0.01820453815162182, 0.031658440828323364, -0.05327245965600014, -0.019334692507982254, 0.12957344949245453, 0.1267092078924179, 0.025142904371023178, 1.2407268285751343, 0.1452368199825287, 0.04199272394180298, -0.03952397406101227, -0.6514744758605957, -0.8449957370758057, 0.8948980569839478, -0.048655953258275986, -0.5685316324234009, -0.34963977336883545, -0.6392984986305237]} +{"t": 9.9437, "q": [-0.31161627173423767, 0.001581704244017601, -0.004713947419077158, 0.6146831512451172, -0.3207271695137024, -0.0034439589362591505, -0.3588373064994812, 0.014871091581881046, -0.014315936714410782, 0.6076523661613464, -0.29339343309402466, -0.01820448599755764, 0.03171201050281525, -0.05328000336885452, -0.01933004893362522, 0.12958543002605438, 0.12672120332717896, 0.025166872888803482, 1.240738868713379, 0.14524881541728973, 0.04198073968291283, -0.03952397406101227, -0.6506235599517822, -0.8449957370758057, 0.8948980569839478, -0.04860801622271538, -0.5685076713562012, -0.34961581230163574, -0.6404010653495789]} +{"t": 9.9605, "q": [-0.3115992248058319, 0.001581704244017601, -0.004713947419077158, 0.6146831512451172, -0.32072728872299194, -0.003458494320511818, -0.3588458299636841, 0.014871091581881046, -0.014315936714410782, 0.6076439023017883, -0.2933809757232666, -0.018197325989603996, 0.03172539919614792, -0.05328000336885452, -0.01933004893362522, 0.12958543002605438, 0.1267331838607788, 0.025178857147693634, 1.240750789642334, 0.14527277648448944, 0.04198073968291283, -0.03952397406101227, -0.6503838896751404, -0.8449957370758057, 0.894957959651947, -0.04854809492826462, -0.5685076713562012, -0.34963977336883545, -0.6418631076812744]} +{"t": 9.9772, "q": [-0.31162479519844055, 0.001581704244017601, -0.004740730859339237, 0.6146661043167114, -0.3207271695137024, -0.0034439589362591505, -0.3588287830352783, 0.014828480780124664, -0.014329328201711178, 0.6076353788375854, -0.2933851480484009, -0.018190059810876846, 0.03176557645201683, -0.05327240005135536, -0.019324952736496925, 0.12966932356357574, 0.1267331838607788, 0.025142904371023178, 1.2407268285751343, 0.14521285891532898, 0.04199272394180298, -0.03953595831990242, -0.6502760648727417, -0.8450077176094055, 0.8949939012527466, -0.04848817363381386, -0.568519651889801, -0.34963977336883545, -0.643756628036499]} +{"t": 9.994, "q": [-0.3116503655910492, 0.00159022631123662, -0.004740730859339237, 0.6146575808525085, -0.3207436203956604, -0.0034296002704650164, -0.3588799238204956, 0.014845524914562702, -0.014342720620334148, 0.6076183319091797, -0.29339757561683655, -0.018197236582636833, 0.0317789688706398, -0.05328000336885452, -0.01933004893362522, 0.1296093910932541, 0.12672120332717896, 0.025118935853242874, 1.2407268285751343, 0.14518888294696808, 0.04199272394180298, -0.03954794257879257, -0.6502400636672974, -0.8449957370758057, 0.8950179219245911, -0.048476189374923706, -0.5684597492218018, -0.3496277928352356, -0.6455063223838806]} +{"t": 10.0107, "q": [-0.3116588890552521, 0.001581704244017601, -0.0047541228123009205, 0.6146831512451172, -0.32073545455932617, -0.003444056259468198, -0.3588884472846985, 0.014947790652513504, -0.014356112107634544, 0.6076353788375854, -0.29339760541915894, -0.018182776868343353, 0.03180575370788574, -0.05327240005135536, -0.019324952736496925, 0.1296093910932541, 0.12672120332717896, 0.025118935853242874, 1.240750789642334, 0.1452368199825287, 0.04199272394180298, -0.03952397406101227, -0.6502041220664978, -0.8449837565422058, 0.8950898051261902, -0.0484282523393631, -0.568519651889801, -0.3496277928352356, -0.6470043659210205]} +{"t": 10.0274, "q": [-0.3116844594478607, 0.001573182176798582, -0.004767514765262604, 0.6146575808525085, -0.32073941826820374, -0.003422284033149481, -0.3588884472846985, 0.014888135716319084, -0.014356112107634544, 0.607592761516571, -0.2933851480484009, -0.018190059810876846, 0.031859319657087326, -0.053279947489500046, -0.019320307299494743, 0.12959741055965424, 0.1267331838607788, 0.025130920112133026, 1.2407149076461792, 0.1453087329864502, 0.04199272394180298, -0.03952397406101227, -0.6502041220664978, -0.844971776008606, 0.8951377272605896, -0.04836833477020264, -0.5685316324234009, -0.34963977336883545, -0.6490656137466431]} +{"t": 10.0441, "q": [-0.3116503655910492, 0.0015646601095795631, -0.004807690624147654, 0.6146575808525085, -0.32073137164115906, -0.003451275173574686, -0.3588884472846985, 0.014930746518075466, -0.014409679919481277, 0.6075842380523682, -0.29337677359580994, -0.018233494833111763, 0.03191288560628891, -0.05327989161014557, -0.019310569390654564, 0.12952551245689392, 0.12672120332717896, 0.025118935853242874, 1.240750789642334, 0.14534468948841095, 0.04200470820069313, -0.03952397406101227, -0.6500723361968994, -0.844971776008606, 0.8952935338020325, -0.04824849218130112, -0.568519651889801, -0.3496517539024353, -0.6516183018684387]} +{"t": 10.0609, "q": [-0.3116588890552521, 0.001581704244017601, -0.004807690624147654, 0.6146746277809143, -0.3207312524318695, -0.0034367400221526623, -0.35890549421310425, 0.014930746518075466, -0.01444985531270504, 0.607592761516571, -0.29334768652915955, -0.018269788473844528, 0.03188610449433327, -0.05330246686935425, -0.019286897033452988, 0.12957344949245453, 0.12675714492797852, 0.025142904371023178, 1.240738868713379, 0.1452607959508896, 0.04198073968291283, -0.039511989802122116, -0.6497128009796143, -0.8449478149414062, 0.8956530690193176, -0.0481286495923996, -0.5684717297554016, -0.3496517539024353, -0.653535783290863]} +{"t": 10.0776, "q": [-0.3116503655910492, 0.001581704244017601, -0.004807690624147654, 0.6146575808525085, -0.32073545455932617, -0.003444056259468198, -0.35893958806991577, 0.014913702383637428, -0.014436463825404644, 0.607592761516571, -0.2933560013771057, -0.0182697344571352, 0.03192627802491188, -0.05330218747258186, -0.019238201901316643, 0.12954947352409363, 0.12675714492797852, 0.025118935853242874, 1.2407149076461792, 0.1452847570180893, 0.04200470820069313, -0.039511989802122116, -0.6494970917701721, -0.8448638916015625, 0.8959167003631592, -0.04806872829794884, -0.568519651889801, -0.3496517539024353, -0.6542907357215881]} +{"t": 10.0943, "q": [-0.31163331866264343, 0.001581704244017601, -0.004807690624147654, 0.6146575808525085, -0.3207271695137024, -0.0034439589362591505, -0.35892254114151, 0.014939268119633198, -0.01446324773132801, 0.6076012849807739, -0.29335182905197144, -0.01827700063586235, 0.03192627802491188, -0.05327915772795677, -0.01918395608663559, 0.12954947352409363, 0.12672120332717896, 0.025118935853242874, 1.240738868713379, 0.14524881541728973, 0.04200470820069313, -0.039511989802122116, -0.6494491100311279, -0.8448519110679626, 0.8961324095726013, -0.047936901450157166, -0.5684956908226013, -0.34963977336883545, -0.6546263098716736]} +{"t": 10.111, "q": [-0.31162479519844055, 0.0015646601095795631, -0.004780906718224287, 0.6146575808525085, -0.3207271695137024, -0.0034439589362591505, -0.35893958806991577, 0.014990401454269886, -0.014476639218628407, 0.607592761516571, -0.29335182905197144, -0.01827700063586235, 0.03192627802491188, -0.05329408496618271, -0.019145416095852852, 0.1296093910932541, 0.12675714492797852, 0.025118935853242874, 1.240750789642334, 0.14522483944892883, 0.04201669245958328, -0.03952397406101227, -0.6494011878967285, -0.8448399305343628, 0.896300196647644, -0.047757137566804886, -0.5685436129570007, -0.3496517539024353, -0.6547940969467163]} +{"t": 10.1278, "q": [-0.3116503655910492, 0.0015646601095795631, -0.004821082577109337, 0.6146490573883057, -0.3207230865955353, -0.0034511780831962824, -0.35895663499832153, 0.014990401454269886, -0.014490030705928802, 0.6076098084449768, -0.29335182905197144, -0.01827700063586235, 0.03199324011802673, -0.05331661179661751, -0.019111964851617813, 0.12948955595493317, 0.12674516439437866, 0.025142904371023178, 1.240738868713379, 0.14524881541728973, 0.04199272394180298, -0.039511989802122116, -0.6493892073631287, -0.8448638916015625, 0.8964799642562866, -0.04749348387122154, -0.5686275362968445, -0.3496517539024353, -0.654961884021759]} +{"t": 10.1446, "q": [-0.3116503655910492, 0.0015646601095795631, -0.00483447453007102, 0.6146575808525085, -0.3207312524318695, -0.0034367400221526623, -0.35893958806991577, 0.014998923055827618, -0.014503423124551773, 0.6076012849807739, -0.2933560013771057, -0.0182697344571352, 0.032020021229982376, -0.0533316470682621, -0.01909291371703148, 0.12956145405769348, 0.12678112089633942, 0.025118935853242874, 1.2407628297805786, 0.1452368199825287, 0.04198073968291283, -0.03952397406101227, -0.649365246295929, -0.8448279500007629, 0.8965878486633301, -0.04712197184562683, -0.5685675740242004, -0.34966373443603516, -0.6550337672233582]} +{"t": 10.1613, "q": [-0.3116588890552521, 0.0015646601095795631, -0.00483447453007102, 0.6146661043167114, -0.3207312524318695, -0.0034367400221526623, -0.35893958806991577, 0.01498187892138958, -0.014503423124551773, 0.6076012849807739, -0.29336845874786377, -0.01824798993766308, 0.03212715685367584, -0.05333913862705231, -0.019078515470027924, 0.12958543002605438, 0.12676914036273956, 0.025118935853242874, 1.2407747507095337, 0.14524881541728973, 0.04200470820069313, -0.039511989802122116, -0.6494371294975281, -0.8447680473327637, 0.896671712398529, -0.046618636697530746, -0.5685555934906006, -0.34968769550323486, -0.6551176905632019]} +{"t": 10.178, "q": [-0.3116588890552521, 0.0015646601095795631, -0.004847866017371416, 0.6146575808525085, -0.32073545455932617, -0.003444056259468198, -0.35893958806991577, 0.014930746518075466, -0.014516814611852169, 0.6076012849807739, -0.29336017370224, -0.018233565613627434, 0.032194118946790695, -0.053346626460552216, -0.01906411349773407, 0.12953749299049377, 0.12674516439437866, 0.025106951594352722, 1.240750789642334, 0.1452368199825287, 0.04201669245958328, -0.03952397406101227, -0.6494371294975281, -0.844516396522522, 0.8967915773391724, -0.04586362838745117, -0.5685915946960449, -0.3496997058391571, -0.6552255153656006]} +{"t": 10.1948, "q": [-0.3116418421268463, 0.001547615509480238, -0.004847866017371416, 0.6146661043167114, -0.3207312524318695, -0.0034367400221526623, -0.35892254114151, 0.014964834786951542, -0.014490030705928802, 0.6076268553733826, -0.2933643162250519, -0.018240777775645256, 0.03222090005874634, -0.05333148315548897, -0.019063664600253105, 0.12957344949245453, 0.12674516439437866, 0.025106951594352722, 1.240750789642334, 0.1452847570180893, 0.04199272394180298, -0.03952397406101227, -0.6494731307029724, -0.8442527055740356, 0.8969113826751709, -0.045096639543771744, -0.5685915946960449, -0.34973564743995667, -0.6552854776382446]} +{"t": 10.2115, "q": [-0.3116844594478607, 0.001539093442261219, -0.004861257970333099, 0.6146661043167114, -0.320735365152359, -0.003429502947255969, -0.35892254114151, 0.014947790652513504, -0.014516814611852169, 0.6076268553733826, -0.2933643162250519, -0.018255239352583885, 0.03222090005874634, -0.05334657430648804, -0.019054364413022995, 0.12959741055965424, 0.12672120332717896, 0.025118935853242874, 1.2407628297805786, 0.1452368199825287, 0.04199272394180298, -0.03952397406101227, -0.6494731307029724, -0.8439051508903503, 0.8969833254814148, -0.044149886816740036, -0.5686395168304443, -0.3497476279735565, -0.6553693413734436]} +{"t": 10.2283, "q": [-0.3116929829120636, 0.0015305713750422, -0.004874649923294783, 0.6146746277809143, -0.3207271695137024, -0.0034439589362591505, -0.35892254114151, 0.014947790652513504, -0.014516814611852169, 0.6076353788375854, -0.2933601438999176, -0.018262486904859543, 0.03224768489599228, -0.0533541701734066, -0.01905946247279644, 0.12966932356357574, 0.12672120332717896, 0.025142904371023178, 1.240738868713379, 0.1452607959508896, 0.04200470820069313, -0.03953595831990242, -0.6494491100311279, -0.8435096740722656, 0.897127091884613, -0.04319114610552788, -0.5686275362968445, -0.3497835695743561, -0.6554292440414429]} +{"t": 10.2451, "q": [-0.31166741251945496, 0.0015220493078231812, -0.004861257970333099, 0.6146831512451172, -0.3207312524318695, -0.0034367400221526623, -0.3589310646057129, 0.014930746518075466, -0.014516814611852169, 0.6076608896255493, -0.29339343309402466, -0.01819002442061901, 0.032314643263816833, -0.0533541701734066, -0.01905946247279644, 0.1296093910932541, 0.12672120332717896, 0.025142904371023178, 1.240750789642334, 0.14527277648448944, 0.04199272394180298, -0.03952397406101227, -0.6494731307029724, -0.8430183529853821, 0.8973428606987, -0.042040660977363586, -0.5686395168304443, -0.349819540977478, -0.6555251479148865]} +{"t": 10.2619, "q": [-0.3116929829120636, 0.001539093442261219, -0.004861257970333099, 0.6147172451019287, -0.32073545455932617, -0.003444056259468198, -0.35892254114151, 0.01492222398519516, -0.014516814611852169, 0.6076779365539551, -0.29339343309402466, -0.018218981102108955, 0.032354820519685745, -0.053361665457487106, -0.019045064225792885, 0.12958543002605438, 0.1267331838607788, 0.025118935853242874, 1.2407628297805786, 0.14527277648448944, 0.04200470820069313, -0.03952397406101227, -0.6494131684303284, -0.8425989151000977, 0.8975825309753418, -0.041069939732551575, -0.5686275362968445, -0.3498315215110779, -0.6556090116500854]} +{"t": 10.2788, "q": [-0.3116929829120636, 0.0015135272406041622, -0.004861257970333099, 0.6147428154945374, -0.320735365152359, -0.003429502947255969, -0.35890549421310425, 0.014930746518075466, -0.014503423124551773, 0.607686460018158, -0.2933809459209442, -0.018211785703897476, 0.032341428101062775, -0.05334657430648804, -0.019054364413022995, 0.12958543002605438, 0.1267331838607788, 0.02509496733546257, 1.240738868713379, 0.14524881541728973, 0.04198073968291283, -0.03952397406101227, -0.6494251489639282, -0.8420835733413696, 0.8979300856590271, -0.04015913978219032, -0.568663477897644, -0.34986746311187744, -0.6557288765907288]} +{"t": 10.2956, "q": [-0.3117440938949585, 0.0014964831061661243, -0.004874649923294783, 0.6147428154945374, -0.3207312524318695, -0.0034367400221526623, -0.35891401767730713, 0.014888135716319084, -0.014503423124551773, 0.607686460018158, -0.2934017479419708, -0.018189989030361176, 0.032314643263816833, -0.05337686464190483, -0.019055265933275223, 0.12954947352409363, 0.12672120332717896, 0.025118935853242874, 1.240738868713379, 0.1452607959508896, 0.04199272394180298, -0.03954794257879257, -0.6494011878967285, -0.8415802121162415, 0.8983974456787109, -0.03924833610653877, -0.5687114000320435, -0.3498794436454773, -0.6558966636657715]} +{"t": 10.3124, "q": [-0.31172704696655273, 0.0014964831061661243, -0.004847866017371416, 0.614768385887146, -0.32073545455932617, -0.003444056259468198, -0.35889697074890137, 0.014845524914562702, -0.014476639218628407, 0.6077035069465637, -0.29338929057121277, -0.01819727197289467, 0.03228786215186119, -0.0533541701734066, -0.01905946247279644, 0.12957344949245453, 0.12672120332717896, 0.025082983076572418, 1.240750789642334, 0.14522483944892883, 0.04199272394180298, -0.03954794257879257, -0.6494251489639282, -0.8410888910293579, 0.8992483019828796, -0.03814578801393509, -0.5686754584312439, -0.3499034345149994, -0.6562082171440125]} +{"t": 10.3291, "q": [-0.3117526173591614, 0.0014879610389471054, -0.00483447453007102, 0.6147769093513489, -0.32073545455932617, -0.003444056259468198, -0.35889697074890137, 0.014896657317876816, -0.01444985531270504, 0.6077376008033752, -0.29339343309402466, -0.01820448599755764, 0.03224768489599228, -0.053369373083114624, -0.019069664180278778, 0.12959741055965424, 0.12672120332717896, 0.02509496733546257, 1.2407149076461792, 0.1452368199825287, 0.04199272394180298, -0.03953595831990242, -0.6494251489639282, -0.8405256271362305, 0.900338888168335, -0.03675561770796776, -0.5686754584312439, -0.3499273955821991, -0.6567475199699402]} +{"t": 10.3459, "q": [-0.3117355704307556, 0.0014538723044097424, -0.00483447453007102, 0.6147939562797546, -0.3207312524318695, -0.0034367400221526623, -0.3588799238204956, 0.014896657317876816, -0.01446324773132801, 0.607754647731781, -0.2933809757232666, -0.018197325989603996, 0.03220750764012337, -0.05336177349090576, -0.019064564257860184, 0.12957344949245453, 0.1267092078924179, 0.025118935853242874, 1.240750789642334, 0.1453087329864502, 0.04200470820069313, -0.03953595831990242, -0.6494371294975281, -0.8396507501602173, 0.9016332030296326, -0.03507782891392708, -0.5686754584312439, -0.34996333718299866, -0.657358705997467]} +{"t": 10.3626, "q": [-0.31172704696655273, 0.0014709164388477802, -0.00483447453007102, 0.6148365139961243, -0.32073941826820374, -0.003422284033149481, -0.3588714003562927, 0.014879613183438778, -0.01444985531270504, 0.607822835445404, -0.29336434602737427, -0.018226318061351776, 0.032194118946790695, -0.0533541701734066, -0.01905946247279644, 0.12956145405769348, 0.1267092078924179, 0.025118935853242874, 1.240750789642334, 0.1453087329864502, 0.04199272394180298, -0.03953595831990242, -0.6494970917701721, -0.838536262512207, 0.9026039242744446, -0.03366369009017944, -0.5686874389648438, -0.34998732805252075, -0.6579459309577942]} +{"t": 10.3794, "q": [-0.31172704696655273, 0.0014623943716287613, -0.004847866017371416, 0.6148706078529358, -0.3207312524318695, -0.0034367400221526623, -0.3588799238204956, 0.014888135716319084, -0.014436463825404644, 0.6078484058380127, -0.2933518588542938, -0.0182480625808239, 0.032180726528167725, -0.05336177349090576, -0.019064564257860184, 0.12959741055965424, 0.12675714492797852, 0.02509496733546257, 1.240750789642334, 0.14529675245285034, 0.042028676718473434, -0.039500005543231964, -0.6494491100311279, -0.837421715259552, 0.9032869935035706, -0.032645028084516525, -0.5686994194984436, -0.3499753177165985, -0.6585331559181213]} +{"t": 10.3962, "q": [-0.31167593598365784, 0.0014623943716287613, -0.00483447453007102, 0.6149387955665588, -0.3207229971885681, -0.0034366610925644636, -0.3588458299636841, 0.014871091581881046, -0.014476639218628407, 0.6079080700874329, -0.2933518588542938, -0.0182480625808239, 0.032194118946790695, -0.0533541701734066, -0.01905946247279644, 0.12959741055965424, 0.12674516439437866, 0.025118935853242874, 1.2407628297805786, 0.14532071352005005, 0.04199272394180298, -0.03953595831990242, -0.6494371294975281, -0.8361513614654541, 0.9036824703216553, -0.03177018091082573, -0.5686754584312439, -0.34998732805252075, -0.6591683626174927]} +{"t": 10.413, "q": [-0.3116929829120636, 0.0014623943716287613, -0.004807690624147654, 0.6149558424949646, -0.32073554396629333, -0.0034585732501000166, -0.35885435342788696, 0.01492222398519516, -0.01444985531270504, 0.6080018281936646, -0.29334351420402527, -0.018277036026120186, 0.03212715685367584, -0.05334657430648804, -0.019054364413022995, 0.129633367061615, 0.1267331838607788, 0.025118935853242874, 1.240750789642334, 0.1453806310892105, 0.04200470820069313, -0.03952397406101227, -0.6494970917701721, -0.8341979384422302, 0.9038382768630981, -0.03081144392490387, -0.5686754584312439, -0.3499753177165985, -0.6601750254631042]} +{"t": 10.4297, "q": [-0.31167593598365784, 0.0014709164388477802, -0.004821082577109337, 0.6149387955665588, -0.3207312524318695, -0.0034367400221526623, -0.3588714003562927, 0.014888135716319084, -0.01444985531270504, 0.6080018281936646, -0.29336017370224, -0.018248027190566063, 0.03212715685367584, -0.0533541701734066, -0.01905946247279644, 0.12959741055965424, 0.1267092078924179, 0.025142904371023178, 1.240750789642334, 0.1452847570180893, 0.04200470820069313, -0.03954794257879257, -0.6494491100311279, -0.8321486711502075, 0.903850257396698, -0.030356042087078094, -0.5686874389648438, -0.34996333718299866, -0.6609899401664734]} +{"t": 10.4465, "q": [-0.3116588890552521, 0.0014879610389471054, -0.004807690624147654, 0.614930272102356, -0.32072728872299194, -0.003458494320511818, -0.35885435342788696, 0.01492222398519516, -0.01446324773132801, 0.6080018281936646, -0.2933518588542938, -0.0182480625808239, 0.03206019848585129, -0.05336177349090576, -0.019064564257860184, 0.12964534759521484, 0.12672120332717896, 0.025142904371023178, 1.240750789642334, 0.14532071352005005, 0.041968755424022675, -0.03953595831990242, -0.6494491100311279, -0.8299435377120972, 0.9038861989974976, -0.029864689335227013, -0.5687114000320435, -0.34998732805252075, -0.6618887782096863]} +{"t": 10.4632, "q": [-0.3116418421268463, 0.0014964831061661243, -0.004821082577109337, 0.6149387955665588, -0.32073137164115906, -0.003451275173574686, -0.3588714003562927, 0.014930746518075466, -0.014436463825404644, 0.6080188751220703, -0.2933643162250519, -0.018255239352583885, 0.032020021229982376, -0.05336926132440567, -0.01905016228556633, 0.12964534759521484, 0.1267092078924179, 0.025142904371023178, 1.2407628297805786, 0.14532071352005005, 0.04199272394180298, -0.03953595831990242, -0.6494731307029724, -0.8276185989379883, 0.9038742184638977, -0.029169604182243347, -0.5686754584312439, -0.3499753177165985, -0.662883460521698]} +{"t": 10.4799, "q": [-0.3116503655910492, 0.0015135272406041622, -0.004821082577109337, 0.6149643659591675, -0.3207271695137024, -0.0034439589362591505, -0.3588714003562927, 0.014956312254071236, -0.01446324773132801, 0.6080529093742371, -0.2933560013771057, -0.01825527474284172, 0.03207359090447426, -0.05336177349090576, -0.019064564257860184, 0.12959741055965424, 0.1267092078924179, 0.025118935853242874, 1.240750789642334, 0.1453566700220108, 0.04200470820069313, -0.03953595831990242, -0.6494251489639282, -0.825701117515564, 0.9039821028709412, -0.02840261347591877, -0.5686874389648438, -0.3499753177165985, -0.6641178131103516]} +{"t": 10.4966, "q": [-0.3116588890552521, 0.0015220493078231812, -0.004847866017371416, 0.6149728894233704, -0.32072728872299194, -0.003458494320511818, -0.35886287689208984, 0.014888135716319084, -0.014476639218628407, 0.6080188751220703, -0.2933560013771057, -0.01825527474284172, 0.032167334109544754, -0.05336926132440567, -0.01905016228556633, 0.12958543002605438, 0.12669722735881805, 0.025130920112133026, 1.2407028675079346, 0.14522483944892883, 0.04200470820069313, -0.03954794257879257, -0.6494371294975281, -0.8241431713104248, 0.9041498899459839, -0.027827370911836624, -0.5687353610992432, -0.3499753177165985, -0.6657596826553345]} +{"t": 10.5134, "q": [-0.31166741251945496, 0.0015135272406041622, -0.004861257970333099, 0.614998459815979, -0.32072728872299194, -0.003458494320511818, -0.35885435342788696, 0.014947790652513504, -0.014503423124551773, 0.6080614328384399, -0.2933560013771057, -0.01825527474284172, 0.03230125084519386, -0.05336177349090576, -0.019064564257860184, 0.12957344949245453, 0.1267092078924179, 0.025142904371023178, 1.2407268285751343, 0.1453566700220108, 0.04199272394180298, -0.03953595831990242, -0.6494731307029724, -0.8231245279312134, 0.9043176770210266, -0.027359986677765846, -0.5687953233718872, -0.34998732805252075, -0.6674254536628723]} +{"t": 10.5301, "q": [-0.3117015063762665, 0.0015135272406041622, -0.004861257970333099, 0.614998459815979, -0.32071495056152344, -0.0034656161442399025, -0.35885435342788696, 0.014879613183438778, -0.014490030705928802, 0.6080529093742371, -0.2933560013771057, -0.01825527474284172, 0.03226107731461525, -0.05336926132440567, -0.01905016228556633, 0.12956145405769348, 0.12669722735881805, 0.025142904371023178, 1.2407628297805786, 0.14532071352005005, 0.04200470820069313, -0.03953595831990242, -0.6494491100311279, -0.8224534392356873, 0.9043775796890259, -0.02690458483994007, -0.5687713027000427, -0.3500232696533203, -0.6689234972000122]} +{"t": 10.5468, "q": [-0.31167593598365784, 0.0015135272406041622, -0.004847866017371416, 0.614998459815979, -0.3207271695137024, -0.0034439589362591505, -0.35886287689208984, 0.014905179850757122, -0.014490030705928802, 0.6080529093742371, -0.2933601438999176, -0.018262486904859543, 0.03230125084519386, -0.05336926132440567, -0.01905016228556633, 0.12957344949245453, 0.1267092078924179, 0.025106951594352722, 1.240750789642334, 0.1453326940536499, 0.04200470820069313, -0.03953595831990242, -0.6494491100311279, -0.822105884552002, 0.9045214056968689, -0.026581011712551117, -0.5687713027000427, -0.35004723072052, -0.6706731915473938]} +{"t": 10.5636, "q": [-0.31166741251945496, 0.0014879610389471054, -0.004807690624147654, 0.6150155067443848, -0.32073545455932617, -0.003444056259468198, -0.35886287689208984, 0.014896657317876816, -0.014490030705928802, 0.6080273985862732, -0.2933560013771057, -0.01825527474284172, 0.03227446973323822, -0.05336177349090576, -0.019064564257860184, 0.1296573281288147, 0.1266852468252182, 0.025130920112133026, 1.240750789642334, 0.14532071352005005, 0.04200470820069313, -0.03952397406101227, -0.6494011878967285, -0.8219860196113586, 0.9045813083648682, -0.026149580255150795, -0.5687593221664429, -0.3501071631908417, -0.6723270416259766]} +{"t": 10.5803, "q": [-0.3117015063762665, 0.0014623943716287613, -0.004821082577109337, 0.614998459815979, -0.32073941826820374, -0.003422284033149481, -0.35886287689208984, 0.014930746518075466, -0.014476639218628407, 0.6080358624458313, -0.2933643162250519, -0.018255239352583885, 0.03226107731461525, -0.05337686464190483, -0.019055265933275223, 0.12951351702213287, 0.12669722735881805, 0.025118935853242874, 1.2407628297805786, 0.1453326940536499, 0.04199272394180298, -0.03952397406101227, -0.6494251489639282, -0.8220099806785583, 0.9046292304992676, -0.02575409971177578, -0.5687833428382874, -0.35019105672836304, -0.6738490462303162]} +{"t": 10.5972, "q": [-0.3116844594478607, 0.0014283061027526855, -0.004807690624147654, 0.6150325536727905, -0.3207271695137024, -0.0034439589362591505, -0.3588458299636841, 0.014930746518075466, -0.014490030705928802, 0.6080188751220703, -0.2933560311794281, -0.01824081316590309, 0.03222090005874634, -0.05338446423411369, -0.019060363993048668, 0.12958543002605438, 0.12672120332717896, 0.025130920112133026, 1.240750789642334, 0.14532071352005005, 0.04199272394180298, -0.03953595831990242, -0.6494131684303284, -0.8220459222793579, 0.9047011733055115, -0.02539457380771637, -0.5688073039054871, -0.350274920463562, -0.6747358441352844]} +{"t": 10.6139, "q": [-0.31172704696655273, 0.0014197840355336666, -0.004807690624147654, 0.6150410771369934, -0.3207395374774933, -0.0034368191845715046, -0.35885435342788696, 0.014905179850757122, -0.01444985531270504, 0.6079933047294617, -0.2933518886566162, -0.01823360100388527, 0.03220750764012337, -0.05336926132440567, -0.01905016228556633, 0.12957344949245453, 0.12674516439437866, 0.025118935853242874, 1.240738868713379, 0.14524881541728973, 0.04199272394180298, -0.03953595831990242, -0.6494491100311279, -0.8220219612121582, 0.90482097864151, -0.024879250675439835, -0.5688552260398865, -0.3504067659378052, -0.6752152442932129]} +{"t": 10.6307, "q": [-0.31176114082336426, 0.0014027399010956287, -0.004821082577109337, 0.6150240302085876, -0.32073941826820374, -0.003422284033149481, -0.3588373064994812, 0.014854047447443008, -0.01444985531270504, 0.6079933047294617, -0.2933768033981323, -0.018204573541879654, 0.03223429247736931, -0.053369373083114624, -0.019069664180278778, 0.12964534759521484, 0.12676914036273956, 0.025118935853242874, 1.2407268285751343, 0.1453087329864502, 0.04200470820069313, -0.039511989802122116, -0.6494131684303284, -0.8220219612121582, 0.9049168825149536, -0.024220118299126625, -0.5689031481742859, -0.35063445568084717, -0.6754189729690552]} +{"t": 10.6476, "q": [-0.31172704696655273, 0.0014027399010956287, -0.00479429867118597, 0.6150751709938049, -0.3207312524318695, -0.0034367400221526623, -0.3588458299636841, 0.014905179850757122, -0.01444985531270504, 0.6080358624458313, -0.2933560311794281, -0.01824081316590309, 0.03223429247736931, -0.05338446423411369, -0.019060363993048668, 0.12962138652801514, 0.1267331838607788, 0.025142904371023178, 1.240750789642334, 0.14534468948841095, 0.04199272394180298, -0.039511989802122116, -0.6494251489639282, -0.8219740390777588, 0.9050007462501526, -0.02358495444059372, -0.5689510703086853, -0.35081422328948975, -0.6755267977714539]} +{"t": 10.6643, "q": [-0.3116929829120636, 0.0014283061027526855, -0.004821082577109337, 0.6151177883148193, -0.32072728872299194, -0.003458494320511818, -0.3588287830352783, 0.014905179850757122, -0.014436463825404644, 0.6080529093742371, -0.2933518886566162, -0.01823360100388527, 0.03228786215186119, -0.053392063826322556, -0.01906546577811241, 0.12959741055965424, 0.12674516439437866, 0.025118935853242874, 1.2407747507095337, 0.1453326940536499, 0.04199272394180298, -0.03952397406101227, -0.6494011878967285, -0.8219500780105591, 0.9050726294517517, -0.023081617429852486, -0.569034993648529, -0.3509460389614105, -0.6755867004394531]} +{"t": 10.681, "q": [-0.3116929829120636, 0.0014027399010956287, -0.00483447453007102, 0.6151518821716309, -0.32073941826820374, -0.003422284033149481, -0.3588287830352783, 0.014896657317876816, -0.01446324773132801, 0.6080614328384399, -0.2933560311794281, -0.01824081316590309, 0.03223429247736931, -0.05338446423411369, -0.019060363993048668, 0.12966932356357574, 0.12676914036273956, 0.025142904371023178, 1.240750789642334, 0.1453326940536499, 0.04200470820069313, -0.03952397406101227, -0.6494491100311279, -0.8219380974769592, 0.9052044749259949, -0.022422485053539276, -0.5690829157829285, -0.3510778844356537, -0.6756346821784973]} +{"t": 10.6978, "q": [-0.31166741251945496, 0.0014027399010956287, -0.00483447453007102, 0.615143358707428, -0.3207312524318695, -0.0034367400221526623, -0.3588287830352783, 0.01492222398519516, -0.01446324773132801, 0.6080870032310486, -0.2933518588542938, -0.0182480625808239, 0.03224768489599228, -0.05338446423411369, -0.019060363993048668, 0.12958543002605438, 0.12676914036273956, 0.025118935853242874, 1.2407628297805786, 0.14534468948841095, 0.04201669245958328, -0.03954794257879257, -0.6494251489639282, -0.8219261169433594, 0.9053962230682373, -0.02178732119500637, -0.5691068768501282, -0.3511977195739746, -0.6756466627120972]} +{"t": 10.7145, "q": [-0.3116503655910492, 0.0013942178338766098, -0.004821082577109337, 0.6151348352432251, -0.3207271695137024, -0.0034439589362591505, -0.3588458299636841, 0.01492222398519516, -0.014476639218628407, 0.6081466674804688, -0.2933643162250519, -0.018240777775645256, 0.03222090005874634, -0.05339966341853142, -0.019070565700531006, 0.12959741055965424, 0.12675714492797852, 0.025142904371023178, 1.2407628297805786, 0.14529675245285034, 0.04200470820069313, -0.03953595831990242, -0.6494371294975281, -0.8219500780105591, 0.9055999517440796, -0.021032314747571945, -0.5691788196563721, -0.35123366117477417, -0.6756826043128967]} +{"t": 10.7312, "q": [-0.3117015063762665, 0.0014027399010956287, -0.00483447453007102, 0.6151944398880005, -0.3207230865955353, -0.0034511780831962824, -0.3588287830352783, 0.01492222398519516, -0.01446324773132801, 0.6081551909446716, -0.2933518588542938, -0.0182480625808239, 0.03222090005874634, -0.05339200794696808, -0.019055714830756187, 0.12966932356357574, 0.1267331838607788, 0.025142904371023178, 1.240750789642334, 0.14532071352005005, 0.04201669245958328, -0.03952397406101227, -0.6494491100311279, -0.8219380974769592, 0.9058636426925659, -0.02015746757388115, -0.5691788196563721, -0.35131755471229553, -0.6757065653800964]} +{"t": 10.7481, "q": [-0.31167593598365784, 0.0014197840355336666, -0.00483447453007102, 0.6152114868164062, -0.3207312524318695, -0.0034367400221526623, -0.3588287830352783, 0.01492222398519516, -0.014490030705928802, 0.6082148551940918, -0.2933518588542938, -0.0182480625808239, 0.03226107731461525, -0.05338446423411369, -0.019060363993048668, 0.12956145405769348, 0.1267331838607788, 0.02509496733546257, 1.240750789642334, 0.14529675245285034, 0.04199272394180298, -0.03953595831990242, -0.6494731307029724, -0.8219380974769592, 0.9060913324356079, -0.019450398162007332, -0.5692387223243713, -0.35136550664901733, -0.6756826043128967]} +{"t": 10.7648, "q": [-0.31167593598365784, 0.0014027399010956287, -0.004847866017371416, 0.6152200102806091, -0.3207271695137024, -0.0034439589362591505, -0.3588458299636841, 0.014888135716319084, -0.014490030705928802, 0.608274519443512, -0.2933560013771057, -0.01825527474284172, 0.032314643263816833, -0.05338446423411369, -0.019060363993048668, 0.12954947352409363, 0.12675714492797852, 0.025106951594352722, 1.240750789642334, 0.1452607959508896, 0.04199272394180298, -0.03954794257879257, -0.6494610905647278, -0.8219261169433594, 0.9061871767044067, -0.019114838913083076, -0.5693106055259705, -0.3513774871826172, -0.6756945848464966]} +{"t": 10.7815, "q": [-0.3116929829120636, 0.0014368281699717045, -0.004847866017371416, 0.615228533744812, -0.3207230865955353, -0.0034511780831962824, -0.3588458299636841, 0.014947790652513504, -0.014503423124551773, 0.608274519443512, -0.2933768033981323, -0.018204573541879654, 0.03228786215186119, -0.05338446423411369, -0.019060363993048668, 0.12953749299049377, 0.1267331838607788, 0.025118935853242874, 1.240750789642334, 0.14524881541728973, 0.04199272394180298, -0.03953595831990242, -0.6494851112365723, -0.8219021558761597, 0.9062350988388062, -0.01894705928862095, -0.5693585276603699, -0.3514733612537384, -0.6757185459136963]} +{"t": 10.7983, "q": [-0.3116844594478607, 0.0014453502371907234, -0.004861257970333099, 0.6152370572090149, -0.32073554396629333, -0.0034585732501000166, -0.3588287830352783, 0.01492222398519516, -0.014516814611852169, 0.6082915663719177, -0.29336851835250854, -0.01820460893213749, 0.03230125084519386, -0.05338446423411369, -0.019060363993048668, 0.12953749299049377, 0.1267331838607788, 0.025142904371023178, 1.240750789642334, 0.14521285891532898, 0.04199272394180298, -0.03953595831990242, -0.6494491100311279, -0.8218901753425598, 0.9062591195106506, -0.018851187080144882, -0.5693825483322144, -0.35148534178733826, -0.6757185459136963]} +{"t": 10.815, "q": [-0.3116844594478607, 0.0014453502371907234, -0.004861257970333099, 0.615228533744812, -0.32072320580482483, -0.003465713234618306, -0.3588458299636841, 0.014930746518075466, -0.014503423124551773, 0.6082659959793091, -0.29337266087532043, -0.01821182295680046, 0.03228786215186119, -0.05339961126446724, -0.01906081661581993, 0.12957344949245453, 0.12672120332717896, 0.025130920112133026, 1.240750789642334, 0.1452368199825287, 0.04199272394180298, -0.03952397406101227, -0.6494491100311279, -0.82187819480896, 0.9063190221786499, -0.01876729726791382, -0.5693945288658142, -0.3514733612537384, -0.6756945848464966]} +{"t": 10.8317, "q": [-0.3116929829120636, 0.0014538723044097424, -0.004847866017371416, 0.6152541041374207, -0.3207314610481262, -0.003465792164206505, -0.3588287830352783, 0.014896657317876816, -0.014490030705928802, 0.608274519443512, -0.2933768033981323, -0.018219035118818283, 0.03230125084519386, -0.05339966341853142, -0.019070565700531006, 0.12957344949245453, 0.12674516439437866, 0.025142904371023178, 1.240738868713379, 0.14527277648448944, 0.04198073968291283, -0.039559926837682724, -0.6494731307029724, -0.82187819480896, 0.9064748287200928, -0.01870737597346306, -0.5694065093994141, -0.3514973223209381, -0.6756945848464966]} +{"t": 10.8484, "q": [-0.31171002984046936, 0.0014623943716287613, -0.004861257970333099, 0.6152455806732178, -0.3207230865955353, -0.0034511780831962824, -0.35885435342788696, 0.014879613183438778, -0.014503423124551773, 0.6082659959793091, -0.2933768332004547, -0.018190113827586174, 0.032314643263816833, -0.053392063826322556, -0.01906546577811241, 0.12956145405769348, 0.12672120332717896, 0.025118935853242874, 1.240750789642334, 0.14529675245285034, 0.04199272394180298, -0.03954794257879257, -0.6494251489639282, -0.8218901753425598, 0.9066665768623352, -0.01865943893790245, -0.5694424510002136, -0.3514973223209381, -0.6757065653800964]} +{"t": 10.8651, "q": [-0.3117526173591614, 0.0014709164388477802, -0.004861257970333099, 0.6152370572090149, -0.3207230865955353, -0.0034511780831962824, -0.3588373064994812, 0.01486256904900074, -0.014490030705928802, 0.6082659959793091, -0.2933851480484009, -0.018190059810876846, 0.03227446973323822, -0.05339966341853142, -0.019070565700531006, 0.12956145405769348, 0.1267331838607788, 0.025118935853242874, 1.240750789642334, 0.14532071352005005, 0.04199272394180298, -0.039511989802122116, -0.6494731307029724, -0.82187819480896, 0.9069781303405762, -0.018551580607891083, -0.5694424510002136, -0.35148534178733826, -0.6757305264472961]} +{"t": 10.8818, "q": [-0.3117355704307556, 0.0014709164388477802, -0.004861257970333099, 0.6152455806732178, -0.3207271695137024, -0.0034439589362591505, -0.3588458299636841, 0.014854047447443008, -0.014476639218628407, 0.6082574725151062, -0.2933851480484009, -0.018190059810876846, 0.032314643263816833, -0.05341475456953049, -0.019061265513300896, 0.12953749299049377, 0.1267331838607788, 0.025142904371023178, 1.2407628297805786, 0.1452847570180893, 0.04199272394180298, -0.03953595831990242, -0.6494851112365723, -0.8218901753425598, 0.9074934720993042, -0.01835983246564865, -0.5694424510002136, -0.3515212833881378, -0.6757185459136963]} +{"t": 10.8986, "q": [-0.3117526173591614, 0.0014709164388477802, -0.004861257970333099, 0.6152370572090149, -0.3207312524318695, -0.0034367400221526623, -0.35885435342788696, 0.01483700331300497, -0.01446324773132801, 0.6082063317298889, -0.29338929057121277, -0.01818281225860119, 0.03227446973323822, -0.05339961126446724, -0.01906081661581993, 0.129633367061615, 0.12674516439437866, 0.025142904371023178, 1.240750789642334, 0.14532071352005005, 0.04199272394180298, -0.03954794257879257, -0.6494610905647278, -0.82187819480896, 0.9085480570793152, -0.018036259338259697, -0.5694544315338135, -0.35150930285453796, -0.6757065653800964]} +{"t": 10.9155, "q": [-0.31172704696655273, 0.0014709164388477802, -0.00483447453007102, 0.6152455806732178, -0.3207271695137024, -0.0034439589362591505, -0.35886287689208984, 0.014845524914562702, -0.01444985531270504, 0.6082063317298889, -0.2933560311794281, -0.01824081316590309, 0.03224768489599228, -0.05339200794696808, -0.019055714830756187, 0.12954947352409363, 0.1267331838607788, 0.025106951594352722, 1.240750789642334, 0.14529675245285034, 0.04198073968291283, -0.039511989802122116, -0.6494491100311279, -0.8219021558761597, 0.9099622368812561, -0.01756887510418892, -0.5694424510002136, -0.3514973223209381, -0.6756945848464966]} +{"t": 10.9322, "q": [-0.31172704696655273, 0.0014623943716287613, -0.004821082577109337, 0.615228533744812, -0.3207312524318695, -0.0034367400221526623, -0.35885435342788696, 0.014888135716319084, -0.01444985531270504, 0.6082233786582947, -0.2933643162250519, -0.018240777775645256, 0.032180726528167725, -0.0534072108566761, -0.019065916538238525, 0.12959741055965424, 0.12674516439437866, 0.025178857147693634, 1.240750789642334, 0.1452368199825287, 0.04200470820069313, -0.03952397406101227, -0.6494371294975281, -0.8218901753425598, 0.9129343032836914, -0.016622120514512062, -0.5693945288658142, -0.35150930285453796, -0.6757305264472961]} +{"t": 10.949, "q": [-0.31171852350234985, 0.0014453502371907234, -0.004807690624147654, 0.6152114868164062, -0.32073941826820374, -0.003422284033149481, -0.3588799238204956, 0.014879613183438778, -0.01444985531270504, 0.6082063317298889, -0.2933560311794281, -0.01824081316590309, 0.03203341364860535, -0.053407154977321625, -0.01905616745352745, 0.12959741055965424, 0.12672120332717896, 0.02515488862991333, 1.240750789642334, 0.14529675245285034, 0.04199272394180298, -0.03954794257879257, -0.6494970917701721, -0.8219021558761597, 0.9162299633026123, -0.015327824279665947, -0.5694184899330139, -0.3515212833881378, -0.6757065653800964]} +{"t": 10.9657, "q": [-0.31176114082336426, 0.0014623943716287613, -0.004821082577109337, 0.6152114868164062, -0.3207312524318695, -0.0034367400221526623, -0.35886287689208984, 0.014905179850757122, -0.01444985531270504, 0.6081892848014832, -0.2933560013771057, -0.01825527474284172, 0.03208698332309723, -0.053392063826322556, -0.01906546577811241, 0.1296093910932541, 0.12674516439437866, 0.025130920112133026, 1.240750789642334, 0.1453326940536499, 0.04199272394180298, -0.03954794257879257, -0.6497128009796143, -0.8219021558761597, 0.9188305735588074, -0.013997575268149376, -0.5694065093994141, -0.35150930285453796, -0.675742506980896]} +{"t": 10.9824, "q": [-0.3117526173591614, 0.0014453502371907234, -0.00483447453007102, 0.6152455806732178, -0.3207312524318695, -0.0034367400221526623, -0.3588799238204956, 0.014888135716319084, -0.01446324773132801, 0.6081637144088745, -0.2933851480484009, -0.018190059810876846, 0.032167334109544754, -0.05339200794696808, -0.019055714830756187, 0.1296573281288147, 0.1267331838607788, 0.025142904371023178, 1.2407628297805786, 0.1452607959508896, 0.04201669245958328, -0.039559926837682724, -0.649880588054657, -0.8218901753425598, 0.9214191436767578, -0.012823120690882206, -0.5694065093994141, -0.3515212833881378, -0.6757544875144958]} +{"t": 10.9991, "q": [-0.31176114082336426, 0.0014623943716287613, -0.004847866017371416, 0.6152200102806091, -0.32073137164115906, -0.003451275173574686, -0.3588714003562927, 0.01486256904900074, -0.014476639218628407, 0.6081381440162659, -0.2933809757232666, -0.018197325989603996, 0.03220750764012337, -0.053392063826322556, -0.01906546577811241, 0.12964534759521484, 0.12675714492797852, 0.025142904371023178, 1.2407628297805786, 0.14529675245285034, 0.04199272394180298, -0.03954794257879257, -0.6501801609992981, -0.8218901753425598, 0.9239717721939087, -0.012080099433660507, -0.5694065093994141, -0.3515212833881378, -0.6758144497871399]} +{"t": 11.016, "q": [-0.31177818775177, 0.0014623943716287613, -0.004861257970333099, 0.6152200102806091, -0.320735365152359, -0.003429502947255969, -0.3588714003562927, 0.014854047447443008, -0.01446324773132801, 0.6081551909446716, -0.2933851182460785, -0.01820453815162182, 0.03223429247736931, -0.05339966341853142, -0.019070565700531006, 0.12956145405769348, 0.12675714492797852, 0.025142904371023178, 1.2407747507095337, 0.14529675245285034, 0.04200470820069313, -0.03953595831990242, -0.6502400636672974, -0.82187819480896, 0.9256495833396912, -0.011696604080498219, -0.5694065093994141, -0.3515452742576599, -0.6758384108543396]} +{"t": 11.0327, "q": [-0.3117526173591614, 0.0014538723044097424, -0.004807690624147654, 0.6152200102806091, -0.320735365152359, -0.003429502947255969, -0.3588714003562927, 0.014879613183438778, -0.01444985531270504, 0.6081722378730774, -0.29336434602737427, -0.018226318061351776, 0.03220750764012337, -0.05337686464190483, -0.019055265933275223, 0.12958543002605438, 0.1267331838607788, 0.025142904371023178, 1.2407628297805786, 0.1452368199825287, 0.04199272394180298, -0.03954794257879257, -0.6502161026000977, -0.8218541741371155, 0.9265004396438599, -0.011564777232706547, -0.56934654712677, -0.3515212833881378, -0.675886332988739]} +{"t": 11.0495, "q": [-0.31176966428756714, 0.0014453502371907234, -0.004821082577109337, 0.6152029633522034, -0.3207312524318695, -0.0034367400221526623, -0.3588799238204956, 0.014879613183438778, -0.01446324773132801, 0.6081551909446716, -0.29337263107299805, -0.01824074238538742, 0.0321003757417202, -0.05338446423411369, -0.019060363993048668, 0.12958543002605438, 0.1267092078924179, 0.02515488862991333, 1.240750789642334, 0.1452607959508896, 0.04199272394180298, -0.03954794257879257, -0.6501561999320984, -0.8218541741371155, 0.9266921877861023, -0.011492871679365635, -0.5693825483322144, -0.35153329372406006, -0.6758983135223389]} +{"t": 11.0662, "q": [-0.31176114082336426, 0.0014623943716287613, -0.004807690624147654, 0.6151859164237976, -0.3207436203956604, -0.0034296002704650164, -0.3588799238204956, 0.014879613183438778, -0.014423071406781673, 0.6081381440162659, -0.29336434602737427, -0.018226318061351776, 0.03203341364860535, -0.05341475456953049, -0.019061265513300896, 0.1296093910932541, 0.1267092078924179, 0.025142904371023178, 1.2407628297805786, 0.1452607959508896, 0.04198073968291283, -0.03953595831990242, -0.6501801609992981, -0.8218901753425598, 0.9266802072525024, -0.01152882445603609, -0.5694304704666138, -0.3515212833881378, -0.6759342551231384]} +{"t": 11.083, "q": [-0.31172704696655273, 0.0014538723044097424, -0.004807690624147654, 0.6151944398880005, -0.3207312524318695, -0.0034367400221526623, -0.3588799238204956, 0.014879613183438778, -0.014423071406781673, 0.6081807613372803, -0.29336848855018616, -0.0182335302233696, 0.032020021229982376, -0.05338446423411369, -0.019060363993048668, 0.129633367061615, 0.12672120332717896, 0.02515488862991333, 1.2407628297805786, 0.1453087329864502, 0.04198073968291283, -0.03954794257879257, -0.6503599286079407, -0.82187819480896, 0.9266442656517029, -0.01152882445603609, -0.5694065093994141, -0.3515212833881378, -0.6759342551231384]} +{"t": 11.0997, "q": [-0.3117355704307556, 0.0014623943716287613, -0.004821082577109337, 0.6151944398880005, -0.3207312524318695, -0.0034367400221526623, -0.3588714003562927, 0.01486256904900074, -0.01446324773132801, 0.6081551909446716, -0.29337263107299805, -0.01824074238538742, 0.03206019848585129, -0.05339966341853142, -0.019070565700531006, 0.12962138652801514, 0.12676914036273956, 0.025130920112133026, 1.2407747507095337, 0.14529675245285034, 0.04199272394180298, -0.03954794257879257, -0.6504917740821838, -0.8219141364097595, 0.926632285118103, -0.01152882445603609, -0.5694065093994141, -0.3515452742576599, -0.6759462356567383]} +{"t": 11.1165, "q": [-0.31171852350234985, 0.0014623943716287613, -0.00483447453007102, 0.6152200102806091, -0.32073545455932617, -0.003444056259468198, -0.35886287689208984, 0.01486256904900074, -0.01446324773132801, 0.6081892848014832, -0.29336017370224, -0.018233565613627434, 0.03211376443505287, -0.053392063826322556, -0.01906546577811241, 0.1296573281288147, 0.12674516439437866, 0.025142904371023178, 1.240738868713379, 0.1453566700220108, 0.04201669245958328, -0.03953595831990242, -0.6506715416908264, -0.8218901753425598, 0.9266083240509033, -0.011552792973816395, -0.5694065093994141, -0.35155725479125977, -0.6759342551231384]} +{"t": 11.1332, "q": [-0.31171852350234985, 0.0014538723044097424, -0.004847866017371416, 0.615228533744812, -0.3207314610481262, -0.003465792164206505, -0.35885435342788696, 0.014888135716319084, -0.014476639218628407, 0.6082233786582947, -0.2933851182460785, -0.01820453815162182, 0.03208698332309723, -0.05340726673603058, -0.01907566748559475, 0.1296093910932541, 0.12676914036273956, 0.025118935853242874, 1.240750789642334, 0.14532071352005005, 0.04201669245958328, -0.03953595831990242, -0.650851309299469, -0.8219021558761597, 0.926632285118103, -0.011552792973816395, -0.5694065093994141, -0.35153329372406006, -0.6759222745895386]} +{"t": 11.15, "q": [-0.3116929829120636, 0.0014709164388477802, -0.004847866017371416, 0.6152455806732178, -0.3207230865955353, -0.0034511780831962824, -0.35885435342788696, 0.014888135716319084, -0.01446324773132801, 0.6082233786582947, -0.2933768033981323, -0.018204573541879654, 0.0321003757417202, -0.05340726673603058, -0.01907566748559475, 0.12958543002605438, 0.12676914036273956, 0.025118935853242874, 1.2407628297805786, 0.14532071352005005, 0.04201669245958328, -0.03954794257879257, -0.6509112119674683, -0.8218901753425598, 0.926632285118103, -0.01158874575048685, -0.5694304704666138, -0.3515692353248596, -0.6759222745895386]} +{"t": 11.1667, "q": [-0.31167593598365784, 0.0014879610389471054, -0.004847866017371416, 0.6152626276016235, -0.3207271695137024, -0.0034439589362591505, -0.3588373064994812, 0.014879613183438778, -0.01446324773132801, 0.6082915663719177, -0.29337266087532043, -0.01821182295680046, 0.03208698332309723, -0.05341486260294914, -0.019080767408013344, 0.12958543002605438, 0.12674516439437866, 0.025118935853242874, 1.2407628297805786, 0.1453087329864502, 0.04200470820069313, -0.03953595831990242, -0.6509711146354675, -0.8219380974769592, 0.926632285118103, -0.01158874575048685, -0.5694184899330139, -0.35155725479125977, -0.6759222745895386]} +{"t": 11.1835, "q": [-0.31167593598365784, 0.0014879610389471054, -0.004847866017371416, 0.6152881979942322, -0.32073137164115906, -0.003451275173574686, -0.3588373064994812, 0.01486256904900074, -0.01444985531270504, 0.6082659959793091, -0.2933851480484009, -0.018190059810876846, 0.03206019848585129, -0.05340726673603058, -0.01907566748559475, 0.129633367061615, 0.12675714492797852, 0.025118935853242874, 1.240750789642334, 0.14532071352005005, 0.04200470820069313, -0.03954794257879257, -0.6509950757026672, -0.8219860196113586, 0.926632285118103, -0.011600730009377003, -0.5694065093994141, -0.35155725479125977, -0.6759582161903381]} +{"t": 11.2003, "q": [-0.3117440938949585, 0.0014964831061661243, -0.004847866017371416, 0.6152967214584351, -0.3207271695137024, -0.0034439589362591505, -0.3588373064994812, 0.014854047447443008, -0.014436463825404644, 0.6082319021224976, -0.29338929057121277, -0.01818281225860119, 0.03207359090447426, -0.053407374769449234, -0.019095169380307198, 0.12957344949245453, 0.12676914036273956, 0.025142904371023178, 1.240750789642334, 0.14534468948841095, 0.04200470820069313, -0.03953595831990242, -0.6509950757026672, -0.8219620585441589, 0.9266562461853027, -0.011576761491596699, -0.5694065093994141, -0.35155725479125977, -0.6759222745895386]} +{"t": 11.217, "q": [-0.31167593598365784, 0.0014964831061661243, -0.00483447453007102, 0.6153052449226379, -0.3207312524318695, -0.0034367400221526623, -0.3588458299636841, 0.014845524914562702, -0.01444985531270504, 0.608274519443512, -0.29338929057121277, -0.01819727197289467, 0.03208698332309723, -0.05341486260294914, -0.019080767408013344, 0.1296093910932541, 0.12674516439437866, 0.025142904371023178, 1.2407628297805786, 0.1452847570180893, 0.04199272394180298, -0.03953595831990242, -0.6510070562362671, -0.8219740390777588, 0.9266802072525024, -0.01158874575048685, -0.5694065093994141, -0.3515692353248596, -0.6759222745895386]} +{"t": 11.2338, "q": [-0.3117015063762665, 0.0014879610389471054, -0.004847866017371416, 0.6153478622436523, -0.32073962688446045, -0.0034513543359935284, -0.3588458299636841, 0.014819959178566933, -0.01444985531270504, 0.6082659959793091, -0.2933851480484009, -0.018190059810876846, 0.03207359090447426, -0.05340726673603058, -0.01907566748559475, 0.1296093910932541, 0.12674516439437866, 0.025142904371023178, 1.240750789642334, 0.1452607959508896, 0.04198073968291283, -0.03952397406101227, -0.6510070562362671, -0.8220339417457581, 0.9267041683197021, -0.01158874575048685, -0.5694184899330139, -0.3515212833881378, -0.6759222745895386]} +{"t": 11.2505, "q": [-0.3116844594478607, 0.0014964831061661243, -0.00483447453007102, 0.6153649091720581, -0.3207312524318695, -0.0034367400221526623, -0.3588287830352783, 0.014819959178566933, -0.01444985531270504, 0.608274519443512, -0.2933851480484009, -0.018190059810876846, 0.03206019848585129, -0.05341486260294914, -0.019080767408013344, 0.1296093910932541, 0.12675714492797852, 0.025142904371023178, 1.240750789642334, 0.14532071352005005, 0.041968755424022675, -0.03952397406101227, -0.6509830951690674, -0.8220219612121582, 0.9267281293869019, -0.011612714268267155, -0.5694424510002136, -0.35153329372406006, -0.6759222745895386]} +{"t": 11.2672, "q": [-0.31166741251945496, 0.0014964831061661243, -0.00483447453007102, 0.6153819561004639, -0.3207230865955353, -0.0034511780831962824, -0.35881173610687256, 0.01483700331300497, -0.01446324773132801, 0.608274519443512, -0.29339343309402466, -0.01819002442061901, 0.03207359090447426, -0.0534224659204483, -0.019085869193077087, 0.12957344949245453, 0.12674516439437866, 0.025142904371023178, 1.240750789642334, 0.1452607959508896, 0.041968755424022675, -0.03953595831990242, -0.6509711146354675, -0.8220099806785583, 0.926776111125946, -0.011636682786047459, -0.5694424510002136, -0.35155725479125977, -0.6759102940559387]} +{"t": 11.2841, "q": [-0.31176114082336426, 0.0015135272406041622, -0.004847866017371416, 0.6154160499572754, -0.3207271695137024, -0.0034439589362591505, -0.35882025957107544, 0.014819959178566933, -0.01446324773132801, 0.6082574725151062, -0.2933809757232666, -0.018197325989603996, 0.03208698332309723, -0.05339217558503151, -0.01908496767282486, 0.129633367061615, 0.1267331838607788, 0.025142904371023178, 1.240738868713379, 0.1453087329864502, 0.04195677116513252, -0.03954794257879257, -0.6509711146354675, -0.8219740390777588, 0.926776111125946, -0.011636682786047459, -0.5694783926010132, -0.3515452742576599, -0.6758623719215393]} +{"t": 11.3008, "q": [-0.3117355704307556, 0.0015050051733851433, -0.00483447453007102, 0.6154330968856812, -0.3207312524318695, -0.0034367400221526623, -0.35881173610687256, 0.01480291411280632, -0.014436463825404644, 0.6082830429077148, -0.29338929057121277, -0.01819727197289467, 0.03208698332309723, -0.0534224659204483, -0.019085869193077087, 0.12964534759521484, 0.12674516439437866, 0.025142904371023178, 1.240750789642334, 0.14527277648448944, 0.04198073968291283, -0.03953595831990242, -0.6509591341018677, -0.8219620585441589, 0.9267521500587463, -0.011636682786047459, -0.5695023536682129, -0.35155725479125977, -0.6758264303207397]} +{"t": 11.3176, "q": [-0.3117015063762665, 0.0014879610389471054, -0.00483447453007102, 0.6154330968856812, -0.3207312524318695, -0.0034367400221526623, -0.35882025957107544, 0.01480291411280632, -0.014436463825404644, 0.6082915663719177, -0.29337266087532043, -0.01819736137986183, 0.03206019848585129, -0.05341486260294914, -0.019080767408013344, 0.12954947352409363, 0.12676914036273956, 0.02515488862991333, 1.240750789642334, 0.1452847570180893, 0.04198073968291283, -0.03954794257879257, -0.6509591341018677, -0.8219860196113586, 0.9267880916595459, -0.01164866704493761, -0.5695742964744568, -0.35155725479125977, -0.6756945848464966]} +{"t": 11.3343, "q": [-0.3117015063762665, 0.0015050051733851433, -0.004861257970333099, 0.6154842376708984, -0.3207271695137024, -0.0034439589362591505, -0.3588032126426697, 0.01480291411280632, -0.014436463825404644, 0.6083256602287292, -0.29334771633148193, -0.018226388841867447, 0.03203341364860535, -0.053407374769449234, -0.019095169380307198, 0.1296093910932541, 0.12678112089633942, 0.025142904371023178, 1.240738868713379, 0.14534468948841095, 0.04199272394180298, -0.039559926837682724, -0.650935173034668, -0.8219860196113586, 0.9269198775291443, -0.011672635562717915, -0.5696701407432556, -0.3515692353248596, -0.6754788756370544]} +{"t": 11.351, "q": [-0.31171002984046936, 0.0015135272406041622, -0.00483447453007102, 0.6154842376708984, -0.3207271695137024, -0.0034439589362591505, -0.3587946891784668, 0.014845524914562702, -0.014423071406781673, 0.6083171367645264, -0.2933518886566162, -0.01823360100388527, 0.03203341364860535, -0.05341486260294914, -0.019080767408013344, 0.12959741055965424, 0.12678112089633942, 0.025142904371023178, 1.2407628297805786, 0.1453326940536499, 0.04199272394180298, -0.03952397406101227, -0.650935173034668, -0.8220219612121582, 0.9269438982009888, -0.01170858833938837, -0.5697780251502991, -0.3515452742576599, -0.6752991080284119]} +{"t": 11.3678, "q": [-0.31167593598365784, 0.0014879610389471054, -0.004807690624147654, 0.6154927611351013, -0.32073554396629333, -0.0034585732501000166, -0.3587946891784668, 0.014828480780124664, -0.014409679919481277, 0.6083086133003235, -0.29334771633148193, -0.018240848556160927, 0.03199324011802673, -0.0534224659204483, -0.019085869193077087, 0.12962138652801514, 0.12678112089633942, 0.025178857147693634, 1.2407867908477783, 0.1453326940536499, 0.04198073968291283, -0.03953595831990242, -0.6508992314338684, -0.8220699429512024, 0.9270157814025879, -0.011672635562717915, -0.5697900056838989, -0.3515692353248596, -0.675143301486969]} +{"t": 11.3845, "q": [-0.3116844594478607, 0.0014964831061661243, -0.004780906718224287, 0.6154842376708984, -0.3207271695137024, -0.0034439589362591505, -0.3588032126426697, 0.014819959178566933, -0.014409679919481277, 0.6083341836929321, -0.29334357380867004, -0.018233636394143105, 0.03197984769940376, -0.053414974361658096, -0.019100267440080643, 0.12959741055965424, 0.12678112089633942, 0.025142904371023178, 1.240750789642334, 0.14534468948841095, 0.042028676718473434, -0.03954794257879257, -0.6508752703666687, -0.8220699429512024, 0.9270157814025879, -0.011720572598278522, -0.569861888885498, -0.3515812158584595, -0.6749874949455261]} +{"t": 11.4012, "q": [-0.31167593598365784, 0.0014879610389471054, -0.004780906718224287, 0.6154757142066956, -0.3207271695137024, -0.0034439589362591505, -0.35881173610687256, 0.014854047447443008, -0.014409679919481277, 0.6083682775497437, -0.29333943128585815, -0.018226424232125282, 0.03195306286215782, -0.0534224659204483, -0.019085869193077087, 0.12966932356357574, 0.12678112089633942, 0.025166872888803482, 1.2407747507095337, 0.14529675245285034, 0.04200470820069313, -0.03952397406101227, -0.650851309299469, -0.8221298456192017, 0.9270157814025879, -0.011696604080498219, -0.5701015591621399, -0.3515931963920593, -0.6746639609336853]} +{"t": 11.418, "q": [-0.3116929829120636, 0.0015135272406041622, -0.00479429867118597, 0.6155012845993042, -0.3207230865955353, -0.0034511780831962824, -0.3587861955165863, 0.014879613183438778, -0.014409679919481277, 0.6083512306213379, -0.2933352589607239, -0.01823367178440094, 0.03193967044353485, -0.0534224659204483, -0.019085869193077087, 0.12962138652801514, 0.12678112089633942, 0.025118935853242874, 1.240750789642334, 0.1453566700220108, 0.04199272394180298, -0.03953595831990242, -0.6508752703666687, -0.8222856521606445, 0.9270157814025879, -0.011672635562717915, -0.5705090165138245, -0.3515812158584595, -0.674544095993042]} +{"t": 11.4347, "q": [-0.31171002984046936, 0.0015050051733851433, -0.004807690624147654, 0.61551833152771, -0.3207271695137024, -0.0034439589362591505, -0.3587946891784668, 0.01486256904900074, -0.014423071406781673, 0.608342707157135, -0.2933726906776428, -0.018182901665568352, 0.03196645528078079, -0.0534224659204483, -0.019085869193077087, 0.12959741055965424, 0.12680508196353912, 0.025142904371023178, 1.240750789642334, 0.14532071352005005, 0.04198073968291283, -0.03953595831990242, -0.6509231925010681, -0.8223575353622437, 0.927003800868988, -0.011660651303827763, -0.5713359713554382, -0.3515692353248596, -0.6743763089179993]} +{"t": 11.4515, "q": [-0.3116929829120636, 0.0015135272406041622, -0.004847866017371416, 0.6155439019203186, -0.3207271695137024, -0.0034439589362591505, -0.3587946891784668, 0.014854047447443008, -0.01446324773132801, 0.608342707157135, -0.29336434602737427, -0.018197396770119667, 0.032006628811359406, -0.0534224659204483, -0.019085869193077087, 0.12964534759521484, 0.12678112089633942, 0.025142904371023178, 1.240750789642334, 0.1453087329864502, 0.04199272394180298, -0.03952397406101227, -0.6509711146354675, -0.8225013613700867, 0.9269918203353882, -0.011612714268267155, -0.5724264979362488, -0.3515452742576599, -0.6741605997085571]} +{"t": 11.4682, "q": [-0.3117015063762665, 0.0015135272406041622, -0.004821082577109337, 0.6155353784561157, -0.3207271695137024, -0.0034439589362591505, -0.3587776720523834, 0.01483700331300497, -0.014476639218628407, 0.608342707157135, -0.29336851835250854, -0.01820460893213749, 0.03199324011802673, -0.053437668830156326, -0.019096070900559425, 0.12959741055965424, 0.12678112089633942, 0.025142904371023178, 1.2407149076461792, 0.14534468948841095, 0.04199272394180298, -0.03953595831990242, -0.6510190963745117, -0.8225972056388855, 0.9269678592681885, -0.011576761491596699, -0.5734811425209045, -0.35155725479125977, -0.6740767359733582]} +{"t": 11.4849, "q": [-0.3116929829120636, 0.0015220493078231812, -0.00483447453007102, 0.6155353784561157, -0.3207271695137024, -0.0034439589362591505, -0.3587946891784668, 0.014819959178566933, -0.014396287500858307, 0.6083341836929321, -0.29336851835250854, -0.01817568950355053, 0.03199324011802673, -0.053430065512657166, -0.019090967252850533, 0.12956145405769348, 0.12679310142993927, 0.025142904371023178, 1.2407628297805786, 0.14532071352005005, 0.04198073968291283, -0.03953595831990242, -0.6510909795761108, -0.8226811289787292, 0.9269198775291443, -0.011576761491596699, -0.5750390887260437, -0.3515692353248596, -0.6740047931671143]} +{"t": 11.5017, "q": [-0.31167593598365784, 0.0015305713750422, -0.004807690624147654, 0.6155353784561157, -0.3207312524318695, -0.0034367400221526623, -0.3587946891784668, 0.01483700331300497, -0.014409679919481277, 0.6083341836929321, -0.2933768332004547, -0.018175635486841202, 0.03196645528078079, -0.053437668830156326, -0.019096070900559425, 0.12958543002605438, 0.12679310142993927, 0.025130920112133026, 1.2407628297805786, 0.14532071352005005, 0.04198073968291283, -0.03953595831990242, -0.651222825050354, -0.822932779788971, 0.9268959164619446, -0.011600730009377003, -0.5768367052078247, -0.3515931963920593, -0.6739688515663147]} +{"t": 11.5184, "q": [-0.3117015063762665, 0.001539093442261219, -0.00483447453007102, 0.6155268549919128, -0.32073941826820374, -0.003422284033149481, -0.3587946891784668, 0.01477734837681055, -0.014409679919481277, 0.6083000898361206, -0.2933768332004547, -0.018175635486841202, 0.03193967044353485, -0.053437668830156326, -0.019096070900559425, 0.1296093910932541, 0.12678112089633942, 0.025142904371023178, 1.240738868713379, 0.1452847570180893, 0.04198073968291283, -0.03954794257879257, -0.6512707471847534, -0.8232923150062561, 0.9269198775291443, -0.011600730009377003, -0.5778553485870361, -0.3516291379928589, -0.6739089488983154]} +{"t": 11.5351, "q": [-0.31171852350234985, 0.001539093442261219, -0.00483447453007102, 0.6155353784561157, -0.32073545455932617, -0.003444056259468198, -0.3587946891784668, 0.014794392511248589, -0.014409679919481277, 0.6083171367645264, -0.2933726906776428, -0.018182901665568352, 0.03196645528078079, -0.05344526469707489, -0.01910116896033287, 0.12962138652801514, 0.12682905793190002, 0.025142904371023178, 1.240738868713379, 0.1453326940536499, 0.041968755424022675, -0.03952397406101227, -0.651390552520752, -0.8236398696899414, 0.9269438982009888, -0.011600730009377003, -0.5789099931716919, -0.3516051769256592, -0.673717200756073]} +{"t": 11.5519, "q": [-0.3116844594478607, 0.001539093442261219, -0.004847866017371416, 0.6155609488487244, -0.3207395374774933, -0.0034368191845715046, -0.35876914858818054, 0.014828480780124664, -0.014409679919481277, 0.6083086133003235, -0.29336851835250854, -0.01820460893213749, 0.03197984769940376, -0.053445376455783844, -0.01912067085504532, 0.1296573281288147, 0.12681707739830017, 0.025142904371023178, 1.2407747507095337, 0.1453087329864502, 0.04198073968291283, -0.03954794257879257, -0.6515823006629944, -0.8238675594329834, 0.9269438982009888, -0.011576761491596699, -0.5794612765312195, -0.3516291379928589, -0.6735134720802307]} +{"t": 11.5686, "q": [-0.3117015063762665, 0.001539093442261219, -0.00483447453007102, 0.6155694127082825, -0.32073545455932617, -0.003444056259468198, -0.35876062512397766, 0.014819959178566933, -0.014423071406781673, 0.6083171367645264, -0.29336434602737427, -0.018197396770119667, 0.03196645528078079, -0.053506068885326385, -0.019141973927617073, 0.12959741055965424, 0.12682905793190002, 0.025142904371023178, 1.2407628297805786, 0.1452847570180893, 0.04198073968291283, -0.03952397406101227, -0.6518459916114807, -0.8239514231681824, 0.9269678592681885, -0.011564777232706547, -0.5800005197525024, -0.35166510939598083, -0.673429548740387]} +{"t": 11.5854, "q": [-0.3116844594478607, 0.0015305713750422, -0.004807690624147654, 0.6155694127082825, -0.320735365152359, -0.003429502947255969, -0.3587435781955719, 0.014811436645686626, -0.014436463825404644, 0.6083256602287292, -0.2933602035045624, -0.018190184608101845, 0.03197984769940376, -0.05352127179503441, -0.01915217563509941, 0.12966932356357574, 0.12685301899909973, 0.025142904371023178, 1.240750789642334, 0.14529675245285034, 0.04198073968291283, -0.03953595831990242, -0.6521815657615662, -0.8240593075752258, 0.9270277619361877, -0.01158874575048685, -0.5804799199104309, -0.3517010509967804, -0.673345685005188]} +{"t": 11.6023, "q": [-0.3116929829120636, 0.0015050051733851433, -0.004821082577109337, 0.615603506565094, -0.320735365152359, -0.003429502947255969, -0.35871800780296326, 0.014845524914562702, -0.014423071406781673, 0.6083086133003235, -0.2933602035045624, -0.018190184608101845, 0.03195306286215782, -0.05352127179503441, -0.01915217563509941, 0.1297052651643753, 0.12687699496746063, 0.025142904371023178, 1.2407628297805786, 0.1453087329864502, 0.04200470820069313, -0.03953595831990242, -0.652505099773407, -0.8240712881088257, 0.9270157814025879, -0.011636682786047459, -0.5810312032699585, -0.35180890560150146, -0.6732857823371887]} +{"t": 11.619, "q": [-0.3116588890552521, 0.0015135272406041622, -0.004821082577109337, 0.6156461238861084, -0.32074370980262756, -0.003444117261096835, -0.35868391394615173, 0.01483700331300497, -0.014423071406781673, 0.6083000898361206, -0.29336851835250854, -0.01817568950355053, 0.03199324011802673, -0.05352887511253357, -0.019157277420163155, 0.12958543002605438, 0.12688897550106049, 0.025178857147693634, 1.2407628297805786, 0.14532071352005005, 0.04200470820069313, -0.03952397406101227, -0.653104305267334, -0.8240593075752258, 0.9270157814025879, -0.011624698527157307, -0.5819180011749268, -0.3519047796726227, -0.6731659173965454]} +{"t": 11.6357, "q": [-0.3116844594478607, 0.0015135272406041622, -0.004807690624147654, 0.6157143115997314, -0.320735365152359, -0.003429502947255969, -0.3586498200893402, 0.014845524914562702, -0.014396287500858307, 0.6083256602287292, -0.2933560907840729, -0.01815403439104557, 0.03199324011802673, -0.05355927348136902, -0.01917767897248268, 0.12954947352409363, 0.12690095603466034, 0.025178857147693634, 1.240750789642334, 0.1453087329864502, 0.04200470820069313, -0.03954794257879257, -0.6540151238441467, -0.8242270946502686, 0.9270637035369873, -0.011600730009377003, -0.5836917161941528, -0.3520006537437439, -0.6729502081871033]} +{"t": 11.6526, "q": [-0.31166741251945496, 0.0014964831061661243, -0.004821082577109337, 0.6157569289207458, -0.3207477927207947, -0.0034368981141597033, -0.35863277316093445, 0.014828480780124664, -0.014396287500858307, 0.6083171367645264, -0.2933560907840729, -0.01815403439104557, 0.03199324011802673, -0.05365048348903656, -0.019238825887441635, 0.12958543002605438, 0.126960888504982, 0.025178857147693634, 1.240738868713379, 0.14532071352005005, 0.04198073968291283, -0.03953595831990242, -0.6552255153656006, -0.8242510557174683, 0.9270637035369873, -0.011504855938255787, -0.5859566926956177, -0.35203662514686584, -0.6726146340370178]} +{"t": 11.6694, "q": [-0.31166741251945496, 0.0014879610389471054, -0.004807690624147654, 0.6157910227775574, -0.320735365152359, -0.003429502947255969, -0.3586157262325287, 0.014854047447443008, -0.01444985531270504, 0.6083341836929321, -0.2933436334133148, -0.018132396042346954, 0.032006628811359406, -0.053718894720077515, -0.019284682348370552, 0.12956145405769348, 0.12708072364330292, 0.02515488862991333, 1.240750789642334, 0.1452847570180893, 0.04199272394180298, -0.03952397406101227, -0.6563640236854553, -0.8242510557174683, 0.927087664604187, -0.01152882445603609, -0.5876345038414001, -0.3521684408187866, -0.6722790598869324]} +{"t": 11.6861, "q": [-0.3116503655910492, 0.0014709164388477802, -0.004807690624147654, 0.6158847808837891, -0.320735365152359, -0.003429502947255969, -0.3585646152496338, 0.01486256904900074, -0.01444985531270504, 0.6083341836929321, -0.2933436334133148, -0.018132396042346954, 0.032006628811359406, -0.05383290722966194, -0.019361106678843498, 0.12958543002605438, 0.12712866067886353, 0.02515488862991333, 1.240750789642334, 0.1452847570180893, 0.04200470820069313, -0.03952397406101227, -0.6580058932304382, -0.8246345520019531, 0.9271955490112305, -0.011516840197145939, -0.588988721370697, -0.35233622789382935, -0.671859622001648]} +{"t": 11.703, "q": [-0.31163331866264343, 0.0014794389717280865, -0.00483447453007102, 0.6159699559211731, -0.3207436203956604, -0.0034296002704650164, -0.358547568321228, 0.014819959178566933, -0.014409679919481277, 0.6083341836929321, -0.2933644652366638, -0.018081678077578545, 0.03196645528078079, -0.053901318460702896, -0.019406963139772415, 0.12962138652801514, 0.12722453474998474, 0.025178857147693634, 1.2407628297805786, 0.14524881541728973, 0.04198073968291283, -0.03952397406101227, -0.6596836447715759, -0.8254374861717224, 0.92723149061203, -0.011552792973816395, -0.5898275971412659, -0.3525998890399933, -0.6713322997093201]} +{"t": 11.7197, "q": [-0.3115992248058319, 0.0014964831061661243, -0.004821082577109337, 0.6160210967063904, -0.32073941826820374, -0.003422284033149481, -0.35853052139282227, 0.014828480780124664, -0.014409679919481277, 0.608342707157135, -0.2934851050376892, -0.01782803423702717, 0.03197984769940376, -0.05402293801307678, -0.019488483667373657, 0.12957344949245453, 0.12732040882110596, 0.025178857147693634, 1.240750789642334, 0.1452607959508896, 0.04200470820069313, -0.039511989802122116, -0.6613734364509583, -0.8265280723571777, 0.9272794127464294, -0.011576761491596699, -0.5902590751647949, -0.35298335552215576, -0.670661211013794]} +{"t": 11.7365, "q": [-0.31158217787742615, 0.0014964831061661243, -0.00483447453007102, 0.6160807609558105, -0.3207312524318695, -0.0034367400221526623, -0.3585134744644165, 0.014828480780124664, -0.014409679919481277, 0.608342707157135, -0.2935600280761719, -0.017625195905566216, 0.03196645528078079, -0.054266173392534256, -0.019651522859930992, 0.1296093910932541, 0.1274881809949875, 0.025178857147693634, 1.2407268285751343, 0.1452368199825287, 0.04198073968291283, -0.03952397406101227, -0.6630991697311401, -0.8277264833450317, 0.9272794127464294, -0.011576761491596699, -0.5906665325164795, -0.35337886214256287, -0.6698582768440247]} +{"t": 11.7533, "q": [-0.3115992248058319, 0.001539093442261219, -0.004861257970333099, 0.616191565990448, -0.32073941826820374, -0.003422284033149481, -0.3584623336791992, 0.01483700331300497, -0.014423071406781673, 0.6083597540855408, -0.2935517728328705, -0.01756737194955349, 0.03196645528078079, -0.054471395909786224, -0.019789261743426323, 0.1296573281288147, 0.12766794860363007, 0.025178857147693634, 1.2407268285751343, 0.14516492187976837, 0.04199272394180298, -0.03952397406101227, -0.664968729019165, -0.8287091851234436, 0.9273033738136292, -0.011564777232706547, -0.5910500288009644, -0.353594571352005, -0.6687437295913696]} +{"t": 11.7701, "q": [-0.31159070134162903, 0.001581704244017601, -0.004861257970333099, 0.6162938475608826, -0.320735365152359, -0.003429502947255969, -0.3584623336791992, 0.01480291411280632, -0.01444985531270504, 0.608342707157135, -0.29355600476264954, -0.01748780347406864, 0.03189949691295624, -0.054638609290122986, -0.019901737570762634, 0.12964534759521484, 0.12787167727947235, 0.025178857147693634, 1.2407268285751343, 0.14521285891532898, 0.04198073968291283, -0.039511989802122116, -0.6674973964691162, -0.8295600414276123, 0.9273992776870728, -0.011444934643805027, -0.5915173888206482, -0.35381028056144714, -0.6672697067260742]} +{"t": 11.7868, "q": [-0.31158217787742615, 0.0016328366473317146, -0.00483447453007102, 0.6163619756698608, -0.3207477927207947, -0.0034368981141597033, -0.3585219979286194, 0.01477734837681055, -0.01436950359493494, 0.608342707157135, -0.2936350107192993, -0.017364516854286194, 0.03175218403339386, -0.05479062348604202, -0.020003991201519966, 0.1296093910932541, 0.12800350785255432, 0.025178857147693634, 1.240738868713379, 0.14527277648448944, 0.04199272394180298, -0.03952397406101227, -0.670433521270752, -0.8302910923957825, 0.9276389479637146, -0.011337077245116234, -0.5920087695121765, -0.3540259897708893, -0.6657117009162903]} +{"t": 11.8038, "q": [-0.31163331866264343, 0.0017265803180634975, -0.00483447453007102, 0.6164472103118896, -0.32074370980262756, -0.003444117261096835, -0.35849642753601074, 0.014768825843930244, -0.014342720620334148, 0.6082659959793091, -0.29368916153907776, -0.017197920009493828, 0.03171201050281525, -0.05490463227033615, -0.020080678164958954, 0.129633367061615, 0.12821923196315765, 0.025166872888803482, 1.2407268285751343, 0.14527277648448944, 0.041968755424022675, -0.03953595831990242, -0.6731539368629456, -0.8311179876327515, 0.9276149868965149, -0.01131310872733593, -0.5929434895515442, -0.35418179631233215, -0.6640938520431519]} +{"t": 11.8205, "q": [-0.3116418421268463, 0.00178623478859663, -0.004821082577109337, 0.6165835857391357, -0.32074370980262756, -0.003444117261096835, -0.35849642753601074, 0.01480291411280632, -0.014342720620334148, 0.6082915663719177, -0.2936975061893463, -0.017125582322478294, 0.03161826729774475, -0.05500344559550285, -0.020147142931818962, 0.12959741055965424, 0.12835104763507843, 0.025178857147693634, 1.2407268285751343, 0.1452368199825287, 0.04198073968291283, -0.03952397406101227, -0.6759222745895386, -0.8320048451423645, 0.9276149868965149, -0.011325092986226082, -0.5943217277526855, -0.35436156392097473, -0.6620685458183289]} +{"t": 11.8372, "q": [-0.3116418421268463, 0.00184588972479105, -0.004847866017371416, 0.6167113780975342, -0.32073962688446045, -0.0034513543359935284, -0.35849642753601074, 0.01480291411280632, -0.014342720620334148, 0.6083256602287292, -0.29371002316474915, -0.017074881121516228, 0.03147095441818237, -0.05507945269346237, -0.020198268815875053, 0.12957344949245453, 0.12849485874176025, 0.025178857147693634, 1.2407268285751343, 0.14527277648448944, 0.041968755424022675, -0.03952397406101227, -0.679397702217102, -0.8330115079879761, 0.927686870098114, -0.011301124468445778, -0.5956639051437378, -0.3546491861343384, -0.6593481302261353]} +{"t": 11.8541, "q": [-0.3116418421268463, 0.0019225887954235077, -0.004847866017371416, 0.6168307065963745, -0.3207271695137024, -0.0034439589362591505, -0.35849642753601074, 0.01483700331300497, -0.014329328201711178, 0.6083256602287292, -0.29367268085479736, -0.017024412751197815, 0.031497739255428314, -0.05513276532292366, -0.02025357075035572, 0.12956145405769348, 0.12861470878124237, 0.025178857147693634, 1.240750789642334, 0.1452847570180893, 0.04195677116513252, -0.03952397406101227, -0.682465672492981, -0.834281861782074, 0.9276988506317139, -0.01131310872733593, -0.5968863368034363, -0.35496076941490173, -0.656304121017456]} +{"t": 11.8708, "q": [-0.3116588890552521, 0.0020078099332749844, -0.004861257970333099, 0.6169926524162292, -0.32073962688446045, -0.0034513543359935284, -0.35849642753601074, 0.014785869978368282, -0.014342720620334148, 0.6083171367645264, -0.2936561107635498, -0.016937702894210815, 0.031511131674051285, -0.055216263979673386, -0.020290296524763107, 0.12954947352409363, 0.12869858741760254, 0.025250762701034546, 1.2407268285751343, 0.14532071352005005, 0.041968755424022675, -0.039511989802122116, -0.6851142048835754, -0.8355401754379272, 0.9276629090309143, -0.011349061504006386, -0.5977851152420044, -0.35542815923690796, -0.6534039378166199]} +{"t": 11.8876, "q": [-0.3116844594478607, 0.0020674648694694042, -0.00483447453007102, 0.6171460151672363, -0.32073962688446045, -0.0034513543359935284, -0.358479380607605, 0.01477734837681055, -0.014315936714410782, 0.6083341836929321, -0.2936229109764099, -0.016908923164010048, 0.03144416958093643, -0.055246662348508835, -0.020310744643211365, 0.12952551245689392, 0.1287585198879242, 0.025262746959924698, 1.240738868713379, 0.1452847570180893, 0.04195677116513252, -0.03953595831990242, -0.6877387166023254, -0.8368584513664246, 0.9277468323707581, -0.011277155950665474, -0.5984442830085754, -0.3559674322605133, -0.6517141461372375]} +{"t": 11.9044, "q": [-0.3117440938949585, 0.0021271193400025368, -0.00483447453007102, 0.617316484451294, -0.32073962688446045, -0.0034513543359935284, -0.358479380607605, 0.01477734837681055, -0.014302544295787811, 0.6083341836929321, -0.2935897707939148, -0.016807807609438896, 0.031497739255428314, -0.055254265666007996, -0.020315857604146004, 0.12957344949245453, 0.12877050042152405, 0.02521480992436409, 1.2407149076461792, 0.14527277648448944, 0.041968755424022675, -0.039511989802122116, -0.6902673840522766, -0.8383804559707642, 0.9277707934379578, -0.01125318743288517, -0.5986599922180176, -0.35657864809036255, -0.6508033275604248]} +{"t": 11.9211, "q": [-0.31177818775177, 0.0021612080745399, -0.00483447453007102, 0.6174613237380981, -0.3207271695137024, -0.0034439589362591505, -0.35848790407180786, 0.014811436645686626, -0.014315936714410782, 0.6083682775497437, -0.2935398817062378, -0.01686587929725647, 0.031524524092674255, -0.05526186525821686, -0.020320968702435493, 0.12959741055965424, 0.1287824809551239, 0.025202825665473938, 1.240750789642334, 0.14522483944892883, 0.041968755424022675, -0.03952397406101227, -0.6921129822731018, -0.8400702476501465, 0.9277588129043579, -0.011241203173995018, -0.5986599922180176, -0.35720181465148926, -0.6499285101890564]} +{"t": 11.9379, "q": [-0.31181228160858154, 0.0021697301417589188, -0.004861257970333099, 0.61761474609375, -0.32073137164115906, -0.003451275173574686, -0.3584708571434021, 0.01477734837681055, -0.014342720620334148, 0.608342707157135, -0.2935316264629364, -0.01680803671479225, 0.03153791278600693, -0.055239178240299225, -0.02032514661550522, 0.12962138652801514, 0.1288064569234848, 0.025178857147693634, 1.240750789642334, 0.1452847570180893, 0.04194478690624237, -0.03952397406101227, -0.6936469674110413, -0.8424071669578552, 0.9277588129043579, -0.011289140209555626, -0.5987438559532166, -0.35782501101493835, -0.6486701369285583]} +{"t": 11.9548, "q": [-0.31184637546539307, 0.0021867742761969566, -0.004874649923294783, 0.6177852153778076, -0.3207271695137024, -0.0034439589362591505, -0.35844528675079346, 0.014794392511248589, -0.014342720620334148, 0.6084108352661133, -0.29351499676704407, -0.016808126121759415, 0.03159148246049881, -0.055246662348508835, -0.020310744643211365, 0.129633367061615, 0.12879446148872375, 0.025202825665473938, 1.2407268285751343, 0.14522483944892883, 0.04192081838846207, -0.039500005543231964, -0.695156991481781, -0.8450796008110046, 0.927830696105957, -0.01131310872733593, -0.5989835858345032, -0.35865190625190735, -0.6469324231147766]} +{"t": 11.9715, "q": [-0.3119145333766937, 0.0022038184106349945, -0.004888041876256466, 0.6179641485214233, -0.3207271695137024, -0.0034439589362591505, -0.35844528675079346, 0.01477734837681055, -0.014342720620334148, 0.6084364056587219, -0.29348182678222656, -0.016750408336520195, 0.03163165599107742, -0.055246662348508835, -0.020310744643211365, 0.1296093910932541, 0.12879446148872375, 0.025178857147693634, 1.2407628297805786, 0.14529675245285034, 0.04192081838846207, -0.03952397406101227, -0.6965711116790771, -0.8476921916007996, 0.9278546571731567, -0.011396998539566994, -0.5992472171783447, -0.3595866858959198, -0.6444277167320251]} +{"t": 11.9883, "q": [-0.31194862723350525, 0.0021952963434159756, -0.004888041876256466, 0.6180408596992493, -0.3207312524318695, -0.0034367400221526623, -0.35845381021499634, 0.014785869978368282, -0.014342720620334148, 0.608427882194519, -0.29347771406173706, -0.01671425811946392, 0.03147095441818237, -0.055246662348508835, -0.020310744643211365, 0.12958543002605438, 0.12879446148872375, 0.025190841406583786, 1.240738868713379, 0.14532071352005005, 0.04193280264735222, -0.03952397406101227, -0.698069155216217, -0.8499332666397095, 0.9281303286552429, -0.011361045762896538, -0.5997025966644287, -0.360137939453125, -0.6420788168907166]} +{"t": 12.005, "q": [-0.3120168149471283, 0.0022293850779533386, -0.004847866017371416, 0.618219792842865, -0.3207312524318695, -0.0034367400221526623, -0.35845381021499634, 0.014794392511248589, -0.014302544295787811, 0.6084364056587219, -0.2934320569038391, -0.016663841903209686, 0.03140399605035782, -0.055254265666007996, -0.020315857604146004, 0.12959741055965424, 0.12887835502624512, 0.025190841406583786, 1.2407028675079346, 0.1452368199825287, 0.04193280264735222, -0.039511989802122116, -0.6994832754135132, -0.8519106507301331, 0.9283340573310852, -0.01125318743288517, -0.600565493106842, -0.36040160059928894, -0.6392865180969238]} +{"t": 12.0218, "q": [-0.3120509088039398, 0.002289039548486471, -0.004861257970333099, 0.6183817386627197, -0.32073962688446045, -0.0034513543359935284, -0.3584623336791992, 0.014794392511248589, -0.014329328201711178, 0.6084619760513306, -0.2934030294418335, -0.01661333627998829, 0.03131025284528732, -0.055254265666007996, -0.020315857604146004, 0.12958543002605438, 0.12887835502624512, 0.025178857147693634, 1.240750789642334, 0.1452847570180893, 0.041908834129571915, -0.03954794257879257, -0.7005858421325684, -0.8535165190696716, 0.9282981157302856, -0.011289140209555626, -0.6014642715454102, -0.36054542660713196, -0.6358590126037598]} +{"t": 12.0385, "q": [-0.31203386187553406, 0.0023146062158048153, -0.004874649923294783, 0.6185351610183716, -0.3207436203956604, -0.0034296002704650164, -0.35839417576789856, 0.014811436645686626, -0.014342720620334148, 0.6084790229797363, -0.2933739721775055, -0.01657729223370552, 0.03131025284528732, -0.05527706444263458, -0.02033119462430477, 0.129633367061615, 0.12891431152820587, 0.025178857147693634, 1.2407268285751343, 0.1452607959508896, 0.041908834129571915, -0.039511989802122116, -0.7018321752548218, -0.8549426198005676, 0.9282261729240417, -0.011301124468445778, -0.6024110317230225, -0.3606053292751312, -0.632036030292511]} +{"t": 12.0552, "q": [-0.3120168149471283, 0.002331650350242853, -0.004861257970333099, 0.6186373829841614, -0.3207436203956604, -0.0034296002704650164, -0.3583686053752899, 0.014828480780124664, -0.014342720620334148, 0.6085557341575623, -0.2933656871318817, -0.016533946618437767, 0.03131025284528732, -0.055292267352342606, -0.0203414186835289, 0.1296573281288147, 0.12895026803016663, 0.02521480992436409, 1.240750789642334, 0.1452607959508896, 0.041908834129571915, -0.03952397406101227, -0.7030545473098755, -0.8561050891876221, 0.9282501339912415, -0.011289140209555626, -0.6035735011100769, -0.36067724227905273, -0.630010724067688]} +{"t": 12.072, "q": [-0.3121020197868347, 0.002374260686337948, -0.0049148257821798325, 0.6188248991966248, -0.3207518756389618, -0.003429679200053215, -0.35836008191108704, 0.014845524914562702, -0.014356112107634544, 0.6085301637649536, -0.2933657765388489, -0.016447147354483604, 0.03131025284528732, -0.055299870669841766, -0.02034653350710869, 0.1296573281288147, 0.1290101855993271, 0.025202825665473938, 1.2407628297805786, 0.14527277648448944, 0.04193280264735222, -0.039511989802122116, -0.7045765519142151, -0.8571717143058777, 0.9282621145248413, -0.011265171691775322, -0.6058505177497864, -0.36072519421577454, -0.6283928751945496]} +{"t": 12.0888, "q": [-0.312153160572052, 0.0024253935553133488, -0.004888041876256466, 0.6189867854118347, -0.3207477927207947, -0.0034368981141597033, -0.3583686053752899, 0.014828480780124664, -0.014315936714410782, 0.6086153984069824, -0.2932951748371124, -0.016425758600234985, 0.03125668317079544, -0.0552847795188427, -0.020355822518467903, 0.1296093910932541, 0.12902216613292694, 0.025178857147693634, 1.2407149076461792, 0.1452607959508896, 0.04194478690624237, -0.03953595831990242, -0.7069734334945679, -0.8579986095428467, 0.9283460378646851, -0.011217234656214714, -0.6075762510299683, -0.3607611358165741, -0.6261637806892395]} +{"t": 12.1055, "q": [-0.3122469186782837, 0.0024765264242887497, -0.004861257970333099, 0.6191402077674866, -0.32074370980262756, -0.003444117261096835, -0.35839417576789856, 0.014828480780124664, -0.014302544295787811, 0.6086409687995911, -0.2933451533317566, -0.01626642793416977, 0.03109598159790039, -0.055299870669841766, -0.02034653350710869, 0.1296093910932541, 0.1290341466665268, 0.025202825665473938, 1.240738868713379, 0.1452368199825287, 0.04193280264735222, -0.03952397406101227, -0.709502100944519, -0.858489990234375, 0.9283699989318848, -0.011217234656214714, -0.60857093334198, -0.3608090579509735, -0.6234553456306458]} +{"t": 12.1223, "q": [-0.31226396560668945, 0.0025447034277021885, -0.004847866017371416, 0.619251012802124, -0.32074370980262756, -0.003444117261096835, -0.3583856523036957, 0.014845524914562702, -0.014302544295787811, 0.6086324453353882, -0.2933077812194824, -0.016230417415499687, 0.030881712213158607, -0.055299870669841766, -0.02034653350710869, 0.1296573281288147, 0.12907010316848755, 0.025178857147693634, 1.2407268285751343, 0.14524881541728973, 0.04192081838846207, -0.03953595831990242, -0.7126299738883972, -0.8589693307876587, 0.9283580183982849, -0.011229218915104866, -0.6094817519187927, -0.3608330488204956, -0.6211663484573364]} +{"t": 12.1391, "q": [-0.3122554421424866, 0.0026043583638966084, -0.004861257970333099, 0.6194469928741455, -0.3207477927207947, -0.0034368981141597033, -0.35839417576789856, 0.014845524914562702, -0.014302544295787811, 0.6086239218711853, -0.2932828962802887, -0.016216063871979713, 0.030801359564065933, -0.055292267352342606, -0.0203414186835289, 0.12959741055965424, 0.12907010316848755, 0.025202825665473938, 1.2407268285751343, 0.1452847570180893, 0.04193280264735222, -0.039511989802122116, -0.7161533236503601, -0.8594127893447876, 0.9283580183982849, -0.011241203173995018, -0.6108719110488892, -0.36086899042129517, -0.6186257004737854]} +{"t": 12.1559, "q": [-0.31227248907089233, 0.00267253490164876, -0.004861257970333099, 0.6196515560150146, -0.32074788212776184, -0.0034514153376221657, -0.3583686053752899, 0.014811436645686626, -0.014315936714410782, 0.6086580157279968, -0.29329538345336914, -0.01617985963821411, 0.03076118417084217, -0.05529998242855072, -0.02036604844033718, 0.1296093910932541, 0.12911804020404816, 0.025178857147693634, 1.240738868713379, 0.14527277648448944, 0.04193280264735222, -0.039511989802122116, -0.7196527123451233, -0.8596764206886292, 0.9282501339912415, -0.011241203173995018, -0.6121422648429871, -0.3608570098876953, -0.615066409111023]} +{"t": 12.1726, "q": [-0.3123491704463959, 0.0027492339722812176, -0.004888041876256466, 0.6198901534080505, -0.32074788212776184, -0.0034514153376221657, -0.35836008191108704, 0.01483700331300497, -0.014315936714410782, 0.6086239218711853, -0.2934451997280121, -0.015788646414875984, 0.030801359564065933, -0.05531518533825874, -0.02037627249956131, 0.12962138652801514, 0.12914201617240906, 0.025226794183254242, 1.2407268285751343, 0.14529675245285034, 0.04192081838846207, -0.03953595831990242, -0.7226847410202026, -0.8600359559059143, 0.9279505610466003, -0.011325092986226082, -0.6136642098426819, -0.36086899042129517, -0.6116868257522583]} +{"t": 12.1894, "q": [-0.3125707507133484, 0.002877065446227789, -0.005008568987250328, 0.620231032371521, -0.32076022028923035, -0.003444275353103876, -0.35840269923210144, 0.014794392511248589, -0.01436950359493494, 0.6085813045501709, -0.2934993505477905, -0.015622084029018879, 0.0309084951877594, -0.05531523749232292, -0.02038602903485298, 0.12959741055965424, 0.12917795777320862, 0.02521480992436409, 1.2407028675079346, 0.1452368199825287, 0.041908834129571915, -0.03952397406101227, -0.7257047295570374, -0.8604913353919983, 0.9276389479637146, -0.011277155950665474, -0.6157854199409485, -0.36082106828689575, -0.6090383529663086]} +{"t": 12.2064, "q": [-0.3128264248371124, 0.002928198780864477, -0.005102312192320824, 0.6206230521202087, -0.3207932710647583, -0.0034445913042873144, -0.3584367632865906, 0.014794392511248589, -0.014396287500858307, 0.6086068749427795, -0.29348689317703247, -0.01560042891651392, 0.030828144401311874, -0.05532278120517731, -0.0203813835978508, 0.12959741055965424, 0.12923789024353027, 0.025202825665473938, 1.2407268285751343, 0.1452368199825287, 0.04192081838846207, -0.03952397406101227, -0.7291921973228455, -0.860886812210083, 0.9275071024894714, -0.011109377257525921, -0.6169838905334473, -0.36082106828689575, -0.6073126196861267]} +{"t": 12.2232, "q": [-0.31315878033638, 0.0030475077219307423, -0.0051424880512058735, 0.6208872199058533, -0.3208015263080597, -0.003444688394665718, -0.35858166217803955, 0.014785869978368282, -0.014396287500858307, 0.608572781085968, -0.2934745252132416, -0.01549199316650629, 0.030828144401311874, -0.05531523749232292, -0.02038602903485298, 0.12959741055965424, 0.12923789024353027, 0.025250762701034546, 1.2407149076461792, 0.14524881541728973, 0.041908834129571915, -0.039511989802122116, -0.7319126129150391, -0.8612343668937683, 0.9273633360862732, -0.011037471704185009, -0.6178467273712158, -0.3608090579509735, -0.6052393317222595]} +{"t": 12.2399, "q": [-0.3134399950504303, 0.003149773459881544, -0.005196055397391319, 0.621194064617157, -0.3208138942718506, -0.003437530482187867, -0.3586157262325287, 0.01477734837681055, -0.01436950359493494, 0.6085472106933594, -0.2933749556541443, -0.015333300456404686, 0.0307477917522192, -0.05530763790011406, -0.020380917936563492, 0.12959741055965424, 0.1293097883462906, 0.025226794183254242, 1.2407028675079346, 0.14527277648448944, 0.041908834129571915, -0.039511989802122116, -0.7350285053253174, -0.8616538047790527, 0.927147626876831, -0.011025487445294857, -0.6182422041893005, -0.36082106828689575, -0.6026627421379089]} +{"t": 12.2567, "q": [-0.3136274814605713, 0.0032179499976336956, -0.005196055397391319, 0.621492326259613, -0.3208220303058624, -0.003423092421144247, -0.35868391394615173, 0.014768825843930244, -0.014396287500858307, 0.6085386872291565, -0.29331275820732117, -0.015239556320011616, 0.030654048547148705, -0.05530758202075958, -0.02037115953862667, 0.1296093910932541, 0.1293577253818512, 0.025202825665473938, 1.240738868713379, 0.14516492187976837, 0.041908834129571915, -0.039511989802122116, -0.7378926873207092, -0.862085223197937, 0.9270517230033875, -0.011013503186404705, -0.6185058355331421, -0.3608330488204956, -0.6005535125732422]} +{"t": 12.2735, "q": [-0.3138405382633209, 0.003311693202704191, -0.005236231256276369, 0.6217138767242432, -0.32082611322402954, -0.003415873274207115, -0.35876062512397766, 0.01477734837681055, -0.014409679919481277, 0.6085472106933594, -0.2932961881160736, -0.015152846463024616, 0.03073440119624138, -0.05531523749232292, -0.02038602903485298, 0.129633367061615, 0.1294056624174118, 0.02521480992436409, 1.2407028675079346, 0.1452368199825287, 0.04189684987068176, -0.03952397406101227, -0.7398701310157776, -0.862828254699707, 0.926859974861145, -0.011097392998635769, -0.6186257004737854, -0.36079707741737366, -0.5984562635421753]} +{"t": 12.2902, "q": [-0.3140706419944763, 0.0033457824029028416, -0.00542371766641736, 0.6220547556877136, -0.3208385705947876, -0.003423250513151288, -0.358735054731369, 0.01480291411280632, -0.014476639218628407, 0.608504593372345, -0.2932547330856323, -0.015080704353749752, 0.03076118417084217, -0.05532284080982208, -0.02039114199578762, 0.12959741055965424, 0.12941764295101166, 0.025202825665473938, 1.24069082736969, 0.14522483944892883, 0.04187288135290146, -0.03952397406101227, -0.7414759993553162, -0.8636911511421204, 0.9267521500587463, -0.01119326613843441, -0.6186856031417847, -0.36084502935409546, -0.5956879258155823]} +{"t": 12.307, "q": [-0.31437742710113525, 0.0033202157355844975, -0.005584420636296272, 0.6222934126853943, -0.32085081934928894, -0.0034015753772109747, -0.3587861955165863, 0.014794392511248589, -0.014556990936398506, 0.6085301637649536, -0.29324641823768616, -0.015066261403262615, 0.030828144401311874, -0.0553000345826149, -0.020375803112983704, 0.12964534759521484, 0.12939368188381195, 0.025202825665473938, 1.2407149076461792, 0.1452368199825287, 0.041848912835121155, -0.039511989802122116, -0.742974042892456, -0.8644341230392456, 0.9267281293869019, -0.01119326613843441, -0.6187096238136292, -0.36084502935409546, -0.5929434895515442]} +{"t": 12.3238, "q": [-0.314581960439682, 0.003311693202704191, -0.005664771888405085, 0.6224638223648071, -0.32084253430366516, -0.0034015143755823374, -0.35882025957107544, 0.014794392511248589, -0.014597166329622269, 0.6085131168365479, -0.29315927624702454, -0.014972605742514133, 0.030814751982688904, -0.05531523749232292, -0.02038602903485298, 0.1296813040971756, 0.12944161891937256, 0.025226794183254242, 1.2407028675079346, 0.1452847570180893, 0.04187288135290146, -0.03952397406101227, -0.7445319890975952, -0.8652011156082153, 0.9266562461853027, -0.011181281879544258, -0.6187455654144287, -0.3608570098876953, -0.5906305313110352]} +{"t": 12.3406, "q": [-0.31492283940315247, 0.003311693202704191, -0.005691555794328451, 0.6227024793624878, -0.32085081934928894, -0.0034015753772109747, -0.3589651584625244, 0.014768825843930244, -0.014610557816922665, 0.6085131168365479, -0.29305967688560486, -0.014871791005134583, 0.030841534957289696, -0.05531523749232292, -0.02038602903485298, 0.12964534759521484, 0.1294775754213333, 0.025226794183254242, 1.2407028675079346, 0.14529675245285034, 0.04186089709401131, -0.039511989802122116, -0.7463535666465759, -0.8660640120506287, 0.9267281293869019, -0.011121360585093498, -0.6187695264816284, -0.36082106828689575, -0.5881977677345276]} +{"t": 12.3573, "q": [-0.31523817777633667, 0.0033372598700225353, -0.005664771888405085, 0.6228899359703064, -0.3208426535129547, -0.003416031366214156, -0.3591015040874481, 0.01480291411280632, -0.014570382423698902, 0.6085216403007507, -0.2929600775241852, -0.014756480231881142, 0.030707616358995438, -0.05530763790011406, -0.020380917936563492, 0.1296093910932541, 0.12950153648853302, 0.025250762701034546, 1.2407028675079346, 0.14527277648448944, 0.041836928576231, -0.03952397406101227, -0.7478995323181152, -0.866866946220398, 0.9267880916595459, -0.011109377257525921, -0.6187695264816284, -0.3608330488204956, -0.5863401889801025]} +{"t": 12.374, "q": [-0.31556200981140137, 0.0033628265373408794, -0.005691555794328451, 0.6230518817901611, -0.3208426535129547, -0.003416031366214156, -0.3592889904975891, 0.014828480780124664, -0.014570382423698902, 0.6084790229797363, -0.2928604483604431, -0.014684585854411125, 0.030667440965771675, -0.05531518533825874, -0.02037627249956131, 0.12959741055965424, 0.12951351702213287, 0.025226794183254242, 1.24069082736969, 0.1452607959508896, 0.04180097579956055, -0.03952397406101227, -0.7494574785232544, -0.8676339387893677, 0.926776111125946, -0.01113334484398365, -0.6187815070152283, -0.3608330488204956, -0.5850818753242493]} +{"t": 12.3908, "q": [-0.31567278504371643, 0.0034224814735352993, -0.005704947747290134, 0.6231967210769653, -0.320842444896698, -0.0033869794569909573, -0.35937419533729553, 0.014819959178566933, -0.014570382423698902, 0.608504593372345, -0.2928313910961151, -0.01466302014887333, 0.030533522367477417, -0.05530758202075958, -0.02037115953862667, 0.12957344949245453, 0.12952551245689392, 0.025238778442144394, 1.24069082736969, 0.14522483944892883, 0.04182494431734085, -0.039511989802122116, -0.7511832118034363, -0.8681132793426514, 0.9267281293869019, -0.011169297620654106, -0.6187815070152283, -0.36082106828689575, -0.5839194059371948]} +{"t": 12.4077, "q": [-0.3157409727573395, 0.003490658011287451, -0.005704947747290134, 0.623222291469574, -0.3208426535129547, -0.003416031366214156, -0.3593912422657013, 0.01486256904900074, -0.014597166329622269, 0.6084875464439392, -0.29281479120254517, -0.014648630283772945, 0.03043977916240692, -0.05531518533825874, -0.02037627249956131, 0.12957344949245453, 0.12953749299049377, 0.025262746959924698, 1.24069082736969, 0.1452607959508896, 0.0418129600584507, -0.03953595831990242, -0.7527291774749756, -0.8682331442832947, 0.9267401099205017, -0.011145329102873802, -0.6187335848808289, -0.3608090579509735, -0.5827808976173401]} +{"t": 12.4244, "q": [-0.3157324492931366, 0.0035077021457254887, -0.005664771888405085, 0.6232819557189941, -0.32085898518562317, -0.0033871373161673546, -0.35940828919410706, 0.01483700331300497, -0.014570382423698902, 0.6084875464439392, -0.292806476354599, -0.01464866567403078, 0.030198724940419197, -0.05529249086976051, -0.020380446687340736, 0.12962138652801514, 0.12957344949245453, 0.025262746959924698, 1.2406789064407349, 0.1452368199825287, 0.04177701100707054, -0.03952397406101227, -0.755461573600769, -0.8683410286903381, 0.926776111125946, -0.011109377257525921, -0.6186975836753845, -0.3608090579509735, -0.5809113383293152]} +{"t": 12.4412, "q": [-0.31574949622154236, 0.0035332688130438328, -0.005678163841366768, 0.6232393383979797, -0.32085898518562317, -0.0033871373161673546, -0.35945942997932434, 0.014845524914562702, -0.014570382423698902, 0.6084704995155334, -0.2928023338317871, -0.014655914157629013, 0.03006480634212494, -0.05531518533825874, -0.02037627249956131, 0.12966932356357574, 0.12957344949245453, 0.02521480992436409, 1.24069082736969, 0.14521285891532898, 0.04180097579956055, -0.03952397406101227, -0.7575228810310364, -0.8683649897575378, 0.926776111125946, -0.011109377257525921, -0.618661642074585, -0.3608090579509735, -0.5790897607803345]} +{"t": 12.4581, "q": [-0.3158773183822632, 0.0036440561525523663, -0.005704947747290134, 0.6232308149337769, -0.32084664702415466, -0.003394277300685644, -0.35954463481903076, 0.014845524914562702, -0.014583774842321873, 0.6084619760513306, -0.29278984665870667, -0.014663197100162506, 0.03006480634212494, -0.05532278120517731, -0.0203813835978508, 0.129633367061615, 0.12952551245689392, 0.025178857147693634, 1.24069082736969, 0.14521285891532898, 0.041836928576231, -0.03953595831990242, -0.7593804597854614, -0.8683769702911377, 0.9266442656517029, -0.011145329102873802, -0.6186376810073853, -0.3607850968837738, -0.5771483182907104]} +{"t": 12.4748, "q": [-0.3159540295600891, 0.0037889317609369755, -0.005731731187552214, 0.6232990026473999, -0.32086315751075745, -0.003394435392692685, -0.3595616817474365, 0.014896657317876816, -0.014610557816922665, 0.6084364056587219, -0.2927524149417877, -0.014742907136678696, 0.030145157128572464, -0.05530758202075958, -0.02037115953862667, 0.12964534759521484, 0.12951351702213287, 0.025202825665473938, 1.2407028675079346, 0.1452368199825287, 0.04182494431734085, -0.03953595831990242, -0.7608305215835571, -0.8683649897575378, 0.926632285118103, -0.011205250397324562, -0.6185657978057861, -0.3608090579509735, -0.5749551653862]} +{"t": 12.4916, "q": [-0.3160392642021179, 0.003823020961135626, -0.005946001503616571, 0.6232990026473999, -0.3208632469177246, -0.003408952383324504, -0.35955315828323364, 0.014845524914562702, -0.014731084927916527, 0.6083086133003235, -0.2927524149417877, -0.014742907136678696, 0.03022550791501999, -0.05531523749232292, -0.02038602903485298, 0.12958543002605438, 0.12952551245689392, 0.025178857147693634, 1.2407028675079346, 0.14521285891532898, 0.041836928576231, -0.03953595831990242, -0.7622806429862976, -0.8684488534927368, 0.926632285118103, -0.011229218915104866, -0.6185657978057861, -0.3607850968837738, -0.5726542472839355]} +{"t": 12.5084, "q": [-0.3161329925060272, 0.0039167641662061214, -0.006012961268424988, 0.6233075261116028, -0.3208591639995575, -0.0034161715302616358, -0.35954463481903076, 0.014896657317876816, -0.014878395944833755, 0.6082404255867004, -0.2927316129207611, -0.014779165387153625, 0.030279075726866722, -0.05532278120517731, -0.0203813835978508, 0.12954947352409363, 0.12953749299049377, 0.025250762701034546, 1.2407149076461792, 0.1452368199825287, 0.04182494431734085, -0.03953595831990242, -0.7639703750610352, -0.8686166405677795, 0.9266203045845032, -0.011205250397324562, -0.6186017394065857, -0.3607850968837738, -0.5705090165138245]} +{"t": 12.5251, "q": [-0.3162437677383423, 0.003942329902201891, -0.006039745174348354, 0.6232819557189941, -0.32085099816322327, -0.0034306275192648172, -0.35959577560424805, 0.014845524914562702, -0.014878395944833755, 0.6082404255867004, -0.2927108407020569, -0.014772024005651474, 0.030292468145489693, -0.05529998242855072, -0.02036604844033718, 0.12964534759521484, 0.12952551245689392, 0.025202825665473938, 1.2407028675079346, 0.14522483944892883, 0.04182494431734085, -0.03953595831990242, -0.7654923796653748, -0.8688323497772217, 0.9265244007110596, -0.011181281879544258, -0.6186257004737854, -0.3607611358165741, -0.5679084658622742]} +{"t": 12.5419, "q": [-0.31635457277297974, 0.003984940703958273, -0.0060933125205338, 0.6232649087905884, -0.3208552598953247, -0.0034524425864219666, -0.3596554398536682, 0.014871091581881046, -0.014905179850757122, 0.6081807613372803, -0.29269421100616455, -0.014815494418144226, 0.03025229275226593, -0.05530758202075958, -0.02037115953862667, 0.1296573281288147, 0.12952551245689392, 0.02521480992436409, 1.2407149076461792, 0.14520087838172913, 0.041836928576231, -0.03953595831990242, -0.7670982480049133, -0.8690240979194641, 0.9265124201774597, -0.01119326613843441, -0.6186257004737854, -0.3607611358165741, -0.5651161670684814]} +{"t": 12.5586, "q": [-0.316405713558197, 0.004044595640152693, -0.0060933125205338, 0.6232393383979797, -0.32085099816322327, -0.0034306275192648172, -0.35968953371047974, 0.01486256904900074, -0.014891788363456726, 0.6081551909446716, -0.29269421100616455, -0.014801033772528172, 0.03022550791501999, -0.05531507357954979, -0.020356759428977966, 0.1296093910932541, 0.12951351702213287, 0.025202825665473938, 1.24069082736969, 0.14524881541728973, 0.041836928576231, -0.03953595831990242, -0.7687041759490967, -0.8693716526031494, 0.9265363812446594, -0.011157313361763954, -0.618661642074585, -0.3607611358165741, -0.5634623169898987]} +{"t": 12.5753, "q": [-0.3164227306842804, 0.004070162307471037, -0.006106704473495483, 0.6231967210769653, -0.32085099816322327, -0.0034306275192648172, -0.3596639633178711, 0.01492222398519516, -0.014958747662603855, 0.6081381440162659, -0.2926775813102722, -0.014801086857914925, 0.030185332521796227, -0.05531518533825874, -0.02037627249956131, 0.1296813040971756, 0.12948955595493317, 0.025202825665473938, 1.24069082736969, 0.14522483944892883, 0.04182494431734085, -0.03953595831990242, -0.7700583934783936, -0.869695246219635, 0.9265363812446594, -0.01113334484398365, -0.618661642074585, -0.36077311635017395, -0.5618804097175598]} +{"t": 12.5922, "q": [-0.3164227306842804, 0.004070162307471037, -0.006120096426457167, 0.6231796741485596, -0.32084691524505615, -0.0034378464333713055, -0.35964691638946533, 0.014964834786951542, -0.014972139149904251, 0.6081125736236572, -0.2926526367664337, -0.014844592660665512, 0.030185332521796227, -0.055330272763967514, -0.020366983488202095, 0.1296813040971756, 0.1294775754213333, 0.025178857147693634, 1.2407028675079346, 0.1452368199825287, 0.041836928576231, -0.03952397406101227, -0.7713766694068909, -0.8698869943618774, 0.92648845911026, -0.01113334484398365, -0.6186975836753845, -0.36072519421577454, -0.5599150061607361]} +{"t": 12.6089, "q": [-0.31638866662979126, 0.0040786839090287685, -0.006066528614610434, 0.6231626272201538, -0.32084691524505615, -0.0034378464333713055, -0.35962986946105957, 0.014973356388509274, -0.014998923055827618, 0.6081210970878601, -0.29264017939567566, -0.014851875603199005, 0.030131764709949493, -0.05530741438269615, -0.020341889932751656, 0.1296813040971756, 0.1294775754213333, 0.025202825665473938, 1.24069082736969, 0.14522483944892883, 0.041836928576231, -0.03953595831990242, -0.7729825377464294, -0.8699109554290771, 0.9264764785766602, -0.011109377257525921, -0.6186975836753845, -0.3607611358165741, -0.5572544932365417]} +{"t": 12.6256, "q": [-0.3164142370223999, 0.004070162307471037, -0.006079920567572117, 0.6230859756469727, -0.3208387494087219, -0.0034522844944149256, -0.35964691638946533, 0.015007445588707924, -0.014985531568527222, 0.6081125736236572, -0.29264432191848755, -0.014844628050923347, 0.03009158931672573, -0.0553225576877594, -0.020342355594038963, 0.12959741055965424, 0.12948955595493317, 0.025202825665473938, 1.240738868713379, 0.1452607959508896, 0.04182494431734085, -0.03953595831990242, -0.7744805812835693, -0.8698989748954773, 0.9264644980430603, -0.011109377257525921, -0.618721604347229, -0.3607611358165741, -0.5548096895217896]} +{"t": 12.6425, "q": [-0.3163801431655884, 0.0040360731072723866, -0.006039745174348354, 0.6230859756469727, -0.32084691524505615, -0.0034378464333713055, -0.35958725214004517, 0.015024489723145962, -0.014998923055827618, 0.608129620552063, -0.29258614778518677, -0.014902736060321331, 0.030024630948901176, -0.055315013974905014, -0.020347001031041145, 0.129633367061615, 0.12948955595493317, 0.025202825665473938, 1.2407028675079346, 0.14524881541728973, 0.041836928576231, -0.03953595831990242, -0.7760385274887085, -0.8699109554290771, 0.9264165759086609, -0.011109377257525921, -0.6187575459480286, -0.3607371747493744, -0.5522810220718384]} +{"t": 12.6592, "q": [-0.31635457277297974, 0.004027551505714655, -0.006012961268424988, 0.6231114864349365, -0.32084691524505615, -0.0034378464333713055, -0.3595616817474365, 0.015067100524902344, -0.014958747662603855, 0.6081210970878601, -0.29235321283340454, -0.015294287353754044, 0.029997846111655235, -0.05533010512590408, -0.02033771201968193, 0.12957344949245453, 0.12948955595493317, 0.025190841406583786, 1.2407028675079346, 0.14522483944892883, 0.04186089709401131, -0.03953595831990242, -0.777356743812561, -0.869922935962677, 0.9263806343078613, -0.011097392998635769, -0.6188653707504272, -0.3607371747493744, -0.5493209362030029]} +{"t": 12.676, "q": [-0.3162863850593567, 0.003984940703958273, -0.006012961268424988, 0.6231114864349365, -0.32085099816322327, -0.0034306275192648172, -0.35949352383613586, 0.015126754529774189, -0.014972139149904251, 0.6081040501594543, -0.29234910011291504, -0.015258136205375195, 0.02989071048796177, -0.05534525215625763, -0.020338181406259537, 0.1296813040971756, 0.12956145405769348, 0.025190841406583786, 1.2407149076461792, 0.14524881541728973, 0.04187288135290146, -0.039511989802122116, -0.7782915234565735, -0.8702704906463623, 0.9262967109680176, -0.011181281879544258, -0.6189013719558716, -0.36072519421577454, -0.5457016825675964]} +{"t": 12.6927, "q": [-0.3162267506122589, 0.003942329902201891, -0.005972785409539938, 0.6231029629707336, -0.32085099816322327, -0.0034306275192648172, -0.3593912422657013, 0.015143798664212227, -0.014972139149904251, 0.6080870032310486, -0.29245725274086, -0.01504069659858942, 0.029676441103219986, -0.05536811053752899, -0.020363276824355125, 0.12956145405769348, 0.12969328463077545, 0.025250762701034546, 1.240750789642334, 0.14527277648448944, 0.04188486561179161, -0.039511989802122116, -0.7790585160255432, -0.870977520942688, 0.9261409044265747, -0.011301124468445778, -0.6191530227661133, -0.36074915528297424, -0.5429213643074036]} +{"t": 12.7095, "q": [-0.31620118021965027, 0.003950852435082197, -0.005972785409539938, 0.6231114864349365, -0.3208593428134918, -0.0034452234394848347, -0.3593912422657013, 0.015118232928216457, -0.014972139149904251, 0.6080784797668457, -0.2924947142601013, -0.014946525916457176, 0.02958269789814949, -0.05545909330248833, -0.02038560062646866, 0.12958543002605438, 0.12977717816829681, 0.025250762701034546, 1.2407268285751343, 0.14527277648448944, 0.04188486561179161, -0.03952397406101227, -0.7796097993850708, -0.8721280097961426, 0.9260690212249756, -0.011420967057347298, -0.6196443438529968, -0.3607611358165741, -0.5411477088928223]} +{"t": 12.7262, "q": [-0.3161841332912445, 0.003942329902201891, -0.005959393456578255, 0.6230859756469727, -0.3208593428134918, -0.0034452234394848347, -0.35937419533729553, 0.015152321197092533, -0.014945355243980885, 0.6080614328384399, -0.29255715012550354, -0.014794389717280865, 0.02955591306090355, -0.05562631040811539, -0.02049807831645012, 0.12954947352409363, 0.12992098927497864, 0.025250762701034546, 1.2407268285751343, 0.14524881541728973, 0.04189684987068176, -0.03952397406101227, -0.7801610827445984, -0.8736380338668823, 0.9260091185569763, -0.011564777232706547, -0.6202795505523682, -0.36077311635017395, -0.5389425754547119]} +{"t": 12.7429, "q": [-0.316150039434433, 0.003942329902201891, -0.005986177362501621, 0.6231200098991394, -0.3208593428134918, -0.0034452234394848347, -0.3593060374259949, 0.015169365331530571, -0.014945355243980885, 0.6080358624458313, -0.2925446927547455, -0.014801672659814358, 0.02956930547952652, -0.05580872669816017, -0.02062078006565571, 0.1296093910932541, 0.13004082441329956, 0.025262746959924698, 1.240750789642334, 0.14522483944892883, 0.04188486561179161, -0.03952397406101227, -0.7808801531791687, -0.8752558827400208, 0.9260210990905762, -0.011600730009377003, -0.6208428144454956, -0.3608090579509735, -0.5361742377281189]} +{"t": 12.7597, "q": [-0.31608185172080994, 0.003933808300644159, -0.005986177362501621, 0.6231541037559509, -0.3208676278591156, -0.0034453205298632383, -0.35922080278396606, 0.015169365331530571, -0.014972139149904251, 0.6080443859100342, -0.2925405204296112, -0.014794442802667618, 0.029622873291373253, -0.05616598203778267, -0.02086086943745613, 0.1296813040971756, 0.13020861148834229, 0.025250762701034546, 1.2407268285751343, 0.14524881541728973, 0.04187288135290146, -0.03952397406101227, -0.7816351652145386, -0.8768977522850037, 0.9260210990905762, -0.011600730009377003, -0.6218374967575073, -0.3608090579509735, -0.5340650081634521]} +{"t": 12.7764, "q": [-0.3160562813282013, 0.003899719100445509, -0.006026353221386671, 0.6231285333633423, -0.320875883102417, -0.0034453817643225193, -0.3592037558555603, 0.015109710395336151, -0.014998923055827618, 0.6079421639442444, -0.2925488352775574, -0.014779946766793728, 0.029783576726913452, -0.056530848145484924, -0.02110600844025612, 0.12971726059913635, 0.13037638366222382, 0.025250762701034546, 1.2407268285751343, 0.1452368199825287, 0.04187288135290146, -0.039511989802122116, -0.7821145057678223, -0.8786115050315857, 0.9259851574897766, -0.011672635562717915, -0.622916042804718, -0.36079707741737366, -0.5323392748832703]} +{"t": 12.7931, "q": [-0.31608185172080994, 0.003933808300644159, -0.006066528614610434, 0.6231541037559509, -0.320875883102417, -0.0034453817643225193, -0.3591952323913574, 0.015058577992022038, -0.014972139149904251, 0.6078739762306213, -0.29252392053604126, -0.014780052937567234, 0.02993088588118553, -0.05695650354027748, -0.02139267697930336, 0.12981313467025757, 0.13056813180446625, 0.025286715477705002, 1.2407628297805786, 0.14524881541728973, 0.04189684987068176, -0.039511989802122116, -0.7827256917953491, -0.8799896836280823, 0.9258173704147339, -0.011684619821608067, -0.6238148808479309, -0.3608090579509735, -0.5302780270576477]} +{"t": 12.8099, "q": [-0.3160988986492157, 0.003959374036639929, -0.0060933125205338, 0.6231541037559509, -0.3208923041820526, -0.003431022632867098, -0.3592122793197632, 0.014998923055827618, -0.014972139149904251, 0.6078057885169983, -0.2925114631652832, -0.014787336811423302, 0.03005141392350197, -0.05720733106136322, -0.02156178280711174, 0.12990900874137878, 0.13075987994670868, 0.025262746959924698, 1.240738868713379, 0.14524881541728973, 0.04187288135290146, -0.039511989802122116, -0.7836964130401611, -0.880984365940094, 0.9257334470748901, -0.011660651303827763, -0.624258279800415, -0.36074915528297424, -0.527725338935852]} +{"t": 12.8268, "q": [-0.316150039434433, 0.003967896569520235, -0.00613348837941885, 0.6231711506843567, -0.32090047001838684, -0.0034165845718234777, -0.3592122793197632, 0.014956312254071236, -0.014945355243980885, 0.6076608896255493, -0.29251980781555176, -0.014729459770023823, 0.03007819689810276, -0.057359348982572556, -0.021664274856448174, 0.12999288737773895, 0.13091567158699036, 0.02527473121881485, 1.2407268285751343, 0.14524881541728973, 0.04186089709401131, -0.039511989802122116, -0.7853981852531433, -0.8817753195762634, 0.9257214665412903, -0.011576761491596699, -0.6247376799583435, -0.36074915528297424, -0.523902416229248]} +{"t": 12.8436, "q": [-0.31625229120254517, 0.003925285767763853, -0.006146880332380533, 0.6231796741485596, -0.32088395953178406, -0.0034164267126470804, -0.3592548966407776, 0.014964834786951542, -0.014945355243980885, 0.6074819564819336, -0.29249081015586853, -0.014635536819696426, 0.030158549547195435, -0.057435356080532074, -0.021715519949793816, 0.1300048828125, 0.13104750216007233, 0.02527473121881485, 1.240738868713379, 0.1452607959508896, 0.04186089709401131, -0.03952397406101227, -0.7871718406677246, -0.8822547197341919, 0.9257334470748901, -0.011480887420475483, -0.625229001045227, -0.3607611358165741, -0.52115797996521]} +{"t": 12.8603, "q": [-0.31638866662979126, 0.003925285767763853, -0.0061736637726426125, 0.6231967210769653, -0.32090047001838684, -0.0034165845718234777, -0.3592548966407776, 0.014905179850757122, -0.014945355243980885, 0.6072433590888977, -0.29242441058158875, -0.01456351950764656, 0.030332643538713455, -0.0574505589902401, -0.021725768223404884, 0.12994495034217834, 0.1311074197292328, 0.02527473121881485, 1.2407028675079346, 0.14522483944892883, 0.04186089709401131, -0.039511989802122116, -0.7890294194221497, -0.883009672164917, 0.9257574081420898, -0.011492871679365635, -0.6256964206695557, -0.3607611358165741, -0.5189648866653442]} +{"t": 12.877, "q": [-0.3164738714694977, 0.003925285767763853, -0.006187055725604296, 0.6231967210769653, -0.3209002614021301, -0.00338755059055984, -0.35926342010498047, 0.014947790652513504, -0.014931963756680489, 0.6070302724838257, -0.2923124134540558, -0.01439765002578497, 0.030466562137007713, -0.05746575817465782, -0.021736016497015953, 0.12992098927497864, 0.13111941516399384, 0.025250762701034546, 1.2407149076461792, 0.14522483944892883, 0.041848912835121155, -0.03952397406101227, -0.7911266684532166, -0.8839444518089294, 0.9258652925491333, -0.011636682786047459, -0.6259600520133972, -0.3607850968837738, -0.5164601802825928]} +{"t": 12.8939, "q": [-0.3166102170944214, 0.003925285767763853, -0.006200447678565979, 0.6231881976127625, -0.32093313336372375, -0.003358814399689436, -0.35931456089019775, 0.014947790652513504, -0.014931963756680489, 0.6068087220191956, -0.292275071144104, -0.014332701452076435, 0.030346035957336426, -0.05748090147972107, -0.021736500784754753, 0.13001686334609985, 0.13111941516399384, 0.025250762701034546, 1.240738868713379, 0.14522483944892883, 0.041836928576231, -0.039511989802122116, -0.7939908504486084, -0.8856821656227112, 0.9259851574897766, -0.01170858833938837, -0.6261637806892395, -0.36077311635017395, -0.5140992999076843]} +{"t": 12.9106, "q": [-0.31672102212905884, 0.003925285767763853, -0.006160271819680929, 0.6231626272201538, -0.32095763087272644, -0.003315482521429658, -0.35935714840888977, 0.014990401454269886, -0.014878395944833755, 0.6066126823425293, -0.2922004163265228, -0.014202841557562351, 0.030185332521796227, -0.057480961084365845, -0.02174626663327217, 0.13010074198246002, 0.13111941516399384, 0.025262746959924698, 1.240750789642334, 0.14527277648448944, 0.041848912835121155, -0.039511989802122116, -0.7967592477798462, -0.8875876665115356, 0.9260450601577759, -0.011816445738077164, -0.6262476444244385, -0.36079707741737366, -0.5123136639595032]} +{"t": 12.9274, "q": [-0.3168829381465912, 0.003908241633325815, -0.006146880332380533, 0.623145580291748, -0.3209698498249054, -0.003293825313448906, -0.3594338595867157, 0.014973356388509274, -0.014891788363456726, 0.6063740849494934, -0.2920510172843933, -0.01405884139239788, 0.030145157128572464, -0.057473357766866684, -0.021741140633821487, 0.1300288438796997, 0.13119131326675415, 0.025262746959924698, 1.240738868713379, 0.14527277648448944, 0.041836928576231, -0.03952397406101227, -0.7987006902694702, -0.888905942440033, 0.9260690212249756, -0.011840414255857468, -0.6263555288314819, -0.3608090579509735, -0.5108036398887634]} +{"t": 12.9442, "q": [-0.3170278072357178, 0.003899719100445509, -0.006187055725604296, 0.623060405254364, -0.32097384333610535, -0.0032720714807510376, -0.3594679534435272, 0.014990401454269886, -0.014905179850757122, 0.6060587763786316, -0.29192233085632324, -0.013950902037322521, 0.030198724940419197, -0.057465702295303345, -0.021726252511143684, 0.12987305223941803, 0.1312512308359146, 0.025250762701034546, 1.2407028675079346, 0.1452368199825287, 0.041836928576231, -0.03952397406101227, -0.8005342483520508, -0.8912788033485413, 0.9260810017585754, -0.011828429996967316, -0.6266071796417236, -0.36086899042129517, -0.5083947777748108]} +{"t": 12.9609, "q": [-0.3170278072357178, 0.003942329902201891, -0.006240623537451029, 0.6229240298271179, -0.3209695816040039, -0.0032502382528036833, -0.3593827188014984, 0.015015967190265656, -0.014958747662603855, 0.6056241393089294, -0.29183098673820496, -0.013893433846533298, 0.0301049817353487, -0.05757971480488777, -0.021803122013807297, 0.12987305223941803, 0.1314070224761963, 0.025262746959924698, 1.2407149076461792, 0.1452847570180893, 0.04182494431734085, -0.039511989802122116, -0.8030030131340027, -0.8937954902648926, 0.9260810017585754, -0.011924304068088531, -0.6273022890090942, -0.36104875802993774, -0.5053987503051758]} +{"t": 12.9778, "q": [-0.31700223684310913, 0.004044595640152693, -0.006280798930674791, 0.6228984594345093, -0.32099443674087524, -0.0032650104258209467, -0.3593316078186035, 0.015084144659340382, -0.014985531568527222, 0.6052747368812561, -0.29174381494522095, -0.013843176886439323, 0.02977018430829048, -0.05780762806534767, -0.021937331184744835, 0.13004082441329956, 0.13162274658679962, 0.025250762701034546, 1.2407268285751343, 0.1452368199825287, 0.041848912835121155, -0.03952397406101227, -0.8051961064338684, -0.894957959651947, 0.9260810017585754, -0.01191231980919838, -0.6279613971710205, -0.36137232184410095, -0.5023547410964966]} +{"t": 12.9946, "q": [-0.31700223684310913, 0.004070162307471037, -0.006307582836598158, 0.6228047013282776, -0.3209984302520752, -0.003243274288251996, -0.3593316078186035, 0.015152321197092533, -0.014945355243980885, 0.6051127910614014, -0.2916773557662964, -0.013843460939824581, 0.029636265709996223, -0.05811835452914238, -0.021991221234202385, 0.13001686334609985, 0.13191036880016327, 0.025250762701034546, 1.240750789642334, 0.14522483944892883, 0.04182494431734085, -0.03952397406101227, -0.8062507510185242, -0.8949100375175476, 0.9260570406913757, -0.01191231980919838, -0.6280932426452637, -0.36160004138946533, -0.49964630603790283]} +{"t": 13.0113, "q": [-0.3170192837715149, 0.004061639774590731, -0.006307582836598158, 0.6228047013282776, -0.3209903836250305, -0.003272229339927435, -0.3592889904975891, 0.015186409465968609, -0.014958747662603855, 0.6050360798835754, -0.29159849882125854, -0.01377870887517929, 0.02955591306090355, -0.05845040827989578, -0.021806644275784492, 0.12989701330661774, 0.13222195208072662, 0.025298699736595154, 1.2407268285751343, 0.14522483944892883, 0.04182494431734085, -0.03953595831990242, -0.8064544796943665, -0.894274890422821, 0.9259731769561768, -0.011996209621429443, -0.6280812621116638, -0.3616599440574646, -0.4979805052280426]} +{"t": 13.0281, "q": [-0.31703633069992065, 0.004027551505714655, -0.006254015490412712, 0.622847318649292, -0.3209943473339081, -0.003250493435189128, -0.3592889904975891, 0.015203453600406647, -0.014891788363456726, 0.6050446033477783, -0.29153209924697876, -0.01369219459593296, 0.029207725077867508, -0.058525677770376205, -0.02173096500337124, 0.12988503277301788, 0.13246163725852966, 0.02527473121881485, 1.2407149076461792, 0.14524881541728973, 0.041848912835121155, -0.03952397406101227, -0.8068379759788513, -0.8934479355812073, 0.9257693886756897, -0.01197224110364914, -0.6280453205108643, -0.36164796352386475, -0.49674612283706665]} +{"t": 13.0448, "q": [-0.3170278072357178, 0.003882674966007471, -0.006240623537451029, 0.6228899359703064, -0.3209819197654724, -0.003243116196244955, -0.3592378497123718, 0.015203453600406647, -0.01486500445753336, 0.6050105690956116, -0.29144081473350525, -0.01357688382267952, 0.029180940240621567, -0.0585407093167305, -0.02171192690730095, 0.12989701330661774, 0.13276124000549316, 0.025250762701034546, 1.2408466339111328, 0.1452847570180893, 0.04187288135290146, -0.03954794257879257, -0.8078925609588623, -0.8929805755615234, 0.9258413314819336, -0.012008193880319595, -0.6280812621116638, -0.3616599440574646, -0.49506834149360657]} +{"t": 13.0615, "q": [-0.3170278072357178, 0.0038315425626933575, -0.006254015490412712, 0.6229751706123352, -0.32097771763801575, -0.003235800191760063, -0.3592037558555603, 0.015246064402163029, -0.014918571338057518, 0.6049935221672058, -0.2914159297943115, -0.01353359129279852, 0.02975679188966751, -0.05856328457593918, -0.021688245236873627, 0.12986107170581818, 0.13291704654693604, 0.025178857147693634, 1.240822672843933, 0.1452847570180893, 0.04188486561179161, -0.039571911096572876, -0.8087074756622314, -0.8927528858184814, 0.9258652925491333, -0.011996209621429443, -0.6280932426452637, -0.3616839051246643, -0.49322277307510376]} +{"t": 13.0782, "q": [-0.3170278072357178, 0.003703711088746786, -0.006307582836598158, 0.6230348348617554, -0.32097771763801575, -0.003235800191760063, -0.3591015040874481, 0.015459117479622364, -0.01503909844905138, 0.6049935221672058, -0.2913910448551178, -0.013490298762917519, 0.030212117359042168, -0.05870696157217026, -0.02165868878364563, 0.12983709573745728, 0.1330009251832962, 0.025178857147693634, 1.240810751914978, 0.14529675245285034, 0.04188486561179161, -0.039559926837682724, -0.8094984889030457, -0.892561137676239, 0.9258533120155334, -0.011996209621429443, -0.6280932426452637, -0.3617078959941864, -0.4917966425418854]} +{"t": 13.095, "q": [-0.31699371337890625, 0.0035673570819199085, -0.006307582836598158, 0.623145580291748, -0.3209776282310486, -0.0032212829682976007, -0.3588714003562927, 0.015510249882936478, -0.015065882354974747, 0.6049594283103943, -0.29133298993110657, -0.013374827802181244, 0.030359428375959396, -0.05888819321990013, -0.0215865857899189, 0.12978915870189667, 0.1330728381872177, 0.025142904371023178, 1.240810751914978, 0.14527277648448944, 0.041908834129571915, -0.03959587961435318, -0.8111163377761841, -0.8925012350082397, 0.9258413314819336, -0.011996209621429443, -0.6281291842460632, -0.3617318570613861, -0.49063417315483093]} +{"t": 13.1117, "q": [-0.3169766962528229, 0.0035247462801635265, -0.006280798930674791, 0.6231711506843567, -0.32100629806518555, -0.0031852489337325096, -0.3588373064994812, 0.015450594946742058, -0.015065882354974747, 0.6049253344535828, -0.2912956476211548, -0.013324358500540257, 0.030305860564112663, -0.05914571136236191, -0.02161458320915699, 0.12977717816829681, 0.13327656686306, 0.025142904371023178, 1.2407987117767334, 0.14532071352005005, 0.04188486561179161, -0.039571911096572876, -0.8137049078941345, -0.8926090598106384, 0.925805389881134, -0.012044146656990051, -0.6281052231788635, -0.3617558181285858, -0.48916012048721313]} +{"t": 13.1285, "q": [-0.31699371337890625, 0.003448047209531069, -0.006254015490412712, 0.6231626272201538, -0.32100212574005127, -0.0031779510900378227, -0.35882025957107544, 0.015467639081180096, -0.014998923055827618, 0.6048912405967712, -0.2912500500679016, -0.013216082006692886, 0.030024630948901176, -0.05940346419811249, -0.02168157510459423, 0.12987305223941803, 0.1335522085428238, 0.025178857147693634, 1.240810751914978, 0.14521285891532898, 0.04187288135290146, -0.03958389535546303, -0.8167728781700134, -0.8926929831504822, 0.9257934093475342, -0.012068115174770355, -0.6281172037124634, -0.3617797791957855, -0.4866194725036621]} +{"t": 13.1452, "q": [-0.31698518991470337, 0.003431003075093031, -0.006187055725604296, 0.6231796741485596, -0.3210267126560211, -0.003149153897538781, -0.3587521016597748, 0.015484684146940708, -0.014931963756680489, 0.6047719120979309, -0.2911255657672882, -0.01304301805794239, 0.02989071048796177, -0.059623584151268005, -0.0217814389616251, 0.13006480038166046, 0.13380387425422668, 0.02515488862991333, 1.240810751914978, 0.1452368199825287, 0.04186089709401131, -0.039619848132133484, -0.8196491003036499, -0.8930524587631226, 0.9257814288139343, -0.01212803553789854, -0.6280812621116638, -0.36185169219970703, -0.4836593568325043]} +{"t": 13.1619, "q": [-0.31699371337890625, 0.003431003075093031, -0.006187055725604296, 0.6232478618621826, -0.32102254033088684, -0.0031418558210134506, -0.35867539048194885, 0.015442073345184326, -0.014945355243980885, 0.6045929789543152, -0.29098036885261536, -0.012819431722164154, 0.029863927513360977, -0.059858642518520355, -0.02185271680355072, 0.13017265498638153, 0.13416339457035065, 0.025118935853242874, 1.2408826351165771, 0.14529675245285034, 0.04187288135290146, -0.03970373794436455, -0.8221298456192017, -0.8935078978538513, 0.9257934093475342, -0.0121879568323493, -0.6280812621116638, -0.36192360520362854, -0.48079514503479004]} +{"t": 13.1787, "q": [-0.31695112586021423, 0.0034650913439691067, -0.006187055725604296, 0.6232990026473999, -0.3210184574127197, -0.0031490749679505825, -0.3586072027683258, 0.015476161614060402, -0.014945355243980885, 0.6044736504554749, -0.2908475697040558, -0.012689819559454918, 0.029823752120137215, -0.06023019179701805, -0.021967733278870583, 0.13022059202194214, 0.1342233270406723, 0.025142904371023178, 1.2408826351165771, 0.1453087329864502, 0.041848912835121155, -0.03970373794436455, -0.8246824741363525, -0.8937715291976929, 0.9258413314819336, -0.012163988314568996, -0.6281052231788635, -0.36199551820755005, -0.4776912033557892]} +{"t": 13.1955, "q": [-0.3169596493244171, 0.0034821354784071445, -0.006187055725604296, 0.623367190361023, -0.321022629737854, -0.003156373044475913, -0.35859018564224243, 0.015467639081180096, -0.014931963756680489, 0.6042946577072144, -0.2906690835952759, -0.012697964906692505, 0.02977018430829048, -0.060541246086359024, -0.022090701386332512, 0.13019661605358124, 0.1344270557165146, 0.025142904371023178, 1.2408826351165771, 0.14532071352005005, 0.04186089709401131, -0.039691753685474396, -0.8266239166259766, -0.8938554525375366, 0.9259132146835327, -0.012116051279008389, -0.6280932426452637, -0.36204344034194946, -0.4758935868740082]} +{"t": 13.2123, "q": [-0.31700223684310913, 0.0035673570819199085, -0.006240623537451029, 0.6234694719314575, -0.32101836800575256, -0.0031345579773187637, -0.35857313871383667, 0.015459117479622364, -0.014891788363456726, 0.6040475368499756, -0.29044926166534424, -0.012619614601135254, 0.02977018430829048, -0.060913410037755966, -0.02230355702340603, 0.13010074198246002, 0.1348465085029602, 0.02515488862991333, 1.2408586740493774, 0.14532071352005005, 0.04188486561179161, -0.039691753685474396, -0.8282897472381592, -0.8938194513320923, 0.9258772730827332, -0.012080099433660507, -0.6280453205108643, -0.3620794117450714, -0.4745393693447113]} +{"t": 13.229, "q": [-0.3170278072357178, 0.0036696228198707104, -0.0062272315844893456, 0.6235631704330444, -0.32101428508758545, -0.003141776891425252, -0.35862424969673157, 0.015425029210746288, -0.014891788363456726, 0.6038430333137512, -0.29025423526763916, -0.012613426893949509, 0.029823752120137215, -0.06111863628029823, -0.02244224026799202, 0.12999288737773895, 0.13526594638824463, 0.025142904371023178, 1.2408826351165771, 0.1453087329864502, 0.04187288135290146, -0.0397157222032547, -0.8299914598464966, -0.8937116265296936, 0.9259251952171326, -0.01212803553789854, -0.6280213594436646, -0.3621273338794708, -0.47323307394981384]} +{"t": 13.246, "q": [-0.31712156534194946, 0.0036866669543087482, -0.006254015490412712, 0.6236910223960876, -0.3210184574127197, -0.0031490749679505825, -0.35859018564224243, 0.015416506677865982, -0.014905179850757122, 0.6036981344223022, -0.29010075330734253, -0.012578114867210388, 0.029837142676115036, -0.061293452978134155, -0.022560374811291695, 0.1299809068441391, 0.13556554913520813, 0.02503504604101181, 1.2408586740493774, 0.1452607959508896, 0.04187288135290146, -0.039739690721035004, -0.8322205543518066, -0.8936396837234497, 0.9260210990905762, -0.0121879568323493, -0.6280453205108643, -0.36219924688339233, -0.4716751277446747]} +{"t": 13.2629, "q": [-0.317155659198761, 0.0037122326903045177, -0.006254015490412712, 0.6240148544311523, -0.3210184574127197, -0.0031490749679505825, -0.3586072027683258, 0.015425029210746288, -0.014918571338057518, 0.6036555171012878, -0.28995567560195923, -0.012456011958420277, 0.029810359701514244, -0.06142254173755646, -0.022628193721175194, 0.13004082441329956, 0.13573333621025085, 0.025047030299901962, 1.2408705949783325, 0.14527277648448944, 0.04187288135290146, -0.03977564349770546, -0.8357798457145691, -0.8936876654624939, 0.9260929822921753, -0.012235893867909908, -0.628069281578064, -0.36227113008499146, -0.4699493944644928]} +{"t": 13.2796, "q": [-0.31726643443107605, 0.0037974542938172817, -0.006307582836598158, 0.6242790222167969, -0.3210347890853882, -0.003120180917903781, -0.35864129662513733, 0.01540798507630825, -0.014905179850757122, 0.6035873293876648, -0.28988945484161377, -0.012340715155005455, 0.029837142676115036, -0.06156695634126663, -0.022725781425833702, 0.13016067445278168, 0.13593706488609314, 0.025070998817682266, 1.2409186363220215, 0.14527277648448944, 0.04187288135290146, -0.03978762775659561, -0.8388358354568481, -0.8937715291976929, 0.9261648654937744, -0.012271846644580364, -0.628069281578064, -0.3623790144920349, -0.46788811683654785]} +{"t": 13.2964, "q": [-0.31740278005599976, 0.0037974542938172817, -0.00638793408870697, 0.6244324445724487, -0.32104286551475525, -0.003091225866228342, -0.3587009608745575, 0.015390940010547638, -0.014972139149904251, 0.6035191416740417, -0.28981900215148926, -0.0122615871950984, 0.029944278299808502, -0.061908867210149765, -0.022937415167689323, 0.13020861148834229, 0.13612881302833557, 0.025070998817682266, 1.2408946752548218, 0.1452847570180893, 0.04187288135290146, -0.03977564349770546, -0.8412926197052002, -0.8938794136047363, 0.9262008666992188, -0.012319783680140972, -0.6280812621116638, -0.36259472370147705, -0.46553921699523926]} +{"t": 13.3131, "q": [-0.3175221085548401, 0.003780410159379244, -0.006521853152662516, 0.6246028542518616, -0.32105112075805664, -0.0030913047958165407, -0.35872653126716614, 0.015416506677865982, -0.014972139149904251, 0.6034595370292664, -0.2897568941116333, -0.012153495103120804, 0.029971063137054443, -0.062349654734134674, -0.0232255756855011, 0.13022059202194214, 0.136320561170578, 0.025070998817682266, 1.2409065961837769, 0.14524881541728973, 0.04187288135290146, -0.03978762775659561, -0.8439051508903503, -0.8942509293556213, 0.9262727499008179, -0.012319783680140972, -0.6280932426452637, -0.3629782199859619, -0.46284276247024536]} +{"t": 13.3298, "q": [-0.3176499307155609, 0.003823020961135626, -0.0065620290115475655, 0.624713659286499, -0.3210510015487671, -0.003076787805184722, -0.3588458299636841, 0.015390940010547638, -0.014985531568527222, 0.6033913493156433, -0.28972792625427246, -0.012103050015866756, 0.029997846111655235, -0.06290394067764282, -0.023513302206993103, 0.13034042716026306, 0.13676397502422333, 0.025070998817682266, 1.2409065961837769, 0.1452368199825287, 0.041848912835121155, -0.039811596274375916, -0.8465297222137451, -0.8950778245925903, 0.9263206720352173, -0.01230779942125082, -0.6281172037124634, -0.3636493384838104, -0.45965495705604553]} +{"t": 13.3465, "q": [-0.31772664189338684, 0.0038741533644497395, -0.006615596357733011, 0.6248244643211365, -0.32105520367622375, -0.0030840858817100525, -0.3588799238204956, 0.01540798507630825, -0.014985531568527222, 0.6032549738883972, -0.28969889879226685, -0.012081527151167393, 0.029971063137054443, -0.0636410266160965, -0.02398337796330452, 0.1303524225950241, 0.13727930188179016, 0.02509496733546257, 1.2408946752548218, 0.1452368199825287, 0.041848912835121155, -0.03976365923881531, -0.8485910296440125, -0.896156370639801, 0.9263086915016174, -0.012283830903470516, -0.6281291842460632, -0.3649316430091858, -0.4563233554363251]} +{"t": 13.3633, "q": [-0.3178715109825134, 0.003908241633325815, -0.006709339562803507, 0.6249096989631653, -0.3210674524307251, -0.003062410745769739, -0.3589310646057129, 0.015399462543427944, -0.014972139149904251, 0.6031782627105713, -0.2896532714366913, -0.012074544094502926, 0.029971063137054443, -0.06437825411558151, -0.02448296546936035, 0.13046027719974518, 0.13778263330459595, 0.025142904371023178, 1.2409065961837769, 0.1452368199825287, 0.04186089709401131, -0.03977564349770546, -0.850053071975708, -0.8973788022994995, 0.9262128472328186, -0.01224787812680006, -0.6281172037124634, -0.36699292063713074, -0.4548972249031067]} +{"t": 13.38, "q": [-0.31791412830352783, 0.003993463236838579, -0.00672273151576519, 0.6250971555709839, -0.3210838735103607, -0.0030480518471449614, -0.35893958806991577, 0.015331286005675793, -0.014985531568527222, 0.6031271815299988, -0.2896242141723633, -0.012067454867064953, 0.02993088588118553, -0.06500893086194992, -0.024891342967748642, 0.13048423826694489, 0.13830994069576263, 0.025142904371023178, 1.2409305572509766, 0.14527277648448944, 0.04187288135290146, -0.03976365923881531, -0.8514432311058044, -0.8984094262123108, 0.9262487888336182, -0.012223909609019756, -0.6280812621116638, -0.37080392241477966, -0.45393848419189453]} +{"t": 13.3968, "q": [-0.3180760443210602, 0.004044595640152693, -0.00672273151576519, 0.6251994371414185, -0.32110846042633057, -0.0030192548874765635, -0.3590247929096222, 0.015382418408989906, -0.014972139149904251, 0.603110134601593, -0.28960344195365906, -0.012089243158698082, 0.029863927513360977, -0.06564749032258987, -0.02534429170191288, 0.13056813180446625, 0.13872939348220825, 0.025166872888803482, 1.2409186363220215, 0.14522483944892883, 0.04187288135290146, -0.03978762775659561, -0.8523181080818176, -0.8992723226547241, 0.9262008666992188, -0.012211925350129604, -0.628069281578064, -0.3741355240345001, -0.4527999758720398]} +{"t": 13.4135, "q": [-0.3182123899459839, 0.004044595640152693, -0.006736123468726873, 0.6253187656402588, -0.321124792098999, -0.0029903787653893232, -0.35905036330223083, 0.015365374274551868, -0.014958747662603855, 0.603110134601593, -0.2894914150238037, -0.012082630768418312, 0.029676441103219986, -0.06636203825473785, -0.02584889344871044, 0.1306280493736267, 0.13913685083389282, 0.02515488862991333, 1.2409425973892212, 0.14527277648448944, 0.04187288135290146, -0.03976365923881531, -0.853192925453186, -0.9002190232276917, 0.9259731769561768, -0.012211925350129604, -0.6280333399772644, -0.37677204608917236, -0.45148172974586487]} +{"t": 13.4303, "q": [-0.31831464171409607, 0.004087206441909075, -0.006736123468726873, 0.6253954172134399, -0.3211533725261688, -0.0029398277401924133, -0.3590759336948395, 0.015356851741671562, -0.014931963756680489, 0.6030760407447815, -0.2894582152366638, -0.012082807719707489, 0.029355036094784737, -0.06686367839574814, -0.02619956247508526, 0.13071194291114807, 0.1395443230867386, 0.02515488862991333, 1.2410024404525757, 0.14529675245285034, 0.04188486561179161, -0.03976365923881531, -0.8542835116386414, -0.9012137651443481, 0.9258533120155334, -0.012140019796788692, -0.6279853582382202, -0.37914493680000305, -0.4496001899242401]} +{"t": 13.447, "q": [-0.3183572590351105, 0.0041212947107851505, -0.006736123468726873, 0.6254976987838745, -0.3211778700351715, -0.0028964956291019917, -0.359110027551651, 0.015331286005675793, -0.01486500445753336, 0.6030334234237671, -0.28938353061676025, -0.012068754062056541, 0.029006846249103546, -0.06723606586456299, -0.02645285055041313, 0.1308557540178299, 0.13995178043842316, 0.02515488862991333, 1.241098403930664, 0.1453087329864502, 0.04188486561179161, -0.03977564349770546, -0.8547748923301697, -0.9023282527923584, 0.9257934093475342, -0.012163988314568996, -0.6279733777046204, -0.380834698677063, -0.44751495122909546]} +{"t": 13.4637, "q": [-0.31836578249931335, 0.00418094964697957, -0.006709339562803507, 0.6257703900337219, -0.32124337553977966, -0.0028099894989281893, -0.3591015040874481, 0.015339807607233524, -0.01486500445753336, 0.6030334234237671, -0.2893088459968567, -0.012069150805473328, 0.02802923694252968, -0.06741847097873688, -0.02657695859670639, 0.13108345866203308, 0.14033527672290802, 0.025142904371023178, 1.241098403930664, 0.14532071352005005, 0.04187288135290146, -0.03976365923881531, -0.8546430468559265, -0.9029634594917297, 0.9256855249404907, -0.012199941091239452, -0.6279853582382202, -0.3818773329257965, -0.44569334387779236]} +{"t": 13.4805, "q": [-0.3184765875339508, 0.004232082050293684, -0.006709339562803507, 0.6261197924613953, -0.3213005065917969, -0.002708905376493931, -0.3591526448726654, 0.015271631069481373, -0.01471769344061613, 0.6030248999595642, -0.28915533423423767, -0.012048272415995598, 0.026757007464766502, -0.06742606312036514, -0.026582129299640656, 0.13128718733787537, 0.14057496190071106, 0.025142904371023178, 1.2412900924682617, 0.14527277648448944, 0.04192081838846207, -0.03976365923881531, -0.8546430468559265, -0.9028675556182861, 0.9256256222724915, -0.012140019796788692, -0.6280093789100647, -0.3826083838939667, -0.4435601532459259]} +{"t": 13.4972, "q": [-0.31873223185539246, 0.004232082050293684, -0.006695947609841824, 0.6263073086738586, -0.3213251829147339, -0.0026946072466671467, -0.3593401312828064, 0.015271631069481373, -0.014597166329622269, 0.6030334234237671, -0.28903090953826904, -0.012005561962723732, 0.02623472362756729, -0.06741099059581757, -0.026591334491968155, 0.1311793327331543, 0.14070679247379303, 0.025130920112133026, 1.241266131401062, 0.1453326940536499, 0.041908834129571915, -0.03977564349770546, -0.8547029495239258, -0.9028076529502869, 0.9255297183990479, -0.012163988314568996, -0.6279973983764648, -0.3831236958503723, -0.44087567925453186]} +{"t": 13.514, "q": [-0.31895381212234497, 0.004232082050293684, -0.006669164169579744, 0.6264607310295105, -0.32130858302116394, -0.0026799323968589306, -0.3594253361225128, 0.015322763472795486, -0.014556990936398506, 0.6029993295669556, -0.2888442277908325, -0.011955974623560905, 0.02585975080728531, -0.06739591807126999, -0.026600539684295654, 0.1309036910533905, 0.14082662761211395, 0.025142904371023178, 1.2412781715393066, 0.14534468948841095, 0.04194478690624237, -0.03977564349770546, -0.8549066781997681, -0.9028435945510864, 0.9254458546638489, -0.012140019796788692, -0.6279973983764648, -0.3834232985973358, -0.43773582577705383]} +{"t": 13.5308, "q": [-0.31914129853248596, 0.0043002585880458355, -0.006669164169579744, 0.6266822814941406, -0.32131683826446533, -0.0026800113264471292, -0.3594764769077301, 0.015339807607233524, -0.014597166329622269, 0.6029396653175354, -0.2887238562107086, -0.01197829283773899, 0.02568565495312214, -0.06740351766347885, -0.02660571224987507, 0.13077186048030853, 0.14099441468715668, 0.025130920112133026, 1.2412781715393066, 0.1452847570180893, 0.04194478690624237, -0.03978762775659561, -0.8552542328834534, -0.902879536151886, 0.9254218935966492, -0.01212803553789854, -0.6279733777046204, -0.3835791051387787, -0.4351951479911804]} +{"t": 13.5475, "q": [-0.3191753923892975, 0.0043854801915585995, -0.00672273151576519, 0.626954972743988, -0.32133325934410095, -0.002665652194991708, -0.35945090651512146, 0.015339807607233524, -0.014610557816922665, 0.6028629541397095, -0.2886699438095093, -0.011971335858106613, 0.025672264397144318, -0.06751751899719238, -0.026683278381824493, 0.13081979751586914, 0.14115020632743835, 0.025142904371023178, 1.2412781715393066, 0.14529675245285034, 0.04198073968291283, -0.03978762775659561, -0.8554939031600952, -0.902879536151886, 0.9254218935966492, -0.012163988314568996, -0.6279374361038208, -0.38368695974349976, -0.43388888239860535]} +{"t": 13.5643, "q": [-0.31920096278190613, 0.004419568460434675, -0.0067896912805736065, 0.627099871635437, -0.32135793566703796, -0.0026513542979955673, -0.35940828919410706, 0.015322763472795486, -0.014637341722846031, 0.6027606725692749, -0.2886326313018799, -0.011935404501855373, 0.02568565495312214, -0.06779871135950089, -0.026874611154198647, 0.13093964755535126, 0.14129401743412018, 0.02515488862991333, 1.2413021326065063, 0.1452368199825287, 0.041968755424022675, -0.03978762775659561, -0.8555418848991394, -0.9028675556182861, 0.9254698157310486, -0.012163988314568996, -0.6279374361038208, -0.3837948143482208, -0.43310990929603577]} +{"t": 13.581, "q": [-0.3193202614784241, 0.004487745929509401, -0.0068030827678740025, 0.6272532343864441, -0.3213866055011749, -0.0026153381913900375, -0.3594338595867157, 0.015365374274551868, -0.014637341722846031, 0.6025902628898621, -0.28862014412879944, -0.011957149021327496, 0.025832965970039368, -0.06807231158018112, -0.027060773223638535, 0.13111941516399384, 0.1414617896080017, 0.025142904371023178, 1.2412900924682617, 0.14532071352005005, 0.04198073968291283, -0.039799612015485764, -0.8556017875671387, -0.9028675556182861, 0.9254937767982483, -0.012175972573459148, -0.627925455570221, -0.3838307559490204, -0.4322590231895447]} +{"t": 13.5977, "q": [-0.3195333182811737, 0.004496267531067133, -0.006910218391567469, 0.6273981332778931, -0.3214276134967804, -0.002572182333096862, -0.35945090651512146, 0.015331286005675793, -0.014650734141469002, 0.6024368405342102, -0.28858283162117004, -0.011935669928789139, 0.0260472372174263, -0.06836105138063431, -0.027247507125139236, 0.13119131326675415, 0.1416655331850052, 0.025166872888803482, 1.2412900924682617, 0.14532071352005005, 0.04195677116513252, -0.039799612015485764, -0.8556976318359375, -0.902879536151886, 0.9255057573318481, -0.012163988314568996, -0.6278775334358215, -0.3838547468185425, -0.43124035000801086]} +{"t": 13.6144, "q": [-0.3197634220123291, 0.004504790063947439, -0.007003961596637964, 0.6275941729545593, -0.3214398920536041, -0.0025505071971565485, -0.35949352383613586, 0.015365374274551868, -0.01471769344061613, 0.6023005247116089, -0.2885703146457672, -0.01198633573949337, 0.026301683858036995, -0.06861943006515503, -0.027423415333032608, 0.13121528923511505, 0.14188124239444733, 0.025142904371023178, 1.241326093673706, 0.14534468948841095, 0.04194478690624237, -0.03978762775659561, -0.8559013605117798, -0.902879536151886, 0.9254817962646484, -0.012152004055678844, -0.6277816295623779, -0.38384273648262024, -0.42989811301231384]} +{"t": 13.6311, "q": [-0.32019802927970886, 0.004538878332823515, -0.007164664100855589, 0.6278583407402039, -0.3214641809463501, -0.0024781229440122843, -0.3595702052116394, 0.015365374274551868, -0.014824828132987022, 0.6021897196769714, -0.2885909080505371, -0.012094649486243725, 0.02656952105462551, -0.06888546049594879, -0.027614371851086617, 0.131203293800354, 0.1420849710702896, 0.02515488862991333, 1.241326093673706, 0.14532071352005005, 0.04194478690624237, -0.03977564349770546, -0.8562369346618652, -0.9028675556182861, 0.925433874130249, -0.012175972573459148, -0.6277456879615784, -0.3838547468185425, -0.42807653546333313]} +{"t": 13.6478, "q": [-0.32076048851013184, 0.004581489134579897, -0.00735215051099658, 0.628148078918457, -0.32153764367103577, -0.0023481447715312243, -0.35977473855018616, 0.015365374274551868, -0.014945355243980885, 0.602078914642334, -0.28857430815696716, -0.012094737030565739, 0.02690431848168373, -0.0691666305065155, -0.027805911377072334, 0.1311793327331543, 0.14225275814533234, 0.025142904371023178, 1.241326093673706, 0.1453326940536499, 0.04194478690624237, -0.03978762775659561, -0.8565365672111511, -0.9027717113494873, 0.9254218935966492, -0.0121879568323493, -0.6276498436927795, -0.3838307559490204, -0.42655453085899353]} +{"t": 13.6648, "q": [-0.321450799703598, 0.004607054870575666, -0.0074860695749521255, 0.6284719109535217, -0.3216641843318939, -0.0021242834627628326, -0.36014971137046814, 0.0153738958761096, -0.01511945016682148, 0.6019766926765442, -0.28857430815696716, -0.012094737030565739, 0.027279291301965714, -0.0695466622710228, -0.02807481586933136, 0.13116735219955444, 0.14249244332313538, 0.025142904371023178, 1.2412781715393066, 0.14527277648448944, 0.04192081838846207, -0.039799612015485764, -0.8567882180213928, -0.902735710144043, 0.9254218935966492, -0.012140019796788692, -0.627697765827179, -0.3838307559490204, -0.42538008093833923]} +{"t": 13.6815, "q": [-0.32222631573677063, 0.004615577403455973, -0.007619988638907671, 0.6288213133811951, -0.32167643308639526, -0.0021026262547820807, -0.36046504974365234, 0.015399462543427944, -0.015226585790514946, 0.6019681692123413, -0.2885577082633972, -0.01210927776992321, 0.027627481147646904, -0.06985829770565033, -0.02829708158969879, 0.1311793327331543, 0.1426602154970169, 0.025142904371023178, 1.2412781715393066, 0.14532071352005005, 0.04189684987068176, -0.03978762775659561, -0.8573994040489197, -0.902795672416687, 0.9254099130630493, -0.0121879568323493, -0.627697765827179, -0.3838547468185425, -0.42430150508880615]} +{"t": 13.6982, "q": [-0.323248952627182, 0.004624099005013704, -0.007834259420633316, 0.629128098487854, -0.3217093050479889, -0.002073908457532525, -0.3611382842063904, 0.015484684146940708, -0.0154542475938797, 0.6019085049629211, -0.2884044349193573, -0.011914941482245922, 0.02788192592561245, -0.07030659168958664, -0.028593072667717934, 0.13121528923511505, 0.14305569231510162, 0.025142904371023178, 1.2412781715393066, 0.14521285891532898, 0.04187288135290146, -0.03978762775659561, -0.8584660291671753, -0.9031911492347717, 0.9254218935966492, -0.0121879568323493, -0.6277097463607788, -0.38389068841934204, -0.4228873550891876]} +{"t": 13.7152, "q": [-0.32438239455223083, 0.004649665672332048, -0.007887826301157475, 0.6293752789497375, -0.32170093059539795, -0.002059294143691659, -0.36193084716796875, 0.015535816550254822, -0.015547990798950195, 0.6018744111061096, -0.2881019115447998, -0.011620203033089638, 0.027935493737459183, -0.07102856040000916, -0.02909543178975582, 0.13135908544063568, 0.14349910616874695, 0.02515488862991333, 1.2413140535354614, 0.14522483944892883, 0.04189684987068176, -0.039811596274375916, -0.8594487309455872, -0.9033469557762146, 0.925373911857605, -0.012163988314568996, -0.6276738047599792, -0.3839026689529419, -0.4209698736667633]} +{"t": 13.7319, "q": [-0.3255073130130768, 0.0046326215378940105, -0.007901218719780445, 0.6295456886291504, -0.32169675827026367, -0.002051996299996972, -0.3630557656288147, 0.01563808135688305, -0.015561383217573166, 0.6018829345703125, -0.2877327501773834, -0.011499274522066116, 0.027989061549305916, -0.07175803929567337, -0.029603851959109306, 0.13151489198207855, 0.14389459788799286, 0.02515488862991333, 1.241326093673706, 0.1452368199825287, 0.04186089709401131, -0.039799612015485764, -0.8601917624473572, -0.9033109545707703, 0.9253858923912048, -0.012223909609019756, -0.6276498436927795, -0.3839026689529419, -0.4189565181732178]} +{"t": 13.7487, "q": [-0.3263339698314667, 0.004683753941208124, -0.007874434813857079, 0.6296138763427734, -0.32168442010879517, -0.0020591362845152617, -0.3638398051261902, 0.015621037222445011, -0.015481031499803066, 0.601848840713501, -0.2875129282474518, -0.011406490579247475, 0.027948886156082153, -0.0723503828048706, -0.029960263520479202, 0.13153885304927826, 0.14432603120803833, 0.025142904371023178, 1.2413380146026611, 0.14524881541728973, 0.04188486561179161, -0.03978762775659561, -0.8605512380599976, -0.9030952453613281, 0.9254218935966492, -0.01230779942125082, -0.62761390209198, -0.3839026689529419, -0.4172068238258362]} +{"t": 13.7655, "q": [-0.3268793821334839, 0.0046752323396503925, -0.007847650907933712, 0.6296053528785706, -0.32168442010879517, -0.0020591362845152617, -0.36426588892936707, 0.01587670110166073, -0.015467639081180096, 0.6017124652862549, -0.2872888147830963, -0.011436586268246174, 0.02790871076285839, -0.07282079011201859, -0.030174707993865013, 0.13153885304927826, 0.14479340612888336, 0.025166872888803482, 1.2413740158081055, 0.14522483944892883, 0.04187288135290146, -0.03978762775659561, -0.8605272769927979, -0.902879536151886, 0.9256495833396912, -0.01230779942125082, -0.6275898814201355, -0.3839026689529419, -0.4158526062965393]} +{"t": 13.7823, "q": [-0.32693052291870117, 0.0046752323396503925, -0.007834259420633316, 0.6296223998069763, -0.32169675827026367, -0.002051996299996972, -0.3642573654651642, 0.016038620844483376, -0.0154542475938797, 0.6015591025352478, -0.28706884384155273, -0.011459452100098133, 0.02770783193409443, -0.07316884398460388, -0.030188685283064842, 0.1315028965473175, 0.14520087838172913, 0.025142904371023178, 1.2413740158081055, 0.14524881541728973, 0.04189684987068176, -0.03978762775659561, -0.8604434132575989, -0.9026997685432434, 0.9258413314819336, -0.01236772071570158, -0.6275898814201355, -0.3839026689529419, -0.4147740304470062]} +{"t": 13.799, "q": [-0.32693052291870117, 0.004615577403455973, -0.007780691608786583, 0.6296053528785706, -0.32172533869743347, -0.0020014450419694185, -0.36423182487487793, 0.015970444306731224, -0.015347111970186234, 0.6013801097869873, -0.28706055879592896, -0.011445044539868832, 0.02758730575442314, -0.07326743006706238, -0.03022686578333378, 0.13144297897815704, 0.14550048112869263, 0.025142904371023178, 1.2413500547409058, 0.14529675245285034, 0.04186089709401131, -0.039811596274375916, -0.8602995872497559, -0.9025799632072449, 0.9259012341499329, -0.012379704974591732, -0.6275898814201355, -0.3838787078857422, -0.4139830768108368]} +{"t": 13.8159, "q": [-0.32688790559768677, 0.004538878332823515, -0.0076467725448310375, 0.6295968294143677, -0.3218272924423218, -0.001806398737244308, -0.3642062544822693, 0.016021577641367912, -0.015239977277815342, 0.60132896900177, -0.2870107591152191, -0.011445309966802597, 0.02737303450703621, -0.0732523649930954, -0.03023603744804859, 0.13139504194259644, 0.14562031626701355, 0.025142904371023178, 1.2413380146026611, 0.1452368199825287, 0.04187288135290146, -0.03985953330993652, -0.8600718975067139, -0.9025319814682007, 0.9259731769561768, -0.01245160959661007, -0.6276018619537354, -0.3839026689529419, -0.4135875999927521]} +{"t": 13.8328, "q": [-0.32688790559768677, 0.004462179262191057, -0.007499461527913809, 0.6295542120933533, -0.3219131827354431, -0.0016837975708767772, -0.3642062544822693, 0.016038620844483376, -0.015146234072744846, 0.6013460159301758, -0.28699418902397156, -0.011430946178734303, 0.027091804891824722, -0.07323716580867767, -0.03022564947605133, 0.13129916787147522, 0.14564429223537445, 0.025142904371023178, 1.2413619756698608, 0.14534468948841095, 0.04187288135290146, -0.03991945460438728, -0.8599041104316711, -0.9025200009346008, 0.9260570406913757, -0.012607404962182045, -0.6275779008865356, -0.3839266300201416, -0.41341981291770935]} +{"t": 13.8496, "q": [-0.326870858669281, 0.004411046858876944, -0.00735215051099658, 0.6295456886291504, -0.32195401191711426, -0.001611571409739554, -0.3642062544822693, 0.016089754179120064, -0.01505249086767435, 0.6012778282165527, -0.286977618932724, -0.01141656469553709, 0.02686414308845997, -0.07323716580867767, -0.03022564947605133, 0.1312752068042755, 0.1456323117017746, 0.025070998817682266, 1.2413619756698608, 0.1453087329864502, 0.04189684987068176, -0.039931438863277435, -0.8594966530799866, -0.9023402333259583, 0.9260210990905762, -0.012799152173101902, -0.62761390209198, -0.3839506208896637, -0.41339585185050964]} +{"t": 13.8663, "q": [-0.32688790559768677, 0.004394001793116331, -0.007298583164811134, 0.6295371651649475, -0.32198259234428406, -0.001561020384542644, -0.3642062544822693, 0.016081232577562332, -0.015025706961750984, 0.6012522578239441, -0.286940336227417, -0.011366164311766624, 0.026663264259696007, -0.07322956621646881, -0.030220454558730125, 0.1312752068042755, 0.1456802487373352, 0.025118935853242874, 1.2413740158081055, 0.14534468948841095, 0.041908834129571915, -0.03995540738105774, -0.8590292930603027, -0.902136504650116, 0.9259851574897766, -0.013110741972923279, -0.6276618242263794, -0.3840225040912628, -0.4133119583129883]} +{"t": 13.883, "q": [-0.32685381174087524, 0.0043854801915585995, -0.007271799258887768, 0.6295371651649475, -0.3219989240169525, -0.0015321442624554038, -0.3641465902328491, 0.016166452318429947, -0.015012315474450588, 0.6012011766433716, -0.28687384724617004, -0.011438812129199505, 0.026475777849555016, -0.07323716580867767, -0.03022564947605133, 0.1312512308359146, 0.14577612280845642, 0.02509496733546257, 1.2413979768753052, 0.1453566700220108, 0.04189684987068176, -0.03996739163994789, -0.8587895631790161, -0.9019807577133179, 0.9259971380233765, -0.013386379927396774, -0.6276498436927795, -0.3842262327671051, -0.4131321907043457]} +{"t": 13.8998, "q": [-0.3268282413482666, 0.004394001793116331, -0.007311975117772818, 0.6295371651649475, -0.32200300693511963, -0.0015249252319335938, -0.36413806676864624, 0.016166452318429947, -0.014998923055827618, 0.6011500358581543, -0.28689050674438477, -0.011395351029932499, 0.02636864222586155, -0.07322963327169418, -0.030230235308408737, 0.13129916787147522, 0.14577612280845642, 0.025082983076572418, 1.2413740158081055, 0.1453326940536499, 0.041908834129571915, -0.03997937589883804, -0.8588734865188599, -0.9019447565078735, 0.9259132146835327, -0.013602095656096935, -0.6276738047599792, -0.38453784584999084, -0.4129524230957031]} +{"t": 13.9165, "q": [-0.3267686069011688, 0.004402524325996637, -0.007311975117772818, 0.6295371651649475, -0.32200300693511963, -0.0015249252319335938, -0.36408692598342896, 0.01613236404955387, -0.015012315474450588, 0.601098895072937, -0.28689464926719666, -0.01140255481004715, 0.026315074414014816, -0.07323729246854782, -0.030245209112763405, 0.13128718733787537, 0.14580008387565613, 0.025070998817682266, 1.2413500547409058, 0.14534468948841095, 0.04192081838846207, -0.04000334441661835, -0.8592929244041443, -0.9019567370414734, 0.9255297183990479, -0.013793842867016792, -0.6276857852935791, -0.384753555059433, -0.4128565490245819]} +{"t": 13.9333, "q": [-0.32671746611595154, 0.004445135127753019, -0.007311975117772818, 0.629503071308136, -0.3220113515853882, -0.001539539429359138, -0.3640784025192261, 0.01613236404955387, -0.015012315474450588, 0.6010818481445312, -0.286911278963089, -0.011373545043170452, 0.026315074414014816, -0.0732373595237732, -0.030254987999796867, 0.13129916787147522, 0.14582405984401703, 0.025070998817682266, 1.2413979768753052, 0.1453326940536499, 0.04192081838846207, -0.04002731293439865, -0.859688401222229, -0.9019447565078735, 0.9252541065216064, -0.013817811384797096, -0.627697765827179, -0.38486140966415405, -0.41284456849098206]} +{"t": 13.95, "q": [-0.32668337225914, 0.004504790063947439, -0.007338759023696184, 0.6295115947723389, -0.3220113515853882, -0.001539539429359138, -0.36404433846473694, 0.016115320846438408, -0.014985531568527222, 0.6010648012161255, -0.2869112491607666, -0.011402466334402561, 0.026435602456331253, -0.07326021790504456, -0.030280349776148796, 0.13129916787147522, 0.14582405984401703, 0.025082983076572418, 1.2413859367370605, 0.1453326940536499, 0.04193280264735222, -0.0400153286755085, -0.8598921298980713, -0.9018968343734741, 0.9249424934387207, -0.013877732679247856, -0.6276498436927795, -0.3849213421344757, -0.4128325879573822]} +{"t": 13.9669, "q": [-0.3267004191875458, 0.004564445000141859, -0.00735215051099658, 0.6295286417007446, -0.3220030963420868, -0.0015394423389807343, -0.3640528619289398, 0.016038620844483376, -0.014985531568527222, 0.601030707359314, -0.28690290451049805, -0.01143141370266676, 0.026408817619085312, -0.07326021790504456, -0.030280349776148796, 0.13135908544063568, 0.14581206440925598, 0.025059014558792114, 1.2413859367370605, 0.1452847570180893, 0.04195677116513252, -0.04002731293439865, -0.8599280714988708, -0.9017530083656311, 0.9245949387550354, -0.013877732679247856, -0.6276378631591797, -0.384981244802475, -0.41282060742378235]} +{"t": 13.9837, "q": [-0.32670894265174866, 0.004615577403455973, -0.00735215051099658, 0.629503071308136, -0.32200321555137634, -0.0015539774904027581, -0.3641039729118347, 0.016038620844483376, -0.014985531568527222, 0.6010136604309082, -0.2870022654533386, -0.01160435937345028, 0.02638203464448452, -0.07324515283107758, -0.03028952330350876, 0.13141901791095734, 0.14580008387565613, 0.025070998817682266, 1.2414219379425049, 0.14532071352005005, 0.04193280264735222, -0.040051281452178955, -0.8598442077636719, -0.9015852212905884, 0.9245350360870361, -0.013865748420357704, -0.6276378631591797, -0.3850052058696747, -0.41279664635658264]} +{"t": 14.0004, "q": [-0.3267004191875458, 0.004683753941208124, -0.0074191102758049965, 0.6295286417007446, -0.3220157325267792, -0.001575871603563428, -0.3641210198402405, 0.016021577641367912, -0.014958747662603855, 0.6009795665740967, -0.2873540222644806, -0.01230360846966505, 0.026288291439414024, -0.07324515283107758, -0.03028952330350876, 0.1314789354801178, 0.14580008387565613, 0.025070998817682266, 1.2414578199386597, 0.14536865055561066, 0.04192081838846207, -0.04006326571106911, -0.8595565557479858, -0.9012616872787476, 0.9244751334190369, -0.013889716938138008, -0.6276618242263794, -0.3850052058696747, -0.41277265548706055]} +{"t": 14.0171, "q": [-0.32671746611595154, 0.004803063813596964, -0.00743250222876668, 0.6295201182365417, -0.3220198154449463, -0.0015686525730416179, -0.364155113697052, 0.015902267768979073, -0.014931963756680489, 0.6009113788604736, -0.2874574363231659, -0.01255603414028883, 0.026261506602168083, -0.07323761284351349, -0.030294109135866165, 0.13149091601371765, 0.14581206440925598, 0.025047030299901962, 1.241481900215149, 0.1452847570180893, 0.04192081838846207, -0.04007524996995926, -0.8591251373291016, -0.9009979963302612, 0.924463152885437, -0.013925669714808464, -0.6276738047599792, -0.38516101241111755, -0.4127606749534607]} +{"t": 14.0339, "q": [-0.32671746611595154, 0.0048968070186674595, -0.00743250222876668, 0.6295115947723389, -0.32201147079467773, -0.0015540565364062786, -0.3641892075538635, 0.015868179500102997, -0.014891788363456726, 0.6008262038230896, -0.287643700838089, -0.012909234501421452, 0.026154372841119766, -0.07323008030653, -0.030298694968223572, 0.1314789354801178, 0.14584802091121674, 0.025070998817682266, 1.2415177822113037, 0.14534468948841095, 0.04192081838846207, -0.0400392971932888, -0.858717679977417, -0.9008901715278625, 0.9244151711463928, -0.013949638232588768, -0.6276738047599792, -0.38529282808303833, -0.4127606749534607]} +{"t": 14.0506, "q": [-0.3267259895801544, 0.005041682627052069, -0.007445894181728363, 0.6295115947723389, -0.3220238983631134, -0.0015614335425198078, -0.3641977310180664, 0.015851134434342384, -0.014838220551609993, 0.6007324457168579, -0.28852131962776184, -0.014480280689895153, 0.02602045238018036, -0.07322254776954651, -0.03030328080058098, 0.1315028965473175, 0.14583604037761688, 0.025118935853242874, 1.2415058612823486, 0.14532071352005005, 0.04193280264735222, -0.04007524996995926, -0.8582382798194885, -0.9008302688598633, 0.9243432879447937, -0.014009559527039528, -0.6276618242263794, -0.38543665409088135, -0.41279664635658264]} +{"t": 14.0674, "q": [-0.3267345130443573, 0.005160992499440908, -0.00743250222876668, 0.6295286417007446, -0.3220363259315491, -0.001568810548633337, -0.3641977310180664, 0.015740348026156425, -0.014744477346539497, 0.600655734539032, -0.2884591519832611, -0.014415542595088482, 0.025832965970039368, -0.07320747524499893, -0.03031245432794094, 0.13149091601371765, 0.1458839774131775, 0.025082983076572418, 1.2415298223495483, 0.14534468948841095, 0.04193280264735222, -0.04006326571106911, -0.8578668236732483, -0.9006984233856201, 0.924319326877594, -0.014093449339270592, -0.6276498436927795, -0.38553252816200256, -0.4127846658229828]} +{"t": 14.0841, "q": [-0.3267686069011688, 0.005331434775143862, -0.00743250222876668, 0.6295201182365417, -0.32204458117485046, -0.0015688895946368575, -0.3642573654651642, 0.01569773629307747, -0.014757868833839893, 0.6005534529685974, -0.2887365221977234, -0.014912828803062439, 0.02568565495312214, -0.07320747524499893, -0.03031245432794094, 0.1315028965473175, 0.14591993391513824, 0.025106951594352722, 1.241553783416748, 0.14532071352005005, 0.04195677116513252, -0.04006326571106911, -0.8574233651161194, -0.9006145000457764, 0.9243313074111938, -0.014177338220179081, -0.6276378631591797, -0.3857003152370453, -0.4127606749534607]} +{"t": 14.1009, "q": [-0.3267941474914551, 0.005425177980214357, -0.007445894181728363, 0.6295371651649475, -0.32204875349998474, -0.0015761875547468662, -0.3642914593219757, 0.01569773629307747, -0.01470430102199316, 0.6004341840744019, -0.28899312019348145, -0.015417415648698807, 0.02553834579885006, -0.07322267442941666, -0.030322842299938202, 0.13153885304927826, 0.14596785604953766, 0.025070998817682266, 1.2415657043457031, 0.14534468948841095, 0.04194478690624237, -0.04007524996995926, -0.8570159077644348, -0.9005426168441772, 0.924319326877594, -0.014225275255739689, -0.6276738047599792, -0.38585609197616577, -0.4127606749534607]} +{"t": 14.1177, "q": [-0.3267856240272522, 0.005510399583727121, -0.007472677621990442, 0.6295201182365417, -0.32204049825668335, -0.0015761086251586676, -0.36446189880371094, 0.015663648024201393, -0.014757868833839893, 0.6003233790397644, -0.2890758514404297, -0.015619352459907532, 0.025444602593779564, -0.0732075423002243, -0.030322235077619553, 0.1315508335828781, 0.1460038125514984, 0.025082983076572418, 1.241553783416748, 0.14536865055561066, 0.04195677116513252, -0.04006326571106911, -0.8568121790885925, -0.9004587531089783, 0.9243313074111938, -0.014321149326860905, -0.6276498436927795, -0.3860718011856079, -0.4127606749534607]} +{"t": 14.1344, "q": [-0.3268623352050781, 0.005570054519921541, -0.007472677621990442, 0.6295286417007446, -0.3220570385456085, -0.0015762847615405917, -0.3646579086780548, 0.01564660482108593, -0.014744477346539497, 0.60028076171875, -0.2890882194042206, -0.015655433759093285, 0.025498168542981148, -0.07322274148464203, -0.030332623049616814, 0.1315028965473175, 0.14607572555541992, 0.02509496733546257, 1.2415657043457031, 0.1453566700220108, 0.04194478690624237, -0.04007524996995926, -0.8567402958869934, -0.9003628492355347, 0.9243432879447937, -0.014429006725549698, -0.6276378631591797, -0.3863714337348938, -0.4127606749534607]} +{"t": 14.1512, "q": [-0.32693052291870117, 0.005663797724992037, -0.007526245433837175, 0.6295286417007446, -0.3220570385456085, -0.0015762847615405917, -0.36464938521385193, 0.01565512642264366, -0.014744477346539497, 0.6001699566841125, -0.28909236192703247, -0.015677088871598244, 0.02552495338022709, -0.07322274148464203, -0.030332623049616814, 0.1315028965473175, 0.14611166715621948, 0.025070998817682266, 1.241553783416748, 0.1453566700220108, 0.041968755424022675, -0.04008723422884941, -0.8567043542861938, -0.9002310037612915, 0.9243672490119934, -0.014452975243330002, -0.6276498436927795, -0.38677889108657837, -0.412736713886261]} +{"t": 14.1679, "q": [-0.32699015736579895, 0.005723452661186457, -0.007526245433837175, 0.6295201182365417, -0.32206103205680847, -0.0015545125352218747, -0.36463233828544617, 0.015663648024201393, -0.01478465273976326, 0.6000592112541199, -0.28910893201828003, -0.0156914833933115, 0.025591911748051643, -0.07322274148464203, -0.030332623049616814, 0.13151489198207855, 0.14612366259098053, 0.025070998817682266, 1.2415896654129028, 0.14536865055561066, 0.04194478690624237, -0.04008723422884941, -0.8566443920135498, -0.9001471400260925, 0.9243672490119934, -0.014536865055561066, -0.6276738047599792, -0.38725826144218445, -0.4127127528190613]} +{"t": 14.1847, "q": [-0.327058345079422, 0.005766062531620264, -0.007553029339760542, 0.629503071308136, -0.3220650851726532, -0.0015472935047000647, -0.3646579086780548, 0.015680693089962006, -0.01479804515838623, 0.5999484062194824, -0.28909650444984436, -0.015684310346841812, 0.025591911748051643, -0.07323034107685089, -0.03033781610429287, 0.1315508335828781, 0.14606373012065887, 0.025070998817682266, 1.2416256666183472, 0.1453566700220108, 0.04193280264735222, -0.04007524996995926, -0.856548547744751, -0.9001471400260925, 0.9243672490119934, -0.014524880796670914, -0.6276738047599792, -0.3881450891494751, -0.41267678141593933]} +{"t": 14.2014, "q": [-0.3271435797214508, 0.005791629198938608, -0.007553029339760542, 0.629503071308136, -0.322073370218277, -0.0015473907114937901, -0.36464086174964905, 0.015731824561953545, -0.014851612038910389, 0.5998290777206421, -0.2890882194042206, -0.015669886022806168, 0.025645479559898376, -0.07323034107685089, -0.03033781610429287, 0.13159877061843872, 0.14609968662261963, 0.025082983076572418, 1.2416256666183472, 0.14529675245285034, 0.041908834129571915, -0.04009921848773956, -0.8565844893455505, -0.9000752568244934, 0.9243073463439941, -0.014464959502220154, -0.6277097463607788, -0.38967907428741455, -0.4126048982143402]} +{"t": 14.2181, "q": [-0.3272799253463745, 0.005825717467814684, -0.007593204732984304, 0.629503071308136, -0.32206499576568604, -0.0015327765140682459, -0.3646153211593628, 0.015731824561953545, -0.014838220551609993, 0.5997268557548523, -0.28889355063438416, -0.015389024280011654, 0.02571243979036808, -0.07323794066905975, -0.030343011021614075, 0.13156282901763916, 0.14612366259098053, 0.025070998817682266, 1.2415896654129028, 0.14532071352005005, 0.04194478690624237, -0.04009921848773956, -0.85663241147995, -0.8999913334846497, 0.9243313074111938, -0.014393054880201817, -0.6277337074279785, -0.3915845453739166, -0.41254496574401855]} +{"t": 14.2349, "q": [-0.3273736536502838, 0.005800151731818914, -0.007553029339760542, 0.629503071308136, -0.3220774531364441, -0.00154017168097198, -0.3645556569099426, 0.01581704616546631, -0.014851612038910389, 0.599607527256012, -0.2887982726097107, -0.015281125903129578, 0.02571243979036808, -0.0732228010892868, -0.030342401936650276, 0.13151489198207855, 0.14612366259098053, 0.025082983076572418, 1.2416256666183472, 0.14532071352005005, 0.041908834129571915, -0.04007524996995926, -0.8565844893455505, -0.8999434113502502, 0.9243313074111938, -0.01435710210353136, -0.6278296113014221, -0.3936817944049835, -0.41249704360961914]} +{"t": 14.2516, "q": [-0.3274588882923126, 0.005791629198938608, -0.007553029339760542, 0.6294946074485779, -0.3220691680908203, -0.0015400744741782546, -0.3645556569099426, 0.01581704616546631, -0.014851612038910389, 0.5995478630065918, -0.28780871629714966, -0.013616685755550861, 0.025645479559898376, -0.07323027402162552, -0.030328037217259407, 0.1315268725156784, 0.14614762365818024, 0.02509496733546257, 1.2416256666183472, 0.14529675245285034, 0.04193280264735222, -0.040111202746629715, -0.8562608957290649, -0.8999074697494507, 0.9243792295455933, -0.0142971808090806, -0.6277816295623779, -0.39564719796180725, -0.4124610722064972]} +{"t": 14.2683, "q": [-0.327433317899704, 0.00577458506450057, -0.007512853480875492, 0.6294519901275635, -0.32207733392715454, -0.0015256365295499563, -0.3645641803741455, 0.01587670110166073, -0.014824828132987022, 0.5994285345077515, -0.2869599461555481, -0.012211752124130726, 0.02553834579885006, -0.07322267442941666, -0.030322842299938202, 0.13156282901763916, 0.1461596041917801, 0.025118935853242874, 1.2415896654129028, 0.14534468948841095, 0.04193280264735222, -0.04009921848773956, -0.8558174967765808, -0.8998235464096069, 0.9243792295455933, -0.014285196550190449, -0.6278056502342224, -0.39737293124198914, -0.41242513060569763]} +{"t": 14.2852, "q": [-0.32744184136390686, 0.005749018397182226, -0.0074860695749521255, 0.629417896270752, -0.32208970189094543, -0.00151851458940655, -0.364530086517334, 0.01588522270321846, -0.014824828132987022, 0.5993604063987732, -0.286972314119339, -0.012276718392968178, 0.025297291576862335, -0.07323027402162552, -0.030328037217259407, 0.131574809551239, 0.1462075412273407, 0.025082983076572418, 1.2416256666183472, 0.14534468948841095, 0.04192081838846207, -0.04009921848773956, -0.8556497097015381, -0.8997157216072083, 0.9243073463439941, -0.014321149326860905, -0.6278056502342224, -0.39861929416656494, -0.4124371111392975]} +{"t": 14.3019, "q": [-0.32740774750709534, 0.005723452661186457, -0.007378934416919947, 0.629417896270752, -0.3220856189727783, -0.00152573361992836, -0.3645130395889282, 0.01594487763941288, -0.014771261252462864, 0.5993348360061646, -0.2866286635398865, -0.011693075299263, 0.02504284493625164, -0.07321508228778839, -0.030317649245262146, 0.13156282901763916, 0.1462315171957016, 0.02509496733546257, 1.2416375875473022, 0.1453087329864502, 0.04194478690624237, -0.04008723422884941, -0.8552422523498535, -0.8996557593345642, 0.9241635203361511, -0.013949638232588768, -0.6279014945030212, -0.399697870016098, -0.4124371111392975]} +{"t": 14.3187, "q": [-0.32745036482810974, 0.0056723193265497684, -0.007311975117772818, 0.6294008493423462, -0.3220856189727783, -0.00152573361992836, -0.36453860998153687, 0.015987489372491837, -0.01471769344061613, 0.5993263125419617, -0.2864961624145508, -0.011491421610116959, 0.024828573688864708, -0.07319988310337067, -0.030307261273264885, 0.13149091601371765, 0.1462554782629013, 0.025082983076572418, 1.2416616678237915, 0.14534468948841095, 0.04194478690624237, -0.04008723422884941, -0.854834794998169, -0.8995239734649658, 0.9241155982017517, -0.01342233270406723, -0.6280093789100647, -0.40104010701179504, -0.4124131500720978]} +{"t": 14.3355, "q": [-0.3274674117565155, 0.005587098654359579, -0.0072584073059260845, 0.6293241381645203, -0.32208141684532166, -0.0015184174990281463, -0.3645727038383484, 0.015970444306731224, -0.014731084927916527, 0.5993433594703674, -0.28638824820518494, -0.011491977609694004, 0.024627696722745895, -0.07317708432674408, -0.03029167838394642, 0.13132314383983612, 0.14635135233402252, 0.025070998817682266, 1.2416256666183472, 0.14532071352005005, 0.04194478690624237, -0.040111202746629715, -0.8544273376464844, -0.8993801474571228, 0.9241036176681519, -0.013338442891836166, -0.6280453205108643, -0.4021786153316498, -0.41242513060569763]} +{"t": 14.3522, "q": [-0.32749298214912415, 0.005578576121479273, -0.007231623865664005, 0.629272997379303, -0.3220772445201874, -0.0015111194225028157, -0.3645641803741455, 0.015961922705173492, -0.014757868833839893, 0.5993433594703674, -0.28633439540863037, -0.011441683396697044, 0.024480385705828667, -0.07316948473453522, -0.030286485329270363, 0.13128718733787537, 0.14645922183990479, 0.025082983076572418, 1.2416136264801025, 0.1453326940536499, 0.04194478690624237, -0.04014715552330017, -0.8540678024291992, -0.8992602825164795, 0.924091637134552, -0.013266537338495255, -0.6280812621116638, -0.4033171236515045, -0.41242513060569763]} +{"t": 14.369, "q": [-0.32739922404289246, 0.005587098654359579, -0.0072584073059260845, 0.6292218565940857, -0.32207733392715454, -0.0015256365295499563, -0.36453860998153687, 0.0160045325756073, -0.01478465273976326, 0.5993348360061646, -0.28630951046943665, -0.011427345685660839, 0.024225939065217972, -0.07317708432674408, -0.03029167838394642, 0.13135908544063568, 0.14645922183990479, 0.025070998817682266, 1.2416375875473022, 0.1452847570180893, 0.04195677116513252, -0.04013517126441002, -0.8538161516189575, -0.8991883993148804, 0.924091637134552, -0.013386379927396774, -0.6280213594436646, -0.40385639667510986, -0.41242513060569763]} +{"t": 14.3858, "q": [-0.3272799253463745, 0.005655275192111731, -0.0072584073059260845, 0.6292133331298828, -0.32208141684532166, -0.0015184174990281463, -0.3644448518753052, 0.016166452318429947, -0.014811436645686626, 0.5993604063987732, -0.286214143037796, -0.011362803168594837, 0.024092020466923714, -0.0731922835111618, -0.03030206635594368, 0.1314789354801178, 0.14649516344070435, 0.025070998817682266, 1.2417575120925903, 0.14524881541728973, 0.04195677116513252, -0.04014715552330017, -0.8537202477455139, -0.8990805745124817, 0.9241036176681519, -0.013554158620536327, -0.6279973983764648, -0.40433576703071594, -0.41244909167289734]} +{"t": 14.4026, "q": [-0.32725435495376587, 0.0056723193265497684, -0.007271799258887768, 0.6292133331298828, -0.3220815360546112, -0.00153295265045017, -0.36435964703559875, 0.016166452318429947, -0.014824828132987022, 0.5993433594703674, -0.28620585799217224, -0.011362846940755844, 0.02402506023645401, -0.07317708432674408, -0.03029167838394642, 0.13149091601371765, 0.1465071588754654, 0.025070998817682266, 1.2418054342269897, 0.14534468948841095, 0.041968755424022675, -0.04012318700551987, -0.8534566164016724, -0.8990086317062378, 0.9241036176681519, -0.013685985468327999, -0.6279853582382202, -0.40468332171440125, -0.4124371111392975]} +{"t": 14.4193, "q": [-0.32725435495376587, 0.005646753590553999, -0.007231623865664005, 0.6292048096656799, -0.3220732510089874, -0.0015328555600717664, -0.36436817049980164, 0.016157930716872215, -0.014824828132987022, 0.5993859171867371, -0.2861519753932953, -0.011312535032629967, 0.023891141638159752, -0.07317708432674408, -0.03029167838394642, 0.13144297897815704, 0.14656707644462585, 0.025118935853242874, 1.2418173551559448, 0.14529675245285034, 0.04198073968291283, -0.04012318700551987, -0.8526176810264587, -0.8988648056983948, 0.9241036176681519, -0.013590111397206783, -0.6279134750366211, -0.40488705039024353, -0.41247305274009705]} +{"t": 14.4361, "q": [-0.32725435495376587, 0.0056723193265497684, -0.007271799258887768, 0.6292218565940857, -0.3220609128475189, -0.001539995544590056, -0.3643852174282074, 0.016166452318429947, -0.014838220551609993, 0.5994114875793457, -0.2861021161079407, -0.011327250860631466, 0.023797398433089256, -0.07316948473453522, -0.030286485329270363, 0.13135908544063568, 0.14662699401378632, 0.02503504604101181, 1.2417933940887451, 0.14532071352005005, 0.04198073968291283, -0.04013517126441002, -0.8513833284378052, -0.8987210392951965, 0.9241036176681519, -0.013386379927396774, -0.6279014945030212, -0.40495896339416504, -0.412509024143219]} +{"t": 14.4528, "q": [-0.32725435495376587, 0.005689363460987806, -0.007271799258887768, 0.6292303800582886, -0.3220527470111847, -0.001554433605633676, -0.3643766939640045, 0.016157930716872215, -0.014824828132987022, 0.5994285345077515, -0.28607702255249023, -0.011370752938091755, 0.023797398433089256, -0.07316948473453522, -0.030286485329270363, 0.13135908544063568, 0.14663897454738617, 0.025070998817682266, 1.2418054342269897, 0.14527277648448944, 0.041968755424022675, -0.04013517126441002, -0.8498852849006653, -0.8985173106193542, 0.9241515398025513, -0.01330249011516571, -0.6278176307678223, -0.4049469828605652, -0.41254496574401855]} +{"t": 14.4696, "q": [-0.3272373080253601, 0.0057404967956244946, -0.007285191211849451, 0.6292218565940857, -0.32205694913864136, -0.0015617315657436848, -0.36436817049980164, 0.016157930716872215, -0.014838220551609993, 0.5994285345077515, -0.28606027364730835, -0.011399743147194386, 0.023797398433089256, -0.07316948473453522, -0.030286485329270363, 0.13133512437343597, 0.1465790569782257, 0.02503504604101181, 1.24178147315979, 0.1453326940536499, 0.04195677116513252, -0.04015913978219032, -0.8476682305335999, -0.8982536196708679, 0.9241635203361511, -0.013290505856275558, -0.6278296113014221, -0.4049469828605652, -0.4126288592815399]} +{"t": 14.4863, "q": [-0.3271435797214508, 0.005723452661186457, -0.007338759023696184, 0.6292048096656799, -0.32205694913864136, -0.0015617315657436848, -0.3642573654651642, 0.016115320846438408, -0.014945355243980885, 0.5994455814361572, -0.28607693314552307, -0.01142857875674963, 0.024065235629677773, -0.07317708432674408, -0.03029167838394642, 0.13139504194259644, 0.14649516344070435, 0.025047030299901962, 1.2417933940887451, 0.14532071352005005, 0.04195677116513252, -0.04014715552330017, -0.8460383415222168, -0.8980498909950256, 0.9242833852767944, -0.013230584561824799, -0.627841591835022, -0.4049709439277649, -0.4126048982143402]} +{"t": 14.5032, "q": [-0.32716912031173706, 0.0057404967956244946, -0.00743250222876668, 0.629196286201477, -0.32205283641815186, -0.0015689685242250562, -0.36423182487487793, 0.016166452318429947, -0.015025706961750984, 0.5994114875793457, -0.2860852777957916, -0.011442987248301506, 0.024279506877064705, -0.07317708432674408, -0.03029167838394642, 0.13162274658679962, 0.14642326533794403, 0.025070998817682266, 1.2417933940887451, 0.1453566700220108, 0.04195677116513252, -0.04014715552330017, -0.8448998928070068, -0.8975825309753418, 0.9244272112846375, -0.013194631785154343, -0.627841591835022, -0.4049469828605652, -0.41264083981513977]} +{"t": 14.5199, "q": [-0.32717764377593994, 0.0057404967956244946, -0.00743250222876668, 0.629196286201477, -0.32205283641815186, -0.0015689685242250562, -0.3642488718032837, 0.016089754179120064, -0.014972139149904251, 0.5994455814361572, -0.2860852777957916, -0.011442987248301506, 0.024574128910899162, -0.07317708432674408, -0.03029167838394642, 0.13169464468955994, 0.14642326533794403, 0.02503504604101181, 1.2418293952941895, 0.14532071352005005, 0.04195677116513252, -0.04014715552330017, -0.8440489768981934, -0.8966237902641296, 0.9243552684783936, -0.013206616044044495, -0.6277816295623779, -0.40491101145744324, -0.41264083981513977]} +{"t": 14.5367, "q": [-0.3272287845611572, 0.005731974262744188, -0.00743250222876668, 0.6291792392730713, -0.3220527470111847, -0.001554433605633676, -0.3642914593219757, 0.016106797382235527, -0.014972139149904251, 0.5994029641151428, -0.2861599624156952, -0.011543790809810162, 0.024761615321040154, -0.07319214940071106, -0.030282504856586456, 0.13168266415596008, 0.14637532830238342, 0.02503504604101181, 1.2418293952941895, 0.14534468948841095, 0.04194478690624237, -0.04015913978219032, -0.8438572287559509, -0.8954133987426758, 0.924319326877594, -0.013194631785154343, -0.6277456879615784, -0.40491101145744324, -0.4126528203487396]} +{"t": 14.5534, "q": [-0.327245831489563, 0.005689363460987806, -0.007445894181728363, 0.6291621923446655, -0.32205283641815186, -0.0015689685242250562, -0.36432555317878723, 0.01606418751180172, -0.014945355243980885, 0.5994200110435486, -0.28617653250694275, -0.011572624556720257, 0.02486875094473362, -0.07316188514232635, -0.030281290411949158, 0.13167068362236023, 0.14639928936958313, 0.025047030299901962, 1.2418413162231445, 0.14529675245285034, 0.04192081838846207, -0.04014715552330017, -0.843773365020752, -0.8938194513320923, 0.9241994619369507, -0.013146694749593735, -0.6277456879615784, -0.4048750698566437, -0.4126648008823395]} +{"t": 14.5702, "q": [-0.3272373080253601, 0.0057149301283061504, -0.007445894181728363, 0.6291451454162598, -0.3220570385456085, -0.0015762847615405917, -0.36432555317878723, 0.01606418751180172, -0.014945355243980885, 0.5994114875793457, -0.2861848473548889, -0.011558128520846367, 0.024935709312558174, -0.07317708432674408, -0.03029167838394642, 0.13163472712039948, 0.14635135233402252, 0.02502306178212166, 1.2418173551559448, 0.1452847570180893, 0.041908834129571915, -0.04015913978219032, -0.8437014222145081, -0.8920817375183105, 0.924091637134552, -0.013110741972923279, -0.6277936100959778, -0.4048630893230438, -0.4126887917518616]} +{"t": 14.587, "q": [-0.32725435495376587, 0.005646753590553999, -0.00743250222876668, 0.6291195750236511, -0.32206520438194275, -0.0015618287725374103, -0.36432555317878723, 0.016081232577562332, -0.014905179850757122, 0.5993604063987732, -0.28624287247657776, -0.011601174250245094, 0.024949101731181145, -0.07317708432674408, -0.03029167838394642, 0.13162274658679962, 0.14632739126682281, 0.02503504604101181, 1.2418054342269897, 0.14521285891532898, 0.04193280264735222, -0.04015913978219032, -0.8435816168785095, -0.8904638886451721, 0.9240196943283081, -0.013134710490703583, -0.6277217268943787, -0.4048271179199219, -0.4127127528190613]} +{"t": 14.6037, "q": [-0.3272799253463745, 0.005604142788797617, -0.00743250222876668, 0.6290514469146729, -0.3220570385456085, -0.0015762847615405917, -0.364342600107193, 0.016047142446041107, -0.014878395944833755, 0.5993518829345703, -0.28625112771987915, -0.011630034074187279, 0.024935709312558174, -0.07316948473453522, -0.030286485329270363, 0.13161076605319977, 0.14632739126682281, 0.02503504604101181, 1.2417933940887451, 0.1452368199825287, 0.04193280264735222, -0.04015913978219032, -0.8432939648628235, -0.8892175555229187, 0.923947811126709, -0.013134710490703583, -0.627697765827179, -0.4047911763191223, -0.412736713886261]} +{"t": 14.6205, "q": [-0.3273310661315918, 0.005570054519921541, -0.00739232636988163, 0.6290173530578613, -0.32206103205680847, -0.0015545125352218747, -0.36436817049980164, 0.016047142446041107, -0.014838220551609993, 0.5992836952209473, -0.2862760126590729, -0.011658823117613792, 0.024908926337957382, -0.07316948473453522, -0.030286485329270363, 0.13159877061843872, 0.14635135233402252, 0.02503504604101181, 1.2418054342269897, 0.14521285891532898, 0.04193280264735222, -0.040171124041080475, -0.8428026437759399, -0.8881868720054626, 0.9238519668579102, -0.013146694749593735, -0.627697765827179, -0.4047911763191223, -0.41274869441986084]} +{"t": 14.6373, "q": [-0.3273907005786896, 0.005518921185284853, -0.007378934416919947, 0.628966212272644, -0.3220776319503784, -0.0015692057786509395, -0.3644278347492218, 0.016030099242925644, -0.01479804515838623, 0.5992496013641357, -0.28628432750701904, -0.011644327081739902, 0.024828573688864708, -0.07315429300069809, -0.030276097357273102, 0.13162274658679962, 0.14636334776878357, 0.02503504604101181, 1.2417933940887451, 0.14532071352005005, 0.04193280264735222, -0.04020707681775093, -0.8422034382820129, -0.8876835703849792, 0.9238519668579102, -0.013134710490703583, -0.6277337074279785, -0.40480315685272217, -0.41277265548706055]} +{"t": 14.654, "q": [-0.3273821771144867, 0.0054933554492890835, -0.00735215051099658, 0.6288809776306152, -0.322073370218277, -0.0015473907114937901, -0.36445337533950806, 0.016047142446041107, -0.01478465273976326, 0.599155843257904, -0.286271870136261, -0.011637149378657341, 0.024775007739663124, -0.07316948473453522, -0.030286485329270363, 0.13161076605319977, 0.14636334776878357, 0.02503504604101181, 1.2418173551559448, 0.1453087329864502, 0.04193280264735222, -0.040231045335531235, -0.8412806391716003, -0.8874678611755371, 0.9237920045852661, -0.01312272623181343, -0.6277936100959778, -0.4048271179199219, -0.41279664635658264]} +{"t": 14.6709, "q": [-0.32734808325767517, 0.005510399583727121, -0.007311975117772818, 0.6287786960601807, -0.3220774531364441, -0.00154017168097198, -0.3644363582134247, 0.01606418751180172, -0.014757868833839893, 0.599087655544281, -0.2862677574157715, -0.011615493334829807, 0.024614304304122925, -0.07316948473453522, -0.030286485329270363, 0.13161076605319977, 0.14631541073322296, 0.02502306178212166, 1.2418413162231445, 0.14527277648448944, 0.04193280264735222, -0.04020707681775093, -0.8403099179267883, -0.8875157833099365, 0.9237440824508667, -0.013074790127575397, -0.6277696490287781, -0.4048271179199219, -0.4128325879573822]} +{"t": 14.6877, "q": [-0.32736513018608093, 0.005501877050846815, -0.007285191211849451, 0.6287105679512024, -0.3220774531364441, -0.00154017168097198, -0.36445337533950806, 0.016021577641367912, -0.01470430102199316, 0.5989513397216797, -0.2862594425678253, -0.011615538038313389, 0.024413425475358963, -0.07315429300069809, -0.030276097357273102, 0.13163472712039948, 0.14636334776878357, 0.02503504604101181, 1.2418413162231445, 0.1452847570180893, 0.04194478690624237, -0.04021906107664108, -0.838907778263092, -0.8876595497131348, 0.9236361980438232, -0.013050821609795094, -0.6277816295623779, -0.40483909845352173, -0.4129045009613037]} +{"t": 14.7045, "q": [-0.3273395895957947, 0.005518921185284853, -0.007285191211849451, 0.6285912394523621, -0.3220774531364441, -0.00154017168097198, -0.36446189880371094, 0.016021577641367912, -0.01470430102199316, 0.5988831520080566, -0.28625115752220154, -0.011615581810474396, 0.024145588278770447, -0.07315429300069809, -0.030276097357273102, 0.13162274658679962, 0.14645922183990479, 0.025047030299901962, 1.2417933940887451, 0.14532071352005005, 0.04193280264735222, -0.040231045335531235, -0.8375535607337952, -0.8877554535865784, 0.9234804511070251, -0.013062805868685246, -0.6278056502342224, -0.4048630893230438, -0.412964403629303]} +{"t": 14.7214, "q": [-0.3273395895957947, 0.005535965319722891, -0.007285191211849451, 0.6285571455955505, -0.3220774531364441, -0.00154017168097198, -0.3644874691963196, 0.016047142446041107, -0.014690909534692764, 0.5988746285438538, -0.2861766815185547, -0.011456973850727081, 0.023998277261853218, -0.07314668595790863, -0.030270902439951897, 0.13162274658679962, 0.14647120237350464, 0.02503504604101181, 1.2418054342269897, 0.14529675245285034, 0.04193280264735222, -0.04024302959442139, -0.8363790512084961, -0.8876595497131348, 0.9235044121742249, -0.013074790127575397, -0.6277816295623779, -0.4048990309238434, -0.412964403629303]} +{"t": 14.7383, "q": [-0.32736513018608093, 0.005544487852603197, -0.007271799258887768, 0.6284889578819275, -0.3220774531364441, -0.00154017168097198, -0.36454713344573975, 0.01606418751180172, -0.014690909534692764, 0.5988661050796509, -0.28620147705078125, -0.01152911875396967, 0.023971492424607277, -0.07308589667081833, -0.030229350551962852, 0.13161076605319977, 0.1465071588754654, 0.02503504604101181, 1.2418413162231445, 0.14534468948841095, 0.04194478690624237, -0.04021906107664108, -0.8354323506355286, -0.8875876665115356, 0.9235044121742249, -0.013050821609795094, -0.6277936100959778, -0.4048750698566437, -0.4129764139652252]} +{"t": 14.7555, "q": [-0.3273310661315918, 0.005561531987041235, -0.007231623865664005, 0.6284122467041016, -0.3220650851726532, -0.0015472935047000647, -0.36458122730255127, 0.016055665910243988, -0.014690909534692764, 0.5988831520080566, -0.2861558198928833, -0.01153658702969551, 0.02387774921953678, -0.0730099156498909, -0.030177410691976547, 0.13162274658679962, 0.1464831829071045, 0.02503504604101181, 1.2418653964996338, 0.1453326940536499, 0.04195677116513252, -0.04021906107664108, -0.834509551525116, -0.8874558210372925, 0.923492431640625, -0.01312272623181343, -0.6277337074279785, -0.4048750698566437, -0.4129883944988251]} +{"t": 14.7724, "q": [-0.32730549573898315, 0.005604142788797617, -0.007231623865664005, 0.6283696293830872, -0.32206103205680847, -0.0015545125352218747, -0.3645727038383484, 0.016055665910243988, -0.01471769344061613, 0.5989001989364624, -0.2861558198928833, -0.01153658702969551, 0.023770615458488464, -0.07294152677059174, -0.030130667611956596, 0.13159877061843872, 0.1465071588754654, 0.02503504604101181, 1.2418653964996338, 0.1453326940536499, 0.04195677116513252, -0.04021906107664108, -0.833766520023346, -0.8871802091598511, 0.9234564304351807, -0.01318264752626419, -0.627697765827179, -0.40488705039024353, -0.4130003750324249]} +{"t": 14.7891, "q": [-0.32725435495376587, 0.0056723193265497684, -0.007204839959740639, 0.6283185482025146, -0.3220609128475189, -0.001539995544590056, -0.3645727038383484, 0.016106797382235527, -0.014677518047392368, 0.5989001989364624, -0.2861517071723938, -0.011514931917190552, 0.023569736629724503, -0.07291120290756226, -0.030119674280285835, 0.13159877061843872, 0.1464831829071045, 0.025059014558792114, 1.2418653964996338, 0.1453566700220108, 0.04198073968291283, -0.04021906107664108, -0.8331553339958191, -0.8869764804840088, 0.9235163927078247, -0.013230584561824799, -0.627697765827179, -0.4049229919910431, -0.41302433609962463]} +{"t": 14.8059, "q": [-0.3272373080253601, 0.005723452661186457, -0.007231623865664005, 0.6282588839530945, -0.3220568299293518, -0.001547214575111866, -0.3645556569099426, 0.01612384244799614, -0.014744477346539497, 0.5989001989364624, -0.2861558198928833, -0.01153658702969551, 0.023462601006031036, -0.07291120290756226, -0.030119674280285835, 0.13159877061843872, 0.14649516344070435, 0.02503504604101181, 1.2419012784957886, 0.14532071352005005, 0.04198073968291283, -0.040231045335531235, -0.832711935043335, -0.8868206739425659, 0.9234804511070251, -0.013290505856275558, -0.6277097463607788, -0.4049469828605652, -0.41307228803634644]} +{"t": 14.8226, "q": [-0.32725435495376587, 0.0057404967956244946, -0.007285191211849451, 0.6282759308815002, -0.3220650851726532, -0.0015472935047000647, -0.3645556569099426, 0.01612384244799614, -0.014771261252462864, 0.5989001989364624, -0.28614750504493713, -0.0115510830655694, 0.023449208587408066, -0.07291120290756226, -0.030119674280285835, 0.13153885304927826, 0.14649516344070435, 0.02503504604101181, 1.2418773174285889, 0.14534468948841095, 0.041968755424022675, -0.04021906107664108, -0.832496166229248, -0.8866888284683228, 0.9235044121742249, -0.01324256882071495, -0.6277217268943787, -0.40495896339416504, -0.41307228803634644]} +{"t": 14.8393, "q": [-0.3272287845611572, 0.005757540930062532, -0.007285191211849451, 0.6282674074172974, -0.32206103205680847, -0.0015545125352218747, -0.364530086517334, 0.016140887513756752, -0.01479804515838623, 0.5989087224006653, -0.28614750504493713, -0.0115510830655694, 0.02336885780096054, -0.07291120290756226, -0.030119674280285835, 0.13156282901763916, 0.14651913940906525, 0.02503504604101181, 1.2418893575668335, 0.14532071352005005, 0.04198073968291283, -0.040231045335531235, -0.8323883414268494, -0.886664867401123, 0.9234684705734253, -0.013194631785154343, -0.6277097463607788, -0.40495896339416504, -0.41309624910354614]} +{"t": 14.8562, "q": [-0.3272287845611572, 0.00577458506450057, -0.0072584073059260845, 0.6282759308815002, -0.32206112146377563, -0.0015690478030592203, -0.364530086517334, 0.016106797382235527, -0.01478465273976326, 0.5989001989364624, -0.2861558198928833, -0.01153658702969551, 0.02335546538233757, -0.07291120290756226, -0.030119674280285835, 0.13163472712039948, 0.14649516344070435, 0.025070998817682266, 1.2419252395629883, 0.1453566700220108, 0.04199272394180298, -0.04021906107664108, -0.8323643803596497, -0.8866888284683228, 0.923432469367981, -0.013134710490703583, -0.6277217268943787, -0.4049469828605652, -0.4131321907043457]} +{"t": 14.8729, "q": [-0.32721173763275146, 0.005766062531620264, -0.007285191211849451, 0.6282674074172974, -0.32206112146377563, -0.0015690478030592203, -0.3645130395889282, 0.016115320846438408, -0.01478465273976326, 0.5989001989364624, -0.2861558198928833, -0.01153658702969551, 0.023395642638206482, -0.07291120290756226, -0.030119674280285835, 0.13167068362236023, 0.14649516344070435, 0.02503504604101181, 1.2419252395629883, 0.1453326940536499, 0.04199272394180298, -0.040231045335531235, -0.8323883414268494, -0.8867487907409668, 0.9233006834983826, -0.013074790127575397, -0.6277217268943787, -0.40495896339416504, -0.4132280647754669]} +{"t": 14.8897, "q": [-0.32721173763275146, 0.005757540930062532, -0.007271799258887768, 0.6282674074172974, -0.32206103205680847, -0.0015545125352218747, -0.36449599266052246, 0.016106797382235527, -0.014757868833839893, 0.5988916754722595, -0.28616413474082947, -0.011522090993821621, 0.023234939202666283, -0.07290372997522354, -0.030134038999676704, 0.13168266415596008, 0.1465071588754654, 0.02503504604101181, 1.2419612407684326, 0.14539262652397156, 0.041968755424022675, -0.040231045335531235, -0.8324123024940491, -0.8868446350097656, 0.9231927990913391, -0.01308677438646555, -0.6277456879615784, -0.40495896339416504, -0.41326403617858887]} +{"t": 14.9064, "q": [-0.3271605968475342, 0.005731974262744188, -0.0072584073059260845, 0.6282759308815002, -0.32205283641815186, -0.0015689685242250562, -0.36445337533950806, 0.016089754179120064, -0.01478465273976326, 0.5989001989364624, -0.2861558496952057, -0.01150768343359232, 0.023101020604372025, -0.07291138917207718, -0.030149012804031372, 0.13165870308876038, 0.1464831829071045, 0.02503504604101181, 1.2419971227645874, 0.1453566700220108, 0.04198073968291283, -0.040231045335531235, -0.8324482440948486, -0.8868446350097656, 0.9230489730834961, -0.013062805868685246, -0.6277217268943787, -0.4049469828605652, -0.4132760167121887]} +{"t": 14.9232, "q": [-0.3271605968475342, 0.0056978859938681126, -0.0072584073059260845, 0.6283015012741089, -0.3220527470111847, -0.001554433605633676, -0.3644363582134247, 0.016106797382235527, -0.014757868833839893, 0.5988831520080566, -0.28616413474082947, -0.011522090993821621, 0.02287335693836212, -0.07292652130126953, -0.030149618163704872, 0.13164670765399933, 0.14647120237350464, 0.02503504604101181, 1.2419731616973877, 0.14534468948841095, 0.04198073968291283, -0.040231045335531235, -0.8324362635612488, -0.8867847323417664, 0.9229890704154968, -0.013050821609795094, -0.6277217268943787, -0.40495896339416504, -0.4132520258426666]} +{"t": 14.94, "q": [-0.3271521031856537, 0.005638231057673693, -0.007245015352964401, 0.628292977809906, -0.3220570385456085, -0.0015762847615405917, -0.3644278347492218, 0.01607270911335945, -0.01471769344061613, 0.5988916754722595, -0.28617241978645325, -0.011522047221660614, 0.022645695134997368, -0.07291138917207718, -0.030149012804031372, 0.13162274658679962, 0.14645922183990479, 0.02503504604101181, 1.2419971227645874, 0.14527277648448944, 0.041968755424022675, -0.040231045335531235, -0.8323883414268494, -0.8867607712745667, 0.9230010509490967, -0.013038837350904942, -0.6277337074279785, -0.40495896339416504, -0.41326403617858887]} +{"t": 14.9568, "q": [-0.3271605968475342, 0.005553010385483503, -0.007271799258887768, 0.628292977809906, -0.32205283641815186, -0.0015689685242250562, -0.36445337533950806, 0.016081232577562332, -0.014757868833839893, 0.5989001989364624, -0.2861889898777008, -0.011550880037248135, 0.022551951929926872, -0.0729113221168518, -0.03013923019170761, 0.13162274658679962, 0.14643524587154388, 0.02503504604101181, 1.242009162902832, 0.14532071352005005, 0.04198073968291283, -0.040231045335531235, -0.8323523998260498, -0.8866768479347229, 0.9230250120162964, -0.01302685309201479, -0.6277456879615784, -0.4049469828605652, -0.4133119583129883]} +{"t": 14.9736, "q": [-0.3272032141685486, 0.005527443718165159, -0.007231623865664005, 0.6283015012741089, -0.32205283641815186, -0.0015689685242250562, -0.36446189880371094, 0.016047142446041107, -0.01471769344061613, 0.5988916754722595, -0.28620555996894836, -0.01156524382531643, 0.022565344348549843, -0.0729113221168518, -0.03013923019170761, 0.13163472712039948, 0.14647120237350464, 0.02503504604101181, 1.2419971227645874, 0.1453566700220108, 0.04198073968291283, -0.040231045335531235, -0.8321846127510071, -0.8865570425987244, 0.9230130314826965, -0.013050821609795094, -0.6277217268943787, -0.4049709439277649, -0.4132760167121887]} +{"t": 14.9903, "q": [-0.3272287845611572, 0.005467788781970739, -0.007231623865664005, 0.6283185482025146, -0.32205694913864136, -0.0015617315657436848, -0.36445337533950806, 0.016021577641367912, -0.014690909534692764, 0.5988746285438538, -0.2861972451210022, -0.011579739861190319, 0.022592127323150635, -0.0729113221168518, -0.03013923019170761, 0.13164670765399933, 0.14644722640514374, 0.02503504604101181, 1.242021083831787, 0.14532071352005005, 0.04198073968291283, -0.04024302959442139, -0.8319928646087646, -0.8863772749900818, 0.923060953617096, -0.013110741972923279, -0.627697765827179, -0.40500688552856445, -0.4132760167121887]} +{"t": 15.0071, "q": [-0.3272032141685486, 0.005459266249090433, -0.007231623865664005, 0.6283100247383118, -0.32204440236091614, -0.0015398375689983368, -0.3644448518753052, 0.016081232577562332, -0.014690909534692764, 0.5988661050796509, -0.2861972451210022, -0.011594191193580627, 0.022618912160396576, -0.07292646169662476, -0.03013983927667141, 0.13163472712039948, 0.14644722640514374, 0.02502306178212166, 1.2420331239700317, 0.14532071352005005, 0.04198073968291283, -0.04024302959442139, -0.8318011164665222, -0.886065661907196, 0.9230489730834961, -0.01308677438646555, -0.627697765827179, -0.4050188660621643, -0.41326403617858887]} +{"t": 15.0239, "q": [-0.3272287845611572, 0.005433700513094664, -0.007231623865664005, 0.6283185482025146, -0.32206103205680847, -0.0015545125352218747, -0.36445337533950806, 0.01606418751180172, -0.01471769344061613, 0.5988661050796509, -0.2862013876438141, -0.011601394973695278, 0.02268587052822113, -0.07292652130126953, -0.030149618163704872, 0.13162274658679962, 0.14645922183990479, 0.02503504604101181, 1.2420331239700317, 0.1453566700220108, 0.041968755424022675, -0.04025501385331154, -0.8316333293914795, -0.885837972164154, 0.923060953617096, -0.013098758645355701, -0.6277097463607788, -0.40500688552856445, -0.41326403617858887]} +{"t": 15.0406, "q": [-0.32722026109695435, 0.005416656378656626, -0.007231623865664005, 0.6283015012741089, -0.3220609128475189, -0.001539995544590056, -0.3644448518753052, 0.016030099242925644, -0.014690909534692764, 0.5988746285438538, -0.28616830706596375, -0.011500392109155655, 0.0226992629468441, -0.0729113221168518, -0.03013923019170761, 0.13161076605319977, 0.14641128480434418, 0.025011077523231506, 1.2420450448989868, 0.14534468948841095, 0.04195677116513252, -0.040231045335531235, -0.8315854072570801, -0.8855863213539124, 0.9230369925498962, -0.013098758645355701, -0.6277217268943787, -0.4050188660621643, -0.41326403617858887]} +{"t": 15.0574, "q": [-0.32725435495376587, 0.005399612244218588, -0.0071914480067789555, 0.6283015012741089, -0.32206103205680847, -0.0015545125352218747, -0.3644363582134247, 0.016047142446041107, -0.014664125628769398, 0.5988405346870422, -0.2861807346343994, -0.011522003449499607, 0.02268587052822113, -0.07291892915964127, -0.030144426971673965, 0.13163472712039948, 0.14642326533794403, 0.02503504604101181, 1.242021083831787, 0.1453326940536499, 0.04195677116513252, -0.040231045335531235, -0.8315374255180359, -0.8854305148124695, 0.9229651093482971, -0.01312272623181343, -0.6277097463607788, -0.4050188660621643, -0.41326403617858887]} +{"t": 15.0742, "q": [-0.32725435495376587, 0.0054081338457763195, -0.007218231912702322, 0.6282759308815002, -0.3220609128475189, -0.001539995544590056, -0.3644704222679138, 0.016030099242925644, -0.014677518047392368, 0.5988405346870422, -0.2861765921115875, -0.011514799669384956, 0.022632304579019547, -0.07292646169662476, -0.03013983927667141, 0.13163472712039948, 0.14641128480434418, 0.02502306178212166, 1.242069125175476, 0.1453326940536499, 0.04195677116513252, -0.040231045335531235, -0.8315614461898804, -0.8853706121444702, 0.9229411482810974, -0.01308677438646555, -0.6277097463607788, -0.40500688552856445, -0.4132280647754669]} +{"t": 15.0909, "q": [-0.32721173763275146, 0.0054081338457763195, -0.007204839959740639, 0.6282759308815002, -0.32205256819725037, -0.0015253995079547167, -0.36445337533950806, 0.016081232577562332, -0.014690909534692764, 0.5988490581512451, -0.2861434519290924, -0.011471603065729141, 0.022592127323150635, -0.07292646169662476, -0.03013983927667141, 0.13163472712039948, 0.14643524587154388, 0.025070998817682266, 1.2420570850372314, 0.1453566700220108, 0.041968755424022675, -0.04024302959442139, -0.8315973877906799, -0.8853706121444702, 0.9228093028068542, -0.013050821609795094, -0.6276738047599792, -0.4050428569316864, -0.4132520258426666]} +{"t": 15.1078, "q": [-0.3271946907043457, 0.0054081338457763195, -0.007218231912702322, 0.6282759308815002, -0.3220650851726532, -0.0015472935047000647, -0.36445337533950806, 0.016081232577562332, -0.014690909534692764, 0.5988320112228394, -0.28612688183784485, -0.011457239277660847, 0.02251177653670311, -0.07294165343046188, -0.03015022724866867, 0.13162274658679962, 0.14641128480434418, 0.02503504604101181, 1.2420450448989868, 0.1453566700220108, 0.04198073968291283, -0.04024302959442139, -0.831669270992279, -0.8853825926780701, 0.9227853417396545, -0.01308677438646555, -0.627697765827179, -0.4050188660621643, -0.4132280647754669]} +{"t": 15.1248, "q": [-0.3271861672401428, 0.005425177980214357, -0.007218231912702322, 0.6282588839530945, -0.32206103205680847, -0.0015545125352218747, -0.3644363582134247, 0.01606418751180172, -0.014744477346539497, 0.5988405346870422, -0.2861185669898987, -0.011471735313534737, 0.022404640913009644, -0.07291138917207718, -0.030149012804031372, 0.13159877061843872, 0.14647120237350464, 0.02503504604101181, 1.2420810461044312, 0.14536865055561066, 0.041968755424022675, -0.04024302959442139, -0.8317052125930786, -0.8853945732116699, 0.9227374196052551, -0.013050821609795094, -0.6276258826255798, -0.4050188660621643, -0.4131801426410675]} +{"t": 15.1416, "q": [-0.3272032141685486, 0.005442222114652395, -0.007204839959740639, 0.628224790096283, -0.3220568299293518, -0.001547214575111866, -0.3644278347492218, 0.016055665910243988, -0.014744477346539497, 0.5988320112228394, -0.28613099455833435, -0.011478894390165806, 0.022284114733338356, -0.0729188621044159, -0.030134644359350204, 0.13159877061843872, 0.14647120237350464, 0.025047030299901962, 1.242069125175476, 0.14532071352005005, 0.04195677116513252, -0.04025501385331154, -0.8316572904586792, -0.8853825926780701, 0.9227374196052551, -0.013062805868685246, -0.62761390209198, -0.40500688552856445, -0.41316816210746765]} +{"t": 15.1583, "q": [-0.3271946907043457, 0.005442222114652395, -0.007231623865664005, 0.6281821727752686, -0.32205694913864136, -0.0015617315657436848, -0.3644448518753052, 0.016098275780677795, -0.014771261252462864, 0.5988405346870422, -0.2861102819442749, -0.011457327753305435, 0.022123411297798157, -0.07292639464139938, -0.030130058526992798, 0.13161076605319977, 0.14647120237350464, 0.02509496733546257, 1.242069125175476, 0.14532071352005005, 0.04194478690624237, -0.04025501385331154, -0.8316093683242798, -0.8853706121444702, 0.9227733612060547, -0.013050821609795094, -0.6276258826255798, -0.4050188660621643, -0.41314417123794556]} +{"t": 15.175, "q": [-0.32722026109695435, 0.005467788781970739, -0.007231623865664005, 0.6281651258468628, -0.32205283641815186, -0.0015689685242250562, -0.3644193112850189, 0.016115320846438408, -0.014824828132987022, 0.598857581615448, -0.2861102819442749, -0.011457327753305435, 0.021962709724903107, -0.07289619743824005, -0.03013862483203411, 0.13159877061843872, 0.14647120237350464, 0.025070998817682266, 1.2421050071716309, 0.1453566700220108, 0.04198073968291283, -0.040231045335531235, -0.8314176201820374, -0.8853346109390259, 0.9227973222732544, -0.013050821609795094, -0.6276378631591797, -0.40503084659576416, -0.41309624910354614]} +{"t": 15.1918, "q": [-0.32722026109695435, 0.005459266249090433, -0.0072584073059260845, 0.6281310319900513, -0.32205694913864136, -0.0015617315657436848, -0.3644363582134247, 0.016089754179120064, -0.01479804515838623, 0.5988490581512451, -0.2861144542694092, -0.011450079269707203, 0.02184218168258667, -0.07291120290756226, -0.030119674280285835, 0.13162274658679962, 0.1464831829071045, 0.02509496733546257, 1.2421529293060303, 0.1453087329864502, 0.04198073968291283, -0.04026699811220169, -0.8310101628303528, -0.8852866888046265, 0.9227733612060547, -0.013074790127575397, -0.62761390209198, -0.40503084659576416, -0.41307228803634644]} +{"t": 15.2086, "q": [-0.32721173763275146, 0.005459266249090433, -0.0072584073059260845, 0.6280969381332397, -0.32205283641815186, -0.0015689685242250562, -0.3644278347492218, 0.016140887513756752, -0.014838220551609993, 0.5988320112228394, -0.2861102819442749, -0.011442857794463634, 0.02165469527244568, -0.07292639464139938, -0.030130058526992798, 0.13162274658679962, 0.1464831829071045, 0.025070998817682266, 1.2421889305114746, 0.14534468948841095, 0.04198073968291283, -0.04024302959442139, -0.830470860004425, -0.8852507472038269, 0.9227853417396545, -0.013050821609795094, -0.6276378631591797, -0.4050188660621643, -0.4130363166332245]} +{"t": 15.2253, "q": [-0.3271605968475342, 0.005484832916408777, -0.007271799258887768, 0.6280969381332397, -0.3220568299293518, -0.001547214575111866, -0.36441078782081604, 0.01613236404955387, -0.014851612038910389, 0.5988405346870422, -0.2860936224460602, -0.011442944407463074, 0.02150738425552845, -0.07291126251220703, -0.030129453167319298, 0.13162274658679962, 0.14649516344070435, 0.025047030299901962, 1.242164969444275, 0.1452847570180893, 0.04198073968291283, -0.04024302959442139, -0.8298596739768982, -0.885238766670227, 0.9227733612060547, -0.01308677438646555, -0.62761390209198, -0.4050188660621643, -0.4129883944988251]} +{"t": 15.2421, "q": [-0.32717764377593994, 0.005484832916408777, -0.007285191211849451, 0.6280713677406311, -0.3220527470111847, -0.001554433605633676, -0.36440226435661316, 0.016140887513756752, -0.01486500445753336, 0.5988405346870422, -0.28609782457351685, -0.011406793259084225, 0.021413641050457954, -0.07291126251220703, -0.030129453167319298, 0.13162274658679962, 0.1465071588754654, 0.025070998817682266, 1.2422008514404297, 0.14532071352005005, 0.041968755424022675, -0.040231045335531235, -0.8293083906173706, -0.8851908445358276, 0.9227853417396545, -0.013014868833124638, -0.6276618242263794, -0.4050188660621643, -0.41291648149490356]} +{"t": 15.2588, "q": [-0.3271861672401428, 0.005484832916408777, -0.007285191211849451, 0.6280457973480225, -0.3220527470111847, -0.001554433605633676, -0.3643937408924103, 0.01612384244799614, -0.014905179850757122, 0.5988405346870422, -0.286106139421463, -0.011435654014348984, 0.02136007323861122, -0.07291879504919052, -0.030124865472316742, 0.13164670765399933, 0.1465071588754654, 0.025070998817682266, 1.2422248125076294, 0.14527277648448944, 0.04198073968291283, -0.04024302959442139, -0.8286013007164001, -0.8851069211959839, 0.9228212833404541, -0.013050821609795094, -0.6276498436927795, -0.40500688552856445, -0.412880539894104]} +{"t": 15.2756, "q": [-0.3272287845611572, 0.0054507446475327015, -0.007285191211849451, 0.6280202269554138, -0.3220527470111847, -0.001554433605633676, -0.36440226435661316, 0.016166452318429947, -0.014891788363456726, 0.5988320112228394, -0.28609779477119446, -0.011435696855187416, 0.021306505426764488, -0.07291126251220703, -0.030129453167319298, 0.13162274658679962, 0.1465071588754654, 0.02503504604101181, 1.2422608137130737, 0.1453087329864502, 0.04194478690624237, -0.04024302959442139, -0.827786386013031, -0.8850230574607849, 0.9228093028068542, -0.01302685309201479, -0.6276857852935791, -0.40500688552856445, -0.4128565490245819]} +{"t": 15.2923, "q": [-0.32721173763275146, 0.005416656378656626, -0.007298583164811134, 0.6280117034912109, -0.32205694913864136, -0.0015617315657436848, -0.36440226435661316, 0.016149409115314484, -0.01486500445753336, 0.5988234877586365, -0.2861185669898987, -0.011457283049821854, 0.021293114870786667, -0.07291879504919052, -0.030124865472316742, 0.13162274658679962, 0.14654310047626495, 0.025070998817682266, 1.2422728538513184, 0.14522483944892883, 0.04198073968291283, -0.04024302959442139, -0.8267077803611755, -0.8849271535873413, 0.9228212833404541, -0.013002884574234486, -0.6276738047599792, -0.40503084659576416, -0.4128325879573822]} +{"t": 15.309, "q": [-0.3272287845611572, 0.005382567178457975, -0.007285191211849451, 0.6280117034912109, -0.32205694913864136, -0.0015617315657436848, -0.3643937408924103, 0.016166452318429947, -0.014878395944833755, 0.5988064408302307, -0.286135196685791, -0.011442743241786957, 0.021279722452163696, -0.07291126251220703, -0.030129453167319298, 0.13162274658679962, 0.14651913940906525, 0.025070998817682266, 1.2422847747802734, 0.1452847570180893, 0.04198073968291283, -0.04024302959442139, -0.8256651759147644, -0.8847714066505432, 0.9227853417396545, -0.01302685309201479, -0.6276378631591797, -0.40500688552856445, -0.41282060742378235]} +{"t": 15.3258, "q": [-0.3272373080253601, 0.00532291317358613, -0.007285191211849451, 0.6279946565628052, -0.32206103205680847, -0.0015545125352218747, -0.3643937408924103, 0.016140887513756752, -0.01486500445753336, 0.5987808704376221, -0.28612691164016724, -0.011442787013947964, 0.021279722452163696, -0.07293399423360825, -0.030135253444314003, 0.13162274658679962, 0.146555095911026, 0.025118935853242874, 1.2423566579818726, 0.14532071352005005, 0.041968755424022675, -0.04024302959442139, -0.8248143196105957, -0.8846036195755005, 0.9228212833404541, -0.013038837350904942, -0.6276498436927795, -0.4049949049949646, -0.41284456849098206]} +{"t": 15.3425, "q": [-0.3272373080253601, 0.005271779838949442, -0.0072584073059260845, 0.6279691457748413, -0.32206520438194275, -0.0015618287725374103, -0.3643937408924103, 0.016166452318429947, -0.014851612038910389, 0.5987467765808105, -0.28612691164016724, -0.011428335681557655, 0.02119937166571617, -0.07292639464139938, -0.030130058526992798, 0.13162274658679962, 0.146555095911026, 0.025070998817682266, 1.242392659187317, 0.14532071352005005, 0.041968755424022675, -0.04024302959442139, -0.8240952491760254, -0.884268045425415, 0.9228093028068542, -0.013038837350904942, -0.6276378631591797, -0.40500688552856445, -0.41282060742378235]} +{"t": 15.3593, "q": [-0.3272287845611572, 0.005237691570073366, -0.0072584073059260845, 0.6279265284538269, -0.32206103205680847, -0.0015545125352218747, -0.3643852174282074, 0.016157930716872215, -0.014824828132987022, 0.5987297296524048, -0.28612276911735535, -0.011421114206314087, 0.020931532606482506, -0.07291879504919052, -0.030124865472316742, 0.13165870308876038, 0.1465311199426651, 0.025070998817682266, 1.242452621459961, 0.1453326940536499, 0.04195677116513252, -0.04024302959442139, -0.8234960436820984, -0.8838725686073303, 0.9228212833404541, -0.01302685309201479, -0.6276618242263794, -0.4049949049949646, -0.4128086268901825]} +{"t": 15.376, "q": [-0.3272032141685486, 0.0052291699685156345, -0.0072584073059260845, 0.627918004989624, -0.32206103205680847, -0.0015545125352218747, -0.3643852174282074, 0.016149409115314484, -0.014851612038910389, 0.5987212061882019, -0.2861393392086029, -0.011449947021901608, 0.02063691057264805, -0.07292639464139938, -0.030130058526992798, 0.13168266415596008, 0.146555095911026, 0.025082983076572418, 1.2425724267959595, 0.14534468948841095, 0.04195677116513252, -0.04024302959442139, -0.8229447603225708, -0.8835010528564453, 0.9227973222732544, -0.013002884574234486, -0.6276378631591797, -0.4049949049949646, -0.41277265548706055]} +{"t": 15.393, "q": [-0.32722026109695435, 0.005212124902755022, -0.007285191211849451, 0.6279009580612183, -0.32206103205680847, -0.0015545125352218747, -0.3643766939640045, 0.016174975782632828, -0.014851612038910389, 0.5987041592597961, -0.28612276911735535, -0.011421114206314087, 0.02019497938454151, -0.07292646169662476, -0.03013983927667141, 0.13167068362236023, 0.14663897454738617, 0.025082983076572418, 1.2426563501358032, 0.1452607959508896, 0.041968755424022675, -0.04024302959442139, -0.8221657872200012, -0.8832014203071594, 0.9227733612060547, -0.01302685309201479, -0.6276378631591797, -0.4049949049949646, -0.41277265548706055]} +{"t": 15.4097, "q": [-0.32721173763275146, 0.005195080768316984, -0.007285191211849451, 0.6278924345970154, -0.32206103205680847, -0.0015545125352218747, -0.36435964703559875, 0.016157930716872215, -0.014878395944833755, 0.5986530184745789, -0.28612691164016724, -0.011428335681557655, 0.019605735316872597, -0.07293399423360825, -0.030135253444314003, 0.13170664012432098, 0.14667493104934692, 0.025070998817682266, 1.2428600788116455, 0.14532071352005005, 0.04199272394180298, -0.04024302959442139, -0.8213269114494324, -0.882841944694519, 0.9227853417396545, -0.013014868833124638, -0.6276378631591797, -0.40498292446136475, -0.412736713886261]} +{"t": 15.4264, "q": [-0.3272032141685486, 0.00520360330119729, -0.007285191211849451, 0.6278839111328125, -0.3220650851726532, -0.0015472935047000647, -0.3643511235713959, 0.01618349738419056, -0.014878395944833755, 0.5986530184745789, -0.28611859679222107, -0.011428361758589745, 0.01884239725768566, -0.07292646169662476, -0.03013983927667141, 0.13171862065792084, 0.146782785654068, 0.025106951594352722, 1.243039846420288, 0.1453087329864502, 0.04198073968291283, -0.04024302959442139, -0.8206797242164612, -0.8824464678764343, 0.9227134585380554, -0.01302685309201479, -0.6276498436927795, -0.4049709439277649, -0.412736713886261]} +{"t": 15.4432, "q": [-0.3272032141685486, 0.0051865591667592525, -0.007311975117772818, 0.6278839111328125, -0.32206103205680847, -0.0015545125352218747, -0.3643511235713959, 0.01618349738419056, -0.01486500445753336, 0.5986700654029846, -0.28611859679222107, -0.011428361758589745, 0.0179987084120512, -0.07292646169662476, -0.03013983927667141, 0.1317785382270813, 0.14684271812438965, 0.025118935853242874, 1.2432554960250854, 0.14518888294696808, 0.04198073968291283, -0.040231045335531235, -0.820464015007019, -0.8820749521255493, 0.922749400138855, -0.013002884574234486, -0.6276618242263794, -0.40500688552856445, -0.41272473335266113]} +{"t": 15.4599, "q": [-0.32716912031173706, 0.00520360330119729, -0.007271799258887768, 0.6278668642044067, -0.3220568299293518, -0.001547214575111866, -0.36436817049980164, 0.01619201898574829, -0.014851612038910389, 0.5986274480819702, -0.28611859679222107, -0.011442831717431545, 0.017221977934241295, -0.07294159382581711, -0.03014044649899006, 0.13179051876068115, 0.14704644680023193, 0.025106951594352722, 1.2436749935150146, 0.1452847570180893, 0.04199272394180298, -0.040231045335531235, -0.820092499256134, -0.8817633390426636, 0.9227613806724548, -0.013002884574234486, -0.6276498436927795, -0.40498292446136475, -0.41272473335266113]} +{"t": 15.4767, "q": [-0.32716912031173706, 0.0051865591667592525, -0.007271799258887768, 0.627849817276001, -0.32206103205680847, -0.0015545125352218747, -0.3643511235713959, 0.016174975782632828, -0.014851612038910389, 0.5986359715461731, -0.28611859679222107, -0.011428361758589745, 0.016364896669983864, -0.07293399423360825, -0.030135253444314003, 0.1317306011915207, 0.14727413654327393, 0.025118935853242874, 1.2443220615386963, 0.1452368199825287, 0.04198073968291283, -0.04024302959442139, -0.81963711977005, -0.8814038038253784, 0.922749400138855, -0.013014868833124638, -0.6276618242263794, -0.40498292446136475, -0.4127127528190613]} +{"t": 15.4936, "q": [-0.3271521031856537, 0.005212124902755022, -0.007285191211849451, 0.627849817276001, -0.32205283641815186, -0.0015689685242250562, -0.3643340766429901, 0.016166452318429947, -0.014851612038910389, 0.598644495010376, -0.2861144542694092, -0.011435610242187977, 0.015266761183738708, -0.07293405383825302, -0.030145032331347466, 0.13164670765399933, 0.14746588468551636, 0.025106951594352722, 1.2452808618545532, 0.14522483944892883, 0.04198073968291283, -0.04020707681775093, -0.8193015456199646, -0.8809723854064941, 0.922749400138855, -0.01302685309201479, -0.6276378631591797, -0.4049949049949646, -0.4127127528190613]} +{"t": 15.5103, "q": [-0.3271605968475342, 0.00520360330119729, -0.007311975117772818, 0.6278327703475952, -0.3220568299293518, -0.001547214575111866, -0.3643340766429901, 0.016098275780677795, -0.014891788363456726, 0.5986359715461731, -0.28611862659454346, -0.011413910426199436, 0.014034707099199295, -0.07294159382581711, -0.03014044649899006, 0.13168266415596008, 0.14763367176055908, 0.025106951594352722, 1.2462036609649658, 0.1453806310892105, 0.04198073968291283, -0.040231045335531235, -0.8190498948097229, -0.880469024181366, 0.9227374196052551, -0.012990900315344334, -0.6276618242263794, -0.40500688552856445, -0.4127127528190613]} +{"t": 15.5271, "q": [-0.3271435797214508, 0.0052291699685156345, -0.007311975117772818, 0.6278327703475952, -0.3220486640930176, -0.0015616705641150475, -0.3643340766429901, 0.016157930716872215, -0.014891788363456726, 0.5986359715461731, -0.28611859679222107, -0.011428361758589745, 0.012494638562202454, -0.07294159382581711, -0.03014044649899006, 0.13169464468955994, 0.14787335693836212, 0.02509496733546257, 1.247258186340332, 0.14532071352005005, 0.04195677116513252, -0.04021906107664108, -0.8190738558769226, -0.8798578381538391, 0.9227374196052551, -0.013014868833124638, -0.6276378631591797, -0.40500688552856445, -0.4127127528190613]} +{"t": 15.5438, "q": [-0.3271350562572479, 0.0052291699685156345, -0.007338759023696184, 0.6278157234191895, -0.32204440236091614, -0.0015398375689983368, -0.36432555317878723, 0.016157930716872215, -0.014891788363456726, 0.5986359715461731, -0.2861144542694092, -0.011435610242187977, 0.010887610726058483, -0.07294165343046188, -0.03015022724866867, 0.13170664012432098, 0.14814899861812592, 0.025106951594352722, 1.2485644817352295, 0.1453326940536499, 0.04193280264735222, -0.040231045335531235, -0.819121778011322, -0.8790788650512695, 0.9227374196052551, -0.013002884574234486, -0.6276378631591797, -0.4049949049949646, -0.4127127528190613]} +{"t": 15.5605, "q": [-0.3271094858646393, 0.005246214102953672, -0.007338759023696184, 0.6278157234191895, -0.32205694913864136, -0.0015617315657436848, -0.36431702971458435, 0.016174975782632828, -0.014878395944833755, 0.5986359715461731, -0.2861144542694092, -0.011450079269707203, 0.00958859734237194, -0.07294159382581711, -0.03014044649899006, 0.13169464468955994, 0.14853249490261078, 0.025118935853242874, 1.2495352029800415, 0.14532071352005005, 0.04195677116513252, -0.04020707681775093, -0.8191097974777222, -0.8782519698143005, 0.9227134585380554, -0.012990900315344334, -0.6276498436927795, -0.40500688552856445, -0.4127127528190613]} +{"t": 15.5773, "q": [-0.3270498216152191, 0.005271779838949442, -0.007311975117772818, 0.6278071999549866, -0.32205283641815186, -0.0015689685242250562, -0.36430850625038147, 0.016166452318429947, -0.014838220551609993, 0.598644495010376, -0.2861102819442749, -0.011442857794463634, 0.008463677950203419, -0.07294925302267075, -0.030155420303344727, 0.13163472712039948, 0.148856058716774, 0.025142904371023178, 1.2499186992645264, 0.14527277648448944, 0.04192081838846207, -0.04021906107664108, -0.819037914276123, -0.8776527643203735, 0.9226774573326111, -0.012990900315344334, -0.6276738047599792, -0.4050188660621643, -0.4127127528190613]} +{"t": 15.5941, "q": [-0.3270668685436249, 0.005271779838949442, -0.007245015352964401, 0.6278071999549866, -0.3220568299293518, -0.001547214575111866, -0.36431702971458435, 0.016174975782632828, -0.014771261252462864, 0.5986359715461731, -0.28611859679222107, -0.011442831717431545, 0.0076467725448310375, -0.07294165343046188, -0.03015022724866867, 0.1315508335828781, 0.14907178282737732, 0.025142904371023178, 1.2500265836715698, 0.14524881541728973, 0.041908834129571915, -0.040231045335531235, -0.8190019726753235, -0.877245306968689, 0.9226774573326111, -0.013050821609795094, -0.6276738047599792, -0.4050188660621643, -0.4127127528190613]} +{"t": 15.6108, "q": [-0.32703277468681335, 0.00528882397338748, -0.007231623865664005, 0.6277901530265808, -0.3220527470111847, -0.001554433605633676, -0.36431702971458435, 0.016157930716872215, -0.014744477346539497, 0.5986359715461731, -0.2861144542694092, -0.011435610242187977, 0.007070920895785093, -0.07294165343046188, -0.03015022724866867, 0.13137108087539673, 0.1493234485387802, 0.025130920112133026, 1.250098466873169, 0.1452847570180893, 0.041908834129571915, -0.040231045335531235, -0.8189899921417236, -0.8768018484115601, 0.9226415157318115, -0.013098758645355701, -0.6276618242263794, -0.40503084659576416, -0.4126887917518616]} +{"t": 15.6276, "q": [-0.32699868083000183, 0.00528882397338748, -0.007218231912702322, 0.6277816295623779, -0.3220527470111847, -0.001554433605633676, -0.36430850625038147, 0.01612384244799614, -0.014771261252462864, 0.598644495010376, -0.28611859679222107, -0.011442831717431545, 0.006588812451809645, -0.07294925302267075, -0.030155420303344727, 0.1311793327331543, 0.14956313371658325, 0.025070998817682266, 1.2502782344818115, 0.1452847570180893, 0.04193280264735222, -0.04024302959442139, -0.8190738558769226, -0.8761547207832336, 0.9226415157318115, -0.013074790127575397, -0.6276378631591797, -0.40503084659576416, -0.4126887917518616]} +{"t": 15.6443, "q": [-0.3270157277584076, 0.005305869039148092, -0.007218231912702322, 0.6277901530265808, -0.32206103205680847, -0.0015545125352218747, -0.3642999827861786, 0.016106797382235527, -0.014771261252462864, 0.5986359715461731, -0.2861144542694092, -0.011435610242187977, 0.006254015490412712, -0.07294932007789612, -0.030165202915668488, 0.13109543919563293, 0.14971892535686493, 0.025047030299901962, 1.2504700422286987, 0.14536865055561066, 0.04193280264735222, -0.04025501385331154, -0.8190738558769226, -0.8754836320877075, 0.922521710395813, -0.013050821609795094, -0.6276378631591797, -0.40503084659576416, -0.4126887917518616]} +{"t": 15.661, "q": [-0.3270157277584076, 0.005314390640705824, -0.007204839959740639, 0.627773106098175, -0.3220568299293518, -0.001547214575111866, -0.3642914593219757, 0.016106797382235527, -0.014757868833839893, 0.5986615419387817, -0.2861103117465973, -0.011428406462073326, 0.0060933125205338, -0.07295691967010498, -0.030170394107699394, 0.13104750216007233, 0.1498507559299469, 0.02503504604101181, 1.2506498098373413, 0.1452607959508896, 0.04193280264735222, -0.04026699811220169, -0.8190618753433228, -0.874632716178894, 0.9224258065223694, -0.013014868833124638, -0.6276738047599792, -0.40503084659576416, -0.4127007722854614]} +{"t": 15.6778, "q": [-0.3270157277584076, 0.005305869039148092, -0.007218231912702322, 0.6277560591697693, -0.32206103205680847, -0.0015545125352218747, -0.3642914593219757, 0.01613236404955387, -0.01479804515838623, 0.5986189246177673, -0.28612273931503296, -0.011450035497546196, 0.006012961268424988, -0.07296445220708847, -0.030165808275341988, 0.1311313956975937, 0.14986273646354675, 0.02503504604101181, 1.250961422920227, 0.14527277648448944, 0.04194478690624237, -0.04026699811220169, -0.8190139532089233, -0.8736739754676819, 0.9223299622535706, -0.013038837350904942, -0.627697765827179, -0.4050188660621643, -0.4127127528190613]} +{"t": 15.6945, "q": [-0.3270157277584076, 0.00528882397338748, -0.007218231912702322, 0.6277645826339722, -0.32205283641815186, -0.0015689685242250562, -0.3642914593219757, 0.01613236404955387, -0.014757868833839893, 0.598644495010376, -0.28611859679222107, -0.011442831717431545, 0.00605313666164875, -0.07295691967010498, -0.030170394107699394, 0.1311793327331543, 0.1498986929655075, 0.02502306178212166, 1.2513208389282227, 0.1452607959508896, 0.041908834129571915, -0.040290966629981995, -0.8190259337425232, -0.872463583946228, 0.9223419427871704, -0.013038837350904942, -0.627697765827179, -0.40503084659576416, -0.41267678141593933]} +{"t": 15.7112, "q": [-0.3270157277584076, 0.005297346506267786, -0.007231623865664005, 0.6277560591697693, -0.32205283641815186, -0.0015689685242250562, -0.3642914593219757, 0.016174975782632828, -0.01478465273976326, 0.5986700654029846, -0.28611859679222107, -0.011442831717431545, 0.006106704473495483, -0.07295691967010498, -0.030170394107699394, 0.13119131326675415, 0.1498747169971466, 0.025011077523231506, 1.2517763376235962, 0.14527277648448944, 0.04189684987068176, -0.04026699811220169, -0.8191097974777222, -0.8709895014762878, 0.9222460389137268, -0.012990900315344334, -0.6277097463607788, -0.40503084659576416, -0.4126887917518616]} +{"t": 15.728, "q": [-0.3270157277584076, 0.005305869039148092, -0.0072584073059260845, 0.6277475357055664, -0.3220568299293518, -0.001547214575111866, -0.3642914593219757, 0.01613236404955387, -0.014824828132987022, 0.5986274480819702, -0.28612688183784485, -0.011457239277660847, 0.006146880332380533, -0.0729493796825409, -0.0301749799400568, 0.1311553567647934, 0.1498986929655075, 0.02502306178212166, 1.2523994445800781, 0.14532071352005005, 0.04182494431734085, -0.04027898237109184, -0.8192775845527649, -0.8698869943618774, 0.9221262335777283, -0.012978916056454182, -0.6277456879615784, -0.40503084659576416, -0.4126887917518616]} +{"t": 15.7447, "q": [-0.3270157277584076, 0.00528882397338748, -0.007271799258887768, 0.6277304887771606, -0.3220486640930176, -0.0015616705641150475, -0.36427441239356995, 0.01612384244799614, -0.014824828132987022, 0.5986530184745789, -0.28612273931503296, -0.011450035497546196, 0.006200447678565979, -0.07296457886695862, -0.030185367912054062, 0.13102354109287262, 0.14986273646354675, 0.02503504604101181, 1.2534061670303345, 0.14532071352005005, 0.04178899526596069, -0.04026699811220169, -0.8194333910942078, -0.8686286211013794, 0.9218745231628418, -0.013002884574234486, -0.6277576684951782, -0.4050188660621643, -0.41267678141593933]} +{"t": 15.7614, "q": [-0.3270072042942047, 0.005331434775143862, -0.007311975117772818, 0.6277219653129578, -0.3220486640930176, -0.0015616705641150475, -0.36427441239356995, 0.016089754179120064, -0.01486500445753336, 0.598644495010376, -0.28612273931503296, -0.011450035497546196, 0.006294190883636475, -0.07296451926231384, -0.03017559088766575, 0.13086773455142975, 0.14992265403270721, 0.02503504604101181, 1.254269003868103, 0.1453087329864502, 0.04177701100707054, -0.04027898237109184, -0.8196491003036499, -0.8677897453308105, 0.9216468334197998, -0.013002884574234486, -0.6278056502342224, -0.40503084659576416, -0.4126648008823395]} +{"t": 15.7782, "q": [-0.32699868083000183, 0.005331434775143862, -0.007311975117772818, 0.6277304887771606, -0.32204875349998474, -0.0015761875547468662, -0.3642914593219757, 0.01613236404955387, -0.01486500445753336, 0.5986359715461731, -0.28612691164016724, -0.011442787013947964, 0.006334366742521524, -0.0729796513915062, -0.03017619624733925, 0.1308797299861908, 0.1498507559299469, 0.02502306178212166, 1.2550599575042725, 0.14532071352005005, 0.04176502674818039, -0.040290966629981995, -0.8197689652442932, -0.8674062490463257, 0.9213592410087585, -0.012954947538673878, -0.6277816295623779, -0.4050188660621643, -0.41267678141593933]} +{"t": 15.7949, "q": [-0.3270157277584076, 0.00532291317358613, -0.007311975117772818, 0.627704918384552, -0.3220527470111847, -0.001554433605633676, -0.3642914593219757, 0.016098275780677795, -0.014851612038910389, 0.5986359715461731, -0.28612273931503296, -0.011450035497546196, 0.006361150648444891, -0.07296451926231384, -0.03017559088766575, 0.13079583644866943, 0.14979083836078644, 0.024999093264341354, 1.2564620971679688, 0.1452847570180893, 0.04175304248929024, -0.04027898237109184, -0.8199127316474915, -0.867238461971283, 0.9210835695266724, -0.012990900315344334, -0.6278056502342224, -0.40503084659576416, -0.4126528203487396]} +{"t": 15.8116, "q": [-0.3270157277584076, 0.00532291317358613, -0.007311975117772818, 0.627704918384552, -0.3220527470111847, -0.001554433605633676, -0.36427441239356995, 0.016081232577562332, -0.014838220551609993, 0.5986359715461731, -0.28612273931503296, -0.011450035497546196, 0.006361150648444891, -0.07296457886695862, -0.030185367912054062, 0.13067598640918732, 0.14979083836078644, 0.02503504604101181, 1.258080005645752, 0.1453087329864502, 0.04176502674818039, -0.04026699811220169, -0.8200325965881348, -0.8672145009040833, 0.9206880927085876, -0.01302685309201479, -0.6278056502342224, -0.4050428569316864, -0.41264083981513977]} +{"t": 15.8284, "q": [-0.32698163390159607, 0.00532291317358613, -0.007285191211849451, 0.6276878714561462, -0.3220486640930176, -0.0015616705641150475, -0.3642488718032837, 0.016089754179120064, -0.014838220551609993, 0.5986359715461731, -0.2861185669898987, -0.011457283049821854, 0.006294190883636475, -0.07299478352069855, -0.030176805332303047, 0.13068798184394836, 0.14975488185882568, 0.02503504604101181, 1.258894920349121, 0.1453087329864502, 0.04176502674818039, -0.0403149351477623, -0.8200565576553345, -0.8672504425048828, 0.9198611974716187, -0.013002884574234486, -0.6278296113014221, -0.40503084659576416, -0.4126528203487396]} +{"t": 15.8451, "q": [-0.3270157277584076, 0.00532291317358613, -0.007285191211849451, 0.6276793479919434, -0.3220486640930176, -0.0015616705641150475, -0.3642573654651642, 0.016106797382235527, -0.01479804515838623, 0.5986359715461731, -0.28611859679222107, -0.011442831717431545, 0.006213839631527662, -0.07298718392848969, -0.030171610414981842, 0.13077186048030853, 0.1497788429260254, 0.024987109005451202, 1.2591944932937622, 0.14529675245285034, 0.04176502674818039, -0.0403149351477623, -0.8200445771217346, -0.8672983646392822, 0.9187586307525635, -0.01302685309201479, -0.6278535723686218, -0.40503084659576416, -0.4126648008823395]} +{"t": 15.8618, "q": [-0.3270157277584076, 0.00532291317358613, -0.007285191211849451, 0.6276878714561462, -0.3220527470111847, -0.001554433605633676, -0.3642573654651642, 0.01607270911335945, -0.014824828132987022, 0.5986359715461731, -0.2861144542694092, -0.011450079269707203, 0.006213839631527662, -0.07299478352069855, -0.030176805332303047, 0.1308557540178299, 0.1498028188943863, 0.02503504604101181, 1.2593742609024048, 0.14529675245285034, 0.04178899526596069, -0.04030295088887215, -0.8200206160545349, -0.8673223257064819, 0.9174283742904663, -0.01296693179756403, -0.627841591835022, -0.4050428569316864, -0.4126528203487396]} +{"t": 15.8786, "q": [-0.32698163390159607, 0.005297346506267786, -0.007271799258887768, 0.6276963949203491, -0.3220527470111847, -0.001554433605633676, -0.3642573654651642, 0.016098275780677795, -0.014824828132987022, 0.598644495010376, -0.28609785437583923, -0.011392341926693916, 0.006187055725604296, -0.07300238311290741, -0.030181998386979103, 0.13084377348423004, 0.1497788429260254, 0.024987109005451202, 1.2594221830368042, 0.1452607959508896, 0.04178899526596069, -0.04030295088887215, -0.8199127316474915, -0.8673103451728821, 0.9158225059509277, -0.012954947538673878, -0.6278655529022217, -0.40503084659576416, -0.4126648008823395]} +{"t": 15.8954, "q": [-0.32694756984710693, 0.005305869039148092, -0.0072584073059260845, 0.6276793479919434, -0.322040319442749, -0.0015470745274797082, -0.3642403483390808, 0.01613236404955387, -0.014838220551609993, 0.5986359715461731, -0.286085307598114, -0.011414083652198315, 0.006187055725604296, -0.07298725098371506, -0.030181391164660454, 0.13077186048030853, 0.14968296885490417, 0.02503504604101181, 1.2595540285110474, 0.14527277648448944, 0.04186089709401131, -0.040362872183322906, -0.8199247121810913, -0.8672863841056824, 0.9139649271965027, -0.01296693179756403, -0.627925455570221, -0.4050428569316864, -0.4126528203487396]} +{"t": 15.9121, "q": [-0.32698163390159607, 0.005331434775143862, -0.007271799258887768, 0.6276793479919434, -0.3220362365245819, -0.0015542935580015182, -0.3642573654651642, 0.01613236404955387, -0.014838220551609993, 0.598644495010376, -0.2860894799232483, -0.01142128836363554, 0.006187055725604296, -0.07299484312534332, -0.03018658421933651, 0.13066400587558746, 0.14967098832130432, 0.02490321919322014, 1.2596498727798462, 0.1453087329864502, 0.04188486561179161, -0.04037485644221306, -0.8199007511138916, -0.8672744035720825, 0.9121553301811218, -0.01296693179756403, -0.6279014945030212, -0.40505483746528625, -0.4126528203487396]} +{"t": 15.9288, "q": [-0.3269731104373932, 0.00532291317358613, -0.007271799258887768, 0.6276793479919434, -0.32205694913864136, -0.0015617315657436848, -0.3642573654651642, 0.016140887513756752, -0.01486500445753336, 0.5986359715461731, -0.2861061692237854, -0.0114212017506361, 0.006120096426457167, -0.07306310534477234, -0.030213771387934685, 0.1306280493736267, 0.14965900778770447, 0.024879250675439835, 1.2597577571868896, 0.1453326940536499, 0.04189684987068176, -0.040350887924432755, -0.8199966549873352, -0.8673223257064819, 0.9103577136993408, -0.012978916056454182, -0.6279014945030212, -0.4050668179988861, -0.4126528203487396]} +{"t": 15.9455, "q": [-0.3269731104373932, 0.00532291317358613, -0.0072584073059260845, 0.6276878714561462, -0.32204440236091614, -0.0015398375689983368, -0.36423182487487793, 0.01613236404955387, -0.014824828132987022, 0.5986359715461731, -0.2860936224460602, -0.01142849214375019, 0.006106704473495483, -0.07310856878757477, -0.030225373804569244, 0.13061606884002686, 0.14965900778770447, 0.02491520345211029, 1.2598296403884888, 0.1453087329864502, 0.04195677116513252, -0.0403149351477623, -0.8197450041770935, -0.8672744035720825, 0.9076972007751465, -0.013002884574234486, -0.6279014945030212, -0.40507879853248596, -0.4126048982143402]} +{"t": 15.9623, "q": [-0.3269646167755127, 0.005314390640705824, -0.007311975117772818, 0.6276878714561462, -0.32204440236091614, -0.0015398375689983368, -0.36422330141067505, 0.01613236404955387, -0.014851612038910389, 0.598644495010376, -0.28609779477119446, -0.011435696855187416, 0.006146880332380533, -0.07312370091676712, -0.030225981026887894, 0.13061606884002686, 0.149599090218544, 0.024927187711000443, 1.2599375247955322, 0.14529675245285034, 0.04198073968291283, -0.04024302959442139, -0.8191097974777222, -0.8670347332954407, 0.9037424325942993, -0.01296693179756403, -0.6278895139694214, -0.40510275959968567, -0.41264083981513977]} +{"t": 15.979, "q": [-0.32693904638290405, 0.005305869039148092, -0.007298583164811134, 0.6276623010635376, -0.3220486640930176, -0.0015616705641150475, -0.36423182487487793, 0.01613236404955387, -0.014851612038910389, 0.598644495010376, -0.28610196709632874, -0.011442901566624641, 0.006079920567572117, -0.07312370091676712, -0.030225981026887894, 0.13071194291114807, 0.1495511531829834, 0.024927187711000443, 1.2599974870681763, 0.1453566700220108, 0.04205264523625374, -0.04019509255886078, -0.8191697597503662, -0.8667351007461548, 0.901537299156189, -0.012978916056454182, -0.6279014945030212, -0.40507879853248596, -0.4126528203487396]} +{"t": 15.9957, "q": [-0.32694756984710693, 0.00532291317358613, -0.007285191211849451, 0.6276623010635376, -0.3220321536064148, -0.0015615124721080065, -0.36423182487487793, 0.016174975782632828, -0.01486500445753336, 0.5986359715461731, -0.28610196709632874, -0.011442901566624641, 0.006146880332380533, -0.07311616837978363, -0.0302305668592453, 0.13078385591506958, 0.1495032161474228, 0.024927187711000443, 1.2601532936096191, 0.14529675245285034, 0.04207661375403404, -0.04019509255886078, -0.819265604019165, -0.8666871786117554, 0.9001711010932922, -0.012990900315344334, -0.6278775334358215, -0.40505483746528625, -0.4126648008823395]} +{"t": 16.0125, "q": [-0.32698163390159607, 0.005331434775143862, -0.007325367070734501, 0.6276623010635376, -0.3220280706882477, -0.0015687315026298165, -0.36423182487487793, 0.016166452318429947, -0.014945355243980885, 0.5986530184745789, -0.2861144542694092, -0.011435610242187977, 0.0061736637726426125, -0.07313890010118484, -0.030236367136240005, 0.13079583644866943, 0.1495751142501831, 0.024927187711000443, 1.2602851390838623, 0.14532071352005005, 0.04207661375403404, -0.04020707681775093, -0.8191697597503662, -0.8666632175445557, 0.8986610770225525, -0.01296693179756403, -0.6279134750366211, -0.4050907790660858, -0.4126528203487396]} +{"t": 16.0292, "q": [-0.32699015736579895, 0.005357001442462206, -0.007378934416919947, 0.627636730670929, -0.32204049825668335, -0.0015761086251586676, -0.36423182487487793, 0.016166452318429947, -0.014972139149904251, 0.5986615419387817, -0.28610196709632874, -0.011442901566624641, 0.006254015490412712, -0.07313890010118484, -0.030236367136240005, 0.13079583644866943, 0.14958709478378296, 0.024927187711000443, 1.2603689432144165, 0.14532071352005005, 0.04206462949514389, -0.040231045335531235, -0.8189899921417236, -0.8664355278015137, 0.8967556357383728, -0.013014868833124638, -0.6279494166374207, -0.4050907790660858, -0.41261687874794006]} +{"t": 16.0459, "q": [-0.3270157277584076, 0.005382567178457975, -0.007378934416919947, 0.6276282072067261, -0.3220280706882477, -0.0015687315026298165, -0.3642403483390808, 0.016157930716872215, -0.014985531568527222, 0.598644495010376, -0.286106139421463, -0.011450105346739292, 0.006307582836598158, -0.07313890010118484, -0.030236367136240005, 0.13075987994670868, 0.1495751142501831, 0.024867268279194832, 1.2604649066925049, 0.1452847570180893, 0.042088598012924194, -0.04024302959442139, -0.81889408826828, -0.8660520315170288, 0.8943827152252197, -0.012978916056454182, -0.6279613971710205, -0.4051147401332855, -0.4126288592815399]} +{"t": 16.0629, "q": [-0.3269731104373932, 0.0053655230440199375, -0.007365542463958263, 0.6276112198829651, -0.32203641533851624, -0.0015833275392651558, -0.3642573654651642, 0.016157930716872215, -0.014945355243980885, 0.5986359715461731, -0.286106139421463, -0.011450105346739292, 0.006294190883636475, -0.07312364131212234, -0.03021620213985443, 0.13077186048030853, 0.149599090218544, 0.024879250675439835, 1.2605007886886597, 0.1452607959508896, 0.04207661375403404, -0.040231045335531235, -0.8189060688018799, -0.8658003807067871, 0.8929925560951233, -0.01290701050311327, -0.6279494166374207, -0.40510275959968567, -0.4126528203487396]} +{"t": 16.0799, "q": [-0.32699868083000183, 0.005339957308024168, -0.00735215051099658, 0.6276112198829651, -0.3220365345478058, -0.0015978446463122964, -0.3642403483390808, 0.016140887513756752, -0.014931963756680489, 0.598644495010376, -0.28610196709632874, -0.011442901566624641, 0.006280798930674791, -0.0731085017323494, -0.030215593054890633, 0.13075987994670868, 0.14961107075214386, 0.024927187711000443, 1.260548710823059, 0.1452607959508896, 0.04206462949514389, -0.04021906107664108, -0.8189899921417236, -0.8657523989677429, 0.8915424942970276, -0.012954947538673878, -0.6279613971710205, -0.40510275959968567, -0.4126528203487396]} +{"t": 16.0966, "q": [-0.32698163390159607, 0.005357001442462206, -0.007365542463958263, 0.6275771260261536, -0.32202398777008057, -0.0015759505331516266, -0.3642403483390808, 0.016166452318429947, -0.014945355243980885, 0.5986700654029846, -0.28610196709632874, -0.011442901566624641, 0.006254015490412712, -0.07314643263816833, -0.0302317813038826, 0.13071194291114807, 0.149599090218544, 0.024927187711000443, 1.260536789894104, 0.1453806310892105, 0.04206462949514389, -0.04021906107664108, -0.8188461661338806, -0.8657164573669434, 0.89024817943573, -0.012883041985332966, -0.6279374361038208, -0.40507879853248596, -0.41261687874794006]} +{"t": 16.1134, "q": [-0.3269646167755127, 0.0053484789095819, -0.007378934416919947, 0.6275600790977478, -0.32203641533851624, -0.0015833275392651558, -0.3642403483390808, 0.016157930716872215, -0.014918571338057518, 0.5986189246177673, -0.28609779477119446, -0.011435696855187416, 0.006267406977713108, -0.07313890010118484, -0.030236367136240005, 0.13067598640918732, 0.1495751142501831, 0.02491520345211029, 1.260548710823059, 0.1453326940536499, 0.04206462949514389, -0.04021906107664108, -0.8189180493354797, -0.8657044768333435, 0.8895291090011597, -0.012918994762003422, -0.6279374361038208, -0.40510275959968567, -0.41264083981513977]} +{"t": 16.1301, "q": [-0.32699868083000183, 0.0053484789095819, -0.00735215051099658, 0.6275345087051392, -0.32203641533851624, -0.0015833275392651558, -0.36423182487487793, 0.016174975782632828, -0.014972139149904251, 0.598644495010376, -0.2861102819442749, -0.011442857794463634, 0.006280798930674791, -0.07313123345375061, -0.030221393331885338, 0.1306520253419876, 0.1496230512857437, 0.02491520345211029, 1.2605607509613037, 0.14529675245285034, 0.042088598012924194, -0.040231045335531235, -0.8188341856002808, -0.8656565546989441, 0.8887381553649902, -0.012942963279783726, -0.627925455570221, -0.40510275959968567, -0.41264083981513977]} +{"t": 16.1468, "q": [-0.32699015736579895, 0.005305869039148092, -0.007365542463958263, 0.6275004148483276, -0.3220406174659729, -0.0015906256157904863, -0.3642403483390808, 0.01619201898574829, -0.014918571338057518, 0.598644495010376, -0.286106139421463, -0.011435654014348984, 0.006267406977713108, -0.07311610132455826, -0.030220787972211838, 0.13064004480838776, 0.14958709478378296, 0.02490321919322014, 1.260548710823059, 0.14532071352005005, 0.04207661375403404, -0.04021906107664108, -0.8186424374580383, -0.8655486702919006, 0.8877434730529785, -0.01290701050311327, -0.6279374361038208, -0.4051147401332855, -0.41264083981513977]} +{"t": 16.1636, "q": [-0.3270157277584076, 0.00528882397338748, -0.007338759023696184, 0.6274833679199219, -0.32203641533851624, -0.0015833275392651558, -0.3642403483390808, 0.016166452318429947, -0.014905179850757122, 0.598644495010376, -0.28610196709632874, -0.011442901566624641, 0.006280798930674791, -0.07312364131212234, -0.03021620213985443, 0.1306280493736267, 0.14964702725410461, 0.024927187711000443, 1.2605726718902588, 0.14527277648448944, 0.042088598012924194, -0.04024302959442139, -0.8185824751853943, -0.8652850389480591, 0.8864611387252808, -0.012954947538673878, -0.6279374361038208, -0.4051147401332855, -0.4126288592815399]} +{"t": 16.1804, "q": [-0.32698163390159607, 0.005297346506267786, -0.00735215051099658, 0.6274918913841248, -0.3220365345478058, -0.0015978446463122964, -0.36423182487487793, 0.016234630718827248, -0.014931963756680489, 0.598644495010376, -0.2860935926437378, -0.011457395739853382, 0.006294190883636475, -0.07312370091676712, -0.030225981026887894, 0.1306520253419876, 0.14964702725410461, 0.024927187711000443, 1.260548710823059, 0.1452847570180893, 0.042088598012924194, -0.040231045335531235, -0.8184147477149963, -0.864997386932373, 0.8855983018875122, -0.012895026244223118, -0.6279374361038208, -0.40510275959968567, -0.41264083981513977]} +{"t": 16.1972, "q": [-0.3269731104373932, 0.00526325823739171, -0.00735215051099658, 0.6274577975273132, -0.32202398777008057, -0.0015759505331516266, -0.36423182487487793, 0.016157930716872215, -0.014958747662603855, 0.5986359715461731, -0.2860935926437378, -0.011457395739853382, 0.006307582836598158, -0.07312370091676712, -0.030225981026887894, 0.13067598640918732, 0.14963503181934357, 0.024927187711000443, 1.2605847120285034, 0.1452847570180893, 0.04207661375403404, -0.040231045335531235, -0.8176117539405823, -0.8648176193237305, 0.8851549029350281, -0.012871057726442814, -0.6279613971710205, -0.4051267206668854, -0.41264083981513977]} +{"t": 16.2139, "q": [-0.32694756984710693, 0.005220647435635328, -0.007311975117772818, 0.6274407505989075, -0.32202398777008057, -0.0015759505331516266, -0.36423182487487793, 0.01619201898574829, -0.014931963756680489, 0.5986359715461731, -0.2860894203186035, -0.01146464329212904, 0.006294190883636475, -0.07313117384910583, -0.030211616307497025, 0.13066400587558746, 0.14953915774822235, 0.024987109005451202, 1.2605847120285034, 0.1453326940536499, 0.042088598012924194, -0.040231045335531235, -0.8164733052253723, -0.8645899295806885, 0.8849990963935852, -0.012883041985332966, -0.6279494166374207, -0.4051626920700073, -0.4126288592815399]} +{"t": 16.2307, "q": [-0.32693052291870117, 0.005212124902755022, -0.007285191211849451, 0.6274492740631104, -0.32202398777008057, -0.0015759505331516266, -0.3642403483390808, 0.016200540587306023, -0.014931963756680489, 0.598644495010376, -0.2860602140426636, -0.011443134397268295, 0.006267406977713108, -0.07313117384910583, -0.030211616307497025, 0.13061606884002686, 0.1495511531829834, 0.024927187711000443, 1.2605726718902588, 0.1453326940536499, 0.04207661375403404, -0.04020707681775093, -0.8157063126564026, -0.8641585111618042, 0.8848432898521423, -0.012895026244223118, -0.6279613971710205, -0.40518665313720703, -0.41264083981513977]} +{"t": 16.2474, "q": [-0.32694756984710693, 0.00520360330119729, -0.0072584073059260845, 0.6274407505989075, -0.3220280706882477, -0.0015687315026298165, -0.3642403483390808, 0.01619201898574829, -0.014905179850757122, 0.5986359715461731, -0.28606024384498596, -0.011428682133555412, 0.006200447678565979, -0.07312357425689697, -0.03020641952753067, 0.1306280493736267, 0.1496230512857437, 0.024927187711000443, 1.2606086730957031, 0.1454046070575714, 0.04207661375403404, -0.04021906107664108, -0.8150231838226318, -0.8637031316757202, 0.8848193287849426, -0.012871057726442814, -0.6279733777046204, -0.40521061420440674, -0.41264083981513977]} +{"t": 16.2641, "q": [-0.32693904638290405, 0.005195080768316984, -0.0072584073059260845, 0.6274407505989075, -0.32202407717704773, -0.0015904676401987672, -0.36423182487487793, 0.016226107254624367, -0.014905179850757122, 0.5986700654029846, -0.2860518991947174, -0.011414255946874619, 0.006200447678565979, -0.07311597466468811, -0.030201228335499763, 0.13061606884002686, 0.1495751142501831, 0.02490321919322014, 1.2606086730957031, 0.14534468948841095, 0.042088598012924194, -0.04021906107664108, -0.814555823802948, -0.8632357120513916, 0.884723424911499, -0.012691294774413109, -0.6280333399772644, -0.40521061420440674, -0.41261687874794006]} +{"t": 16.2808, "q": [-0.32693904638290405, 0.00520360330119729, -0.0072584073059260845, 0.6274407505989075, -0.32201990485191345, -0.0015831695636734366, -0.36421477794647217, 0.016319850459694862, -0.014918571338057518, 0.5986700654029846, -0.286051869392395, -0.011428707279264927, 0.0062272315844893456, -0.07312357425689697, -0.03020641952753067, 0.13059210777282715, 0.14953915774822235, 0.024879250675439835, 1.2606205940246582, 0.1453566700220108, 0.04207661375403404, -0.04021906107664108, -0.8142921328544617, -0.8631278872489929, 0.8846515417098999, -0.01236772071570158, -0.6281291842460632, -0.40521061420440674, -0.4126288592815399]} +{"t": 16.2976, "q": [-0.3269134759902954, 0.00520360330119729, -0.0072584073059260845, 0.627406656742096, -0.32202398777008057, -0.0015759505331516266, -0.36421477794647217, 0.016294283792376518, -0.014958747662603855, 0.5986700654029846, -0.286051869392395, -0.011428707279264927, 0.006240623537451029, -0.07312357425689697, -0.03020641952753067, 0.130604088306427, 0.14961107075214386, 0.02491520345211029, 1.2606086730957031, 0.14534468948841095, 0.04207661375403404, -0.040231045335531235, -0.8143401145935059, -0.8630200028419495, 0.8845796585083008, -0.012415657751262188, -0.6281052231788635, -0.40521061420440674, -0.4126048982143402]} +{"t": 16.3145, "q": [-0.3269134759902954, 0.00520360330119729, -0.0072584073059260845, 0.627406656742096, -0.32201990485191345, -0.0015831695636734366, -0.3641977310180664, 0.016285762190818787, -0.014931963756680489, 0.5986274480819702, -0.2860560417175293, -0.01143592968583107, 0.0062272315844893456, -0.0731387659907341, -0.03021680749952793, 0.13061606884002686, 0.14958709478378296, 0.024939171969890594, 1.2606205940246582, 0.14539262652397156, 0.042088598012924194, -0.04021906107664108, -0.8144479393959045, -0.862828254699707, 0.8844478130340576, -0.012463593855500221, -0.6281172037124634, -0.40521061420440674, -0.4125809371471405]} +{"t": 16.3313, "q": [-0.3268793821334839, 0.005212124902755022, -0.007285191211849451, 0.6273896098136902, -0.3220117390155792, -0.0015976076247170568, -0.36418068408966064, 0.016277240589261055, -0.014891788363456726, 0.5986530184745789, -0.2860560417175293, -0.01143592968583107, 0.006280798930674791, -0.07313117384910583, -0.030211616307497025, 0.1306520253419876, 0.149599090218544, 0.0249631404876709, 1.2606205940246582, 0.14532071352005005, 0.04207661375403404, -0.040231045335531235, -0.8146157264709473, -0.862600564956665, 0.8842201232910156, -0.012499546632170677, -0.6281291842460632, -0.4052465856075287, -0.41259291768074036]} +{"t": 16.3481, "q": [-0.326870858669281, 0.00520360330119729, -0.007285191211849451, 0.6273640394210815, -0.32201582193374634, -0.0015903885941952467, -0.36417216062545776, 0.016277240589261055, -0.014945355243980885, 0.5986700654029846, -0.2860560715198517, -0.01142145972698927, 0.006294190883636475, -0.0731387659907341, -0.03021680749952793, 0.13061606884002686, 0.1496230512857437, 0.024927187711000443, 1.2606446743011475, 0.1453326940536499, 0.042088598012924194, -0.04020707681775093, -0.8147475719451904, -0.8623369336128235, 0.8839564323425293, -0.012523515149950981, -0.6281531453132629, -0.4052465856075287, -0.41259291768074036]} +{"t": 16.3648, "q": [-0.32684528827667236, 0.005212124902755022, -0.007285191211849451, 0.6273640394210815, -0.32201164960861206, -0.001583090634085238, -0.364155113697052, 0.01625167392194271, -0.014945355243980885, 0.5986530184745789, -0.2860727906227112, -0.011421374045312405, 0.006320974789559841, -0.0731387659907341, -0.03021680749952793, 0.1306280493736267, 0.14958709478378296, 0.024879250675439835, 1.2606326341629028, 0.1453806310892105, 0.04207661375403404, -0.040231045335531235, -0.8148913383483887, -0.8620732426643372, 0.8837886452674866, -0.012583436444401741, -0.6281172037124634, -0.4052225947380066, -0.4126048982143402]} +{"t": 16.3816, "q": [-0.32684528827667236, 0.005212124902755022, -0.007298583164811134, 0.6273555159568787, -0.32201582193374634, -0.0015903885941952467, -0.364155113697052, 0.016268718987703323, -0.014945355243980885, 0.5986530184745789, -0.2860644459724426, -0.011406946927309036, 0.006320974789559841, -0.07315396517515182, -0.030227195471525192, 0.1306520253419876, 0.14953915774822235, 0.024891234934329987, 1.2606326341629028, 0.14536865055561066, 0.04207661375403404, -0.04021906107664108, -0.8149632811546326, -0.861773669719696, 0.8837167620658875, -0.012547483667731285, -0.6281411647796631, -0.40523460507392883, -0.41259291768074036]} +{"t": 16.3984, "q": [-0.3268793821334839, 0.005169515032321215, -0.007285191211849451, 0.62732994556427, -0.3220282793045044, -0.001597765600308776, -0.364155113697052, 0.01624315232038498, -0.014918571338057518, 0.5986359715461731, -0.28607693314552307, -0.01142857875674963, 0.006320974789559841, -0.0731387659907341, -0.03021680749952793, 0.13068798184394836, 0.149599090218544, 0.02490321919322014, 1.2606446743011475, 0.1453087329864502, 0.04207661375403404, -0.040231045335531235, -0.8149393200874329, -0.8614620566368103, 0.8836808204650879, -0.012475578114390373, -0.6281291842460632, -0.4052465856075287, -0.4126048982143402]} +{"t": 16.4151, "q": [-0.3268623352050781, 0.00520360330119729, -0.007271799258887768, 0.6273640394210815, -0.32201990485191345, -0.0015831695636734366, -0.3641465902328491, 0.016268718987703323, -0.014905179850757122, 0.598644495010376, -0.2860727906227112, -0.011421374045312405, 0.006307582836598158, -0.07313890010118484, -0.030236367136240005, 0.13068798184394836, 0.1496230512857437, 0.02490321919322014, 1.2606446743011475, 0.14532071352005005, 0.042088598012924194, -0.04021906107664108, -0.8148194551467896, -0.861114501953125, 0.8836808204650879, -0.01245160959661007, -0.6281291842460632, -0.4052465856075287, -0.41259291768074036]} +{"t": 16.4318, "q": [-0.32689642906188965, 0.005195080768316984, -0.007271799258887768, 0.6273555159568787, -0.32201582193374634, -0.0015903885941952467, -0.364155113697052, 0.01625167392194271, -0.014905179850757122, 0.598644495010376, -0.286085307598114, -0.011414083652198315, 0.006347758695483208, -0.0731387659907341, -0.03021680749952793, 0.13068798184394836, 0.14964702725410461, 0.02490321919322014, 1.2606446743011475, 0.14532071352005005, 0.04207661375403404, -0.040231045335531235, -0.8147236108779907, -0.8607310056686401, 0.8836808204650879, -0.012463593855500221, -0.6281291842460632, -0.40523460507392883, -0.41264083981513977]} +{"t": 16.4486, "q": [-0.3268793821334839, 0.005195080768316984, -0.007285191211849451, 0.6273384690284729, -0.32203641533851624, -0.0015833275392651558, -0.36418068408966064, 0.01624315232038498, -0.014918571338057518, 0.598644495010376, -0.2860936224460602, -0.01142849214375019, 0.006280798930674791, -0.07315396517515182, -0.030227195471525192, 0.13068798184394836, 0.14956313371658325, 0.024927187711000443, 1.2606446743011475, 0.14534468948841095, 0.04207661375403404, -0.040231045335531235, -0.8145797848701477, -0.8602636456489563, 0.8836808204650879, -0.012439625337719917, -0.6281411647796631, -0.4052465856075287, -0.41261687874794006]} +{"t": 16.4655, "q": [-0.32688790559768677, 0.0051865591667592525, -0.007285191211849451, 0.62732994556427, -0.32202398777008057, -0.0015759505331516266, -0.36421477794647217, 0.016226107254624367, -0.014891788363456726, 0.5986615419387817, -0.28610193729400635, -0.01145735289901495, 0.006294190883636475, -0.07315396517515182, -0.030227195471525192, 0.13069996237754822, 0.14953915774822235, 0.02490321919322014, 1.2606205940246582, 0.1452847570180893, 0.042088598012924194, -0.040231045335531235, -0.8145797848701477, -0.8596524596214294, 0.883668839931488, -0.01242764201015234, -0.6281411647796631, -0.40521061420440674, -0.41261687874794006]} +{"t": 16.4821, "q": [-0.32688790559768677, 0.005195080768316984, -0.007271799258887768, 0.627261757850647, -0.3220282793045044, -0.001597765600308776, -0.36423182487487793, 0.016217585653066635, -0.014878395944833755, 0.598644495010376, -0.28610196709632874, -0.011442901566624641, 0.006294190883636475, -0.0731387659907341, -0.03021680749952793, 0.13067598640918732, 0.1495751142501831, 0.02490321919322014, 1.2606446743011475, 0.14529675245285034, 0.04207661375403404, -0.04021906107664108, -0.814639687538147, -0.8591850399971008, 0.8836568593978882, -0.012379704974591732, -0.628213107585907, -0.40523460507392883, -0.4126048982143402]} +{"t": 16.4989, "q": [-0.32693052291870117, 0.005195080768316984, -0.007285191211849451, 0.6272277235984802, -0.3220365345478058, -0.0015978446463122964, -0.3642573654651642, 0.016200540587306023, -0.014905179850757122, 0.5986359715461731, -0.286106139421463, -0.011450105346739292, 0.006267406977713108, -0.07314630597829819, -0.030212221667170525, 0.1306280493736267, 0.14958709478378296, 0.024867268279194832, 1.2606565952301025, 0.1452847570180893, 0.04207661375403404, -0.040231045335531235, -0.8147236108779907, -0.8586937189102173, 0.8836209177970886, -0.012403673492372036, -0.6282011270523071, -0.40523460507392883, -0.4126048982143402]} +{"t": 16.5156, "q": [-0.32693052291870117, 0.00520360330119729, -0.007285191211849451, 0.6271510124206543, -0.3220406174659729, -0.0015906256157904863, -0.36426588892936707, 0.016174975782632828, -0.014878395944833755, 0.5986274480819702, -0.28612685203552246, -0.011486142873764038, 0.006267406977713108, -0.07315396517515182, -0.030227195471525192, 0.13061606884002686, 0.14961107075214386, 0.02491520345211029, 1.2606446743011475, 0.1452847570180893, 0.04207661375403404, -0.04024302959442139, -0.8146876096725464, -0.8583821058273315, 0.8835609555244446, -0.012379704974591732, -0.6282370686531067, -0.40523460507392883, -0.4126048982143402]} +{"t": 16.5323, "q": [-0.32689642906188965, 0.005195080768316984, -0.007285191211849451, 0.6271169185638428, -0.32201990485191345, -0.0015831695636734366, -0.36426588892936707, 0.01619201898574829, -0.014878395944833755, 0.5986189246177673, -0.28613927960395813, -0.011493301950395107, 0.006267406977713108, -0.0731387659907341, -0.03021680749952793, 0.13061606884002686, 0.14958709478378296, 0.024927187711000443, 1.2606565952301025, 0.1453326940536499, 0.04207661375403404, -0.04024302959442139, -0.8146995902061462, -0.8579866290092468, 0.8834651112556458, -0.01230779942125082, -0.6282610297203064, -0.40518665313720703, -0.4126048982143402]} +{"t": 16.5491, "q": [-0.3269134759902954, 0.00520360330119729, -0.007285191211849451, 0.6271083950996399, -0.32201990485191345, -0.0015831695636734366, -0.3642829358577728, 0.016209064051508904, -0.01486500445753336, 0.5986019372940063, -0.28613924980163574, -0.01150775421410799, 0.006267406977713108, -0.0731387659907341, -0.03021680749952793, 0.13066400587558746, 0.14953915774822235, 0.02491520345211029, 1.2606686353683472, 0.14532071352005005, 0.042088598012924194, -0.04024302959442139, -0.8146995902061462, -0.8577229976654053, 0.8834651112556458, -0.012283830903470516, -0.6282610297203064, -0.40523460507392883, -0.4126048982143402]} +{"t": 16.5658, "q": [-0.32689642906188965, 0.00520360330119729, -0.007285191211849451, 0.6270572543144226, -0.3220282793045044, -0.001597765600308776, -0.3642914593219757, 0.016234630718827248, -0.014878395944833755, 0.5986104607582092, -0.28614339232444763, -0.011514975689351559, 0.0062272315844893456, -0.0731387659907341, -0.03021680749952793, 0.13067598640918732, 0.14958709478378296, 0.02490321919322014, 1.2606925964355469, 0.1453566700220108, 0.04207661375403404, -0.040231045335531235, -0.8146636486053467, -0.8574953079223633, 0.8834291696548462, -0.012283830903470516, -0.6282730102539062, -0.4052225947380066, -0.41259291768074036]} +{"t": 16.5825, "q": [-0.32694756984710693, 0.00520360330119729, -0.007285191211849451, 0.6269890666007996, -0.3220282793045044, -0.001597765600308776, -0.36430850625038147, 0.016157930716872215, -0.014878395944833755, 0.5985848903656006, -0.2861475646495819, -0.011507728137075901, 0.006213839631527662, -0.0731387659907341, -0.03021680749952793, 0.1306520253419876, 0.14961107075214386, 0.024879250675439835, 1.2606686353683472, 0.1453566700220108, 0.04206462949514389, -0.04021906107664108, -0.8146636486053467, -0.8572196364402771, 0.8834291696548462, -0.012223909609019756, -0.6282610297203064, -0.4052225947380066, -0.4126048982143402]} +{"t": 16.5993, "q": [-0.32689642906188965, 0.005220647435635328, -0.007271799258887768, 0.626954972743988, -0.32201990485191345, -0.0015831695636734366, -0.36431702971458435, 0.01618349738419056, -0.01486500445753336, 0.5985678434371948, -0.28613927960395813, -0.011493301950395107, 0.006187055725604296, -0.07313117384910583, -0.030211616307497025, 0.1306280493736267, 0.1496230512857437, 0.02490321919322014, 1.2606686353683472, 0.14539262652397156, 0.04207661375403404, -0.04021906107664108, -0.814639687538147, -0.8568840622901917, 0.883381187915802, -0.012175972573459148, -0.6282610297203064, -0.40521061420440674, -0.4126288592815399]} +{"t": 16.616, "q": [-0.32688790559768677, 0.00520360330119729, -0.0072584073059260845, 0.6269464492797852, -0.3220157325267792, -0.001575871603563428, -0.36431702971458435, 0.01624315232038498, -0.014878395944833755, 0.5985848903656006, -0.28613510727882385, -0.01150055043399334, 0.006146880332380533, -0.07313117384910583, -0.030211616307497025, 0.1306280493736267, 0.14965900778770447, 0.02491520345211029, 1.2606805562973022, 0.1453806310892105, 0.042088598012924194, -0.040231045335531235, -0.8146277070045471, -0.8566204309463501, 0.8833212852478027, -0.01209208369255066, -0.6282610297203064, -0.4052225947380066, -0.4126048982143402]} +{"t": 16.6327, "q": [-0.326870858669281, 0.00520360330119729, -0.0072584073059260845, 0.6269208788871765, -0.3220282793045044, -0.001597765600308776, -0.36430850625038147, 0.016234630718827248, -0.014878395944833755, 0.5985848903656006, -0.28613924980163574, -0.01150775421410799, 0.00613348837941885, -0.07313117384910583, -0.030211616307497025, 0.130604088306427, 0.14961107075214386, 0.024891234934329987, 1.2606686353683472, 0.14529675245285034, 0.042088598012924194, -0.04021906107664108, -0.8145797848701477, -0.8563448190689087, 0.8833332657814026, -0.012104067951440811, -0.6282610297203064, -0.40521061420440674, -0.4125809371471405]} +{"t": 16.6494, "q": [-0.3268623352050781, 0.005212124902755022, -0.007245015352964401, 0.626886785030365, -0.3220282793045044, -0.001597765600308776, -0.3642999827861786, 0.016226107254624367, -0.014891788363456726, 0.5985934138298035, -0.2861226201057434, -0.011536763980984688, 0.00613348837941885, -0.07312357425689697, -0.03020641952753067, 0.13056813180446625, 0.14961107075214386, 0.02491520345211029, 1.2606925964355469, 0.1453087329864502, 0.042088598012924194, -0.040231045335531235, -0.814411997795105, -0.8560571670532227, 0.8833452463150024, -0.012080099433660507, -0.6282849907875061, -0.4052225947380066, -0.41259291768074036]} +{"t": 16.6662, "q": [-0.3268793821334839, 0.00520360330119729, -0.0072584073059260845, 0.6268953084945679, -0.32201990485191345, -0.0015831695636734366, -0.3642999827861786, 0.016226107254624367, -0.014878395944833755, 0.5985848903656006, -0.2861267924308777, -0.01151504646986723, 0.00613348837941885, -0.07313117384910583, -0.030211616307497025, 0.13059210777282715, 0.14964702725410461, 0.02490321919322014, 1.2606686353683472, 0.14532071352005005, 0.042100582271814346, -0.04021906107664108, -0.8142921328544617, -0.8556017875671387, 0.8833332657814026, -0.012080099433660507, -0.628296971321106, -0.40523460507392883, -0.41261687874794006]} +{"t": 16.6829, "q": [-0.3268793821334839, 0.00520360330119729, -0.0072584073059260845, 0.6268953084945679, -0.3220157325267792, -0.001575871603563428, -0.36430850625038147, 0.01625167392194271, -0.014878395944833755, 0.5985678434371948, -0.28613510727882385, -0.01150055043399334, 0.00613348837941885, -0.0731387659907341, -0.03021680749952793, 0.13059210777282715, 0.149599090218544, 0.02491520345211029, 1.260704517364502, 0.1453326940536499, 0.042088598012924194, -0.040231045335531235, -0.8143041133880615, -0.8551943302154541, 0.8833452463150024, -0.012056130915880203, -0.6282849907875061, -0.4052225947380066, -0.41259291768074036]} +{"t": 16.6996, "q": [-0.32684528827667236, 0.005195080768316984, -0.007245015352964401, 0.6268782615661621, -0.3220117390155792, -0.0015976076247170568, -0.3642829358577728, 0.01624315232038498, -0.014905179850757122, 0.5985763669013977, -0.2861267924308777, -0.01151504646986723, 0.006160271819680929, -0.07313117384910583, -0.030211616307497025, 0.13061606884002686, 0.1495271772146225, 0.024879250675439835, 1.2606805562973022, 0.1452847570180893, 0.042100582271814346, -0.04021906107664108, -0.8143041133880615, -0.8547149300575256, 0.8833572268486023, -0.011996209621429443, -0.628296971321106, -0.4052225947380066, -0.4125809371471405]} +{"t": 16.7164, "q": [-0.3268197178840637, 0.0051865591667592525, -0.007231623865664005, 0.626886785030365, -0.3220117390155792, -0.0015976076247170568, -0.3642829358577728, 0.016268718987703323, -0.014905179850757122, 0.5985763669013977, -0.2861184775829315, -0.011529560200870037, 0.006146880332380533, -0.07313117384910583, -0.030211616307497025, 0.13061606884002686, 0.1495751142501831, 0.024891234934329987, 1.2606925964355469, 0.14532071352005005, 0.04207661375403404, -0.04024302959442139, -0.8143160939216614, -0.8541157245635986, 0.8833452463150024, -0.011960256844758987, -0.6283089518547058, -0.40521061420440674, -0.4126288592815399]} +{"t": 16.7332, "q": [-0.3267941474914551, 0.005195080768316984, -0.0072584073059260845, 0.626886785030365, -0.3219994008541107, -0.0016047655371949077, -0.36426588892936707, 0.016277240589261055, -0.014878395944833755, 0.5985678434371948, -0.2861018776893616, -0.01150074414908886, 0.006146880332380533, -0.0731387659907341, -0.03021680749952793, 0.1306520253419876, 0.14958709478378296, 0.024891234934329987, 1.2606925964355469, 0.1452607959508896, 0.04207661375403404, -0.04024302959442139, -0.8143160939216614, -0.8534925580024719, 0.8833332657814026, -0.011924304068088531, -0.628296971321106, -0.40521061420440674, -0.41259291768074036]} +{"t": 16.7499, "q": [-0.32680267095565796, 0.005178036633878946, -0.007231623865664005, 0.6268953084945679, -0.3220159411430359, -0.0016049055848270655, -0.3642403483390808, 0.016285762190818787, -0.014918571338057518, 0.5986019372940063, -0.2860935628414154, -0.011486335657536983, 0.006146880332380533, -0.07313117384910583, -0.030211616307497025, 0.13064004480838776, 0.149599090218544, 0.02490321919322014, 1.260704517364502, 0.14532071352005005, 0.04207661375403404, -0.040231045335531235, -0.8143160939216614, -0.8529772162437439, 0.8833332657814026, -0.011900335550308228, -0.6283089518547058, -0.40521061420440674, -0.4126048982143402]} +{"t": 16.7666, "q": [-0.3267686069011688, 0.005160992499440908, -0.007231623865664005, 0.6268953084945679, -0.3219994008541107, -0.0016047655371949077, -0.3642403483390808, 0.01624315232038498, -0.014891788363456726, 0.5985934138298035, -0.28608936071395874, -0.011493583209812641, 0.0061736637726426125, -0.07312357425689697, -0.03020641952753067, 0.13061606884002686, 0.1496230512857437, 0.02490321919322014, 1.2606805562973022, 0.14529675245285034, 0.042088598012924194, -0.04024302959442139, -0.8143160939216614, -0.8524858951568604, 0.8833332657814026, -0.011804461479187012, -0.6282849907875061, -0.40521061420440674, -0.4126048982143402]} +{"t": 16.7834, "q": [-0.3267430365085602, 0.005135425832122564, -0.007218231912702322, 0.6269123554229736, -0.32199522852897644, -0.001597467577084899, -0.3641977310180664, 0.016260195523500443, -0.014905179850757122, 0.5985678434371948, -0.28608518838882446, -0.011486360803246498, 0.006146880332380533, -0.07312357425689697, -0.03020641952753067, 0.130604088306427, 0.14953915774822235, 0.024891234934329987, 1.260704517364502, 0.14532071352005005, 0.042088598012924194, -0.040231045335531235, -0.8142921328544617, -0.8520424365997314, 0.883297324180603, -0.011744541116058826, -0.6282849907875061, -0.40521061420440674, -0.41261687874794006]} +{"t": 16.8001, "q": [-0.3267004191875458, 0.005135425832122564, -0.007231623865664005, 0.6269038319587708, -0.3219994008541107, -0.0016047655371949077, -0.3641977310180664, 0.016277240589261055, -0.01486500445753336, 0.5986104607582092, -0.28608936071395874, -0.011493583209812641, 0.006160271819680929, -0.07313117384910583, -0.030211616307497025, 0.13067598640918732, 0.14953915774822235, 0.024951156228780746, 1.260704517364502, 0.1453806310892105, 0.042088598012924194, -0.04021906107664108, -0.8143160939216614, -0.8517428636550903, 0.8832733631134033, -0.011732556857168674, -0.6282849907875061, -0.40521061420440674, -0.4126048982143402]} +{"t": 16.8172, "q": [-0.3267004191875458, 0.0051439483650028706, -0.007218231912702322, 0.6268953084945679, -0.3220076560974121, -0.0016048266552388668, -0.3641892075538635, 0.016268718987703323, -0.014891788363456726, 0.5986274480819702, -0.28608939051628113, -0.01147911325097084, 0.0061736637726426125, -0.0731387659907341, -0.03021680749952793, 0.13068798184394836, 0.14958709478378296, 0.02491520345211029, 1.260704517364502, 0.14534468948841095, 0.042088598012924194, -0.04021906107664108, -0.8142921328544617, -0.8515271544456482, 0.883297324180603, -0.011744541116058826, -0.6283089518547058, -0.40521061420440674, -0.41259291768074036]} +{"t": 16.834, "q": [-0.32670894265174866, 0.0051439483650028706, -0.007218231912702322, 0.6269038319587708, -0.32200348377227783, -0.0015975285787135363, -0.3641977310180664, 0.016268718987703323, -0.014905179850757122, 0.5985934138298035, -0.28608521819114685, -0.011471908539533615, 0.006146880332380533, -0.07313117384910583, -0.030211616307497025, 0.130604088306427, 0.14949122071266174, 0.02490321919322014, 1.2607405185699463, 0.14532071352005005, 0.04207661375403404, -0.04021906107664108, -0.8142561912536621, -0.8512874841690063, 0.8833332657814026, -0.011672635562717915, -0.628296971321106, -0.4052465856075287, -0.41259291768074036]} +{"t": 16.8507, "q": [-0.32670894265174866, 0.005135425832122564, -0.007218231912702322, 0.6269038319587708, -0.32199522852897644, -0.001597467577084899, -0.3641977310180664, 0.016277240589261055, -0.014905179850757122, 0.5986189246177673, -0.28609776496887207, -0.011479070410132408, 0.006160271819680929, -0.07312357425689697, -0.03020641952753067, 0.1306280493736267, 0.14956313371658325, 0.02491520345211029, 1.2607284784317017, 0.14534468948841095, 0.042088598012924194, -0.04021906107664108, -0.8141723275184631, -0.8509998321533203, 0.8833212852478027, -0.011660651303827763, -0.6283209323883057, -0.40523460507392883, -0.4126048982143402]} +{"t": 16.8674, "q": [-0.3266918957233429, 0.0051439483650028706, -0.007218231912702322, 0.626886785030365, -0.32199522852897644, -0.001597467577084899, -0.36418068408966064, 0.016260195523500443, -0.014931963756680489, 0.5986359715461731, -0.2860935628414154, -0.011486335657536983, 0.0061736637726426125, -0.07312357425689697, -0.03020641952753067, 0.13061606884002686, 0.1495751142501831, 0.024927187711000443, 1.2607405185699463, 0.1453087329864502, 0.042088598012924194, -0.04020707681775093, -0.8142322301864624, -0.8508200645446777, 0.8833212852478027, -0.011660651303827763, -0.6283089518547058, -0.40523460507392883, -0.41259291768074036]} +{"t": 16.8841, "q": [-0.3266918957233429, 0.005126904230564833, -0.007218231912702322, 0.6268527507781982, -0.3219994902610779, -0.0016192826442420483, -0.3641977310180664, 0.016277240589261055, -0.014945355243980885, 0.5986189246177673, -0.2860935628414154, -0.011486335657536983, 0.006187055725604296, -0.0731387659907341, -0.03021680749952793, 0.13064004480838776, 0.14956313371658325, 0.024891234934329987, 1.2607405185699463, 0.14532071352005005, 0.04207661375403404, -0.040231045335531235, -0.8142442107200623, -0.8507362008094788, 0.8833093047142029, -0.011672635562717915, -0.6283448934555054, -0.40523460507392883, -0.4126048982143402]} +{"t": 16.9009, "q": [-0.32667484879493713, 0.005135425832122564, -0.007231623865664005, 0.6268697381019592, -0.3219994902610779, -0.0016192826442420483, -0.36418068408966064, 0.016328373923897743, -0.014918571338057518, 0.5986274480819702, -0.28608936071395874, -0.011493583209812641, 0.006187055725604296, -0.07313117384910583, -0.030211616307497025, 0.13059210777282715, 0.14956313371658325, 0.02491520345211029, 1.2607405185699463, 0.1453566700220108, 0.042088598012924194, -0.040231045335531235, -0.8143880367279053, -0.850712239742279, 0.883297324180603, -0.011696604080498219, -0.6283209323883057, -0.4052225947380066, -0.41259291768074036]} +{"t": 16.9176, "q": [-0.32668337225914, 0.005135425832122564, -0.007231623865664005, 0.6268612146377563, -0.3219870626926422, -0.001611905638128519, -0.36417216062545776, 0.016294283792376518, -0.014918571338057518, 0.5986189246177673, -0.28608518838882446, -0.011486360803246498, 0.0061736637726426125, -0.07312357425689697, -0.03020641952753067, 0.13061606884002686, 0.1495511531829834, 0.024879250675439835, 1.2607165575027466, 0.14532071352005005, 0.04207661375403404, -0.04020707681775093, -0.814495861530304, -0.850712239742279, 0.8832374215126038, -0.011660651303827763, -0.6283209323883057, -0.4052225947380066, -0.41259291768074036]} +{"t": 16.9343, "q": [-0.32668337225914, 0.005135425832122564, -0.007218231912702322, 0.6268357038497925, -0.32199522852897644, -0.001597467577084899, -0.3641465902328491, 0.016260195523500443, -0.014931963756680489, 0.5986189246177673, -0.28608518838882446, -0.011486360803246498, 0.006200447678565979, -0.07313117384910583, -0.030211616307497025, 0.13061606884002686, 0.14964702725410461, 0.024879250675439835, 1.260704517364502, 0.14534468948841095, 0.042088598012924194, -0.040231045335531235, -0.814495861530304, -0.850712239742279, 0.883213460445404, -0.011660651303827763, -0.6283448934555054, -0.4052225947380066, -0.4126048982143402]} +{"t": 16.9511, "q": [-0.32668337225914, 0.0051439483650028706, -0.007204839959740639, 0.626801609992981, -0.3219953179359436, -0.0016119845677167177, -0.3641892075538635, 0.01625167392194271, -0.014905179850757122, 0.5986189246177673, -0.28608518838882446, -0.011500829830765724, 0.006187055725604296, -0.07312357425689697, -0.03020641952753067, 0.13067598640918732, 0.14961107075214386, 0.02490321919322014, 1.2607284784317017, 0.14534468948841095, 0.042088598012924194, -0.040231045335531235, -0.8144719004631042, -0.850712239742279, 0.8831774592399597, -0.011636682786047459, -0.6283568739891052, -0.40523460507392883, -0.41259291768074036]} +{"t": 16.9678, "q": [-0.3266918957233429, 0.005135425832122564, -0.007245015352964401, 0.6267845630645752, -0.3219953179359436, -0.0016119845677167177, -0.36418068408966064, 0.016260195523500443, -0.014918571338057518, 0.5986274480819702, -0.28608936071395874, -0.011493583209812641, 0.0061736637726426125, -0.07312357425689697, -0.03020641952753067, 0.1306520253419876, 0.14956313371658325, 0.024891234934329987, 1.2607284784317017, 0.14536865055561066, 0.04207661375403404, -0.04021906107664108, -0.8145198822021484, -0.850712239742279, 0.88315349817276, -0.01164866704493761, -0.6283688545227051, -0.40523460507392883, -0.41259291768074036]} +{"t": 16.9845, "q": [-0.3266918957233429, 0.005135425832122564, -0.007218231912702322, 0.6267589926719666, -0.3219953179359436, -0.0016119845677167177, -0.3641977310180664, 0.016277240589261055, -0.014905179850757122, 0.5986104607582092, -0.28608936071395874, -0.011493583209812641, 0.006213839631527662, -0.07312357425689697, -0.03020641952753067, 0.1305801123380661, 0.14956313371658325, 0.024891234934329987, 1.2607165575027466, 0.14534468948841095, 0.042088598012924194, -0.040231045335531235, -0.8145198822021484, -0.850712239742279, 0.8831774592399597, -0.011612714268267155, -0.6283688545227051, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.0013, "q": [-0.3266407549381256, 0.005126904230564833, -0.007218231912702322, 0.6267504692077637, -0.3219994008541107, -0.0016047655371949077, -0.36418068408966064, 0.016319850459694862, -0.014918571338057518, 0.5986189246177673, -0.28608936071395874, -0.011493583209812641, 0.006267406977713108, -0.07312357425689697, -0.03020641952753067, 0.1305801123380661, 0.1495751142501831, 0.02491520345211029, 1.2607405185699463, 0.14529675245285034, 0.04207661375403404, -0.040231045335531235, -0.8145318627357483, -0.8506043553352356, 0.8831415176391602, -0.011576761491596699, -0.6283808946609497, -0.4052465856075287, -0.4126048982143402]} +{"t": 17.018, "q": [-0.32668337225914, 0.005109860096126795, -0.007231623865664005, 0.6266737580299377, -0.3219994008541107, -0.0016047655371949077, -0.3641977310180664, 0.016285762190818787, -0.014945355243980885, 0.5986189246177673, -0.2860935628414154, -0.011486335657536983, 0.006254015490412712, -0.07313117384910583, -0.030211616307497025, 0.1305801123380661, 0.1495271772146225, 0.02491520345211029, 1.2607284784317017, 0.14532071352005005, 0.042088598012924194, -0.040231045335531235, -0.8144838809967041, -0.8504485487937927, 0.8831175565719604, -0.011504855938255787, -0.6284288167953491, -0.40523460507392883, -0.41259291768074036]} +{"t": 17.0348, "q": [-0.32668337225914, 0.005109860096126795, -0.007245015352964401, 0.626656711101532, -0.322003573179245, -0.0016120636137202382, -0.3641977310180664, 0.016294283792376518, -0.014931963756680489, 0.5986274480819702, -0.2861143946647644, -0.011493435129523277, 0.006240623537451029, -0.07312357425689697, -0.03020641952753067, 0.1306520253419876, 0.1495751142501831, 0.02490321919322014, 1.260704517364502, 0.14527277648448944, 0.042088598012924194, -0.040231045335531235, -0.8144359588623047, -0.8502088785171509, 0.8831415176391602, -0.011516840197145939, -0.6284048557281494, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.0515, "q": [-0.32668337225914, 0.005084293428808451, -0.007204839959740639, 0.6266311407089233, -0.322003573179245, -0.0016120636137202382, -0.36421477794647217, 0.016285762190818787, -0.014918571338057518, 0.5986274480819702, -0.2861102521419525, -0.011486231349408627, 0.006267406977713108, -0.07312357425689697, -0.03020641952753067, 0.130604088306427, 0.14953915774822235, 0.02491520345211029, 1.2607405185699463, 0.1453087329864502, 0.042088598012924194, -0.040231045335531235, -0.8143760561943054, -0.850053071975708, 0.8831415176391602, -0.01152882445603609, -0.6284048557281494, -0.4051986336708069, -0.41259291768074036]} +{"t": 17.0682, "q": [-0.32668337225914, 0.005101337563246489, -0.007218231912702322, 0.6266226172447205, -0.3219994008541107, -0.0016047655371949077, -0.36423182487487793, 0.016268718987703323, -0.014905179850757122, 0.5986274480819702, -0.2861061096191406, -0.011479026637971401, 0.0062272315844893456, -0.07312357425689697, -0.03020641952753067, 0.13064004480838776, 0.14949122071266174, 0.024891234934329987, 1.2607284784317017, 0.1452847570180893, 0.042088598012924194, -0.040231045335531235, -0.8143041133880615, -0.8498613238334656, 0.88315349817276, -0.011516840197145939, -0.6284048557281494, -0.4051986336708069, -0.4126048982143402]} +{"t": 17.0849, "q": [-0.3267004191875458, 0.0051183816976845264, -0.007218231912702322, 0.6266226172447205, -0.3219994008541107, -0.0016047655371949077, -0.3642488718032837, 0.016285762190818787, -0.014918571338057518, 0.5986104607582092, -0.2861018776893616, -0.01150074414908886, 0.0062272315844893456, -0.07312357425689697, -0.03020641952753067, 0.1306280493736267, 0.1495271772146225, 0.024891234934329987, 1.2607284784317017, 0.1452847570180893, 0.04206462949514389, -0.04021906107664108, -0.8142202496528625, -0.849681556224823, 0.88315349817276, -0.011492871679365635, -0.6283928751945496, -0.40521061420440674, -0.4126048982143402]} +{"t": 17.1017, "q": [-0.3267004191875458, 0.005075771827250719, -0.007218231912702322, 0.6265970468521118, -0.3219994008541107, -0.0016047655371949077, -0.3642488718032837, 0.01624315232038498, -0.014891788363456726, 0.5986274480819702, -0.28611433506011963, -0.011522356420755386, 0.006240623537451029, -0.07312357425689697, -0.03020641952753067, 0.13059210777282715, 0.149599090218544, 0.024891234934329987, 1.2607405185699463, 0.14534468948841095, 0.042088598012924194, -0.04021906107664108, -0.8141962885856628, -0.849597692489624, 0.8831774592399597, -0.011492871679365635, -0.6283928751945496, -0.40523460507392883, -0.41259291768074036]} +{"t": 17.1184, "q": [-0.32670894265174866, 0.005075771827250719, -0.007218231912702322, 0.6265885233879089, -0.3219953179359436, -0.0016119845677167177, -0.3642573654651642, 0.01625167392194271, -0.01486500445753336, 0.5986189246177673, -0.28610605001449585, -0.011507948860526085, 0.006254015490412712, -0.07312357425689697, -0.03020641952753067, 0.130604088306427, 0.14956313371658325, 0.02491520345211029, 1.2607524394989014, 0.14534468948841095, 0.0421125665307045, -0.040231045335531235, -0.8141483664512634, -0.8494658470153809, 0.8832014203071594, -0.011480887420475483, -0.6283928751945496, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.1351, "q": [-0.3267004191875458, 0.005084293428808451, -0.0071914480067789555, 0.6265714764595032, -0.3219953179359436, -0.0016119845677167177, -0.3642403483390808, 0.01625167392194271, -0.014878395944833755, 0.5986104607582092, -0.28611433506011963, -0.011522356420755386, 0.0062272315844893456, -0.0731387659907341, -0.03021680749952793, 0.13061606884002686, 0.1495511531829834, 0.024927187711000443, 1.2607165575027466, 0.1453326940536499, 0.042088598012924194, -0.040231045335531235, -0.8141363859176636, -0.8493939638137817, 0.8832014203071594, -0.011492871679365635, -0.6283808946609497, -0.40523460507392883, -0.41259291768074036]} +{"t": 17.1519, "q": [-0.32668337225914, 0.005075771827250719, -0.007218231912702322, 0.6265629529953003, -0.32199522852897644, -0.001597467577084899, -0.3642403483390808, 0.016260195523500443, -0.014891788363456726, 0.5986019372940063, -0.2861185371875763, -0.011500638909637928, 0.006267406977713108, -0.07312357425689697, -0.03020641952753067, 0.13056813180446625, 0.14953915774822235, 0.02490321919322014, 1.2607284784317017, 0.1453326940536499, 0.042088598012924194, -0.040231045335531235, -0.8141962885856628, -0.8494299054145813, 0.8832014203071594, -0.011480887420475483, -0.6284048557281494, -0.4052225947380066, -0.4126048982143402]} +{"t": 17.1686, "q": [-0.3267004191875458, 0.005067249294370413, -0.007204839959740639, 0.6265714764595032, -0.32199522852897644, -0.001597467577084899, -0.3642403483390808, 0.016260195523500443, -0.014878395944833755, 0.5986104607582092, -0.2861185371875763, -0.011500638909637928, 0.006280798930674791, -0.07312357425689697, -0.03020641952753067, 0.13056813180446625, 0.1495032161474228, 0.024927187711000443, 1.2607284784317017, 0.14527277648448944, 0.042088598012924194, -0.040231045335531235, -0.8143041133880615, -0.8494299054145813, 0.8831654787063599, -0.011492871679365635, -0.6284048557281494, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.1853, "q": [-0.32668337225914, 0.005067249294370413, -0.007218231912702322, 0.626579999923706, -0.3219994008541107, -0.0016047655371949077, -0.3642403483390808, 0.016260195523500443, -0.014891788363456726, 0.5986104607582092, -0.28611019253730774, -0.011515152640640736, 0.006267406977713108, -0.07313117384910583, -0.030211616307497025, 0.13061606884002686, 0.14940734207630157, 0.024891234934329987, 1.2607284784317017, 0.14527277648448944, 0.042100582271814346, -0.040231045335531235, -0.8143760561943054, -0.8494418859481812, 0.8831175565719604, -0.011480887420475483, -0.6284048557281494, -0.4052225947380066, -0.4125809371471405]} +{"t": 17.202, "q": [-0.32667484879493713, 0.005050205159932375, -0.007218231912702322, 0.6265544295310974, -0.3219911456108093, -0.001604686607606709, -0.3642403483390808, 0.01624315232038498, -0.014905179850757122, 0.5986019372940063, -0.28610605001449585, -0.011507948860526085, 0.006254015490412712, -0.07313117384910583, -0.030211616307497025, 0.13064004480838776, 0.1495511531829834, 0.02490321919322014, 1.2607524394989014, 0.14529675245285034, 0.04207661375403404, -0.04021906107664108, -0.8144239783287048, -0.8495017886161804, 0.8831175565719604, -0.011468903161585331, -0.6284048557281494, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.2189, "q": [-0.3266492784023285, 0.005067249294370413, -0.007231623865664005, 0.6265885233879089, -0.3219953179359436, -0.0016119845677167177, -0.36421477794647217, 0.016260195523500443, -0.014891788363456726, 0.5986104607582092, -0.28611019253730774, -0.011515152640640736, 0.006280798930674791, -0.07312357425689697, -0.03020641952753067, 0.1306520253419876, 0.14953915774822235, 0.024891234934329987, 1.2607284784317017, 0.14532071352005005, 0.042088598012924194, -0.04021906107664108, -0.8144359588623047, -0.8495617508888245, 0.88315349817276, -0.011444934643805027, -0.6284168362617493, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.2356, "q": [-0.3267004191875458, 0.005067249294370413, -0.007231623865664005, 0.6265629529953003, -0.32199522852897644, -0.001597467577084899, -0.3642403483390808, 0.016285762190818787, -0.014905179850757122, 0.5986189246177673, -0.28610605001449585, -0.011507948860526085, 0.006280798930674791, -0.07313117384910583, -0.030211616307497025, 0.13064004480838776, 0.1495751142501831, 0.024879250675439835, 1.2607284784317017, 0.14532071352005005, 0.04207661375403404, -0.040231045335531235, -0.8144719004631042, -0.8495617508888245, 0.8831415176391602, -0.011420967057347298, -0.6284048557281494, -0.4052225947380066, -0.4126048982143402]} +{"t": 17.2524, "q": [-0.32666632533073425, 0.005067249294370413, -0.007231623865664005, 0.6265544295310974, -0.3219953179359436, -0.0016119845677167177, -0.36421477794647217, 0.01625167392194271, -0.014918571338057518, 0.5986104607582092, -0.2861185371875763, -0.011500638909637928, 0.006280798930674791, -0.07313117384910583, -0.030211616307497025, 0.13061606884002686, 0.14949122071266174, 0.024879250675439835, 1.2607405185699463, 0.1452847570180893, 0.042088598012924194, -0.040231045335531235, -0.8145797848701477, -0.8495257496833801, 0.8831415176391602, -0.011420967057347298, -0.628440797328949, -0.4052225947380066, -0.4126048982143402]} +{"t": 17.2692, "q": [-0.32668337225914, 0.005058727692812681, -0.007231623865664005, 0.6265544295310974, -0.3219953179359436, -0.0016119845677167177, -0.3642403483390808, 0.016294283792376518, -0.014931963756680489, 0.5986019372940063, -0.2861185371875763, -0.011500638909637928, 0.006280798930674791, -0.07315383851528168, -0.030207635834813118, 0.13059210777282715, 0.14953915774822235, 0.024879250675439835, 1.2606805562973022, 0.14521285891532898, 0.042088598012924194, -0.04021906107664108, -0.814639687538147, -0.8495017886161804, 0.88315349817276, -0.01143295131623745, -0.6284527778625488, -0.40523460507392883, -0.4125809371471405]} +{"t": 17.2859, "q": [-0.32671746611595154, 0.005067249294370413, -0.007231623865664005, 0.6265373826026917, -0.32199522852897644, -0.001597467577084899, -0.3642488718032837, 0.016260195523500443, -0.014945355243980885, 0.5985934138298035, -0.2861226499080658, -0.011507842689752579, 0.006294190883636475, -0.07313117384910583, -0.030211616307497025, 0.1305561512708664, 0.149599090218544, 0.024867268279194832, 1.260704517364502, 0.14529675245285034, 0.042088598012924194, -0.04021906107664108, -0.8146277070045471, -0.8494418859481812, 0.8831415176391602, -0.01143295131623745, -0.6284527778625488, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.3027, "q": [-0.3266918957233429, 0.005041682627052069, -0.007218231912702322, 0.6265032887458801, -0.3219911456108093, -0.001604686607606709, -0.36426588892936707, 0.016277240589261055, -0.014918571338057518, 0.5986104607582092, -0.2861267924308777, -0.01151504646986723, 0.006361150648444891, -0.07313117384910583, -0.030211616307497025, 0.1305801123380661, 0.1495511531829834, 0.02490321919322014, 1.2607284784317017, 0.14522483944892883, 0.04207661375403404, -0.040231045335531235, -0.8145438432693481, -0.8493939638137817, 0.88315349817276, -0.01143295131623745, -0.6284767389297485, -0.40523460507392883, -0.4126048982143402]} +{"t": 17.3194, "q": [-0.32670894265174866, 0.005041682627052069, -0.007231623865664005, 0.6264777779579163, -0.3219953179359436, -0.0016119845677167177, -0.3642488718032837, 0.016268718987703323, -0.014958747662603855, 0.5986104607582092, -0.28613924980163574, -0.01150775421410799, 0.00638793408870697, -0.07312357425689697, -0.03020641952753067, 0.13061606884002686, 0.14956313371658325, 0.02490321919322014, 1.2607405185699463, 0.1452607959508896, 0.04207661375403404, -0.040231045335531235, -0.8144838809967041, -0.849310040473938, 0.8831774592399597, -0.01143295131623745, -0.6284887194633484, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.3361, "q": [-0.3267004191875458, 0.005041682627052069, -0.007231623865664005, 0.6264522075653076, -0.322003573179245, -0.0016120636137202382, -0.3642573654651642, 0.016260195523500443, -0.014918571338057518, 0.5986189246177673, -0.28613924980163574, -0.01150775421410799, 0.00642810994759202, -0.07312357425689697, -0.03020641952753067, 0.13061606884002686, 0.1495511531829834, 0.024867268279194832, 1.2607405185699463, 0.14529675245285034, 0.042100582271814346, -0.04021906107664108, -0.8144359588623047, -0.8492022156715393, 0.8832014203071594, -0.01143295131623745, -0.628524661064148, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.3528, "q": [-0.3267004191875458, 0.004999072756618261, -0.007231623865664005, 0.6264351606369019, -0.3219994008541107, -0.0016047655371949077, -0.3642573654651642, 0.016277240589261055, -0.014891788363456726, 0.5986019372940063, -0.28613510727882385, -0.01150055043399334, 0.00642810994759202, -0.07315383851528168, -0.030207635834813118, 0.1306280493736267, 0.14953915774822235, 0.02491520345211029, 1.2607405185699463, 0.1452607959508896, 0.04207661375403404, -0.04021906107664108, -0.8143520951271057, -0.8490464091300964, 0.883213460445404, -0.011420967057347298, -0.6285006999969482, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.3696, "q": [-0.32670894265174866, 0.004999072756618261, -0.0072584073059260845, 0.6264351606369019, -0.3219911456108093, -0.001604686607606709, -0.3642573654651642, 0.016260195523500443, -0.014878395944833755, 0.5986019372940063, -0.28613510727882385, -0.01150055043399334, 0.00642810994759202, -0.0731387659907341, -0.03021680749952793, 0.13061606884002686, 0.149599090218544, 0.02497512474656105, 1.2607405185699463, 0.1453326940536499, 0.042088598012924194, -0.04021906107664108, -0.8143760561943054, -0.8489265441894531, 0.8832374215126038, -0.011444934643805027, -0.628524661064148, -0.40523460507392883, -0.41259291768074036]} +{"t": 17.3863, "q": [-0.32670894265174866, 0.004964983556419611, -0.007218231912702322, 0.6264436841011047, -0.3219911456108093, -0.001604686607606709, -0.3642573654651642, 0.01625167392194271, -0.014905179850757122, 0.5986189246177673, -0.28613924980163574, -0.01150775421410799, 0.006414717994630337, -0.07312357425689697, -0.03020641952753067, 0.13061606884002686, 0.14953915774822235, 0.02491520345211029, 1.2607284784317017, 0.1453326940536499, 0.04207661375403404, -0.04021906107664108, -0.814328134059906, -0.8488906025886536, 0.8832494020462036, -0.01143295131623745, -0.6285006999969482, -0.40523460507392883, -0.41259291768074036]} +{"t": 17.4031, "q": [-0.3267345130443573, 0.004956461954861879, -0.007231623865664005, 0.6264351606369019, -0.32199522852897644, -0.001597467577084899, -0.36426588892936707, 0.01625167392194271, -0.014878395944833755, 0.5985848903656006, -0.2861558496952057, -0.01150768343359232, 0.006414717994630337, -0.07313863933086395, -0.030197247862815857, 0.13056813180446625, 0.14945527911186218, 0.024891234934329987, 1.2607405185699463, 0.14532071352005005, 0.042088598012924194, -0.040231045335531235, -0.8143041133880615, -0.8489145636558533, 0.8832733631134033, -0.01143295131623745, -0.628524661064148, -0.40523460507392883, -0.41259291768074036]} +{"t": 17.4198, "q": [-0.3267345130443573, 0.004930895287543535, -0.007218231912702322, 0.6264181137084961, -0.32200348377227783, -0.0015975285787135363, -0.3642829358577728, 0.016234630718827248, -0.014905179850757122, 0.5985763669013977, -0.2861517369747162, -0.011486010625958443, 0.006414717994630337, -0.07313863933086395, -0.030197247862815857, 0.13056813180446625, 0.14953915774822235, 0.02490321919322014, 1.2607284784317017, 0.14532071352005005, 0.04207661375403404, -0.040231045335531235, -0.8143160939216614, -0.8489025831222534, 0.8832853436470032, -0.011408982798457146, -0.6285126805305481, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.4366, "q": [-0.32671746611595154, 0.004905329551547766, -0.007218231912702322, 0.6264181137084961, -0.32200348377227783, -0.0015975285787135363, -0.36427441239356995, 0.01625167392194271, -0.01486500445753336, 0.5985763669013977, -0.28614339232444763, -0.011514975689351559, 0.006441501900553703, -0.07312357425689697, -0.03020641952753067, 0.1305321753025055, 0.1495511531829834, 0.02490321919322014, 1.260704517364502, 0.14534468948841095, 0.04207661375403404, -0.04021906107664108, -0.8143640756607056, -0.8488786220550537, 0.8832853436470032, -0.011396998539566994, -0.6285366415977478, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.4535, "q": [-0.3267345130443573, 0.004879762884229422, -0.007218231912702322, 0.6264181137084961, -0.32199522852897644, -0.001597467577084899, -0.36427441239356995, 0.01625167392194271, -0.014905179850757122, 0.5986104607582092, -0.28614339232444763, -0.011514975689351559, 0.006441501900553703, -0.07314623892307281, -0.030202442780137062, 0.1305561512708664, 0.14953915774822235, 0.024879250675439835, 1.2606686353683472, 0.14532071352005005, 0.042088598012924194, -0.040231045335531235, -0.8143640756607056, -0.8488906025886536, 0.8832733631134033, -0.01137303002178669, -0.628524661064148, -0.40521061420440674, -0.4126048982143402]} +{"t": 17.4702, "q": [-0.3267259895801544, 0.004845674615353346, -0.007231623865664005, 0.6263754963874817, -0.32200348377227783, -0.0015975285787135363, -0.36426588892936707, 0.016260195523500443, -0.014931963756680489, 0.5985848903656006, -0.28613924980163574, -0.01150775421410799, 0.00646828580647707, -0.07314623892307281, -0.030202442780137062, 0.13056813180446625, 0.14958709478378296, 0.02490321919322014, 1.2607165575027466, 0.14534468948841095, 0.042088598012924194, -0.04021906107664108, -0.8143401145935059, -0.8488786220550537, 0.8832853436470032, -0.011385014280676842, -0.6285126805305481, -0.40521061420440674, -0.4126048982143402]} +{"t": 17.487, "q": [-0.3267430365085602, 0.0048541962169110775, -0.007204839959740639, 0.6263754963874817, -0.32199522852897644, -0.001597467577084899, -0.3642914593219757, 0.016260195523500443, -0.014931963756680489, 0.5985763669013977, -0.2861558794975281, -0.01147876214236021, 0.006521853152662516, -0.07313863933086395, -0.030197247862815857, 0.130604088306427, 0.14943130314350128, 0.024891234934329987, 1.260704517364502, 0.14532071352005005, 0.042088598012924194, -0.04024302959442139, -0.814328134059906, -0.8488306999206543, 0.8832853436470032, -0.01137303002178669, -0.6285366415977478, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.5037, "q": [-0.32676008343696594, 0.004845674615353346, -0.007231623865664005, 0.6263669729232788, -0.32200348377227783, -0.0015975285787135363, -0.3642914593219757, 0.01624315232038498, -0.014918571338057518, 0.5985848903656006, -0.2861517071723938, -0.011500479653477669, 0.006548637058585882, -0.07314623892307281, -0.030202442780137062, 0.130604088306427, 0.14956313371658325, 0.02490321919322014, 1.2607405185699463, 0.1452847570180893, 0.042088598012924194, -0.04024302959442139, -0.8143401145935059, -0.8487947583198547, 0.8832853436470032, -0.011361045762896538, -0.6285366415977478, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.5204, "q": [-0.3267430365085602, 0.004871240351349115, -0.007231623865664005, 0.6263669729232788, -0.32199931144714355, -0.0015902306186035275, -0.3642914593219757, 0.016294283792376518, -0.014918571338057518, 0.5985848903656006, -0.2861475646495819, -0.0114932581782341, 0.006575420964509249, -0.07313863933086395, -0.030197247862815857, 0.13061606884002686, 0.1495271772146225, 0.024891234934329987, 1.2607165575027466, 0.1453087329864502, 0.042088598012924194, -0.04024302959442139, -0.8143520951271057, -0.8487228155136108, 0.8832613825798035, -0.01137303002178669, -0.6285366415977478, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.5372, "q": [-0.3267430365085602, 0.004845674615353346, -0.007218231912702322, 0.6263584494590759, -0.32200348377227783, -0.0015975285787135363, -0.3642914593219757, 0.01624315232038498, -0.014931963756680489, 0.5985848903656006, -0.2861558496952057, -0.01150768343359232, 0.006575420964509249, -0.07313863933086395, -0.030197247862815857, 0.13056813180446625, 0.14956313371658325, 0.02490321919322014, 1.2607165575027466, 0.14536865055561066, 0.04207661375403404, -0.040231045335531235, -0.8143760561943054, -0.8486149907112122, 0.8832733631134033, -0.011361045762896538, -0.6285486221313477, -0.40521061420440674, -0.4126048982143402]} +{"t": 17.5541, "q": [-0.32676008343696594, 0.00483715208247304, -0.007245015352964401, 0.626349925994873, -0.32199522852897644, -0.001597467577084899, -0.3642914593219757, 0.016285762190818787, -0.014905179850757122, 0.5985593199729919, -0.2861517071723938, -0.011500479653477669, 0.006642380263656378, -0.07315371185541153, -0.030188074335455894, 0.13054417073726654, 0.1495511531829834, 0.0249631404876709, 1.2607165575027466, 0.14532071352005005, 0.042088598012924194, -0.040231045335531235, -0.8143880367279053, -0.8485550284385681, 0.8832613825798035, -0.011349061504006386, -0.6285366415977478, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.5708, "q": [-0.3267430365085602, 0.00483715208247304, -0.007231623865664005, 0.6263328790664673, -0.32199931144714355, -0.0015902306186035275, -0.3642914593219757, 0.01625167392194271, -0.014918571338057518, 0.5985763669013977, -0.28614342212677, -0.01148605439811945, 0.0066289883106946945, -0.0731537714600563, -0.030197856947779655, 0.1305561512708664, 0.14946725964546204, 0.02490321919322014, 1.2606925964355469, 0.14529675245285034, 0.042088598012924194, -0.04024302959442139, -0.814328134059906, -0.8484472036361694, 0.8833093047142029, -0.011337077245116234, -0.6285366415977478, -0.40521061420440674, -0.4125809371471405]} +{"t": 17.5875, "q": [-0.3267345130443573, 0.004820107948035002, -0.007231623865664005, 0.6263328790664673, -0.32199522852897644, -0.001597467577084899, -0.3642914593219757, 0.01624315232038498, -0.014958747662603855, 0.5985848903656006, -0.2861475646495819, -0.0114932581782341, 0.0066289883106946945, -0.07313863933086395, -0.030197247862815857, 0.13049623370170593, 0.14949122071266174, 0.02490321919322014, 1.260704517364502, 0.14527277648448944, 0.04207661375403404, -0.04025501385331154, -0.8142921328544617, -0.8482434749603271, 0.8833572268486023, -0.011325092986226082, -0.6285606026649475, -0.4052225947380066, -0.41259291768074036]} diff --git a/Camera_Recorder/DataG1/change_battery.jsonl b/Camera_Recorder/DataG1/change_battery.jsonl new file mode 100644 index 0000000..5f95c92 --- /dev/null +++ b/Camera_Recorder/DataG1/change_battery.jsonl @@ -0,0 +1,1791 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.361163854598999, -0.013280864804983139, 0.00965555664151907, 0.6272277235984802, -0.295504629611969, 0.023743262514472008, -0.3479204773902893, 0.004218447022140026, -0.005919218063354492, 0.6231881976127625, -0.329052597284317, 0.002989309374243021, 0.0027989062946289778, 0.008115666918456554, -0.03323470801115036, 0.28880783915519714, 0.21666280925273895, -0.005201153922826052, 0.9821192622184753, 0.08121709525585175, 0.06204233318567276, 0.017796574160456657, 0.29257088899612427, -0.22161228954792023, 0.029325399547815323, 0.9865414500236511, -0.1188715323805809, 0.07364306598901749, -0.021104220300912857]} +{"t": 0.0167, "q": [-0.361163854598999, -0.013272343203425407, 0.009628772735595703, 0.6271936297416687, -0.2955128848552704, 0.023728763684630394, -0.3478863835334778, 0.004235491156578064, -0.005946001503616571, 0.623145580291748, -0.32904013991355896, 0.0029674179386347532, 0.0034149333368986845, 0.008814769797027111, -0.03331649303436279, 0.28777721524238586, 0.2144816815853119, -0.0049255164340138435, 0.9834015369415283, 0.0809534415602684, 0.06252170354127884, 0.017844511196017265, 0.29177993535995483, -0.22038990259170532, 0.029828736558556557, 0.9882311820983887, -0.11871573328971863, 0.07402656227350235, -0.021319936960935593]} +{"t": 0.0336, "q": [-0.3612064719200134, -0.01328938640654087, 0.009601988829672337, 0.6272192001342773, -0.2955128848552704, 0.023728763684630394, -0.3479204773902893, 0.004218447022140026, -0.005919218063354492, 0.6231541037559509, -0.3290402293205261, 0.0029819400515407324, 0.0037899063900113106, 0.008981923572719097, -0.033307503908872604, 0.2867705225944519, 0.2129596769809723, -0.004877579864114523, 0.9842524528503418, 0.08068978786468506, 0.06309694796800613, 0.01794038526713848, 0.29113277792930603, -0.2190956026315689, 0.030296120792627335, 0.9898490905761719, -0.11863184720277786, 0.07423029094934464, -0.021523669362068176]} +{"t": 0.0505, "q": [-0.3612149953842163, -0.013306431472301483, 0.009628772735595703, 0.6272277235984802, -0.2955087125301361, 0.02372155152261257, -0.3479204773902893, 0.004209924954921007, -0.005919218063354492, 0.6231626272201538, -0.3291149139404297, 0.0030988024082034826, 0.0038434739690274, 0.009133849292993546, -0.03325914219021797, 0.28606346249580383, 0.21052688360214233, -0.004985437728464603, 0.9844681620597839, 0.08046209067106247, 0.06322877109050751, 0.018012290820479393, 0.29058149456977844, -0.21713019907474518, 0.030799459666013718, 0.99074786901474, -0.11861985921859741, 0.07438608258962631, -0.021571604534983635]} +{"t": 0.0673, "q": [-0.36118942499160767, -0.01328938640654087, 0.00965555664151907, 0.6272361874580383, -0.2955087125301361, 0.02372155152261257, -0.3479204773902893, 0.004201402887701988, -0.005879042204469442, 0.6231541037559509, -0.3291066288948059, 0.0030842081177979708, 0.0038970415480434895, 0.009187047369778156, -0.03327416628599167, 0.28558409214019775, 0.20747090876102448, -0.005141232628375292, 0.9845041036605835, 0.08036621659994125, 0.06327670812606812, 0.017976338043808937, 0.2900422215461731, -0.214457705616951, 0.03133874759078026, 0.9914190173149109, -0.11858391016721725, 0.07443401962518692, -0.02154763787984848]} +{"t": 0.084, "q": [-0.3611809015274048, -0.013272343203425407, 0.009628772735595703, 0.6272277235984802, -0.29553356766700745, 0.02369251847267151, -0.34793752431869507, 0.004192880820482969, -0.005852258298546076, 0.6231626272201538, -0.32919368147850037, 0.003208422102034092, 0.003977392800152302, 0.00928585696965456, -0.03331892192363739, 0.2852725088596344, 0.20418722927570343, -0.005273059010505676, 0.984611988067627, 0.08028232306241989, 0.06334861367940903, 0.017976338043808937, 0.28943103551864624, -0.21194101870059967, 0.03163835406303406, 0.9919103384017944, -0.11851200461387634, 0.07450592517852783, -0.02154763787984848]} +{"t": 0.1009, "q": [-0.36119794845581055, -0.013255298137664795, 0.009628772735595703, 0.6272106766700745, -0.2955377399921417, 0.02369973249733448, -0.3479290008544922, 0.004201402887701988, -0.005852258298546076, 0.6231626272201538, -0.32929757237434387, 0.003390904515981674, 0.003937217406928539, 0.009346656501293182, -0.03333890065550804, 0.28504478931427, 0.2012990266084671, -0.005309011787176132, 0.9847317934036255, 0.08022240549325943, 0.06336060166358948, 0.01798832230269909, 0.28890371322631836, -0.20995163917541504, 0.03189002349972725, 0.9919822812080383, -0.11845207959413528, 0.07449394464492798, -0.021559620276093483]} +{"t": 0.1177, "q": [-0.36119794845581055, -0.013272343203425407, 0.009682340547442436, 0.6272277235984802, -0.2955377399921417, 0.02369973249733448, -0.3479290008544922, 0.00418435875326395, -0.0058388663455843925, 0.6231541037559509, -0.3292850852012634, 0.0033690130803734064, 0.003964001312851906, 0.009331475012004375, -0.033358484506607056, 0.284817099571228, 0.1983509063720703, -0.005309011787176132, 0.984767735004425, 0.08012653142213821, 0.06337258219718933, 0.01800030656158924, 0.2882445752620697, -0.20838171243667603, 0.03196192905306816, 0.9921620488166809, -0.11840414255857468, 0.07450592517852783, -0.02154763787984848]} +{"t": 0.1344, "q": [-0.3612235188484192, -0.013280864804983139, 0.00966894906014204, 0.6272192001342773, -0.2955377399921417, 0.02369973249733448, -0.34795457124710083, 0.004209924954921007, -0.00579869095236063, 0.6231711506843567, -0.3292892575263977, 0.0033763102255761623, 0.003964001312851906, 0.009346656501293182, -0.03333890065550804, 0.2847212255001068, 0.19579827785491943, -0.005332980304956436, 0.9847557544708252, 0.0800546258687973, 0.06338457018136978, 0.018012290820479393, 0.2878131568431854, -0.20723122358322144, 0.031985897570848465, 0.9922099709510803, -0.11842811107635498, 0.07452989369630814, -0.021535653620958328]} +{"t": 0.1511, "q": [-0.3612235188484192, -0.013272343203425407, 0.00966894906014204, 0.6272106766700745, -0.295541912317276, 0.023706963285803795, -0.3479630947113037, 0.004209924954921007, -0.005825474392622709, 0.6231796741485596, -0.3291853070259094, 0.0031793059315532446, 0.003977392800152302, 0.009316278621554375, -0.03335840627551079, 0.2845294773578644, 0.1938088834285736, -0.005452822428196669, 0.9847557544708252, 0.0800066888332367, 0.06338457018136978, 0.017976338043808937, 0.28733378648757935, -0.20627248287200928, 0.03196192905306816, 0.9923418164253235, -0.11838017404079437, 0.07455386221408844, -0.021583588793873787]} +{"t": 0.1678, "q": [-0.36124905943870544, -0.013263821601867676, 0.00958859734237194, 0.6272192001342773, -0.2955459952354431, 0.023685215041041374, -0.3479716181755066, 0.004209924954921007, -0.005865650251507759, 0.6231626272201538, -0.3291895389556885, 0.003201124956831336, 0.004004176706075668, 0.009301074780523777, -0.03334849327802658, 0.2843976616859436, 0.1925385594367981, -0.005476790945976973, 0.9847797155380249, 0.07994676381349564, 0.06337258219718933, 0.017976338043808937, 0.2870701253414154, -0.20538565516471863, 0.03197391331195831, 0.9924017190933228, -0.11840414255857468, 0.07455386221408844, -0.021559620276093483]} +{"t": 0.1846, "q": [-0.36124053597450256, -0.013246776536107063, 0.009521638043224812, 0.6272021532058716, -0.29552945494651794, 0.023714231327176094, -0.34795457124710083, 0.00424401368945837, -0.005946001503616571, 0.6231626272201538, -0.32920607924461365, 0.0032158098183572292, 0.004004176706075668, 0.009301074780523777, -0.03334849327802658, 0.2842777967453003, 0.1920112520456314, -0.005476790945976973, 0.9847797155380249, 0.07992279529571533, 0.06338457018136978, 0.01800030656158924, 0.2868903577327728, -0.2046186625957489, 0.03196192905306816, 0.9924136996269226, -0.11841613054275513, 0.07456585019826889, -0.021559620276093483]} +{"t": 0.2013, "q": [-0.3612661063671112, -0.013238254934549332, 0.009535029530525208, 0.6272192001342773, -0.2955211102962494, 0.02369980327785015, -0.34795457124710083, 0.004278101958334446, -0.005959393456578255, 0.6231711506843567, -0.32919758558273315, 0.0031721533741801977, 0.003977392800152302, 0.009316271170973778, -0.03334857523441315, 0.28415796160697937, 0.19186744093894958, -0.005476790945976973, 0.9847797155380249, 0.07994676381349564, 0.06342051923274994, 0.018012290820479393, 0.2867944836616516, -0.203995481133461, 0.031985897570848465, 0.992461621761322, -0.11842811107635498, 0.07456585019826889, -0.021583588793873787]} +{"t": 0.218, "q": [-0.36124053597450256, -0.0132297333329916, 0.009521638043224812, 0.6271936297416687, -0.29552116990089417, 0.02371426671743393, -0.3479630947113037, 0.004278101958334446, -0.005946001503616571, 0.6231711506843567, -0.3291269540786743, 0.003048066282644868, 0.003964001312851906, 0.009323866106569767, -0.03334369882941246, 0.28413400053977966, 0.19187943637371063, -0.005440838169306517, 0.9847797155380249, 0.07992279529571533, 0.06339655071496964, 0.018012290820479393, 0.28666266798973083, -0.2034921497106552, 0.03199788182973862, 0.9924496412277222, -0.11839216202497482, 0.07460179924964905, -0.02159557305276394]} +{"t": 0.2349, "q": [-0.36118942499160767, -0.013246776536107063, 0.009535029530525208, 0.6271936297416687, -0.2955127954483032, 0.023685375228524208, -0.34795457124710083, 0.004286624025553465, -0.005932609550654888, 0.6231711506843567, -0.3291309177875519, 0.003026319434866309, 0.004004176706075668, 0.009331452660262585, -0.03332899138331413, 0.2840980291366577, 0.1919393539428711, -0.00535694882273674, 0.9848037362098694, 0.07992279529571533, 0.06340853869915009, 0.018012290820479393, 0.2865907549858093, -0.20313261449337006, 0.03197391331195831, 0.992461621761322, -0.11840414255857468, 0.07456585019826889, -0.021559620276093483]} +{"t": 0.2516, "q": [-0.3612149953842163, -0.013238254934549332, 0.009561813436448574, 0.6271936297416687, -0.29549628496170044, 0.023728836327791214, -0.34794604778289795, 0.004286624025553465, -0.005946001503616571, 0.6231796741485596, -0.32913506031036377, 0.003033616580069065, 0.003977392800152302, 0.00933905504643917, -0.03333394601941109, 0.2840980291366577, 0.1919633150100708, -0.00535694882273674, 0.9848157167434692, 0.07986287772655487, 0.06339655071496964, 0.018012290820479393, 0.2865787744522095, -0.2028449922800064, 0.03197391331195831, 0.992461621761322, -0.11839216202497482, 0.07455386221408844, -0.02160755731165409]} +{"t": 0.2683, "q": [-0.3612149953842163, -0.013246776536107063, 0.009601988829672337, 0.6272021532058716, -0.29549211263656616, 0.023721622303128242, -0.34795457124710083, 0.004286624025553465, -0.005919218063354492, 0.6231796741485596, -0.32907313108444214, 0.002982229460030794, 0.0039506093598902225, 0.009384622797369957, -0.033304691314697266, 0.284074068069458, 0.1919393539428711, -0.005344964563846588, 0.9848157167434692, 0.07992279529571533, 0.06343250721693039, 0.018012290820479393, 0.2865907549858093, -0.20266523957252502, 0.03196192905306816, 0.992461621761322, -0.11838017404079437, 0.07456585019826889, -0.02159557305276394]} +{"t": 0.2852, "q": [-0.36123204231262207, -0.013272343203425407, 0.009615381248295307, 0.6272021532058716, -0.29548391699790955, 0.023765064775943756, -0.34793752431869507, 0.004286624025553465, -0.005932609550654888, 0.6231711506843567, -0.32906481623649597, 0.0029676170088350773, 0.003964001312851906, 0.00938461534678936, -0.033294860273599625, 0.2840980291366577, 0.1919393539428711, -0.005368933081626892, 0.9848636388778687, 0.07992279529571533, 0.06342051923274994, 0.018012290820479393, 0.2865907549858093, -0.2024974524974823, 0.03196192905306816, 0.992461621761322, -0.11833223700523376, 0.07456585019826889, -0.021571604534983635]} +{"t": 0.302, "q": [-0.36119794845581055, -0.013272343203425407, 0.00958859734237194, 0.6272192001342773, -0.29549217224121094, 0.023750565946102142, -0.3479290008544922, 0.004278101958334446, -0.005959393456578255, 0.6231881976127625, -0.32903996109962463, 0.002938356250524521, 0.003977392800152302, 0.009354222565889359, -0.03329470008611679, 0.28411003947257996, 0.1919393539428711, -0.005368933081626892, 0.9848875999450684, 0.07989882677793503, 0.06343250721693039, 0.018012290820479393, 0.2866027355194092, -0.20238959789276123, 0.03196192905306816, 0.9924736022949219, -0.11834422498941422, 0.0746137872338295, -0.021619541570544243]} +{"t": 0.3187, "q": [-0.36118942499160767, -0.013280864804983139, 0.00958859734237194, 0.6272277235984802, -0.29548391699790955, 0.023765064775943756, -0.3479290008544922, 0.004278101958334446, -0.005959393456578255, 0.6231881976127625, -0.3290275037288666, 0.002916446654126048, 0.004030960611999035, 0.009354230016469955, -0.03330453112721443, 0.2840980291366577, 0.1919393539428711, -0.005368933081626892, 0.9848875999450684, 0.07989882677793503, 0.06343250721693039, 0.018024275079369545, 0.2866027355194092, -0.20235364139080048, 0.03196192905306816, 0.9924736022949219, -0.11834422498941422, 0.07460179924964905, -0.021583588793873787]} +{"t": 0.3354, "q": [-0.36118942499160767, -0.01328938640654087, 0.009628772735595703, 0.6272277235984802, -0.29548388719558716, 0.023750601336359978, -0.3479204773902893, 0.004269579891115427, -0.005932609550654888, 0.6231796741485596, -0.32901114225387573, 0.0029308421071618795, 0.003964001312851906, 0.009369411505758762, -0.03328494727611542, 0.284074068069458, 0.1919393539428711, -0.005368933081626892, 0.9848995804786682, 0.07988684624433517, 0.0634564757347107, 0.018024275079369545, 0.2865667939186096, -0.20235364139080048, 0.03194994479417801, 0.9924736022949219, -0.11838017404079437, 0.0746137872338295, -0.02160755731165409]} +{"t": 0.3522, "q": [-0.3611809015274048, -0.013306431472301483, 0.009682340547442436, 0.6272447109222412, -0.29548799991607666, 0.02374335192143917, -0.34789490699768066, 0.004286624025553465, -0.005919218063354492, 0.6231881976127625, -0.3290030360221863, 0.0029452915769070387, 0.004004176706075668, 0.009392202831804752, -0.0332801528275013, 0.284074068069458, 0.1919393539428711, -0.00535694882273674, 0.9849115610122681, 0.07992279529571533, 0.0634564757347107, 0.018036259338259697, 0.2865428328514099, -0.20232968032360077, 0.03194994479417801, 0.992461621761322, -0.11838017404079437, 0.0745898187160492, -0.021619541570544243]} +{"t": 0.3689, "q": [-0.361163854598999, -0.013323476538062096, 0.009762692265212536, 0.627261757850647, -0.29548388719558716, 0.023750601336359978, -0.34784379601478577, 0.004269579891115427, -0.005919218063354492, 0.6231881976127625, -0.32899895310401917, 0.0029525163117796183, 0.004004176706075668, 0.00939221028238535, -0.03328998386859894, 0.2840980291366577, 0.1919633150100708, -0.005368933081626892, 0.9849115610122681, 0.07989882677793503, 0.06343250721693039, 0.018024275079369545, 0.28653085231781006, -0.2022697478532791, 0.03196192905306816, 0.992461621761322, -0.11839216202497482, 0.07460179924964905, -0.021619541570544243]} +{"t": 0.3856, "q": [-0.3611382842063904, -0.013323476538062096, 0.009695732034742832, 0.6272702813148499, -0.2954963445663452, 0.023757779970765114, -0.34782674908638, 0.004286624025553465, -0.005905826110392809, 0.6231967210769653, -0.3289908468723297, 0.002966966014355421, 0.004030960611999035, 0.00936941895633936, -0.03329478204250336, 0.2840980291366577, 0.19195133447647095, -0.005368933081626892, 0.9849115610122681, 0.07988684624433517, 0.0634564757347107, 0.01804824359714985, 0.2865188717842102, -0.2022218108177185, 0.03196192905306816, 0.9924736022949219, -0.11834422498941422, 0.07460179924964905, -0.02159557305276394]} +{"t": 0.4023, "q": [-0.36114680767059326, -0.013314953073859215, 0.009722515940666199, 0.6272702813148499, -0.29548805952072144, 0.02375781536102295, -0.34782674908638, 0.004252535756677389, -0.005879042204469442, 0.6231967210769653, -0.3289703130722046, 0.002974064089357853, 0.004044352564960718, 0.009399804286658764, -0.03328510746359825, 0.28411003947257996, 0.1919393539428711, -0.005368933081626892, 0.9848995804786682, 0.07991081476211548, 0.0634564757347107, 0.018024275079369545, 0.2865428328514099, -0.2021978497505188, 0.03193796053528786, 0.992461621761322, -0.11835620552301407, 0.0746137872338295, -0.021583588793873787]} +{"t": 0.4192, "q": [-0.3611212372779846, -0.013323476538062096, 0.009749299846589565, 0.6272958517074585, -0.29548394680023193, 0.023779526352882385, -0.3477926552295685, 0.004252535756677389, -0.005865650251507759, 0.6232052445411682, -0.32896220684051514, 0.0029885137919336557, 0.004004176706075668, 0.00937702041119337, -0.03329973667860031, 0.2841220200061798, 0.1919393539428711, -0.005368933081626892, 0.9849115610122681, 0.07989882677793503, 0.0634564757347107, 0.018024275079369545, 0.28650686144828796, -0.20218586921691895, 0.03193796053528786, 0.992461621761322, -0.11835620552301407, 0.07462576776742935, -0.02159557305276394]} +{"t": 0.4359, "q": [-0.3611382842063904, -0.013331998139619827, 0.009749299846589565, 0.6272788047790527, -0.29548388719558716, 0.023750601336359978, -0.3477926552295685, 0.004261057823896408, -0.005892434157431126, 0.6231881976127625, -0.32897892594337463, 0.00303224241361022, 0.003977392800152302, 0.00938461534678936, -0.033294860273599625, 0.28411003947257996, 0.1919393539428711, -0.005368933081626892, 0.9849355220794678, 0.07989882677793503, 0.0634564757347107, 0.018024275079369545, 0.2865188717842102, -0.20218586921691895, 0.03194994479417801, 0.9924855828285217, -0.11834422498941422, 0.0746137872338295, -0.021631525829434395]} +{"t": 0.4527, "q": [-0.36110419034957886, -0.013306431472301483, 0.009722515940666199, 0.6272958517074585, -0.29547974467277527, 0.023757850751280785, -0.3477926552295685, 0.004252535756677389, -0.005905826110392809, 0.6231967210769653, -0.3289872109889984, 0.003046836471185088, 0.003964001312851906, 0.00940742064267397, -0.03330972418189049, 0.2841220200061798, 0.1919393539428711, -0.005368933081626892, 0.9849235415458679, 0.07992279529571533, 0.0634564757347107, 0.018036259338259697, 0.28650686144828796, -0.20216189324855804, 0.031985897570848465, 0.9924736022949219, -0.11834422498941422, 0.07462576776742935, -0.02160755731165409]} +{"t": 0.4696, "q": [-0.3610871434211731, -0.013340519741177559, 0.009749299846589565, 0.6272958517074585, -0.2954879403114319, 0.02371440827846527, -0.3477756083011627, 0.004252535756677389, -0.005892434157431126, 0.6232052445411682, -0.3289749324321747, 0.003053989028558135, 0.003990784753113985, 0.009415008127689362, -0.03329501673579216, 0.2840980291366577, 0.19195133447647095, -0.005368933081626892, 0.9849355220794678, 0.07991081476211548, 0.0634564757347107, 0.018024275079369545, 0.2865188717842102, -0.20213793218135834, 0.03196192905306816, 0.9924736022949219, -0.11836819350719452, 0.07462576776742935, -0.021631525829434395]} +{"t": 0.4863, "q": [-0.36111271381378174, -0.013323476538062096, 0.009722515940666199, 0.627261757850647, -0.2954838275909424, 0.0237361378967762, -0.3477926552295685, 0.00424401368945837, -0.005879042204469442, 0.6232052445411682, -0.32899966835975647, 0.003068727906793356, 0.004030960611999035, 0.009399826638400555, -0.033314600586891174, 0.28411003947257996, 0.1919393539428711, -0.005368933081626892, 0.9849355220794678, 0.07989882677793503, 0.06346845626831055, 0.018012290820479393, 0.2864948809146881, -0.2021259367465973, 0.03193796053528786, 0.992461621761322, -0.11836819350719452, 0.0746137872338295, -0.021619541570544243]} +{"t": 0.503, "q": [-0.3611297607421875, -0.013306431472301483, 0.00973590835928917, 0.6272702813148499, -0.2954838275909424, 0.0237361378967762, -0.3477841317653656, 0.00424401368945837, -0.005892434157431126, 0.6232052445411682, -0.32899966835975647, 0.003068727906793356, 0.004004176706075668, 0.009392231702804565, -0.03331947699189186, 0.28411003947257996, 0.19195133447647095, -0.00535694882273674, 0.9849355220794678, 0.07991081476211548, 0.06346845626831055, 0.018024275079369545, 0.28653085231781006, -0.2021259367465973, 0.03197391331195831, 0.9924736022949219, -0.11833223700523376, 0.07462576776742935, -0.021619541570544243]} +{"t": 0.5197, "q": [-0.36111271381378174, -0.013323476538062096, 0.009722515940666199, 0.6272702813148499, -0.2954838275909424, 0.0237361378967762, -0.3477926552295685, 0.004252535756677389, -0.005879042204469442, 0.6231967210769653, -0.3289954364299774, 0.0030469088815152645, 0.003977392800152302, 0.009407428093254566, -0.03331955522298813, 0.2840980291366577, 0.1919393539428711, -0.005368933081626892, 0.9849475026130676, 0.07989882677793503, 0.063480444252491, 0.018012290820479393, 0.28653085231781006, -0.20210197567939758, 0.03196192905306816, 0.9924855828285217, -0.11836819350719452, 0.07462576776742935, -0.021631525829434395]} +{"t": 0.5365, "q": [-0.36110419034957886, -0.013323476538062096, 0.009695732034742832, 0.627261757850647, -0.29549211263656616, 0.023721622303128242, -0.3477926552295685, 0.004261057823896408, -0.005879042204469442, 0.6232308149337769, -0.32900357246398926, 0.0030324591789394617, 0.004004176706075668, 0.009415023028850555, -0.03331467881798744, 0.284074068069458, 0.1919393539428711, -0.005368933081626892, 0.9849594831466675, 0.07989882677793503, 0.063480444252491, 0.018036259338259697, 0.28650686144828796, -0.20210197567939758, 0.03194994479417801, 0.9925335049629211, -0.11834422498941422, 0.0746137872338295, -0.021619541570544243]} +{"t": 0.5532, "q": [-0.3611212372779846, -0.013306431472301483, 0.009695732034742832, 0.6272532343864441, -0.2954796552658081, 0.023728923872113228, -0.34780117869377136, 0.004269579891115427, -0.005892434157431126, 0.6232137680053711, -0.3290160298347473, 0.0030543506145477295, 0.004030960611999035, 0.009415023028850555, -0.03331467881798744, 0.28408604860305786, 0.19195133447647095, -0.005368933081626892, 0.9849475026130676, 0.07988684624433517, 0.063480444252491, 0.018024275079369545, 0.28653085231781006, -0.20210197567939758, 0.03197391331195831, 0.9925335049629211, -0.11833223700523376, 0.07462576776742935, -0.02160755731165409]} +{"t": 0.5699, "q": [-0.36110419034957886, -0.013297909870743752, 0.009682340547442436, 0.6272361874580383, -0.29549211263656616, 0.023721622303128242, -0.3478182256221771, 0.004269579891115427, -0.005905826110392809, 0.6232052445411682, -0.32900771498680115, 0.0030397563241422176, 0.004004176706075668, 0.00940742064267397, -0.03330972418189049, 0.2840980291366577, 0.1919393539428711, -0.00535694882273674, 0.9849594831466675, 0.07989882677793503, 0.06344448775053024, 0.018036259338259697, 0.2865188717842102, -0.20210197567939758, 0.03196192905306816, 0.9925335049629211, -0.11834422498941422, 0.0746137872338295, -0.02160755731165409]} +{"t": 0.5867, "q": [-0.36111271381378174, -0.01328938640654087, 0.00965555664151907, 0.6272447109222412, -0.29549214243888855, 0.023736102506518364, -0.34782674908638, 0.004261057823896408, -0.005905826110392809, 0.623222291469574, -0.32901185750961304, 0.0030470534693449736, 0.004004176706075668, 0.00940742064267397, -0.03330972418189049, 0.2840980291366577, 0.1919393539428711, -0.00535694882273674, 0.9849714636802673, 0.07987485826015472, 0.063480444252491, 0.018036259338259697, 0.28650686144828796, -0.20210197567939758, 0.03196192905306816, 0.9925215244293213, -0.11839216202497482, 0.0746377557516098, -0.021631525829434395]} +{"t": 0.6034, "q": [-0.3611297607421875, -0.01328938640654087, 0.00966894906014204, 0.6272277235984802, -0.2954879701137543, 0.023728888481855392, -0.3478352725505829, 0.004269579891115427, -0.005892434157431126, 0.6232052445411682, -0.32900771498680115, 0.0030397563241422176, 0.004004176706075668, 0.00940742064267397, -0.03330972418189049, 0.284074068069458, 0.19195133447647095, -0.005368933081626892, 0.9849475026130676, 0.07989882677793503, 0.06346845626831055, 0.018036259338259697, 0.2865188717842102, -0.20208999514579773, 0.03196192905306816, 0.9925455451011658, -0.11835620552301407, 0.07460179924964905, -0.021619541570544243]} +{"t": 0.6201, "q": [-0.3611382842063904, -0.01328938640654087, 0.009695732034742832, 0.6272277235984802, -0.29549211263656616, 0.023721622303128242, -0.3478352725505829, 0.004269579891115427, -0.005892434157431126, 0.6232052445411682, -0.32901594042778015, 0.003039828734472394, 0.004030960611999035, 0.009392231702804565, -0.03331947699189186, 0.28406208753585815, 0.1919393539428711, -0.00535694882273674, 0.9849834442138672, 0.07989882677793503, 0.06346845626831055, 0.01804824359714985, 0.28650686144828796, -0.20208999514579773, 0.03194994479417801, 0.9925215244293213, -0.11834422498941422, 0.0746377557516098, -0.021619541570544243]} +{"t": 0.6368, "q": [-0.36114680767059326, -0.01328938640654087, 0.009695732034742832, 0.6271936297416687, -0.2955004572868347, 0.023736048489809036, -0.34784379601478577, 0.00424401368945837, -0.005892434157431126, 0.6232052445411682, -0.32902008295059204, 0.00304712587967515, 0.003977392800152302, 0.009399826638400555, -0.033314600586891174, 0.284074068069458, 0.1919393539428711, -0.00535694882273674, 0.9850074648857117, 0.07988684624433517, 0.0634564757347107, 0.018024275079369545, 0.28648290038108826, -0.20208999514579773, 0.03193796053528786, 0.9925335049629211, -0.11833223700523376, 0.07467370480298996, -0.021631525829434395]} +{"t": 0.6538, "q": [-0.36111271381378174, -0.013297909870743752, 0.009695732034742832, 0.6272106766700745, -0.29549628496170044, 0.023728836327791214, -0.34785231947898865, 0.004278101958334446, -0.005892434157431126, 0.6232052445411682, -0.3290034830570221, 0.003017937298864126, 0.004004176706075668, 0.00940742064267397, -0.03330972418189049, 0.28406208753585815, 0.1919393539428711, -0.00535694882273674, 0.9850074648857117, 0.07989882677793503, 0.063480444252491, 0.018036259338259697, 0.2864709198474884, -0.20208999514579773, 0.03194994479417801, 0.9925215244293213, -0.11830826848745346, 0.0746377557516098, -0.021619541570544243]} +{"t": 0.6705, "q": [-0.36114680767059326, -0.01328938640654087, 0.00966894906014204, 0.6272106766700745, -0.29549628496170044, 0.023728836327791214, -0.347869336605072, 0.004269579891115427, -0.005865650251507759, 0.6231967210769653, -0.32901594042778015, 0.003039828734472394, 0.003977392800152302, 0.009422595612704754, -0.03328030928969383, 0.28406208753585815, 0.1919393539428711, -0.005368933081626892, 0.9850314259529114, 0.07991081476211548, 0.06346845626831055, 0.018036259338259697, 0.28645893931388855, -0.20207799971103668, 0.03193796053528786, 0.9925335049629211, -0.11832025647163391, 0.07467370480298996, -0.021631525829434395]} +{"t": 0.6872, "q": [-0.3611382842063904, -0.01328938640654087, 0.00966894906014204, 0.6271936297416687, -0.29549214243888855, 0.023736102506518364, -0.347869336605072, 0.004269579891115427, -0.005879042204469442, 0.6232052445411682, -0.329024076461792, 0.00302536110393703, 0.004030960611999035, 0.00940740667283535, -0.033290062099695206, 0.28403812646865845, 0.1919393539428711, -0.00535694882273674, 0.9850553870201111, 0.07989882677793503, 0.0634564757347107, 0.018024275079369545, 0.28643497824668884, -0.20208999514579773, 0.03197391331195831, 0.9925335049629211, -0.11830826848745346, 0.07468569278717041, -0.021631525829434395]} +{"t": 0.7041, "q": [-0.3611297607421875, -0.013272343203425407, 0.009682340547442436, 0.6271936297416687, -0.29549628496170044, 0.023728836327791214, -0.347869336605072, 0.004269579891115427, -0.005865650251507759, 0.6232137680053711, -0.3290199041366577, 0.003018063958734274, 0.003990784753113985, 0.009415008127689362, -0.03329501673579216, 0.28403812646865845, 0.1919393539428711, -0.005368933081626892, 0.9850553870201111, 0.07991081476211548, 0.06346845626831055, 0.01806022785604, 0.28641098737716675, -0.20207799971103668, 0.03193796053528786, 0.9925335049629211, -0.11830826848745346, 0.07469767332077026, -0.021631525829434395]} +{"t": 0.7208, "q": [-0.36115533113479614, -0.013272343203425407, 0.00965555664151907, 0.6272021532058716, -0.29549211263656616, 0.023721622303128242, -0.34786084294319153, 0.004269579891115427, -0.005865650251507759, 0.6231967210769653, -0.32902413606643677, 0.0030399009119719267, 0.004004176706075668, 0.009399819187819958, -0.03330476954579353, 0.28403812646865845, 0.1919393539428711, -0.00535694882273674, 0.9850913286209106, 0.07988684624433517, 0.0634564757347107, 0.01804824359714985, 0.28641098737716675, -0.20208999514579773, 0.03194994479417801, 0.9925335049629211, -0.11834422498941422, 0.07464973628520966, -0.021619541570544243]} +{"t": 0.7375, "q": [-0.36115533113479614, -0.013280864804983139, 0.00966894906014204, 0.6271765828132629, -0.2955004572868347, 0.023736048489809036, -0.347869336605072, 0.004269579891115427, -0.005865650251507759, 0.6232052445411682, -0.329024076461792, 0.00302536110393703, 0.004044352564960718, 0.009407414123415947, -0.03329989314079285, 0.2840261459350586, 0.1919633150100708, -0.00535694882273674, 0.9851152896881104, 0.07988684624433517, 0.06346845626831055, 0.01804824359714985, 0.28638702630996704, -0.20206601917743683, 0.03194994479417801, 0.9925335049629211, -0.11836819350719452, 0.07468569278717041, -0.02159557305276394]} +{"t": 0.7543, "q": [-0.3611382842063904, -0.013272343203425407, 0.009682340547442436, 0.6271765828132629, -0.2954963147640228, 0.023743316531181335, -0.347869336605072, 0.004269579891115427, -0.005892434157431126, 0.6231881976127625, -0.32902422547340393, 0.003054422792047262, 0.004017568659037352, 0.009399819187819958, -0.03330476954579353, 0.28403812646865845, 0.19195133447647095, -0.00535694882273674, 0.9851272702217102, 0.07988684624433517, 0.06346845626831055, 0.01804824359714985, 0.2863990068435669, -0.20206601917743683, 0.03194994479417801, 0.9925335049629211, -0.11835620552301407, 0.0746617242693901, -0.02159557305276394]} +{"t": 0.771, "q": [-0.3611723780632019, -0.013280864804983139, 0.00966894906014204, 0.6271851062774658, -0.2955004572868347, 0.023736048489809036, -0.34786084294319153, 0.004252535756677389, -0.0058388663455843925, 0.6232052445411682, -0.32902008295059204, 0.00304712587967515, 0.004017568659037352, 0.009415015578269958, -0.0333048477768898, 0.28403812646865845, 0.1919393539428711, -0.00535694882273674, 0.9851392507553101, 0.07986287772655487, 0.06349242478609085, 0.018036259338259697, 0.2863990068435669, -0.20206601917743683, 0.03197391331195831, 0.9925455451011658, -0.11833223700523376, 0.0746617242693901, -0.021619541570544243]} +{"t": 0.7877, "q": [-0.3611809015274048, -0.013263821601867676, 0.009682340547442436, 0.6271765828132629, -0.2955128848552704, 0.023728763684630394, -0.347869336605072, 0.004252535756677389, -0.005865650251507759, 0.6231881976127625, -0.32906144857406616, 0.0030910533387213945, 0.004017568659037352, 0.009415008127689362, -0.03329501673579216, 0.2840501070022583, 0.1919633150100708, -0.00535694882273674, 0.9851512312889099, 0.07991081476211548, 0.063480444252491, 0.018036259338259697, 0.2863990068435669, -0.20206601917743683, 0.03196192905306816, 0.9925455451011658, -0.11830826848745346, 0.07467370480298996, -0.021631525829434395]} +{"t": 0.8045, "q": [-0.361163854598999, -0.01328938640654087, 0.00966894906014204, 0.6271765828132629, -0.2955004572868347, 0.023736048489809036, -0.3478863835334778, 0.004235491156578064, -0.005865650251507759, 0.6231881976127625, -0.3290739357471466, 0.0031129627022892237, 0.003977392800152302, 0.009407414123415947, -0.03329989314079285, 0.28406208753585815, 0.1919393539428711, -0.00535694882273674, 0.9851392507553101, 0.07991081476211548, 0.06349242478609085, 0.01804824359714985, 0.2863750457763672, -0.20206601917743683, 0.03197391331195831, 0.9925455451011658, -0.11832025647163391, 0.0746617242693901, -0.021631525829434395]} +{"t": 0.8212, "q": [-0.36115533113479614, -0.01328938640654087, 0.009642165154218674, 0.6271765828132629, -0.29550042748451233, 0.023721586912870407, -0.34786084294319153, 0.00424401368945837, -0.005865650251507759, 0.6231967210769653, -0.3290697932243347, 0.0031056657899171114, 0.003990784753113985, 0.009422610513865948, -0.033299971371889114, 0.28406208753585815, 0.1919393539428711, -0.00535694882273674, 0.9851632118225098, 0.07992279529571533, 0.06346845626831055, 0.01804824359714985, 0.28636306524276733, -0.20206601917743683, 0.03197391331195831, 0.9925335049629211, -0.11829628795385361, 0.07467370480298996, -0.021619541570544243]} +{"t": 0.838, "q": [-0.36118942499160767, -0.013272343203425407, 0.00965555664151907, 0.6271765828132629, -0.2955128848552704, 0.023728763684630394, -0.3478863835334778, 0.004261057823896408, -0.005865650251507759, 0.6231881976127625, -0.3290739357471466, 0.0031129627022892237, 0.004004176706075668, 0.009422610513865948, -0.033299971371889114, 0.2840501070022583, 0.1919393539428711, -0.00535694882273674, 0.9851751923561096, 0.07989882677793503, 0.06346845626831055, 0.01804824359714985, 0.28638702630996704, -0.20204205811023712, 0.03197391331195831, 0.9925455451011658, -0.11833223700523376, 0.07468569278717041, -0.021631525829434395]} +{"t": 0.8547, "q": [-0.36118942499160767, -0.013272343203425407, 0.009628772735595703, 0.6271680593490601, -0.29552939534187317, 0.023685304448008537, -0.3479119539260864, 0.004252535756677389, -0.005892434157431126, 0.6231967210769653, -0.3290822505950928, 0.0031275569926947355, 0.003977392800152302, 0.00943781342357397, -0.03330988436937332, 0.28406208753585815, 0.1919393539428711, -0.005368933081626892, 0.9851751923561096, 0.07988684624433517, 0.0634564757347107, 0.018036259338259697, 0.28636306524276733, -0.20206601917743683, 0.03197391331195831, 0.9925335049629211, -0.11830826848745346, 0.0746617242693901, -0.02160755731165409]} +{"t": 0.8714, "q": [-0.361163854598999, -0.013272343203425407, 0.009628772735595703, 0.6271765828132629, -0.2955128252506256, 0.023699838668107986, -0.34789490699768066, 0.00424401368945837, -0.005865650251507759, 0.6231796741485596, -0.3290739357471466, 0.0031129627022892237, 0.003990784753113985, 0.009422610513865948, -0.033299971371889114, 0.28406208753585815, 0.1919393539428711, -0.00535694882273674, 0.9851992130279541, 0.07988684624433517, 0.0635044127702713, 0.018036259338259697, 0.28631511330604553, -0.20206601917743683, 0.03193796053528786, 0.9925695061683655, -0.11830826848745346, 0.0746617242693901, -0.021619541570544243]} +{"t": 0.8882, "q": [-0.3611809015274048, -0.013280864804983139, 0.00965555664151907, 0.6271765828132629, -0.295512855052948, 0.023714302107691765, -0.34790343046188354, 0.004261057823896408, -0.005852258298546076, 0.6231881976127625, -0.3290780782699585, 0.0031202598474919796, 0.004057744517922401, 0.009422610513865948, -0.033299971371889114, 0.28406208753585815, 0.1919393539428711, -0.00535694882273674, 0.9851992130279541, 0.07991081476211548, 0.0634564757347107, 0.018036259338259697, 0.2863391041755676, -0.20206601917743683, 0.03194994479417801, 0.9925335049629211, -0.11834422498941422, 0.0746617242693901, -0.02159557305276394]} +{"t": 0.9049, "q": [-0.36119794845581055, -0.013280864804983139, 0.009615381248295307, 0.6271680593490601, -0.29552945494651794, 0.023714231327176094, -0.34790343046188354, 0.00424401368945837, -0.005879042204469442, 0.6231967210769653, -0.3290780782699585, 0.0031202598474919796, 0.004044352564960718, 0.00942261703312397, -0.033309802412986755, 0.2840501070022583, 0.1919393539428711, -0.00535694882273674, 0.9852471351623535, 0.07991081476211548, 0.0634564757347107, 0.018024275079369545, 0.2862911522388458, -0.20204205811023712, 0.03193796053528786, 0.9925335049629211, -0.11833223700523376, 0.07470966130495071, -0.02160755731165409]} +{"t": 0.9216, "q": [-0.36123204231262207, -0.013255298137664795, 0.009642165154218674, 0.6271680593490601, -0.29552945494651794, 0.023714231327176094, -0.34790343046188354, 0.00424401368945837, -0.005865650251507759, 0.6231881976127625, -0.32908207178115845, 0.0030985132325440645, 0.003977392800152302, 0.009422610513865948, -0.033299971371889114, 0.28403812646865845, 0.1919393539428711, -0.00535694882273674, 0.9852591156959534, 0.07989882677793503, 0.0635044127702713, 0.018024275079369545, 0.2862911522388458, -0.20204205811023712, 0.03193796053528786, 0.9925455451011658, -0.11834422498941422, 0.07468569278717041, -0.02160755731165409]} +{"t": 0.9384, "q": [-0.3612149953842163, -0.013272343203425407, 0.00965555664151907, 0.6271510124206543, -0.29552116990089417, 0.02371426671743393, -0.34790343046188354, 0.00424401368945837, -0.005865650251507759, 0.6231881976127625, -0.3290863037109375, 0.003120332257822156, 0.004057744517922401, 0.009415015578269958, -0.0333048477768898, 0.2840261459350586, 0.19195133447647095, -0.00535694882273674, 0.9852710962295532, 0.07988684624433517, 0.06346845626831055, 0.018036259338259697, 0.28627917170524597, -0.20204205811023712, 0.03196192905306816, 0.9925575256347656, -0.11835620552301407, 0.07467370480298996, -0.021631525829434395]} +{"t": 0.9551, "q": [-0.3612661063671112, -0.013272343203425407, 0.009615381248295307, 0.6271595358848572, -0.2955170273780823, 0.023721514269709587, -0.3479290008544922, 0.00424401368945837, -0.005879042204469442, 0.6231796741485596, -0.32924410700798035, 0.0033831915352493525, 0.004030960611999035, 0.00943021196871996, -0.03330492973327637, 0.2840261459350586, 0.19195133447647095, -0.005368933081626892, 0.9852591156959534, 0.07989882677793503, 0.06349242478609085, 0.01804824359714985, 0.2862432301044464, -0.20204205811023712, 0.031985897570848465, 0.9925455451011658, -0.11834422498941422, 0.07469767332077026, -0.021643510088324547]} +{"t": 0.9718, "q": [-0.36124905943870544, -0.013255298137664795, 0.009628772735595703, 0.6271510124206543, -0.2955169975757599, 0.023707052692770958, -0.3479290008544922, 0.004252535756677389, -0.005919218063354492, 0.6231796741485596, -0.3292316198348999, 0.0033612819388508797, 0.004044352564960718, 0.009399819187819958, -0.03330476954579353, 0.2840261459350586, 0.19195133447647095, -0.005368933081626892, 0.9852710962295532, 0.07989882677793503, 0.06349242478609085, 0.018036259338259697, 0.2862432301044464, -0.20204205811023712, 0.03196192905306816, 0.9925335049629211, -0.11830826848745346, 0.07467370480298996, -0.021619541570544243]} +{"t": 0.9886, "q": [-0.36124905943870544, -0.013280864804983139, 0.009615381248295307, 0.6271595358848572, -0.29552945494651794, 0.023714231327176094, -0.3479290008544922, 0.004252535756677389, -0.005879042204469442, 0.6231881976127625, -0.3292108476161957, 0.0033247964456677437, 0.004044352564960718, 0.00942261703312397, -0.033309802412986755, 0.2840021550655365, 0.1919633150100708, -0.00535694882273674, 0.9852591156959534, 0.07989882677793503, 0.063480444252491, 0.018036259338259697, 0.2862432301044464, -0.20201808214187622, 0.03194994479417801, 0.9925575256347656, -0.11830826848745346, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.0056, "q": [-0.3612661063671112, -0.013272343203425407, 0.009628772735595703, 0.6271510124206543, -0.29552945494651794, 0.023714231327176094, -0.3479290008544922, 0.00424401368945837, -0.005879042204469442, 0.6231796741485596, -0.3292026221752167, 0.0033247058745473623, 0.003990784753113985, 0.009437799453735352, -0.03329022228717804, 0.28403812646865845, 0.1919393539428711, -0.005368933081626892, 0.9852591156959534, 0.07989882677793503, 0.0635044127702713, 0.018024275079369545, 0.28620725870132446, -0.20203006267547607, 0.03193796053528786, 0.9925335049629211, -0.11832025647163391, 0.07468569278717041, -0.021631525829434395]} +{"t": 1.0225, "q": [-0.3612746298313141, -0.013263821601867676, 0.009642165154218674, 0.6271510124206543, -0.2955170273780823, 0.023721514269709587, -0.34794604778289795, 0.00424401368945837, -0.005892434157431126, 0.6231796741485596, -0.3292108476161957, 0.0033247964456677437, 0.004044352564960718, 0.009445400908589363, -0.033295176923274994, 0.28403812646865845, 0.19195133447647095, -0.00535694882273674, 0.9852830767631531, 0.07989882677793503, 0.06349242478609085, 0.018036259338259697, 0.2861713171005249, -0.20204205811023712, 0.03193796053528786, 0.9925335049629211, -0.11833223700523376, 0.07470966130495071, -0.021619541570544243]} +{"t": 1.0392, "q": [-0.3612746298313141, -0.013263821601867676, 0.009615381248295307, 0.6271510124206543, -0.2955169975757599, 0.023707052692770958, -0.34795457124710083, 0.004235491156578064, -0.005852258298546076, 0.6231796741485596, -0.3292067050933838, 0.0033174811396747828, 0.004004176706075668, 0.009452995844185352, -0.03329030051827431, 0.28403812646865845, 0.19195133447647095, -0.005344964563846588, 0.9852950572967529, 0.07988684624433517, 0.0635044127702713, 0.018036259338259697, 0.2861233651638031, -0.20201808214187622, 0.03196192905306816, 0.9925575256347656, -0.11830826848745346, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.056, "q": [-0.3612746298313141, -0.013263821601867676, 0.009615381248295307, 0.6271339654922485, -0.29552528262138367, 0.023707017302513123, -0.34794604778289795, 0.004235491156578064, -0.005865650251507759, 0.6231711506843567, -0.3292025327682495, 0.003310183994472027, 0.004030960611999035, 0.009445400908589363, -0.033295176923274994, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9852950572967529, 0.07989882677793503, 0.0635044127702713, 0.018012290820479393, 0.2860994040966034, -0.20203006267547607, 0.03196192905306816, 0.9925455451011658, -0.11830826848745346, 0.07467370480298996, -0.021631525829434395]} +{"t": 1.0729, "q": [-0.3612149953842163, -0.013280864804983139, 0.009628772735595703, 0.6271510124206543, -0.29552116990089417, 0.02371426671743393, -0.34794604778289795, 0.00424401368945837, -0.005852258298546076, 0.6231881976127625, -0.3291443884372711, 0.003208006266504526, 0.004017568659037352, 0.009437799453735352, -0.03329022228717804, 0.2840261459350586, 0.1919393539428711, -0.00535694882273674, 0.9852950572967529, 0.07992279529571533, 0.063480444252491, 0.018036259338259697, 0.2860994040966034, -0.20201808214187622, 0.03196192905306816, 0.9925335049629211, -0.11833223700523376, 0.07467370480298996, -0.021619541570544243]} +{"t": 1.0896, "q": [-0.36123204231262207, -0.01328938640654087, 0.009682340547442436, 0.6271424889564514, -0.2955169975757599, 0.023707052692770958, -0.3479290008544922, 0.00424401368945837, -0.0058388663455843925, 0.6231796741485596, -0.32908207178115845, 0.0030985132325440645, 0.004017568659037352, 0.009452988393604755, -0.033280469477176666, 0.2840261459350586, 0.1919393539428711, -0.005344964563846588, 0.9852950572967529, 0.07991081476211548, 0.063480444252491, 0.018036259338259697, 0.2860395014286041, -0.20201808214187622, 0.03197391331195831, 0.9925455451011658, -0.11833223700523376, 0.07469767332077026, -0.021619541570544243]} +{"t": 1.1063, "q": [-0.3612064719200134, -0.013272343203425407, 0.009628772735595703, 0.6271424889564514, -0.2955169975757599, 0.023707052692770958, -0.3479204773902893, 0.00424401368945837, -0.005879042204469442, 0.6231796741485596, -0.3290945291519165, 0.0031204044353216887, 0.003990784753113985, 0.009460575878620148, -0.03326576203107834, 0.28401416540145874, 0.1919633150100708, -0.00535694882273674, 0.9853070378303528, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.2859915494918823, -0.20201808214187622, 0.03194994479417801, 0.9925335049629211, -0.11828429996967316, 0.07469767332077026, -0.021619541570544243]} +{"t": 1.1231, "q": [-0.3612064719200134, -0.013272343203425407, 0.009628772735595703, 0.6271510124206543, -0.2955169975757599, 0.023707052692770958, -0.34790343046188354, 0.00424401368945837, -0.005892434157431126, 0.6231881976127625, -0.3290945291519165, 0.0031204044353216887, 0.004030960611999035, 0.00944539438933134, -0.03328534588217735, 0.28401416540145874, 0.1919393539428711, -0.005368933081626892, 0.9852950572967529, 0.07988684624433517, 0.06351639330387115, 0.018024275079369545, 0.2860035300254822, -0.20203006267547607, 0.03196192905306816, 0.9925335049629211, -0.11832025647163391, 0.07469767332077026, -0.021619541570544243]} +{"t": 1.1398, "q": [-0.3612149953842163, -0.013272343203425407, 0.009628772735595703, 0.6271510124206543, -0.29550036787986755, 0.02370712347328663, -0.3479204773902893, 0.004261057823896408, -0.005892434157431126, 0.6231796741485596, -0.3290780782699585, 0.0031202598474919796, 0.004057744517922401, 0.009452988393604755, -0.033280469477176666, 0.28401416540145874, 0.19195133447647095, -0.00535694882273674, 0.9853190183639526, 0.07989882677793503, 0.06351639330387115, 0.01806022785604, 0.2859915494918823, -0.20200610160827637, 0.03193796053528786, 0.9925335049629211, -0.11830826848745346, 0.07468569278717041, -0.021631525829434395]} +{"t": 1.1567, "q": [-0.36118942499160767, -0.01328938640654087, 0.009642165154218674, 0.6271510124206543, -0.29550036787986755, 0.02370712347328663, -0.3479119539260864, 0.004269579891115427, -0.005879042204469442, 0.6231881976127625, -0.3290739357471466, 0.0031129627022892237, 0.004030960611999035, 0.00944539438933134, -0.03328534588217735, 0.28403812646865845, 0.1919393539428711, -0.00535694882273674, 0.9853309988975525, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28597956895828247, -0.20200610160827637, 0.03194994479417801, 0.9925575256347656, -0.11832025647163391, 0.07472164183855057, -0.0216554943472147]} +{"t": 1.1735, "q": [-0.36114680767059326, -0.01328938640654087, 0.009695732034742832, 0.6271424889564514, -0.2954963147640228, 0.023743316531181335, -0.34790343046188354, 0.004269579891115427, -0.005865650251507759, 0.6231967210769653, -0.32903239130973816, 0.0030399553943425417, 0.004057744517922401, 0.009452988393604755, -0.033280469477176666, 0.28403812646865845, 0.1919393539428711, -0.005344964563846588, 0.9853309988975525, 0.07991081476211548, 0.06354036182165146, 0.018036259338259697, 0.28597956895828247, -0.20200610160827637, 0.03196192905306816, 0.9925575256347656, -0.11834422498941422, 0.07469767332077026, -0.02160755731165409]} +{"t": 1.1902, "q": [-0.36114680767059326, -0.013280864804983139, 0.009682340547442436, 0.6271510124206543, -0.29549211263656616, 0.023721622303128242, -0.3478863835334778, 0.004261057823896408, -0.005879042204469442, 0.6231796741485596, -0.3290407061576843, 0.003054567612707615, 0.004071136470884085, 0.009460590779781342, -0.03328542411327362, 0.28403812646865845, 0.1919393539428711, -0.005344964563846588, 0.9853309988975525, 0.07992279529571533, 0.06351639330387115, 0.01806022785604, 0.2859675884246826, -0.20200610160827637, 0.03197391331195831, 0.9925575256347656, -0.11833223700523376, 0.07469767332077026, -0.021619541570544243]} +{"t": 1.2069, "q": [-0.361163854598999, -0.013272343203425407, 0.009695732034742832, 0.6271510124206543, -0.2955004572868347, 0.023736048489809036, -0.34790343046188354, 0.004261057823896408, -0.005879042204469442, 0.6232052445411682, -0.3290531635284424, 0.0030764590483158827, 0.004004176706075668, 0.009452988393604755, -0.033280469477176666, 0.2840261459350586, 0.1919393539428711, -0.00535694882273674, 0.9853429794311523, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.2860035300254822, -0.20200610160827637, 0.03196192905306816, 0.9925455451011658, -0.11832025647163391, 0.07469767332077026, -0.021619541570544243]} +{"t": 1.2238, "q": [-0.36115533113479614, -0.01328938640654087, 0.009695732034742832, 0.6271595358848572, -0.2954961955547333, 0.023699909448623657, -0.34790343046188354, 0.00424401368945837, -0.005892434157431126, 0.6231881976127625, -0.3290531635284424, 0.0030764590483158827, 0.004004176706075668, 0.009452981874346733, -0.033270638436079025, 0.2840261459350586, 0.1919393539428711, -0.00535694882273674, 0.985366940498352, 0.07989882677793503, 0.0635283812880516, 0.018036259338259697, 0.2859915494918823, -0.20200610160827637, 0.03196192905306816, 0.9925575256347656, -0.11832025647163391, 0.07469767332077026, -0.021619541570544243]} +{"t": 1.2405, "q": [-0.3611723780632019, -0.01328938640654087, 0.009682340547442436, 0.6271510124206543, -0.2954879403114319, 0.02371440827846527, -0.34789490699768066, 0.004252535756677389, -0.005892434157431126, 0.6231967210769653, -0.32906126976013184, 0.00306200934574008, 0.004044352564960718, 0.009483374655246735, -0.03327079489827156, 0.28403812646865845, 0.19195133447647095, -0.00535694882273674, 0.985366940498352, 0.07988684624433517, 0.06351639330387115, 0.01806022785604, 0.28597956895828247, -0.20200610160827637, 0.03194994479417801, 0.9925695061683655, -0.11832025647163391, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.2572, "q": [-0.36118942499160767, -0.01328938640654087, 0.009682340547442436, 0.6271510124206543, -0.29549628496170044, 0.023728836327791214, -0.3478863835334778, 0.004235491156578064, -0.005865650251507759, 0.6231881976127625, -0.329069584608078, 0.0030766036361455917, 0.004044352564960718, 0.009521354921162128, -0.03325624763965607, 0.28403812646865845, 0.19195133447647095, -0.005344964563846588, 0.985366940498352, 0.07991081476211548, 0.06351639330387115, 0.018036259338259697, 0.2859436273574829, -0.20198212563991547, 0.03196192905306816, 0.9925455451011658, -0.11830826848745346, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.274, "q": [-0.3611723780632019, -0.013297909870743752, 0.009682340547442436, 0.6271424889564514, -0.29550042748451233, 0.023721586912870407, -0.3478863835334778, 0.004269579891115427, -0.005879042204469442, 0.6231881976127625, -0.3290531635284424, 0.0030764590483158827, 0.004044352564960718, 0.009498563595116138, -0.033261045813560486, 0.28403812646865845, 0.1919393539428711, -0.005344964563846588, 0.9853909611701965, 0.07988684624433517, 0.06351639330387115, 0.018036259338259697, 0.28595560789108276, -0.20200610160827637, 0.031985897570848465, 0.9925335049629211, -0.11834422498941422, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.2907, "q": [-0.3611809015274048, -0.013297909870743752, 0.009682340547442436, 0.6271510124206543, -0.29549628496170044, 0.023728836327791214, -0.34789490699768066, 0.004261057823896408, -0.005892434157431126, 0.6231881976127625, -0.3290654420852661, 0.003069306490942836, 0.004030960611999035, 0.009498556144535542, -0.033251214772462845, 0.28401416540145874, 0.19195133447647095, -0.005344964563846588, 0.9853909611701965, 0.07989882677793503, 0.0635044127702713, 0.01804824359714985, 0.2859675884246826, -0.20198212563991547, 0.03196192905306816, 0.9925335049629211, -0.11832025647163391, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.3074, "q": [-0.36118942499160767, -0.013280864804983139, 0.009682340547442436, 0.6271510124206543, -0.29549211263656616, 0.023721622303128242, -0.3478863835334778, 0.004252535756677389, -0.005865650251507759, 0.6231881976127625, -0.32906562089920044, 0.0030983504839241505, 0.004044352564960718, 0.009498563595116138, -0.033261045813560486, 0.2840261459350586, 0.19195133447647095, -0.00535694882273674, 0.9853909611701965, 0.07989882677793503, 0.0635044127702713, 0.01804824359714985, 0.2859675884246826, -0.20198212563991547, 0.03193796053528786, 0.9925575256347656, -0.11833223700523376, 0.07467370480298996, -0.021559620276093483]} +{"t": 1.3242, "q": [-0.3611723780632019, -0.01328938640654087, 0.009682340547442436, 0.6271510124206543, -0.29549211263656616, 0.023721622303128242, -0.3478863835334778, 0.00424401368945837, -0.005879042204469442, 0.6231967210769653, -0.32906967401504517, 0.0030911255162209272, 0.004057744517922401, 0.00950615108013153, -0.03324633836746216, 0.2840261459350586, 0.1919393539428711, -0.00535694882273674, 0.9854029417037964, 0.07988684624433517, 0.0635044127702713, 0.018036259338259697, 0.2859436273574829, -0.20200610160827637, 0.03196192905306816, 0.9925695061683655, -0.11830826848745346, 0.07467370480298996, -0.021619541570544243]} +{"t": 1.3411, "q": [-0.36118942499160767, -0.013297909870743752, 0.009682340547442436, 0.6271510124206543, -0.2955004572868347, 0.023736048489809036, -0.34790343046188354, 0.004252535756677389, -0.005879042204469442, 0.6231796741485596, -0.329069584608078, 0.0030766036361455917, 0.004084527958184481, 0.009506158530712128, -0.0332561694085598, 0.2840261459350586, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07988684624433517, 0.06351639330387115, 0.01804824359714985, 0.28593161702156067, -0.20198212563991547, 0.03194994479417801, 0.9925575256347656, -0.11833223700523376, 0.07468569278717041, -0.02160755731165409]} +{"t": 1.3579, "q": [-0.3611809015274048, -0.013297909870743752, 0.00966894906014204, 0.6271424889564514, -0.29550454020500183, 0.0237143374979496, -0.3478863835334778, 0.004252535756677389, -0.005879042204469442, 0.6231881976127625, -0.329069584608078, 0.0030766036361455917, 0.004044352564960718, 0.00949095468968153, -0.03324626013636589, 0.2840261459350586, 0.1919633150100708, -0.00535694882273674, 0.9853909611701965, 0.07991081476211548, 0.063480444252491, 0.01804824359714985, 0.28593161702156067, -0.20198212563991547, 0.03196192905306816, 0.9925575256347656, -0.11832025647163391, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.3746, "q": [-0.3611809015274048, -0.013306431472301483, 0.00966894906014204, 0.6271510124206543, -0.2955004572868347, 0.023736048489809036, -0.34789490699768066, 0.00424401368945837, -0.005865650251507759, 0.6231796741485596, -0.3291070759296417, 0.003156835911795497, 0.004044352564960718, 0.009483367204666138, -0.03326096385717392, 0.28401416540145874, 0.1919633150100708, -0.00535694882273674, 0.9854029417037964, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28593161702156067, -0.20198212563991547, 0.03194994479417801, 0.9925455451011658, -0.11830826848745346, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.3914, "q": [-0.36118942499160767, -0.01328938640654087, 0.00965555664151907, 0.6271339654922485, -0.29550454020500183, 0.0237143374979496, -0.34789490699768066, 0.004252535756677389, -0.005865650251507759, 0.6231796741485596, -0.3291070759296417, 0.003156835911795497, 0.004044352564960718, 0.009490962140262127, -0.03325609117746353, 0.2840021550655365, 0.1919393539428711, -0.005344964563846588, 0.9853909611701965, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.2859436273574829, -0.20198212563991547, 0.03197391331195831, 0.9925695061683655, -0.11833223700523376, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.4082, "q": [-0.3611809015274048, -0.013272343203425407, 0.009695732034742832, 0.6271510124206543, -0.2955128848552704, 0.023728763684630394, -0.3479119539260864, 0.004269579891115427, -0.0058388663455843925, 0.6231881976127625, -0.32911112904548645, 0.0031496111769229174, 0.004071136470884085, 0.009490962140262127, -0.03325609117746353, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06349242478609085, 0.018036259338259697, 0.2859436273574829, -0.20198212563991547, 0.03193796053528786, 0.9925695061683655, -0.11830826848745346, 0.07469767332077026, -0.0216554943472147]} +{"t": 1.4249, "q": [-0.3612064719200134, -0.013272343203425407, 0.009682340547442436, 0.6271169185638428, -0.2955128848552704, 0.023728763684630394, -0.3479119539260864, 0.00424401368945837, -0.0058388663455843925, 0.6231796741485596, -0.3291319012641907, 0.0031860966701060534, 0.004044352564960718, 0.009490962140262127, -0.03325609117746353, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07987485826015472, 0.06351639330387115, 0.018036259338259697, 0.28593161702156067, -0.20198212563991547, 0.03197391331195831, 0.9925575256347656, -0.11830826848745346, 0.07468569278717041, -0.021643510088324547]} +{"t": 1.4416, "q": [-0.36119794845581055, -0.01328938640654087, 0.00965555664151907, 0.6271339654922485, -0.29553768038749695, 0.02367078885436058, -0.3479204773902893, 0.004252535756677389, -0.005879042204469442, 0.6231881976127625, -0.3291526734828949, 0.003222600556910038, 0.004057744517922401, 0.00950616504997015, -0.03326600044965744, 0.28401416540145874, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.0635044127702713, 0.018036259338259697, 0.28593161702156067, -0.20198212563991547, 0.03193796053528786, 0.9925695061683655, -0.11833223700523376, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.4585, "q": [-0.3612235188484192, -0.01328938640654087, 0.009628772735595703, 0.6271169185638428, -0.29552939534187317, 0.023685304448008537, -0.3479204773902893, 0.00424401368945837, -0.005865650251507759, 0.6231626272201538, -0.3292773365974426, 0.0034415866248309612, 0.004071136470884085, 0.009490962140262127, -0.03325609117746353, 0.2840261459350586, 0.1919393539428711, -0.00535694882273674, 0.9853909611701965, 0.07988684624433517, 0.0635044127702713, 0.018036259338259697, 0.2859436273574829, -0.2019701451063156, 0.03196192905306816, 0.9925575256347656, -0.11833223700523376, 0.07472164183855057, -0.021631525829434395]} +{"t": 1.4752, "q": [-0.3611809015274048, -0.013272343203425407, 0.009628772735595703, 0.6271083950996399, -0.2955211102962494, 0.02369980327785015, -0.3479119539260864, 0.00424401368945837, -0.005879042204469442, 0.6232052445411682, -0.32924824953079224, 0.0033904886804521084, 0.004017568659037352, 0.009506158530712128, -0.0332561694085598, 0.28401416540145874, 0.1919633150100708, -0.005344964563846588, 0.9854149222373962, 0.07988684624433517, 0.06351639330387115, 0.01806022785604, 0.28593161702156067, -0.20198212563991547, 0.03196192905306816, 0.9925575256347656, -0.11832025647163391, 0.07470966130495071, -0.021631525829434395]} +{"t": 1.4919, "q": [-0.3612235188484192, -0.013263821601867676, 0.009601988829672337, 0.627099871635437, -0.2955211102962494, 0.02369980327785015, -0.3479119539260864, 0.00424401368945837, -0.005892434157431126, 0.6231881976127625, -0.3292316198348999, 0.0033612819388508797, 0.004030960611999035, 0.00950615108013153, -0.03324633836746216, 0.28403812646865845, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.01804824359714985, 0.28593161702156067, -0.20198212563991547, 0.03194994479417801, 0.9925575256347656, -0.11832025647163391, 0.07469767332077026, -0.021619541570544243]} +{"t": 1.5086, "q": [-0.36123204231262207, -0.013263821601867676, 0.009628772735595703, 0.627099871635437, -0.2955211102962494, 0.02369980327785015, -0.3479204773902893, 0.004269579891115427, -0.005852258298546076, 0.6231796741485596, -0.32922330498695374, 0.003346687648445368, 0.004030960611999035, 0.009521347470581532, -0.033246416598558426, 0.28401416540145874, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.06349242478609085, 0.018036259338259697, 0.28593161702156067, -0.2019701451063156, 0.03193796053528786, 0.9925575256347656, -0.11830826848745346, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.5254, "q": [-0.36124053597450256, -0.013246776536107063, 0.009628772735595703, 0.6270828247070312, -0.29552528262138367, 0.023707017302513123, -0.3479290008544922, 0.00424401368945837, -0.005892434157431126, 0.6231711506843567, -0.32927724719047546, 0.0034270465839654207, 0.004030960611999035, 0.009506158530712128, -0.0332561694085598, 0.28401416540145874, 0.1919633150100708, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28593161702156067, -0.2019701451063156, 0.03196192905306816, 0.9925455451011658, -0.11832025647163391, 0.07470966130495071, -0.021631525829434395]} +{"t": 1.5422, "q": [-0.3611809015274048, -0.01328938640654087, 0.009628772735595703, 0.6270828247070312, -0.2955211102962494, 0.02369980327785015, -0.3479204773902893, 0.00424401368945837, -0.005879042204469442, 0.6231796741485596, -0.3292067050933838, 0.0033174811396747828, 0.004057744517922401, 0.00952894240617752, -0.03324154019355774, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9854269027709961, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2859196364879608, -0.2019701451063156, 0.03196192905306816, 0.9925575256347656, -0.11834422498941422, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.5589, "q": [-0.3612235188484192, -0.013255298137664795, 0.009628772735595703, 0.6270828247070312, -0.2955211102962494, 0.02369980327785015, -0.34794604778289795, 0.004235491156578064, -0.005892434157431126, 0.6231796741485596, -0.3292108476161957, 0.0033247964456677437, 0.004044352564960718, 0.009521347470581532, -0.033246416598558426, 0.28403812646865845, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.01804824359714985, 0.28593161702156067, -0.2019701451063156, 0.03194994479417801, 0.9925455451011658, -0.11830826848745346, 0.07472164183855057, -0.021643510088324547]} +{"t": 1.5757, "q": [-0.3612235188484192, -0.013246776536107063, 0.009615381248295307, 0.6270572543144226, -0.29553771018981934, 0.02368525043129921, -0.3479716181755066, 0.004261057823896408, -0.005865650251507759, 0.6231796741485596, -0.3292856514453888, 0.0034561806824058294, 0.004004176706075668, 0.009536543861031532, -0.033246494829654694, 0.28403812646865845, 0.1919633150100708, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.06349242478609085, 0.018036259338259697, 0.2859196364879608, -0.2019701451063156, 0.03194994479417801, 0.9925575256347656, -0.11832025647163391, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.5924, "q": [-0.36124905943870544, -0.013263821601867676, 0.009601988829672337, 0.6270743012428284, -0.2955418527126312, 0.023678001016378403, -0.3479630947113037, 0.004235491156578064, -0.005865650251507759, 0.6231796741485596, -0.32933512330055237, 0.0034856765996664762, 0.004044352564960718, 0.00951374601572752, -0.03324146196246147, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9853909611701965, 0.07989882677793503, 0.06349242478609085, 0.018036259338259697, 0.2858956754207611, -0.2019701451063156, 0.03196192905306816, 0.9925814867019653, -0.11834422498941422, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.6093, "q": [-0.3612575829029083, -0.013297909870743752, 0.009628772735595703, 0.6270657777786255, -0.2955418527126312, 0.023678001016378403, -0.3479716181755066, 0.004235491156578064, -0.005865650251507759, 0.6231626272201538, -0.3293309807777405, 0.0034783794544637203, 0.004044352564960718, 0.00951374601572752, -0.03324146196246147, 0.2840261459350586, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.28590765595436096, -0.20198212563991547, 0.03193796053528786, 0.9925814867019653, -0.11834422498941422, 0.07472164183855057, -0.021631525829434395]} +{"t": 1.626, "q": [-0.36124053597450256, -0.013255298137664795, 0.00958859734237194, 0.6270657777786255, -0.29552528262138367, 0.023707017302513123, -0.3479801416397095, 0.004252535756677389, -0.005865650251507759, 0.6231796741485596, -0.3292437195777893, 0.003325085621327162, 0.004017568659037352, 0.009513752534985542, -0.03325129300355911, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28593161702156067, -0.20198212563991547, 0.03197391331195831, 0.9925814867019653, -0.11833223700523376, 0.07469767332077026, -0.0216554943472147]} +{"t": 1.6428, "q": [-0.3611809015274048, -0.013280864804983139, 0.009628772735595703, 0.6270657777786255, -0.2955128252506256, 0.023699838668107986, -0.3479630947113037, 0.004235491156578064, -0.005879042204469442, 0.6231881976127625, -0.329094260931015, 0.003076838795095682, 0.004044352564960718, 0.00952894240617752, -0.03324154019355774, 0.2840261459350586, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.018024275079369545, 0.2859196364879608, -0.2019701451063156, 0.03194994479417801, 0.9925695061683655, -0.11832025647163391, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.6595, "q": [-0.3612235188484192, -0.013272343203425407, 0.009628772735595703, 0.6270743012428284, -0.2955169975757599, 0.023707052692770958, -0.3479716181755066, 0.00424401368945837, -0.005892434157431126, 0.6231796741485596, -0.3291066288948059, 0.0030842081177979708, 0.004057744517922401, 0.009521340020000935, -0.033236585557460785, 0.28401416540145874, 0.19195133447647095, -0.005344964563846588, 0.9854029417037964, 0.07991081476211548, 0.0635044127702713, 0.018036259338259697, 0.2858956754207611, -0.2019701451063156, 0.03193796053528786, 0.9926174283027649, -0.11833223700523376, 0.07468569278717041, -0.0216554943472147]} +{"t": 1.6762, "q": [-0.3612149953842163, -0.013263821601867676, 0.00965555664151907, 0.6270657777786255, -0.29550865292549133, 0.023692624643445015, -0.3479630947113037, 0.00424401368945837, -0.005865650251507759, 0.6231796741485596, -0.3291025459766388, 0.003091433085501194, 0.004030960611999035, 0.009528934955596924, -0.0332317091524601, 0.2840021550655365, 0.1919393539428711, -0.00535694882273674, 0.9854029417037964, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.2858717143535614, -0.2019701451063156, 0.03193796053528786, 0.992605447769165, -0.11828429996967316, 0.07473362982273102, -0.021643510088324547]} +{"t": 1.6931, "q": [-0.3612064719200134, -0.013272343203425407, 0.009628772735595703, 0.6270743012428284, -0.29549628496170044, 0.023728836327791214, -0.34795457124710083, 0.00424401368945837, -0.005879042204469442, 0.6231881976127625, -0.32910671830177307, 0.00309873023070395, 0.004071136470884085, 0.009521340020000935, -0.033236585557460785, 0.28401416540145874, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.06351639330387115, 0.01804824359714985, 0.28585973381996155, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11833223700523376, 0.07472164183855057, -0.02166747860610485]} +{"t": 1.7098, "q": [-0.3611809015274048, -0.01328938640654087, 0.00965555664151907, 0.6270657777786255, -0.29550036787986755, 0.02370712347328663, -0.34794604778289795, 0.00424401368945837, -0.005852258298546076, 0.6231881976127625, -0.32910671830177307, 0.00309873023070395, 0.004044352564960718, 0.009536536410450935, -0.03323666378855705, 0.28401416540145874, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07987485826015472, 0.0635044127702713, 0.01806022785604, 0.28583574295043945, -0.2019701451063156, 0.03196192905306816, 0.9926174283027649, -0.11836819350719452, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.7266, "q": [-0.36119794845581055, -0.013272343203425407, 0.00966894906014204, 0.6270657777786255, -0.29549625515937805, 0.023714372888207436, -0.34794604778289795, 0.004269579891115427, -0.005879042204469442, 0.6231881976127625, -0.32910671830177307, 0.00309873023070395, 0.004044352564960718, 0.009528934955596924, -0.0332317091524601, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28583574295043945, -0.20198212563991547, 0.03194994479417801, 0.992605447769165, -0.11836819350719452, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.7435, "q": [-0.3611723780632019, -0.01328938640654087, 0.00966894906014204, 0.6270743012428284, -0.29548799991607666, 0.02374335192143917, -0.3479119539260864, 0.00424401368945837, -0.005865650251507759, 0.6231881976127625, -0.32909858226776123, 0.003113179700449109, 0.004071136470884085, 0.009536536410450935, -0.03323666378855705, 0.28399017453193665, 0.1919633150100708, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.28581178188323975, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11833223700523376, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.7602, "q": [-0.36114680767059326, -0.013297909870743752, 0.009682340547442436, 0.6270828247070312, -0.2954879403114319, 0.02371440827846527, -0.34790343046188354, 0.004252535756677389, -0.005865650251507759, 0.6231881976127625, -0.3290407061576843, 0.003054567612707615, 0.004044352564960718, 0.009521354921162128, -0.03325624763965607, 0.2840021550655365, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.0635283812880516, 0.01804824359714985, 0.28583574295043945, -0.20198212563991547, 0.03196192905306816, 0.9926174283027649, -0.11832025647163391, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.7769, "q": [-0.36114680767059326, -0.01328938640654087, 0.009722515940666199, 0.6270828247070312, -0.29549628496170044, 0.023728836327791214, -0.3478863835334778, 0.004269579891115427, -0.005865650251507759, 0.6232052445411682, -0.32903239130973816, 0.0030399553943425417, 0.004030960611999035, 0.009536536410450935, -0.03323666378855705, 0.28401416540145874, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.0635044127702713, 0.01804824359714985, 0.2857998013496399, -0.2019701451063156, 0.031985897570848465, 0.992605447769165, -0.11833223700523376, 0.07472164183855057, -0.021643510088324547]} +{"t": 1.7938, "q": [-0.361163854598999, -0.013280864804983139, 0.009695732034742832, 0.6270828247070312, -0.29549211263656616, 0.023721622303128242, -0.3478778600692749, 0.004269579891115427, -0.005852258298546076, 0.6231881976127625, -0.32902422547340393, 0.003054422792047262, 0.004044352564960718, 0.00952894240617752, -0.03324154019355774, 0.28401416540145874, 0.1919633150100708, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.0635283812880516, 0.018036259338259697, 0.2857758402824402, -0.20198212563991547, 0.03197391331195831, 0.9925934672355652, -0.11833223700523376, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.8105, "q": [-0.3611297607421875, -0.01328938640654087, 0.009722515940666199, 0.6270828247070312, -0.2954879403114319, 0.02371440827846527, -0.3478778600692749, 0.004252535756677389, -0.005852258298546076, 0.6232052445411682, -0.32902008295059204, 0.00304712587967515, 0.004071136470884085, 0.009521340020000935, -0.033236585557460785, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.0635044127702713, 0.018024275079369545, 0.2857518792152405, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11833223700523376, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.8273, "q": [-0.36107009649276733, -0.013297909870743752, 0.00973590835928917, 0.6270743012428284, -0.29548379778862, 0.02372167445719242, -0.3478778600692749, 0.004252535756677389, -0.005879042204469442, 0.6231967210769653, -0.32902422547340393, 0.003054422792047262, 0.004071136470884085, 0.009506143629550934, -0.03323650732636452, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.01804824359714985, 0.28573986887931824, -0.2019701451063156, 0.03196192905306816, 0.9926174283027649, -0.11830826848745346, 0.07470966130495071, -0.0216554943472147]} +{"t": 1.8441, "q": [-0.36110419034957886, -0.013280864804983139, 0.009722515940666199, 0.6270828247070312, -0.2954879403114319, 0.02371440827846527, -0.3478778600692749, 0.004269579891115427, -0.005879042204469442, 0.6231967210769653, -0.3290616273880005, 0.003120133187621832, 0.004057744517922401, 0.009513752534985542, -0.03325129300355911, 0.28401416540145874, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07992279529571533, 0.0635283812880516, 0.018036259338259697, 0.2857278883457184, -0.2019701451063156, 0.03197391331195831, 0.992605447769165, -0.11829628795385361, 0.07469767332077026, -0.0216554943472147]} +{"t": 1.8609, "q": [-0.3611382842063904, -0.013297909870743752, 0.009695732034742832, 0.6270828247070312, -0.2954879403114319, 0.02371440827846527, -0.34786084294319153, 0.004269579891115427, -0.005865650251507759, 0.6231967210769653, -0.32906144857406616, 0.0030910533387213945, 0.004030960611999035, 0.00951375998556614, -0.033261124044656754, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.28573986887931824, -0.20198212563991547, 0.03196192905306816, 0.9926174283027649, -0.11833223700523376, 0.07470966130495071, -0.021631525829434395]} +{"t": 1.8776, "q": [-0.36114680767059326, -0.01328938640654087, 0.009695732034742832, 0.6270743012428284, -0.295492023229599, 0.023692695423960686, -0.347869336605072, 0.004261057823896408, -0.005879042204469442, 0.6231881976127625, -0.32906144857406616, 0.0030910533387213945, 0.004071136470884085, 0.00952894240617752, -0.03324154019355774, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.018036259338259697, 0.2857278883457184, -0.2019701451063156, 0.03197391331195831, 0.992605447769165, -0.11833223700523376, 0.07467370480298996, -0.021631525829434395]} +{"t": 1.8943, "q": [-0.36114680767059326, -0.013297909870743752, 0.00965555664151907, 0.6270657777786255, -0.29550862312316895, 0.023678161203861237, -0.347869336605072, 0.004261057823896408, -0.005879042204469442, 0.6231881976127625, -0.3290903568267822, 0.0031131075229495764, 0.004017568659037352, 0.009536543861031532, -0.033246494829654694, 0.28401416540145874, 0.19197531044483185, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018024275079369545, 0.28571590781211853, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11829628795385361, 0.07468569278717041, -0.021643510088324547]} +{"t": 1.9111, "q": [-0.36115533113479614, -0.013280864804983139, 0.00965555664151907, 0.6270657777786255, -0.29551273584365845, 0.02367091178894043, -0.3478863835334778, 0.004261057823896408, -0.005879042204469442, 0.6231881976127625, -0.32911112904548645, 0.0031496111769229174, 0.004030960611999035, 0.009536543861031532, -0.033246494829654694, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.2857278883457184, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11829628795385361, 0.07473362982273102, -0.0216554943472147]} +{"t": 1.9278, "q": [-0.361163854598999, -0.01328938640654087, 0.00965555664151907, 0.6270487308502197, -0.29552939534187317, 0.023685304448008537, -0.3478863835334778, 0.00424401368945837, -0.005892434157431126, 0.6231881976127625, -0.3291236162185669, 0.0031715023797005415, 0.004084527958184481, 0.009521340020000935, -0.033236585557460785, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.28571590781211853, -0.2019701451063156, 0.03194994479417801, 0.9925934672355652, -0.11829628795385361, 0.07469767332077026, -0.02166747860610485]} +{"t": 1.9445, "q": [-0.3611809015274048, -0.013272343203425407, 0.009642165154218674, 0.6270487308502197, -0.2955252230167389, 0.023678090423345566, -0.3478863835334778, 0.004252535756677389, -0.005865650251507759, 0.6231796741485596, -0.329264760017395, 0.003405155148357153, 0.004044352564960718, 0.009521354921162128, -0.03325624763965607, 0.2840021550655365, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.018036259338259697, 0.2857278883457184, -0.2019701451063156, 0.031985897570848465, 0.992605447769165, -0.11830826848745346, 0.07473362982273102, -0.021679462864995003]} +{"t": 1.9613, "q": [-0.36119794845581055, -0.013272343203425407, 0.009628772735595703, 0.6270487308502197, -0.2955252230167389, 0.023678090423345566, -0.3479119539260864, 0.00424401368945837, -0.0058388663455843925, 0.6231881976127625, -0.3293271064758301, 0.0035146481823176146, 0.004057744517922401, 0.009528948925435543, -0.03325137123465538, 0.2840021550655365, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.018036259338259697, 0.28571590781211853, -0.2019701451063156, 0.03197391331195831, 0.992605447769165, -0.11830826848745346, 0.07472164183855057, -0.021631525829434395]} +{"t": 1.9781, "q": [-0.3612064719200134, -0.013246776536107063, 0.009628772735595703, 0.627031683921814, -0.29552939534187317, 0.023685304448008537, -0.3479204773902893, 0.004235491156578064, -0.005852258298546076, 0.6231796741485596, -0.3293556272983551, 0.0034785785246640444, 0.004057744517922401, 0.00951375998556614, -0.033261124044656754, 0.28399017453193665, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.018036259338259697, 0.2856679856777191, -0.2019701451063156, 0.031985897570848465, 0.992605447769165, -0.11830826848745346, 0.07472164183855057, -0.021703431382775307]} +{"t": 1.9949, "q": [-0.3612064719200134, -0.013272343203425407, 0.00965555664151907, 0.6270061135292053, -0.29552939534187317, 0.023685304448008537, -0.34793752431869507, 0.00424401368945837, -0.005865650251507759, 0.6231711506843567, -0.32935571670532227, 0.00349310040473938, 0.004017568659037352, 0.009536543861031532, -0.033246494829654694, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.0635283812880516, 0.01804824359714985, 0.28571590781211853, -0.2019701451063156, 0.031985897570848465, 0.992605447769165, -0.11828429996967316, 0.07474561035633087, -0.02166747860610485]} +{"t": 2.0116, "q": [-0.36118942499160767, -0.01328938640654087, 0.00965555664151907, 0.6269975900650024, -0.29553356766700745, 0.02369251847267151, -0.34795457124710083, 0.00424401368945837, -0.005865650251507759, 0.6231626272201538, -0.3293474316596985, 0.003478506114333868, 0.004017568659037352, 0.00952894240617752, -0.03324154019355774, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.0635283812880516, 0.018036259338259697, 0.28567996621131897, -0.20198212563991547, 0.03194994479417801, 0.992605447769165, -0.11835620552301407, 0.07473362982273102, -0.02166747860610485]} +{"t": 2.0284, "q": [-0.3612746298313141, -0.013255298137664795, 0.009628772735595703, 0.6269975900650024, -0.2955418825149536, 0.02369246445596218, -0.34798866510391235, 0.004252535756677389, -0.0058388663455843925, 0.6231626272201538, -0.3293515741825104, 0.003485803259536624, 0.004057744517922401, 0.009551732800900936, -0.03323674574494362, 0.28399017453193665, 0.19195133447647095, -0.005344964563846588, 0.9853909611701965, 0.07988684624433517, 0.0635044127702713, 0.018036259338259697, 0.28567996621131897, -0.2019701451063156, 0.03197391331195831, 0.9925934672355652, -0.11838017404079437, 0.07468569278717041, -0.021643510088324547]} +{"t": 2.0451, "q": [-0.3612235188484192, -0.013263821601867676, 0.00965555664151907, 0.6269805431365967, -0.2955418527126312, 0.023678001016378403, -0.3480057120323181, 0.00424401368945837, -0.005865650251507759, 0.6231626272201538, -0.3293514847755432, 0.0034712813794612885, 0.004017568659037352, 0.009528934955596924, -0.0332317091524601, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.28567996621131897, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11835620552301407, 0.07473362982273102, -0.021631525829434395]} +{"t": 2.0618, "q": [-0.36130020022392273, -0.013238254934549332, 0.009601988829672337, 0.6269634962081909, -0.2955169975757599, 0.023707052692770958, -0.3480227589607239, 0.004235491156578064, -0.0058388663455843925, 0.6231541037559509, -0.3293474316596985, 0.003478506114333868, 0.004057744517922401, 0.009536536410450935, -0.03323666378855705, 0.28401416540145874, 0.1919633150100708, -0.005344964563846588, 0.9853909611701965, 0.07986287772655487, 0.06351639330387115, 0.01804824359714985, 0.285643994808197, -0.2019701451063156, 0.031985897570848465, 0.9926174283027649, -0.11836819350719452, 0.07472164183855057, -0.021643510088324547]} +{"t": 2.0786, "q": [-0.36128315329551697, -0.013255298137664795, 0.00965555664151907, 0.6269634962081909, -0.295550137758255, 0.023677965626120567, -0.34803128242492676, 0.00424401368945837, -0.0058388663455843925, 0.6231711506843567, -0.3293474316596985, 0.003478506114333868, 0.004084527958184481, 0.009536543861031532, -0.033246494829654694, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07992279529571533, 0.0635044127702713, 0.01804824359714985, 0.28565600514411926, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11834422498941422, 0.07473362982273102, -0.02166747860610485]} +{"t": 2.0953, "q": [-0.3612746298313141, -0.013263821601867676, 0.00965555664151907, 0.6269379258155823, -0.29553771018981934, 0.02368525043129921, -0.34803128242492676, 0.004226969089359045, -0.0058388663455843925, 0.6231541037559509, -0.3293474316596985, 0.003478506114333868, 0.004084527958184481, 0.009536536410450935, -0.03323666378855705, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07991081476211548, 0.0635044127702713, 0.018036259338259697, 0.28563201427459717, -0.2019461840391159, 0.03196192905306816, 0.992605447769165, -0.11834422498941422, 0.07473362982273102, -0.02166747860610485]} +{"t": 2.112, "q": [-0.36134281754493713, -0.013263821601867676, 0.009628772735595703, 0.6269379258155823, -0.2955418527126312, 0.023678001016378403, -0.3480483293533325, 0.00424401368945837, -0.005825474392622709, 0.6231541037559509, -0.3293432593345642, 0.003471208969131112, 0.004084527958184481, 0.00951374601572752, -0.03324146196246147, 0.28399017453193665, 0.19195133447647095, -0.005332980304956436, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.2856200337409973, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11832025647163391, 0.07470966130495071, -0.02166747860610485]} +{"t": 2.1288, "q": [-0.3612746298313141, -0.013255298137664795, 0.009642165154218674, 0.6269464492797852, -0.2955252230167389, 0.023678090423345566, -0.3480483293533325, 0.00424401368945837, -0.005825474392622709, 0.6231541037559509, -0.3293473422527313, 0.0034639842342585325, 0.004111311864107847, 0.009536536410450935, -0.03323666378855705, 0.28399017453193665, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.01804824359714985, 0.28558409214019775, -0.2019701451063156, 0.03196192905306816, 0.9925934672355652, -0.11830826848745346, 0.07473362982273102, -0.02166747860610485]} +{"t": 2.1455, "q": [-0.36130020022392273, -0.013272343203425407, 0.009682340547442436, 0.6269464492797852, -0.29552945494651794, 0.023714231327176094, -0.3480227589607239, 0.004235491156578064, -0.005852258298546076, 0.6231541037559509, -0.32922685146331787, 0.0032522953115403652, 0.004071136470884085, 0.009521340020000935, -0.033236585557460785, 0.2840021550655365, 0.1919633150100708, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06349242478609085, 0.01806022785604, 0.2855721116065979, -0.2019701451063156, 0.03196192905306816, 0.9926174283027649, -0.11830826848745346, 0.07472164183855057, -0.021643510088324547]} +{"t": 2.1622, "q": [-0.3613172471523285, -0.01328938640654087, 0.00965555664151907, 0.626954972743988, -0.29552945494651794, 0.023714231327176094, -0.3480227589607239, 0.004226969089359045, -0.0058388663455843925, 0.6231626272201538, -0.32925593852996826, 0.003303393255919218, 0.004044352564960718, 0.009544131346046925, -0.033231791108846664, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.28553614020347595, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07473362982273102, -0.021679462864995003]} +{"t": 2.179, "q": [-0.36130020022392273, -0.013272343203425407, 0.00966894906014204, 0.6269464492797852, -0.29552116990089417, 0.02371426671743393, -0.34803128242492676, 0.004235491156578064, -0.0058388663455843925, 0.6231626272201538, -0.32924771308898926, 0.0033033208455890417, 0.004030960611999035, 0.009528934955596924, -0.0332317091524601, 0.28399017453193665, 0.1919393539428711, -0.005368933081626892, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28548821806907654, -0.2019701451063156, 0.03197391331195831, 0.9926174283027649, -0.11830826848745346, 0.07472164183855057, -0.02166747860610485]} +{"t": 2.1957, "q": [-0.36130020022392273, -0.013272343203425407, 0.00965555664151907, 0.6269634962081909, -0.2955169975757599, 0.023707052692770958, -0.34803128242492676, 0.004235491156578064, -0.005852258298546076, 0.623145580291748, -0.329243540763855, 0.0032960239332169294, 0.004044352564960718, 0.009528934955596924, -0.0332317091524601, 0.2840021550655365, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.018036259338259697, 0.2854282855987549, -0.2019461840391159, 0.031985897570848465, 0.992605447769165, -0.1182723194360733, 0.07468569278717041, -0.0216554943472147]} +{"t": 2.2124, "q": [-0.3613172471523285, -0.013272343203425407, 0.009628772735595703, 0.6269720196723938, -0.29552945494651794, 0.023714231327176094, -0.348014235496521, 0.004235491156578064, -0.005825474392622709, 0.6231541037559509, -0.3292393982410431, 0.0032887267880141735, 0.004057744517922401, 0.009544138796627522, -0.033241622149944305, 0.28399017453193665, 0.1919633150100708, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2854282855987549, -0.2019461840391159, 0.03194994479417801, 0.992605447769165, -0.11829628795385361, 0.07472164183855057, -0.021643510088324547]} +{"t": 2.2292, "q": [-0.36128315329551697, -0.013272343203425407, 0.00965555664151907, 0.6269634962081909, -0.2955086827278137, 0.023707088083028793, -0.3480227589607239, 0.004235491156578064, -0.0058388663455843925, 0.6231626272201538, -0.32924771308898926, 0.0033033208455890417, 0.004071136470884085, 0.009544138796627522, -0.033241622149944305, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.9854029417037964, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28538036346435547, -0.2019701451063156, 0.03197391331195831, 0.992605447769165, -0.11830826848745346, 0.07472164183855057, -0.021619541570544243]} +{"t": 2.2459, "q": [-0.3612746298313141, -0.013272343203425407, 0.00966894906014204, 0.6269805431365967, -0.29550865292549133, 0.023692624643445015, -0.34798866510391235, 0.004235491156578064, -0.005852258298546076, 0.6231711506843567, -0.3291066288948059, 0.0030842081177979708, 0.004071136470884085, 0.009544131346046925, -0.033231791108846664, 0.2840021550655365, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2853683829307556, -0.2019461840391159, 0.03194994479417801, 0.9925934672355652, -0.11828429996967316, 0.07472164183855057, -0.0216554943472147]} +{"t": 2.2626, "q": [-0.3612746298313141, -0.01328938640654087, 0.00965555664151907, 0.6269805431365967, -0.29550865292549133, 0.023692624643445015, -0.34799718856811523, 0.00424401368945837, -0.005879042204469442, 0.6231626272201538, -0.3291272222995758, 0.0030916319228708744, 0.004057744517922401, 0.009536536410450935, -0.03323666378855705, 0.2839781939983368, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.2853563725948334, -0.2019701451063156, 0.03197391331195831, 0.992605447769165, -0.11834422498941422, 0.07469767332077026, -0.02166747860610485]} +{"t": 2.2793, "q": [-0.3612661063671112, -0.013280864804983139, 0.009642165154218674, 0.6269805431365967, -0.29550865292549133, 0.023692624643445015, -0.34798866510391235, 0.00424401368945837, -0.005879042204469442, 0.6231711506843567, -0.3291398584842682, 0.0031426032073795795, 0.004084527958184481, 0.009521332569420338, -0.033226754516363144, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.01804824359714985, 0.28533241152763367, -0.2019701451063156, 0.031985897570848465, 0.9925934672355652, -0.11830826848745346, 0.07472164183855057, -0.021691447123885155]} +{"t": 2.2963, "q": [-0.36124053597450256, -0.013272343203425407, 0.00965555664151907, 0.6269805431365967, -0.29550448060035706, 0.023685410618782043, -0.3479630947113037, 0.004235491156578064, -0.005865650251507759, 0.6231626272201538, -0.32912322878837585, 0.0031133966986089945, 0.004057744517922401, 0.009536536410450935, -0.03323666378855705, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2853204309940338, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11830826848745346, 0.07469767332077026, -0.021679462864995003]} +{"t": 2.3131, "q": [-0.36124905943870544, -0.01328938640654087, 0.00966894906014204, 0.6269890666007996, -0.29550448060035706, 0.023685410618782043, -0.3479630947113037, 0.004235491156578064, -0.005825474392622709, 0.6231711506843567, -0.32911908626556396, 0.0031060995534062386, 0.004111311864107847, 0.009536536410450935, -0.03323666378855705, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.2853204309940338, -0.2019701451063156, 0.03193796053528786, 0.992605447769165, -0.11832025647163391, 0.07472164183855057, -0.02166747860610485]} +{"t": 2.3298, "q": [-0.36124053597450256, -0.01328938640654087, 0.00966894906014204, 0.6269805431365967, -0.29550448060035706, 0.023685410618782043, -0.34795457124710083, 0.004235491156578064, -0.005852258298546076, 0.6231711506843567, -0.32911086082458496, 0.003106027143076062, 0.004030960611999035, 0.009536536410450935, -0.03323666378855705, 0.2840021550655365, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07992279529571533, 0.06351639330387115, 0.01806022785604, 0.2853204309940338, -0.2019461840391159, 0.03194994479417801, 0.9925934672355652, -0.11832025647163391, 0.07474561035633087, -0.0216554943472147]} +{"t": 2.3465, "q": [-0.3612064719200134, -0.013297909870743752, 0.009682340547442436, 0.6269805431365967, -0.29550448060035706, 0.023685410618782043, -0.34795457124710083, 0.004261057823896408, -0.005852258298546076, 0.6231626272201538, -0.3291233479976654, 0.003127936739474535, 0.004071136470884085, 0.009544138796627522, -0.033241622149944305, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07992279529571533, 0.06351639330387115, 0.01804824359714985, 0.2853204309940338, -0.2019701451063156, 0.03196192905306816, 0.9926174283027649, -0.11830826848745346, 0.07472164183855057, -0.02166747860610485]} +{"t": 2.3633, "q": [-0.3611809015274048, -0.013306431472301483, 0.009709124453365803, 0.6269720196723938, -0.29550865292549133, 0.023692624643445015, -0.3479204773902893, 0.00424401368945837, -0.0058388663455843925, 0.6231626272201538, -0.32911086082458496, 0.003106027143076062, 0.004044352564960718, 0.009536529891192913, -0.03322683274745941, 0.28399017453193665, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07991081476211548, 0.0635044127702713, 0.01804824359714985, 0.28530845046043396, -0.2019461840391159, 0.03196192905306816, 0.992605447769165, -0.118248350918293, 0.07474561035633087, -0.0216554943472147]} +{"t": 2.38, "q": [-0.361163854598999, -0.01328938640654087, 0.009695732034742832, 0.6269805431365967, -0.2954796552658081, 0.023728923872113228, -0.34790343046188354, 0.004269579891115427, -0.005892434157431126, 0.6231796741485596, -0.3290776312351227, 0.0030476320534944534, 0.004071136470884085, 0.009536543861031532, -0.033246494829654694, 0.28399017453193665, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.06351639330387115, 0.018036259338259697, 0.2852725088596344, -0.2019461840391159, 0.03193796053528786, 0.992605447769165, -0.11830826848745346, 0.07473362982273102, -0.021643510088324547]} +{"t": 2.3967, "q": [-0.3611723780632019, -0.013297909870743752, 0.009695732034742832, 0.6269805431365967, -0.2954879403114319, 0.02371440827846527, -0.34790343046188354, 0.00424401368945837, -0.005892434157431126, 0.6231796741485596, -0.3290445804595947, 0.0030182809568941593, 0.004044352564960718, 0.009544138796627522, -0.033241622149944305, 0.28399017453193665, 0.19195133447647095, -0.005368933081626892, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.018036259338259697, 0.2852725088596344, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07473362982273102, -0.0216554943472147]} +{"t": 2.4135, "q": [-0.36111271381378174, -0.013297909870743752, 0.009709124453365803, 0.6269890666007996, -0.2954796552658081, 0.023728923872113228, -0.3479119539260864, 0.004252535756677389, -0.005865650251507759, 0.6231967210769653, -0.32903239130973816, 0.0030399553943425417, 0.004017568659037352, 0.009551740251481533, -0.03324657678604126, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.0635044127702713, 0.018036259338259697, 0.2852725088596344, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11829628795385361, 0.07472164183855057, -0.0216554943472147]} +{"t": 2.4303, "q": [-0.3611212372779846, -0.013306431472301483, 0.009762692265212536, 0.6269805431365967, -0.29548379778862, 0.02372167445719242, -0.34790343046188354, 0.004261057823896408, -0.005892434157431126, 0.6231881976127625, -0.329024076461792, 0.00302536110393703, 0.004084527958184481, 0.009544138796627522, -0.033241622149944305, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2852964699268341, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11832025647163391, 0.07475759834051132, -0.021631525829434395]} +{"t": 2.4471, "q": [-0.3611723780632019, -0.013297909870743752, 0.009722515940666199, 0.6269805431365967, -0.2954879403114319, 0.02371440827846527, -0.34786084294319153, 0.00424401368945837, -0.005879042204469442, 0.6231881976127625, -0.329024076461792, 0.00302536110393703, 0.004097919911146164, 0.009536536410450935, -0.03323666378855705, 0.2840021550655365, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.28530845046043396, -0.2019461840391159, 0.03194994479417801, 0.9926174283027649, -0.11830826848745346, 0.07473362982273102, -0.021631525829434395]} +{"t": 2.4638, "q": [-0.361095666885376, -0.013297909870743752, 0.009749299846589565, 0.6269805431365967, -0.29549211263656616, 0.023721622303128242, -0.34784379601478577, 0.004252535756677389, -0.005879042204469442, 0.6231881976127625, -0.3290199935436249, 0.0030326037667691708, 0.004057744517922401, 0.009551732800900936, -0.03323674574494362, 0.28399017453193665, 0.19195133447647095, -0.005368933081626892, 0.985438883304596, 0.07991081476211548, 0.06351639330387115, 0.01806022785604, 0.28533241152763367, -0.2019461840391159, 0.03196192905306816, 0.992605447769165, -0.11833223700523376, 0.07474561035633087, -0.021631525829434395]} +{"t": 2.4805, "q": [-0.36107009649276733, -0.013306431472301483, 0.00973590835928917, 0.6269975900650024, -0.29547548294067383, 0.023721709847450256, -0.34784379601478577, 0.004252535756677389, -0.005852258298546076, 0.6231881976127625, -0.32899507880210876, 0.002988821128383279, 0.004057744517922401, 0.009544138796627522, -0.033241622149944305, 0.2840021550655365, 0.1919633150100708, -0.005368933081626892, 0.9854149222373962, 0.07988684624433517, 0.0635044127702713, 0.01804824359714985, 0.28528448939323425, -0.2019461840391159, 0.03194994479417801, 0.992605447769165, -0.11828429996967316, 0.07473362982273102, -0.021643510088324547]} +{"t": 2.4972, "q": [-0.36101046204566956, -0.013297909870743752, 0.009762692265212536, 0.6269890666007996, -0.2954920828342438, 0.023707158863544464, -0.34780970215797424, 0.004269579891115427, -0.0058388663455843925, 0.6231881976127625, -0.32899922132492065, 0.0029961182735860348, 0.004004176706075668, 0.009559335187077522, -0.03324170038104057, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.2852725088596344, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11834422498941422, 0.07472164183855057, -0.021643510088324547]} +{"t": 2.5141, "q": [-0.3610530495643616, -0.013314953073859215, 0.009722515940666199, 0.6269890666007996, -0.2954920828342438, 0.023707158863544464, -0.3478182256221771, 0.004269579891115427, -0.005865650251507759, 0.6231881976127625, -0.3290034830570221, 0.003017937298864126, 0.003977392800152302, 0.009528948925435543, -0.03325137123465538, 0.28399017453193665, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07991081476211548, 0.0635044127702713, 0.01806022785604, 0.2852725088596344, -0.2019461840391159, 0.03194994479417801, 0.9926174283027649, -0.11830826848745346, 0.07473362982273102, -0.0216554943472147]} +{"t": 2.5308, "q": [-0.36101898550987244, -0.013314953073859215, 0.00973590835928917, 0.6269975900650024, -0.2954961955547333, 0.023699909448623657, -0.3478182256221771, 0.004261057823896408, -0.005865650251507759, 0.6231881976127625, -0.32901161909103394, 0.003003469668328762, 0.004004176706075668, 0.009536543861031532, -0.033246494829654694, 0.2839781939983368, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07987485826015472, 0.0635044127702713, 0.018036259338259697, 0.28523653745651245, -0.2019461840391159, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07472164183855057, -0.0216554943472147]} +{"t": 2.5475, "q": [-0.36107009649276733, -0.013306431472301483, 0.00973590835928917, 0.6269890666007996, -0.2954879403114319, 0.02371440827846527, -0.34782674908638, 0.004269579891115427, -0.005865650251507759, 0.6231881976127625, -0.3290282189846039, 0.0030326582491397858, 0.004057744517922401, 0.00953655131161213, -0.033256325870752335, 0.2839781939983368, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.2852245569229126, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11829628795385361, 0.07473362982273102, -0.0216554943472147]} +{"t": 2.5643, "q": [-0.36107009649276733, -0.013297909870743752, 0.009722515940666199, 0.6269805431365967, -0.29549211263656616, 0.023721622303128242, -0.34780970215797424, 0.004261057823896408, -0.005865650251507759, 0.6231881976127625, -0.3290404975414276, 0.003025505691766739, 0.004044352564960718, 0.009551740251481533, -0.03324657678604126, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07988684624433517, 0.06349242478609085, 0.018036259338259697, 0.28526049852371216, -0.2019701451063156, 0.03193796053528786, 0.992605447769165, -0.1182723194360733, 0.07472164183855057, -0.02166747860610485]} +{"t": 2.581, "q": [-0.361095666885376, -0.013280864804983139, 0.00966894906014204, 0.6269805431365967, -0.2954961955547333, 0.023699909448623657, -0.34784379601478577, 0.004261057823896408, -0.005879042204469442, 0.6231881976127625, -0.32903218269348145, 0.003010911401361227, 0.004084527958184481, 0.009559341706335545, -0.033251531422138214, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9854269027709961, 0.07989882677793503, 0.0635044127702713, 0.01804824359714985, 0.2852725088596344, -0.2019461840391159, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07473362982273102, -0.0216554943472147]} +{"t": 2.5977, "q": [-0.36110419034957886, -0.013272343203425407, 0.00966894906014204, 0.6269720196723938, -0.2954920828342438, 0.023707158863544464, -0.3478352725505829, 0.004261057823896408, -0.005865650251507759, 0.6231881976127625, -0.32903218269348145, 0.003010911401361227, 0.004030960611999035, 0.009559341706335545, -0.033251531422138214, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.28526049852371216, -0.2019701451063156, 0.03193796053528786, 0.992605447769165, -0.11832025647163391, 0.07473362982273102, -0.0216554943472147]} +{"t": 2.6146, "q": [-0.36111271381378174, -0.013272343203425407, 0.00966894906014204, 0.6269720196723938, -0.295492023229599, 0.023692695423960686, -0.34784379601478577, 0.004261057823896408, -0.005879042204469442, 0.6231881976127625, -0.3290445804595947, 0.0030182809568941593, 0.004057744517922401, 0.009544145315885544, -0.033251453191041946, 0.2840021550655365, 0.19192737340927124, -0.005368933081626892, 0.9854149222373962, 0.07988684624433517, 0.06351639330387115, 0.018036259338259697, 0.2852485179901123, -0.2019701451063156, 0.03193796053528786, 0.992605447769165, -0.11832025647163391, 0.07476957887411118, -0.021679462864995003]} +{"t": 2.6313, "q": [-0.361163854598999, -0.01328938640654087, 0.00965555664151907, 0.6269464492797852, -0.2955251932144165, 0.023663610219955444, -0.34786084294319153, 0.00424401368945837, -0.005825474392622709, 0.6231796741485596, -0.3291068971157074, 0.003127773990854621, 0.004071136470884085, 0.00955174770206213, -0.0332564078271389, 0.2840021550655365, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.06351639330387115, 0.018036259338259697, 0.28526049852371216, -0.2019701451063156, 0.03194994479417801, 0.9925934672355652, -0.11833223700523376, 0.07472164183855057, -0.021703431382775307]} +{"t": 2.6481, "q": [-0.36114680767059326, -0.01328938640654087, 0.00965555664151907, 0.6269464492797852, -0.29553771018981934, 0.02368525043129921, -0.347869336605072, 0.00424401368945837, -0.0058388663455843925, 0.6231711506843567, -0.32927289605140686, 0.00339070544578135, 0.004084527958184481, 0.00953655131161213, -0.033256325870752335, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01806022785604, 0.28526049852371216, -0.2019461840391159, 0.03194994479417801, 0.992605447769165, -0.11832025647163391, 0.07473362982273102, -0.021679462864995003]} +{"t": 2.6648, "q": [-0.36115533113479614, -0.013255298137664795, 0.00965555664151907, 0.6269464492797852, -0.29553353786468506, 0.023678036406636238, -0.347869336605072, 0.004235491156578064, -0.0058388663455843925, 0.6231626272201538, -0.3293226659297943, 0.003463767236098647, 0.004057744517922401, 0.00955174770206213, -0.0332564078271389, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.985438883304596, 0.07989882677793503, 0.06354036182165146, 0.018036259338259697, 0.28526049852371216, -0.2019461840391159, 0.03196192905306816, 0.9926174283027649, -0.11834422498941422, 0.07473362982273102, -0.02166747860610485]} +{"t": 2.6815, "q": [-0.36115533113479614, -0.013280864804983139, 0.009682340547442436, 0.6269294023513794, -0.2955169379711151, 0.02369258925318718, -0.3478863835334778, 0.00424401368945837, -0.005825474392622709, 0.6231626272201538, -0.3292562961578369, 0.00336151709780097, 0.004071136470884085, 0.009559349156916142, -0.033261362463235855, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.0635044127702713, 0.018036259338259697, 0.2852485179901123, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11832025647163391, 0.07475759834051132, -0.02166747860610485]} +{"t": 2.6983, "q": [-0.3611382842063904, -0.013272343203425407, 0.00965555664151907, 0.6269379258155823, -0.29550865292549133, 0.023692624643445015, -0.3478778600692749, 0.004235491156578064, -0.005825474392622709, 0.6231711506843567, -0.32921889424324036, 0.0032958067022264004, 0.0041247038170695305, 0.009544145315885544, -0.033251453191041946, 0.2840021550655365, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2852485179901123, -0.2019701451063156, 0.03196192905306816, 0.9925934672355652, -0.11828429996967316, 0.07473362982273102, -0.021691447123885155]} +{"t": 2.715, "q": [-0.36115533113479614, -0.013280864804983139, 0.009682340547442436, 0.6269379258155823, -0.2955128252506256, 0.023699838668107986, -0.3478778600692749, 0.004235491156578064, -0.005825474392622709, 0.6231626272201538, -0.3291440010070801, 0.0031499003525823355, 0.0041247038170695305, 0.009551740251481533, -0.03324657678604126, 0.28401416540145874, 0.1919393539428711, -0.005320996046066284, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.01804824359714985, 0.28526049852371216, -0.2019461840391159, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07470966130495071, -0.0216554943472147]} +{"t": 2.7318, "q": [-0.36114680767059326, -0.013297909870743752, 0.009682340547442436, 0.6269294023513794, -0.2955128252506256, 0.023699838668107986, -0.3478863835334778, 0.004235491156578064, -0.0058388663455843925, 0.6231626272201538, -0.32916903495788574, 0.0032082232646644115, 0.004071136470884085, 0.009528948925435543, -0.03325137123465538, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.985438883304596, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28528448939323425, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11832025647163391, 0.07475759834051132, -0.021643510088324547]} +{"t": 2.7486, "q": [-0.36114680767059326, -0.013280864804983139, 0.00965555664151907, 0.6269379258155823, -0.29550862312316895, 0.023678161203861237, -0.3478778600692749, 0.004235491156578064, -0.005825474392622709, 0.6231711506843567, -0.3291025459766388, 0.003091433085501194, 0.004057744517922401, 0.009559341706335545, -0.033251531422138214, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07991081476211548, 0.0635044127702713, 0.018036259338259697, 0.28526049852371216, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11828429996967316, 0.07473362982273102, -0.021643510088324547]} +{"t": 2.7653, "q": [-0.36111271381378174, -0.013272343203425407, 0.009695732034742832, 0.6269634962081909, -0.29550448060035706, 0.023685410618782043, -0.3478863835334778, 0.00424401368945837, -0.005825474392622709, 0.6231711506843567, -0.32909443974494934, 0.003105882555246353, 0.004044352564960718, 0.009544145315885544, -0.033251453191041946, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2852485179901123, -0.2019461840391159, 0.03194994479417801, 0.992605447769165, -0.11828429996967316, 0.07473362982273102, -0.0216554943472147]} +{"t": 2.7821, "q": [-0.36111271381378174, -0.01328938640654087, 0.009709124453365803, 0.6269634962081909, -0.2955128252506256, 0.023699838668107986, -0.3478863835334778, 0.00424401368945837, -0.0058388663455843925, 0.6231711506843567, -0.32909858226776123, 0.003113179700449109, 0.004097919911146164, 0.009551732800900936, -0.03323674574494362, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.985438883304596, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2852245569229126, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11830826848745346, 0.07478156685829163, -0.0216554943472147]} +{"t": 2.7988, "q": [-0.36115533113479614, -0.013280864804983139, 0.009722515940666199, 0.6269464492797852, -0.29550862312316895, 0.023678161203861237, -0.3478863835334778, 0.00424401368945837, -0.0058388663455843925, 0.6231626272201538, -0.32910671830177307, 0.00309873023070395, 0.004097919911146164, 0.009559341706335545, -0.033251531422138214, 0.28401416540145874, 0.19195133447647095, -0.00535694882273674, 0.985438883304596, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28523653745651245, -0.2019701451063156, 0.03196192905306816, 0.9925934672355652, -0.11830826848745346, 0.07476957887411118, -0.021679462864995003]} +{"t": 2.8155, "q": [-0.3611382842063904, -0.01328938640654087, 0.009682340547442436, 0.6269464492797852, -0.29550448060035706, 0.023685410618782043, -0.3478863835334778, 0.004235491156578064, -0.005852258298546076, 0.6231711506843567, -0.3291027247905731, 0.003120476845651865, 0.004030960611999035, 0.009574524126946926, -0.0332319475710392, 0.2840021550655365, 0.1919393539428711, -0.005344964563846588, 0.9854269027709961, 0.07988684624433517, 0.06349242478609085, 0.01806022785604, 0.28518861532211304, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11832025647163391, 0.07474561035633087, -0.021679462864995003]} +{"t": 2.8323, "q": [-0.36115533113479614, -0.01328938640654087, 0.009695732034742832, 0.6269464492797852, -0.29550865292549133, 0.023692624643445015, -0.3478863835334778, 0.004235491156578064, -0.005825474392622709, 0.6231626272201538, -0.3291027247905731, 0.003120476845651865, 0.004044352564960718, 0.009551732800900936, -0.03323674574494362, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.985438883304596, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.28521257638931274, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11834422498941422, 0.07472164183855057, -0.021679462864995003]} +{"t": 2.849, "q": [-0.3611297607421875, -0.013306431472301483, 0.009695732034742832, 0.6269634962081909, -0.29550865292549133, 0.023692624643445015, -0.347869336605072, 0.004235491156578064, -0.005852258298546076, 0.6231626272201538, -0.32909858226776123, 0.003113179700449109, 0.004097919911146164, 0.009544138796627522, -0.033241622149944305, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.28521257638931274, -0.2019701451063156, 0.03194994479417801, 0.9925934672355652, -0.11830826848745346, 0.07474561035633087, -0.021643510088324547]} +{"t": 2.8657, "q": [-0.3611212372779846, -0.01328938640654087, 0.009709124453365803, 0.6269464492797852, -0.29550448060035706, 0.023685410618782043, -0.347869336605072, 0.004235491156578064, -0.0058388663455843925, 0.6231711506843567, -0.3291027247905731, 0.003120476845651865, 0.004044352564960718, 0.009544138796627522, -0.033241622149944305, 0.2840021550655365, 0.1919393539428711, -0.00535694882273674, 0.985438883304596, 0.07992279529571533, 0.0635044127702713, 0.01806022785604, 0.28521257638931274, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07472164183855057, -0.0216554943472147]} +{"t": 2.8824, "q": [-0.36114680767059326, -0.01328938640654087, 0.009682340547442436, 0.6269634962081909, -0.29550448060035706, 0.023685410618782043, -0.347869336605072, 0.004235491156578064, -0.0058388663455843925, 0.6231796741485596, -0.3291027247905731, 0.003120476845651865, 0.004071136470884085, 0.009559335187077522, -0.03324170038104057, 0.2840021550655365, 0.1919393539428711, -0.005368933081626892, 0.9854149222373962, 0.07983890920877457, 0.06351639330387115, 0.01804824359714985, 0.2851766347885132, -0.2019461840391159, 0.03196192905306816, 0.9925934672355652, -0.11833223700523376, 0.07475759834051132, -0.02166747860610485]} +{"t": 2.8992, "q": [-0.36114680767059326, -0.013297909870743752, 0.009722515940666199, 0.6269464492797852, -0.29550865292549133, 0.023692624643445015, -0.3478778600692749, 0.004235491156578064, -0.005865650251507759, 0.6231796741485596, -0.3291025459766388, 0.003091433085501194, 0.004097919911146164, 0.009551732800900936, -0.03323674574494362, 0.2840021550655365, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.01804824359714985, 0.2851766347885132, -0.2019701451063156, 0.03194994479417801, 0.9926174283027649, -0.11834422498941422, 0.07473362982273102, -0.0216554943472147]} +{"t": 2.9159, "q": [-0.3611212372779846, -0.01328938640654087, 0.009695732034742832, 0.6269464492797852, -0.29550448060035706, 0.023685410618782043, -0.3478778600692749, 0.004235491156578064, -0.005879042204469442, 0.6231626272201538, -0.3291025459766388, 0.003091433085501194, 0.004084527958184481, 0.009551740251481533, -0.03324657678604126, 0.2839781939983368, 0.1919393539428711, -0.005368933081626892, 0.9854149222373962, 0.07989882677793503, 0.06349242478609085, 0.018036259338259697, 0.2851526439189911, -0.2019701451063156, 0.03194994479417801, 0.9925934672355652, -0.11832025647163391, 0.07472164183855057, -0.0216554943472147]} +{"t": 2.9327, "q": [-0.36114680767059326, -0.01328938640654087, 0.00966894906014204, 0.6269294023513794, -0.29550036787986755, 0.02370712347328663, -0.3478863835334778, 0.00424401368945837, -0.005865650251507759, 0.6231711506843567, -0.32910671830177307, 0.00309873023070395, 0.004097919911146164, 0.009551740251481533, -0.03324657678604126, 0.28399017453193665, 0.1919393539428711, -0.005368933081626892, 0.9854149222373962, 0.07989882677793503, 0.0635283812880516, 0.018036259338259697, 0.28518861532211304, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07473362982273102, -0.021679462864995003]} +{"t": 2.9494, "q": [-0.361095666885376, -0.01328938640654087, 0.009682340547442436, 0.6269294023513794, -0.29550865292549133, 0.023692624643445015, -0.34786084294319153, 0.00424401368945837, -0.005905826110392809, 0.6231711506843567, -0.32910671830177307, 0.00309873023070395, 0.004071136470884085, 0.009551740251481533, -0.03324657678604126, 0.28396621346473694, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07986287772655487, 0.0635044127702713, 0.018036259338259697, 0.28518861532211304, -0.2019701451063156, 0.03196192905306816, 0.9925934672355652, -0.11830826848745346, 0.07475759834051132, -0.021643510088324547]} +{"t": 2.9662, "q": [-0.3610786199569702, -0.013297909870743752, 0.00965555664151907, 0.6269379258155823, -0.2954961359500885, 0.02367098443210125, -0.34786084294319153, 0.004269579891115427, -0.005865650251507759, 0.6231711506843567, -0.32911086082458496, 0.003106027143076062, 0.004097919911146164, 0.009582125581800938, -0.033236902207136154, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.06349242478609085, 0.01804824359714985, 0.28518861532211304, -0.2019461840391159, 0.03197391331195831, 0.9926174283027649, -0.11830826848745346, 0.07476957887411118, -0.0216554943472147]} +{"t": 2.9831, "q": [-0.36106157302856445, -0.013263821601867676, 0.00965555664151907, 0.6269123554229736, -0.2955003082752228, 0.023678196594119072, -0.347869336605072, 0.004252535756677389, -0.005879042204469442, 0.6231796741485596, -0.32911086082458496, 0.003106027143076062, 0.004044352564960718, 0.009582111611962318, -0.03321724012494087, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.985438883304596, 0.07991081476211548, 0.0635044127702713, 0.01804824359714985, 0.28518861532211304, -0.2019461840391159, 0.03197391331195831, 0.9926174283027649, -0.11832025647163391, 0.07476957887411118, -0.021643510088324547]} +{"t": 2.9999, "q": [-0.36106157302856445, -0.01328938640654087, 0.009695732034742832, 0.6269294023513794, -0.29550865292549133, 0.023692624643445015, -0.347869336605072, 0.004269579891115427, -0.005865650251507759, 0.6231796741485596, -0.3291025459766388, 0.003091433085501194, 0.004057744517922401, 0.00957451667636633, -0.03322211652994156, 0.2839781939983368, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.06351639330387115, 0.01804824359714985, 0.2851526439189911, -0.2019461840391159, 0.03196192905306816, 0.9926174283027649, -0.11832025647163391, 0.07476957887411118, -0.0216554943472147]} +{"t": 3.0166, "q": [-0.36107009649276733, -0.013297909870743752, 0.009682340547442436, 0.6269208788871765, -0.29550033807754517, 0.02369266003370285, -0.34786084294319153, 0.004261057823896408, -0.005852258298546076, 0.6231626272201538, -0.32909026741981506, 0.0030985854100435972, 0.004071136470884085, 0.00957451667636633, -0.03322211652994156, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.985438883304596, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2851286828517914, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07473362982273102, -0.021679462864995003]} +{"t": 3.0333, "q": [-0.36101046204566956, -0.01328938640654087, 0.009695732034742832, 0.6268782615661621, -0.29550033807754517, 0.02369266003370285, -0.3478352725505829, 0.004269579891115427, -0.005865650251507759, 0.6231626272201538, -0.3291027247905731, 0.003120476845651865, 0.004044352564960718, 0.00958969909697771, -0.033202532678842545, 0.28364264965057373, 0.18992599844932556, -0.004733768757432699, 0.9860979914665222, 0.07986287772655487, 0.06366020441055298, 0.018096180632710457, 0.28420591354370117, -0.20050807297229767, 0.03163835406303406, 0.9938997626304626, -0.11823636293411255, 0.07484148442745209, -0.02178732119500637]} +{"t": 3.0501, "q": [-0.3610275089740753, -0.01328938640654087, 0.009722515940666199, 0.6268782615661621, -0.2954919934272766, 0.023678231984376907, -0.34786084294319153, 0.004269579891115427, -0.005879042204469442, 0.6231626272201538, -0.32909026741981506, 0.0030985854100435972, 0.004084527958184481, 0.009597286581993103, -0.03318782523274422, 0.282875657081604, 0.1874212920665741, -0.00441019469872117, 0.9876199960708618, 0.07979097217321396, 0.06394782662391663, 0.018132133409380913, 0.2829475700855255, -0.19886623322963715, 0.03159041702747345, 0.9959011077880859, -0.11818842589855194, 0.07510513812303543, -0.02208692766726017]} +{"t": 3.0669, "q": [-0.36107009649276733, -0.013323476538062096, 0.009709124453365803, 0.6268782615661621, -0.2954961955547333, 0.023699909448623657, -0.34786084294319153, 0.004252535756677389, -0.0058388663455843925, 0.6231711506843567, -0.329094260931015, 0.003076838795095682, 0.004071136470884085, 0.009597286581993103, -0.03318782523274422, 0.2820487320423126, 0.18438929319381714, -0.004326305352151394, 0.9891659617424011, 0.0797070786356926, 0.0640556812286377, 0.018192054703831673, 0.28196483850479126, -0.19646938145160675, 0.031674306839704514, 0.9975429177284241, -0.11815247684717178, 0.0752369686961174, -0.022242721170186996]} +{"t": 3.0836, "q": [-0.3610275089740753, -0.013280864804983139, 0.00973590835928917, 0.6268612146377563, -0.2955003082752228, 0.023678196594119072, -0.34785231947898865, 0.004235491156578064, -0.0058388663455843925, 0.6231711506843567, -0.32909026741981506, 0.0030985854100435972, 0.004071136470884085, 0.009604902938008308, -0.03321244567632675, 0.28079038858413696, 0.18038655817508698, -0.004625910893082619, 0.9914429783821106, 0.0797070786356926, 0.0641036182641983, 0.01816808618605137, 0.2811978757381439, -0.1929100751876831, 0.031806133687496185, 0.9990170001983643, -0.11814048886299133, 0.07535681128501892, -0.02232661098241806]} +{"t": 3.1003, "q": [-0.3610530495643616, -0.01328938640654087, 0.009722515940666199, 0.626886785030365, -0.29550448060035706, 0.023685410618782043, -0.34782674908638, 0.004218447022140026, -0.005852258298546076, 0.6231796741485596, -0.3290861248970032, 0.0030912882648408413, 0.004057744517922401, 0.009612511843442917, -0.03322723135352135, 0.2791365683078766, 0.1742386519908905, -0.00447011599317193, 0.9942952394485474, 0.0797310471534729, 0.06419949233531952, 0.018216023221611977, 0.2805507183074951, -0.18863169848918915, 0.03183010220527649, 1.0003832578659058, -0.11811652034521103, 0.07535681128501892, -0.02238653227686882]} +{"t": 3.117, "q": [-0.3610871434211731, -0.013323476538062096, 0.009722515940666199, 0.6268782615661621, -0.29550865292549133, 0.023692624643445015, -0.3478352725505829, 0.004218447022140026, -0.0057719070464372635, 0.6231626272201538, -0.3291318118572235, 0.003171574790030718, 0.0041247038170695305, 0.00960490945726633, -0.03322227671742439, 0.2775786221027374, 0.16821058094501495, -0.004661863669753075, 0.9970635771751404, 0.07968311011791229, 0.06422346085309982, 0.018204038962721825, 0.2797357738018036, -0.18405373394489288, 0.03184208646416664, 1.002180814743042, -0.11809255182743073, 0.07536879181861877, -0.022374548017978668]} +{"t": 3.1338, "q": [-0.3610530495643616, -0.013323476538062096, 0.009682340547442436, 0.6268782615661621, -0.2954961955547333, 0.023699909448623657, -0.34784379601478577, 0.004218447022140026, -0.005852258298546076, 0.6231711506843567, -0.32909026741981506, 0.0030985854100435972, 0.004097919911146164, 0.009604895487427711, -0.03320261463522911, 0.2762603461742401, 0.16075639426708221, -0.004685832187533379, 0.9994723796844482, 0.07963517308235168, 0.06428338587284088, 0.018204038962721825, 0.27866917848587036, -0.17864884436130524, 0.03189002349972725, 1.0045536756515503, -0.11805660277605057, 0.07541672885417938, -0.022470422089099884]} +{"t": 3.1505, "q": [-0.36114680767059326, -0.013297909870743752, 0.009709124453365803, 0.6268782615661621, -0.29550036787986755, 0.02370712347328663, -0.34786084294319153, 0.004209924954921007, -0.005812082905322313, 0.6231626272201538, -0.3290861248970032, 0.0030912882648408413, 0.004084527958184481, 0.009589706547558308, -0.033212363719940186, 0.2751338481903076, 0.15299062430858612, -0.004733768757432699, 1.0019770860671997, 0.07963517308235168, 0.06429536640644073, 0.018216023221611977, 0.27760258316993713, -0.17282451689243317, 0.03194994479417801, 1.006794810295105, -0.11803263425827026, 0.07545268535614014, -0.022458437830209732]} +{"t": 3.1673, "q": [-0.3611297607421875, -0.01328938640654087, 0.009722515940666199, 0.626886785030365, -0.29550448060035706, 0.023685410618782043, -0.347869336605072, 0.004201402887701988, -0.005812082905322313, 0.6231796741485596, -0.3290861248970032, 0.0030912882648408413, 0.004044352564960718, 0.009635274298489094, -0.033183109015226364, 0.27437883615493774, 0.14515294134616852, -0.004805674310773611, 1.0040743350982666, 0.07955128699541092, 0.06431933492422104, 0.018192054703831673, 0.276416152715683, -0.16726383566856384, 0.03197391331195831, 1.0087721347808838, -0.11804462224245071, 0.0754886344075203, -0.022458437830209732]} +{"t": 3.1841, "q": [-0.36111271381378174, -0.013314953073859215, 0.009749299846589565, 0.6268782615661621, -0.29550036787986755, 0.02370712347328663, -0.3478778600692749, 0.004192880820482969, -0.0057719070464372635, 0.6231711506843567, -0.3290903568267822, 0.0031131075229495764, 0.004044352564960718, 0.00962766446173191, -0.03316832333803177, 0.27394741773605347, 0.13683588802814484, -0.004805674310773611, 1.00566828250885, 0.07962319254875183, 0.06434330344200134, 0.018192054703831673, 0.274810254573822, -0.16127172112464905, 0.03193796053528786, 1.0113487243652344, -0.11803263425827026, 0.0755605399608612, -0.022482406347990036]} +{"t": 3.2008, "q": [-0.36106157302856445, -0.01328938640654087, 0.009722515940666199, 0.6268782615661621, -0.2954961955547333, 0.023699909448623657, -0.34785231947898865, 0.00418435875326395, -0.005825474392622709, 0.6231711506843567, -0.32909026741981506, 0.0030985854100435972, 0.004071136470884085, 0.009627636522054672, -0.033128999173641205, 0.273611843585968, 0.1290820837020874, -0.004877579864114523, 1.0067708492279053, 0.07952731847763062, 0.06436727195978165, 0.018204038962721825, 0.2733481824398041, -0.15548333525657654, 0.03191399201750755, 1.013014554977417, -0.11803263425827026, 0.07565641403198242, -0.022518359124660492]} +{"t": 3.2175, "q": [-0.3610275089740753, -0.013272343203425407, 0.009722515940666199, 0.6268697381019592, -0.29550448060035706, 0.023685410618782043, -0.3478778600692749, 0.004218447022140026, -0.005825474392622709, 0.6231711506843567, -0.32909026741981506, 0.0030985854100435972, 0.004044352564960718, 0.009635230526328087, -0.03312412276864052, 0.27320438623428345, 0.1206931322813034, -0.004841627087444067, 1.0080171823501587, 0.07951533794403076, 0.06436727195978165, 0.018192054703831673, 0.271814227104187, -0.1492035984992981, 0.03193796053528786, 1.0145126581192017, -0.11805660277605057, 0.07568038254976273, -0.022482406347990036]} +{"t": 3.2343, "q": [-0.3610530495643616, -0.01328938640654087, 0.009722515940666199, 0.6268527507781982, -0.295492023229599, 0.023692695423960686, -0.34790343046188354, 0.00424401368945837, -0.005785298999398947, 0.6231626272201538, -0.329094260931015, 0.003076838795095682, 0.003977392800152302, 0.009650426916778088, -0.033124200999736786, 0.27230557799339294, 0.11243600398302078, -0.0049614692106842995, 1.0099705457687378, 0.07950334995985031, 0.0643792599439621, 0.018204038962721825, 0.2702682614326477, -0.1428879201412201, 0.03197391331195831, 1.015986680984497, -0.11800866574048996, 0.07572831958532333, -0.022494390606880188]} +{"t": 3.2511, "q": [-0.3610445559024811, -0.013272343203425407, 0.009722515940666199, 0.6268186569213867, -0.29550448060035706, 0.023685410618782043, -0.34789490699768066, 0.00424401368945837, -0.005812082905322313, 0.6231796741485596, -0.329094260931015, 0.003076838795095682, 0.003977392800152302, 0.009658021852374077, -0.0331193245947361, 0.27083149552345276, 0.10480204969644547, -0.004985437728464603, 1.0129066705703735, 0.07952731847763062, 0.0643792599439621, 0.01822800748050213, 0.26905784010887146, -0.13693176209926605, 0.031985897570848465, 1.0170292854309082, -0.11800866574048996, 0.07576426863670349, -0.022494390606880188]} +{"t": 3.2678, "q": [-0.3610871434211731, -0.013255298137664795, 0.00965555664151907, 0.6268101334571838, -0.2954961657524109, 0.02368544600903988, -0.34789490699768066, 0.004235491156578064, -0.005825474392622709, 0.6231626272201538, -0.32909831404685974, 0.0030696140602231026, 0.004084527958184481, 0.00968080572783947, -0.03310469910502434, 0.26886609196662903, 0.09676063805818558, -0.0049494849517941475, 1.0163462162017822, 0.07950334995985031, 0.0644032284617424, 0.018216023221611977, 0.2673680782318115, -0.1308797299861908, 0.03199788182973862, 1.018311619758606, -0.11803263425827026, 0.07577625662088394, -0.022458437830209732]} +{"t": 3.2845, "q": [-0.36111271381378174, -0.013238254934549332, 0.00965555664151907, 0.626801609992981, -0.2954878807067871, 0.023685481399297714, -0.34790343046188354, 0.004278101958334446, -0.005852258298546076, 0.6231626272201538, -0.3291357159614563, 0.0031353060621768236, 0.004071136470884085, 0.009688393212854862, -0.03308999165892601, 0.2666250467300415, 0.08963002264499664, -0.0049614692106842995, 1.0205646753311157, 0.07953930646181107, 0.06445116549730301, 0.01829991117119789, 0.2652828097343445, -0.12473181635141373, 0.03194994479417801, 1.0202889442443848, -0.11802065372467041, 0.0757882371544838, -0.022542327642440796]} +{"t": 3.3014, "q": [-0.36111271381378174, -0.013238254934549332, 0.009601988829672337, 0.626801609992981, -0.29548367857933044, 0.0236782506108284, -0.34789490699768066, 0.004337756894528866, -0.0058388663455843925, 0.6231796741485596, -0.329143762588501, 0.003106316551566124, 0.004071136470884085, 0.009688393212854862, -0.03308999165892601, 0.26516297459602356, 0.08297877758741379, -0.004589958116412163, 1.023608684539795, 0.07949136942625046, 0.06464291363954544, 0.019030949100852013, 0.2630537450313568, -0.11877565830945969, 0.03191399201750755, 1.0222424268722534, -0.11802065372467041, 0.07582419365644455, -0.022614233195781708]} +{"t": 3.3181, "q": [-0.361095666885376, -0.0132297333329916, 0.009615381248295307, 0.6267845630645752, -0.2955003082752228, 0.023678196594119072, -0.34789490699768066, 0.004405933897942305, -0.0058388663455843925, 0.6231711506843567, -0.32916414737701416, 0.003084714524447918, 0.004057744517922401, 0.00968081969767809, -0.03312436118721962, 0.2647075653076172, 0.07711848616600037, -0.0041705104522407055, 1.0248908996582031, 0.07951533794403076, 0.06478672474622726, 0.020385166630148888, 0.2613280117511749, -0.1134546622633934, 0.03169827535748482, 1.024303674697876, -0.11798469722270966, 0.07586014270782471, -0.023608922958374023]} +{"t": 3.3348, "q": [-0.3610360324382782, -0.013246776536107063, 0.009561813436448574, 0.6267845630645752, -0.2955003082752228, 0.023678196594119072, -0.3478778600692749, 0.004457066301256418, -0.0058388663455843925, 0.6231796741485596, -0.3291472792625427, 0.0030119242146611214, 0.004071136470884085, 0.009741612710058689, -0.03313450887799263, 0.26426413655281067, 0.0740145742893219, -0.002984072081744671, 1.0263410806655884, 0.07946740090847015, 0.06495450437068939, 0.0222666896879673, 0.25990188121795654, -0.10872089117765427, 0.031374700367450714, 1.026760458946228, -0.11793676018714905, 0.07594403624534607, -0.02491520345211029]} +{"t": 3.3515, "q": [-0.3610019385814667, -0.013246776536107063, 0.009521638043224812, 0.6267163753509521, -0.2954961359500885, 0.02367098443210125, -0.347869336605072, 0.004457066301256418, -0.005919218063354492, 0.6231796741485596, -0.32917970418930054, 0.002939585829153657, 0.004044352564960718, 0.009749221615493298, -0.033149294555187225, 0.2640843987464905, 0.07342734932899475, -0.0020852552261203527, 1.0275514125823975, 0.0794554129242897, 0.0649784728884697, 0.023764718323946, 0.2586435377597809, -0.1061922162771225, 0.030703585594892502, 1.029145359992981, -0.11790081113576889, 0.07619570195674896, -0.026628948748111725]} +{"t": 3.3683, "q": [-0.3610275089740753, -0.013246776536107063, 0.009454678744077682, 0.6266822814941406, -0.29548367857933044, 0.0236782506108284, -0.3478863835334778, 0.004457066301256418, -0.005946001503616571, 0.6231796741485596, -0.32920417189598083, 0.0029107590671628714, 0.004071136470884085, 0.009749200195074081, -0.0331198014318943, 0.26404842734336853, 0.07387076318264008, -0.0011145329335704446, 1.0287498235702515, 0.07947938144207001, 0.06499045342206955, 0.024471787735819817, 0.2575410008430481, -0.10522149503231049, 0.03051183745265007, 1.0316500663757324, -0.11790081113576889, 0.07637546956539154, -0.028067056089639664]} +{"t": 3.3851, "q": [-0.3610530495643616, -0.013246776536107063, 0.009494854137301445, 0.6266908049583435, -0.2954878807067871, 0.023685481399297714, -0.34790343046188354, 0.004448544234037399, -0.005972785409539938, 0.6231711506843567, -0.3291877210140228, 0.0029106144793331623, 0.004071136470884085, 0.009825082495808601, -0.032982561737298965, 0.26398852467536926, 0.07467370480298996, -0.0004074636672157794, 1.0303317308425903, 0.07947938144207001, 0.0649784728884697, 0.024663535878062248, 0.25595909357070923, -0.10524546355009079, 0.030415963381528854, 1.0344663858413696, -0.11790081113576889, 0.07650729268789291, -0.02906174585223198]} +{"t": 3.4018, "q": [-0.3610871434211731, -0.013246776536107063, 0.009561813436448574, 0.6267078518867493, -0.2954961955547333, 0.023699909448623657, -0.34795457124710083, 0.004431500099599361, -0.005905826110392809, 0.6231626272201538, -0.32919198274612427, 0.0029324335046112537, 0.004071136470884085, 0.009824981912970543, -0.03284492716193199, 0.2637608051300049, 0.07529688626527786, 0.00045540055725723505, 1.032285213470459, 0.07947938144207001, 0.0649784728884697, 0.024699488654732704, 0.25430527329444885, -0.10522149503231049, 0.030415963381528854, 1.0366474390029907, -0.11791279166936874, 0.07672300934791565, -0.029517147690057755]} +{"t": 3.4186, "q": [-0.3610871434211731, -0.013280864804983139, 0.00965555664151907, 0.6267078518867493, -0.29547548294067383, 0.023721709847450256, -0.34793752431869507, 0.0043803672306239605, -0.005879042204469442, 0.6231711506843567, -0.3291589915752411, 0.002917621983215213, 0.004057744517922401, 0.009847677312791348, -0.03271232917904854, 0.26364096999168396, 0.0755365714430809, 0.0016058861510828137, 1.0340348482131958, 0.07944343239068985, 0.06496648490428925, 0.024687504395842552, 0.25298699736595154, -0.10538927465677261, 0.03045191615819931, 1.0380735397338867, -0.1179487481713295, 0.07683087140321732, -0.02960103563964367]} +{"t": 3.4353, "q": [-0.3610871434211731, -0.013340519741177559, 0.009695732034742832, 0.6267163753509521, -0.2954796552658081, 0.023728923872113228, -0.3479630947113037, 0.004320712294429541, -0.005852258298546076, 0.6231711506843567, -0.329101026058197, 0.002844488015398383, 0.003990784753113985, 0.009847662411630154, -0.032692667096853256, 0.2632335126399994, 0.07554855942726135, 0.0024208135437220335, 1.0357606410980225, 0.07947938144207001, 0.06494251638650894, 0.024699488654732704, 0.25188446044921875, -0.10567689687013626, 0.03045191615819931, 1.039008378982544, -0.1179727166891098, 0.07689078897237778, -0.029636988416314125]} +{"t": 3.452, "q": [-0.3610871434211731, -0.013340519741177559, 0.009722515940666199, 0.6267163753509521, -0.2954796552658081, 0.023728923872113228, -0.34794604778289795, 0.004295146092772484, -0.005825474392622709, 0.6231626272201538, -0.3290887475013733, 0.00285164057277143, 0.004044352564960718, 0.009824885986745358, -0.03271712362766266, 0.2625863552093506, 0.07550062239170074, 0.002600576961413026, 1.037522315979004, 0.0794554129242897, 0.06490656733512878, 0.024723457172513008, 0.2506500780582428, -0.10556904226541519, 0.030487868934869766, 1.0400749444961548, -0.11796072870492935, 0.07696269452571869, -0.02972087822854519]} +{"t": 3.4687, "q": [-0.36106157302856445, -0.013340519741177559, 0.009722515940666199, 0.6267163753509521, -0.29548799991607666, 0.02374335192143917, -0.3479290008544922, 0.004295146092772484, -0.005825474392622709, 0.6231711506843567, -0.32908883690834045, 0.0028661624528467655, 0.004097919911146164, 0.009832488372921944, -0.03272207826375961, 0.2610164284706116, 0.07546466588973999, 0.00264851376414299, 1.0408419370651245, 0.0794554129242897, 0.06482267379760742, 0.024747425690293312, 0.2494516521692276, -0.10538927465677261, 0.03045191615819931, 1.0416209697723389, -0.11793676018714905, 0.0770346000790596, -0.030008500441908836]} +{"t": 3.4856, "q": [-0.3610786199569702, -0.013340519741177559, 0.009722515940666199, 0.626724898815155, -0.2954879403114319, 0.02371440827846527, -0.3479290008544922, 0.004286624025553465, -0.005825474392622709, 0.6231626272201538, -0.32907238602638245, 0.0028660178650170565, 0.004084527958184481, 0.009817284531891346, -0.032712168991565704, 0.25955435633659363, 0.07542871683835983, 0.0027563718613237143, 1.0431549549102783, 0.07946740090847015, 0.06491854786872864, 0.02473544143140316, 0.2481573522090912, -0.10532935708761215, 0.030427947640419006, 1.0432507991790771, -0.11796072870492935, 0.07711848616600037, -0.03075152263045311]} +{"t": 3.5023, "q": [-0.361095666885376, -0.013340519741177559, 0.009722515940666199, 0.6267419457435608, -0.29547548294067383, 0.023721709847450256, -0.3479290008544922, 0.004286624025553465, -0.005812082905322313, 0.6231711506843567, -0.32906028628349304, 0.0029022321105003357, 0.004044352564960718, 0.009809660725295544, -0.03267772123217583, 0.25837990641593933, 0.07538077980279922, 0.0027803401462733746, 1.0444492101669312, 0.0794554129242897, 0.06490656733512878, 0.024771394208073616, 0.2466593235731125, -0.1053173691034317, 0.030403979122638702, 1.0450243949890137, -0.11793676018714905, 0.07720237970352173, -0.0318780392408371]} +{"t": 3.519, "q": [-0.3610786199569702, -0.013340519741177559, 0.009722515940666199, 0.6267504692077637, -0.29547548294067383, 0.023721709847450256, -0.3479290008544922, 0.004286624025553465, -0.005812082905322313, 0.6231711506843567, -0.3290357291698456, 0.0029165372252464294, 0.004004176706075668, 0.009824843145906925, -0.03265813738107681, 0.25712156295776367, 0.07542871683835983, 0.0028402614407241344, 1.045515775680542, 0.07949136942625046, 0.06491854786872864, 0.024771394208073616, 0.24514931440353394, -0.1052934005856514, 0.03045191615819931, 1.0470257997512817, -0.11791279166936874, 0.07726229727268219, -0.032944634556770325]} +{"t": 3.5358, "q": [-0.3610275089740753, -0.013331998139619827, 0.009722515940666199, 0.6267419457435608, -0.29547548294067383, 0.023721709847450256, -0.34790343046188354, 0.004286624025553465, -0.00579869095236063, 0.6231711506843567, -0.3290397822856903, 0.00290931249037385, 0.004030960611999035, 0.009824864566326141, -0.032687630504369736, 0.2560669481754303, 0.07547665387392044, 0.0028762139845639467, 1.0464146137237549, 0.07949136942625046, 0.06494251638650894, 0.024783378466963768, 0.24407073855400085, -0.10528142005205154, 0.03043993189930916, 1.0489072799682617, -0.1179247796535492, 0.07734619081020355, -0.0337236113846302]} +{"t": 3.5525, "q": [-0.3609934151172638, -0.013340519741177559, 0.009695732034742832, 0.6267504692077637, -0.2954671382904053, 0.02370726503431797, -0.34786084294319153, 0.004286624025553465, -0.005812082905322313, 0.6231796741485596, -0.3290315568447113, 0.0029092219192534685, 0.004044352564960718, 0.009870482608675957, -0.0327271930873394, 0.25473669171333313, 0.07562046498060226, 0.0029121667612344027, 1.0477808713912964, 0.07947938144207001, 0.06494251638650894, 0.024783378466963768, 0.24361532926559448, -0.1052694320678711, 0.03045191615819931, 1.0501537322998047, -0.11793676018714905, 0.07738213986158371, -0.03422694653272629]} +{"t": 3.5692, "q": [-0.3609507977962494, -0.013340519741177559, 0.009682340547442436, 0.6267504692077637, -0.29547131061553955, 0.023714497685432434, -0.34780970215797424, 0.004286624025553465, -0.005825474392622709, 0.6231711506843567, -0.3290480077266693, 0.0029093846678733826, 0.004030960611999035, 0.009855307638645172, -0.032756607979536057, 0.2531667649745941, 0.07564442604780197, 0.002948119305074215, 1.0497702360153198, 0.07941946387290955, 0.06495450437068939, 0.02479536272585392, 0.2434355616569519, -0.10524546355009079, 0.03045191615819931, 1.0511244535446167, -0.11796072870492935, 0.07745404541492462, -0.03449060022830963]} +{"t": 3.5859, "q": [-0.360908180475235, -0.013331998139619827, 0.00966894906014204, 0.6267504692077637, -0.2954587936401367, 0.023692836984992027, -0.34782674908638, 0.004286624025553465, -0.0058388663455843925, 0.6231881976127625, -0.32903555035591125, 0.0028874753043055534, 0.004057744517922401, 0.00984770618379116, -0.0327516533434391, 0.2513691186904907, 0.07569236308336258, 0.002972087822854519, 1.0523827075958252, 0.0794314444065094, 0.06499045342206955, 0.024783378466963768, 0.24329175055027008, -0.1052934005856514, 0.030463900417089462, 1.0522269010543823, -0.11793676018714905, 0.07744206488132477, -0.03471830114722252]} +{"t": 3.6027, "q": [-0.3609422743320465, -0.013340519741177559, 0.009642165154218674, 0.6267334222793579, -0.2954587936401367, 0.023692836984992027, -0.3478182256221771, 0.004303668159991503, -0.005865650251507759, 0.6231967210769653, -0.32903969287872314, 0.0028947722166776657, 0.004097919911146164, 0.009840089827775955, -0.032727036625146866, 0.24953553080558777, 0.07571633160114288, 0.002996056340634823, 1.0548874139785767, 0.07947938144207001, 0.06502640247344971, 0.024807346984744072, 0.24305206537246704, -0.1052694320678711, 0.030475884675979614, 1.0540485382080078, -0.11793676018714905, 0.07744206488132477, -0.034874096512794495]} +{"t": 3.6194, "q": [-0.36092522740364075, -0.013340519741177559, 0.009601988829672337, 0.6267334222793579, -0.2954547107219696, 0.023714549839496613, -0.3478182256221771, 0.004312190227210522, -0.005919218063354492, 0.6231881976127625, -0.32903555035591125, 0.0028874753043055534, 0.004138095770031214, 0.009847677312791348, -0.03271232917904854, 0.2479056864976883, 0.07571633160114288, 0.003032008884474635, 1.0571644306182861, 0.07944343239068985, 0.06501442193984985, 0.024843299761414528, 0.24284833669662476, -0.1052694320678711, 0.03045191615819931, 1.0557982921600342, -0.1179487481713295, 0.07740610837936401, -0.034993939101696014]} +{"t": 3.6361, "q": [-0.36092522740364075, -0.013306431472301483, 0.009628772735595703, 0.6267334222793579, -0.2954505383968353, 0.02370733581483364, -0.3478352725505829, 0.004320712294429541, -0.005932609550654888, 0.6231796741485596, -0.3290436565876007, 0.0028730256017297506, 0.004205055069178343, 0.009855278767645359, -0.03271728381514549, 0.24627582728862762, 0.07571633160114288, 0.003055977402254939, 1.0602444410324097, 0.07947938144207001, 0.06501442193984985, 0.024843299761414528, 0.24272850155830383, -0.10524546355009079, 0.03043993189930916, 1.0572243928909302, -0.1179247796535492, 0.07743007689714432, -0.03502989187836647]} +{"t": 3.653, "q": [-0.3608996570110321, -0.013331998139619827, 0.009642165154218674, 0.6267163753509521, -0.2954547107219696, 0.023714549839496613, -0.3478352725505829, 0.004329234827309847, -0.005919218063354492, 0.6231881976127625, -0.3290477395057678, 0.002865800866857171, 0.004097919911146164, 0.009870496578514576, -0.03274685516953468, 0.24501748383045197, 0.07571633160114288, 0.003091930178925395, 1.0631805658340454, 0.07941946387290955, 0.06503839045763016, 0.02485528402030468, 0.24263262748718262, -0.10524546355009079, 0.030463900417089462, 1.058279037475586, -0.11791279166936874, 0.07740610837936401, -0.03502989187836647]} +{"t": 3.6697, "q": [-0.3608996570110321, -0.013306431472301483, 0.00965555664151907, 0.6267078518867493, -0.2954587936401367, 0.023692836984992027, -0.3478352725505829, 0.004346278961747885, -0.005892434157431126, 0.6231711506843567, -0.32905587553977966, 0.002851333236321807, 0.004017568659037352, 0.009870482608675957, -0.0327271930873394, 0.24471788108348846, 0.07569236308336258, 0.003103914437815547, 1.064271092414856, 0.0794554129242897, 0.06502640247344971, 0.024867268279194832, 0.24232102930545807, -0.1052934005856514, 0.03045191615819931, 1.0589860677719116, -0.1179247796535492, 0.07740610837936401, -0.035053860396146774]} +{"t": 3.6864, "q": [-0.360908180475235, -0.013323476538062096, 0.00965555664151907, 0.6266993284225464, -0.2954629957675934, 0.023714514449238777, -0.34782674908638, 0.004354801028966904, -0.005905826110392809, 0.6231711506843567, -0.3290517032146454, 0.002844036091119051, 0.004044352564960718, 0.009855278767645359, -0.03271728381514549, 0.24439430236816406, 0.07569236308336258, 0.003103914437815547, 1.0648822784423828, 0.07939549535512924, 0.06503839045763016, 0.024879250675439835, 0.24215325713157654, -0.10524546355009079, 0.03043993189930916, 1.0595253705978394, -0.11796072870492935, 0.07739412784576416, -0.03508981317281723]} +{"t": 3.7032, "q": [-0.3609422743320465, -0.013306431472301483, 0.00965555664151907, 0.6266822814941406, -0.2954629957675934, 0.023714514449238777, -0.34784379601478577, 0.004354801028966904, -0.005892434157431126, 0.6232052445411682, -0.3290517032146454, 0.002844036091119051, 0.004071136470884085, 0.009855278767645359, -0.03271728381514549, 0.24415461719036102, 0.07569236308336258, 0.003103914437815547, 1.0651220083236694, 0.07941946387290955, 0.06502640247344971, 0.02490321919322014, 0.2419615089893341, -0.10524546355009079, 0.03043993189930916, 1.060160517692566, -0.11790081113576889, 0.07739412784576416, -0.03514973446726799]} +{"t": 3.7199, "q": [-0.36091670393943787, -0.01334904134273529, 0.00966894906014204, 0.6266737580299377, -0.2954671382904053, 0.02370726503431797, -0.3478352725505829, 0.004329234827309847, -0.005892434157431126, 0.6231796741485596, -0.32905587553977966, 0.002851333236321807, 0.004084527958184481, 0.009870468638837337, -0.03270753100514412, 0.24384303390979767, 0.07571633160114288, 0.0031638354994356632, 1.0654934644699097, 0.07944343239068985, 0.06501442193984985, 0.02491520345211029, 0.24179372191429138, -0.10524546355009079, 0.03043993189930916, 1.0608675479888916, -0.11788882315158844, 0.07739412784576416, -0.035173699259757996]} +{"t": 3.7366, "q": [-0.3608996570110321, -0.013340519741177559, 0.009695732034742832, 0.6266737580299377, -0.2954588830471039, 0.023721763864159584, -0.34784379601478577, 0.004329234827309847, -0.005879042204469442, 0.6231796741485596, -0.32905587553977966, 0.002851333236321807, 0.004111311864107847, 0.009862873703241348, -0.032712407410144806, 0.24357937276363373, 0.07571633160114288, 0.003187804017215967, 1.065769076347351, 0.0794074758887291, 0.06502640247344971, 0.02491520345211029, 0.24169784784317017, -0.10528142005205154, 0.03045191615819931, 1.0616105794906616, -0.11790081113576889, 0.07738213986158371, -0.03518568351864815]} +{"t": 3.7534, "q": [-0.36091670393943787, -0.013374608010053635, 0.00973590835928917, 0.6266652345657349, -0.2954629957675934, 0.023714514449238777, -0.347869336605072, 0.004320712294429541, -0.005812082905322313, 0.6231711506843567, -0.32906433939933777, 0.002895007375627756, 0.004097919911146164, 0.009862873703241348, -0.032712407410144806, 0.24312397837638855, 0.07574030011892319, 0.0032117723021656275, 1.0662964582443237, 0.0794554129242897, 0.06503839045763016, 0.024927187711000443, 0.2413862645626068, -0.10524546355009079, 0.03043993189930916, 1.062904953956604, -0.11790081113576889, 0.0773581713438034, -0.03518568351864815]} +{"t": 3.7701, "q": [-0.36091670393943787, -0.013374608010053635, 0.009749299846589565, 0.626656711101532, -0.29547131061553955, 0.023714497685432434, -0.3478863835334778, 0.004320712294429541, -0.005812082905322313, 0.6231881976127625, -0.32907265424728394, 0.002909601666033268, 0.004097919911146164, 0.009855293668806553, -0.032736945897340775, 0.24262064695358276, 0.07571633160114288, 0.0032477250788360834, 1.0669915676116943, 0.0794554129242897, 0.06502640247344971, 0.024939171969890594, 0.24112261831760406, -0.1052934005856514, 0.03043993189930916, 1.0641392469406128, -0.11790081113576889, 0.07737015932798386, -0.0351976677775383]} +{"t": 3.7869, "q": [-0.3609422743320465, -0.013383129611611366, 0.009722515940666199, 0.626656711101532, -0.2954671382904053, 0.02370726503431797, -0.3478778600692749, 0.004286624025553465, -0.005785298999398947, 0.6231626272201538, -0.3290807902812958, 0.002895134035497904, 0.004097919911146164, 0.009870482608675957, -0.0327271930873394, 0.24203340709209442, 0.07572831958532333, 0.0032357408199459314, 1.0676027536392212, 0.07949136942625046, 0.06502640247344971, 0.02491520345211029, 0.24082300066947937, -0.10524546355009079, 0.03045191615819931, 1.0654934644699097, -0.11790081113576889, 0.07738213986158371, -0.03520965203642845]} +{"t": 3.8036, "q": [-0.3609422743320465, -0.01334904134273529, 0.00973590835928917, 0.6266737580299377, -0.2954671382904053, 0.02370726503431797, -0.34786084294319153, 0.004286624025553465, -0.0057719070464372635, 0.6231711506843567, -0.32907265424728394, 0.002909601666033268, 0.004205055069178343, 0.009847677312791348, -0.03271232917904854, 0.24127840995788574, 0.07575228810310364, 0.0032357408199459314, 1.068501591682434, 0.07947938144207001, 0.06502640247344971, 0.024939171969890594, 0.24051141738891602, -0.10525745153427124, 0.03043993189930916, 1.0672551393508911, -0.11788882315158844, 0.0773581713438034, -0.03524560481309891]} +{"t": 3.8203, "q": [-0.3609934151172638, -0.013374608010053635, 0.00965555664151907, 0.6266737580299377, -0.29547959566116333, 0.023699980229139328, -0.3478778600692749, 0.00424401368945837, -0.005879042204469442, 0.6231711506843567, -0.3290768265724182, 0.002916898811236024, 0.004486285150051117, 0.009870482608675957, -0.0327271930873394, 0.2401159405708313, 0.07577625662088394, 0.0032597093377262354, 1.0704549551010132, 0.07944343239068985, 0.06501442193984985, 0.024939171969890594, 0.24007998406887054, -0.10524546355009079, 0.03045191615819931, 1.0692805051803589, -0.1179247796535492, 0.07738213986158371, -0.035221636295318604]} +{"t": 3.8373, "q": [-0.36096784472465515, -0.013357564806938171, 0.009615381248295307, 0.6266822814941406, -0.2954837679862976, 0.0237071942538023, -0.347869336605072, 0.004235491156578064, -0.005879042204469442, 0.6231796741485596, -0.32907265424728394, 0.002909601666033268, 0.004606812261044979, 0.009862881153821945, -0.03272223845124245, 0.23913322389125824, 0.07575228810310364, 0.0032357408199459314, 1.0719770193099976, 0.0794314444065094, 0.06501442193984985, 0.024939171969890594, 0.2395167201757431, -0.1052694320678711, 0.03045191615819931, 1.071126103401184, -0.11790081113576889, 0.07740610837936401, -0.035221636295318604]} +{"t": 3.854, "q": [-0.3609422743320465, -0.013400174677371979, 0.009682340547442436, 0.6266822814941406, -0.29547131061553955, 0.023714497685432434, -0.347869336605072, 0.004226969089359045, -0.005852258298546076, 0.6231796741485596, -0.32907265424728394, 0.002909601666033268, 0.004660379607230425, 0.009862873703241348, -0.032712407410144806, 0.23848608136177063, 0.07572831958532333, 0.0032357408199459314, 1.0729477405548096, 0.07939549535512924, 0.06501442193984985, 0.024939171969890594, 0.23918116092681885, -0.10524546355009079, 0.030475884675979614, 1.072252631187439, -0.11790081113576889, 0.0773581713438034, -0.035233620554208755]} +{"t": 3.8708, "q": [-0.36093375086784363, -0.013357564806938171, 0.00966894906014204, 0.6266737580299377, -0.295462965965271, 0.023700051009655, -0.3478778600692749, 0.004252535756677389, -0.0058388663455843925, 0.6231881976127625, -0.3290436565876007, 0.0028730256017297506, 0.004486285150051117, 0.009855278767645359, -0.03271728381514549, 0.2379228174686432, 0.07572831958532333, 0.0032357408199459314, 1.0737626552581787, 0.0794314444065094, 0.06502640247344971, 0.0249631404876709, 0.23878568410873413, -0.1052694320678711, 0.030475884675979614, 1.0734390020370483, -0.11790081113576889, 0.07738213986158371, -0.03524560481309891]} +{"t": 3.8877, "q": [-0.36091670393943787, -0.013340519741177559, 0.009682340547442436, 0.6266737580299377, -0.2954588234424591, 0.023707300424575806, -0.34786084294319153, 0.004269579891115427, -0.0058388663455843925, 0.6231967210769653, -0.329047828912735, 0.0028803227469325066, 0.004446109291166067, 0.009855293668806553, -0.032736945897340775, 0.23733559250831604, 0.07574030011892319, 0.0032477250788360834, 1.074709415435791, 0.0794554129242897, 0.06501442193984985, 0.0249631404876709, 0.23840218782424927, -0.10524546355009079, 0.030463900417089462, 1.074949026107788, -0.11790081113576889, 0.0773581713438034, -0.03524560481309891]} +{"t": 3.9046, "q": [-0.3608570694923401, -0.013340519741177559, 0.009709124453365803, 0.6266737580299377, -0.2954588234424591, 0.023707300424575806, -0.3478352725505829, 0.004286624025553465, -0.005852258298546076, 0.6231626272201538, -0.3290436565876007, 0.0028730256017297506, 0.004419325385242701, 0.009885686449706554, -0.03273710235953331, 0.23695209622383118, 0.07576426863670349, 0.0032597093377262354, 1.0752726793289185, 0.0794554129242897, 0.06502640247344971, 0.02497512474656105, 0.23749138414859772, -0.10524546355009079, 0.030463900417089462, 1.0772860050201416, -0.11790081113576889, 0.07738213986158371, -0.03525758907198906]} +{"t": 3.9214, "q": [-0.3608485460281372, -0.013357564806938171, 0.009695732034742832, 0.6266822814941406, -0.29544222354888916, 0.023707371205091476, -0.34782674908638, 0.004286624025553465, -0.0058388663455843925, 0.6231796741485596, -0.32903555035591125, 0.0028874753043055534, 0.004419325385242701, 0.009870482608675957, -0.0327271930873394, 0.23672440648078918, 0.07576426863670349, 0.0032597093377262354, 1.0756081342697144, 0.07947938144207001, 0.06502640247344971, 0.02502306178212166, 0.23658059537410736, -0.10520951449871063, 0.030487868934869766, 1.0790596008300781, -0.11791279166936874, 0.07739412784576416, -0.035221636295318604]} +{"t": 3.9381, "q": [-0.36078888177871704, -0.013374608010053635, 0.009722515940666199, 0.6266822814941406, -0.2954505681991577, 0.02372179925441742, -0.3478352725505829, 0.004303668159991503, -0.005852258298546076, 0.6232052445411682, -0.3290272355079651, 0.0028728810139000416, 0.004312190227210522, 0.009900861419737339, -0.03270769119262695, 0.23643678426742554, 0.07576426863670349, 0.0032836776226758957, 1.076375126838684, 0.07941946387290955, 0.06502640247344971, 0.025011077523231506, 0.23575368523597717, -0.10517355799674988, 0.03051183745265007, 1.080533742904663, -0.11791279166936874, 0.07740610837936401, -0.03525758907198906]} +{"t": 3.9552, "q": [-0.3607718348503113, -0.013383129611611366, 0.009762692265212536, 0.6266822814941406, -0.2954380512237549, 0.023700157180428505, -0.34782674908638, 0.004312190227210522, -0.0058388663455843925, 0.6232052445411682, -0.3290189206600189, 0.0028582867234945297, 0.004312190227210522, 0.009878062643110752, -0.03270265460014343, 0.2359214574098587, 0.0757882371544838, 0.0032956618815660477, 1.0779330730438232, 0.0794314444065094, 0.06501442193984985, 0.025011077523231506, 0.23491477966308594, -0.10514958947896957, 0.03051183745265007, 1.0816242694854736, -0.11790081113576889, 0.07740610837936401, -0.03525758907198906]} +{"t": 3.972, "q": [-0.36073774099349976, -0.013374608010053635, 0.009762692265212536, 0.6266822814941406, -0.2954297661781311, 0.02370019443333149, -0.3478182256221771, 0.004312190227210522, -0.005825474392622709, 0.6231881976127625, -0.3290024995803833, 0.0028581421356648207, 0.004312190227210522, 0.009878062643110752, -0.03270265460014343, 0.23522637784481049, 0.0757882371544838, 0.0032956618815660477, 1.0798505544662476, 0.0794314444065094, 0.06500244140625, 0.024999093264341354, 0.23394405841827393, -0.10511364042758942, 0.030499853193759918, 1.0826549530029297, -0.1179247796535492, 0.07740610837936401, -0.03525758907198906]} +{"t": 3.9887, "q": [-0.3607121706008911, -0.013383129611611366, 0.009762692265212536, 0.6266822814941406, -0.295433908700943, 0.023707406595349312, -0.34780117869377136, 0.004312190227210522, -0.005825474392622709, 0.623222291469574, -0.32900258898735046, 0.002872664015740156, 0.004338974133133888, 0.009900861419737339, -0.03270769119262695, 0.23466311395168304, 0.07577625662088394, 0.0032716935966163874, 1.0815163850784302, 0.07941946387290955, 0.06499045342206955, 0.02502306178212166, 0.232853502035141, -0.10513760894536972, 0.030487868934869766, 1.083553671836853, -0.11788882315158844, 0.07741809636354446, -0.03525758907198906]} +{"t": 4.0057, "q": [-0.3607121706008911, -0.013383129611611366, 0.009789476171135902, 0.6266993284225464, -0.295433908700943, 0.023707406595349312, -0.3477841317653656, 0.004303668159991503, -0.005852258298546076, 0.6232137680053711, -0.32899028062820435, 0.0028798345010727644, 0.004338974133133888, 0.009885657578706741, -0.032697778195142746, 0.2338721603155136, 0.07575228810310364, 0.0032716935966163874, 1.0832421779632568, 0.07939549535512924, 0.06496648490428925, 0.025047030299901962, 0.23173896968364716, -0.10514958947896957, 0.030487868934869766, 1.0846322774887085, -0.11790081113576889, 0.07740610837936401, -0.03525758907198906]} +{"t": 4.0225, "q": [-0.36073774099349976, -0.013400174677371979, 0.009776083752512932, 0.6266822814941406, -0.2954338788986206, 0.023692945018410683, -0.3477841317653656, 0.004295146092772484, -0.0058388663455843925, 0.6232052445411682, -0.32900258898735046, 0.002872664015740156, 0.004392541944980621, 0.009885650128126144, -0.032687947154045105, 0.23281754553318024, 0.07574030011892319, 0.0032956618815660477, 1.0845963954925537, 0.07941946387290955, 0.0649784728884697, 0.02502306178212166, 0.23058848083019257, -0.10514958947896957, 0.030463900417089462, 1.0856988430023193, -0.11788882315158844, 0.07744206488132477, -0.03524560481309891]} +{"t": 4.0393, "q": [-0.3607547879219055, -0.013383129611611366, 0.009776083752512932, 0.6266822814941406, -0.2954380512237549, 0.023700157180428505, -0.34776708483695984, 0.004295146092772484, -0.005825474392622709, 0.6231881976127625, -0.3290069103240967, 0.0029090228490531445, 0.0043523660860955715, 0.009855243377387524, -0.03266812860965729, 0.2319067418575287, 0.07574030011892319, 0.0032956618815660477, 1.0851836204528809, 0.07941946387290955, 0.0649784728884697, 0.02502306178212166, 0.22959378361701965, -0.10516157746315002, 0.030487868934869766, 1.0867055654525757, -0.11790081113576889, 0.07744206488132477, -0.03526957333087921]} +{"t": 4.056, "q": [-0.36074626445770264, -0.013383129611611366, 0.009789476171135902, 0.6266822814941406, -0.29545050859451294, 0.023692874237895012, -0.3477841317653656, 0.004303668159991503, -0.005825474392622709, 0.6231967210769653, -0.32900673151016235, 0.002879961160942912, 0.0043523660860955715, 0.009900796227157116, -0.032619211822748184, 0.23094800114631653, 0.07576426863670349, 0.0033076461404561996, 1.085543155670166, 0.07937152683734894, 0.0649784728884697, 0.02502306178212166, 0.228107750415802, -0.10514958947896957, 0.030487868934869766, 1.0881437063217163, -0.1179247796535492, 0.07745404541492462, -0.03526957333087921]} +{"t": 4.0729, "q": [-0.3607974052429199, -0.013374608010053635, 0.00973590835928917, 0.6266737580299377, -0.2954629063606262, 0.0236711073666811, -0.3477926552295685, 0.004286624025553465, -0.0058388663455843925, 0.6232052445411682, -0.32901087403297424, 0.002887258306145668, 0.0043523660860955715, 0.009893180802464485, -0.03259459137916565, 0.23008513450622559, 0.0757882371544838, 0.0032836776226758957, 1.0860943794250488, 0.0794314444065094, 0.0649784728884697, 0.02503504604101181, 0.22634606063365936, -0.10517355799674988, 0.030475884675979614, 1.0902049541473389, -0.11793676018714905, 0.07747801393270493, -0.03526957333087921]} +{"t": 4.0896, "q": [-0.36078888177871704, -0.013383129611611366, 0.00973590835928917, 0.6266652345657349, -0.2954629063606262, 0.0236711073666811, -0.3477926552295685, 0.004269579891115427, -0.00579869095236063, 0.6231881976127625, -0.3290274143218994, 0.0029019247740507126, 0.0043523660860955715, 0.009908391162753105, -0.0326143354177475, 0.22947394847869873, 0.0758361741900444, 0.0032956618815660477, 1.0866097211837769, 0.0794554129242897, 0.06499045342206955, 0.02502306178212166, 0.22482407093048096, -0.10517355799674988, 0.030475884675979614, 1.092278242111206, -0.1179247796535492, 0.07749000191688538, -0.03526957333087921]} +{"t": 4.1063, "q": [-0.36078035831451416, -0.01334904134273529, 0.009709124453365803, 0.6266481876373291, -0.2954670786857605, 0.02367832139134407, -0.34780970215797424, 0.004278101958334446, -0.005812082905322313, 0.6232052445411682, -0.32903987169265747, 0.0029238343704491854, 0.004338974133133888, 0.009916000068187714, -0.03262912109494209, 0.2289346605539322, 0.07587213069200516, 0.0033076461404561996, 1.0871729850769043, 0.0794554129242897, 0.06501442193984985, 0.025047030299901962, 0.2232421487569809, -0.10514958947896957, 0.030499853193759918, 1.0940638780593872, -0.1179247796535492, 0.07750198245048523, -0.03526957333087921]} +{"t": 4.1232, "q": [-0.3607718348503113, -0.013383129611611366, 0.009749299846589565, 0.6265885233879089, -0.29547542333602905, 0.023692749440670013, -0.34780970215797424, 0.004278101958334446, -0.005785298999398947, 0.6231881976127625, -0.3290766477584839, 0.002887836890295148, 0.004338974133133888, 0.00989321619272232, -0.032643746584653854, 0.22839535772800446, 0.07594403624534607, 0.0032836776226758957, 1.088107705116272, 0.07944343239068985, 0.06502640247344971, 0.025047030299901962, 0.22219951450824738, -0.10518554598093033, 0.03051183745265007, 1.0957896709442139, -0.1179247796535492, 0.07750198245048523, -0.03526957333087921]} +{"t": 4.1399, "q": [-0.3607547879219055, -0.013340519741177559, 0.00973590835928917, 0.6264947652816772, -0.29547542333602905, 0.023692749440670013, -0.3478182256221771, 0.004252535756677389, -0.005812082905322313, 0.6231796741485596, -0.3290807008743286, 0.0028806121554225683, 0.004338974133133888, 0.009916014038026333, -0.032648783177137375, 0.2277841717004776, 0.07600395381450653, 0.0033076461404561996, 1.0892223119735718, 0.0794314444065094, 0.06502640247344971, 0.025047030299901962, 0.22125276923179626, -0.10518554598093033, 0.030499853193759918, 1.0983542203903198, -0.11793676018714905, 0.07750198245048523, -0.03525758907198906]} +{"t": 4.1567, "q": [-0.3607974052429199, -0.01334904134273529, 0.009682340547442436, 0.6264010667800903, -0.29547542333602905, 0.023692749440670013, -0.34784379601478577, 0.004278101958334446, -0.0058388663455843925, 0.6231541037559509, -0.3291136622428894, 0.002895423211157322, 0.004419325385242701, 0.00991600751876831, -0.032638952136039734, 0.2274126559495926, 0.07599197328090668, 0.0032956618815660477, 1.0901449918746948, 0.07941946387290955, 0.06501442193984985, 0.025047030299901962, 0.2204977571964264, -0.10518554598093033, 0.030523821711540222, 1.100882887840271, -0.11790081113576889, 0.07746603339910507, -0.03526957333087921]} +{"t": 4.1736, "q": [-0.36078035831451416, -0.013391653075814247, 0.00965555664151907, 0.6263328790664673, -0.2954712510108948, 0.023685535416007042, -0.34784379601478577, 0.00424401368945837, -0.005852258298546076, 0.6231541037559509, -0.3291298449039459, 0.002851984230801463, 0.0045130690559744835, 0.009916000068187714, -0.03262912109494209, 0.22706511616706848, 0.07596800476312637, 0.0032836776226758957, 1.0911877155303955, 0.0794314444065094, 0.06501442193984985, 0.025059014558792114, 0.21994648873806, -0.10518554598093033, 0.030487868934869766, 1.103052020072937, -0.1179247796535492, 0.07747801393270493, -0.03526957333087921]} +{"t": 4.1904, "q": [-0.3607974052429199, -0.013383129611611366, 0.009628772735595703, 0.6262561678886414, -0.2954712510108948, 0.023685535416007042, -0.34789490699768066, 0.004235491156578064, -0.005852258298546076, 0.6231285333633423, -0.3291379511356354, 0.0028375345282256603, 0.004446109291166067, 0.00993877649307251, -0.03260466083884239, 0.22694526612758636, 0.07594403624534607, 0.0033076461404561996, 1.092218279838562, 0.07939549535512924, 0.06499045342206955, 0.025047030299901962, 0.2192753702402115, -0.10517355799674988, 0.03051183745265007, 1.1050654649734497, -0.1179247796535492, 0.07746603339910507, -0.03526957333087921]} +{"t": 4.2071, "q": [-0.3607974052429199, -0.013357564806938171, 0.009628772735595703, 0.6261794567108154, -0.29547542333602905, 0.023692749440670013, -0.3479204773902893, 0.004252535756677389, -0.0058388663455843925, 0.6231200098991394, -0.3291296660900116, 0.002822940470650792, 0.004379149992018938, 0.00994635745882988, -0.03258012235164642, 0.2269332855939865, 0.07590807974338531, 0.0032956618815660477, 1.0928294658660889, 0.0794314444065094, 0.0649784728884697, 0.025059014558792114, 0.2184963971376419, -0.10517355799674988, 0.03051183745265007, 1.1071386337280273, -0.1179247796535492, 0.07747801393270493, -0.03526957333087921]} +{"t": 4.2238, "q": [-0.36078888177871704, -0.013340519741177559, 0.009628772735595703, 0.6261283159255981, -0.295462965965271, 0.023700051009655, -0.34793752431869507, 0.00424401368945837, -0.0058388663455843925, 0.6231200098991394, -0.3291254937648773, 0.002815643325448036, 0.004365758039057255, 0.009938741102814674, -0.03255550563335419, 0.2269093245267868, 0.07588411122560501, 0.0032956618815660477, 1.0931410789489746, 0.07939549535512924, 0.06499045342206955, 0.025059014558792114, 0.21772940456867218, -0.10517355799674988, 0.03051183745265007, 1.1091281175613403, -0.1179247796535492, 0.07750198245048523, -0.03526957333087921]} +{"t": 4.2405, "q": [-0.36078035831451416, -0.013366086408495903, 0.009695732034742832, 0.6260346174240112, -0.295462965965271, 0.023700051009655, -0.34799718856811523, 0.00424401368945837, -0.005825474392622709, 0.6231200098991394, -0.32914599776268005, 0.002808562945574522, 0.004338974133133888, 0.009961532428860664, -0.032550711184740067, 0.22677749395370483, 0.07586014270782471, 0.0032836776226758957, 1.093416690826416, 0.07932358980178833, 0.06496648490428925, 0.025059014558792114, 0.2169504314661026, -0.10510165244340897, 0.030523821711540222, 1.1111294031143188, -0.1179247796535492, 0.07747801393270493, -0.03525758907198906]} +{"t": 4.2573, "q": [-0.3607718348503113, -0.013340519741177559, 0.009695732034742832, 0.625983476638794, -0.2954587936401367, 0.023692836984992027, -0.3480057120323181, 0.00424401368945837, -0.005812082905322313, 0.6231200098991394, -0.32915014028549194, 0.002815860090777278, 0.0043523660860955715, 0.009953937493264675, -0.032555583864450455, 0.22659772634506226, 0.07588411122560501, 0.0032956618815660477, 1.0936444997787476, 0.07937152683734894, 0.06495450437068939, 0.025059014558792114, 0.21601566672325134, -0.10496982932090759, 0.03051183745265007, 1.113418459892273, -0.11791279166936874, 0.07746603339910507, -0.03526957333087921]} +{"t": 4.274, "q": [-0.3607547879219055, -0.013374608010053635, 0.009722515940666199, 0.625983476638794, -0.29544636607170105, 0.02370012179017067, -0.34798866510391235, 0.00424401368945837, -0.005812082905322313, 0.6231114864349365, -0.32914167642593384, 0.002772222040221095, 0.0043523660860955715, 0.009991931729018688, -0.03256069868803024, 0.2263101041316986, 0.07588411122560501, 0.0032956618815660477, 1.093860149383545, 0.07934755831956863, 0.06496648490428925, 0.025082983076572418, 0.21498501300811768, -0.10496982932090759, 0.030547790229320526, 1.115599513053894, -0.1179247796535492, 0.07749000191688538, -0.03525758907198906]} +{"t": 4.2908, "q": [-0.3607292175292969, -0.01334904134273529, 0.009762692265212536, 0.625983476638794, -0.29545050859451294, 0.023692874237895012, -0.34798866510391235, 0.004269579891115427, -0.005785298999398947, 0.6231114864349365, -0.3291458189487457, 0.002779519185423851, 0.004365758039057255, 0.01002232450991869, -0.03256085887551308, 0.2260105013847351, 0.07589609920978546, 0.0032956618815660477, 1.0940399169921875, 0.07941946387290955, 0.0649784728884697, 0.025070998817682266, 0.21407420933246613, -0.10496982932090759, 0.030535805970430374, 1.1174211502075195, -0.1179247796535492, 0.07747801393270493, -0.03526957333087921]} +{"t": 4.3076, "q": [-0.360720694065094, -0.013366086408495903, 0.009749299846589565, 0.6259493827819824, -0.29545050859451294, 0.023692874237895012, -0.3479801416397095, 0.00424401368945837, -0.005785298999398947, 0.6231114864349365, -0.32914167642593384, 0.002772222040221095, 0.004338974133133888, 0.010029919445514679, -0.03255598247051239, 0.22575883567333221, 0.07588411122560501, 0.0032956618815660477, 1.0942556858062744, 0.07937152683734894, 0.06496648490428925, 0.02509496733546257, 0.21301960945129395, -0.10494586080312729, 0.03057175874710083, 1.119710087776184, -0.11791279166936874, 0.07746603339910507, -0.03525758907198906]} +{"t": 4.3243, "q": [-0.360720694065094, -0.013374608010053635, 0.009749299846589565, 0.6259664297103882, -0.29545465111732483, 0.023700086399912834, -0.3479801416397095, 0.004235491156578064, -0.0057719070464372635, 0.6231200098991394, -0.32914185523986816, 0.0028012660332024097, 0.004446109291166067, 0.0100603261962533, -0.03257580101490021, 0.22556708753108978, 0.07590807974338531, 0.0033076461404561996, 1.094447374343872, 0.07934755831956863, 0.0649784728884697, 0.025070998817682266, 0.21191705763339996, -0.10496982932090759, 0.030559774488210678, 1.1220110654830933, -0.11791279166936874, 0.07747801393270493, -0.03526957333087921]} +{"t": 4.3412, "q": [-0.3607292175292969, -0.013383129611611366, 0.009789476171135902, 0.6259664297103882, -0.2954505681991577, 0.02372179925441742, -0.3479630947113037, 0.004235491156578064, -0.005704947747290134, 0.6231200098991394, -0.3291376829147339, 0.002793968887999654, 0.004405933897942305, 0.010067921131849289, -0.03257092460989952, 0.2253393828868866, 0.07592006772756577, 0.0032956618815660477, 1.0947229862213135, 0.07939549535512924, 0.0649784728884697, 0.025106951594352722, 0.21103021502494812, -0.10494586080312729, 0.030547790229320526, 1.1237847805023193, -0.1179247796535492, 0.07746603339910507, -0.03525758907198906]} +{"t": 4.3579, "q": [-0.3607121706008911, -0.013400174677371979, 0.009802867658436298, 0.6259664297103882, -0.29544222354888916, 0.023707371205091476, -0.3479716181755066, 0.00424401368945837, -0.005731731187552214, 0.6231200098991394, -0.3291376829147339, 0.002793968887999654, 0.004365758039057255, 0.010052717290818691, -0.03256101533770561, 0.22525550425052643, 0.07590807974338531, 0.0032956618815660477, 1.0949746370315552, 0.07939549535512924, 0.0649784728884697, 0.025082983076572418, 0.21004751324653625, -0.10492189228534698, 0.030583743005990982, 1.125294804573059, -0.1179247796535492, 0.07750198245048523, -0.035233620554208755]} +{"t": 4.3747, "q": [-0.3607121706008911, -0.01340869627892971, 0.009829651564359665, 0.6259664297103882, -0.29544222354888916, 0.023707371205091476, -0.3479630947113037, 0.00424401368945837, -0.005704947747290134, 0.6231200098991394, -0.32912957668304443, 0.002808418357744813, 0.004405933897942305, 0.010060298256576061, -0.032536476850509644, 0.22523152828216553, 0.07590807974338531, 0.0032956618815660477, 1.095286250114441, 0.07939549535512924, 0.06496648490428925, 0.025082983076572418, 0.2092086225748062, -0.10492189228534698, 0.030595727264881134, 1.126265525817871, -0.1179247796535492, 0.07750198245048523, -0.03524560481309891]} +{"t": 4.3914, "q": [-0.360720694065094, -0.013400174677371979, 0.009843043051660061, 0.6259749531745911, -0.29544222354888916, 0.023707371205091476, -0.3479630947113037, 0.004226969089359045, -0.005691555794328451, 0.6231200098991394, -0.32913362979888916, 0.0028011936228722334, 0.004392541944980621, 0.010052703320980072, -0.03254135325551033, 0.22518359124660492, 0.07593204826116562, 0.0032956618815660477, 1.0958136320114136, 0.07939549535512924, 0.06496648490428925, 0.025082983076572418, 0.20820194482803345, -0.10492189228534698, 0.030643664300441742, 1.1272960901260376, -0.11793676018714905, 0.07750198245048523, -0.03524560481309891]} +{"t": 4.4082, "q": [-0.3607121706008911, -0.013391653075814247, 0.009856435470283031, 0.6259749531745911, -0.29544639587402344, 0.023714585229754448, -0.34795457124710083, 0.004201402887701988, -0.00571833923459053, 0.6231029629707336, -0.32912135124206543, 0.0028083461802452803, 0.004325582180172205, 0.01006031222641468, -0.032556138932704926, 0.22493192553520203, 0.07594403624534607, 0.0032956618815660477, 1.0966764688491821, 0.07939549535512924, 0.06494251638650894, 0.025070998817682266, 0.20711137354373932, -0.10490990430116653, 0.030619695782661438, 1.128302812576294, -0.1179487481713295, 0.07752595096826553, -0.03524560481309891]} +{"t": 4.4249, "q": [-0.36069512367248535, -0.013417219743132591, 0.009843043051660061, 0.6259749531745911, -0.29544639587402344, 0.023714585229754448, -0.34793752431869507, 0.004192880820482969, -0.005691555794328451, 0.6231200098991394, -0.32912135124206543, 0.0028083461802452803, 0.004365758039057255, 0.010037528350949287, -0.032570768147706985, 0.22452445328235626, 0.07590807974338531, 0.0033076461404561996, 1.097515344619751, 0.07937152683734894, 0.06493053585290909, 0.02509496733546257, 0.2060447782278061, -0.10490990430116653, 0.030619695782661438, 1.1293214559555054, -0.1179487481713295, 0.07753793895244598, -0.035233620554208755]} +{"t": 4.4417, "q": [-0.36069512367248535, -0.013400174677371979, 0.009856435470283031, 0.625983476638794, -0.29544639587402344, 0.023714585229754448, -0.34793752431869507, 0.004201402887701988, -0.005691555794328451, 0.6231200098991394, -0.3291254937648773, 0.002815643325448036, 0.004379149992018938, 0.01004511583596468, -0.03255606070160866, 0.22399716079235077, 0.07589609920978546, 0.0032836776226758957, 1.0986778736114502, 0.07935953885316849, 0.06491854786872864, 0.02509496733546257, 0.20518192648887634, -0.10493387281894684, 0.030607711523771286, 1.1301244497299194, -0.1179247796535492, 0.07756190747022629, -0.035233620554208755]} +{"t": 4.4584, "q": [-0.36069512367248535, -0.013383129611611366, 0.009829651564359665, 0.6260005235671997, -0.2954380512237549, 0.023700157180428505, -0.3479204773902893, 0.004175836686044931, -0.005704947747290134, 0.6231200098991394, -0.32910075783729553, 0.0028009044472128153, 0.0043523660860955715, 0.01006031222641468, -0.032556138932704926, 0.22285865247249603, 0.07589609920978546, 0.0032836776226758957, 1.1002956628799438, 0.07937152683734894, 0.06491854786872864, 0.025082983076572418, 0.20463064312934875, -0.10492189228534698, 0.030607711523771286, 1.130987286567688, -0.11793676018714905, 0.07756190747022629, -0.03524560481309891]} +{"t": 4.4751, "q": [-0.36069512367248535, -0.013417219743132591, 0.009816259145736694, 0.6260005235671997, -0.2954380512237549, 0.023700157180428505, -0.34793752431869507, 0.00418435875326395, -0.00571833923459053, 0.6231029629707336, -0.3291296660900116, 0.002822940470650792, 0.004379149992018938, 0.010037514381110668, -0.032551106065511703, 0.22168420255184174, 0.07588411122560501, 0.0033076461404561996, 1.1016019582748413, 0.07938350737094879, 0.06489457935094833, 0.025106951594352722, 0.20415127277374268, -0.10494586080312729, 0.030619695782661438, 1.1323294639587402, -0.1179247796535492, 0.07754991948604584, -0.03525758907198906]} +{"t": 4.492, "q": [-0.36069512367248535, -0.013434262946248055, 0.009789476171135902, 0.6260005235671997, -0.2954380512237549, 0.023700157180428505, -0.3479119539260864, 0.004192880820482969, -0.005745123140513897, 0.6231200098991394, -0.3291132152080536, 0.0028227956499904394, 0.004486285150051117, 0.010052703320980072, -0.03254135325551033, 0.2204977571964264, 0.07589609920978546, 0.0033076461404561996, 1.1024168729782104, 0.07939549535512924, 0.06495450437068939, 0.02509496733546257, 0.20377977192401886, -0.10494586080312729, 0.030607711523771286, 1.1339713335037231, -0.11793676018714905, 0.07754991948604584, -0.035233620554208755]} +{"t": 4.5089, "q": [-0.36068660020828247, -0.013400174677371979, 0.00973590835928917, 0.6260260939598083, -0.29544222354888916, 0.023707371205091476, -0.3479204773902893, 0.004175836686044931, -0.005865650251507759, 0.6231114864349365, -0.3291005790233612, 0.0027718422934412956, 0.0047541228123009205, 0.01006031222641468, -0.032556138932704926, 0.21914353966712952, 0.07592006772756577, 0.0032956618815660477, 1.103399634361267, 0.07941946387290955, 0.06496648490428925, 0.025106951594352722, 0.2034202367067337, -0.10496982932090759, 0.030595727264881134, 1.136008620262146, -0.11791279166936874, 0.07752595096826553, -0.03525758907198906]} +{"t": 4.5256, "q": [-0.3607121706008911, -0.013417219743132591, 0.009749299846589565, 0.6260260939598083, -0.2954380512237549, 0.023700157180428505, -0.34790343046188354, 0.004201402887701988, -0.005852258298546076, 0.6231114864349365, -0.3291047215461731, 0.0027791394386440516, 0.004847866017371416, 0.010045108385384083, -0.03254622966051102, 0.21783725917339325, 0.07596800476312637, 0.0032956618815660477, 1.1045620441436768, 0.07939549535512924, 0.06496648490428925, 0.02509496733546257, 0.20310865342617035, -0.10494586080312729, 0.030595727264881134, 1.1376385688781738, -0.1179247796535492, 0.07752595096826553, -0.035233620554208755]} +{"t": 4.5424, "q": [-0.36064401268959045, -0.013425741344690323, 0.009762692265212536, 0.6260005235671997, -0.2954380512237549, 0.023700157180428505, -0.3479119539260864, 0.004209924954921007, -0.0058388663455843925, 0.6231200098991394, -0.32909244298934937, 0.0027862919960170984, 0.004767514765262604, 0.010060298256576061, -0.032536476850509644, 0.21678264439105988, 0.07600395381450653, 0.0032956618815660477, 1.1058324575424194, 0.07941946387290955, 0.0649784728884697, 0.02509496733546257, 0.20268920063972473, -0.10490990430116653, 0.03063168004155159, 1.1394840478897095, -0.11790081113576889, 0.07750198245048523, -0.035233620554208755]} +{"t": 4.5591, "q": [-0.36060991883277893, -0.013383129611611366, 0.009762692265212536, 0.625983476638794, -0.2954338788986206, 0.023692945018410683, -0.34789490699768066, 0.004218447022140026, -0.005812082905322313, 0.6231285333633423, -0.32910075783729553, 0.0028009044472128153, 0.004646987654268742, 0.010075501166284084, -0.03254638984799385, 0.21578796207904816, 0.07602792233228683, 0.0033076461404561996, 1.1070548295974731, 0.07934755831956863, 0.06502640247344971, 0.025118935853242874, 0.2022457867860794, -0.10483799874782562, 0.030619695782661438, 1.141892910003662, -0.1179247796535492, 0.07749000191688538, -0.03520965203642845]} +{"t": 4.5758, "q": [-0.3605417311191559, -0.013442784547805786, 0.009762692265212536, 0.6259749531745911, -0.29542970657348633, 0.02368573099374771, -0.34790343046188354, 0.00424401368945837, -0.005812082905322313, 0.6231285333633423, -0.3290883004665375, 0.0027789948508143425, 0.004593420308083296, 0.010128677822649479, -0.032531920820474625, 0.21491311490535736, 0.07606387883424759, 0.0033076461404561996, 1.107893705368042, 0.07941946387290955, 0.06502640247344971, 0.025106951594352722, 0.20183831453323364, -0.10470617562532425, 0.030679617077112198, 1.1444575786590576, -0.11793676018714905, 0.07753793895244598, -0.035221636295318604]} +{"t": 4.5925, "q": [-0.3605417311191559, -0.01340869627892971, 0.009802867658436298, 0.6259664297103882, -0.29542553424835205, 0.02367851696908474, -0.3479119539260864, 0.004261057823896408, -0.00579869095236063, 0.6231370568275452, -0.32909244298934937, 0.0027862919960170984, 0.004633595701307058, 0.010159042663872242, -0.032492753118276596, 0.21373865008354187, 0.07606387883424759, 0.0033196303993463516, 1.1090081930160522, 0.0794314444065094, 0.06506235897541046, 0.025106951594352722, 0.20179037749767303, -0.10451442748308182, 0.03069160133600235, 1.146315097808838, -0.11790081113576889, 0.07750198245048523, -0.03518568351864815]} +{"t": 4.6093, "q": [-0.36055877804756165, -0.013383129611611366, 0.009776083752512932, 0.6259664297103882, -0.29542553424835205, 0.02367851696908474, -0.34790343046188354, 0.004235491156578064, -0.005785298999398947, 0.6231114864349365, -0.32909640669822693, 0.0027645453810691833, 0.004593420308083296, 0.010280556045472622, -0.03241473808884621, 0.21276792883872986, 0.07603991031646729, 0.0033196303993463516, 1.1101586818695068, 0.0794074758887291, 0.06511029601097107, 0.025118935853242874, 0.20174244046211243, -0.10428673028945923, 0.030703585594892502, 1.1478490829467773, -0.11790081113576889, 0.07754991948604584, -0.035161715000867844]} +{"t": 4.626, "q": [-0.3605417311191559, -0.013400174677371979, 0.009829651564359665, 0.6259664297103882, -0.29541727900505066, 0.023693015798926353, -0.3479119539260864, 0.00424401368945837, -0.0057719070464372635, 0.6231200098991394, -0.32908421754837036, 0.002786237746477127, 0.004620204214006662, 0.01042484026402235, -0.032302431762218475, 0.21171332895755768, 0.07605189085006714, 0.0033196303993463516, 1.1113331317901611, 0.07938350737094879, 0.06517021358013153, 0.025118935853242874, 0.20174244046211243, -0.10401108860969543, 0.030715569853782654, 1.149299144744873, -0.11790081113576889, 0.07751397043466568, -0.03514973446726799]} +{"t": 4.6429, "q": [-0.3605417311191559, -0.013417219743132591, 0.009856435470283031, 0.6259493827819824, -0.29542145133018494, 0.023700229823589325, -0.34790343046188354, 0.004252535756677389, -0.00575851509347558, 0.6231285333633423, -0.32907193899154663, 0.0027933900710195303, 0.0045800283551216125, 0.010546330362558365, -0.03222450613975525, 0.2106587141752243, 0.07603991031646729, 0.0033076461404561996, 1.112231969833374, 0.07939549535512924, 0.0652541071176529, 0.025118935853242874, 0.20171847939491272, -0.103819340467453, 0.03076350688934326, 1.1504735946655273, -0.11793676018714905, 0.07750198245048523, -0.03514973446726799]} +{"t": 4.6596, "q": [-0.36055025458335876, -0.013417219743132591, 0.009856435470283031, 0.6259493827819824, -0.29542553424835205, 0.02367851696908474, -0.34790343046188354, 0.004218447022140026, -0.005731731187552214, 0.6231285333633423, -0.32906779646873474, 0.0027860929258167744, 0.0045800283551216125, 0.01060708798468113, -0.03220520541071892, 0.2100355327129364, 0.07606387883424759, 0.0033316146582365036, 1.1131787300109863, 0.07939549535512924, 0.0652780756354332, 0.025118935853242874, 0.20174244046211243, -0.10365156084299088, 0.030775491148233414, 1.1515761613845825, -0.1179487481713295, 0.07753793895244598, -0.035125765949487686]} +{"t": 4.6763, "q": [-0.3605417311191559, -0.013434262946248055, 0.009856435470283031, 0.6259664297103882, -0.29542145133018494, 0.023700229823589325, -0.34790343046188354, 0.004235491156578064, -0.005745123140513897, 0.6231285333633423, -0.32908007502555847, 0.002778940601274371, 0.004593420308083296, 0.010675458237528801, -0.032200686633586884, 0.20942433178424835, 0.07605189085006714, 0.0033316146582365036, 1.1141494512557983, 0.0794314444065094, 0.06531402468681335, 0.025118935853242874, 0.20170649886131287, -0.1034718006849289, 0.030787475407123566, 1.1527506113052368, -0.1179247796535492, 0.07751397043466568, -0.035125765949487686]} +{"t": 4.6933, "q": [-0.360533207654953, -0.013442784547805786, 0.00991000235080719, 0.6259408593177795, -0.29542553424835205, 0.02367851696908474, -0.3478778600692749, 0.004235491156578064, -0.005704947747290134, 0.6231114864349365, -0.32906362414360046, 0.002778796013444662, 0.0045800283551216125, 0.010713458061218262, -0.03221563622355461, 0.20896893739700317, 0.0760878473520279, 0.0033076461404561996, 1.1148685216903687, 0.0794314444065094, 0.06536196172237396, 0.025130920112133026, 0.20146681368350983, -0.10328005254268646, 0.03081144392490387, 1.1545482873916626, -0.11793676018714905, 0.07752595096826553, -0.035125765949487686]} +{"t": 4.71, "q": [-0.3604905903339386, -0.013425741344690323, 0.00992339476943016, 0.6259323358535767, -0.29542970657348633, 0.02368573099374771, -0.3478863835334778, 0.004235491156578064, -0.005731731187552214, 0.6231285333633423, -0.3290759027004242, 0.0027716434560716152, 0.004553244449198246, 0.01069067046046257, -0.032220419496297836, 0.20871727168560028, 0.07607585936784744, 0.0032956618815660477, 1.115359902381897, 0.07937152683734894, 0.06538593024015427, 0.025130920112133026, 0.2012031525373459, -0.10314822942018509, 0.03082342818379402, 1.1562020778656006, -0.1179247796535492, 0.07750198245048523, -0.03510179743170738]} +{"t": 4.7268, "q": [-0.360533207654953, -0.013417219743132591, 0.009869826957583427, 0.6258556246757507, -0.2954297661781311, 0.02370019443333149, -0.3478863835334778, 0.00424401368945837, -0.005691555794328451, 0.6231200098991394, -0.32908421754837036, 0.002786237746477127, 0.004620204214006662, 0.010698282159864902, -0.032235197722911835, 0.2085854411125183, 0.07607585936784744, 0.0033196303993463516, 1.115815281867981, 0.07937152683734894, 0.06540989875793457, 0.025142904371023178, 0.2009275257587433, -0.1029205247759819, 0.03087136335670948, 1.1582633256912231, -0.11793676018714905, 0.07750198245048523, -0.03507782891392708]} +{"t": 4.7436, "q": [-0.3605246841907501, -0.013434262946248055, 0.009856435470283031, 0.625838577747345, -0.29542970657348633, 0.02368573099374771, -0.3478863835334778, 0.004218447022140026, -0.005731731187552214, 0.6231114864349365, -0.32909244298934937, 0.0027862919960170984, 0.004660379607230425, 0.010728651657700539, -0.032215725630521774, 0.2085375040769577, 0.07606387883424759, 0.0033076461404561996, 1.116342544555664, 0.07935953885316849, 0.06540989875793457, 0.02515488862991333, 0.20078371465206146, -0.10270480811595917, 0.03085937909781933, 1.1600251197814941, -0.11793676018714905, 0.07749000191688538, -0.035053860396146774]} +{"t": 4.7604, "q": [-0.36050763726234436, -0.01346835121512413, 0.009856435470283031, 0.6258130073547363, -0.29542961716651917, 0.02365678735077381, -0.34789490699768066, 0.004226969089359045, -0.005731731187552214, 0.6231370568275452, -0.32909244298934937, 0.0027862919960170984, 0.004687163513153791, 0.01075143925845623, -0.03221094235777855, 0.20852552354335785, 0.07603991031646729, 0.0033076461404561996, 1.1170976161956787, 0.07938350737094879, 0.06540989875793457, 0.025130920112133026, 0.20061592757701874, -0.10246512293815613, 0.030847394838929176, 1.1618705987930298, -0.11790081113576889, 0.07750198245048523, -0.03501790761947632]} +{"t": 4.7771, "q": [-0.3605417311191559, -0.013442784547805786, 0.009856435470283031, 0.6257959604263306, -0.2954380512237549, 0.023700157180428505, -0.34790343046188354, 0.004201402887701988, -0.005704947747290134, 0.6231285333633423, -0.3291005790233612, 0.0027718422934412956, 0.004646987654268742, 0.010736244730651379, -0.032210856676101685, 0.2084655910730362, 0.07606387883424759, 0.0033196303993463516, 1.118212103843689, 0.07937152683734894, 0.06538593024015427, 0.025142904371023178, 0.20046013593673706, -0.10215353965759277, 0.03087136335670948, 1.1639080047607422, -0.1179247796535492, 0.07750198245048523, -0.03498195484280586]} +{"t": 4.794, "q": [-0.360533207654953, -0.013442784547805786, 0.009816259145736694, 0.6257789134979248, -0.2954338788986206, 0.023692945018410683, -0.34790343046188354, 0.004209924954921007, -0.005704947747290134, 0.6231114864349365, -0.3290883004665375, 0.0027789948508143425, 0.004687163513153791, 0.010736244730651379, -0.032210856676101685, 0.20833377540111542, 0.07602792233228683, 0.0032956618815660477, 1.1195063591003418, 0.07931160181760788, 0.06536196172237396, 0.025130920112133026, 0.2004002183675766, -0.10193782299757004, 0.03087136335670948, 1.1655378341674805, -0.11790081113576889, 0.07749000191688538, -0.03496997058391571]} +{"t": 4.8108, "q": [-0.36051616072654724, -0.013442784547805786, 0.009856435470283031, 0.625761866569519, -0.29542553424835205, 0.02367851696908474, -0.34790343046188354, 0.004192880820482969, -0.005704947747290134, 0.6231114864349365, -0.32909244298934937, 0.0027862919960170984, 0.004646987654268742, 0.010713448747992516, -0.03220581263303757, 0.2082618623971939, 0.07599197328090668, 0.0032956618815660477, 1.1204651594161987, 0.07938350737094879, 0.06531402468681335, 0.025142904371023178, 0.20041219890117645, -0.101698137819767, 0.030943268910050392, 1.1665085554122925, -0.11790081113576889, 0.07749000191688538, -0.0349220335483551]} +{"t": 4.8275, "q": [-0.3604991137981415, -0.013451308012008667, 0.009896610863506794, 0.6257448196411133, -0.2954380512237549, 0.023700157180428505, -0.34790343046188354, 0.004201402887701988, -0.005678163841366768, 0.6231200098991394, -0.32909640669822693, 0.0027645453810691833, 0.0045800283551216125, 0.010713448747992516, -0.03220581263303757, 0.20809409022331238, 0.07595601677894592, 0.0032716935966163874, 1.1214838027954102, 0.07934755831956863, 0.0652780756354332, 0.025130920112133026, 0.2004241794347763, -0.10148242115974426, 0.030967237427830696, 1.1671797037124634, -0.11788882315158844, 0.07747801393270493, -0.03479020670056343]} +{"t": 4.8444, "q": [-0.36055025458335876, -0.013434262946248055, 0.00992339476943016, 0.6257533431053162, -0.2954255938529968, 0.023692980408668518, -0.3479204773902893, 0.00418435875326395, -0.005664771888405085, 0.6231114864349365, -0.32909244298934937, 0.0027862919960170984, 0.004553244449198246, 0.010721040889620781, -0.032200947403907776, 0.20792630314826965, 0.07592006772756577, 0.0032836776226758957, 1.1221789121627808, 0.07937152683734894, 0.0652780756354332, 0.025130920112133026, 0.20046013593673706, -0.10143448412418365, 0.030979221686720848, 1.1674672365188599, -0.11793676018714905, 0.07750198245048523, -0.03476623818278313]} +{"t": 4.8613, "q": [-0.360533207654953, -0.013485396280884743, 0.00999035406857729, 0.625761866569519, -0.29542970657348633, 0.02368573099374771, -0.3479290008544922, 0.004150270018726587, -0.005651379935443401, 0.6231200098991394, -0.32909244298934937, 0.0027862919960170984, 0.0045264605432748795, 0.010713448747992516, -0.03220581263303757, 0.20775853097438812, 0.07594403624534607, 0.0032716935966163874, 1.122670292854309, 0.07935953885316849, 0.0652541071176529, 0.02515488862991333, 0.20048409700393677, -0.1013985276222229, 0.030979221686720848, 1.1676350831985474, -0.1179247796535492, 0.07751397043466568, -0.03470631688833237]} +{"t": 4.878, "q": [-0.36051616072654724, -0.013485396280884743, 0.009963570162653923, 0.6257533431053162, -0.29542970657348633, 0.02368573099374771, -0.3479204773902893, 0.004099137615412474, -0.005637987982481718, 0.6231285333633423, -0.3290802538394928, 0.002807984361425042, 0.004553244449198246, 0.01071343943476677, -0.03219598904252052, 0.20760273933410645, 0.07594403624534607, 0.0032716935966163874, 1.122897982597351, 0.07938350737094879, 0.06526608765125275, 0.025142904371023178, 0.20049609243869781, -0.1013985276222229, 0.030967237427830696, 1.167754888534546, -0.1179247796535492, 0.07749000191688538, -0.03470631688833237]} +{"t": 4.8947, "q": [-0.3604991137981415, -0.01352800615131855, 0.009950178675353527, 0.6257533431053162, -0.2954380512237549, 0.023700157180428505, -0.34790343046188354, 0.004082093480974436, -0.0056112040765583515, 0.6231114864349365, -0.3290802538394928, 0.002807984361425042, 0.0045800283551216125, 0.01069826353341341, -0.03221555054187775, 0.20744693279266357, 0.07593204826116562, 0.0032716935966163874, 1.1231017112731934, 0.07935953885316849, 0.06521815061569214, 0.025142904371023178, 0.20048409700393677, -0.1013745591044426, 0.030967237427830696, 1.1678746938705444, -0.11793676018714905, 0.07752595096826553, -0.034694332629442215]} +{"t": 4.9116, "q": [-0.360533207654953, -0.013502439484000206, 0.009936786256730556, 0.6257533431053162, -0.295433908700943, 0.023707406595349312, -0.34789490699768066, 0.004030960611999035, -0.005624596029520035, 0.6231114864349365, -0.3290843963623047, 0.002815281506627798, 0.004593420308083296, 0.010713448747992516, -0.03220581263303757, 0.20732709765434265, 0.07592006772756577, 0.0032836776226758957, 1.1231975555419922, 0.07938350737094879, 0.06521815061569214, 0.025142904371023178, 0.20048409700393677, -0.10138654708862305, 0.030967237427830696, 1.1679346561431885, -0.11793676018714905, 0.07750198245048523, -0.03467036411166191]} +{"t": 4.9284, "q": [-0.360533207654953, -0.013570617884397507, 0.009963570162653923, 0.6257533431053162, -0.2954338788986206, 0.023692945018410683, -0.34790343046188354, 0.004005394410341978, -0.0056112040765583515, 0.6230944395065308, -0.3290761709213257, 0.0028152090962976217, 0.004646987654268742, 0.01069826353341341, -0.03221555054187775, 0.20715931057929993, 0.07594403624534607, 0.0032716935966163874, 1.1233054399490356, 0.07938350737094879, 0.06520617008209229, 0.025142904371023178, 0.2004481554031372, -0.10138654708862305, 0.030991205945611, 1.167982578277588, -0.11791279166936874, 0.07751397043466568, -0.03464639559388161]} +{"t": 4.9451, "q": [-0.360533207654953, -0.01358766108751297, 0.00999035406857729, 0.6257533431053162, -0.295433908700943, 0.023707406595349312, -0.34790343046188354, 0.003988349810242653, -0.0056112040765583515, 0.6231029629707336, -0.32907211780548096, 0.002822434064000845, 0.004660379607230425, 0.010698244906961918, -0.03219590336084366, 0.207039475440979, 0.07594403624534607, 0.0032477250788360834, 1.1234252452850342, 0.07938350737094879, 0.06519418209791183, 0.025130920112133026, 0.2004481554031372, -0.10138654708862305, 0.030979221686720848, 1.1680065393447876, -0.1179247796535492, 0.07749000191688538, -0.03464639559388161]} +{"t": 4.9618, "q": [-0.3605417311191559, -0.01358766108751297, 0.00999035406857729, 0.6257533431053162, -0.2954380512237549, 0.023700157180428505, -0.34790343046188354, 0.003979827743023634, -0.005584420636296272, 0.6230774521827698, -0.32907626032829285, 0.002829731209203601, 0.004646987654268742, 0.010690651834011078, -0.03220077231526375, 0.20700351893901825, 0.07593204826116562, 0.0032836776226758957, 1.1234612464904785, 0.07935953885316849, 0.06519418209791183, 0.025130920112133026, 0.2004481554031372, -0.10138654708862305, 0.030979221686720848, 1.168054461479187, -0.1179487481713295, 0.07751397043466568, -0.0346224270761013]} +{"t": 4.9786, "q": [-0.360533207654953, -0.01358766108751297, 0.00999035406857729, 0.6257533431053162, -0.2954380512237549, 0.023700157180428505, -0.34789490699768066, 0.003979827743023634, -0.005584420636296272, 0.6230774521827698, -0.32907211780548096, 0.002822434064000845, 0.004673771560192108, 0.010713430121541023, -0.03218616545200348, 0.20689566433429718, 0.07593204826116562, 0.0032597093377262354, 1.1235450506210327, 0.07938350737094879, 0.06520617008209229, 0.025142904371023178, 0.20043615996837616, -0.10138654708862305, 0.030991205945611, 1.168042540550232, -0.11796072870492935, 0.07750198245048523, -0.034634411334991455]} +{"t": 4.9953, "q": [-0.3605417311191559, -0.013596182689070702, 0.00999035406857729, 0.6257533431053162, -0.2954297959804535, 0.02371465601027012, -0.34790343046188354, 0.003979827743023634, -0.0055978125892579556, 0.623060405254364, -0.3290761709213257, 0.0028152090962976217, 0.004646987654268742, 0.01068304106593132, -0.03218599408864975, 0.20681177079677582, 0.07592006772756577, 0.0032956618815660477, 1.1235331296920776, 0.07938350737094879, 0.06518220156431198, 0.025142904371023178, 0.20043615996837616, -0.1013985276222229, 0.030991205945611, 1.1680784225463867, -0.1179487481713295, 0.07750198245048523, -0.0346224270761013]} +{"t": 5.0121, "q": [-0.360533207654953, -0.013613227754831314, 0.01000374648720026, 0.6257448196411133, -0.2954297959804535, 0.02371465601027012, -0.34790343046188354, 0.003988349810242653, -0.005637987982481718, 0.623060405254364, -0.32907626032829285, 0.002829731209203601, 0.004660379607230425, 0.010698235593736172, -0.032186079770326614, 0.20677582919597626, 0.07594403624534607, 0.0032716935966163874, 1.1236050128936768, 0.07939549535512924, 0.06518220156431198, 0.025130920112133026, 0.20041219890117645, -0.1013985276222229, 0.030967237427830696, 1.1682102680206299, -0.11796072870492935, 0.07749000191688538, -0.0346224270761013]} +{"t": 5.0288, "q": [-0.3605417311191559, -0.013596182689070702, 0.009963570162653923, 0.6257193088531494, -0.2954297959804535, 0.02371465601027012, -0.34790343046188354, 0.004005394410341978, -0.0056112040765583515, 0.623060405254364, -0.32907211780548096, 0.002822434064000845, 0.004646987654268742, 0.010698226280510426, -0.03217625617980957, 0.206667959690094, 0.07594403624534607, 0.0032716935966163874, 1.1236529350280762, 0.07933557033538818, 0.06519418209791183, 0.02515488862991333, 0.20041219890117645, -0.10138654708862305, 0.030967237427830696, 1.1682102680206299, -0.1179247796535492, 0.07751397043466568, -0.0346224270761013]} +{"t": 5.0458, "q": [-0.360533207654953, -0.013596182689070702, 0.00999035406857729, 0.6256852149963379, -0.2954380512237549, 0.023700157180428505, -0.3479119539260864, 0.003996872343122959, -0.005637987982481718, 0.623060405254364, -0.3290802538394928, 0.002807984361425042, 0.004620204214006662, 0.010690624825656414, -0.032171301543712616, 0.20656010508537292, 0.07594403624534607, 0.0032716935966163874, 1.1236889362335205, 0.07938350737094879, 0.06517021358013153, 0.025142904371023178, 0.20036426186561584, -0.10138654708862305, 0.030955253168940544, 1.1682102680206299, -0.1179487481713295, 0.07750198245048523, -0.03461044281721115]} +{"t": 5.0626, "q": [-0.3604991137981415, -0.013579139485955238, 0.00999035406857729, 0.6256340742111206, -0.295433908700943, 0.023707406595349312, -0.3479119539260864, 0.004013916477560997, -0.005624596029520035, 0.623060405254364, -0.3290720283985138, 0.0028079121839255095, 0.004660379607230425, 0.010698226280510426, -0.03217625617980957, 0.20654812455177307, 0.07594403624534607, 0.0032716935966163874, 1.12373685836792, 0.07938350737094879, 0.06518220156431198, 0.02515488862991333, 0.200352281332016, -0.1013985276222229, 0.030979221686720848, 1.1682342290878296, -0.11796072870492935, 0.07749000191688538, -0.034598458558321]} +{"t": 5.0793, "q": [-0.3604820966720581, -0.013579139485955238, 0.00999035406857729, 0.6256170272827148, -0.2954297661781311, 0.02370019443333149, -0.34790343046188354, 0.004005394410341978, -0.005651379935443401, 0.623060405254364, -0.3290760815143585, 0.0028006872162222862, 0.004646987654268742, 0.010728615336120129, -0.0321764312684536, 0.20642827451229095, 0.07594403624534607, 0.0032716935966163874, 1.1237727403640747, 0.07939549535512924, 0.06517021358013153, 0.02515488862991333, 0.200352281332016, -0.1013985276222229, 0.030955253168940544, 1.1682581901550293, -0.11796072870492935, 0.07750198245048523, -0.03461044281721115]} +{"t": 5.0961, "q": [-0.36045652627944946, -0.013562094420194626, 0.010017137974500656, 0.6255403161048889, -0.29541727900505066, 0.023693015798926353, -0.3479119539260864, 0.004030960611999035, -0.005678163841366768, 0.6230774521827698, -0.3290802538394928, 0.002807984361425042, 0.004620204214006662, 0.010728615336120129, -0.0321764312684536, 0.2063683569431305, 0.07594403624534607, 0.0032716935966163874, 1.1238206624984741, 0.07937152683734894, 0.06519418209791183, 0.02515488862991333, 0.200352281332016, -0.1013985276222229, 0.030967237427830696, 1.168270230293274, -0.11793676018714905, 0.07749000191688538, -0.03458647429943085]} +{"t": 5.1128, "q": [-0.3603627681732178, -0.013545051217079163, 0.010030529461801052, 0.6254550814628601, -0.2954172194004059, 0.023678533732891083, -0.34790343046188354, 0.004005394410341978, -0.005637987982481718, 0.6230774521827698, -0.3290760815143585, 0.0028006872162222862, 0.004687163513153791, 0.010728615336120129, -0.0321764312684536, 0.20633240044116974, 0.07594403624534607, 0.0032956618815660477, 1.1238447427749634, 0.07938350737094879, 0.06518220156431198, 0.025118935853242874, 0.200352281332016, -0.10141051560640335, 0.030943268910050392, 1.168270230293274, -0.1179487481713295, 0.07749000191688538, -0.034598458558321]} +{"t": 5.1295, "q": [-0.36028608679771423, -0.013545051217079163, 0.010030529461801052, 0.6253954172134399, -0.2954089343547821, 0.023678569123148918, -0.3478863835334778, 0.004048004746437073, -0.005637987982481718, 0.623060405254364, -0.32907193899154663, 0.0027933900710195303, 0.004673771560192108, 0.010721022263169289, -0.03218130022287369, 0.20626050233840942, 0.07594403624534607, 0.0032716935966163874, 1.1238806247711182, 0.07935953885316849, 0.06519418209791183, 0.025142904371023178, 0.2004002183675766, -0.1013985276222229, 0.030967237427830696, 1.1682941913604736, -0.1179247796535492, 0.07749000191688538, -0.034598458558321]} +{"t": 5.1464, "q": [-0.36026903986930847, -0.013545051217079163, 0.010017137974500656, 0.6253102421760559, -0.2954047620296478, 0.023671356961131096, -0.34790343046188354, 0.004048004746437073, -0.005637987982481718, 0.623060405254364, -0.32908016443252563, 0.0027934624813497066, 0.004646987654268742, 0.010736207477748394, -0.03217156231403351, 0.20626050233840942, 0.07595601677894592, 0.0032956618815660477, 1.1239525079727173, 0.07935953885316849, 0.06518220156431198, 0.025142904371023178, 0.2003762423992157, -0.1014224961400032, 0.030955253168940544, 1.168342113494873, -0.1179487481713295, 0.07750198245048523, -0.0346224270761013]} +{"t": 5.1631, "q": [-0.3602178990840912, -0.013536527752876282, 0.010017137974500656, 0.62523353099823, -0.2954047620296478, 0.023671356961131096, -0.34789490699768066, 0.004022438544780016, -0.005624596029520035, 0.6230689287185669, -0.32908007502555847, 0.002778940601274371, 0.004646987654268742, 0.010736207477748394, -0.03217156231403351, 0.20623652637004852, 0.07594403624534607, 0.0032836776226758957, 1.1240124702453613, 0.07934755831956863, 0.06518220156431198, 0.025142904371023178, 0.20036426186561584, -0.1013985276222229, 0.030979221686720848, 1.1683541536331177, -0.1179487481713295, 0.07751397043466568, -0.03461044281721115]} +{"t": 5.1798, "q": [-0.3602093756198883, -0.013545051217079163, 0.010057313367724419, 0.6251994371414185, -0.29540058970451355, 0.023664142936468124, -0.34789490699768066, 0.004030960611999035, -0.0056112040765583515, 0.6230774521827698, -0.32908421754837036, 0.002786237746477127, 0.004660379607230425, 0.010713430121541023, -0.03218616545200348, 0.20622454583644867, 0.07594403624534607, 0.0032716935966163874, 1.124024510383606, 0.07938350737094879, 0.06519418209791183, 0.025142904371023178, 0.200352281332016, -0.1014224961400032, 0.030955253168940544, 1.1683900356292725, -0.11796072870492935, 0.07750198245048523, -0.03458647429943085]} +{"t": 5.1967, "q": [-0.3602008521556854, -0.013545051217079163, 0.010057313367724419, 0.6251142024993896, -0.2954047620296478, 0.023671356961131096, -0.34790343046188354, 0.004056526813656092, -0.005624596029520035, 0.623060405254364, -0.32908421754837036, 0.002786237746477127, 0.004687163513153791, 0.010743818245828152, -0.03218634054064751, 0.20621256530284882, 0.07594403624534607, 0.0032956618815660477, 1.1240724325180054, 0.07934755831956863, 0.06520617008209229, 0.02515488862991333, 0.200352281332016, -0.1013985276222229, 0.030943268910050392, 1.1684139966964722, -0.11798469722270966, 0.07750198245048523, -0.034598458558321]} +{"t": 5.2135, "q": [-0.3601667582988739, -0.013553572818636894, 0.010057313367724419, 0.6250374913215637, -0.2953922748565674, 0.02366417832672596, -0.34789490699768066, 0.004048004746437073, -0.0055978125892579556, 0.623060405254364, -0.32909640669822693, 0.0027645453810691833, 0.004646987654268742, 0.010736226104199886, -0.032191209495067596, 0.20620058476924896, 0.07593204826116562, 0.0032956618815660477, 1.1241443157196045, 0.07934755831956863, 0.06519418209791183, 0.02515488862991333, 0.20034028589725494, -0.1013985276222229, 0.030979221686720848, 1.1684499979019165, -0.1179247796535492, 0.07750198245048523, -0.03461044281721115]} +{"t": 5.2302, "q": [-0.36010709404945374, -0.01352800615131855, 0.010057313367724419, 0.6249693632125854, -0.295392245054245, 0.02364971488714218, -0.34789490699768066, 0.004048004746437073, -0.005557636730372906, 0.623060405254364, -0.3291005790233612, 0.0027718422934412956, 0.004673771560192108, 0.010728615336120129, -0.0321764312684536, 0.20622454583644867, 0.07592006772756577, 0.0032716935966163874, 1.1242282390594482, 0.07933557033538818, 0.06520617008209229, 0.025142904371023178, 0.20030434429645538, -0.1013985276222229, 0.030955253168940544, 1.1684619188308716, -0.11793676018714905, 0.07750198245048523, -0.034598458558321]} +{"t": 5.247, "q": [-0.36009860038757324, -0.013545051217079163, 0.01007070578634739, 0.6249011754989624, -0.2953964173793793, 0.023656928911805153, -0.3479119539260864, 0.004022438544780016, -0.005530852824449539, 0.6230689287185669, -0.3291005790233612, 0.0027718422934412956, 0.004646987654268742, 0.010743818245828152, -0.03218634054064751, 0.20624852180480957, 0.07595601677894592, 0.0032836776226758957, 1.1242761611938477, 0.07935953885316849, 0.06519418209791183, 0.025142904371023178, 0.20031632483005524, -0.1013985276222229, 0.030967237427830696, 1.1684739589691162, -0.1179247796535492, 0.07749000191688538, -0.034598458558321]} +{"t": 5.2638, "q": [-0.3600815534591675, -0.01352800615131855, 0.010110881179571152, 0.6248670816421509, -0.295392245054245, 0.02364971488714218, -0.3479119539260864, 0.004048004746437073, -0.005490677431225777, 0.6230263113975525, -0.32910463213920593, 0.002764617558568716, 0.004646987654268742, 0.010728633962571621, -0.032196078449487686, 0.20620058476924896, 0.07594403624534607, 0.0032716935966163874, 1.1243480443954468, 0.07931160181760788, 0.06520617008209229, 0.025166872888803482, 0.20029236376285553, -0.1014224961400032, 0.030967237427830696, 1.1684858798980713, -0.1179247796535492, 0.07749000191688538, -0.03458647429943085]} +{"t": 5.2805, "q": [-0.3600730299949646, -0.013536527752876282, 0.010097489692270756, 0.6248244643211365, -0.295392245054245, 0.02364971488714218, -0.3479119539260864, 0.004022438544780016, -0.005490677431225777, 0.6230177879333496, -0.3291005790233612, 0.0027718422934412956, 0.004620204214006662, 0.010728633962571621, -0.032196078449487686, 0.20618858933448792, 0.07588411122560501, 0.0032716935966163874, 1.124419927597046, 0.07934755831956863, 0.06519418209791183, 0.02515488862991333, 0.20031632483005524, -0.1014224961400032, 0.030955253168940544, 1.1685458421707153, -0.1179487481713295, 0.07749000191688538, -0.03458647429943085]} +{"t": 5.2972, "q": [-0.36004745960235596, -0.013545051217079163, 0.010097489692270756, 0.6247477531433105, -0.2953964173793793, 0.023656928911805153, -0.34790343046188354, 0.004022438544780016, -0.005504068918526173, 0.6229836940765381, -0.32910463213920593, 0.002764617558568716, 0.004593420308083296, 0.010743836872279644, -0.032205987721681595, 0.20618858933448792, 0.07582419365644455, 0.0032836776226758957, 1.1245397329330444, 0.07935953885316849, 0.06517021358013153, 0.025166872888803482, 0.20028036832809448, -0.1014224961400032, 0.030955253168940544, 1.16855788230896, -0.11790081113576889, 0.07749000191688538, -0.034598458558321]} +{"t": 5.3139, "q": [-0.3600645065307617, -0.01352800615131855, 0.01007070578634739, 0.6246625185012817, -0.2953963577747345, 0.023642465472221375, -0.3479119539260864, 0.004005394410341978, -0.005490677431225777, 0.6229410767555237, -0.32912495732307434, 0.0027284754905849695, 0.004593420308083296, 0.010728633962571621, -0.032196078449487686, 0.2061406522989273, 0.07584816217422485, 0.0032956618815660477, 1.1246955394744873, 0.07934755831956863, 0.06518220156431198, 0.02515488862991333, 0.20025640726089478, -0.1014224961400032, 0.030943268910050392, 1.168569803237915, -0.1179487481713295, 0.07750198245048523, -0.034598458558321]} +{"t": 5.3309, "q": [-0.3600218892097473, -0.013545051217079163, 0.010124272666871548, 0.6245773434638977, -0.2953880727291107, 0.02364250086247921, -0.34790343046188354, 0.004022438544780016, -0.005490677431225777, 0.6229410767555237, -0.3291413187980652, 0.002714098198339343, 0.004606812261044979, 0.010728633962571621, -0.032196078449487686, 0.20612867176532745, 0.07588411122560501, 0.0032836776226758957, 1.1249831914901733, 0.07933557033538818, 0.06517021358013153, 0.02515488862991333, 0.20025640726089478, -0.1013985276222229, 0.030955253168940544, 1.1685818433761597, -0.11790081113576889, 0.07749000191688538, -0.03461044281721115]} +{"t": 5.3476, "q": [-0.35996222496032715, -0.01352800615131855, 0.01017784047871828, 0.6245091557502747, -0.2953964173793793, 0.023656928911805153, -0.3479204773902893, 0.004013916477560997, -0.005490677431225777, 0.622915506362915, -0.3291413187980652, 0.002714098198339343, 0.004606812261044979, 0.010728633962571621, -0.032196078449487686, 0.20602081716060638, 0.07594403624534607, 0.0032836776226758957, 1.1256064176559448, 0.07931160181760788, 0.06514624506235123, 0.025130920112133026, 0.20024442672729492, -0.1013985276222229, 0.030979221686720848, 1.1686058044433594, -0.11793676018714905, 0.07749000191688538, -0.03458647429943085]} +{"t": 5.3644, "q": [-0.35991960763931274, -0.013553572818636894, 0.010204624384641647, 0.6244580149650574, -0.29537972807884216, 0.023628056049346924, -0.3479204773902893, 0.004022438544780016, -0.00546389352530241, 0.622915506362915, -0.3291454613208771, 0.002721413504332304, 0.004593420308083296, 0.010728633962571621, -0.032196078449487686, 0.20569723844528198, 0.07596800476312637, 0.0032956618815660477, 1.1265531778335571, 0.07931160181760788, 0.06512227654457092, 0.02515488862991333, 0.20025640726089478, -0.1014224961400032, 0.030979221686720848, 1.1686177253723145, -0.11793676018714905, 0.07747801393270493, -0.03458647429943085]} +{"t": 5.3811, "q": [-0.35991960763931274, -0.013562094420194626, 0.01017784047871828, 0.6244239211082458, -0.2953880727291107, 0.02364250086247921, -0.3479204773902893, 0.004022438544780016, -0.005477285478264093, 0.6229069828987122, -0.3291618227958679, 0.0027070362120866776, 0.004620204214006662, 0.010728633962571621, -0.032196078449487686, 0.20490628480911255, 0.07597998529672623, 0.0033076461404561996, 1.1281111240386963, 0.07927565276622772, 0.06505037099123001, 0.02515488862991333, 0.20024442672729492, -0.1013985276222229, 0.030955253168940544, 1.1686416864395142, -0.11791279166936874, 0.07750198245048523, -0.03455052152276039]} +{"t": 5.398, "q": [-0.35991111397743225, -0.013562094420194626, 0.010164448991417885, 0.6243727803230286, -0.2953880727291107, 0.02364250086247921, -0.34790343046188354, 0.004005394410341978, -0.00546389352530241, 0.6228728890419006, -0.3291657865047455, 0.002685271669179201, 0.004593420308083296, 0.010728633962571621, -0.032196078449487686, 0.20400746166706085, 0.07618372142314911, 0.0033316146582365036, 1.1290578842163086, 0.07927565276622772, 0.06503839045763016, 0.025130920112133026, 0.20023243129253387, -0.1013985276222229, 0.030967237427830696, 1.1686416864395142, -0.11793676018714905, 0.07750198245048523, -0.03456250578165054]} +{"t": 5.4147, "q": [-0.35986849665641785, -0.013553572818636894, 0.010191232897341251, 0.6243642568588257, -0.29538390040397644, 0.02363528683781624, -0.34790343046188354, 0.003996872343122959, -0.005450501572340727, 0.6228728890419006, -0.3291618227958679, 0.0027070362120866776, 0.004660379607230425, 0.010743818245828152, -0.03218634054064751, 0.20273713767528534, 0.07635150104761124, 0.0033435989171266556, 1.1295372247695923, 0.07927565276622772, 0.06505037099123001, 0.025130920112133026, 0.20023243129253387, -0.1013985276222229, 0.030967237427830696, 1.1687016487121582, -0.1179487481713295, 0.07750198245048523, -0.03456250578165054]} +{"t": 5.4315, "q": [-0.35986849665641785, -0.013579139485955238, 0.010218016803264618, 0.6243727803230286, -0.2953880727291107, 0.02364250086247921, -0.3479119539260864, 0.004013916477560997, -0.005437109619379044, 0.6228728890419006, -0.3291657865047455, 0.002685271669179201, 0.0047541228123009205, 0.010736207477748394, -0.03217156231403351, 0.20075973868370056, 0.07651928067207336, 0.0033316146582365036, 1.1304121017456055, 0.07931160181760788, 0.06503839045763016, 0.025106951594352722, 0.20022045075893402, -0.1014224961400032, 0.030955253168940544, 1.1686896085739136, -0.1179727166891098, 0.07749000191688538, -0.03456250578165054]} +{"t": 5.4482, "q": [-0.35986849665641785, -0.013596182689070702, 0.01024479977786541, 0.6243131160736084, -0.2953880727291107, 0.02364250086247921, -0.34790343046188354, 0.004005394410341978, -0.0053701503202319145, 0.622847318649292, -0.3291575610637665, 0.002685199026018381, 0.004620204214006662, 0.010743818245828152, -0.03218634054064751, 0.19875837862491608, 0.07672300934791565, 0.0033316146582365036, 1.1308914422988892, 0.07932358980178833, 0.06512227654457092, 0.025106951594352722, 0.20019648969173431, -0.1014224961400032, 0.030967237427830696, 1.1686776876449585, -0.1179247796535492, 0.07747801393270493, -0.034574490040540695]} +{"t": 5.4649, "q": [-0.3598088324069977, -0.013596182689070702, 0.010445678606629372, 0.624270498752594, -0.2953880727291107, 0.02364250086247921, -0.3479119539260864, 0.003996872343122959, -0.005222839303314686, 0.6228217482566833, -0.32916995882987976, 0.0026925685815513134, 0.004553244449198246, 0.010743818245828152, -0.03218634054064751, 0.19687685370445251, 0.07697467505931854, 0.0033316146582365036, 1.1311310529708862, 0.07933557033538818, 0.06517021358013153, 0.025106951594352722, 0.20019648969173431, -0.1014224961400032, 0.031027158722281456, 1.1687016487121582, -0.11796072870492935, 0.07751397043466568, -0.03456250578165054]} +{"t": 5.4818, "q": [-0.35968953371047974, -0.013579139485955238, 0.010686732828617096, 0.6241256594657898, -0.29540058970451355, 0.023664142936468124, -0.3479290008544922, 0.003988349810242653, -0.005048744846135378, 0.6227961778640747, -0.32916995882987976, 0.0026925685815513134, 0.0045130690559744835, 0.010728633962571621, -0.032196078449487686, 0.1949833482503891, 0.07714245468378067, 0.0033316146582365036, 1.1313228607177734, 0.07931160181760788, 0.06519418209791183, 0.02509496733546257, 0.2000526785850525, -0.1013985276222229, 0.030955253168940544, 1.168725609779358, -0.11793676018714905, 0.07749000191688538, -0.03455052152276039]} +{"t": 5.4985, "q": [-0.3595787286758423, -0.013621749356389046, 0.01092778705060482, 0.6240148544311523, -0.2953964173793793, 0.023656928911805153, -0.3479119539260864, 0.003937217406928539, -0.004874649923294783, 0.6228047013282776, -0.3291618227958679, 0.0027070362120866776, 0.004553244449198246, 0.010743836872279644, -0.032205987721681595, 0.1926344335079193, 0.0772862657904625, 0.0033196303993463516, 1.1313947439193726, 0.07931160181760788, 0.06519418209791183, 0.025070998817682266, 0.19993282854557037, -0.10138654708862305, 0.030955253168940544, 1.1687136888504028, -0.11791279166936874, 0.07750198245048523, -0.034574490040540695]} +{"t": 5.5153, "q": [-0.3594764769077301, -0.013630270957946777, 0.011101881042122841, 0.6239466667175293, -0.2954089343547821, 0.023678569123148918, -0.3479290008544922, 0.0039116512052714825, -0.004727339372038841, 0.6227876543998718, -0.3291659653186798, 0.0027143333572894335, 0.004472893197089434, 0.010743836872279644, -0.032205987721681595, 0.1894945651292801, 0.07732222229242325, 0.0033196303993463516, 1.1314547061920166, 0.07933557033538818, 0.06514624506235123, 0.02503504604101181, 0.1998249739408493, -0.10138654708862305, 0.030991205945611, 1.168725609779358, -0.11793676018714905, 0.07751397043466568, -0.034598458558321]} +{"t": 5.5322, "q": [-0.35945942997932434, -0.013664361089468002, 0.011209016665816307, 0.6238699555397034, -0.2954047620296478, 0.023671356961131096, -0.3479119539260864, 0.0038605183362960815, -0.004593420308083296, 0.6227194666862488, -0.3291701078414917, 0.0027216305024921894, 0.0045130690559744835, 0.010774253867566586, -0.032235633581876755, 0.1861989051103592, 0.07738213986158371, 0.0032716935966163874, 1.131203055381775, 0.07932358980178833, 0.06496648490428925, 0.02503504604101181, 0.19978901743888855, -0.10136257857084274, 0.030991205945611, 1.1687376499176025, -0.1179247796535492, 0.07750198245048523, -0.034574490040540695]} +{"t": 5.549, "q": [-0.35922932624816895, -0.013715492561459541, 0.011302759870886803, 0.6238018274307251, -0.2954131066799164, 0.02368578314781189, -0.3478778600692749, 0.0038434739690274, -0.00445950124412775, 0.6226598620414734, -0.329166054725647, 0.002728855237364769, 0.004312190227210522, 0.01077428087592125, -0.03226510062813759, 0.1820523589849472, 0.07753793895244598, 0.0032477250788360834, 1.130927324295044, 0.07932358980178833, 0.06448711454868317, 0.025011077523231506, 0.19958528876304626, -0.10130265355110168, 0.031039142981171608, 1.168725609779358, -0.11790081113576889, 0.07750198245048523, -0.03458647429943085]} +{"t": 5.5657, "q": [-0.3591015040874481, -0.013741059228777885, 0.011490246281027794, 0.6237080693244934, -0.2954131066799164, 0.02368578314781189, -0.3478352725505829, 0.0038008634001016617, -0.0041916631162166595, 0.6226513385772705, -0.32917851209640503, 0.0027507466729730368, 0.0042854067869484425, 0.010797068476676941, -0.03226032108068466, 0.17622803151607513, 0.07754991948604584, 0.0031997880432754755, 1.1310112476348877, 0.07937152683734894, 0.06427139788866043, 0.02502306178212166, 0.19951337575912476, -0.10126670449972153, 0.031003190204501152, 1.1687376499176025, -0.1179247796535492, 0.07751397043466568, -0.034574490040540695]} +{"t": 5.5828, "q": [-0.3590333163738251, -0.013792192563414574, 0.011557205580174923, 0.6236824989318848, -0.29541727900505066, 0.023693015798926353, -0.3478352725505829, 0.0037582528311759233, -0.003964001312851906, 0.622617244720459, -0.32917046546936035, 0.002779718255624175, 0.004272014833986759, 0.010797077789902687, -0.032270144671201706, 0.17028385400772095, 0.0776338130235672, 0.003175819758325815, 1.1311191320419312, 0.07934755831956863, 0.06423544883728027, 0.02502306178212166, 0.19953735172748566, -0.10126670449972153, 0.030991205945611, 1.1687376499176025, -0.1179487481713295, 0.07751397043466568, -0.03456250578165054]} +{"t": 5.5995, "q": [-0.3589651584625244, -0.013868890702724457, 0.011677732691168785, 0.6236143112182617, -0.29541727900505066, 0.023693015798926353, -0.3478352725505829, 0.0036645096261054277, -0.0038434739690274, 0.6226342916488647, -0.3291582763195038, 0.002801410621032119, 0.004030960611999035, 0.010804679244756699, -0.03227509930729866, 0.16449548304080963, 0.07782556116580963, 0.0032237565610557795, 1.1308674812316895, 0.0794074758887291, 0.06409163773059845, 0.02503504604101181, 0.19936956465244293, -0.10129067301750183, 0.031003190204501152, 1.168797492980957, -0.11796072870492935, 0.07750198245048523, -0.03456250578165054]} +{"t": 5.6163, "q": [-0.3587861955165863, -0.013877412304282188, 0.011758084408938885, 0.6235290765762329, -0.29542145133018494, 0.023700229823589325, -0.3478352725505829, 0.00364746549166739, -0.003562244353815913, 0.6226257681846619, -0.32915034890174866, 0.0028449222445487976, 0.003816690295934677, 0.010819855146110058, -0.03225553780794144, 0.1597377359867096, 0.07808921486139297, 0.003187804017215967, 1.1306877136230469, 0.07941946387290955, 0.06397179514169693, 0.025047030299901962, 0.19928568601608276, -0.10126670449972153, 0.031063111498951912, 1.1687616109848022, -0.1179487481713295, 0.07751397043466568, -0.03458647429943085]} +{"t": 5.633, "q": [-0.3586498200893402, -0.013868890702724457, 0.011717909015715122, 0.623435378074646, -0.2954007685184479, 0.023736493661999702, -0.34784379601478577, 0.00364746549166739, -0.0032676225528120995, 0.6226001977920532, -0.32914212346076965, 0.0028448316734284163, 0.0037899063900113106, 0.010857845656573772, -0.03226066753268242, 0.15397332608699799, 0.07847270369529724, 0.0032117723021656275, 1.1301363706588745, 0.07939549535512924, 0.06372012197971344, 0.025059014558792114, 0.199249729514122, -0.10126670449972153, 0.031039142981171608, 1.1687616109848022, -0.11796072870492935, 0.07756190747022629, -0.034598458558321]} +{"t": 5.6498, "q": [-0.35853052139282227, -0.013937067240476608, 0.011677732691168785, 0.6233586668968201, -0.29540911316871643, 0.023750919848680496, -0.34784379601478577, 0.0036218990571796894, -0.0030801359098404646, 0.6226087212562561, -0.32913851737976074, 0.0029247021302580833, 0.003816690295934677, 0.010926280170679092, -0.032324910163879395, 0.1470824033021927, 0.07900001108646393, 0.0032357408199459314, 1.12898588180542, 0.0794314444065094, 0.06328869611024857, 0.025070998817682266, 0.19928568601608276, -0.10126670449972153, 0.030991205945611, 1.1688095331192017, -0.1179247796535492, 0.07750198245048523, -0.03456250578165054]} +{"t": 5.6665, "q": [-0.35840269923210144, -0.013962633907794952, 0.011691125109791756, 0.623290479183197, -0.29539257287979126, 0.023779917508363724, -0.3478352725505829, 0.003570766421034932, -0.0029194331727921963, 0.6226001977920532, -0.32915106415748596, 0.0029611336067318916, 0.0036158119328320026, 0.0110706752166152, -0.032379768788814545, 0.14025138318538666, 0.07968311011791229, 0.0032597093377262354, 1.1279911994934082, 0.07944343239068985, 0.06306099146604538, 0.025070998817682266, 0.19927369058132172, -0.10130265355110168, 0.030955253168940544, 1.168797492980957, -0.1179487481713295, 0.07750198245048523, -0.03458647429943085]} +{"t": 5.6832, "q": [-0.3582748472690582, -0.013996722176671028, 0.011731300503015518, 0.6232563853263855, -0.295388400554657, 0.023772703483700752, -0.34780117869377136, 0.0035537220537662506, -0.0027453387156128883, 0.6225916743278503, -0.32916757464408875, 0.00297580030746758, 0.003696163184940815, 0.011290918104350567, -0.03230750933289528, 0.13223394751548767, 0.08034224808216095, 0.0032597093377262354, 1.1279432773590088, 0.0794074758887291, 0.06310892850160599, 0.025059014558792114, 0.19929766654968262, -0.1013985276222229, 0.030919300392270088, 1.1688095331192017, -0.1179247796535492, 0.07752595096826553, -0.034598458558321]} +{"t": 5.6999, "q": [-0.3582748472690582, -0.014022288843989372, 0.011677732691168785, 0.6232308149337769, -0.2953842580318451, 0.02377997152507305, -0.34782674908638, 0.0035366779193282127, -0.002651595277711749, 0.6225831508636475, -0.32918429374694824, 0.0030195286963135004, 0.0036158119328320026, 0.01158716157078743, -0.03226521238684654, 0.12479173392057419, 0.08086955547332764, 0.0032716935966163874, 1.1272602081298828, 0.07944343239068985, 0.06300107389688492, 0.025070998817682266, 0.19927369058132172, -0.10155432671308517, 0.030943268910050392, 1.1688095331192017, -0.11798469722270966, 0.07750198245048523, -0.03458647429943085]} +{"t": 5.7167, "q": [-0.35812997817993164, -0.014064900577068329, 0.011731300503015518, 0.6231711506843567, -0.29535529017448425, 0.023816252127289772, -0.34775856137275696, 0.0035366779193282127, -0.00254446011967957, 0.6225661039352417, -0.32918429374694824, 0.0030195286963135004, 0.0033881496638059616, 0.011936591938138008, -0.03221847862005234, 0.11728961020708084, 0.08144479244947433, 0.0032597093377262354, 1.125522494316101, 0.07944343239068985, 0.0628812313079834, 0.025082983076572418, 0.19921377301216125, -0.1017221063375473, 0.03093128465116024, 1.1688334941864014, -0.11796072870492935, 0.07750198245048523, -0.034574490040540695]} +{"t": 5.7336, "q": [-0.35793396830558777, -0.01407342217862606, 0.011798259802162647, 0.6230518817901611, -0.29535114765167236, 0.02382350154221058, -0.3477500379085541, 0.0035451999865472317, -0.002383757382631302, 0.6225746273994446, -0.32919684052467346, 0.0030559420119971037, 0.003334582084789872, 0.012323932722210884, -0.0320885069668293, 0.10938002169132233, 0.08206797391176224, 0.0032477250788360834, 1.123005747795105, 0.07946740090847015, 0.06286924332380295, 0.025070998817682266, 0.1992017924785614, -0.10187789797782898, 0.03087136335670948, 1.1688214540481567, -0.1179487481713295, 0.07750198245048523, -0.03458647429943085]} +{"t": 5.7505, "q": [-0.3576953411102295, -0.014116032049059868, 0.011972354725003242, 0.6227194666862488, -0.29535529017448425, 0.023816252127289772, -0.34758812189102173, 0.0035366779193282127, -0.0021427033934742212, 0.6225746273994446, -0.32920506596565247, 0.00305601442232728, 0.003321190131828189, 0.01266574952751398, -0.03201722353696823, 0.1019737720489502, 0.08264321833848953, 0.0032117723021656275, 1.1201295852661133, 0.07949136942625046, 0.06259360909461975, 0.025082983076572418, 0.19918981194496155, -0.10200972855091095, 0.03085937909781933, 1.1688214540481567, -0.11791279166936874, 0.07751397043466568, -0.03456250578165054]} +{"t": 5.7672, "q": [-0.35735446214675903, -0.014150120317935944, 0.012133057229220867, 0.6223104596138, -0.2953387200832367, 0.023830804973840714, -0.347383588552475, 0.003459978848695755, -0.0018614735454320908, 0.6225234866142273, -0.32921329140663147, 0.0030560865998268127, 0.0034283252898603678, 0.013121548108756542, -0.03196152299642563, 0.09306949377059937, 0.08331433683633804, 0.0032237565610557795, 1.1182000637054443, 0.07947938144207001, 0.06240186095237732, 0.025059014558792114, 0.19921377301216125, -0.1023213118314743, 0.03085937909781933, 1.1688334941864014, -0.11793676018714905, 0.07753793895244598, -0.03456250578165054]} +{"t": 5.784, "q": [-0.3571499288082123, -0.01424386352300644, 0.012200016528367996, 0.6220206618309021, -0.29532626271247864, 0.023838071152567863, -0.34680408239364624, 0.0034344124142080545, -0.0016873788554221392, 0.6224979162216187, -0.3292132019996643, 0.0030415647197514772, 0.0033077981788665056, 0.013622951693832874, -0.03192582726478577, 0.08453672379255295, 0.0839734673500061, 0.003175819758325815, 1.1151561737060547, 0.07947938144207001, 0.0622820183634758, 0.025047030299901962, 0.1991778165102005, -0.10263290256261826, 0.030883347615599632, 1.168857455253601, -0.1179247796535492, 0.07746603339910507, -0.03456250578165054]} +{"t": 5.8009, "q": [-0.35687723755836487, -0.01425238698720932, 0.012414286844432354, 0.6216627359390259, -0.2953096628189087, 0.023838141933083534, -0.3459092676639557, 0.0034173682797700167, -0.0014329327968880534, 0.6225064396858215, -0.32920506596565247, 0.00305601442232728, 0.003133703488856554, 0.014230736531317234, -0.031900741159915924, 0.07709451764822006, 0.08466855436563492, 0.003043993143364787, 1.1104223728179932, 0.07950334995985031, 0.06185058504343033, 0.02503504604101181, 0.19916583597660065, -0.10281267017126083, 0.030847394838929176, 1.1688814163208008, -0.1179247796535492, 0.07751397043466568, -0.03455052152276039]} +{"t": 5.8176, "q": [-0.35623806715011597, -0.01431204192340374, 0.012695517390966415, 0.6211088299751282, -0.2953013777732849, 0.023852640762925148, -0.3430202603340149, 0.003391801845282316, -0.0011784868547692895, 0.6225064396858215, -0.3291924297809601, 0.0030050792265683413, 0.003106919815763831, 0.01473940722644329, -0.03168414533138275, 0.06860969215631485, 0.08529172837734222, 0.003020024858415127, 1.1059283018112183, 0.07950334995985031, 0.061538998037576675, 0.025011077523231506, 0.19916583597660065, -0.10290854424238205, 0.030847394838929176, 1.168857455253601, -0.11791279166936874, 0.07750198245048523, -0.03455052152276039]} +{"t": 5.8343, "q": [-0.3543546795845032, -0.014388740062713623, 0.012641949579119682, 0.6205548644065857, -0.29529720544815063, 0.023845426738262177, -0.341213583946228, 0.0033832797780632973, -0.0012856220128014684, 0.6220377087593079, -0.3291676938533783, 0.0029903221875429153, 0.002986392704769969, 0.015923134982585907, -0.03069218620657921, 0.059477709233760834, 0.08562728762626648, 0.002996056340634823, 1.101685881614685, 0.07950334995985031, 0.06131129711866379, 0.024987109005451202, 0.19909393787384033, -0.10295648127794266, 0.030799459666013718, 1.1688334941864014, -0.1179247796535492, 0.07751397043466568, -0.03452655300498009]} +{"t": 5.8512, "q": [-0.35268434882164, -0.014593271538615227, 0.012722301296889782, 0.6196430325508118, -0.29529720544815063, 0.023845426738262177, -0.3402164876461029, 0.003144660498946905, -0.0012052706442773342, 0.6218758225440979, -0.3291594684123993, 0.002990249777212739, 0.0031203117687255144, 0.016370883211493492, -0.030366823077201843, 0.050513509660959244, 0.085747130215168, 0.002984072081744671, 1.0991212129592896, 0.07947938144207001, 0.06120343878865242, 0.02497512474656105, 0.19926171004772186, -0.10296846181154251, 0.030799459666013718, 1.1689174175262451, -0.11793676018714905, 0.07751397043466568, -0.034514568746089935]} +{"t": 5.868, "q": [-0.3505282402038574, -0.014917111024260521, 0.012963354587554932, 0.6183732151985168, -0.2952888607978821, 0.023831000551581383, -0.3390319049358368, 0.0026929883752018213, -0.0008704732172191143, 0.6218587756156921, -0.3291718363761902, 0.0029976193327456713, 0.0031203117687255144, 0.01670510321855545, -0.030389590188860893, 0.041441451758146286, 0.08580705523490906, 0.003020024858415127, 1.0961731672286987, 0.07947938144207001, 0.061119548976421356, 0.02491520345211029, 0.19928568601608276, -0.10295648127794266, 0.03081144392490387, 1.169085144996643, -0.1179487481713295, 0.07754991948604584, -0.03450258448719978]} +{"t": 5.8847, "q": [-0.34867042303085327, -0.015189819037914276, 0.01345885545015335, 0.6171204447746277, -0.2952764928340912, 0.023867228999733925, -0.3387506902217865, 0.0023521038237959146, -0.00046871634549461305, 0.6217735409736633, -0.32920461893081665, 0.002983386628329754, 0.0029997846577316523, 0.017176294699311256, -0.030580496415495872, 0.03387940302491188, 0.0857710987329483, 0.002972087822854519, 1.0915712118148804, 0.07934755831956863, 0.06109558045864105, 0.024783378466963768, 0.19928568601608276, -0.10298044979572296, 0.03081144392490387, 1.169085144996643, -0.11793676018714905, 0.07752595096826553, -0.03450258448719978]} +{"t": 5.9015, "q": [-0.3476988971233368, -0.015223907306790352, 0.01384721975773573, 0.6163023710250854, -0.29528066515922546, 0.023874443024396896, -0.3386654555797577, 0.0023009711876511574, -0.00016070275160018355, 0.6215775609016418, -0.3292703926563263, 0.0029839654453098774, 0.0030399602837860584, 0.017944110557436943, -0.031044278293848038, 0.02540655806660652, 0.08569919317960739, 0.003032008884474635, 1.0868253707885742, 0.07929962128400803, 0.06102367490530014, 0.024699488654732704, 0.19938156008720398, -0.10298044979572296, 0.030847394838929176, 1.1691330671310425, -0.11793676018714905, 0.07753793895244598, -0.03452655300498009]} +{"t": 5.9182, "q": [-0.3473324477672577, -0.015223907306790352, 0.013994530774652958, 0.6159870028495789, -0.29528066515922546, 0.023874443024396896, -0.3386228680610657, 0.0022924491204321384, -9.374327055411413e-05, 0.6214838027954102, -0.3293444514274597, 0.002999138319864869, 0.003093527862802148, 0.018886292353272438, -0.03125061094760895, 0.016993630677461624, 0.08568721264600754, 0.003055977402254939, 1.0821754932403564, 0.07929962128400803, 0.06096375361084938, 0.024591630324721336, 0.19944147765636444, -0.10302838683128357, 0.03085937909781933, 1.169180989265442, -0.1179247796535492, 0.07752595096826553, -0.03453853726387024]} +{"t": 5.935, "q": [-0.3473239243030548, -0.015240952372550964, 0.014007923193275928, 0.6159273982048035, -0.29528898000717163, 0.02387440763413906, -0.33854615688323975, 0.0022498385515064, -0.00016070275160018355, 0.621492326259613, -0.32949599623680115, 0.0029205698519945145, 0.0031203117687255144, 0.020018436014652252, -0.031493473798036575, 0.006171876098960638, 0.08566324412822723, 0.003103914437815547, 1.0779690742492676, 0.07926366478204727, 0.06087986379861832, 0.024387897923588753, 0.19944147765636444, -0.10314822942018509, 0.03082342818379402, 1.1692888736724854, -0.11793676018714905, 0.07752595096826553, -0.034514568746089935]} +{"t": 5.9517, "q": [-0.347383588552475, -0.015257995575666428, 0.014074882492423058, 0.6159443855285645, -0.2952474057674408, 0.023860104382038116, -0.33813709020614624, 0.0022924491204321384, -0.00020087843586225063, 0.6215349435806274, -0.3295080065727234, 0.0028698514215648174, 0.0030399602837860584, 0.02111232839524746, -0.031594231724739075, -0.0025286716409027576, 0.08566324412822723, 0.0031278827227652073, 1.0727440118789673, 0.07919175922870636, 0.060867879539728165, 0.024327976629137993, 0.19929766654968262, -0.10372346639633179, 0.03081144392490387, 1.16930091381073, -0.1179727166891098, 0.07753793895244598, -0.03453853726387024]} +{"t": 5.9684, "q": [-0.3476477861404419, -0.015257995575666428, 0.014222193509340286, 0.6159359216690063, -0.29523077607154846, 0.02386019192636013, -0.33771950006484985, 0.0023009711876511574, -0.0001473108568461612, 0.6215434670448303, -0.32947883009910583, 0.002804231597110629, 0.0031203117687255144, 0.02226644940674305, -0.03138163313269615, -0.012415657751262188, 0.08554340153932571, 0.0031398669816553593, 1.0670394897460938, 0.07903596758842468, 0.060807958245277405, 0.024268055334687233, 0.19923774898052216, -0.10443054139614105, 0.03081144392490387, 1.1693367958068848, -0.11793676018714905, 0.07752595096826553, -0.03452655300498009]} +{"t": 5.9853, "q": [-0.3477756083011627, -0.01527504064142704, 0.014436463825404644, 0.6159188747406006, -0.2951640486717224, 0.023759199306368828, -0.3377535939216614, 0.0023180153220891953, -0.00020087843586225063, 0.6215860843658447, -0.32946646213531494, 0.0027968622744083405, 0.0032006630208343267, 0.023571716621518135, -0.030917612835764885, -0.022458437830209732, 0.08490823209285736, 0.0031158984638750553, 1.0613828897476196, 0.07884421944618225, 0.0607839897274971, 0.024220118299126625, 0.19928568601608276, -0.10496982932090759, 0.030775491148233414, 1.169312834739685, -0.1179247796535492, 0.07750198245048523, -0.03449060022830963]} +{"t": 6.0021, "q": [-0.347869336605072, -0.015292083844542503, 0.01505249086767435, 0.6159103512763977, -0.2951391041278839, 0.023744843900203705, -0.3377535939216614, 0.0023094932548701763, -0.0002812298189383, 0.6215860843658447, -0.32946646213531494, 0.0027968622744083405, 0.0033747577108442783, 0.024747971445322037, -0.03049604967236519, -0.03284876048564911, 0.08357799053192139, 0.003103914437815547, 1.0582311153411865, 0.07868842035531998, 0.06077200546860695, 0.024160198867321014, 0.19930964708328247, -0.1055930107831955, 0.030739538371562958, 1.1694086790084839, -0.1179247796535492, 0.07754991948604584, -0.03446663171052933]} +{"t": 6.0188, "q": [-0.347869336605072, -0.015402872115373611, 0.01578904502093792, 0.6159018278121948, -0.29512250423431396, 0.023744914680719376, -0.3377450704574585, 0.0023350596893578768, -0.00030801360844634473, 0.6216371655464172, -0.32947468757629395, 0.002796934451907873, 0.003240838646888733, 0.026000142097473145, -0.03019506111741066, -0.043179161846637726, 0.08225972205400467, 0.0031398669816553593, 1.0533175468444824, 0.0785326287150383, 0.0607839897274971, 0.02413623034954071, 0.1992257535457611, -0.1061682477593422, 0.030715569853782654, 1.1693967580795288, -0.11796072870492935, 0.07751397043466568, -0.03443067893385887]} +{"t": 6.0356, "q": [-0.3477841317653656, -0.0154540054500103, 0.01611045002937317, 0.6159273982048035, -0.29508087038993835, 0.023716166615486145, -0.33762577176094055, 0.0023606258910149336, -0.00030801360844634473, 0.6216968297958374, -0.32947051525115967, 0.0027896373067051172, 0.0031872710678726435, 0.027191663160920143, -0.029972175136208534, -0.05281447991728783, 0.0809294730424881, 0.0032357408199459314, 1.048416018486023, 0.07826897501945496, 0.06081994250416756, 0.024088293313980103, 0.1992257535457611, -0.10676746070384979, 0.030715569853782654, 1.1694326400756836, -0.11791279166936874, 0.07749000191688538, -0.034394726157188416]} +{"t": 6.0524, "q": [-0.3476051688194275, -0.015488093718886375, 0.016217585653066635, 0.6159188747406006, -0.29508498311042786, 0.023694435134530067, -0.3373274803161621, 0.002394714392721653, -0.0003214055032003671, 0.621722400188446, -0.3294910490512848, 0.0027825392317026854, 0.00321405497379601, 0.02837536297738552, -0.029655834659934044, -0.06333663314580917, 0.0797550156712532, 0.0033076461404561996, 1.042447805404663, 0.07784952968358994, 0.06089184805750847, 0.024112261831760406, 0.19927369058132172, -0.10730675607919693, 0.030595727264881134, 1.169372797012329, -0.11793676018714905, 0.07750198245048523, -0.03437075763940811]} +{"t": 6.0691, "q": [-0.3476051688194275, -0.015547748655080795, 0.016217585653066635, 0.6158677339553833, -0.29508498311042786, 0.023694435134530067, -0.3372252285480499, 0.002386192325502634, -0.00036158118746243417, 0.6217564940452576, -0.3295074701309204, 0.0027826838195323944, 0.00321405497379601, 0.029619790613651276, -0.029469801113009453, -0.0746617242693901, 0.07854460924863815, 0.0033196303993463516, 1.0378578901290894, 0.07702261209487915, 0.06087986379861832, 0.024100277572870255, 0.19926171004772186, -0.10791794955730438, 0.030547790229320526, 1.169372797012329, -0.11790081113576889, 0.07752595096826553, -0.03435877338051796]} +{"t": 6.0859, "q": [-0.34747734665870667, -0.015743756666779518, 0.016217585653066635, 0.6157739758491516, -0.29508084058761597, 0.023701684549450874, -0.33717408776283264, 0.002394714392721653, -0.00036158118746243417, 0.6217650175094604, -0.3295074701309204, 0.0027826838195323944, 0.0031203117687255144, 0.030909746885299683, -0.02926599234342575, -0.08520784229040146, 0.07764579355716705, 0.0033316146582365036, 1.032225251197815, 0.07603991031646729, 0.060927800834178925, 0.02407630905508995, 0.19918981194496155, -0.10855311155319214, 0.030559774488210678, 1.1693367958068848, -0.11793676018714905, 0.07750198245048523, -0.03437075763940811]} +{"t": 6.1026, "q": [-0.3474262058734894, -0.01581193320453167, 0.016257761046290398, 0.6157143115997314, -0.29508498311042786, 0.023694435134530067, -0.337105929851532, 0.002403236459940672, -0.00030801360844634473, 0.6217650175094604, -0.32952383160591125, 0.002768324688076973, 0.0030533522367477417, 0.03211590275168419, -0.028997469693422318, -0.09523864090442657, 0.07699864357709885, 0.0033555831760168076, 1.0261971950531006, 0.07467370480298996, 0.06095176935195923, 0.0240643247961998, 0.19906996190547943, -0.10912835597991943, 0.030535805970430374, 1.169312834739685, -0.1179487481713295, 0.07751397043466568, -0.03437075763940811]} +{"t": 6.1193, "q": [-0.3473750650882721, -0.0158204548060894, 0.0163247212767601, 0.6156887412071228, -0.29508915543556213, 0.02370164915919304, -0.3370888829231262, 0.002394714392721653, -0.0002812298189383, 0.6217735409736633, -0.3295319676399231, 0.002753857057541609, 0.003066744189709425, 0.032942697405815125, -0.028840741142630577, -0.10355568677186966, 0.07662713527679443, 0.0033435989171266556, 1.021283745765686, 0.0731397271156311, 0.060999706387519836, 0.02407630905508995, 0.19908194243907928, -0.10960772633552551, 0.030499853193759918, 1.16930091381073, -0.1179247796535492, 0.07747801393270493, -0.03437075763940811]} +{"t": 6.1363, "q": [-0.3473750650882721, -0.015905676409602165, 0.01629793643951416, 0.6155864596366882, -0.29508912563323975, 0.02368718758225441, -0.3370547890663147, 0.0023606258910149336, -0.0002946217136923224, 0.6217820644378662, -0.32955265045166016, 0.002775820903480053, 0.0031203117687255144, 0.034391745924949646, -0.028676455840468407, -0.11725366115570068, 0.07619570195674896, 0.0033316146582365036, 1.0153155326843262, 0.07113835960626602, 0.06101169064640999, 0.0240643247961998, 0.19910591840744019, -0.11042264848947525, 0.030499853193759918, 1.1693248748779297, -0.11793676018714905, 0.07749000191688538, -0.03434678912162781]} +{"t": 6.153, "q": [-0.3472898602485657, -0.016016464680433273, 0.01629793643951416, 0.6155098080635071, -0.295093297958374, 0.023694399744272232, -0.3370462656021118, 0.002326537622138858, -0.00020087843586225063, 0.6217905879020691, -0.32957303524017334, 0.0027542186435312033, 0.0030399602837860584, 0.03543931618332863, -0.028764771297574043, -0.12744024395942688, 0.0761597529053688, 0.0032956618815660477, 1.0092874765396118, 0.07049120962619781, 0.060999706387519836, 0.024052340537309647, 0.19908194243907928, -0.1110338494181633, 0.03051183745265007, 1.1693488359451294, -0.11793676018714905, 0.07751397043466568, -0.034334804862737656]} +{"t": 6.1697, "q": [-0.34725576639175415, -0.0163488257676363, 0.016378289088606834, 0.6155098080635071, -0.29508498311042786, 0.023694435134530067, -0.33703774213790894, 0.0023350596893578768, -0.00016070275160018355, 0.6218332052230835, -0.32960981130599976, 0.0027182213962078094, 0.0030131766106933355, 0.03676081821322441, -0.029135003685951233, -0.1384177953004837, 0.07614776492118835, 0.0032956618815660477, 1.0018812417984009, 0.07038335502147675, 0.060999706387519836, 0.0240643247961998, 0.19911789894104004, -0.11170496046543121, 0.03051183745265007, 1.1693367958068848, -0.1179487481713295, 0.07747801393270493, -0.03437075763940811]} +{"t": 6.1866, "q": [-0.34724724292755127, -0.017362957820296288, 0.0163247212767601, 0.6155012845993042, -0.295093297958374, 0.023694399744272232, -0.3370206952095032, 0.0023094932548701763, -0.0001473108568461612, 0.621867299079895, -0.32965895533561707, 0.0026896116323769093, 0.0030801359098404646, 0.037892527878284454, -0.029476875439286232, -0.14981479942798615, 0.07619570195674896, 0.0033435989171266556, 0.9959250688552856, 0.0703713670372963, 0.06102367490530014, 0.024052340537309647, 0.1992017924785614, -0.11243600398302078, 0.03051183745265007, 1.1694207191467285, -0.11793676018714905, 0.07750198245048523, -0.034334804862737656]} +{"t": 6.2033, "q": [-0.3472216725349426, -0.01966392993927002, 0.016164017841219902, 0.6154330968856812, -0.2951015532016754, 0.023679902777075768, -0.3370121717453003, 0.002198705682530999, -0.0001473108568461612, 0.6219099164009094, -0.32971224188804626, 0.0026682987809181213, 0.002946217078715563, 0.03891072794795036, -0.02990034408867359, -0.16141553223133087, 0.07648332417011261, 0.003379551460966468, 0.9889622330665588, 0.0703713670372963, 0.06101169064640999, 0.024040356278419495, 0.19918981194496155, -0.11301124095916748, 0.030559774488210678, 1.1693967580795288, -0.1179247796535492, 0.07746603339910507, -0.034334804862737656]} +{"t": 6.2201, "q": [-0.34703418612480164, -0.020047424361109734, 0.015668518841266632, 0.6151348352432251, -0.2951056957244873, 0.02367265336215496, -0.3370121717453003, 0.0018407768802717328, -8.035137580009177e-05, 0.6221570372581482, -0.329938679933548, 0.0027356548234820366, 0.002731946762651205, 0.039906200021505356, -0.03032892383635044, -0.17256085574626923, 0.07663912326097488, 0.003415504237636924, 0.9811365604400635, 0.07033541798591614, 0.06097573786973953, 0.02400440350174904, 0.19926171004772186, -0.11350259929895401, 0.03057175874710083, 1.1693967580795288, -0.11790081113576889, 0.07747801393270493, -0.034334804862737656]} +{"t": 6.2368, "q": [-0.3470427095890045, -0.020166734233498573, 0.015722084790468216, 0.6150922179222107, -0.2951098382472992, 0.023665403947234154, -0.3370121717453003, 0.0015851134667173028, -6.695948104606941e-05, 0.6222678422927856, -0.330086886882782, 0.0027805224526673555, 0.0028122980147600174, 0.041015174239873886, -0.0306871235370636, -0.1835024505853653, 0.07653126120567322, 0.0034394727554172277, 0.9750245809555054, 0.07032343000173569, 0.06113153323531151, 0.02400440350174904, 0.19935758411884308, -0.11412577331066132, 0.030583743005990982, 1.1694086790084839, -0.11793676018714905, 0.07750198245048523, -0.034322820603847504]} +{"t": 6.2535, "q": [-0.34699156880378723, -0.020482052117586136, 0.015668518841266632, 0.615066647529602, -0.29511815309524536, 0.023679830133914948, -0.3370206952095032, 0.001252750982530415, -9.374327055411413e-05, 0.6224552989006042, -0.33014506101608276, 0.002882718574255705, 0.002946217078715563, 0.04197964072227478, -0.030929723754525185, -0.1942882537841797, 0.0764114186167717, 0.0034394727554172277, 0.9683253765106201, 0.07035938650369644, 0.06103565916419029, 0.023980434983968735, 0.1994055211544037, -0.11478491127490997, 0.030595727264881134, 1.169468641281128, -0.11793676018714905, 0.07751397043466568, -0.03431083634495735]} +{"t": 6.2703, "q": [-0.3471364378929138, -0.020737716928124428, 0.015668518841266632, 0.6150922179222107, -0.29513484239578247, 0.023708686232566833, -0.3370888829231262, 0.0009629990672692657, -5.3567582654068246e-05, 0.6226683855056763, -0.3302944302558899, 0.003116443520411849, 0.0030399602837860584, 0.042982060462236404, -0.03118874318897724, -0.20467858016490936, 0.076435387134552, 0.0034394727554172277, 0.9600682854652405, 0.07034739851951599, 0.06093978509306908, 0.02394448220729828, 0.19939354062080383, -0.11534816771745682, 0.030583743005990982, 1.1694926023483276, -0.1179247796535492, 0.07746603339910507, -0.0342988520860672]} +{"t": 6.287, "q": [-0.3471790552139282, -0.020950770005583763, 0.01565512642264366, 0.6151177883148193, -0.2951472997665405, 0.02370140142738819, -0.337148517370224, 0.0007414240390062332, 4.017568790004589e-05, 0.6227535605430603, -0.3303484618663788, 0.0032113422639667988, 0.003093527862802148, 0.04392422363162041, -0.031573981046676636, -0.2145775556564331, 0.07651928067207336, 0.003463441040366888, 0.9519549608230591, 0.07033541798591614, 0.06091581657528877, 0.023920513689517975, 0.19948941469192505, -0.11586348712444305, 0.03057175874710083, 1.169540524482727, -0.1179247796535492, 0.07750198245048523, -0.034322820603847504]} +{"t": 6.3037, "q": [-0.34720462560653687, -0.021214954555034637, 0.015601558610796928, 0.6151348352432251, -0.2951472997665405, 0.02370140142738819, -0.33754053711891174, 0.0005454153870232403, 0.00010713516530813649, 0.6228217482566833, -0.3304024636745453, 0.0033062228467315435, 0.003347973804920912, 0.04485843703150749, -0.03188659995794296, -0.22567494213581085, 0.07657919824123383, 0.003487409558147192, 0.9442610740661621, 0.07035938650369644, 0.06096375361084938, 0.023920513689517975, 0.19963322579860687, -0.11641476303339005, 0.030583743005990982, 1.1695884466171265, -0.11796072870492935, 0.07751397043466568, -0.034322820603847504]} +{"t": 6.3205, "q": [-0.34747734665870667, -0.021368352696299553, 0.01562834158539772, 0.615143358707428, -0.29516804218292236, 0.023694081231951714, -0.33800074458122253, 0.00032384038786403835, 0.00020087843586225063, 0.6228387951850891, -0.33049795031547546, 0.0034595890901982784, 0.003254230599850416, 0.04569416493177414, -0.03223155811429024, -0.2352503389120102, 0.07683087140321732, 0.0036072516813874245, 0.9352489113807678, 0.07027550041675568, 0.060867879539728165, 0.02389654517173767, 0.1997051239013672, -0.11693008244037628, 0.03057175874710083, 1.1696603298187256, -0.11796072870492935, 0.07751397043466568, -0.03428686782717705]} +{"t": 6.3372, "q": [-0.34795457124710083, -0.02153879590332508, 0.01564173400402069, 0.6151518821716309, -0.2952345609664917, 0.02370825968682766, -0.3382564187049866, 0.00020453077740967274, 0.0005356758483685553, 0.6228387951850891, -0.33073854446411133, 0.0038248433265835047, 0.003240838646888733, 0.04665118083357811, -0.032559990882873535, -0.24592828750610352, 0.07709451764822006, 0.0036791572347283363, 0.9262967109680176, 0.07028748095035553, 0.06089184805750847, 0.023920513689517975, 0.19971711933612823, -0.11748135834932327, 0.030595727264881134, 1.1696844100952148, -0.1179247796535492, 0.07751397043466568, -0.0342988520860672]} +{"t": 6.3539, "q": [-0.34826135635375977, -0.02170923724770546, 0.015668518841266632, 0.6151092648506165, -0.2953842878341675, 0.02379443496465683, -0.33863988518714905, 1.704423084447626e-05, 0.0008436894277110696, 0.6228047013282776, -0.3311982750892639, 0.0037417442072182894, 0.00321405497379601, 0.047615550458431244, -0.03283524140715599, -0.2561867833137512, 0.07740610837936401, 0.003787015099078417, 0.9167333245277405, 0.07032343000173569, 0.060867879539728165, 0.02389654517173767, 0.1998009979724884, -0.11796072870492935, 0.03057175874710083, 1.1697202920913696, -0.11793676018714905, 0.07751397043466568, -0.034334804862737656]} +{"t": 6.3706, "q": [-0.3482954502105713, -0.021981945261359215, 0.015614950098097324, 0.6151263117790222, -0.2955589294433594, 0.023866022005677223, -0.33877626061439514, -0.0003067961661145091, 0.001044567907229066, 0.6228217482566833, -0.33257612586021423, 0.004008375573903322, 0.0033077981788665056, 0.04853567108511925, -0.03343435004353523, -0.26591798663139343, 0.07751397043466568, 0.003894873196259141, 0.9076732397079468, 0.07032343000173569, 0.06084391102194786, 0.023908529430627823, 0.2000766396522522, -0.11845207959413528, 0.030583743005990982, 1.1697802543640137, -0.11793676018714905, 0.07751397043466568, -0.034334804862737656]} +{"t": 6.3888, "q": [-0.3481931984424591, -0.022356918081641197, 0.01562834158539772, 0.6151604056358337, -0.29558807611465454, 0.023887591436505318, -0.33872511982917786, -0.0006476807757280767, 0.0012454462703317404, 0.6229581236839294, -0.3348270058631897, 0.005404408555477858, 0.0032274469267576933, 0.04955518618226051, -0.03421724587678909, -0.2761165499687195, 0.07757388800382614, 0.003978762775659561, 0.8959646224975586, 0.07031144946813583, 0.0607600212097168, 0.023908529430627823, 0.20029236376285553, -0.11897938698530197, 0.030559774488210678, 1.169768214225769, -0.1179247796535492, 0.07751397043466568, -0.03434678912162781]} +{"t": 6.4055, "q": [-0.34826135635375977, -0.02260405942797661, 0.015614950098097324, 0.6152455806732178, -0.2956171929836273, 0.023909160867333412, -0.3387933075428009, -0.0008607336785644293, 0.001312405802309513, 0.6230774521827698, -0.3352077603340149, 0.006062307860702276, 0.003240838646888733, 0.05073400214314461, -0.03501105681061745, -0.28583574295043945, 0.0776098445057869, 0.00407463638111949, 0.8854185342788696, 0.07032343000173569, 0.06071208417415619, 0.023908529430627823, 0.20047211647033691, -0.119770348072052, 0.03057175874710083, 1.1698161363601685, -0.1179247796535492, 0.07754991948604584, -0.03431083634495735]} +{"t": 6.4222, "q": [-0.3483806848526001, -0.02285120077431202, 0.015561383217573166, 0.6152370572090149, -0.29562562704086304, 0.023952532559633255, -0.33895522356033325, -0.0009800433181226254, 0.0015400679549202323, 0.6230859756469727, -0.3354686498641968, 0.006537304259836674, 0.003347973804920912, 0.051973480731248856, -0.03582730516791344, -0.2959384620189667, 0.07766976207494736, 0.0041705104522407055, 0.8752678632736206, 0.07031144946813583, 0.060628194361925125, 0.023920513689517975, 0.2006998211145401, -0.12059725821018219, 0.030595727264881134, 1.1699600219726562, -0.11793676018714905, 0.07751397043466568, -0.034322820603847504]} +{"t": 6.4389, "q": [-0.34849998354911804, -0.023021643981337547, 0.0154542475938797, 0.6152711510658264, -0.2956174612045288, 0.024010438472032547, -0.33919385075569153, -0.001133441342972219, 0.0017007706919685006, 0.6231626272201538, -0.335456520318985, 0.006573510356247425, 0.0034551091957837343, 0.05311393365263939, -0.0365387499332428, -0.30542996525764465, 0.07770571857690811, 0.004230431281030178, 0.8648056387901306, 0.07033541798591614, 0.06061621010303497, 0.023932497948408127, 0.20075973868370056, -0.12150806188583374, 0.030619695782661438, 1.1701996326446533, -0.11793676018714905, 0.07752595096826553, -0.03428686782717705]} +{"t": 6.4557, "q": [-0.3486193120479584, -0.023175042122602463, 0.01538728829473257, 0.6152967214584351, -0.2956175208091736, 0.024024901911616325, -0.3394068777561188, -0.0012783173006027937, 0.001834689755924046, 0.6232478618621826, -0.3353613018989563, 0.0064054024405777454, 0.0034015413839370012, 0.0541858971118927, -0.03718414157629013, -0.3152090907096863, 0.07835286110639572, 0.004494084510952234, 0.8544393181800842, 0.07035938650369644, 0.06036454066634178, 0.023920513689517975, 0.2007237821817398, -0.1221671923995018, 0.030607711523771286, 1.1710145473480225, -0.1179247796535492, 0.07752595096826553, -0.03431083634495735]} +{"t": 6.4724, "q": [-0.3485596477985382, -0.023328440263867378, 0.015414072200655937, 0.6154160499572754, -0.2956010401248932, 0.024082859978079796, -0.3394750654697418, -0.0013379721203818917, 0.002048959955573082, 0.6234779357910156, -0.33536139130592346, 0.006419952027499676, 0.0035086767747998238, 0.05512756109237671, -0.03751755133271217, -0.3243890106678009, 0.07977898418903351, 0.005033374764025211, 0.8439051508903503, 0.07033541798591614, 0.060340575873851776, 0.023932497948408127, 0.2006279081106186, -0.12273044884204865, 0.030619695782661438, 1.1716258525848389, -0.11793676018714905, 0.07751397043466568, -0.03431083634495735]} +{"t": 6.4891, "q": [-0.3485596477985382, -0.02356705814599991, 0.015400679782032967, 0.6156546473503113, -0.295613557100296, 0.02410450205206871, -0.3395773470401764, -0.0014828480780124664, 0.0021427033934742212, 0.6239125728607178, -0.3353405296802521, 0.0063543193973600864, 0.0038300822488963604, 0.056038208305835724, -0.03768268972635269, -0.33498305082321167, 0.08106129616498947, 0.005320996046066284, 0.8337425589561462, 0.07035938650369644, 0.060148827731609344, 0.023920513689517975, 0.2006758451461792, -0.12342553585767746, 0.030607711523771286, 1.1720212697982788, -0.1179247796535492, 0.07751397043466568, -0.03428686782717705]} +{"t": 6.5058, "q": [-0.3486533761024475, -0.02393350936472416, 0.015440856106579304, 0.6158592104911804, -0.2956177294254303, 0.024111714214086533, -0.33979037404060364, -0.0017725999932736158, 0.002129311440512538, 0.6245517730712891, -0.3353440761566162, 0.00624533835798502, 0.004017568659037352, 0.05675072595477104, -0.0376056432723999, -0.34576886892318726, 0.08216384798288345, 0.005440838169306517, 0.8226811289787292, 0.07033541798591614, 0.060028985142707825, 0.023920513689517975, 0.20066386461257935, -0.12390490621328354, 0.030655648559331894, 1.1725845336914062, -0.11791279166936874, 0.07751397043466568, -0.03431083634495735]} +{"t": 6.5226, "q": [-0.34882381558418274, -0.02429996058344841, 0.015467639081180096, 0.6160807609558105, -0.29560530185699463, 0.024118999019265175, -0.34013980627059937, -0.0021049624774605036, 0.0020757438614964485, 0.6252676248550415, -0.3352877199649811, 0.0056561012752354145, 0.004017568659037352, 0.05726638063788414, -0.03761139139533043, -0.3559914231300354, 0.08326639980077744, 0.005452822428196669, 0.8126024007797241, 0.0703953355550766, 0.05970541015267372, 0.023932497948408127, 0.2006279081106186, -0.12433633953332901, 0.030655648559331894, 1.1733754873275757, -0.11793676018714905, 0.07750198245048523, -0.03431083634495735]} +{"t": 6.5393, "q": [-0.3489260971546173, -0.024683456867933273, 0.015507815405726433, 0.6165409684181213, -0.29558053612709045, 0.024176975712180138, -0.3404806852340698, -0.0023606258910149336, 0.0021025275345891714, 0.6263669729232788, -0.3355279564857483, 0.005316936876624823, 0.004084527958184481, 0.05771338567137718, -0.037551697343587875, -0.36656150221824646, 0.08445283770561218, 0.005440838169306517, 0.8010016679763794, 0.07035938650369644, 0.059489693492650986, 0.023932497948408127, 0.20049609243869781, -0.12464793026447296, 0.03063168004155159, 1.1743701696395874, -0.11793676018714905, 0.07750198245048523, -0.034334804862737656]} +{"t": 6.556, "q": [-0.3491050601005554, -0.02507547289133072, 0.015467639081180096, 0.6172909140586853, -0.2955847680568695, 0.024213114753365517, -0.3407192826271057, -0.002718554809689522, 0.002089135814458132, 0.6277560591697693, -0.33584317564964294, 0.0051965354941785336, 0.004566636402159929, 0.057962995022535324, -0.03742687776684761, -0.3775869905948639, 0.08545950800180435, 0.005464806687086821, 0.7905274629592896, 0.07035938650369644, 0.059357866644859314, 0.023908529430627823, 0.200352281332016, -0.12482769042253494, 0.030607711523771286, 1.1755326986312866, -0.11793676018714905, 0.07750198245048523, -0.03431083634495735]} +{"t": 6.5727, "q": [-0.3493010699748993, -0.025407835841178894, 0.015360504388809204, 0.618219792842865, -0.2956222593784332, 0.024249130859971046, -0.3410005271434784, -0.003067961661145091, 0.0019552167505025864, 0.6291621923446655, -0.3364078402519226, 0.004925997462123632, 0.004928217735141516, 0.058144524693489075, -0.037334319204092026, -0.38850462436676025, 0.08663396537303925, 0.0055486964993178844, 0.778099775314331, 0.0703713670372963, 0.05891445279121399, 0.023920513689517975, 0.19989687204360962, -0.12493554502725601, 0.030619695782661438, 1.177162528038025, -0.1179247796535492, 0.07746603339910507, -0.0342988520860672]} +{"t": 6.5895, "q": [-0.3494288921356201, -0.025527145713567734, 0.015320328995585442, 0.6192851066589355, -0.29568472504615784, 0.02431398443877697, -0.34111982583999634, -0.0031787490006536245, 0.0019150411244481802, 0.6305087208747864, -0.3369689881801605, 0.004735220223665237, 0.005249623209238052, 0.05829577147960663, -0.03725063428282738, -0.3989548683166504, 0.08772452920675278, 0.005944175645709038, 0.7661275267601013, 0.07035938650369644, 0.05856690928339958, 0.023920513689517975, 0.199249729514122, -0.12510332465171814, 0.03063168004155159, 1.1789960861206055, -0.1179247796535492, 0.07747801393270493, -0.03428686782717705]} +{"t": 6.6064, "q": [-0.3495226502418518, -0.02551010064780712, 0.015306936576962471, 0.6205974817276001, -0.2958056628704071, 0.024494292214512825, -0.34120506048202515, -0.0031872710678726435, 0.0018614735454320908, 0.6318210959434509, -0.3373083770275116, 0.004469436593353748, 0.005396933760493994, 0.058507975190877914, -0.03723764419555664, -0.4080389142036438, 0.08856342732906342, 0.006735134404152632, 0.7539515495300293, 0.07034739851951599, 0.057859838008880615, 0.023920513689517975, 0.19851869344711304, -0.12533102929592133, 0.03063168004155159, 1.1807698011398315, -0.1179247796535492, 0.07747801393270493, -0.03428686782717705]} +{"t": 6.6231, "q": [-0.3498890995979309, -0.025407835841178894, 0.015173017978668213, 0.6223530173301697, -0.29600977897644043, 0.024717673659324646, -0.34119653701782227, -0.003136138431727886, 0.0015802436973899603, 0.6330227255821228, -0.33762767910957336, 0.0042979782447218895, 0.005571028683334589, 0.058787908405065536, -0.03711386024951935, -0.41821351647377014, 0.0890667587518692, 0.0076219672337174416, 0.7422429919242859, 0.07029946893453598, 0.05730856582522392, 0.023920513689517975, 0.19789551198482513, -0.1255347579717636, 0.030619695782661438, 1.182255744934082, -0.1179487481713295, 0.07746603339910507, -0.034274883568286896]} +{"t": 6.6398, "q": [-0.3504856526851654, -0.0253140926361084, 0.014905179850757122, 0.6239125728607178, -0.2962893843650818, 0.024984272196888924, -0.34130731225013733, -0.0031105722300708294, 0.001084743533283472, 0.634275496006012, -0.33803313970565796, 0.004120066296309233, 0.005329974461346865, 0.058909207582473755, -0.037117790430784225, -0.42817240953445435, 0.08927049487829208, 0.008808405138552189, 0.7302947044372559, 0.07031144946813583, 0.05649363622069359, 0.023920513689517975, 0.19667312502861023, -0.12570254504680634, 0.030619695782661438, 1.1844968795776367, -0.11796072870492935, 0.07747801393270493, -0.03428686782717705]} +{"t": 6.6566, "q": [-0.3508009612560272, -0.025280004367232323, 0.014677518047392368, 0.6252505779266357, -0.29639366269111633, 0.025077922269701958, -0.34134992957115173, -0.003093527862802148, 0.0008838651119731367, 0.6350680589675903, -0.33807432651519775, 0.004149543587118387, 0.00508892023935914, 0.058931972831487656, -0.03712344914674759, -0.43718454241752625, 0.08915065228939056, 0.010486196726560593, 0.7189216613769531, 0.07023954391479492, 0.05555886775255203, 0.023908529430627823, 0.19561851024627686, -0.12572650611400604, 0.030643664300441742, 1.1864622831344604, -0.1179487481713295, 0.07747801393270493, -0.034274883568286896]} +{"t": 6.6733, "q": [-0.3513208031654358, -0.02520330436527729, 0.014516814611852169, 0.6264522075653076, -0.2965846657752991, 0.024975869804620743, -0.34162265062332153, -0.0030423952266573906, 0.0007365542696788907, 0.6357327699661255, -0.3380744159221649, 0.004164079204201698, 0.0049817850813269615, 0.05893193185329437, -0.03711360692977905, -0.4461127817630768, 0.08841961622238159, 0.013254553079605103, 0.7063262462615967, 0.07027550041675568, 0.054252587258815765, 0.023920513689517975, 0.1946837455034256, -0.1257384866476059, 0.030655648559331894, 1.1880202293395996, -0.1179727166891098, 0.07747801393270493, -0.034274883568286896]} +{"t": 6.6902, "q": [-0.35171282291412354, -0.025126606225967407, 0.014423071406781673, 0.6275004148483276, -0.29678839445114136, 0.024953365325927734, -0.3417334258556366, -0.0030423952266573906, 0.0006829866906628013, 0.6362611651420593, -0.3380744159221649, 0.004164079204201698, 0.004955001175403595, 0.058939579874277115, -0.037128616124391556, -0.45493316650390625, 0.08782040327787399, 0.01561544556170702, 0.6962475180625916, 0.07025153189897537, 0.05229916051030159, 0.023908529430627823, 0.19421635568141937, -0.12577444314956665, 0.030643664300441742, 1.1887153387069702, -0.11793676018714905, 0.07749000191688538, -0.034274883568286896]} +{"t": 6.7069, "q": [-0.35247981548309326, -0.025049906224012375, 0.014275760389864445, 0.6284889578819275, -0.29745906591415405, 0.024024615064263344, -0.3420146703720093, -0.00301682879216969, 0.0005088920588605106, 0.6365764737129211, -0.33796432614326477, 0.004315693862736225, 0.004901433829218149, 0.058985233306884766, -0.037169456481933594, -0.46321427822113037, 0.08736500144004822, 0.017317205667495728, 0.6850662231445312, 0.07021557539701462, 0.04933905601501465, 0.023932497948408127, 0.19389277696609497, -0.12584635615348816, 0.030679617077112198, 1.1890867948532104, -0.11793676018714905, 0.07749000191688538, -0.0342988520860672]} +{"t": 6.7236, "q": [-0.35294002294540405, -0.02503286302089691, 0.014168625697493553, 0.6290003061294556, -0.2984544634819031, 0.02243606001138687, -0.34229588508605957, -0.003008306724950671, 0.000522283953614533, 0.6366616487503052, -0.3381302058696747, 0.003815655130892992, 0.00483447453007102, 0.05906890705227852, -0.037236135452985764, -0.47028496861457825, 0.08746087551116943, 0.01804824359714985, 0.6726865172386169, 0.07025153189897537, 0.045216482132673264, 0.023932497948408127, 0.1934373825788498, -0.125858336687088, 0.03069160133600235, 1.1893384456634521, -0.11793676018714905, 0.07746603339910507, -0.034274883568286896]} +{"t": 6.7405, "q": [-0.3535535931587219, -0.025058429688215256, 0.014141841791570187, 0.6292133331298828, -0.29928112030029297, 0.02120128460228443, -0.34295210242271423, -0.0029827402904629707, 0.0007633380591869354, 0.6366190910339355, -0.33953800797462463, 0.0029711322858929634, 0.004874649923294783, 0.05909961834549904, -0.037325698882341385, -0.4769362211227417, 0.08748484402894974, 0.01870737597346306, 0.661768913269043, 0.07026351243257523, 0.04103398695588112, 0.023920513689517975, 0.19328159093856812, -0.125858336687088, 0.030667632818222046, 1.1893744468688965, -0.11791279166936874, 0.07746603339910507, -0.034274883568286896]} +{"t": 6.7573, "q": [-0.3544228672981262, -0.02507547289133072, 0.01419540960341692, 0.6295201182365417, -0.2993932366371155, 0.021164434030652046, -0.3438383936882019, -0.0029827402904629707, 0.0011249192757532, 0.6366105675697327, -0.34092459082603455, 0.004445437341928482, 0.004861257970333099, 0.05912264063954353, -0.03739041090011597, -0.4842465817928314, 0.08741293847560883, 0.019750002771615982, 0.6490656137466431, 0.07029946893453598, 0.039511989802122116, 0.023920513689517975, 0.19312578439712524, -0.12588229775428772, 0.03069160133600235, 1.189554214477539, -0.11796072870492935, 0.07747801393270493, -0.034274883568286896]} +{"t": 6.774, "q": [-0.3558034300804138, -0.02507547289133072, 0.014208801090717316, 0.6298525333404541, -0.29946795105934143, 0.021135054528713226, -0.3454064726829529, -0.0029997846577316523, 0.0014865003759041429, 0.6366616487503052, -0.3403215706348419, 0.004657847806811333, 0.00479429867118597, 0.05913083627820015, -0.03753336891531944, -0.4922161102294922, 0.08738896995782852, 0.021403826773166656, 0.6375008821487427, 0.07029946893453598, 0.0378941185772419, 0.023920513689517975, 0.19301792979240417, -0.125858336687088, 0.030679617077112198, 1.189554214477539, -0.11793676018714905, 0.07746603339910507, -0.034274883568286896]} +{"t": 6.7907, "q": [-0.3577038645744324, -0.02502434141933918, 0.014155233278870583, 0.6301848888397217, -0.2993931472301483, 0.021063098683953285, -0.3473750650882721, -0.003008306724950671, 0.0019150411244481802, 0.6367383599281311, -0.3393121361732483, 0.004648291971534491, 0.00479429867118597, 0.059193067252635956, -0.03789949417114258, -0.4999339282512665, 0.087269127368927, 0.023489082232117653, 0.6260079741477966, 0.07032343000173569, 0.03653990104794502, 0.023932497948408127, 0.1929340362548828, -0.12589429318904877, 0.030667632818222046, 1.1896381378173828, -0.1179247796535492, 0.07744206488132477, -0.03423893079161644]} +{"t": 6.8074, "q": [-0.3597917854785919, -0.024939119815826416, 0.014088273979723454, 0.6304916739463806, -0.2992601692676544, 0.020948007702827454, -0.34928402304649353, -0.0029401297215372324, 0.002356973709538579, 0.6367298364639282, -0.3381134867668152, 0.0046078963205218315, 0.004847866017371416, 0.05931507423520088, -0.03806072846055031, -0.5084547400474548, 0.0872211903333664, 0.025322668254375458, 0.6145151257514954, 0.07032343000173569, 0.03375956416130066, 0.02395646646618843, 0.19285015761852264, -0.12597817182540894, 0.030667632818222046, 1.1899256706237793, -0.11791279166936874, 0.07746603339910507, -0.03423893079161644]} +{"t": 6.8242, "q": [-0.36198198795318604, -0.024709021672606468, 0.013726692646741867, 0.6307984590530396, -0.29909810423851013, 0.020796874538064003, -0.35156795382499695, -0.002888997085392475, 0.0029060414526611567, 0.6367298364639282, -0.33713051676750183, 0.005034806206822395, 0.004633595701307058, 0.0594976432621479, -0.038204267621040344, -0.5160766839981079, 0.08762865513563156, 0.026449184864759445, 0.602363109588623, 0.07032343000173569, 0.030296120792627335, 0.023920513689517975, 0.19274228811264038, -0.1260141283273697, 0.030655648559331894, 1.1900935173034668, -0.11790081113576889, 0.07746603339910507, -0.03423893079161644]} +{"t": 6.8409, "q": [-0.3640102446079254, -0.02460675686597824, 0.013807044364511967, 0.6311904788017273, -0.29894015192985535, 0.02062400057911873, -0.35381779074668884, -0.00282082031480968, 0.00354885240085423, 0.6367809772491455, -0.3362305760383606, 0.005549247842282057, 0.0045130690559744835, 0.05965063348412514, -0.03851395472884178, -0.5231474041938782, 0.08791627734899521, 0.027575701475143433, 0.5909421443939209, 0.07032343000173569, 0.02690458483994007, 0.023932497948408127, 0.192790225148201, -0.1260620653629303, 0.03063168004155159, 1.190524935722351, -0.11788882315158844, 0.07746603339910507, -0.03425091505050659]} +{"t": 6.8577, "q": [-0.36501583456993103, -0.024461880326271057, 0.014262368902564049, 0.6313012838363647, -0.29873648285865784, 0.0203862264752388, -0.3552154004573822, -0.002769687445834279, 0.004298798739910126, 0.6367980241775513, -0.33554354310035706, 0.005949377082288265, 0.0045130690559744835, 0.05973374471068382, -0.03845275565981865, -0.5309850573539734, 0.08806008845567703, 0.028869997709989548, 0.5796410441398621, 0.07033541798591614, 0.022218754515051842, 0.023920513689517975, 0.19282618165016174, -0.12614595890045166, 0.03063168004155159, 1.1908724308013916, -0.11790081113576889, 0.07747801393270493, -0.03425091505050659]} +{"t": 6.8744, "q": [-0.3658510148525238, -0.024223262444138527, 0.014623950235545635, 0.6313012838363647, -0.29867416620254517, 0.02033589594066143, -0.3561358153820038, -0.002769687445834279, 0.004968393128365278, 0.6367127895355225, -0.3351563513278961, 0.006432436406612396, 0.004593420308083296, 0.05975642055273056, -0.038438744843006134, -0.5396137237548828, 0.08791627734899521, 0.030643664300441742, 0.5686035752296448, 0.07031144946813583, 0.019714049994945526, 0.023920513689517975, 0.193161740899086, -0.12612198293209076, 0.030643664300441742, 1.1915556192398071, -0.1179247796535492, 0.07747801393270493, -0.03423893079161644]} +{"t": 6.8912, "q": [-0.3658851087093353, -0.023430705070495605, 0.014905179850757122, 0.6313012838363647, -0.2986866533756256, 0.020372016355395317, -0.3562124967575073, -0.002837864449247718, 0.005504068918526173, 0.6366786956787109, -0.33506691455841064, 0.0065914359875023365, 0.0044996771030128, 0.05976402387022972, -0.038443904370069504, -0.546109139919281, 0.08796421438455582, 0.03350789472460747, 0.5570507645606995, 0.07029946893453598, 0.018371816724538803, 0.02394448220729828, 0.19335348904132843, -0.1260620653629303, 0.030643664300441742, 1.1924782991409302, -0.11791279166936874, 0.07746603339910507, -0.03422694653272629]} +{"t": 6.9079, "q": [-0.36568909883499146, -0.021743325516581535, 0.01538728829473257, 0.6313012838363647, -0.29874902963638306, 0.020465794950723648, -0.35611024498939514, -0.0028719529509544373, 0.006120096426457167, 0.6366105675697327, -0.3350876271724701, 0.00662798760458827, 0.004365758039057255, 0.05993165075778961, -0.03863610699772835, -0.5534075498580933, 0.08802413195371628, 0.036695696413517, 0.5446111559867859, 0.07031144946813583, 0.017736652866005898, 0.02394448220729828, 0.19342540204524994, -0.12595421075820923, 0.030655648559331894, 1.1935689449310303, -0.11790081113576889, 0.07747801393270493, -0.03422694653272629]} +{"t": 6.9249, "q": [-0.3656635284423828, -0.0215302724391222, 0.015882788226008415, 0.6313012838363647, -0.29885292053222656, 0.020573794841766357, -0.3560846745967865, -0.0029060414526611567, 0.006588812451809645, 0.6363804340362549, -0.33510005474090576, 0.006649907678365707, 0.004379149992018938, 0.06011470779776573, -0.03888779133558273, -0.5601786375045776, 0.0881679430603981, 0.03942809998989105, 0.5323991775512695, 0.07031144946813583, 0.01720934733748436, 0.023920513689517975, 0.1935092806816101, -0.12591825425624847, 0.030643664300441742, 1.1940003633499146, -0.11790081113576889, 0.07747801393270493, -0.03422694653272629]} +{"t": 6.9416, "q": [-0.36568909883499146, -0.021632539108395576, 0.016016706824302673, 0.6312927603721619, -0.2989194393157959, 0.020689263939857483, -0.356118768453598, -0.0029316076543182135, 0.006937001831829548, 0.6361503601074219, -0.3351042568683624, 0.0066717457957565784, 0.004312190227210522, 0.06019074097275734, -0.03893940523266792, -0.5681241750717163, 0.08829977363348007, 0.04268781095743179, 0.5194922089576721, 0.07029946893453598, 0.016514262184500694, 0.023932497948408127, 0.19358119368553162, -0.12593023478984833, 0.030643664300441742, 1.1942520141601562, -0.1179247796535492, 0.07746603339910507, -0.03425091505050659]} +{"t": 6.9583, "q": [-0.36591067910194397, -0.021743325516581535, 0.01596313901245594, 0.631284236907959, -0.29894858598709106, 0.020783251151442528, -0.35616135597229004, -0.0030509172938764095, 0.006950393784791231, 0.6359457969665527, -0.3350801169872284, 0.006758724804967642, 0.004325582180172205, 0.060228537768125534, -0.038916055113077164, -0.5764651894569397, 0.08826381713151932, 0.0457557737827301, 0.5073521733283997, 0.07031144946813583, 0.015483618713915348, 0.02394448220729828, 0.19377294182777405, -0.12595421075820923, 0.030643664300441742, 1.1945875883102417, -0.11793676018714905, 0.07744206488132477, -0.03425091505050659]} +{"t": 6.9753, "q": [-0.3660470247268677, -0.021760370582342148, 0.015882788226008415, 0.6312416195869446, -0.29898601770401, 0.020848199725151062, -0.3561869263648987, -0.00307648372836411, 0.006883434485644102, 0.6355452537536621, -0.3350517153739929, 0.0068238480016589165, 0.004446109291166067, 0.060205813497304916, -0.03892023116350174, -0.5836317539215088, 0.08858739584684372, 0.04733768850564957, 0.4954278767108917, 0.07031144946813583, 0.014177338220179081, 0.02395646646618843, 0.19379690289497375, -0.12597817182540894, 0.030655648559331894, 1.1952106952667236, -0.11791279166936874, 0.07749000191688538, -0.03422694653272629]} +{"t": 6.9921, "q": [-0.36609816551208496, -0.021760370582342148, 0.015829220414161682, 0.6312245726585388, -0.2990899980068207, 0.02107204869389534, -0.35615283250808716, -0.003093527862802148, 0.006910218391567469, 0.6352299451828003, -0.3350479006767273, 0.006874667014926672, 0.0045130690559744835, 0.060190655291080475, -0.03891974315047264, -0.5914814472198486, 0.0887671560049057, 0.048596031963825226, 0.483599454164505, 0.07028748095035553, 0.011864382773637772, 0.02394448220729828, 0.19379690289497375, -0.12600214779376984, 0.030667632818222046, 1.1957499980926514, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.0088, "q": [-0.36615779995918274, -0.02177741378545761, 0.015842612832784653, 0.6312075257301331, -0.29916900396347046, 0.02120916172862053, -0.3561272919178009, -0.003067961661145091, 0.006870042532682419, 0.6349316835403442, -0.3350728154182434, 0.006933056749403477, 0.004566636402159929, 0.060190606862306595, -0.0389099083840847, -0.5988876819610596, 0.08882708102464676, 0.049794454127550125, 0.47058457136154175, 0.07027550041675568, 0.009275790303945541, 0.023932497948408127, 0.193760946393013, -0.1260380893945694, 0.030679617077112198, 1.1966608762741089, -0.11793676018714905, 0.07750198245048523, -0.03425091505050659]} +{"t": 7.0255, "q": [-0.36614927649497986, -0.021785937249660492, 0.01581582799553871, 0.6310967206954956, -0.29918569326400757, 0.02132493443787098, -0.35602501034736633, -0.00307648372836411, 0.006883434485644102, 0.6346589922904968, -0.3350605368614197, 0.006940217688679695, 0.004633595701307058, 0.06020572781562805, -0.03890056908130646, -0.6063058972358704, 0.08885104954242706, 0.05128049850463867, 0.4593912959098816, 0.07026351243257523, 0.005093295592814684, 0.023932497948408127, 0.19364111125469208, -0.1260620653629303, 0.030655648559331894, 1.1979671716690063, -0.11793676018714905, 0.07750198245048523, -0.03423893079161644]} +{"t": 7.0423, "q": [-0.3661833703517914, -0.02183706872165203, 0.015748869627714157, 0.6310455799102783, -0.2991940677165985, 0.021426258608698845, -0.35596534609794617, -0.0031190942972898483, 0.006829866673797369, 0.6345226168632507, -0.33502793312072754, 0.006983484607189894, 0.005021960940212011, 0.06019047647714615, -0.03888041898608208, -0.6141076683998108, 0.08871921896934509, 0.053281866014003754, 0.4481620788574219, 0.07027550041675568, -0.0005992112564854324, 0.02395646646618843, 0.19336546957492828, -0.1261339634656906, 0.030667632818222046, 1.1992014646530151, -0.11791279166936874, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.059, "q": [-0.36620041728019714, -0.021862635388970375, 0.01565512642264366, 0.6309944987297058, -0.2991941571235657, 0.021513119339942932, -0.3558886647224426, -0.003102049930021167, 0.006709339562803507, 0.6343863010406494, -0.33490607142448425, 0.007214832119643688, 0.005075528286397457, 0.06017531082034111, -0.03887992352247238, -0.6211903095245361, 0.08892294764518738, 0.055582836270332336, 0.4357703924179077, 0.07027550041675568, -0.0035353463608771563, 0.02394448220729828, 0.19287411868572235, -0.12612198293209076, 0.030667632818222046, 1.2007474899291992, -0.1179247796535492, 0.07747801393270493, -0.03425091505050659]} +{"t": 7.0757, "q": [-0.36615779995918274, -0.02189672365784645, 0.015681909397244453, 0.6308922171592712, -0.29916927218437195, 0.0215712022036314, -0.3557693660259247, -0.0031105722300708294, 0.00672273151576519, 0.6342328786849976, -0.3347276747226715, 0.007620056159794331, 0.005276407115161419, 0.06018287315964699, -0.03887525573372841, -0.6280932426452637, 0.08930644392967224, 0.0577879324555397, 0.4242176115512848, 0.07026351243257523, -0.006052033975720406, 0.02395646646618843, 0.1924906224012375, -0.12616991996765137, 0.030655648559331894, 1.201526403427124, -0.11793676018714905, 0.07747801393270493, -0.034262899309396744]} +{"t": 7.0924, "q": [-0.36606407165527344, -0.021930811926722527, 0.015695301815867424, 0.630841076374054, -0.2990904450416565, 0.02168024517595768, -0.35565856099128723, -0.003102049930021167, 0.006695947609841824, 0.6342073082923889, -0.3321640193462372, 0.012376648373901844, 0.005236231256276369, 0.060205597430467606, -0.038871075958013535, -0.6355714201927185, 0.08951018005609512, 0.06035256013274193, 0.41204163432121277, 0.07023954391479492, -0.008532768115401268, 0.023932497948408127, 0.19209514558315277, -0.12622983753681183, 0.030667632818222046, 1.2022933959960938, -0.1179247796535492, 0.07747801393270493, -0.03423893079161644]} +{"t": 7.1092, "q": [-0.36601293087005615, -0.021930811926722527, 0.015708694234490395, 0.6306620836257935, -0.299028217792511, 0.021760258823633194, -0.35560742020606995, -0.003085005795583129, 0.006749515421688557, 0.6341561675071716, -0.3319956362247467, 0.012840158306062222, 0.005062136333435774, 0.060197990387678146, -0.038865912705659866, -0.6425342559814453, 0.08935438096523285, 0.06324075907468796, 0.40026113390922546, 0.07027550041675568, -0.011408982798457146, 0.02394448220729828, 0.19169966876506805, -0.12625381350517273, 0.03069160133600235, 1.2026649713516235, -0.1179487481713295, 0.07747801393270493, -0.03425091505050659]} +{"t": 7.1259, "q": [-0.36597031354904175, -0.021973423659801483, 0.015722084790468216, 0.6305683851242065, -0.29884180426597595, 0.022087087854743004, -0.35551369190216064, -0.0030423952266573906, 0.006736123468726873, 0.634130597114563, -0.33195364475250244, 0.012723445892333984, 0.0049817850813269615, 0.060220539569854736, -0.03882241249084473, -0.6491734981536865, 0.0890427902340889, 0.06564958393573761, 0.38935548067092896, 0.07025153189897537, -0.01408146508038044, 0.02394448220729828, 0.19153188169002533, -0.12626579403877258, 0.030643664300441742, 1.2028687000274658, -0.11791279166936874, 0.07746603339910507, -0.03422694653272629]} +{"t": 7.1426, "q": [-0.365953266620636, -0.02196490205824375, 0.015681909397244453, 0.6305001974105835, -0.2988089323043823, 0.022145114839076996, -0.3554540276527405, -0.0030423952266573906, 0.006575420964509249, 0.6341135501861572, -0.3319453001022339, 0.012708830647170544, 0.005021960940212011, 0.06022045016288757, -0.038802746683359146, -0.6565437912940979, 0.08865930140018463, 0.06773483753204346, 0.37939661741256714, 0.07023954391479492, -0.01804824359714985, 0.02394448220729828, 0.1913401335477829, -0.12625381350517273, 0.030643664300441742, 1.2031203508377075, -0.11791279166936874, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.1595, "q": [-0.365953266620636, -0.021990466862916946, 0.01562834158539772, 0.6303126811981201, -0.29879245162010193, 0.022159652784466743, -0.3553517758846283, -0.0029912625905126333, 0.006495069246739149, 0.6339772343635559, -0.3318745493888855, 0.012584565207362175, 0.004821082577109337, 0.06024312600493431, -0.03878873586654663, -0.6624040603637695, 0.08865930140018463, 0.06955644488334656, 0.3681553900241852, 0.07022756338119507, -0.021511685103178024, 0.02394448220729828, 0.1910165697336197, -0.1263137310743332, 0.03069160133600235, 1.2034438848495483, -0.11793676018714905, 0.07750198245048523, -0.034274883568286896]} +{"t": 7.1764, "q": [-0.36582544445991516, -0.021998990327119827, 0.015668518841266632, 0.6301252245903015, -0.29884588718414307, 0.022065354511141777, -0.35523244738578796, -0.002948652021586895, 0.006495069246739149, 0.63390052318573, -0.3319114148616791, 0.01257764920592308, 0.004767514765262604, 0.060280922800302505, -0.03876538574695587, -0.6681325435638428, 0.08864731341600418, 0.07118629664182663, 0.35639888048171997, 0.07022756338119507, -0.0240643247961998, 0.023920513689517975, 0.1907169669866562, -0.12630175054073334, 0.03069160133600235, 1.2036596536636353, -0.11791279166936874, 0.07746603339910507, -0.034274883568286896]} +{"t": 7.1931, "q": [-0.3656720519065857, -0.022024555131793022, 0.015681909397244453, 0.6299718022346497, -0.29888302087783813, 0.021971071138978004, -0.35511314868927, -0.0029230855870991945, 0.006481677293777466, 0.6338834762573242, -0.33196479082107544, 0.01258544810116291, 0.004780906718224287, 0.06029604375362396, -0.03875604644417763, -0.674028754234314, 0.08851549029350281, 0.07295996695756912, 0.3453374207019806, 0.07021557539701462, -0.02569417841732502, 0.023920513689517975, 0.1903694123029709, -0.1263137310743332, 0.030655648559331894, 1.2038873434066772, -0.11791279166936874, 0.07747801393270493, -0.03425091505050659]} +{"t": 7.2099, "q": [-0.36556127667427063, -0.02206716686487198, 0.01565512642264366, 0.629784345626831, -0.2989369332790375, 0.021876629441976547, -0.3549938499927521, -0.0028719529509544373, 0.006454893853515387, 0.6338408589363098, -0.3319973647594452, 0.012556708417832851, 0.004687163513153791, 0.060311201959848404, -0.038756538182497025, -0.6798771023750305, 0.08857540786266327, 0.07442203909158707, 0.3341202139854431, 0.07020359486341476, -0.02671283856034279, 0.023920513689517975, 0.1895664781332016, -0.12634968757629395, 0.030679617077112198, 1.2045704126358032, -0.11790081113576889, 0.07745404541492462, -0.03425091505050659]} +{"t": 7.2268, "q": [-0.3654760420322418, -0.022050121799111366, 0.01564173400402069, 0.6296309232711792, -0.2989659309387207, 0.02178232930600643, -0.35492566227912903, -0.0028719529509544373, 0.0064013260416686535, 0.6337982416152954, -0.3320459723472595, 0.012484497390687466, 0.004727339372038841, 0.06035655736923218, -0.038728516548871994, -0.6855935454368591, 0.08865930140018463, 0.07538077980279922, 0.32355010509490967, 0.07021557539701462, -0.02756371721625328, 0.02389654517173767, 0.18867963552474976, -0.12642158567905426, 0.030655648559331894, 1.2056490182876587, -0.11793676018714905, 0.07747801393270493, -0.034262899309396744]} +{"t": 7.2435, "q": [-0.3654334247112274, -0.02207568846642971, 0.015614950098097324, 0.6295286417007446, -0.29898667335510254, 0.02174600213766098, -0.35491713881492615, -0.002846386516466737, 0.00638793408870697, 0.6337897181510925, -0.3321819007396698, 0.01255128439515829, 0.004713947419077158, 0.06040947139263153, -0.03869582340121269, -0.6919931173324585, 0.08838365972042084, 0.07605189085006714, 0.3124886751174927, 0.07019160687923431, -0.028666267171502113, 0.023872576653957367, 0.18770891427993774, -0.12646952271461487, 0.030643664300441742, 1.2066916227340698, -0.11793676018714905, 0.07746603339910507, -0.034262899309396744]} +{"t": 7.2602, "q": [-0.36542490124702454, -0.022058645263314247, 0.0155345993116498, 0.629341185092926, -0.29901984333992004, 0.02165893465280533, -0.35491713881492615, -0.002829342382028699, 0.006320974789559841, 0.6336789131164551, -0.3322106599807739, 0.012558819726109505, 0.004727339372038841, 0.06041707843542099, -0.03870098665356636, -0.6984286904335022, 0.08792825788259506, 0.07672300934791565, 0.30190661549568176, 0.07021557539701462, -0.03002048470079899, 0.023860592395067215, 0.186846062541008, -0.12650547921657562, 0.030643664300441742, 1.2081297636032104, -0.11793676018714905, 0.07750198245048523, -0.03425091505050659]} +{"t": 7.2769, "q": [-0.3653141260147095, -0.022033078595995903, 0.015521206893026829, 0.6291366219520569, -0.29905712604522705, 0.021564604714512825, -0.3548489511013031, -0.0028122980147600174, 0.006294190883636475, 0.6335511207580566, -0.33224740624427795, 0.012537405826151371, 0.004673771560192108, 0.06041707843542099, -0.03870098665356636, -0.7038815021514893, 0.08748484402894974, 0.07769373059272766, 0.2913844585418701, 0.07017962634563446, -0.03179414942860603, 0.023848608136177063, 0.18648652732372284, -0.12656539678573608, 0.03063168004155159, 1.208932638168335, -0.1179247796535492, 0.07749000191688538, -0.034274883568286896]} +{"t": 7.2937, "q": [-0.3652118444442749, -0.02200751192867756, 0.015521206893026829, 0.6289321184158325, -0.2990778982639313, 0.021542754024267197, -0.3547893166542053, -0.002778209513053298, 0.006294190883636475, 0.6334232687950134, -0.3323086202144623, 0.012501650489866734, 0.0045800283551216125, 0.06045505031943321, -0.038716964423656464, -0.7087351083755493, 0.08728111535310745, 0.07922771573066711, 0.2798795998096466, 0.0700957328081131, -0.03413107246160507, 0.02383662387728691, 0.18611501157283783, -0.1266373097896576, 0.030679617077112198, 1.2093881368637085, -0.1179487481713295, 0.07747801393270493, -0.034262899309396744]} +{"t": 7.3105, "q": [-0.3650243580341339, -0.021998990327119827, 0.015561383217573166, 0.6286935210227966, -0.2990820109844208, 0.0215065386146307, -0.35477226972579956, -0.002752643311396241, 0.006320974789559841, 0.6333039402961731, -0.3323206305503845, 0.012465439736843109, 0.004365758039057255, 0.06048532947897911, -0.03870811313390732, -0.7138164043426514, 0.0872451588511467, 0.08179233968257904, 0.26928552985191345, 0.07004779577255249, -0.03886484354734421, 0.023800671100616455, 0.18579144775867462, -0.1266612708568573, 0.03063168004155159, 1.2095558643341064, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.3272, "q": [-0.36495620012283325, -0.02194785699248314, 0.015561383217573166, 0.6284719109535217, -0.2990736961364746, 0.021492091938853264, -0.3547637462615967, -0.0026759442407637835, 0.006347758695483208, 0.6331591010093689, -0.3323408365249634, 0.012429293245077133, 0.004258622881025076, 0.06053077429533005, -0.03869975730776787, -0.7187179327011108, 0.08720920979976654, 0.08446481823921204, 0.2589191794395447, 0.06996390968561172, -0.042939480394124985, 0.023848608136177063, 0.1853959709405899, -0.12667326629161835, 0.030643664300441742, 1.2096517086029053, -0.1179247796535492, 0.07746603339910507, -0.034262899309396744]} +{"t": 7.3439, "q": [-0.36494767665863037, -0.021879680454730988, 0.015547990798950195, 0.6282333135604858, -0.29912760853767395, 0.021412162110209465, -0.3547893166542053, -0.002641855739057064, 0.006294190883636475, 0.6328863501548767, -0.3323609232902527, 0.012378613464534283, 0.004312190227210522, 0.060545891523361206, -0.038690414279699326, -0.7243625521659851, 0.08718524128198624, 0.0863703116774559, 0.2481813132762909, 0.06992795318365097, -0.04718189314007759, 0.02382463961839676, 0.18503643572330475, -0.1266852468252182, 0.030643664300441742, 1.2096517086029053, -0.1179487481713295, 0.07746603339910507, -0.03425091505050659]} +{"t": 7.3608, "q": [-0.36496472358703613, -0.021811503916978836, 0.0153738958761096, 0.6280117034912109, -0.2991192936897278, 0.02139771357178688, -0.3547978401184082, -0.0025992451701313257, 0.006146880332380533, 0.6325966119766235, -0.33236923813819885, 0.012393228709697723, 0.004405933897942305, 0.06056101247668266, -0.03868107497692108, -0.7303786277770996, 0.08714928478002548, 0.08861136436462402, 0.23729965090751648, 0.06974819302558899, -0.049135323613882065, 0.02382463961839676, 0.1848207265138626, -0.1267092078924179, 0.030643664300441742, 1.2097235918045044, -0.11791279166936874, 0.07746603339910507, -0.034274883568286896]} +{"t": 7.3775, "q": [-0.3650243580341339, -0.021794458851218224, 0.01519980188459158, 0.627704918384552, -0.29910269379615784, 0.02138333208858967, -0.3547978401184082, -0.0025651566684246063, 0.005946001503616571, 0.6322557330131531, -0.33237746357917786, 0.012393328361213207, 0.00445950124412775, 0.06054580584168434, -0.038670752197504044, -0.736406683921814, 0.08712531626224518, 0.09079249203205109, 0.22736471891403198, 0.06968826800584793, -0.050453588366508484, 0.02383662387728691, 0.18456904590129852, -0.1267092078924179, 0.030667632818222046, 1.2097835540771484, -0.1179247796535492, 0.07749000191688538, -0.034274883568286896]} +{"t": 7.3942, "q": [-0.364973247051239, -0.021802980452775955, 0.01511945016682148, 0.6272958517074585, -0.2990943491458893, 0.021354427561163902, -0.35477226972579956, -0.002514024032279849, 0.005865650251507759, 0.6319063305854797, -0.332385778427124, 0.012407943606376648, 0.004472893197089434, 0.06059902906417847, -0.038706883788108826, -0.7418115735054016, 0.08706539869308472, 0.09219464659690857, 0.21581192314624786, 0.06964033097028732, -0.05164002627134323, 0.02382463961839676, 0.184401273727417, -0.12678112089633942, 0.030643664300441742, 1.2098314762115479, -0.11793676018714905, 0.07749000191688538, -0.03425091505050659]} +{"t": 7.411, "q": [-0.3649391531944275, -0.021802980452775955, 0.015092666260898113, 0.6269890666007996, -0.299090176820755, 0.021332699805498123, -0.3547978401184082, -0.002514024032279849, 0.005852258298546076, 0.6316677331924438, -0.3324182331562042, 0.012364652939140797, 0.004606812261044979, 0.06062944233417511, -0.0387275293469429, -0.746497392654419, 0.08705341070890427, 0.0929616317152977, 0.20522986352443695, 0.06959239393472672, -0.053341787308454514, 0.02382463961839676, 0.18430539965629578, -0.12684103846549988, 0.030655648559331894, 1.2099153995513916, -0.11791279166936874, 0.07747801393270493, -0.03425091505050659]} +{"t": 7.4277, "q": [-0.36495620012283325, -0.021794458851218224, 0.014958747662603855, 0.6266908049583435, -0.29909849166870117, 0.02131817489862442, -0.3547893166542053, -0.0024884575977921486, 0.005785298999398947, 0.6312671899795532, -0.3324424922466278, 0.012321298941969872, 0.004780906718224287, 0.06075052171945572, -0.038682300597429276, -0.750895619392395, 0.08702944219112396, 0.09390839189291, 0.19292205572128296, 0.06956842541694641, -0.05541505664587021, 0.02383662387728691, 0.18426944315433502, -0.1270088255405426, 0.03063168004155159, 1.2100112438201904, -0.1179487481713295, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.4444, "q": [-0.3649902939796448, -0.021794458851218224, 0.014771261252462864, 0.626349925994873, -0.2990694046020508, 0.021325597539544106, -0.3547893166542053, -0.0024288028944283724, 0.005571028683334589, 0.6308666467666626, -0.3324585258960724, 0.012277844361960888, 0.005329974461346865, 0.06088671833276749, -0.038627732545137405, -0.7553777098655701, 0.08706539869308472, 0.09459149092435837, 0.1817767322063446, 0.06953247636556625, -0.05831523984670639, 0.02382463961839676, 0.18420952558517456, -0.12711668014526367, 0.030655648559331894, 1.2101551294326782, -0.1179247796535492, 0.07750198245048523, -0.03423893079161644]} +{"t": 7.4612, "q": [-0.3650243580341339, -0.021794458851218224, 0.014583774842321873, 0.6259579062461853, -0.299061119556427, 0.02134012244641781, -0.35477226972579956, -0.0024458470288664103, 0.0053701503202319145, 0.6304149627685547, -0.3324991762638092, 0.012234635651111603, 0.005477285478264093, 0.06097773090004921, -0.03864062577486038, -0.7593564391136169, 0.08758071810007095, 0.09569403529167175, 0.17090703547000885, 0.06944858282804489, -0.0610835961997509, 0.02382463961839676, 0.1841735690832138, -0.1272125542163849, 0.030619695782661438, 1.2104426622390747, -0.11796072870492935, 0.07749000191688538, -0.03425091505050659]} +{"t": 7.4779, "q": [-0.3650414049625397, -0.021811503916978836, 0.01444985531270504, 0.6255488395690918, -0.29904451966285706, 0.02134021744132042, -0.3547126054763794, -0.0024458470288664103, 0.005236231256276369, 0.6299291849136353, -0.3324620723724365, 0.012212449684739113, 0.005919218063354492, 0.06105341017246246, -0.03861362114548683, -0.7645695805549622, 0.08776047825813293, 0.09761151671409607, 0.16002535820007324, 0.06940064579248428, -0.06409163773059845, 0.02383662387728691, 0.1841256320476532, -0.1272604912519455, 0.030643664300441742, 1.210478663444519, -0.11796072870492935, 0.07750198245048523, -0.03425091505050659]} +{"t": 7.4949, "q": [-0.36510106921195984, -0.021794458851218224, 0.014302544295787811, 0.6250289678573608, -0.2990112602710724, 0.02132592909038067, -0.35469555854797363, -0.0024373249616473913, 0.005035352893173695, 0.6294093728065491, -0.33244186639785767, 0.012248596176505089, 0.006026353221386671, 0.061106324195861816, -0.03858092799782753, -0.7692674398422241, 0.08736500144004822, 0.10018812119960785, 0.14939534664154053, 0.06934072822332382, -0.0673753172159195, 0.02382463961839676, 0.18402975797653198, -0.12727247178554535, 0.030667632818222046, 1.2106224298477173, -0.11796072870492935, 0.07750198245048523, -0.03423893079161644]} +{"t": 7.5118, "q": [-0.36509254574775696, -0.021794458851218224, 0.014315936714410782, 0.6244750618934631, -0.29898640513420105, 0.02136950194835663, -0.354669988155365, -0.0024373249616473913, 0.004995177034288645, 0.6287786960601807, -0.3324216604232788, 0.012284742668271065, 0.006039745174348354, 0.06112135574221611, -0.03855189308524132, -0.7741689682006836, 0.08720920979976654, 0.10433466732501984, 0.13792644441127777, 0.06929279118776321, -0.06972422450780869, 0.02382463961839676, 0.18399381637573242, -0.1273084282875061, 0.030679617077112198, 1.2107542753219604, -0.11796072870492935, 0.07751397043466568, -0.034274883568286896]} +{"t": 7.5286, "q": [-0.36496472358703613, -0.021802980452775955, 0.01444985531270504, 0.6237506866455078, -0.2989117205142975, 0.021456824615597725, -0.3545251190662384, -0.0024288028944283724, 0.005102312192320824, 0.6281651258468628, -0.3323688805103302, 0.0123496288433671, 0.005785298999398947, 0.06114412099123001, -0.03855757787823677, -0.7783994078636169, 0.08713730424642563, 0.10807374119758606, 0.12531904876232147, 0.06920889765024185, -0.07119828462600708, 0.023848608136177063, 0.18401777744293213, -0.12738032639026642, 0.03069160133600235, 1.2108142375946045, -0.11793676018714905, 0.07752595096826553, -0.034262899309396744]} +{"t": 7.5454, "q": [-0.36473461985588074, -0.02190524712204933, 0.014650734141469002, 0.6232137680053711, -0.298708438873291, 0.021769320592284203, -0.3543035387992859, -0.0024373249616473913, 0.00516927195712924, 0.6278071999549866, -0.3322995603084564, 0.012399816885590553, 0.005637987982481718, 0.06122727319598198, -0.03850620612502098, -0.782509982585907, 0.08711333572864532, 0.11189670860767365, 0.11334680020809174, 0.06906508654356003, -0.072792187333107, 0.023800671100616455, 0.18405373394489288, -0.12739230692386627, 0.030679617077112198, 1.2108381986618042, -0.11793676018714905, 0.07746603339910507, -0.03425091505050659]} +{"t": 7.5621, "q": [-0.3646664321422577, -0.02190524712204933, 0.014811436645686626, 0.6228047013282776, -0.2982482612133026, 0.02258167788386345, -0.3541927635669708, -0.0024202808272093534, 0.005236231256276369, 0.6275004148483276, -0.33206707239151, 0.012063149362802505, 0.005517460871487856, 0.06126502528786659, -0.03847300633788109, -0.7874834537506104, 0.08657404035329819, 0.11474895477294922, 0.10095511376857758, 0.06882540881633759, -0.07464973628520966, 0.02383662387728691, 0.18399381637573242, -0.12738032639026642, 0.030643664300441742, 1.210874080657959, -0.11793676018714905, 0.07751397043466568, -0.03423893079161644]} +{"t": 7.5788, "q": [-0.3646153211593628, -0.021973423659801483, 0.01486500445753336, 0.6225234866142273, -0.2966691255569458, 0.0253517534583807, -0.3541245758533478, -0.0024202808272093534, 0.005155880004167557, 0.6272192001342773, -0.3317966163158417, 0.011602543294429779, 0.005490677431225777, 0.06131033971905708, -0.03843513876199722, -0.7933317422866821, 0.08655007183551788, 0.11556388437747955, 0.08937834948301315, 0.06817825883626938, -0.07754991948604584, 0.023812655359506607, 0.1838979423046112, -0.12740430235862732, 0.030679617077112198, 1.2108981609344482, -0.11793676018714905, 0.07749000191688538, -0.03423893079161644]} +{"t": 7.5956, "q": [-0.3646067976951599, -0.02206716686487198, 0.014878395944833755, 0.6222678422927856, -0.2964458465576172, 0.025743337348103523, -0.35403937101364136, -0.002403236459940672, 0.00516927195712924, 0.626954972743988, -0.3311903178691864, 0.010491780005395412, 0.005383542273193598, 0.06133301556110382, -0.038421131670475006, -0.7987366318702698, 0.08651412278413773, 0.1164507195353508, 0.07693872600793839, 0.06688395887613297, -0.08070177584886551, 0.02382463961839676, 0.18393388390541077, -0.12742826342582703, 0.030667632818222046, 1.210922122001648, -0.11798469722270966, 0.07750198245048523, -0.03422694653272629]} +{"t": 7.6123, "q": [-0.3645215630531311, -0.022237608209252357, 0.014918571338057518, 0.6221996545791626, -0.29637134075164795, 0.025844929739832878, -0.3537581264972687, -0.002369148191064596, 0.00512909609824419, 0.6267845630645752, -0.3306349217891693, 0.009381559677422047, 0.005530852824449539, 0.06144627556204796, -0.03832153230905533, -0.8048845529556274, 0.08605872094631195, 0.11730159819126129, 0.06695586442947388, 0.06582935154438019, -0.08440490067005157, 0.02383662387728691, 0.1839219033718109, -0.12744024395942688, 0.030643664300441742, 1.2110059261322021, -0.11796072870492935, 0.07751397043466568, -0.03422694653272629]} +{"t": 7.6292, "q": [-0.364530086517334, -0.022365441545844078, 0.014958747662603855, 0.622174084186554, -0.2963464856147766, 0.025873959064483643, -0.3536558747291565, -0.0023606258910149336, 0.005008568987250328, 0.6267760396003723, -0.3304232358932495, 0.008892523124814034, 0.005517460871487856, 0.061483945697546005, -0.03826863691210747, -0.8115597367286682, 0.08563927561044693, 0.11844009906053543, 0.05663744732737541, 0.06449910253286362, -0.0884435847401619, 0.02383662387728691, 0.18388594686985016, -0.1274881809949875, 0.030667632818222046, 1.2110059261322021, -0.11793676018714905, 0.07750198245048523, -0.034214962273836136]} +{"t": 7.6459, "q": [-0.36436817049980164, -0.02254440449178219, 0.015079274773597717, 0.6220206618309021, -0.2963050901889801, 0.025932004675269127, -0.3535110056400299, -0.0023435817565768957, 0.004901433829218149, 0.6267760396003723, -0.33042240142822266, 0.008732604794204235, 0.005356758367270231, 0.061514224857091904, -0.038259804248809814, -0.8187143206596375, 0.08536363393068314, 0.12035757303237915, 0.044329650700092316, 0.061107564717531204, -0.09074455499649048, 0.023812655359506607, 0.18386198580265045, -0.1275121569633484, 0.030655648559331894, 1.211221694946289, -0.11796072870492935, 0.07749000191688538, -0.034202978014945984]} +{"t": 7.6626, "q": [-0.3640784025192261, -0.022842679172754288, 0.015239977277815342, 0.6218076348304749, -0.2963050901889801, 0.025932004675269127, -0.3530507981777191, -0.0023180153220891953, 0.004968393128365278, 0.6267675161361694, -0.3304915726184845, 0.00862427894026041, 0.005222839303314686, 0.06159745901823044, -0.03822813183069229, -0.8251858353614807, 0.08508799970149994, 0.12292219698429108, 0.032824791967868805, 0.05812349170446396, -0.09211075305938721, 0.023848608136177063, 0.1838739663362503, -0.1276080310344696, 0.030667632818222046, 1.2113056182861328, -0.1179487481713295, 0.07749000191688538, -0.034202978014945984]} +{"t": 7.6794, "q": [-0.3637545704841614, -0.023601148277521133, 0.015347111970186234, 0.6216286420822144, -0.29630085825920105, 0.02591032162308693, -0.35193440318107605, -0.002326537622138858, 0.004955001175403595, 0.6267845630645752, -0.33053213357925415, 0.008537481538951397, 0.005222839303314686, 0.06168061122298241, -0.0381767600774765, -0.832711935043335, 0.08496815711259842, 0.1257864236831665, 0.02160755731165409, 0.05456417798995972, -0.09231448918581009, 0.023860592395067215, 0.1838979423046112, -0.12772786617279053, 0.030655648559331894, 1.2114133834838867, -0.11796072870492935, 0.07753793895244598, -0.03422694653272629]} +{"t": 7.6961, "q": [-0.36349040269851685, -0.024981729686260223, 0.015427463687956333, 0.6214326620101929, -0.2962301969528198, 0.025932317599654198, -0.34844884276390076, -0.0022924491204321384, 0.004901433829218149, 0.6268442273139954, -0.33052363991737366, 0.00847927387803793, 0.005182663444429636, 0.0617411732673645, -0.038159094750881195, -0.8397586345672607, 0.08499212563037872, 0.12869858741760254, 0.010342386551201344, 0.05050152540206909, -0.0926620289683342, 0.023860592395067215, 0.1838979423046112, -0.12777580320835114, 0.030643664300441742, 1.2114853858947754, -0.11793676018714905, 0.07752595096826553, -0.03423893079161644]} +{"t": 7.7128, "q": [-0.36253592371940613, -0.02502434141933918, 0.015427463687956333, 0.6213048100471497, -0.29620519280433655, 0.025917934253811836, -0.3475028872489929, -0.0022924491204321384, 0.004486285150051117, 0.626801609992981, -0.33051949739456177, 0.008471966721117496, 0.00508892023935914, 0.06217129901051521, -0.03775567188858986, -0.8479079008102417, 0.08460862934589386, 0.13224592804908752, -0.0008388957940042019, 0.047924917191267014, -0.09269798547029495, 0.023872576653957367, 0.18383800983428955, -0.127931609749794, 0.030619695782661438, 1.2115212678909302, -0.1179247796535492, 0.07750198245048523, -0.034202978014945984]} +{"t": 7.7296, "q": [-0.3623654842376709, -0.024981729686260223, 0.0153738958761096, 0.6209468841552734, -0.29618823528289795, 0.02581670507788658, -0.34753698110580444, -0.0023094932548701763, 0.004218447022140026, 0.6267760396003723, -0.33066603541374207, 0.008255396038293839, 0.00508892023935914, 0.06223985180258751, -0.03783170133829117, -0.8556017875671387, 0.08448878675699234, 0.13455888628959656, -0.010833739303052425, 0.04577973857522011, -0.09272195398807526, 0.023860592395067215, 0.18383800983428955, -0.12799152731895447, 0.030643664300441742, 1.2117010354995728, -0.1179487481713295, 0.07747801393270493, -0.034214962273836136]} +{"t": 7.7464, "q": [-0.36128315329551697, -0.0250158179551363, 0.015481031499803066, 0.6205804347991943, -0.29610878229141235, 0.025694023817777634, -0.3466847836971283, -0.0023094932548701763, 0.004231838975101709, 0.6268357038497925, -0.33066996932029724, 0.008219090290367603, 0.005263015162199736, 0.06231559067964554, -0.03782449662685394, -0.863055944442749, 0.08478839695453644, 0.13555356860160828, -0.021703431382775307, 0.0400392971932888, -0.0926859974861145, 0.023872576653957367, 0.18386198580265045, -0.12819525599479675, 0.030655648559331894, 1.2117968797683716, -0.11793676018714905, 0.07750198245048523, -0.034202978014945984]} +{"t": 7.7632, "q": [-0.36064401268959045, -0.024998774752020836, 0.015467639081180096, 0.6202566027641296, -0.2960960865020752, 0.025628961622714996, -0.34620752930641174, -0.0023009711876511574, 0.00416487967595458, 0.6268357038497925, -0.3307715952396393, 0.008038416504859924, 0.005450501572340727, 0.06245928257703781, -0.03776555135846138, -0.8699468970298767, 0.08490823209285736, 0.13650032877922058, -0.031925976276397705, 0.03488608077168465, -0.09267401695251465, 0.023860592395067215, 0.18393388390541077, -0.12836304306983948, 0.030643664300441742, 1.2120726108551025, -0.1179966852068901, 0.07749000191688538, -0.03423893079161644]} +{"t": 7.7799, "q": [-0.35978326201438904, -0.025007296353578568, 0.015507815405726433, 0.6198390126228333, -0.2960706353187561, 0.025484368205070496, -0.3454490602016449, -0.0023180153220891953, 0.004030960611999035, 0.6268271803855896, -0.3308451175689697, 0.007981009781360626, 0.005383542273193598, 0.06261890381574631, -0.03787440061569214, -0.8775448799133301, 0.08475244045257568, 0.137794628739357, -0.04262788966298103, 0.0300923902541399, -0.09259012341499329, 0.023860592395067215, 0.18388594686985016, -0.12844692170619965, 0.030679617077112198, 1.2122763395309448, -0.11796072870492935, 0.07751397043466568, -0.03423893079161644]} +{"t": 7.7966, "q": [-0.3584112226963043, -0.0250158179551363, 0.015547990798950195, 0.6192339658737183, -0.29604098200798035, 0.025332540273666382, -0.3441622257232666, -0.0023350596893578768, 0.004084527958184481, 0.6267930865287781, -0.3309187889099121, 0.007952665910124779, 0.0052094473503530025, 0.06271716952323914, -0.03782371059060097, -0.8851668834686279, 0.0845726802945137, 0.13937653601169586, -0.05251487344503403, 0.02726411260664463, -0.09250623732805252, 0.023860592395067215, 0.18380206823349, -0.12851883471012115, 0.030655648559331894, 1.212420105934143, -0.11796072870492935, 0.07751397043466568, -0.03422694653272629]} +{"t": 7.8134, "q": [-0.3569539189338684, -0.02502434141933918, 0.015547990798950195, 0.6185777187347412, -0.2959402799606323, 0.02507246658205986, -0.34275609254837036, -0.0023350596893578768, 0.00416487967595458, 0.6267334222793579, -0.33096763491630554, 0.007880480960011482, 0.00508892023935914, 0.0628380998969078, -0.037759050726890564, -0.8934000134468079, 0.08379369974136353, 0.14212092757225037, -0.062066301703453064, 0.025250762701034546, -0.09219464659690857, 0.023860592395067215, 0.18376611173152924, -0.12857875227928162, 0.030643664300441742, 1.212515950202942, -0.1179487481713295, 0.07750198245048523, -0.03422694653272629]} +{"t": 7.8302, "q": [-0.35542845726013184, -0.025041384622454643, 0.015521206893026829, 0.617844820022583, -0.29623281955718994, 0.02423928864300251, -0.3416482210159302, -0.0023606258910149336, 0.004205055069178343, 0.6264010667800903, -0.33107423782348633, 0.007867014035582542, 0.005115704145282507, 0.06306586414575577, -0.037855517119169235, -0.9003269076347351, 0.08284694701433182, 0.1453566700220108, -0.07218098640441895, 0.022098911926150322, -0.09194297343492508, 0.023872576653957367, 0.18365825712680817, -0.12860272824764252, 0.030643664300441742, 1.2125399112701416, -0.1179487481713295, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.847, "q": [-0.3532894253730774, -0.02503286302089691, 0.015507815405726433, 0.616864800453186, -0.29623228311538696, 0.024036753922700882, -0.3406766951084137, -0.002386192325502634, 0.004539852496236563, 0.6260857582092285, -0.33181777596473694, 0.008085203357040882, 0.005021960940212011, 0.06334710866212845, -0.038047295063734055, -0.9074695110321045, 0.08124106377363205, 0.1494792401790619, -0.08266718685626984, 0.018575549125671387, -0.09195496141910553, 0.023860592395067215, 0.18340657651424408, -0.12865066528320312, 0.030643664300441742, 1.2125638723373413, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.8637, "q": [-0.3510395884513855, -0.024990251287817955, 0.015494422987103462, 0.6160125732421875, -0.2964511513710022, 0.023551160469651222, -0.34088975191116333, -0.0024202808272093534, 0.005035352893173695, 0.6258130073547363, -0.3337118327617645, 0.010277117602527142, 0.00483447453007102, 0.06355995684862137, -0.038192279636859894, -0.914600133895874, 0.07920374721288681, 0.15355387330055237, -0.09248226881027222, 0.012978916056454182, -0.09177519381046295, 0.02388456091284752, 0.183298721909523, -0.12868660688400269, 0.03063168004155159, 1.212515950202942, -0.11793676018714905, 0.07751397043466568, -0.03423893079161644]} +{"t": 7.8808, "q": [-0.34894314408302307, -0.024913553148508072, 0.015400679782032967, 0.6153308153152466, -0.29666265845298767, 0.023427283391356468, -0.3411283493041992, -0.002394714392721653, 0.005437109619379044, 0.6255232691764832, -0.3341566026210785, 0.00982369389384985, 0.004446109291166067, 0.06384864449501038, -0.038349732756614685, -0.9216348528862, 0.07771769911050797, 0.15627430379390717, -0.10089518874883652, 0.008676579222083092, -0.0917632132768631, 0.02388456091284752, 0.18326276540756226, -0.1287824809551239, 0.030595727264881134, 1.2124561071395874, -0.11790081113576889, 0.07740610837936401, -0.03423893079161644]} +{"t": 7.8977, "q": [-0.3479630947113037, -0.024828331544995308, 0.015347111970186234, 0.6151944398880005, -0.29769232869148254, 0.021665053442120552, -0.34075337648391724, -0.002377670258283615, 0.005450501572340727, 0.6254721283912659, -0.33445751667022705, 0.009317959658801556, 0.004097919911146164, 0.06444220244884491, -0.03888139873743057, -0.9302035570144653, 0.07698666304349899, 0.1581917703151703, -0.10869692265987396, 0.0021092237439006567, -0.09125987440347672, 0.02388456091284752, 0.18326276540756226, -0.12891431152820587, 0.03063168004155159, 1.2124561071395874, -0.1179247796535492, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.9144, "q": [-0.34803128242492676, -0.024700500071048737, 0.015347111970186234, 0.6152541041374207, -0.2981886863708496, 0.02082378789782524, -0.34075337648391724, -0.002275404753163457, 0.005316582508385181, 0.625463604927063, -0.33458781242370605, 0.009130306541919708, 0.0034551091957837343, 0.0652255117893219, -0.039504341781139374, -0.9391797780990601, 0.07698666304349899, 0.16046877205371857, -0.11720572412014008, -0.004098604898899794, -0.09115201979875565, 0.023872576653957367, 0.18319086730480194, -0.12927383184432983, 0.03063168004155159, 1.2124440670013428, -0.1179487481713295, 0.07745404541492462, -0.03419099375605583]} +{"t": 7.9311, "q": [-0.3481931984424591, -0.02466641180217266, 0.015239977277815342, 0.6152626276016235, -0.2983214259147644, 0.020591331645846367, -0.34101757407188416, -0.0022327941842377186, 0.005329974461346865, 0.6254550814628601, -0.3346487581729889, 0.009021898731589317, 0.0035220684949308634, 0.06584850698709488, -0.039870887994766235, -0.9485753774642944, 0.07708253711462021, 0.16369253396987915, -0.12432435154914856, -0.010150638408958912, -0.09111606329679489, 0.02388456091284752, 0.18321482837200165, -0.12969328463077545, 0.030595727264881134, 1.2124440670013428, -0.11793676018714905, 0.07747801393270493, -0.034262899309396744]} +{"t": 7.9481, "q": [-0.34859374165534973, -0.02464936673641205, 0.015146234072744846, 0.6152541041374207, -0.2983255684375763, 0.0205695778131485, -0.3414607346057892, -0.002258360618725419, 0.005343366414308548, 0.6254039406776428, -0.3347187638282776, 0.009073472581803799, 0.003696163184940815, 0.06644856184720993, -0.04019232839345932, -0.9573239088058472, 0.07713047415018082, 0.1675993949174881, -0.13108345866203308, -0.01390170119702816, -0.09075653553009033, 0.023872576653957367, 0.1832747608423233, -0.13012471795082092, 0.030607711523771286, 1.2124561071395874, -0.11791279166936874, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.9648, "q": [-0.3487386107444763, -0.02465789020061493, 0.015146234072744846, 0.6152796745300293, -0.2983172535896301, 0.020584100857377052, -0.34171637892723083, -0.002258360618725419, 0.005343366414308548, 0.6253868937492371, -0.33474743366241455, 0.00906649325042963, 0.003776514669880271, 0.06703214347362518, -0.04023785889148712, -0.9663479924201965, 0.07708253711462021, 0.1727406233549118, -0.13907693326473236, -0.01912682317197323, -0.0902891531586647, 0.023872576653957367, 0.18333467841148376, -0.13048423826694489, 0.030607711523771286, 1.2124561071395874, -0.1179247796535492, 0.07747801393270493, -0.03423893079161644]} +{"t": 7.9815, "q": [-0.3488749563694, -0.02465789020061493, 0.015092666260898113, 0.6153308153152466, -0.29831311106681824, 0.020605873316526413, -0.3418612480163574, -0.002266882685944438, 0.005343366414308548, 0.6253613233566284, -0.3347598612308502, 0.009088413789868355, 0.004017568659037352, 0.0675630196928978, -0.040355388075113297, -0.9742815494537354, 0.07741809636354446, 0.1778099536895752, -0.14550048112869263, -0.02358495444059372, -0.09027716517448425, 0.02388456091284752, 0.18339459598064423, -0.13081979751586914, 0.030607711523771286, 1.2125399112701416, -0.11793676018714905, 0.07750198245048523, -0.03422694653272629]} +{"t": 7.9984, "q": [-0.3490198254585266, -0.024674933403730392, 0.015065882354974747, 0.6153649091720581, -0.2983297109603882, 0.020620249211788177, -0.3418782949447632, -0.002258360618725419, 0.005316582508385181, 0.6252420544624329, -0.3347475230693817, 0.009081024676561356, 0.004084527958184481, 0.06785164773464203, -0.040523651987314224, -0.9817357659339905, 0.07744206488132477, 0.18243585526943207, -0.15285879373550415, -0.030403979122638702, -0.09012137353420258, 0.02389654517173767, 0.1834545135498047, -0.13099956512451172, 0.030583743005990982, 1.2125040292739868, -0.1179487481713295, 0.07746603339910507, -0.03422694653272629]} +{"t": 8.0151, "q": [-0.3491050601005554, -0.02471754513680935, 0.014998923055827618, 0.6154245734214783, -0.29834631085395813, 0.020634610205888748, -0.3419123888015747, -0.002283926820382476, 0.005329974461346865, 0.6252079606056213, -0.33473509550094604, 0.009059105068445206, 0.0041247038170695305, 0.06797301024198532, -0.04055768996477127, -0.9891539812088013, 0.07648332417011261, 0.18697787821292877, -0.15991750359535217, -0.03772634267807007, -0.09009740501642227, 0.023872576653957367, 0.18339459598064423, -0.13114337623119354, 0.030607711523771286, 1.2125519514083862, -0.11796072870492935, 0.07750198245048523, -0.03425091505050659]} +{"t": 8.0318, "q": [-0.34913915395736694, -0.02477720007300377, 0.015012315474450588, 0.6154501438140869, -0.29832562804222107, 0.020728882402181625, -0.34188681840896606, -0.0022924491204321384, 0.005289798602461815, 0.6251909136772156, -0.33465275168418884, 0.009000142104923725, 0.004097919911146164, 0.06803371012210846, -0.04057963564991951, -0.9977946281433105, 0.07534482330083847, 0.193161740899086, -0.16666461527347565, -0.04369448497891426, -0.08995359390974045, 0.023872576653957367, 0.18335863947868347, -0.13121528923511505, 0.030607711523771286, 1.2126957178115845, -0.11796072870492935, 0.07752595096826553, -0.03422694653272629]} +{"t": 8.0487, "q": [-0.34926697611808777, -0.024802764877676964, 0.015025706961750984, 0.6156120300292969, -0.29833394289016724, 0.02074331045150757, -0.34189534187316895, -0.0023009711876511574, 0.005236231256276369, 0.6252164840698242, -0.3346368074417114, 0.009087203070521355, 0.004111311864107847, 0.06807148456573486, -0.0405564084649086, -1.006507158279419, 0.07449394464492798, 0.19964520633220673, -0.1727645844221115, -0.04972255229949951, -0.08925850689411163, 0.02389654517173767, 0.18344253301620483, -0.13121528923511505, 0.030679617077112198, 1.2127317190170288, -0.1179487481713295, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.0654, "q": [-0.3493947982788086, -0.024794243276119232, 0.015079274773597717, 0.6156205534934998, -0.29815608263015747, 0.021069927141070366, -0.3419720530509949, -0.0022924491204321384, 0.005263015162199736, 0.6252079606056213, -0.33455851674079895, 0.009020998142659664, 0.003803298342972994, 0.0680563747882843, -0.040565699338912964, -1.0153754949569702, 0.07394266873598099, 0.20566128194332123, -0.17858892679214478, -0.054372429847717285, -0.08880311250686646, 0.023980434983968735, 0.1833226978778839, -0.1312272697687149, 0.03069160133600235, 1.2127556800842285, -0.11793676018714905, 0.07750198245048523, -0.03423893079161644]} +{"t": 8.0821, "q": [-0.34937775135040283, -0.0247857216745615, 0.015173017978668213, 0.6157057881355286, -0.2979121804237366, 0.021512223407626152, -0.3420061469078064, -0.002258360618725419, 0.00542371766641736, 0.6252250075340271, -0.334410697221756, 0.00899044331163168, 0.0035354604478925467, 0.06808658689260483, -0.040547117590904236, -1.024303674697876, 0.07301988452672958, 0.21201293170452118, -0.18462897837162018, -0.05951366201043129, -0.08883906155824661, 0.023968450725078583, 0.1832028478384018, -0.131203293800354, 0.03069160133600235, 1.2127556800842285, -0.11796072870492935, 0.07746603339910507, -0.03423893079161644]} +{"t": 8.0988, "q": [-0.3493522107601166, -0.0247857216745615, 0.015280152671039104, 0.6158251166343689, -0.29651060700416565, 0.02399943768978119, -0.34198057651519775, -0.0022242721170186996, 0.0055442447774112225, 0.6253358125686646, -0.3343239426612854, 0.008866029791533947, 0.0033747577108442783, 0.0681394636631012, -0.04051459953188896, -1.0320454835891724, 0.07160574942827225, 0.2177533656358719, -0.19112442433834076, -0.06325273960828781, -0.08916263282299042, 0.02400440350174904, 0.18323880434036255, -0.131203293800354, 0.03063168004155159, 1.2127436399459839, -0.11793676018714905, 0.07746603339910507, -0.034202978014945984]} +{"t": 8.1156, "q": [-0.34931811690330505, -0.024802764877676964, 0.015360504388809204, 0.615978479385376, -0.2958613336086273, 0.025094496086239815, -0.34194648265838623, -0.0022072279825806618, 0.005624596029520035, 0.6254976987838745, -0.33423247933387756, 0.008632571436464787, 0.003254230599850416, 0.06821500509977341, -0.04046814516186714, -1.0396195650100708, 0.06946057081222534, 0.22313429415225983, -0.1989501267671585, -0.06756706535816193, -0.08935438096523285, 0.02400440350174904, 0.1832507848739624, -0.13121528923511505, 0.03063168004155159, 1.2127196788787842, -0.1179487481713295, 0.07747801393270493, -0.03422694653272629]} +{"t": 8.1327, "q": [-0.349437415599823, -0.024862419813871384, 0.015333720482885838, 0.616421639919281, -0.2959192097187042, 0.024992970749735832, -0.3418782949447632, -0.0021901836153119802, 0.00546389352530241, 0.6259579062461853, -0.3338800072669983, 0.00789501704275608, 0.0035354604478925467, 0.06829800456762314, -0.040397342294454575, -1.0471097230911255, 0.06639260798692703, 0.22732876241207123, -0.2069675624370575, -0.0701436698436737, -0.09060074388980865, 0.02394448220729828, 0.18323880434036255, -0.13121528923511505, 0.030607711523771286, 1.2127436399459839, -0.1179247796535492, 0.07749000191688538, -0.03422694653272629]} +{"t": 8.1495, "q": [-0.3496760427951813, -0.02495616301894188, 0.0153738958761096, 0.617009699344635, -0.29589027166366577, 0.025043733417987823, -0.3418186604976654, -0.0021901836153119802, 0.0051424880512058735, 0.626511812210083, -0.3337465822696686, 0.007472168654203415, 0.0038970415480434895, 0.06837349385023117, -0.04034103453159332, -1.054935336112976, 0.06242582947015762, 0.23258984088897705, -0.21666280925273895, -0.07167764753103256, -0.09092431515455246, 0.023920513689517975, 0.18331070244312286, -0.13121528923511505, 0.03063168004155159, 1.2127436399459839, -0.1179487481713295, 0.07747801393270493, -0.03425091505050659]} +{"t": 8.1662, "q": [-0.34969308972358704, -0.0250839963555336, 0.015507815405726433, 0.6174868941307068, -0.29591095447540283, 0.025007469579577446, -0.3416822850704193, -0.002266882685944438, 0.004847866017371416, 0.6271424889564514, -0.3339216709136963, 0.00721953809261322, 0.003990784753113985, 0.06838855892419815, -0.040321893990039825, -1.0616105794906616, 0.05849500373005867, 0.23880966007709503, -0.22574685513973236, -0.07569236308336258, -0.09105614572763443, 0.023920513689517975, 0.18339459598064423, -0.13126322627067566, 0.030655648559331894, 1.2127796411514282, -0.11793676018714905, 0.07749000191688538, -0.034214962273836136]} +{"t": 8.1829, "q": [-0.3497186601161957, -0.025118084624409676, 0.01565512642264366, 0.6181175708770752, -0.29592758417129517, 0.025007402524352074, -0.3416311740875244, -0.0023094932548701763, 0.0045800283551216125, 0.627849817276001, -0.3343428671360016, 0.006969382055103779, 0.004084527958184481, 0.06844143569469452, -0.04028937593102455, -1.0679742097854614, 0.05530719831585884, 0.24462200701236725, -0.23421970009803772, -0.07878429442644119, -0.09098424017429352, 0.023932497948408127, 0.1833226978778839, -0.13137108087539673, 0.030643664300441742, 1.2127796411514282, -0.1179487481713295, 0.07750198245048523, -0.03423893079161644]} +{"t": 8.1997, "q": [-0.34982091188430786, -0.025126606225967407, 0.015695301815867424, 0.6188419461250305, -0.2959607243537903, 0.024963874369859695, -0.34162265062332153, -0.0023435817565768957, 0.0042854067869484425, 0.6286423802375793, -0.33462822437286377, 0.006623384077101946, 0.004111311864107847, 0.06853954493999481, -0.04020928218960762, -1.0734150409698486, 0.05362940952181816, 0.24931982159614563, -0.24197348952293396, -0.08059391379356384, -0.09076852351427078, 0.02389654517173767, 0.18338261544704437, -0.13139504194259644, 0.030655648559331894, 1.2127915620803833, -0.11796072870492935, 0.07750198245048523, -0.034202978014945984]} +{"t": 8.2164, "q": [-0.3499317169189453, -0.025118084624409676, 0.01580243743956089, 0.6195833683013916, -0.2959607243537903, 0.024963874369859695, -0.34162265062332153, -0.0023435817565768957, 0.0038568659219890833, 0.6294093728065491, -0.33483195304870605, 0.006363792810589075, 0.004097919911146164, 0.06869817525148392, -0.0401117242872715, -1.0786162614822388, 0.05235908180475235, 0.25416144728660583, -0.2484809309244156, -0.08263123035430908, -0.09068462997674942, 0.02389654517173767, 0.18335863947868347, -0.1315268725156784, 0.03063168004155159, 1.212815523147583, -0.11796072870492935, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.2331, "q": [-0.3502640724182129, -0.025101039558649063, 0.015668518841266632, 0.6204100251197815, -0.2960103154182434, 0.02487686648964882, -0.3418101370334625, -0.002326537622138858, 0.0034551091957837343, 0.6304234862327576, -0.3353028893470764, 0.0062158661894500256, 0.004151487722992897, 0.06878118216991425, -0.04004092141985893, -1.0844885110855103, 0.05056144669651985, 0.26126810908317566, -0.25448501110076904, -0.08466855436563492, -0.0902412161231041, 0.023860592395067215, 0.18335863947868347, -0.13158679008483887, 0.030643664300441742, 1.2128275632858276, -0.11793676018714905, 0.07750198245048523, -0.03423893079161644]} +{"t": 8.2498, "q": [-0.3508009612560272, -0.024981729686260223, 0.015400679782032967, 0.6215434670448303, -0.2960599958896637, 0.024804305285215378, -0.3420487344264984, -0.0023435817565768957, 0.002852473873645067, 0.6313949823379517, -0.3358655869960785, 0.006359559949487448, 0.0041916631162166595, 0.0689699724316597, -0.03991496190428734, -1.090276837348938, 0.048584047704935074, 0.26905784010887146, -0.2590869665145874, -0.08713730424642563, -0.09009740501642227, 0.02389654517173767, 0.18335863947868347, -0.1317545771598816, 0.030619695782661438, 1.2128515243530273, -0.11793676018714905, 0.07750198245048523, -0.034214962273836136]} +{"t": 8.2666, "q": [-0.35133785009384155, -0.02477720007300377, 0.015065882354974747, 0.6226769089698792, -0.2962380647659302, 0.024579308927059174, -0.34226179122924805, -0.002275404753163457, 0.002169487066566944, 0.6323153972625732, -0.3361048698425293, 0.005831414368003607, 0.00416487967595458, 0.06929467618465424, -0.03973569720983505, -1.0962090492248535, 0.04681038483977318, 0.2775786221027374, -0.2644558846950531, -0.08857540786266327, -0.08983375132083893, 0.023860592395067215, 0.18334665894508362, -0.1320302039384842, 0.030643664300441742, 1.212875485420227, -0.1179487481713295, 0.07751397043466568, -0.03425091505050659]} +{"t": 8.2833, "q": [-0.35167020559310913, -0.02466641180217266, 0.014811436645686626, 0.6233501434326172, -0.29659804701805115, 0.024020791053771973, -0.3426111936569214, -0.0022924491204321384, 0.001834689755924046, 0.6330653429031372, -0.3365430235862732, 0.005683178547769785, 0.004205055069178343, 0.06945335865020752, -0.03966802731156349, -1.1015900373458862, 0.044617269188165665, 0.28668662905693054, -0.2689020335674286, -0.0899895504117012, -0.08983375132083893, 0.02389654517173767, 0.18321482837200165, -0.13219799101352692, 0.030667632818222046, 1.212863564491272, -0.1179727166891098, 0.07749000191688538, -0.03423893079161644]} +{"t": 8.3001, "q": [-0.35179805755615234, -0.024640845134854317, 0.014690909534692764, 0.6236569285392761, -0.2971024811267853, 0.023136096075177193, -0.3428327739238739, -0.0022924491204321384, 0.0017275545978918672, 0.6337044835090637, -0.33662867546081543, 0.0055895475670695305, 0.004151487722992897, 0.06951414793729782, -0.03970969095826149, -1.106695294380188, 0.042448125779628754, 0.2944044768810272, -0.27315643429756165, -0.09160741418600082, -0.08989367634057999, 0.02388456091284752, 0.1832028478384018, -0.13230584561824799, 0.030715569853782654, 1.2128515243530273, -0.11793676018714905, 0.07750198245048523, -0.03423893079161644]} +{"t": 8.3168, "q": [-0.3520963191986084, -0.024513013660907745, 0.014650734141469002, 0.6242278814315796, -0.29759854078292847, 0.022236986085772514, -0.3432418406009674, -0.0022413162514567375, 0.0016472031129524112, 0.6343692541122437, -0.3368084132671356, 0.005445980001240969, 0.004178271628916264, 0.0695519894361496, -0.03970622643828392, -1.1124956607818604, 0.03996739163994789, 0.3028533458709717, -0.2766318619251251, -0.0932852104306221, -0.0899416133761406, 0.023860592395067215, 0.18321482837200165, -0.1323537826538086, 0.030667632818222046, 1.212875485420227, -0.1179487481713295, 0.07749000191688538, -0.03422694653272629]} +{"t": 8.3336, "q": [-0.352871835231781, -0.024325527250766754, 0.014516814611852169, 0.6248670816421509, -0.29870739579200745, 0.02033570595085621, -0.34400030970573425, -0.002156095113605261, 0.0014998923288658261, 0.634803831577301, -0.33740919828414917, 0.00580076826736331, 0.004178271628916264, 0.06976476311683655, -0.03985198587179184, -1.1187034845352173, 0.037522610276937485, 0.31284821033477783, -0.2797118127346039, -0.09593372046947479, -0.08988168835639954, 0.023872576653957367, 0.18314293026924133, -0.13246163725852966, 0.030679617077112198, 1.212863564491272, -0.1179727166891098, 0.07749000191688538, -0.03423893079161644]} +{"t": 8.3503, "q": [-0.3541927635669708, -0.02411247417330742, 0.014423071406781673, 0.6254550814628601, -0.2987488806247711, 0.020306497812271118, -0.3453553318977356, -0.0019430422689765692, 0.0014731085393577814, 0.6353748440742493, -0.3383448123931885, 0.004915409721434116, 0.004111311864107847, 0.07016017287969589, -0.040171846747398376, -1.1259299516677856, 0.035784896463155746, 0.32265129685401917, -0.28348684310913086, -0.09776730835437775, -0.08995359390974045, 0.023908529430627823, 0.18308301270008087, -0.13248561322689056, 0.03069160133600235, 1.2128275632858276, -0.11793676018714905, 0.07747801393270493, -0.034214962273836136]} +{"t": 8.367, "q": [-0.3561869263648987, -0.023890899494290352, 0.014409679919481277, 0.6262305974960327, -0.2987239956855774, 0.020321117714047432, -0.34725576639175415, -0.001695900922641158, 0.0014597165863960981, 0.6358265280723572, -0.3399580419063568, 0.003265875857323408, 0.003655987558886409, 0.07078380137681961, -0.04069703817367554, -1.1339234113693237, 0.03501790761947632, 0.33214280009269714, -0.28718996047973633, -0.09933724254369736, -0.09016931056976318, 0.023920513689517975, 0.1829991191625595, -0.13266538083553314, 0.030679617077112198, 1.2127676010131836, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 8.3837, "q": [-0.35831746459007263, -0.023618191480636597, 0.01444985531270504, 0.6269634962081909, -0.29870736598968506, 0.020292259752750397, -0.34909653663635254, -0.00138058268930763, 0.001566851744428277, 0.6361503601074219, -0.339658260345459, 0.0032267055939882994, 0.003468500915914774, 0.0714217945933342, -0.04107567295432091, -1.1414375305175781, 0.03495798632502556, 0.3396688997745514, -0.29107287526130676, -0.10095511376857758, -0.09020526707172394, 0.02388456091284752, 0.1829272210597992, -0.13313275575637817, 0.030643664300441742, 1.2127196788787842, -0.1179966852068901, 0.07745404541492462, -0.03425091505050659]} +{"t": 8.4005, "q": [-0.3605843484401703, -0.023430705070495605, 0.014516814611852169, 0.6275004148483276, -0.29866164922714233, 0.020227357745170593, -0.3512185513973236, -0.0012101404136046767, 0.0016338112764060497, 0.6363122463226318, -0.33918893337249756, 0.002931478200480342, 0.0033077981788665056, 0.07230889052152634, -0.041311997920274734, -1.1497305631637573, 0.0342988520860672, 0.3491843640804291, -0.29422470927238464, -0.10374743491411209, -0.09030113369226456, 0.023860592395067215, 0.18301109969615936, -0.13367204368114471, 0.030655648559331894, 1.2127317190170288, -0.1179247796535492, 0.07746603339910507, -0.03423893079161644]} +{"t": 8.4173, "q": [-0.3629534840583801, -0.02340513840317726, 0.014744477346539497, 0.6278071999549866, -0.29861176013946533, 0.020184192806482315, -0.3537836968898773, -0.0011163970921188593, 0.001941824913956225, 0.6365679502487183, -0.3386891782283783, 0.0031303020659834146, 0.003347973804920912, 0.0731290653347969, -0.04179676994681358, -1.1590063571929932, 0.03353186324238777, 0.35879573225975037, -0.2962620258331299, -0.10607238113880157, -0.09030113369226456, 0.02389654517173767, 0.18316689133644104, -0.1342233270406723, 0.030643664300441742, 1.2127436399459839, -0.11793676018714905, 0.07745404541492462, -0.03422694653272629]} +{"t": 8.4341, "q": [-0.3644448518753052, -0.023413660004734993, 0.01486500445753336, 0.628224790096283, -0.29849973320961, 0.02014865167438984, -0.3552494943141937, -0.001073786523193121, 0.0021025275345891714, 0.6368491649627686, -0.3368583619594574, 0.0055918400175869465, 0.003321190131828189, 0.07372672855854034, -0.041707322001457214, -1.1678627729415894, 0.03356781601905823, 0.3673284947872162, -0.2979757785797119, -0.10775016993284225, -0.09020526707172394, 0.023860592395067215, 0.18310697376728058, -0.13463078439235687, 0.030667632818222046, 1.2127436399459839, -0.11793676018714905, 0.07747801393270493, -0.03419099375605583]} +{"t": 8.4508, "q": [-0.36519479751586914, -0.023422183468937874, 0.015092666260898113, 0.6281395554542542, -0.29840436577796936, 0.01999720372259617, -0.3563999831676483, -0.001005609636195004, 0.002504284493625164, 0.636815071105957, -0.3352186381816864, 0.008170020766556263, 0.0031604873947799206, 0.07433052361011505, -0.04132780805230141, -1.1774141788482666, 0.033603768795728683, 0.3763046860694885, -0.3006722331047058, -0.10940399020910263, -0.09021724760532379, 0.02389654517173767, 0.18316689133644104, -0.1348944455385208, 0.030643664300441742, 1.2127676010131836, -0.1179727166891098, 0.07751397043466568, -0.034202978014945984]} +{"t": 8.468, "q": [-0.3652544617652893, -0.023439226672053337, 0.015347111970186234, 0.6280031800270081, -0.2984250783920288, 0.02000431716442108, -0.3565874695777893, -0.0009970874525606632, 0.0029730007518082857, 0.6367213129997253, -0.3352103531360626, 0.008155389688909054, 0.0030399602837860584, 0.07469277828931808, -0.04109616205096245, -1.1855394840240479, 0.03356781601905823, 0.38453784584999084, -0.30351248383522034, -0.11092598736286163, -0.09021724760532379, 0.02388456091284752, 0.18321482837200165, -0.13501428067684174, 0.030643664300441742, 1.2127796411514282, -0.1179727166891098, 0.07747801393270493, -0.034202978014945984]} +{"t": 8.4847, "q": [-0.36513516306877136, -0.023481838405132294, 0.015333720482885838, 0.6278753876686096, -0.29847484827041626, 0.020076410844922066, -0.35657042264938354, -0.001005609636195004, 0.0035086767747998238, 0.6366786956787109, -0.3352389633655548, 0.00813387893140316, 0.002731946762651205, 0.07486643642187119, -0.041009727865457535, -1.194803237915039, 0.033256225287914276, 0.39511990547180176, -0.3064725995063782, -0.11573166400194168, -0.09033709019422531, 0.023872576653957367, 0.18326276540756226, -0.1351461112499237, 0.030643664300441742, 1.2127676010131836, -0.11793676018714905, 0.07750198245048523, -0.03425091505050659]} +{"t": 8.5014, "q": [-0.3648880124092102, -0.0235244482755661, 0.015347111970186234, 0.6277560591697693, -0.2985329329967499, 0.020148470997810364, -0.3564426004886627, -0.0010396981379017234, 0.004151487722992897, 0.6367042660713196, -0.3352999985218048, 0.008040002547204494, 0.0026649872306734324, 0.07489681988954544, -0.04103061556816101, -1.203168272972107, 0.03314836695790291, 0.4045394957065582, -0.30902522802352905, -0.11983026564121246, -0.09027716517448425, 0.023920513689517975, 0.18323880434036255, -0.1351461112499237, 0.030667632818222046, 1.212803602218628, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 8.5182, "q": [-0.36490505933761597, -0.023618191480636597, 0.015320328995585442, 0.6277134418487549, -0.2985661029815674, 0.020220663398504257, -0.35642555356025696, -0.0010567422723397613, 0.004432717338204384, 0.6365679502487183, -0.3353573679924011, 0.00802602618932724, 0.002691771136596799, 0.07490447163581848, -0.0410456657409668, -1.2130433320999146, 0.03323225677013397, 0.414306640625, -0.3124527335166931, -0.1239408552646637, -0.09037303924560547, 0.023920513689517975, 0.1832507848739624, -0.1351461112499237, 0.03069160133600235, 1.212815523147583, -0.11796072870492935, 0.07750198245048523, -0.034202978014945984]} +{"t": 8.5349, "q": [-0.3649306297302246, -0.023797156289219856, 0.015333720482885838, 0.6276452541351318, -0.29856202006340027, 0.020300326868891716, -0.3564085066318512, -0.0011504855938255787, 0.004553244449198246, 0.6364912390708923, -0.33533644676208496, 0.007945897988975048, 0.002865865593776107, 0.07490447163581848, -0.0410456657409668, -1.223181962966919, 0.03341202065348625, 0.423714280128479, -0.3148016333580017, -0.12692493200302124, -0.09066066145896912, 0.02389654517173767, 0.183298721909523, -0.13513413071632385, 0.030679617077112198, 1.2128275632858276, -0.1179487481713295, 0.07751397043466568, -0.03419099375605583]} +{"t": 8.5517, "q": [-0.3649817705154419, -0.024052819237113, 0.015347111970186234, 0.6275259852409363, -0.2985787093639374, 0.020387127995491028, -0.35634031891822815, -0.0013464941876009107, 0.004553244449198246, 0.636371910572052, -0.33528652787208557, 0.007814587093889713, 0.0030533522367477417, 0.07490447163581848, -0.0410456657409668, -1.2347826957702637, 0.03351987898349762, 0.434176504611969, -0.31658726930618286, -0.1281353384256363, -0.09061272442340851, 0.02388456091284752, 0.18326276540756226, -0.13513413071632385, 0.030667632818222046, 1.212875485420227, -0.11796072870492935, 0.07751397043466568, -0.034214962273836136]} +{"t": 8.5684, "q": [-0.36500731110572815, -0.02435961551964283, 0.015333720482885838, 0.6273896098136902, -0.2984626889228821, 0.020749814808368683, -0.35628068447113037, -0.0016277240356430411, 0.0045264605432748795, 0.6363463401794434, -0.3352154791355133, 0.007559500634670258, 0.0030801359098404646, 0.07488933205604553, -0.04104505106806755, -1.246958613395691, 0.033543847501277924, 0.4452019929885864, -0.31831300258636475, -0.12977717816829681, -0.09062471240758896, 0.023908529430627823, 0.1832747608423233, -0.1351700723171234, 0.030679617077112198, 1.2129114866256714, -0.11793676018714905, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.5851, "q": [-0.36495620012283325, -0.024691978469491005, 0.015440856106579304, 0.627261757850647, -0.29842957854270935, 0.020923776552081108, -0.3562124967575073, -0.0018322548130527139, 0.0045264605432748795, 0.6362611651420593, -0.3351440727710724, 0.007231756113469601, 0.003173879347741604, 0.07488927990198135, -0.04103522002696991, -1.258439540863037, 0.033903371542692184, 0.45546048879623413, -0.32053008675575256, -0.1315508335828781, -0.09063669294118881, 0.02388456091284752, 0.183298721909523, -0.13518206775188446, 0.030715569853782654, 1.2129114866256714, -0.1179966852068901, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.6018, "q": [-0.3649306297302246, -0.024947641417384148, 0.015561383217573166, 0.6272277235984802, -0.29812419414520264, 0.02147522009909153, -0.3561272919178009, -0.0020879183430224657, 0.004606812261044979, 0.6362611651420593, -0.3351175785064697, 0.006868097465485334, 0.0032006630208343267, 0.07488927990198135, -0.04103522002696991, -1.2706754207611084, 0.034155040979385376, 0.4663781225681305, -0.3229628801345825, -0.13506221771240234, -0.09066066145896912, 0.023872576653957367, 0.1832747608423233, -0.13523000478744507, 0.030715569853782654, 1.2129473686218262, -0.11793676018714905, 0.07749000191688538, -0.03422694653272629]} +{"t": 8.6187, "q": [-0.3648880124092102, -0.025041384622454643, 0.015588166192173958, 0.6272447109222412, -0.29605698585510254, 0.02514435164630413, -0.3559994399547577, -0.0022072279825806618, 0.004660379607230425, 0.6362611651420593, -0.33526864647865295, 0.006731527391821146, 0.003321190131828189, 0.07488173246383667, -0.04103982821106911, -1.283174991607666, 0.034334804862737656, 0.47879377007484436, -0.3249882161617279, -0.13884922862052917, -0.09067264944314957, 0.02389654517173767, 0.18333467841148376, -0.13524198532104492, 0.030715569853782654, 1.2129473686218262, -0.1179487481713295, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.6354, "q": [-0.36481982469558716, -0.025160694494843483, 0.015681909397244453, 0.6272192001342773, -0.2961687743663788, 0.02499198168516159, -0.3557608425617218, -0.002258360618725419, 0.004700555466115475, 0.6362015008926392, -0.3353129029273987, 0.006564811337739229, 0.0033747577108442783, 0.07486660033464432, -0.04103921353816986, -1.2948355674743652, 0.03452655300498009, 0.48999902606010437, -0.3267139494419098, -0.142408549785614, -0.09070859849452972, 0.02395646646618843, 0.183298721909523, -0.13525396585464478, 0.030727554112672806, 1.2129833698272705, -0.11796072870492935, 0.07751397043466568, -0.03422694653272629]} +{"t": 8.6522, "q": [-0.3647601902484894, -0.025305571034550667, 0.015829220414161682, 0.6271680593490601, -0.29621508717536926, 0.02515820972621441, -0.35560742020606995, -0.0023009711876511574, 0.004713947419077158, 0.6361929774284363, -0.3354068398475647, 0.006485793739557266, 0.003321190131828189, 0.07488927990198135, -0.04103522002696991, -1.307167410850525, 0.03560513257980347, 0.5012282133102417, -0.32901492714881897, -0.14645922183990479, -0.09067264944314957, 0.023908529430627823, 0.18328674137592316, -0.13525396585464478, 0.030727554112672806, 1.2129952907562256, -0.11798469722270966, 0.07750198245048523, -0.03423893079161644]} +{"t": 8.6691, "q": [-0.36473461985588074, -0.025407835841178894, 0.016043491661548615, 0.6271254420280457, -0.2962154746055603, 0.025273969396948814, -0.3552239239215851, -0.002403236459940672, 0.004767514765262604, 0.6362270712852478, -0.3354681730270386, 0.006450079381465912, 0.0032944062259048223, 0.07486660033464432, -0.04103921353816986, -1.3209012746810913, 0.0364200621843338, 0.5139674544334412, -0.3314477205276489, -0.1490238457918167, -0.09079249203205109, 0.02394448220729828, 0.1831549108028412, -0.13525396585464478, 0.030727554112672806, 1.2129833698272705, -0.11798469722270966, 0.07751397043466568, -0.03422694653272629]} +{"t": 8.6858, "q": [-0.36467495560646057, -0.025544188916683197, 0.016230978071689606, 0.6269720196723938, -0.2962072193622589, 0.025288468226790428, -0.3549853265285492, -0.0024799355305731297, 0.004767514765262604, 0.6362441182136536, -0.3354969322681427, 0.006457631476223469, 0.0033077981788665056, 0.07486660033464432, -0.04103921353816986, -1.334311604499817, 0.03715109825134277, 0.5258558392524719, -0.33283787965774536, -0.1507256031036377, -0.09092431515455246, 0.023932497948408127, 0.18313094973564148, -0.13526594638824463, 0.030727554112672806, 1.2129833698272705, -0.11796072870492935, 0.07751397043466568, -0.03423893079161644]} +{"t": 8.7025, "q": [-0.3645641803741455, -0.025654977187514305, 0.016364896669983864, 0.6266737580299377, -0.2962072789669037, 0.025302933529019356, -0.354627400636673, -0.0025566346012055874, 0.004767514765262604, 0.6361929774284363, -0.3355008661746979, 0.006421325728297234, 0.0033747577108442783, 0.07487419247627258, -0.041044436395168304, -1.3483211994171143, 0.03892476484179497, 0.5374445915222168, -0.333497017621994, -0.15563912689685822, -0.09099622070789337, 0.023920513689517975, 0.18313094973564148, -0.13526594638824463, 0.030715569853782654, 1.21303129196167, -0.1179727166891098, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.7195, "q": [-0.3645727038383484, -0.025757241994142532, 0.016579166054725647, 0.6265970468521118, -0.29619893431663513, 0.025302983820438385, -0.35437172651290894, -0.002633333671838045, 0.004740730859339237, 0.6362015008926392, -0.33551716804504395, 0.006406958214938641, 0.0034551091957837343, 0.07487408816814423, -0.04102477803826332, -1.3627861738204956, 0.039511989802122116, 0.5503156185150146, -0.3334251046180725, -0.15967781841754913, -0.09094828367233276, 0.023920513689517975, 0.18310697376728058, -0.13530190289020538, 0.030727554112672806, 1.21303129196167, -0.1179966852068901, 0.07751397043466568, -0.034214962273836136]} +{"t": 8.7362, "q": [-0.3645130395889282, -0.025791330263018608, 0.01695414073765278, 0.6264351606369019, -0.2961822748184204, 0.02528858557343483, -0.3541671931743622, -0.002641855739057064, 0.004687163513153791, 0.6362526416778564, -0.335517019033432, 0.00637789536267519, 0.0034551091957837343, 0.07486654072999954, -0.04102938249707222, -1.3773709535598755, 0.04024302959442139, 0.5641454458236694, -0.3333532214164734, -0.16450746357440948, -0.09096027165651321, 0.02395646646618843, 0.18310697376728058, -0.13530190289020538, 0.030739538371562958, 1.213091254234314, -0.1179727166891098, 0.07750198245048523, -0.03425091505050659]} +{"t": 8.7529, "q": [-0.3644789457321167, -0.025816896930336952, 0.0169675312936306, 0.6263669729232788, -0.29616567492485046, 0.025303097441792488, -0.3539711833000183, -0.002633333671838045, 0.004687163513153791, 0.6362696886062622, -0.3354963958263397, 0.006355875171720982, 0.0035220684949308634, 0.07488162815570831, -0.041020169854164124, -1.3918359279632568, 0.041549310088157654, 0.5775677561759949, -0.33320939540863037, -0.16744358837604523, -0.09097225219011307, 0.023968450725078583, 0.18313094973564148, -0.13531388342380524, 0.03075152263045311, 1.213091254234314, -0.11796072870492935, 0.07751397043466568, -0.03422694653272629]} +{"t": 8.7698, "q": [-0.36446189880371094, -0.02579985372722149, 0.016940748319029808, 0.6263414025306702, -0.2961614429950714, 0.02528141625225544, -0.3538263142108917, -0.002641855739057064, 0.004606812261044979, 0.6363378167152405, -0.3354963958263397, 0.006355875171720982, 0.003655987558886409, 0.07487408816814423, -0.04102477803826332, -1.4054020643234253, 0.0421365350484848, 0.5927038192749023, -0.33299368619918823, -0.16984044015407562, -0.09102018922567368, 0.023908529430627823, 0.18311895430088043, -0.13528992235660553, 0.03075152263045311, 1.213163137435913, -0.11796072870492935, 0.07750198245048523, -0.034214962273836136]} +{"t": 8.7865, "q": [-0.36445337533950806, -0.025816896930336952, 0.016887180507183075, 0.6262902617454529, -0.2961489260196686, 0.025274232029914856, -0.35376664996147156, -0.002641855739057064, 0.0044996771030128, 0.6363292932510376, -0.335492342710495, 0.006363099906593561, 0.0038702578749507666, 0.07486654072999954, -0.04102938249707222, -1.4166792631149292, 0.0424121730029583, 0.6055629253387451, -0.3329337537288666, -0.17168600857257843, -0.09100820869207382, 0.02401638776063919, 0.1832028478384018, -0.13531388342380524, 0.030739538371562958, 1.2131750583648682, -0.11793676018714905, 0.07751397043466568, -0.03423893079161644]} +{"t": 8.8033, "q": [-0.36426588892936707, -0.02579985372722149, 0.01678004488348961, 0.62628173828125, -0.2961694598197937, 0.025194572284817696, -0.35368144512176514, -0.002641855739057064, 0.004419325385242701, 0.6363633871078491, -0.33550047874450684, 0.006348650436848402, 0.003990784753113985, 0.07485900074243546, -0.04103399068117142, -1.4272493124008179, 0.04231629893183708, 0.6180264949798584, -0.3329217731952667, -0.17540112137794495, -0.09098424017429352, 0.02407630905508995, 0.1832028478384018, -0.13540975749492645, 0.030715569853782654, 1.2132350206375122, -0.1179487481713295, 0.07751397043466568, -0.03423893079161644]} +{"t": 8.82, "q": [-0.36390796303749084, -0.025791330263018608, 0.016699694097042084, 0.626349925994873, -0.29615697264671326, 0.02518737129867077, -0.3537069857120514, -0.002650377806276083, 0.004312190227210522, 0.6364656686782837, -0.3355044424533844, 0.006326894275844097, 0.0041247038170695305, 0.07486654072999954, -0.04102938249707222, -1.437471866607666, 0.041848912835121155, 0.6313889026641846, -0.3329337537288666, -0.17839717864990234, -0.090864397585392, 0.02400440350174904, 0.1831549108028412, -0.1354457139968872, 0.030727554112672806, 1.2132470607757568, -0.11796072870492935, 0.07750198245048523, -0.03423893079161644]} +{"t": 8.8367, "q": [-0.36378014087677, -0.025782808661460876, 0.01648542284965515, 0.62628173828125, -0.2962065637111664, 0.025100361555814743, -0.3538433611392975, -0.002701510675251484, 0.004057744517922401, 0.6364315748214722, -0.33556610345840454, 0.006349305622279644, 0.004553244449198246, 0.0748666450381279, -0.0410490408539772, -1.4489167928695679, 0.04129764065146446, 0.6440082788467407, -0.33283787965774536, -0.1825796663761139, -0.0909123346209526, 0.02424408681690693, 0.18319086730480194, -0.13557754456996918, 0.030727554112672806, 1.2134147882461548, -0.1179247796535492, 0.07753793895244598, -0.034202978014945984]} +{"t": 8.8535, "q": [-0.3632262051105499, -0.02579985372722149, 0.01628454588353634, 0.6260090470314026, -0.29647135734558105, 0.024679681286215782, -0.3537581264972687, -0.002880475018173456, 0.0037497307639569044, 0.6364060044288635, -0.3356439173221588, 0.00632828613743186, 0.004780906718224287, 0.07478365302085876, -0.04109977185726166, -1.4621833562850952, 0.042460110038518906, 0.6569752097129822, -0.33283787965774536, -0.18543191254138947, -0.09094828367233276, 0.02419615164399147, 0.1832507848739624, -0.13563746213912964, 0.030727554112672806, 1.2135226726531982, -0.1179727166891098, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.8704, "q": [-0.3630131483078003, -0.02579985372722149, 0.01597653143107891, 0.6259749531745911, -0.2967730760574341, 0.024121375754475594, -0.3535706400871277, -0.0029912625905126333, 0.003468500915914774, 0.6363974809646606, -0.3359200060367584, 0.0065708705224096775, 0.00542371766641736, 0.07473174482584, -0.04131913557648659, -1.4763007164001465, 0.044137902557849884, 0.6711525917053223, -0.3325982093811035, -0.18726550042629242, -0.09098424017429352, 0.02419615164399147, 0.1832747608423233, -0.13570936024188995, 0.030739538371562958, 1.2136305570602417, -0.11796072870492935, 0.07751397043466568, -0.03423893079161644]} +{"t": 8.8871, "q": [-0.3630898594856262, -0.025774287059903145, 0.015695301815867424, 0.6259493827819824, -0.29738107323646545, 0.023113293573260307, -0.35349395871162415, -0.0031190942972898483, 0.0032274469267576933, 0.6362781524658203, -0.33606722950935364, 0.006485119462013245, 0.005785298999398947, 0.07477086037397385, -0.041571635752916336, -1.491065263748169, 0.0463310144841671, 0.6865043640136719, -0.3314477205276489, -0.18848788738250732, -0.09103217720985413, 0.024208135902881622, 0.18319086730480194, -0.13588912785053253, 0.03075152263045311, 1.213846206665039, -0.1179247796535492, 0.07752595096826553, -0.03422694653272629]} +{"t": 8.9039, "q": [-0.3631921112537384, -0.025774287059903145, 0.01565512642264366, 0.6257362961769104, -0.29887786507606506, 0.020602624863386154, -0.3537410795688629, -0.003144660498946905, 0.003254230599850416, 0.6362015008926392, -0.33615806698799133, 0.006602308247238398, 0.005504068918526173, 0.07478654384613037, -0.041680559515953064, -1.5046913623809814, 0.048536110669374466, 0.703677773475647, -0.3307046890258789, -0.1901896595954895, -0.09115201979875565, 0.0240643247961998, 0.18263959884643555, -0.13596104085445404, 0.030727554112672806, 1.2139899730682373, -0.11793676018714905, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.9206, "q": [-0.3634733557701111, -0.0257487203925848, 0.01578904502093792, 0.6255744099617004, -0.2989068031311035, 0.020450416952371597, -0.3543035387992859, -0.0031190942972898483, 0.003575636073946953, 0.6362015008926392, -0.33690744638442993, 0.0063554453663527966, 0.005115704145282507, 0.07479403913021088, -0.04166609048843384, -1.5164958238601685, 0.050393667072057724, 0.7200961709022522, -0.33002158999443054, -0.19301792979240417, -0.09136773645877838, 0.02412424609065056, 0.18169283866882324, -0.1360688954591751, 0.030799459666013718, 1.2139180898666382, -0.1179487481713295, 0.07747801393270493, -0.03423893079161644]} +{"t": 8.9373, "q": [-0.3638823926448822, -0.025646455585956573, 0.015869395807385445, 0.6252505779266357, -0.29889431595802307, 0.020399784669280052, -0.3551557660102844, -0.0030423952266573906, 0.004057744517922401, 0.6360310316085815, -0.3383340835571289, 0.005242456682026386, 0.005008568987250328, 0.0747939944267273, -0.041656244546175, -1.5271018743515015, 0.05279051139950752, 0.7373054623603821, -0.3291108012199402, -0.19548667967319489, -0.09137971699237823, 0.02412424609065056, 0.1808539479970932, -0.13603293895721436, 0.030775491148233414, 1.2138941287994385, -0.11793676018714905, 0.07747801393270493, -0.03423893079161644]} +{"t": 8.9541, "q": [-0.36390796303749084, -0.025603843852877617, 0.015829220414161682, 0.6246625185012817, -0.2989150583744049, 0.020363474264740944, -0.35591423511505127, -0.0030338731594383717, 0.004861257970333099, 0.6359884142875671, -0.33902642130851746, 0.0049800267443060875, 0.004138095770031214, 0.0747939944267273, -0.041656244546175, -1.536006212234497, 0.05454020947217941, 0.7564203143119812, -0.32822397351264954, -0.19646938145160675, -0.09134376794099808, 0.0240643247961998, 0.18031466007232666, -0.13603293895721436, 0.03076350688934326, 1.2138822078704834, -0.1179247796535492, 0.07745404541492462, -0.03423893079161644]} +{"t": 8.9708, "q": [-0.36386537551879883, -0.025535667315125465, 0.015842612832784653, 0.6242960691452026, -0.29891088604927063, 0.020356260240077972, -0.3563999831676483, -0.002974218223243952, 0.005879042204469442, 0.6359457969665527, -0.3389938175678253, 0.005023323930799961, 0.003240838646888733, 0.07480158656835556, -0.04166146740317345, -1.543064832687378, 0.05543902516365051, 0.7754272818565369, -0.3275168836116791, -0.19698470830917358, -0.09131979942321777, 0.024100277572870255, 0.18024274706840515, -0.1359969824552536, 0.030787475407123566, 1.213834285736084, -0.11796072870492935, 0.07749000191688538, -0.03423893079161644]} +{"t": 8.9875, "q": [-0.36381423473358154, -0.025518624112010002, 0.01615062542259693, 0.6241427063941956, -0.2989441454410553, 0.020399518311023712, -0.3568090498447418, -0.0029316076543182135, 0.00672273151576519, 0.6359202265739441, -0.3389734625816345, 0.005059487652033567, 0.002691771136596799, 0.07480908930301666, -0.04164700210094452, -1.550950527191162, 0.05559482052922249, 0.795656681060791, -0.32684576511383057, -0.19709256291389465, -0.09122392535209656, 0.024100277572870255, 0.1805063933134079, -0.13598500192165375, 0.030727554112672806, 1.213846206665039, -0.11791279166936874, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.0043, "q": [-0.3639250099658966, -0.025552712380886078, 0.016378289088606834, 0.6240574717521667, -0.2989732623100281, 0.020435543730854988, -0.3570135831832886, -0.0029401297215372324, 0.007070920895785093, 0.6358861923217773, -0.33900222182273865, 0.00506702670827508, 0.002316797850653529, 0.07481663674116135, -0.04164237901568413, -1.5583207607269287, 0.055642757564783096, 0.8143401145935059, -0.3263663947582245, -0.19711653888225555, -0.09115201979875565, 0.024172183126211166, 0.18093782663345337, -0.1359730213880539, 0.030727554112672806, 1.2138701677322388, -0.1179487481713295, 0.07746603339910507, -0.03417900949716568]} +{"t": 9.021, "q": [-0.36395910382270813, -0.025612367317080498, 0.016498815268278122, 0.623810350894928, -0.29900234937667847, 0.020457111299037933, -0.35715845227241516, -0.0029827402904629707, 0.007311975117772818, 0.6355963945388794, -0.33901870250701904, 0.005081736017018557, 0.0022498385515064, 0.07480908930301666, -0.04164700210094452, -1.5647562742233276, 0.05567871034145355, 0.8328796625137329, -0.3263064920902252, -0.19709256291389465, -0.09105614572763443, 0.02419615164399147, 0.18130934238433838, -0.13591310381889343, 0.030739538371562958, 1.2139301300048828, -0.11793676018714905, 0.07747801393270493, -0.034214962273836136]} +{"t": 9.0378, "q": [-0.364155113697052, -0.025637932121753693, 0.016512207686901093, 0.6237165927886963, -0.29902729392051697, 0.02050039917230606, -0.35724368691444397, -0.0029827402904629707, 0.007298583164811134, 0.6352555155754089, -0.33901065587997437, 0.005110729951411486, 0.0022632302716374397, 0.07480903714895248, -0.041637152433395386, -1.5702691078186035, 0.056709352880716324, 0.849453866481781, -0.3264143466949463, -0.1970326453447342, -0.09104415774345398, 0.02430400811135769, 0.18163292109966278, -0.13588912785053253, 0.030727554112672806, 1.213906168937683, -0.11791279166936874, 0.07749000191688538, -0.03423893079161644]} +{"t": 9.0545, "q": [-0.36430850625038147, -0.02562941052019596, 0.016378289088606834, 0.6236057877540588, -0.2990066111087799, 0.02060912735760212, -0.35729479789733887, -0.0029827402904629707, 0.0071914480067789555, 0.634718656539917, -0.33899855613708496, 0.005161506589502096, 0.002531068166717887, 0.07479384541511536, -0.0416266955435276, -1.5766446590423584, 0.05770404636859894, 0.8647217750549316, -0.3265701234340668, -0.19697272777557373, -0.0908883661031723, 0.02430400811135769, 0.1817767322063446, -0.13591310381889343, 0.030739538371562958, 1.213942050933838, -0.1179247796535492, 0.07747801393270493, -0.034214962273836136]} +{"t": 9.0712, "q": [-0.3643937408924103, -0.025672022253274918, 0.01631132885813713, 0.6231881976127625, -0.29899418354034424, 0.020674360916018486, -0.3572692573070526, -0.002965696156024933, 0.007164664100855589, 0.634130597114563, -0.3388277292251587, 0.005479755345731974, 0.0027855143416672945, 0.07480903714895248, -0.041637152433395386, -1.5851175785064697, 0.058638814836740494, 0.8816914558410645, -0.3266060948371887, -0.19691281020641327, -0.09078050404787064, 0.024351945146918297, 0.18189656734466553, -0.13593706488609314, 0.030739538371562958, 1.214002013206482, -0.11791279166936874, 0.07747801393270493, -0.034214962273836136]} +{"t": 9.0881, "q": [-0.3643766939640045, -0.025731675326824188, 0.01628454588353634, 0.6227876543998718, -0.2988987863063812, 0.02082696557044983, -0.3571925461292267, -0.0029912625905126333, 0.007124488707631826, 0.6335852146148682, -0.3385540843009949, 0.00576067715883255, 0.0029194331727921963, 0.07479384541511536, -0.0416266955435276, -1.5959392786026, 0.05946572497487068, 0.8999194502830505, -0.3272172808647156, -0.19688883423805237, -0.09073256701231003, 0.024387897923588753, 0.18211229145526886, -0.13593706488609314, 0.03075152263045311, 1.2140859365463257, -0.11796072870492935, 0.07750198245048523, -0.034202978014945984]} +{"t": 9.105, "q": [-0.36436817049980164, -0.02579985372722149, 0.016204193234443665, 0.6224893927574158, -0.29878678917884827, 0.02100861631333828, -0.3570476770401001, -0.003025350859388709, 0.00705752894282341, 0.6330312490463257, -0.3364429175853729, 0.009337774477899075, 0.0031203117687255144, 0.07478629797697067, -0.041631314903497696, -1.6080433130264282, 0.06077200546860695, 0.9170209169387817, -0.3288351595401764, -0.19692479074001312, -0.09087637811899185, 0.02455567754805088, 0.18217220902442932, -0.13593706488609314, 0.03075152263045311, 1.2144813537597656, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.1217, "q": [-0.36426588892936707, -0.025833941996097565, 0.016190802678465843, 0.6223444938659668, -0.29845160245895386, 0.02159680612385273, -0.35679200291633606, -0.00301682879216969, 0.00709770480170846, 0.6327926516532898, -0.3347053825855255, 0.008070412091910839, 0.003361365757882595, 0.0748014897108078, -0.04164177179336548, -1.6198956966400146, 0.06295313686132431, 0.9322169423103333, -0.33018937706947327, -0.19691281020641327, -0.09093630313873291, 0.024591630324721336, 0.18226808309555054, -0.1359730213880539, 0.03076350688934326, 1.2152124643325806, -0.11793676018714905, 0.07747801393270493, -0.034202978014945984]} +{"t": 9.1384, "q": [-0.3641210198402405, -0.025833941996097565, 0.016271153464913368, 0.622404158115387, -0.2961043417453766, 0.025614462792873383, -0.3564596474170685, -0.00301682879216969, 0.007111096754670143, 0.6327926516532898, -0.3347509205341339, 0.008150803856551647, 0.0035354604478925467, 0.07479384541511536, -0.0416266955435276, -1.6332341432571411, 0.06626078486442566, 0.9488510489463806, -0.33129191398620605, -0.19691281020641327, -0.09109209477901459, 0.024579646065831184, 0.18224410712718964, -0.13586516678333282, 0.030775491148233414, 1.216111183166504, -0.1179487481713295, 0.07749000191688538, -0.034214962273836136]} +{"t": 9.1555, "q": [-0.36408692598342896, -0.025910640135407448, 0.016257761046290398, 0.6224893927574158, -0.29624098539352417, 0.025433044880628586, -0.3561358153820038, -0.0030338731594383717, 0.006977177690714598, 0.63285231590271, -0.33465874195098877, 0.007771976757794619, 0.003669379511848092, 0.07480144500732422, -0.041631925851106644, -1.645997405052185, 0.07058708369731903, 0.9645383954048157, -0.3315316140651703, -0.19691281020641327, -0.09124789386987686, 0.024567661806941032, 0.18218418955802917, -0.1359730213880539, 0.03076350688934326, 1.2171059846878052, -0.1179727166891098, 0.07754991948604584, -0.03419099375605583]} +{"t": 9.1722, "q": [-0.3639846742153168, -0.02592768520116806, 0.01628454588353634, 0.6225234866142273, -0.29614153504371643, 0.025549201294779778, -0.35578638315200806, -0.0030423952266573906, 0.0068566505797207355, 0.6329545378684998, -0.33465784788131714, 0.007597527001053095, 0.003816690295934677, 0.07480903714895248, -0.041637152433395386, -1.6585209369659424, 0.07709451764822006, 0.9806451797485352, -0.33149564266204834, -0.19688883423805237, -0.09136773645877838, 0.024507740512490273, 0.18183664977550507, -0.13588912785053253, 0.030787475407123566, 1.217944860458374, -0.1179247796535492, 0.07751397043466568, -0.034214962273836136]} +{"t": 9.189, "q": [-0.36389943957328796, -0.025995861738920212, 0.01631132885813713, 0.6225320100784302, -0.29613322019577026, 0.025549234822392464, -0.35556483268737793, -0.0030423952266573906, 0.0067896912805736065, 0.6330738663673401, -0.3347472548484802, 0.00743854558095336, 0.003964001312851906, 0.07479384541511536, -0.0416266955435276, -1.6708526611328125, 0.08418918401002884, 0.9971114993095398, -0.3313758075237274, -0.19691281020641327, -0.09169130772352219, 0.024591630324721336, 0.18158498406410217, -0.13590110838413239, 0.03076350688934326, 1.2190234661102295, -0.11793676018714905, 0.07746603339910507, -0.03422694653272629]} +{"t": 9.2057, "q": [-0.363967627286911, -0.026004383340477943, 0.016391679644584656, 0.6225831508636475, -0.29610416293144226, 0.02555658295750618, -0.35463592410087585, -0.0029997846577316523, 0.006521853152662516, 0.6331250071525574, -0.3347756266593933, 0.007373422384262085, 0.003990784753113985, 0.07479384541511536, -0.0416266955435276, -1.683064579963684, 0.09096027165651321, 1.013458013534546, -0.3298298418521881, -0.19692479074001312, -0.09165535122156143, 0.0246755201369524, 0.18132132291793823, -0.13593706488609314, 0.030775491148233414, 1.2201498746871948, -0.1179247796535492, 0.07746603339910507, -0.034202978014945984]} +{"t": 9.2224, "q": [-0.3640698790550232, -0.026064038276672363, 0.016672909259796143, 0.6225149631500244, -0.29609164595603943, 0.025549380108714104, -0.35400527715682983, -0.0029912625905126333, 0.006414717994630337, 0.6331079602241516, -0.33476319909095764, 0.007351502310484648, 0.004004176706075668, 0.07479380071163177, -0.04161684960126877, -1.6937425136566162, 0.09825865924358368, 1.0291693210601807, -0.32824793457984924, -0.19687685370445251, -0.0914636105298996, 0.02461559884250164, 0.18086592853069305, -0.13593706488609314, 0.03082342818379402, 1.2215161323547363, -0.1179487481713295, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.2392, "q": [-0.3641124963760376, -0.026200393214821815, 0.017101449891924858, 0.6226342916488647, -0.29607489705085754, 0.02552051469683647, -0.35326385498046875, -0.0029997846577316523, 0.00642810994759202, 0.6334488391876221, -0.3346972167491913, 0.007278153672814369, 0.003977392800152302, 0.07478610426187515, -0.04159192368388176, -1.70467209815979, 0.10658770054578781, 1.045228123664856, -0.32737308740615845, -0.19688883423805237, -0.09166733920574188, 0.024639567360281944, 0.1799551248550415, -0.13598500192165375, 0.030799459666013718, 1.2229782342910767, -0.1179247796535492, 0.07747801393270493, -0.034214962273836136]} +{"t": 9.2559, "q": [-0.3639846742153168, -0.026200393214821815, 0.017838004976511, 0.6227961778640747, -0.2960292398929596, 0.025542395189404488, -0.3523690402507782, -0.0029827402904629707, 0.00638793408870697, 0.6338493824005127, -0.33455315232276917, 0.007182230241596699, 0.004044352564960718, 0.07482320815324783, -0.04144085943698883, -1.7159373760223389, 0.11393403261899948, 1.060843586921692, -0.3260188698768616, -0.1968528777360916, -0.09177519381046295, 0.024627583101391792, 0.1793559193611145, -0.1360209584236145, 0.030799459666013718, 1.223924994468689, -0.1179487481713295, 0.07747801393270493, -0.03423893079161644]} +{"t": 9.2726, "q": [-0.36404433846473694, -0.026302658021450043, 0.018387073650956154, 0.6227706074714661, -0.296037495136261, 0.025527896359562874, -0.3523178994655609, -0.0029912625905126333, 0.006254015490412712, 0.6339260935783386, -0.334524542093277, 0.0072037591598927975, 0.004044352564960718, 0.07479262351989746, -0.04138059914112091, -1.726723074913025, 0.12257465720176697, 1.0781728029251099, -0.32365795969963074, -0.1968528777360916, -0.09193099290132523, 0.024639567360281944, 0.17879265546798706, -0.13598500192165375, 0.030835412442684174, 1.2249196767807007, -0.11793676018714905, 0.07747801393270493, -0.03423893079161644]} +{"t": 9.2895, "q": [-0.363967627286911, -0.02633674629032612, 0.018427249044179916, 0.6227450370788574, -0.296037495136261, 0.025527896359562874, -0.35175544023513794, -0.003008306724950671, 0.006254015490412712, 0.6339260935783386, -0.3344917297363281, 0.007203449495136738, 0.004004176706075668, 0.07478507608175278, -0.041385218501091, -1.7368258237838745, 0.13011273741722107, 1.0951544046401978, -0.32109335064888, -0.19687685370445251, -0.09195496141910553, 0.02461559884250164, 0.17837320268154144, -0.13596104085445404, 0.030835412442684174, 1.225746512413025, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 9.3062, "q": [-0.363711953163147, -0.026387879624962807, 0.018427249044179916, 0.622685432434082, -0.29606664180755615, 0.025535032153129578, -0.3507157266139984, -0.0029997846577316523, 0.006254015490412712, 0.6338834762573242, -0.33449587225914, 0.0072107561863958836, 0.004097919911146164, 0.07467856258153915, -0.04128257930278778, -1.7477434873580933, 0.13775867223739624, 1.1126154661178589, -0.3186725378036499, -0.19686487317085266, -0.09197892993688583, 0.024711472913622856, 0.17766614258289337, -0.13596104085445404, 0.03082342818379402, 1.2268850803375244, -0.1179487481713295, 0.07749000191688538, -0.034214962273836136]} +{"t": 9.323, "q": [-0.3630898594856262, -0.026456056162714958, 0.018387073650956154, 0.6226683855056763, -0.2960874140262604, 0.025527698919177055, -0.3497016131877899, -0.003067961661145091, 0.0060933125205338, 0.6338408589363098, -0.3344959318637848, 0.007225287612527609, 0.0039506093598902225, 0.07464827597141266, -0.04128137603402138, -1.758613109588623, 0.14559635519981384, 1.1308075189590454, -0.31626370549201965, -0.1968289166688919, -0.0920388475060463, 0.024687504395842552, 0.17689915001392365, -0.13593706488609314, 0.030787475407123566, 1.227819800376892, -0.1179487481713295, 0.07747801393270493, -0.034262899309396744]} +{"t": 9.34, "q": [-0.3622802495956421, -0.026507189497351646, 0.01829332858324051, 0.6225575804710388, -0.29615795612335205, 0.025476789101958275, -0.34877270460128784, -0.003144660498946905, 0.006066528614610434, 0.6336107850074768, -0.33456602692604065, 0.007291375193744898, 0.003964001312851906, 0.07462563365697861, -0.041295237839221954, -1.7687277793884277, 0.15258315205574036, 1.148999571800232, -0.3133755028247833, -0.19686487317085266, -0.09215869009494781, 0.024711472913622856, 0.17627596855163574, -0.13593706488609314, 0.03082342818379402, 1.2286826372146606, -0.1179487481713295, 0.07747801393270493, -0.03423893079161644]} +{"t": 9.3568, "q": [-0.3618200421333313, -0.026566844433546066, 0.01829332858324051, 0.6224893927574158, -0.2962454557418823, 0.025527091696858406, -0.348431795835495, -0.003229881636798382, 0.006120096426457167, 0.6334744095802307, -0.334664911031723, 0.007379582617431879, 0.0037095551379024982, 0.07453500479459763, -0.041340846568346024, -1.7798731327056885, 0.160432830452919, 1.168054461479187, -0.3103075325489044, -0.19684089720249176, -0.09211075305938721, 0.02473544143140316, 0.17559286952018738, -0.1359730213880539, 0.03081144392490387, 1.229689359664917, -0.1179487481713295, 0.07747801393270493, -0.03425091505050659]} +{"t": 9.3735, "q": [-0.361538827419281, -0.02658388763666153, 0.018373681232333183, 0.622404158115387, -0.2962746024131775, 0.025534190237522125, -0.34831249713897705, -0.0032810145057737827, 0.006320974789559841, 0.6334488391876221, -0.334673136472702, 0.007379664573818445, 0.0036827712319791317, 0.07451996207237244, -0.041359931230545044, -1.7923487424850464, 0.16781510412693024, 1.1879363059997559, -0.3087615668773651, -0.1968289166688919, -0.09209877252578735, 0.024711472913622856, 0.17507754266262054, -0.1359250843524933, 0.03081144392490387, 1.2302765846252441, -0.1179487481713295, 0.07745404541492462, -0.03425091505050659]} +{"t": 9.3902, "q": [-0.36156439781188965, -0.026609454303979874, 0.018346896395087242, 0.6223615407943726, -0.2962746024131775, 0.025534190237522125, -0.34836363792419434, -0.0034088462125509977, 0.006374542135745287, 0.6334488391876221, -0.3346443772315979, 0.007372112013399601, 0.003696163184940815, 0.07448966801166534, -0.04135872796177864, -1.804165244102478, 0.1748138964176178, 1.2079139947891235, -0.3081144392490387, -0.1968289166688919, -0.09217067807912827, 0.024771394208073616, 0.1747659593820572, -0.1359730213880539, 0.03081144392490387, 1.2307919263839722, -0.1179966852068901, 0.07745404541492462, -0.03422694653272629]} +{"t": 9.4071, "q": [-0.3615473508834839, -0.026677630841732025, 0.018346896395087242, 0.6223700642585754, -0.2962787449359894, 0.02552694082260132, -0.34839773178100586, -0.003519633784890175, 0.00642810994759202, 0.6334658861160278, -0.3346405327320099, 0.007422949653118849, 0.003803298342972994, 0.07445938140153885, -0.04135752469301224, -1.8159816265106201, 0.1817527562379837, 1.2284190654754639, -0.30755117535591125, -0.19684089720249176, -0.09221861511468887, 0.02479536272585392, 0.17463412880897522, -0.13603293895721436, 0.030799459666013718, 1.231175422668457, -0.1179966852068901, 0.07747801393270493, -0.034214962273836136]} +{"t": 9.4238, "q": [-0.36147063970565796, -0.02670319750905037, 0.01830672100186348, 0.6224126815795898, -0.2962746024131775, 0.025534190237522125, -0.34840625524520874, -0.003596332622691989, 0.006548637058585882, 0.633525550365448, -0.33463233709335327, 0.007422867696732283, 0.0036024199798703194, 0.07442928105592728, -0.04139569401741028, -1.8264918327331543, 0.1885957568883896, 1.2460358142852783, -0.3070598244667053, -0.19684089720249176, -0.09227853268384933, 0.024747425690293312, 0.1744423806667328, -0.13596104085445404, 0.030799459666013718, 1.2314870357513428, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 9.4406, "q": [-0.36147063970565796, -0.026686152443289757, 0.018253153190016747, 0.6224212050437927, -0.2963119447231293, 0.025512345135211945, -0.34849146008491516, -0.0036048549227416515, 0.006709339562803507, 0.6335766911506653, -0.33466121554374695, 0.0074594831094145775, 0.003468500915914774, 0.0743689015507698, -0.041432663798332214, -1.8385958671569824, 0.19571438431739807, 1.2669602632522583, -0.3066163957118988, -0.19684089720249176, -0.09229052066802979, 0.024867268279194832, 0.17434650659561157, -0.1359969824552536, 0.030847394838929176, 1.2316547632217407, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.4575, "q": [-0.36141952872276306, -0.026635020971298218, 0.018038883805274963, 0.6223871111869812, -0.29631608724594116, 0.025505095720291138, -0.3485681712627411, -0.0036133769899606705, 0.0068566505797207355, 0.6334999799728394, -0.33466559648513794, 0.007510419934988022, 0.0034283252898603678, 0.07424058020114899, -0.04151121899485588, -1.8499209880828857, 0.20253340899944305, 1.2864946126937866, -0.3061490058898926, -0.19681693613529205, -0.09245830029249191, 0.024843299761414528, 0.17429856956005096, -0.13598500192165375, 0.030799459666013718, 1.2317147254943848, -0.1179247796535492, 0.07746603339910507, -0.03423893079161644]} +{"t": 9.4743, "q": [-0.36129167675971985, -0.026617975905537605, 0.017931748181581497, 0.6223956346511841, -0.29633262753486633, 0.025476079434156418, -0.3486193120479584, -0.0036218990571796894, 0.00705752894282341, 0.6335170269012451, -0.3347069025039673, 0.007568955421447754, 0.003361365757882595, 0.07418780028820038, -0.04155340790748596, -1.8608266115188599, 0.2093644142150879, 1.3049862384796143, -0.30538201332092285, -0.19681693613529205, -0.09253020584583282, 0.024867268279194832, 0.17429856956005096, -0.13600897789001465, 0.030835412442684174, 1.2317745685577393, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.491, "q": [-0.3612235188484192, -0.026575366035103798, 0.01778443716466427, 0.6223871111869812, -0.29635751247406006, 0.025447050109505653, -0.3486533761024475, -0.0036133769899606705, 0.007204839959740639, 0.6335340738296509, -0.3347150385379791, 0.007554505951702595, 0.003321190131828189, 0.07417270541191101, -0.041562650352716446, -1.8730264902114868, 0.2169983685016632, 1.3259825706481934, -0.30427947640419006, -0.19681693613529205, -0.09260211139917374, 0.02485528402030468, 0.17425063252449036, -0.13596104085445404, 0.03081144392490387, 1.2318345308303833, -0.11796072870492935, 0.07746603339910507, -0.03422694653272629]} +{"t": 9.5078, "q": [-0.3612149953842163, -0.026566844433546066, 0.017704086378216743, 0.6223019361495972, -0.29635336995124817, 0.025454318150877953, -0.34868746995925903, -0.0036218990571796894, 0.007311975117772818, 0.633457362651825, -0.3347439467906952, 0.007591139059513807, 0.003254230599850416, 0.07410477101802826, -0.041604235768318176, -1.8848190307617188, 0.2241889089345932, 1.3460681438446045, -0.3032728135585785, -0.19686487317085266, -0.0926380604505539, 0.024891234934329987, 0.17420269548892975, -0.1360449194908142, 0.03081144392490387, 1.2318824529647827, -0.1179727166891098, 0.07746603339910507, -0.03422694653272629]} +{"t": 9.5246, "q": [-0.3612149953842163, -0.026549799367785454, 0.01765051856637001, 0.6222848892211914, -0.29635751247406006, 0.025447050109505653, -0.3487386107444763, -0.0036133769899606705, 0.0074191102758049965, 0.6334658861160278, -0.33475223183631897, 0.007605752442032099, 0.0029060414526611567, 0.07405193150043488, -0.04163658246397972, -1.8967912197113037, 0.23278158903121948, 1.367615818977356, -0.3023020923137665, -0.19684089720249176, -0.09262607991695404, 0.024879250675439835, 0.1741188019514084, -0.135949045419693, 0.03082342818379402, 1.2319064140319824, -0.1179487481713295, 0.07744206488132477, -0.03422694653272629]} +{"t": 9.5413, "q": [-0.36124905943870544, -0.026507189497351646, 0.017529990524053574, 0.6222593188285828, -0.2965231239795685, 0.025229336693882942, -0.3489346206188202, -0.0036218990571796894, 0.007660164497792721, 0.633380651473999, -0.33484262228012085, 0.0076357158832252026, 0.0027051628567278385, 0.07402174174785614, -0.04165506735444069, -1.9097342491149902, 0.24115855991840363, 1.3892472982406616, -0.30188262462615967, -0.19681693613529205, -0.09267401695251465, 0.024879250675439835, 0.17410682141780853, -0.1359730213880539, 0.030847394838929176, 1.2319064140319824, -0.11793676018714905, 0.07745404541492462, -0.03422694653272629]} +{"t": 9.5582, "q": [-0.3612661063671112, -0.026507189497351646, 0.017556775361299515, 0.6221996545791626, -0.29652735590934753, 0.02525101788341999, -0.3490198254585266, -0.0036048549227416515, 0.007794083096086979, 0.6333380341529846, -0.3348468244075775, 0.007657572161406279, 0.002651595277711749, 0.07396890223026276, -0.041687414050102234, -1.9219461679458618, 0.24911609292030334, 1.4097882509231567, -0.3017028570175171, -0.19686487317085266, -0.09276989102363586, 0.02490321919322014, 0.17405888438224792, -0.1359969824552536, 0.03082342818379402, 1.2319064140319824, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.5749, "q": [-0.3613087236881256, -0.026507189497351646, 0.01765051856637001, 0.6222167015075684, -0.2964487671852112, 0.02537432499229908, -0.3491135835647583, -0.00358781055547297, 0.007928002625703812, 0.6333209872245789, -0.33483463525772095, 0.007679246831685305, 0.0024908925406634808, 0.0738934725522995, -0.04174346476793289, -1.9345535039901733, 0.2583199739456177, 1.4305570125579834, -0.301595002412796, -0.1968528777360916, -0.09291369467973709, 0.024951156228780746, 0.17410682141780853, -0.13605691492557526, 0.030799459666013718, 1.2319064140319824, -0.11791279166936874, 0.07746603339910507, -0.03425091505050659]} +{"t": 9.5917, "q": [-0.3613683879375458, -0.026515711098909378, 0.017717478796839714, 0.6222081780433655, -0.29648199677467346, 0.0253597442060709, -0.3491987884044647, -0.0036048549227416515, 0.00798156950622797, 0.633312463760376, -0.33483463525772095, 0.007679246831685305, 0.0023703654296696186, 0.07382549345493317, -0.041775207966566086, -1.9474844932556152, 0.26688870787620544, 1.4518049955368042, -0.30153509974479675, -0.19684089720249176, -0.09304552525281906, 0.024879250675439835, 0.1741188019514084, -0.1360209584236145, 0.030799459666013718, 1.2319424152374268, -0.11791279166936874, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.6084, "q": [-0.36147063970565796, -0.02652423270046711, 0.017771044746041298, 0.6221996545791626, -0.29649457335472107, 0.02539585903286934, -0.34928402304649353, -0.0036048549227416515, 0.008088705129921436, 0.6332102417945862, -0.3348182141780853, 0.007679082918912172, 0.0021025275345891714, 0.07374995946884155, -0.04181157425045967, -1.959888219833374, 0.275816947221756, 1.4717707633972168, -0.3013792932033539, -0.19686487317085266, -0.09312941133975983, 0.024951156228780746, 0.17405888438224792, -0.1360449194908142, 0.030799459666013718, 1.2320142984390259, -0.11796072870492935, 0.07747801393270493, -0.03423893079161644]} +{"t": 9.6251, "q": [-0.3614621162414551, -0.026541277766227722, 0.01781122200191021, 0.6222252249717712, -0.296440988779068, 0.02553354948759079, -0.34927549958229065, -0.003596332622691989, 0.008182448334991932, 0.6330994367599487, -0.3347693085670471, 0.007736735511571169, 0.002089135814458132, 0.07371976971626282, -0.04183005541563034, -1.9721720218658447, 0.2843736708164215, 1.4927071332931519, -0.30128341913223267, -0.19686487317085266, -0.09334512799978256, 0.024927187711000443, 0.17410682141780853, -0.13605691492557526, 0.030799459666013718, 1.2320023775100708, -0.11791279166936874, 0.07745404541492462, -0.03422694653272629]} +{"t": 9.6419, "q": [-0.36147916316986084, -0.026549799367785454, 0.017851397395133972, 0.6222252249717712, -0.2964494526386261, 0.025576913729310036, -0.34927549958229065, -0.0036133769899606705, 0.008195839822292328, 0.6331079602241516, -0.3347485363483429, 0.00768565246835351, 0.0021025275345891714, 0.07368957996368408, -0.04184854030609131, -1.9835331439971924, 0.2927626371383667, 1.5127447843551636, -0.3012474775314331, -0.19686487317085266, -0.09351290762424469, 0.02497512474656105, 0.17408286035060883, -0.1360449194908142, 0.030847394838929176, 1.2321580648422241, -0.11793676018714905, 0.07746603339910507, -0.03422694653272629]} +{"t": 9.6586, "q": [-0.36174336075782776, -0.026566844433546066, 0.017838004976511, 0.6222934126853943, -0.29644960165023804, 0.02562032826244831, -0.3493522107601166, -0.0036218990571796894, 0.008155664429068565, 0.6329886317253113, -0.33472007513046265, 0.007736244238913059, 0.002089135814458132, 0.07357601821422577, -0.04184895381331444, -1.9958049058914185, 0.30223017930984497, 1.5343043804168701, -0.30121150612831116, -0.19686487317085266, -0.09368068724870682, 0.02497512474656105, 0.1741188019514084, -0.1359969824552536, 0.03082342818379402, 1.2321821451187134, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.6753, "q": [-0.3618626594543457, -0.02658388763666153, 0.017851397395133972, 0.6222848892211914, -0.296420693397522, 0.025685574859380722, -0.3494033217430115, -0.0036304211243987083, 0.008128880523145199, 0.6328437924385071, -0.3346550464630127, 0.007851877249777317, 0.0022230546455830336, 0.07340192049741745, -0.0418568029999733, -2.007309675216675, 0.3122130334377289, 1.5556483268737793, -0.3011276423931122, -0.19686487317085266, -0.09383648633956909, 0.024999093264341354, 0.17410682141780853, -0.13598500192165375, 0.030835412442684174, 1.2322899103164673, -0.1179727166891098, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.6921, "q": [-0.36198198795318604, -0.026600932702422142, 0.017851397395133972, 0.6223104596138, -0.2964249849319458, 0.025721721351146698, -0.3494033217430115, -0.0036218990571796894, 0.008115489035844803, 0.6327159404754639, -0.33464691042900085, 0.007866326719522476, 0.002236446598544717, 0.07311372458934784, -0.04175679385662079, -2.019413948059082, 0.32292693853378296, 1.5769681930541992, -0.30100777745246887, -0.19681693613529205, -0.09405220299959183, 0.024987109005451202, 0.1741188019514084, -0.1359969824552536, 0.030799459666013718, 1.2322899103164673, -0.1179487481713295, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.7088, "q": [-0.3620842397212982, -0.026635020971298218, 0.017864787951111794, 0.6223785877227783, -0.2964418828487396, 0.025794001296162605, -0.34941184520721436, -0.00364746549166739, 0.008088705129921436, 0.6326733231544495, -0.33461833000183105, 0.00788783747702837, 0.002276622224599123, 0.07268109172582626, -0.04154793545603752, -2.029900074005127, 0.33313748240470886, 1.5971616506576538, -0.30103176832199097, -0.19684089720249176, -0.09457950294017792, 0.025011077523231506, 0.17405888438224792, -0.13598500192165375, 0.03081144392490387, 1.232373833656311, -0.1179487481713295, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.7256, "q": [-0.36221206188201904, -0.02664354257285595, 0.017878180369734764, 0.6224126815795898, -0.29646697640419006, 0.025837300345301628, -0.34942036867141724, -0.0036815537605434656, 0.008048529736697674, 0.6325284242630005, -0.3345940113067627, 0.007945735938847065, 0.0024373249616473913, 0.07215767353773117, -0.04135531187057495, -2.0410335063934326, 0.3433121144771576, 1.6176667213439941, -0.3010197579860687, -0.19684089720249176, -0.09531054645776749, 0.025011077523231506, 0.17405888438224792, -0.1359730213880539, 0.03081144392490387, 1.232373833656311, -0.11796072870492935, 0.07745404541492462, -0.03422694653272629]} +{"t": 9.7423, "q": [-0.3621779680252075, -0.026677630841732025, 0.017891572788357735, 0.6225405335426331, -0.29646727442741394, 0.02592412941157818, -0.34931811690330505, -0.0036645096261054277, 0.00806192122399807, 0.6325539946556091, -0.33451226353645325, 0.008003078401088715, 0.0026783791836351156, 0.07164189219474792, -0.041177742183208466, -2.04984188079834, 0.35231226682662964, 1.63630211353302, -0.30103176832199097, -0.1968528777360916, -0.09614943712949753, 0.025011077523231506, 0.17405888438224792, -0.13596104085445404, 0.03085937909781933, 1.2325056791305542, -0.1179966852068901, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.759, "q": [-0.36230581998825073, -0.02670319750905037, 0.017878180369734764, 0.6227279901504517, -0.296492338180542, 0.025952979922294617, -0.3493436872959137, -0.003715642262250185, 0.00798156950622797, 0.6325454711914062, -0.3345123529434204, 0.00801760982722044, 0.0028122980147600174, 0.07105067372322083, -0.04105628281831741, -2.058542251586914, 0.36167192459106445, 1.6561239957809448, -0.30116358399391174, -0.19684089720249176, -0.09696436673402786, 0.024987109005451202, 0.17405888438224792, -0.13591310381889343, 0.030835412442684174, 1.2324936389923096, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.7758, "q": [-0.36233991384506226, -0.026720240712165833, 0.017918355762958527, 0.6228558421134949, -0.29649659991264343, 0.025989126414060593, -0.3492414057254791, -0.0037326866295188665, 0.007968178018927574, 0.6325539946556091, -0.3345124125480652, 0.008032141253352165, 0.0027855143416672945, 0.07026152312755585, -0.040740951895713806, -2.067650318145752, 0.37125930190086365, 1.6763653755187988, -0.3015231192111969, -0.19684089720249176, -0.09798302501440048, 0.025011077523231506, 0.173939049243927, -0.1359969824552536, 0.030847394838929176, 1.2324696779251099, -0.1179247796535492, 0.07747801393270493, -0.03423893079161644]} +{"t": 9.7926, "q": [-0.3623313903808594, -0.026754330843687057, 0.017931748181581497, 0.6229410767555237, -0.29649242758750916, 0.025981910526752472, -0.3492158353328705, -0.0037326866295188665, 0.007941394113004208, 0.6325880885124207, -0.334389865398407, 0.00813267007470131, 0.0027721223887056112, 0.06962409615516663, -0.04049069434404373, -2.0757997035980225, 0.37969622015953064, 1.694809079170227, -0.30171486735343933, -0.19687685370445251, -0.09886986017227173, 0.025070998817682266, 0.17383117973804474, -0.135949045419693, 0.030847394838929176, 1.2324696779251099, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.8093, "q": [-0.36228877305984497, -0.02677137404680252, 0.018012098968029022, 0.6230007410049438, -0.2964841425418854, 0.025996409356594086, -0.3491221070289612, -0.0037582528311759233, 0.008021745830774307, 0.6326477527618408, -0.3343490958213806, 0.008175873197615147, 0.002718554809689522, 0.06897889077663422, -0.04020582512021065, -2.0826425552368164, 0.3888401687145233, 1.714810848236084, -0.3014751672744751, -0.19687685370445251, -0.09955295920372009, 0.025106951594352722, 0.17380721867084503, -0.13593706488609314, 0.030847394838929176, 1.2324696779251099, -0.11796072870492935, 0.07746603339910507, -0.03425091505050659]} +{"t": 9.8262, "q": [-0.36226320266723633, -0.02677137404680252, 0.018012098968029022, 0.6232649087905884, -0.29649659991264343, 0.025989126414060593, -0.34900277853012085, -0.003783819265663624, 0.00798156950622797, 0.6326818466186523, -0.3342920243740082, 0.008247975260019302, 0.0028122980147600174, 0.06865216791629791, -0.0399918295443058, -2.0890541076660156, 0.3979361951351166, 1.7333024740219116, -0.3014512062072754, -0.19687685370445251, -0.10021208971738815, 0.025082983076572418, 0.17381919920444489, -0.13588912785053253, 0.030847394838929176, 1.2324457168579102, -0.11796072870492935, 0.07745404541492462, -0.03423893079161644]} +{"t": 9.8429, "q": [-0.3622802495956421, -0.026805462315678596, 0.018012098968029022, 0.6235120296478271, -0.2964800298213959, 0.026003658771514893, -0.3489346206188202, -0.0037923413328826427, 0.007954785600304604, 0.632775604724884, -0.33421871066093445, 0.008348994888365269, 0.0027989062946289778, 0.06825689971446991, -0.03970165178179741, -2.094590902328491, 0.4067685604095459, 1.7506077289581299, -0.3014751672744751, -0.1968528777360916, -0.1011228933930397, 0.025118935853242874, 0.17375928163528442, -0.13581722974777222, 0.030895331874489784, 1.2324696779251099, -0.1179247796535492, 0.07745404541492462, -0.03422694653272629]} +{"t": 9.8596, "q": [-0.36229729652404785, -0.026779895648360252, 0.0179987084120512, 0.6239125728607178, -0.2964841425418854, 0.025996409356594086, -0.3488749563694, -0.003783819265663624, 0.007887826301157475, 0.6329289674758911, -0.33417391777038574, 0.008413953706622124, 0.002839081920683384, 0.06773224472999573, -0.039294060319662094, -2.1009786128997803, 0.41616421937942505, 1.7686798572540283, -0.3014751672744751, -0.1968528777360916, -0.10274076461791992, 0.025106951594352722, 0.1736873835325241, -0.13566142320632935, 0.030919300392270088, 1.2324217557907104, -0.11793676018714905, 0.07746603339910507, -0.034214962273836136]} +{"t": 9.8766, "q": [-0.3623654842376709, -0.026779895648360252, 0.01795853115618229, 0.6241427063941956, -0.296475887298584, 0.026010924950242043, -0.3488749563694, -0.003775297198444605, 0.007847650907933712, 0.6330994367599487, -0.3341290056705475, 0.008449850603938103, 0.0027855143416672945, 0.06719231605529785, -0.03885631635785103, -2.107450008392334, 0.4253201484680176, 1.7858293056488037, -0.3014751672744751, -0.19687685370445251, -0.10538927465677261, 0.025178857147693634, 0.173567533493042, -0.1354217380285263, 0.030907316133379936, 1.2324098348617554, -0.11796072870492935, 0.07749000191688538, -0.03422694653272629]} +{"t": 9.8935, "q": [-0.362356960773468, -0.026754330843687057, 0.01797192357480526, 0.6242023706436157, -0.2964675724506378, 0.02601095847785473, -0.3488749563694, -0.003775297198444605, 0.007887826301157475, 0.6330994367599487, -0.3340516984462738, 0.008572625927627087, 0.002731946762651205, 0.06675919145345688, -0.03857991099357605, -2.112447500228882, 0.43448808789253235, 1.8022836446762085, -0.3014512062072754, -0.19687685370445251, -0.10843326896429062, 0.025238778442144394, 0.17354357242584229, -0.1351461112499237, 0.03093128465116024, 1.2324098348617554, -0.11796072870492935, 0.07745404541492462, -0.03423893079161644]} +{"t": 9.9102, "q": [-0.36229729652404785, -0.026728764176368713, 0.01795853115618229, 0.6243216395378113, -0.29646748304367065, 0.02598200924694538, -0.34872156381607056, -0.003775297198444605, 0.007847650907933712, 0.6330568194389343, -0.3339907228946686, 0.008681033737957478, 0.002986392704769969, 0.06644003093242645, -0.038371581584215164, -2.117037296295166, 0.44262537360191345, 1.8177553415298462, -0.30169087648391724, -0.19687685370445251, -0.11112972348928452, 0.025226794183254242, 0.1736634075641632, -0.13497832417488098, 0.03093128465116024, 1.2324817180633545, -0.11796072870492935, 0.07745404541492462, -0.03422694653272629]} +{"t": 9.9269, "q": [-0.3623313903808594, -0.026737285777926445, 0.01795853115618229, 0.6244409680366516, -0.2964758276939392, 0.025996441021561623, -0.3487471342086792, -0.003783819265663624, 0.007834259420633316, 0.633082389831543, -0.33395805954933167, 0.008709769695997238, 0.00287925754673779, 0.0663108229637146, -0.038283269852399826, -2.12081241607666, 0.4517933130264282, 1.8328673839569092, -0.3019545376300812, -0.19687685370445251, -0.11291536688804626, 0.025226794183254242, 0.1736634075641632, -0.13494238257408142, 0.030955253168940544, 1.2324936389923096, -0.11798469722270966, 0.07743007689714432, -0.03422694653272629]} +{"t": 9.9438, "q": [-0.36230581998825073, -0.026720240712165833, 0.017931748181581497, 0.6244580149650574, -0.29647988080978394, 0.02596026100218296, -0.34872156381607056, -0.0037923413328826427, 0.007887826301157475, 0.6330312490463257, -0.33393773436546326, 0.008745893836021423, 0.0030399602837860584, 0.0663108229637146, -0.038283269852399826, -2.1248390674591064, 0.46025416254997253, 1.8479316234588623, -0.30208635330200195, -0.19687685370445251, -0.11412577331066132, 0.025226794183254242, 0.1736873835325241, -0.13491840660572052, 0.030907316133379936, 1.232529640197754, -0.1179727166891098, 0.07745404541492462, -0.03422694653272629]} +{"t": 9.9605, "q": [-0.36234843730926514, -0.026737285777926445, 0.017851397395133972, 0.6244409680366516, -0.2965337634086609, 0.02590939961373806, -0.3487556576728821, -0.003826429834589362, 0.007941394113004208, 0.633005678653717, -0.33396685123443604, 0.008826120756566525, 0.002865865593776107, 0.06632598489522934, -0.0382838137447834, -2.1292014122009277, 0.46884685754776, 1.8619650602340698, -0.30211034417152405, -0.19691281020641327, -0.11518038809299469, 0.025262746959924698, 0.17369936406612396, -0.13491840660572052, 0.030919300392270088, 1.2325655221939087, -0.11793676018714905, 0.07746603339910507, -0.03422694653272629]} +{"t": 9.9772, "q": [-0.36226320266723633, -0.0267117191106081, 0.017851397395133972, 0.624415397644043, -0.2965254485607147, 0.025909433141350746, -0.3487556576728821, -0.003834951901808381, 0.007968178018927574, 0.6329715847969055, -0.3339627981185913, 0.008833363652229309, 0.0027989062946289778, 0.06636393815279007, -0.03829994425177574, -2.1337194442749023, 0.47745153307914734, 1.875447392463684, -0.30211034417152405, -0.19691281020641327, -0.11631888896226883, 0.02527473121881485, 0.17371134459972382, -0.13495436310768127, 0.030883347615599632, 1.2324817180633545, -0.11793676018714905, 0.07744206488132477, -0.03422694653272629]} +{"t": 9.994, "q": [-0.3622802495956421, -0.026677630841732025, 0.017851397395133972, 0.6243813037872314, -0.29654204845428467, 0.025894902646541595, -0.3487897515296936, -0.003826429834589362, 0.00799496192485094, 0.6329630613327026, -0.33397093415260315, 0.008818896487355232, 0.0029328251257538795, 0.06636393815279007, -0.03829994425177574, -2.13916015625, 0.48453420400619507, 1.8885821104049683, -0.3022181987762451, -0.19687685370445251, -0.11742144078016281, 0.025358621031045914, 0.17374730110168457, -0.13491840660572052, 0.030919300392270088, 1.232541561126709, -0.1179727166891098, 0.07746603339910507, -0.03422694653272629]} +{"t": 10.0107, "q": [-0.3623313903808594, -0.026660587638616562, 0.01778443716466427, 0.6242875456809998, -0.29654204845428467, 0.025894902646541595, -0.3488408625125885, -0.003826429834589362, 0.007968178018927574, 0.632937490940094, -0.33397093415260315, 0.008818896487355232, 0.002839081920683384, 0.06637135148048401, -0.03826575353741646, -2.1451284885406494, 0.4928153157234192, 1.9011296033859253, -0.3023260533809662, -0.1968528777360916, -0.11855994164943695, 0.025358621031045914, 0.17373532056808472, -0.13495436310768127, 0.030919300392270088, 1.232529640197754, -0.11796072870492935, 0.07744206488132477, -0.03423893079161644]} +{"t": 10.0276, "q": [-0.3624251186847687, -0.02664354257285595, 0.017704086378216743, 0.6242278814315796, -0.29654204845428467, 0.025894902646541595, -0.34895166754722595, -0.003817907767370343, 0.007954785600304604, 0.6328693628311157, -0.33397093415260315, 0.008818896487355232, 0.002946217078715563, 0.06637904793024063, -0.03829064220190048, -2.1497302055358887, 0.49988600611686707, 1.9111003875732422, -0.3023020923137665, -0.19691281020641327, -0.11989019066095352, 0.02540655806660652, 0.17375928163528442, -0.13495436310768127, 0.030919300392270088, 1.232541561126709, -0.11796072870492935, 0.07744206488132477, -0.03423893079161644]} +{"t": 10.0443, "q": [-0.362356960773468, -0.02664354257285595, 0.017596950754523277, 0.6241341829299927, -0.29654204845428467, 0.025894902646541595, -0.34890905022621155, -0.0038008634001016617, 0.007887826301157475, 0.6327670812606812, -0.33399146795272827, 0.008826385252177715, 0.00321405497379601, 0.06642455607652664, -0.03830211982131004, -2.15374493598938, 0.5071364641189575, 1.9218263626098633, -0.3021462857723236, -0.1968528777360916, -0.12112456560134888, 0.02539457380771637, 0.17392705380916595, -0.1350502371788025, 0.030895331874489784, 1.2325655221939087, -0.1179247796535492, 0.07745404541492462, -0.03423893079161644]} +{"t": 10.061, "q": [-0.362356960773468, -0.02664354257285595, 0.017543382942676544, 0.6240659952163696, -0.29654207825660706, 0.025909367948770523, -0.3489346206188202, -0.003826429834589362, 0.007807475049048662, 0.6327926516532898, -0.3340282738208771, 0.008804937824606895, 0.0032810145057737827, 0.06646993011236191, -0.0382840558886528, -2.1581432819366455, 0.5155373811721802, 1.931593418121338, -0.3023260533809662, -0.19687685370445251, -0.12319783866405487, 0.025418542325496674, 0.17387911677360535, -0.13511015474796295, 0.030895331874489784, 1.2326973676681519, -0.11796072870492935, 0.07745404541492462, -0.03423893079161644]} +{"t": 10.0779, "q": [-0.3623143434524536, -0.026609454303979874, 0.01746303215622902, 0.6239040493965149, -0.29651305079460144, 0.025931181386113167, -0.3489346206188202, -0.0038093857001513243, 0.0077672996558249, 0.6327329874038696, -0.3340240716934204, 0.008783100172877312, 0.0034551091957837343, 0.06652290374040604, -0.03827119246125221, -2.1618824005126953, 0.5231474041938782, 1.940162181854248, -0.30278146266937256, -0.1968528777360916, -0.12675714492797852, 0.02539457380771637, 0.1739150732755661, -0.13521800935268402, 0.030919300392270088, 1.2327094078063965, -0.1179247796535492, 0.07745404541492462, -0.03422694653272629]} +{"t": 10.0946, "q": [-0.36239102482795715, -0.02659240923821926, 0.017409464344382286, 0.6238273978233337, -0.29650890827178955, 0.025938430801033974, -0.3489687144756317, -0.0038008634001016617, 0.0076869479380548, 0.6326818466186523, -0.33404454588890076, 0.008776038885116577, 0.0035220684949308634, 0.0665755644440651, -0.03819938376545906, -2.165956974029541, 0.530421793460846, 1.9466816186904907, -0.30321288108825684, -0.19687685370445251, -0.13001686334609985, 0.02540655806660652, 0.1738671362400055, -0.13515809178352356, 0.03093128465116024, 1.2327333688735962, -0.11793676018714905, 0.07747801393270493, -0.03419099375605583]} +{"t": 10.1113, "q": [-0.3624165952205658, -0.026558320969343185, 0.01731572113931179, 0.6236739754676819, -0.2965047359466553, 0.025931213051080704, -0.34904539585113525, -0.003783819265663624, 0.0076467725448310375, 0.6325710415840149, -0.33403220772743225, 0.008768650703132153, 0.0034283252898603678, 0.0667719766497612, -0.03809848800301552, -2.169732093811035, 0.5376722812652588, 1.9519426822662354, -0.30348852276802063, -0.19687685370445251, -0.1327732354402542, 0.025430526584386826, 0.17387911677360535, -0.13524198532104492, 0.030883347615599632, 1.2327094078063965, -0.11796072870492935, 0.07745404541492462, -0.034202978014945984]} +{"t": 10.1281, "q": [-0.36233991384506226, -0.026549799367785454, 0.017396071925759315, 0.6234268546104431, -0.2965047359466553, 0.025931213051080704, -0.3490368723869324, -0.003775297198444605, 0.007700339891016483, 0.6324688196182251, -0.3340443968772888, 0.008746976032853127, 0.0035220684949308634, 0.06704395264387131, -0.03796105459332466, -2.1728718280792236, 0.543940007686615, 1.9570119380950928, -0.30358439683914185, -0.1968528777360916, -0.1339237242937088, 0.02540655806660652, 0.1739150732755661, -0.13526594638824463, 0.030907316133379936, 1.2327094078063965, -0.1179247796535492, 0.07744206488132477, -0.03419099375605583]} +{"t": 10.1448, "q": [-0.3623739778995514, -0.026575366035103798, 0.017396071925759315, 0.6232819557189941, -0.29649651050567627, 0.025960195809602737, -0.3490368723869324, -0.0037923413328826427, 0.007660164497792721, 0.6324432492256165, -0.3340812623500824, 0.008740060962736607, 0.0036024199798703194, 0.06742148101329803, -0.037729207426309586, -2.1775097846984863, 0.5508189797401428, 1.962572693824768, -0.30353644490242004, -0.1968528777360916, -0.1345468908548355, 0.025418542325496674, 0.1739150732755661, -0.13536182045936584, 0.030895331874489784, 1.2327452898025513, -0.1179487481713295, 0.07744206488132477, -0.03422694653272629]} +{"t": 10.1615, "q": [-0.3623654842376709, -0.026609454303979874, 0.017436247318983078, 0.6230518817901611, -0.29647988080978394, 0.02596026100218296, -0.3490709662437439, -0.0037923413328826427, 0.007660164497792721, 0.6323665380477905, -0.33406877517700195, 0.008703608997166157, 0.0036827712319791317, 0.0677461102604866, -0.03751998767256737, -2.1829147338867188, 0.5574941635131836, 1.9672465324401855, -0.30360835790634155, -0.19687685370445251, -0.1348225325345993, 0.02540655806660652, 0.17387911677360535, -0.135349839925766, 0.030883347615599632, 1.2327333688735962, -0.1179247796535492, 0.07741809636354446, -0.03419099375605583]} +{"t": 10.1782, "q": [-0.3623739778995514, -0.02664354257285595, 0.01746303215622902, 0.6228217482566833, -0.29645904898643494, 0.02595309354364872, -0.3490794897079468, -0.003783819265663624, 0.007619988638907671, 0.6322301626205444, -0.3340562880039215, 0.00866713933646679, 0.003803298342972994, 0.06781405955553055, -0.037478256970644, -2.187840223312378, 0.5629469752311707, 1.970781922340393, -0.30462703108787537, -0.19687685370445251, -0.13518206775188446, 0.025418542325496674, 0.17401094734668732, -0.1354217380285263, 0.030895331874489784, 1.2327933311462402, -0.11793676018714905, 0.07745404541492462, -0.03419099375605583]} +{"t": 10.195, "q": [-0.3622717261314392, -0.026635020971298218, 0.017516599968075752, 0.6226342916488647, -0.29645073413848877, 0.025953125208616257, -0.34895166754722595, -0.0037497307639569044, 0.007526245433837175, 0.6320682764053345, -0.33406034111976624, 0.008659915067255497, 0.003964001312851906, 0.06780656427145004, -0.03749272599816322, -2.1914353370666504, 0.5685915946960449, 1.9732027053833008, -0.30490267276763916, -0.1968528777360916, -0.13521800935268402, 0.025418542325496674, 0.1742626130580902, -0.1353738009929657, 0.030907316133379936, 1.2328652143478394, -0.11796072870492935, 0.07745404541492462, -0.03419099375605583]} +{"t": 10.2117, "q": [-0.3621864914894104, -0.026635020971298218, 0.017529990524053574, 0.6226257681846619, -0.29645904898643494, 0.02595309354364872, -0.34880679845809937, -0.0037497307639569044, 0.007405718322843313, 0.632034182548523, -0.334101140499115, 0.008616729639470577, 0.004205055069178343, 0.06782176345586777, -0.037503115832805634, -2.1945154666900635, 0.5736489295959473, 1.976186752319336, -0.3049745559692383, -0.1968528777360916, -0.13523000478744507, 0.02539457380771637, 0.17445436120033264, -0.13548167049884796, 0.03085937909781933, 1.2330089807510376, -0.11793676018714905, 0.07746603339910507, -0.034202978014945984]} +{"t": 10.2284, "q": [-0.36224615573883057, -0.026660587638616562, 0.017529990524053574, 0.622617244720459, -0.29645904898643494, 0.02595309354364872, -0.3487897515296936, -0.0037923413328826427, 0.007178056053817272, 0.632034182548523, -0.3341338038444519, 0.008587975986301899, 0.004888041876256466, 0.06792017072439194, -0.037491992115974426, -2.1988296508789062, 0.5801323652267456, 1.9802014827728271, -0.30540600419044495, -0.1968528777360916, -0.13520602881908417, 0.025382589548826218, 0.17445436120033264, -0.13533785939216614, 0.030919300392270088, 1.2335482835769653, -0.11796072870492935, 0.07747801393270493, -0.034214962273836136]} +{"t": 10.2452, "q": [-0.36226320266723633, -0.026686152443289757, 0.017690693959593773, 0.6226257681846619, -0.2964465618133545, 0.025945909321308136, -0.3487045168876648, -0.003775297198444605, 0.006963785737752914, 0.6320086121559143, -0.33412960171699524, 0.008566138334572315, 0.005396933760493994, 0.06801067292690277, -0.03741668537259102, -2.2034196853637695, 0.5869274139404297, 1.9839645624160767, -0.3067602217197418, -0.19686487317085266, -0.13519404828548431, 0.025382589548826218, 0.17427460849285126, -0.13546967506408691, 0.030895331874489784, 1.2337759733200073, -0.1179487481713295, 0.07751397043466568, -0.03422694653272629]} +{"t": 10.2619, "q": [-0.36229729652404785, -0.026660587638616562, 0.017677301540970802, 0.6226342916488647, -0.29643818736076355, 0.025931477546691895, -0.34867894649505615, -0.003783819265663624, 0.006655772216618061, 0.631957471370697, -0.3341417908668518, 0.008544445969164371, 0.005959393456578255, 0.06800312548875809, -0.037421323359012604, -2.208177328109741, 0.5936505794525146, 1.988290786743164, -0.309061199426651, -0.1968528777360916, -0.13520602881908417, 0.025370605289936066, 0.1741427779197693, -0.13549365103244781, 0.030955253168940544, 1.2337520122528076, -0.11796072870492935, 0.07746603339910507, -0.03417900949716568]} +{"t": 10.2786, "q": [-0.36221206188201904, -0.026660587638616562, 0.017704086378216743, 0.6226428151130676, -0.2964339554309845, 0.025909794494509697, -0.34844884276390076, -0.003775297198444605, 0.0064013260416686535, 0.6319319009780884, -0.334133505821228, 0.008529813960194588, 0.006160271819680929, 0.0679955780506134, -0.03742595762014389, -2.211904525756836, 0.6008171439170837, 1.9920778274536133, -0.3116138279438019, -0.19687685370445251, -0.13521800935268402, 0.025370605289936066, 0.1739869862794876, -0.1354217380285263, 0.03093128465116024, 1.2338119745254517, -0.11796072870492935, 0.07747801393270493, -0.034202978014945984]} +{"t": 10.2955, "q": [-0.36221206188201904, -0.02665206417441368, 0.01765051856637001, 0.6227279901504517, -0.2964380383491516, 0.02588806301355362, -0.34835511445999146, -0.003766775131225586, 0.006187055725604296, 0.6319233775138855, -0.33417436480522156, 0.008501178584992886, 0.006320974789559841, 0.0679955780506134, -0.03742595762014389, -2.2151761054992676, 0.609086275100708, 1.9962602853775024, -0.3135552704334259, -0.1968528777360916, -0.13530190289020538, 0.025370605289936066, 0.1738431751728058, -0.13545769453048706, 0.03093128465116024, 1.233799934387207, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 10.3124, "q": [-0.3622205853462219, -0.026660587638616562, 0.017677301540970802, 0.6227706074714661, -0.2964503765106201, 0.02585184946656227, -0.3482869267463684, -0.003783819265663624, 0.005932609550654888, 0.6319489479064941, -0.33415788412094116, 0.00848646555095911, 0.006709339562803507, 0.0679653212428093, -0.03743467479944229, -2.218735456466675, 0.6177868247032166, 2.001617193222046, -0.3142983019351959, -0.1968528777360916, -0.13531388342380524, 0.025358621031045914, 0.17383117973804474, -0.13540975749492645, 0.03093128465116024, 1.2338238954544067, -0.1179966852068901, 0.07747801393270493, -0.034214962273836136]} +{"t": 10.3292, "q": [-0.3622802495956421, -0.026609454303979874, 0.01765051856637001, 0.6228387951850891, -0.29644620418548584, 0.02584463357925415, -0.34830397367477417, -0.0038008634001016617, 0.00579869095236063, 0.631957471370697, -0.3341372609138489, 0.008464463986456394, 0.006655772216618061, 0.06793492287397385, -0.03741389885544777, -2.222498655319214, 0.6270026564598083, 2.006890296936035, -0.3145020306110382, -0.19684089720249176, -0.13533785939216614, 0.025382589548826218, 0.17378325760364532, -0.1354217380285263, 0.030907316133379936, 1.2337759733200073, -0.11796072870492935, 0.07745404541492462, -0.03422694653272629]} +{"t": 10.3459, "q": [-0.362356960773468, -0.026600932702422142, 0.017610343173146248, 0.622847318649292, -0.2964750826358795, 0.02577940560877323, -0.34831249713897705, -0.0037923413328826427, 0.00571833923459053, 0.631957471370697, -0.3341291546821594, 0.008478913456201553, 0.006655772216618061, 0.06790456920862198, -0.03740295022726059, -2.2256743907928467, 0.6358949542045593, 2.012211322784424, -0.3148735463619232, -0.1968528777360916, -0.1353738009929657, 0.02539457380771637, 0.17375928163528442, -0.1354217380285263, 0.030883347615599632, 1.2338238954544067, -0.1179487481713295, 0.07747801393270493, -0.034202978014945984]} +{"t": 10.3626, "q": [-0.3623654842376709, -0.026609454303979874, 0.017543382942676544, 0.6228558421134949, -0.29649174213409424, 0.025779321789741516, -0.3483295440673828, -0.003775297198444605, 0.0057719070464372635, 0.6319233775138855, -0.33412930369377136, 0.008507976308465004, 0.006347758695483208, 0.06788946688175201, -0.03741222247481346, -2.226501226425171, 0.6442839503288269, 2.0164897441864014, -0.3149334490299225, -0.19687685370445251, -0.135349839925766, 0.02539457380771637, 0.17374730110168457, -0.13538579642772675, 0.030883347615599632, 1.233799934387207, -0.11796072870492935, 0.07745404541492462, -0.03422694653272629]} +{"t": 10.3793, "q": [-0.36234843730926514, -0.026575366035103798, 0.01746303215622902, 0.622847318649292, -0.2965001165866852, 0.02579377219080925, -0.34840625524520874, -0.003783819265663624, 0.00605313666164875, 0.6319489479064941, -0.33412131667137146, 0.008551506325602531, 0.006160271819680929, 0.06788946688175201, -0.03741222247481346, -2.2263333797454834, 0.653331995010376, 2.0208518505096436, -0.3148975074291229, -0.1968528777360916, -0.135349839925766, 0.025382589548826218, 0.17372332513332367, -0.13540975749492645, 0.03085937909781933, 1.2336920499801636, -0.11793676018714905, 0.07744206488132477, -0.034214962273836136]} +{"t": 10.3961, "q": [-0.36234843730926514, -0.02658388763666153, 0.017355896532535553, 0.6228387951850891, -0.29653725028038025, 0.025714026764035225, -0.34845736622810364, -0.0037923413328826427, 0.006307582836598158, 0.6319233775138855, -0.33410099148750305, 0.008587630465626717, 0.0061736637726426125, 0.0679197683930397, -0.037413340061903, -2.227100372314453, 0.6627875566482544, 2.026017189025879, -0.31483757495880127, -0.19684089720249176, -0.13536182045936584, 0.025358621031045914, 0.17375928163528442, -0.1354217380285263, 0.03087136335670948, 1.233728051185608, -0.1179487481713295, 0.07745404541492462, -0.03423893079161644]} +{"t": 10.4128, "q": [-0.3622717261314392, -0.026635020971298218, 0.017235370352864265, 0.6228132247924805, -0.2965579926967621, 0.02569226361811161, -0.34844884276390076, -0.0038519962690770626, 0.0064013260416686535, 0.6319233775138855, -0.33408066630363464, 0.00862377230077982, 0.006441501900553703, 0.067897267639637, -0.03745674714446068, -2.229341506958008, 0.6734175682067871, 2.0325844287872314, -0.31446605920791626, -0.1968528777360916, -0.135349839925766, 0.02539457380771637, 0.17403492331504822, -0.13540975749492645, 0.030847394838929176, 1.2337640523910522, -0.11793676018714905, 0.07746603339910507, -0.03422694653272629]} +{"t": 10.4296, "q": [-0.362101286649704, -0.026694675907492638, 0.01714162714779377, 0.6228643655776978, -0.29652485251426697, 0.025735775008797646, -0.3483721613883972, -0.004039482679218054, 0.006294190883636475, 0.6319319009780884, -0.33409300446510315, 0.008631179109215736, 0.0067896912805736065, 0.0678747147321701, -0.03749031946063042, -2.230863571166992, 0.6829330325126648, 2.0386126041412354, -0.3143582046031952, -0.1968528777360916, -0.13533785939216614, 0.025382589548826218, 0.17408286035060883, -0.13545769453048706, 0.03082342818379402, 1.2339438199996948, -0.1179727166891098, 0.07747801393270493, -0.034202978014945984]} +{"t": 10.4464, "q": [-0.3620586693286896, -0.026720240712165833, 0.01699431613087654, 0.6228984594345093, -0.29656633734703064, 0.025706697255373, -0.348389208316803, -0.004141747951507568, 0.006160271819680929, 0.6318978071212769, -0.3341137170791626, 0.008667713031172752, 0.0068030827678740025, 0.06784456223249435, -0.0375186987221241, -2.2313308715820312, 0.6933832764625549, 2.0441014766693115, -0.3141784369945526, -0.1968528777360916, -0.13533785939216614, 0.025370605289936066, 0.17404690384864807, -0.13543373346328735, 0.03085937909781933, 1.2339917421340942, -0.1179966852068901, 0.07747801393270493, -0.03422694653272629]} +{"t": 10.4632, "q": [-0.36211833357810974, -0.026635020971298218, 0.016940748319029808, 0.6229069828987122, -0.2965705692768097, 0.02572837844491005, -0.348389208316803, -0.004175836686044931, 0.006079920567572117, 0.6318296194076538, -0.3341015875339508, 0.008703918196260929, 0.006843258626759052, 0.06783696264028549, -0.037513505667448044, -2.2314627170562744, 0.7028868198394775, 2.049733877182007, -0.31411853432655334, -0.1968528777360916, -0.13533785939216614, 0.02534663677215576, 0.1739630103111267, -0.1354457139968872, 0.03087136335670948, 1.234027624130249, -0.11796072870492935, 0.07750198245048523, -0.034214962273836136]} +{"t": 10.4799, "q": [-0.36233991384506226, -0.02665206417441368, 0.01682022027671337, 0.6228558421134949, -0.29667389392852783, 0.02553262747824192, -0.34849998354911804, -0.00418435875326395, 0.0060933125205338, 0.6317529678344727, -0.33411461114883423, 0.008842144161462784, 0.006575420964509249, 0.06779150664806366, -0.037511829286813736, -2.2325172424316406, 0.7141999006271362, 2.0561575889587402, -0.3142263889312744, -0.19684089720249176, -0.13536182045936584, 0.025370605289936066, 0.1738431751728058, -0.13546967506408691, 0.030907316133379936, 1.2339677810668945, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 10.4966, "q": [-0.3624933063983917, -0.026660587638616562, 0.016766652464866638, 0.622847318649292, -0.296690434217453, 0.02550361305475235, -0.34859374165534973, -0.0041673146188259125, 0.00613348837941885, 0.6316762566566467, -0.3340738117694855, 0.008885329589247704, 0.006320974789559841, 0.0677839145064354, -0.03750663623213768, -2.234494686126709, 0.7249137759208679, 2.062161684036255, -0.31437018513679504, -0.1968289166688919, -0.13543373346328735, 0.025370605289936066, 0.17379523813724518, -0.13551761209964752, 0.030883347615599632, 1.2339677810668945, -0.1179727166891098, 0.07747801393270493, -0.034214962273836136]} +{"t": 10.5134, "q": [-0.3624592125415802, -0.026677630841732025, 0.016726477071642876, 0.6227620840072632, -0.2966863214969635, 0.025510862469673157, -0.3486193120479584, -0.0041587925516068935, 0.006294190883636475, 0.6315313577651978, -0.33404120802879333, 0.008928614668548107, 0.006267406977713108, 0.06779146194458008, -0.037501998245716095, -2.2369155883789062, 0.7360112071037292, 2.0693881511688232, -0.3139627277851105, -0.1968528777360916, -0.1353977769613266, 0.02533465251326561, 0.1738671362400055, -0.13550563156604767, 0.03082342818379402, 1.2339078187942505, -0.11793676018714905, 0.07745404541492462, -0.03422694653272629]} +{"t": 10.5301, "q": [-0.36239954829216003, -0.02664354257285595, 0.01661934331059456, 0.6227620840072632, -0.296558141708374, 0.025735661387443542, -0.3486193120479584, -0.0041587925516068935, 0.006334366742521524, 0.6315313577651978, -0.333996057510376, 0.008920916356146336, 0.006254015490412712, 0.06782186031341553, -0.037522777915000916, -2.2393124103546143, 0.7462577223777771, 2.078040599822998, -0.31363916397094727, -0.1968289166688919, -0.1353977769613266, 0.02534663677215576, 0.17395102977752686, -0.1354457139968872, 0.030847394838929176, 1.2339677810668945, -0.11793676018714905, 0.07745404541492462, -0.03419099375605583]} +{"t": 10.5468, "q": [-0.3623739778995514, -0.026677630841732025, 0.01663273386657238, 0.622779130935669, -0.29655829071998596, 0.025779057294130325, -0.3486107885837555, -0.0041587925516068935, 0.0064013260416686535, 0.6315313577651978, -0.33400434255599976, 0.008935529738664627, 0.006160271819680929, 0.06779161095619202, -0.03753149136900902, -2.242140769958496, 0.7554016709327698, 2.0849075317382812, -0.3136511445045471, -0.1968528777360916, -0.13540975749492645, 0.025358621031045914, 0.173939049243927, -0.13546967506408691, 0.030835412442684174, 1.2339797019958496, -0.11793676018714905, 0.07746603339910507, -0.03422694653272629]} +{"t": 10.5635, "q": [-0.36239102482795715, -0.026686152443289757, 0.01664612628519535, 0.6227706074714661, -0.29654163122177124, 0.02577914111316204, -0.3486022651195526, -0.004175836686044931, 0.006374542135745287, 0.6314205527305603, -0.33395496010780334, 0.008905957452952862, 0.006187055725604296, 0.06778401136398315, -0.03752629831433296, -2.2453525066375732, 0.764641523361206, 2.0923140048980713, -0.31351932883262634, -0.1968289166688919, -0.1353977769613266, 0.02534663677215576, 0.1738911122083664, -0.13550563156604767, 0.03087136335670948, 1.2340036630630493, -0.1179487481713295, 0.07750198245048523, -0.03423893079161644]} +{"t": 10.5803, "q": [-0.36243364214897156, -0.02670319750905037, 0.016699694097042084, 0.622779130935669, -0.29652923345565796, 0.02580088935792446, -0.34857669472694397, -0.004150270018726587, 0.006307582836598158, 0.6313098073005676, -0.33389782905578613, 0.008963546715676785, 0.006240623537451029, 0.0677839145064354, -0.03750663623213768, -2.248863935470581, 0.7737495303153992, 2.099828004837036, -0.3131837546825409, -0.1968528777360916, -0.13540975749492645, 0.025370605289936066, 0.1738911122083664, -0.13551761209964752, 0.03085937909781933, 1.2340396642684937, -0.11796072870492935, 0.07747801393270493, -0.034202978014945984]} +{"t": 10.597, "q": [-0.3624165952205658, -0.026694675907492638, 0.016739869490265846, 0.6227961778640747, -0.29649198055267334, 0.02585168555378914, -0.3485596477985382, -0.004150270018726587, 0.006334366742521524, 0.6312501430511475, -0.3338611125946045, 0.008999506011605263, 0.006213839631527662, 0.0677839145064354, -0.03750663623213768, -2.2521116733551025, 0.7826058864593506, 2.106191635131836, -0.31294408440589905, -0.1968528777360916, -0.1353977769613266, 0.025322668254375458, 0.1738911122083664, -0.13554158806800842, 0.030895331874489784, 1.2339797019958496, -0.1179727166891098, 0.07745404541492462, -0.03425091505050659]} +{"t": 10.6138, "q": [-0.3623825013637543, -0.026720240712165833, 0.01679343730211258, 0.6228217482566833, -0.2964920699596405, 0.025880616158246994, -0.3485255539417267, -0.0041587925516068935, 0.006347758695483208, 0.6312075257301331, -0.3338404893875122, 0.008977504447102547, 0.006521853152662516, 0.06778401136398315, -0.03752629831433296, -2.2564857006073, 0.7909229397773743, 2.1136457920074463, -0.3127043843269348, -0.1968528777360916, -0.1353738009929657, 0.025310683995485306, 0.17399896681308746, -0.1354457139968872, 0.030895331874489784, 1.2340036630630493, -0.11793676018714905, 0.07745404541492462, -0.03422694653272629]} +{"t": 10.6305, "q": [-0.3623654842376709, -0.026737285777926445, 0.01678004488348961, 0.6228302717208862, -0.29647544026374817, 0.025880681350827217, -0.348431795835495, -0.004175836686044931, 0.006307582836598158, 0.6312075257301331, -0.33380767703056335, 0.008977158926427364, 0.006454893853515387, 0.0678066611289978, -0.037512388080358505, -2.2613754272460938, 0.7989882826805115, 2.121112108230591, -0.3125605881214142, -0.1968528777360916, -0.13538579642772675, 0.025358621031045914, 0.173939049243927, -0.13545769453048706, 0.030883347615599632, 1.234015703201294, -0.1179487481713295, 0.07747801393270493, -0.03423893079161644]} +{"t": 10.6473, "q": [-0.36244216561317444, -0.026728764176368713, 0.016927355900406837, 0.6228558421134949, -0.29646721482276917, 0.02590966410934925, -0.34839773178100586, -0.004175836686044931, 0.006307582836598158, 0.63113933801651, -0.3337954580783844, 0.008998851291835308, 0.006347758695483208, 0.0677839145064354, -0.03750663623213768, -2.2669479846954346, 0.807916522026062, 2.1280148029327393, -0.31262049078941345, -0.1968528777360916, -0.13538579642772675, 0.025358621031045914, 0.17385515570640564, -0.13546967506408691, 0.03093128465116024, 1.2339917421340942, -0.11793676018714905, 0.07747801393270493, -0.03419099375605583]} +{"t": 10.664, "q": [-0.3624251186847687, -0.02676285244524479, 0.017007706686854362, 0.6228387951850891, -0.2964465618133545, 0.025945909321308136, -0.3482528328895569, -0.0041673146188259125, 0.006280798930674791, 0.6309604048728943, -0.3336810767650604, 0.0090849120169878, 0.00642810994759202, 0.06778401136398315, -0.03752629831433296, -2.2711665630340576, 0.8155145645141602, 2.1349897384643555, -0.31252461671829224, -0.1968289166688919, -0.13538579642772675, 0.025286715477705002, 0.1738671362400055, -0.13550563156604767, 0.030883347615599632, 1.234015703201294, -0.1179487481713295, 0.07746603339910507, -0.03422694653272629]} +{"t": 10.6808, "q": [-0.36234843730926514, -0.026737285777926445, 0.01699431613087654, 0.6228217482566833, -0.2964465022087097, 0.02593144401907921, -0.3482358157634735, -0.004175836686044931, 0.006307582836598158, 0.6309348344802856, -0.3336810767650604, 0.0090849120169878, 0.006280798930674791, 0.06779921054840088, -0.03753668814897537, -2.276128053665161, 0.8249461054801941, 2.1418566703796387, -0.3125126361846924, -0.1968528777360916, -0.13538579642772675, 0.025358621031045914, 0.17387911677360535, -0.13551761209964752, 0.030883347615599632, 1.234015703201294, -0.1179487481713295, 0.07745404541492462, -0.03419099375605583]} +{"t": 10.6975, "q": [-0.36225467920303345, -0.02677137404680252, 0.017021099105477333, 0.622847318649292, -0.29646313190460205, 0.025931378826498985, -0.34813353419303894, -0.0041673146188259125, 0.006294190883636475, 0.6309604048728943, -0.3336810767650604, 0.0090849120169878, 0.00642810994759202, 0.06779921054840088, -0.03753668814897537, -2.2797951698303223, 0.8328317403793335, 2.1479926109313965, -0.3123328685760498, -0.1968528777360916, -0.13538579642772675, 0.02534663677215576, 0.17392705380916595, -0.13551761209964752, 0.030883347615599632, 1.234027624130249, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 10.7145, "q": [-0.3621864914894104, -0.02677137404680252, 0.017074666917324066, 0.6228558421134949, -0.2964465022087097, 0.02593144401907921, -0.3479716181755066, -0.004175836686044931, 0.0062272315844893456, 0.6309774518013, -0.3336810767650604, 0.0090849120169878, 0.006441501900553703, 0.06781431287527084, -0.0375274159014225, -2.283642053604126, 0.8410049676895142, 2.154320240020752, -0.3122849464416504, -0.1968528777360916, -0.13536182045936584, 0.025262746959924698, 0.17392705380916595, -0.13548167049884796, 0.03087136335670948, 1.234015703201294, -0.11793676018714905, 0.07747801393270493, -0.03423893079161644]} +{"t": 10.7313, "q": [-0.3621950149536133, -0.02676285244524479, 0.017074666917324066, 0.6228984594345093, -0.29644641280174255, 0.025902513414621353, -0.3479801416397095, -0.00418435875326395, 0.006146880332380533, 0.6310200095176697, -0.33366888761520386, 0.009106586687266827, 0.006521853152662516, 0.06780681014060974, -0.03754188120365143, -2.2874410152435303, 0.849741518497467, 2.1613190174102783, -0.31222501397132874, -0.1968528777360916, -0.135349839925766, 0.025298699736595154, 0.17390309274196625, -0.13548167049884796, 0.03085937909781933, 1.2340396642684937, -0.1179727166891098, 0.07746603339910507, -0.034214962273836136]} +{"t": 10.748, "q": [-0.3621779680252075, -0.026754330843687057, 0.01711484231054783, 0.6229410767555237, -0.29645049571990967, 0.02588079869747162, -0.3479630947113037, -0.0041673146188259125, 0.0060933125205338, 0.6310796737670898, -0.3336566090583801, 0.009113747626543045, 0.006361150648444891, 0.06779161095619202, -0.03753149136900902, -2.2908804416656494, 0.8582262992858887, 2.166999578475952, -0.31206923723220825, -0.1968528777360916, -0.13531388342380524, 0.025298699736595154, 0.1738671362400055, -0.13549365103244781, 0.030883347615599632, 1.2340636253356934, -0.1179727166891098, 0.07747801393270493, -0.03425091505050659]} +{"t": 10.765, "q": [-0.3621353805065155, -0.026677630841732025, 0.017101449891924858, 0.6229325532913208, -0.2964836061000824, 0.025837251916527748, -0.3479716181755066, -0.0041247038170695305, 0.006200447678565979, 0.6310881972312927, -0.3336566090583801, 0.009113747626543045, 0.006106704473495483, 0.06779921054840088, -0.03753668814897537, -2.294931173324585, 0.8672624230384827, 2.1714816093444824, -0.31197336316108704, -0.1968289166688919, -0.1353258639574051, 0.025286715477705002, 0.1738431751728058, -0.13545769453048706, 0.03087136335670948, 1.2339677810668945, -0.11798469722270966, 0.07746603339910507, -0.03425091505050659]} +{"t": 10.7818, "q": [-0.3621353805065155, -0.026686152443289757, 0.017074666917324066, 0.6229069828987122, -0.2964876890182495, 0.025815537199378014, -0.3480227589607239, -0.0041161817498505116, 0.006213839631527662, 0.6310967206954956, -0.33365675806999207, 0.009142810478806496, 0.006307582836598158, 0.06779161095619202, -0.03753149136900902, -2.2997968196868896, 0.8762865662574768, 2.1775336265563965, -0.312057226896286, -0.19681693613529205, -0.13531388342380524, 0.02527473121881485, 0.17392705380916595, -0.13556554913520813, 0.03085937909781933, 1.2340036630630493, -0.11793676018714905, 0.07746603339910507, -0.034214962273836136]} +{"t": 10.7985, "q": [-0.362169474363327, -0.02670319750905037, 0.017061274498701096, 0.6228814125061035, -0.2965083122253418, 0.025764789432287216, -0.3480483293533325, -0.0041161817498505116, 0.00613348837941885, 0.6310881972312927, -0.33365684747695923, 0.009157359600067139, 0.006187055725604296, 0.06780681014060974, -0.03754188120365143, -2.304746389389038, 0.8854305148124695, 2.1829745769500732, -0.3120093047618866, -0.19679296016693115, -0.13531388342380524, 0.025286715477705002, 0.173939049243927, -0.13549365103244781, 0.03087136335670948, 1.2339917421340942, -0.11793676018714905, 0.07746603339910507, -0.03425091505050659]} +{"t": 10.8152, "q": [-0.362101286649704, -0.0267117191106081, 0.017021099105477333, 0.6228217482566833, -0.2965579926967621, 0.02569226361811161, -0.34808239340782166, -0.0041161817498505116, 0.006160271819680929, 0.631071150302887, -0.33366918563842773, 0.009164748713374138, 0.00646828580647707, 0.06781455874443054, -0.037576571106910706, -2.3088808059692383, 0.8941789865493774, 2.188403367996216, -0.31199732422828674, -0.19681693613529205, -0.1353258639574051, 0.025322668254375458, 0.17399896681308746, -0.13555356860160828, 0.030847394838929176, 1.2340755462646484, -0.11796072870492935, 0.07747801393270493, -0.03423893079161644]} +{"t": 10.8322, "q": [-0.36203309893608093, -0.0267117191106081, 0.016940748319029808, 0.6229069828987122, -0.2966614365577698, 0.025539910420775414, -0.34808239340782166, -0.004133225884288549, 0.0059995693154633045, 0.6310455799102783, -0.33368557691574097, 0.009164911694824696, 0.00646828580647707, 0.06779945641756058, -0.037585847079753876, -2.3126437664031982, 0.9026997685432434, 2.192741632461548, -0.3119014501571655, -0.196804940700531, -0.13530190289020538, 0.02527473121881485, 0.1739869862794876, -0.13546967506408691, 0.03087136335670948, 1.2340755462646484, -0.11796072870492935, 0.07747801393270493, -0.03423893079161644]} +{"t": 10.849, "q": [-0.3618967533111572, -0.026677630841732025, 0.016913963481783867, 0.6228558421134949, -0.29667800664901733, 0.025510895997285843, -0.34817615151405334, -0.004141747951507568, 0.005919218063354492, 0.6309689283370972, -0.3337228298187256, 0.009230690076947212, 0.006776299327611923, 0.06779205054044724, -0.037619974464178085, -2.3163950443267822, 0.9121792912483215, 2.1979188919067383, -0.3117097020149231, -0.19679296016693115, -0.1353258639574051, 0.025286715477705002, 0.17402292788028717, -0.13546967506408691, 0.03087136335670948, 1.234087586402893, -0.1179966852068901, 0.07747801393270493, -0.03422694653272629]} +{"t": 10.8657, "q": [-0.3618200421333313, -0.026660587638616562, 0.01682022027671337, 0.6228387951850891, -0.2966863214969635, 0.025510862469673157, -0.34821876883506775, -0.0041587925516068935, 0.005745123140513897, 0.6308495998382568, -0.3338009715080261, 0.009267814457416534, 0.006829866673797369, 0.06776930391788483, -0.03761422634124756, -2.3200621604919434, 0.9208678603172302, 2.202568769454956, -0.31176963448524475, -0.19679296016693115, -0.13528992235660553, 0.02527473121881485, 0.17402292788028717, -0.13550563156604767, 0.030847394838929176, 1.2340995073318481, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 10.8828, "q": [-0.36179450154304504, -0.02664354257285595, 0.01679343730211258, 0.6228643655776978, -0.29671114683151245, 0.025481833145022392, -0.34830397367477417, -0.0041673146188259125, 0.005664771888405085, 0.6306876540184021, -0.3338257968425751, 0.009311654604971409, 0.0068030827678740025, 0.06777694821357727, -0.037629250437021255, -2.3235974311828613, 0.9299519062042236, 2.206547498703003, -0.31176963448524475, -0.196804940700531, -0.13531388342380524, 0.025298699736595154, 0.17402292788028717, -0.13550563156604767, 0.030883347615599632, 1.2340995073318481, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 10.8997, "q": [-0.3617689311504364, -0.026617975905537605, 0.016713086515665054, 0.6228558421134949, -0.2967277467250824, 0.02546728402376175, -0.3483721613883972, -0.0041673146188259125, 0.0056112040765583515, 0.6305001974105835, -0.33386334776878357, 0.009435577318072319, 0.006816474720835686, 0.06776180118322372, -0.037628691643476486, -2.3264377117156982, 0.9394434094429016, 2.2093279361724854, -0.3118534982204437, -0.196804940700531, -0.13528992235660553, 0.025298699736595154, 0.1739869862794876, -0.13549365103244781, 0.030883347615599632, 1.2341235876083374, -0.1179727166891098, 0.07746603339910507, -0.03422694653272629]} +{"t": 10.9165, "q": [-0.36179450154304504, -0.02664354257285595, 0.016672909259796143, 0.6228387951850891, -0.29682284593582153, 0.02530049718916416, -0.3484147787094116, -0.0041673146188259125, 0.0055978125892579556, 0.6302445530891418, -0.3339051902294159, 0.009595886804163456, 0.006843258626759052, 0.067769356071949, -0.0376240573823452, -2.328355312347412, 0.9491986036300659, 2.211113452911377, -0.3117816150188446, -0.19681693613529205, -0.13528992235660553, 0.025286715477705002, 0.17405888438224792, -0.13550563156604767, 0.030895331874489784, 1.2341115474700928, -0.11796072870492935, 0.07749000191688538, -0.03422694653272629]} +{"t": 10.9332, "q": [-0.3618967533111572, -0.026575366035103798, 0.016405072063207626, 0.6228387951850891, -0.2968312203884125, 0.025314928963780403, -0.3484829366207123, -0.00418435875326395, 0.0056112040765583515, 0.63009113073349, -0.3338848054409027, 0.009617497213184834, 0.006990569643676281, 0.067769356071949, -0.0376240573823452, -2.330260753631592, 0.9585822224617004, 2.212599515914917, -0.3118534982204437, -0.19679296016693115, -0.13528992235660553, 0.025286715477705002, 0.17402292788028717, -0.13549365103244781, 0.03087136335670948, 1.2341115474700928, -0.11793676018714905, 0.07747801393270493, -0.03423893079161644]} +{"t": 10.9499, "q": [-0.3620075285434723, -0.026541277766227722, 0.016338111832737923, 0.6228217482566833, -0.29683947563171387, 0.02530043013393879, -0.34849998354911804, -0.004261057823896408, 0.0055442447774112225, 0.6298950910568237, -0.33387282490730286, 0.009682766161859035, 0.007164664100855589, 0.06775415688753128, -0.03761366754770279, -2.3328492641448975, 0.9678220748901367, 2.2138218879699707, -0.3119613528251648, -0.196804940700531, -0.13528992235660553, 0.025250762701034546, 0.17408286035060883, -0.13550563156604767, 0.03085937909781933, 1.234147548675537, -0.11796072870492935, 0.07746603339910507, -0.03422694653272629]} +{"t": 10.9667, "q": [-0.362101286649704, -0.026549799367785454, 0.0163247212767601, 0.6227706074714661, -0.2968478500843048, 0.025314882397651672, -0.34849998354911804, -0.004346278961747885, 0.0055442447774112225, 0.629716157913208, -0.3337791860103607, 0.009819927625358105, 0.007137880194932222, 0.06775415688753128, -0.03761366754770279, -2.3359172344207764, 0.976774275302887, 2.2148046493530273, -0.3119014501571655, -0.1967809796333313, -0.13530190289020538, 0.025262746959924698, 0.17407086491584778, -0.13551761209964752, 0.030883347615599632, 1.234147548675537, -0.1179966852068901, 0.07750198245048523, -0.034202978014945984]} +{"t": 10.9834, "q": [-0.3621864914894104, -0.026541277766227722, 0.01628454588353634, 0.6227535605430603, -0.29686877131462097, 0.025350963696837425, -0.3485170304775238, -0.004388889297842979, 0.005584420636296272, 0.6295371651649475, -0.3337341845035553, 0.009841274470090866, 0.007218231912702322, 0.06775415688753128, -0.03761366754770279, -2.339752197265625, 0.9863616824150085, 2.215811252593994, -0.3119373917579651, -0.19679296016693115, -0.13527794182300568, 0.025262746959924698, 0.17408286035060883, -0.13545769453048706, 0.030883347615599632, 1.234147548675537, -0.1179247796535492, 0.07747801393270493, -0.03422694653272629]} +{"t": 11.0002, "q": [-0.3623143434524536, -0.02653275430202484, 0.01628454588353634, 0.6227535605430603, -0.2968648374080658, 0.025416109710931778, -0.3485085070133209, -0.004457066301256418, 0.005571028683334589, 0.6292900443077087, -0.33362385630607605, 0.009920109994709492, 0.007204839959740639, 0.06774655729532242, -0.03760847449302673, -2.3441503047943115, 0.9950742125511169, 2.216722249984741, -0.31192541122436523, -0.19676899909973145, -0.13520602881908417, 0.025262746959924698, 0.17405888438224792, -0.13546967506408691, 0.03087136335670948, 1.234183430671692, -0.11796072870492935, 0.07747801393270493, -0.03425091505050659]} +{"t": 11.0169, "q": [-0.3622802495956421, -0.026541277766227722, 0.016230978071689606, 0.6227110028266907, -0.2968483567237854, 0.025459572672843933, -0.34849998354911804, -0.004576376173645258, 0.005584420636296272, 0.6289235949516296, -0.3335181772708893, 0.010108008980751038, 0.007365542463958263, 0.06775415688753128, -0.03761366754770279, -2.347038507461548, 1.0031994581222534, 2.2183640003204346, -0.312057226896286, -0.19679296016693115, -0.13519404828548431, 0.02527473121881485, 0.1741188019514084, -0.13552960753440857, 0.03087136335670948, 1.2341715097427368, -0.1179487481713295, 0.07749000191688538, -0.034214962273836136]} +{"t": 11.0337, "q": [-0.36224615573883057, -0.026549799367785454, 0.016244368627667427, 0.6227194666862488, -0.2968568205833435, 0.02550295554101467, -0.3485170304775238, -0.004729773849248886, 0.005517460871487856, 0.628829836845398, -0.3335099518299103, 0.010107927024364471, 0.007499461527913809, 0.067769356071949, -0.0376240573823452, -2.348524570465088, 1.0098507404327393, 2.2202935218811035, -0.31222501397132874, -0.19681693613529205, -0.1351700723171234, 0.025262746959924698, 0.17413079738616943, -0.13549365103244781, 0.03087136335670948, 1.2341954708099365, -0.1179727166891098, 0.07746603339910507, -0.034214962273836136]} +{"t": 11.0505, "q": [-0.36224615573883057, -0.026541277766227722, 0.016257761046290398, 0.622685432434082, -0.2968651354312897, 0.025502922013401985, -0.3485170304775238, -0.0049343048594892025, 0.005477285478264093, 0.6288042664527893, -0.33345237374305725, 0.010078290477395058, 0.007472677621990442, 0.06778445839881897, -0.03761478140950203, -2.3501784801483154, 1.0173648595809937, 2.222402572631836, -0.31317177414894104, -0.196804940700531, -0.13526594638824463, 0.025202825665473938, 0.17408286035060883, -0.13552960753440857, 0.030895331874489784, 1.2341954708099365, -0.11796072870492935, 0.07745404541492462, -0.03422694653272629]} +{"t": 11.0672, "q": [-0.3624165952205658, -0.026575366035103798, 0.01628454588353634, 0.6226939558982849, -0.29679498076438904, 0.025669610127806664, -0.3485170304775238, -0.005002481862902641, 0.0055442447774112225, 0.6288213133811951, -0.3333868384361267, 0.010092167183756828, 0.007539637386798859, 0.06776165962219238, -0.03759919852018356, -2.3521080017089844, 1.0259575843811035, 2.2252070903778076, -0.3129321038722992, -0.19681693613529205, -0.13527794182300568, 0.025190841406583786, 0.17405888438224792, -0.13555356860160828, 0.030895331874489784, 1.2341954708099365, -0.1179727166891098, 0.07746603339910507, -0.03422694653272629]} +{"t": 11.0839, "q": [-0.36271488666534424, -0.026609454303979874, 0.016338111832737923, 0.6227620840072632, -0.2966916263103485, 0.025850893929600716, -0.34849146008491516, -0.004985437728464603, 0.005490677431225777, 0.6288213133811951, -0.33321499824523926, 0.01017767284065485, 0.007499461527913809, 0.06775405257940292, -0.03759400546550751, -2.354109287261963, 1.0344183444976807, 2.227436065673828, -0.31264448165893555, -0.19679296016693115, -0.13523000478744507, 0.025202825665473938, 0.17402292788028717, -0.13552960753440857, 0.030919300392270088, 1.2342313528060913, -0.11793676018714905, 0.07750198245048523, -0.03425091505050659]} +{"t": 11.1007, "q": [-0.36292794346809387, -0.026617975905537605, 0.016351504251360893, 0.6228217482566833, -0.29662543535232544, 0.025952452793717384, -0.3484744131565094, -0.004959871061146259, 0.005517460871487856, 0.6288639307022095, -0.33312904834747314, 0.010213159956037998, 0.0074860695749521255, 0.06771605461835861, -0.03756803274154663, -2.355008125305176, 1.043574333190918, 2.229712963104248, -0.3123568594455719, -0.196804940700531, -0.1351700723171234, 0.025202825665473938, 0.17399896681308746, -0.13546967506408691, 0.030895331874489784, 1.2341954708099365, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 11.1174, "q": [-0.36336255073547363, -0.026635020971298218, 0.016378289088606834, 0.6230177879333496, -0.2965758740901947, 0.026053927838802338, -0.3484403192996979, -0.0049428269267082214, 0.005517460871487856, 0.628898024559021, -0.33303940296173096, 0.010328528471291065, 0.0074191102758049965, 0.06769325584173203, -0.037552446126937866, -2.3555233478546143, 1.0525624752044678, 2.232205867767334, -0.31227296590805054, -0.1967809796333313, -0.13500230014324188, 0.02521480992436409, 0.17397499084472656, -0.13549365103244781, 0.030895331874489784, 1.2342073917388916, -0.11796072870492935, 0.07746603339910507, -0.03423893079161644]} +{"t": 11.1341, "q": [-0.3635500371456146, -0.026754330843687057, 0.01644524745643139, 0.6230433583259583, -0.2965550720691681, 0.02606125921010971, -0.348431795835495, -0.00495134899392724, 0.0056112040765583515, 0.6290003061294556, -0.33297789096832275, 0.010335180908441544, 0.007231623865664005, 0.06769325584173203, -0.037552446126937866, -2.3556551933288574, 1.0615147352218628, 2.234039306640625, -0.3122849464416504, -0.19679296016693115, -0.1348225325345993, 0.02521480992436409, 0.17390309274196625, -0.13548167049884796, 0.030919300392270088, 1.2341954708099365, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 11.1508, "q": [-0.3636011779308319, -0.026737285777926445, 0.016565775498747826, 0.6231200098991394, -0.29652613401412964, 0.026112021878361702, -0.34839773178100586, -0.004959871061146259, 0.005785298999398947, 0.6292474269866943, -0.3329535126686096, 0.010378547012805939, 0.007137880194932222, 0.06769305467605591, -0.037513118237257004, -2.3554635047912598, 1.0699396133422852, 2.235741138458252, -0.3140825629234314, -0.19679296016693115, -0.13497832417488098, 0.02521480992436409, 0.17387911677360535, -0.13549365103244781, 0.030919300392270088, 1.2341954708099365, -0.1179487481713295, 0.07746603339910507, -0.03423893079161644]} +{"t": 11.1677, "q": [-0.36366936564445496, -0.026737285777926445, 0.01661934331059456, 0.6231967210769653, -0.29649290442466736, 0.026126602664589882, -0.3484147787094116, -0.0049343048594892025, 0.005879042204469442, 0.6295115947723389, -0.33291202783584595, 0.010290930978953838, 0.006883434485644102, 0.06770765781402588, -0.037405528128147125, -2.354013442993164, 1.079047679901123, 2.237346887588501, -0.3145259916782379, -0.19679296016693115, -0.13499031960964203, 0.025202825665473938, 0.1738431751728058, -0.13551761209964752, 0.030883347615599632, 1.2341235876083374, -0.11793676018714905, 0.07745404541492462, -0.034202978014945984]} +{"t": 11.1846, "q": [-0.3636523187160492, -0.026788419112563133, 0.016713086515665054, 0.6233330965042114, -0.2964804172515869, 0.026119418442249298, -0.3484744131565094, -0.004840561654418707, 0.005879042204469442, 0.6298440098762512, -0.332911878824234, 0.010261868126690388, 0.006575420964509249, 0.06761565804481506, -0.03718598932027817, -2.351400852203369, 1.0885272026062012, 2.238497495651245, -0.31439417600631714, -0.19679296016693115, -0.13493038713932037, 0.02521480992436409, 0.17369936406612396, -0.13551761209964752, 0.030835412442684174, 1.234087586402893, -0.11791279166936874, 0.07746603339910507, -0.034202978014945984]} +{"t": 11.2013, "q": [-0.36368638277053833, -0.026933293789625168, 0.016833612695336342, 0.6237592101097107, -0.29648035764694214, 0.02610495314002037, -0.3484403192996979, -0.004618986509740353, 0.005731731187552214, 0.6300740838050842, -0.33287033438682556, 0.01015970204025507, 0.00638793408870697, 0.067295603454113, -0.036801014095544815, -2.349339485168457, 1.0993130207061768, 2.240199327468872, -0.31439417600631714, -0.19676899909973145, -0.13493038713932037, 0.025190841406583786, 0.17360348999500275, -0.13546967506408691, 0.03082342818379402, 1.2340636253356934, -0.11793676018714905, 0.07745404541492462, -0.034202978014945984]} +{"t": 11.2181, "q": [-0.36368638277053833, -0.026933293789625168, 0.017034491524100304, 0.624108612537384, -0.29648032784461975, 0.026090487837791443, -0.348431795835495, -0.004405933897942305, 0.00546389352530241, 0.6302189826965332, -0.332861989736557, 0.010130539536476135, 0.0065620290115475655, 0.0669381394982338, -0.03650800883769989, -2.3470864295959473, 1.110062837600708, 2.2430875301361084, -0.3142983019351959, -0.19679296016693115, -0.13488245010375977, 0.025190841406583786, 0.17365142703056335, -0.13545769453048706, 0.030727554112672806, 1.2341115474700928, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 11.2348, "q": [-0.3636523187160492, -0.02694181725382805, 0.0169675312936306, 0.6243045926094055, -0.29646357893943787, 0.02606160379946232, -0.34840625524520874, -0.004329234827309847, 0.005021960940212011, 0.6304064393043518, -0.33290278911590576, 0.010087336413562298, 0.006642380263656378, 0.06649751961231232, -0.03624635189771652, -2.344773530960083, 1.120225429534912, 2.245676040649414, -0.31444209814071655, -0.19679296016693115, -0.13490642607212067, 0.02521480992436409, 0.1736873835325241, -0.13552960753440857, 0.030739538371562958, 1.2341954708099365, -0.1179247796535492, 0.07749000191688538, -0.03422694653272629]} +{"t": 11.2516, "q": [-0.36366936564445496, -0.026873638853430748, 0.016699694097042084, 0.6245517730712891, -0.2964467406272888, 0.02600380778312683, -0.3482869267463684, -0.004269579891115427, 0.004419325385242701, 0.6305172443389893, -0.3329148292541504, 0.010036598891019821, 0.006695947609841824, 0.06602641195058823, -0.03595434129238129, -2.342472553253174, 1.1313108205795288, 2.247725248336792, -0.3145020306110382, -0.19679296016693115, -0.1348944455385208, 0.025190841406583786, 0.17362745106220245, -0.13550563156604767, 0.030739538371562958, 1.2341715097427368, -0.1179727166891098, 0.07747801393270493, -0.034202978014945984]} +{"t": 11.2684, "q": [-0.3636608421802521, -0.02683102898299694, 0.016391679644584656, 0.6248244643211365, -0.29644665122032166, 0.025974858552217484, -0.348244309425354, -0.004201402887701988, 0.003977392800152302, 0.6306791305541992, -0.3329595625400543, 0.009957090020179749, 0.006883434485644102, 0.06545621156692505, -0.035546235740184784, -2.340674877166748, 1.1426838636398315, 2.249439001083374, -0.31464582681655884, -0.19679296016693115, -0.13488245010375977, 0.025190841406583786, 0.173567533493042, -0.13538579642772675, 0.030775491148233414, 1.2341715097427368, -0.1179487481713295, 0.07747801393270493, -0.034202978014945984]} +{"t": 11.2851, "q": [-0.3636523187160492, -0.026779895648360252, 0.01615062542259693, 0.6249352693557739, -0.2964254915714264, 0.025866413488984108, -0.34826987981796265, -0.0041587925516068935, 0.0036425956059247255, 0.6309007406234741, -0.3329837918281555, 0.009884660132229328, 0.006937001831829548, 0.0647568628191948, -0.035070229321718216, -2.3388173580169678, 1.1534817218780518, 2.251044988632202, -0.314777672290802, -0.19679296016693115, -0.1348704695701599, 0.025202825665473938, 0.17344769835472107, -0.13520602881908417, 0.030835412442684174, 1.2341715097427368, -0.11796072870492935, 0.07747801393270493, -0.034202978014945984]} +{"t": 11.3018, "q": [-0.36367788910865784, -0.02670319750905037, 0.016083667054772377, 0.6249948740005493, -0.2964085340499878, 0.025779668241739273, -0.34839773178100586, -0.0041247038170695305, 0.0034149333368986845, 0.6311904788017273, -0.3330204486846924, 0.009834150783717632, 0.0068566505797207355, 0.06392809748649597, -0.03445674106478691, -2.336073160171509, 1.1645790338516235, 2.251967668533325, -0.3151491582393646, -0.19679296016693115, -0.13485848903656006, 0.025190841406583786, 0.17318403720855713, -0.13493038713932037, 0.030883347615599632, 1.234087586402893, -0.1179727166891098, 0.07745404541492462, -0.034202978014945984]} +{"t": 11.3186, "q": [-0.36366936564445496, -0.02658388763666153, 0.016070274636149406, 0.6249778270721436, -0.29639607667922974, 0.025786951184272766, -0.3485085070133209, -0.003962783608585596, 0.003468500915914774, 0.6313012838363647, -0.3329872488975525, 0.009761148132383823, 0.00646828580647707, 0.06342542171478271, -0.0339188277721405, -2.3328733444213867, 1.1746697425842285, 2.252027750015259, -0.3154727518558502, -0.19676899909973145, -0.1348944455385208, 0.025190841406583786, 0.1727885603904724, -0.13471467792987823, 0.030907316133379936, 1.2340515851974487, -0.1179727166891098, 0.07745404541492462, -0.03422694653272629]} +{"t": 11.3354, "q": [-0.36372047662734985, -0.02647309936583042, 0.01613723486661911, 0.6249011754989624, -0.29639607667922974, 0.025786951184272766, -0.3485255539417267, -0.003783819265663624, 0.0036024199798703194, 0.6312501430511475, -0.3329872488975525, 0.009761148132383823, 0.006187055725604296, 0.06303630024194717, -0.033370744436979294, -2.3307759761810303, 1.1855754852294922, 2.2520036697387695, -0.3159041702747345, -0.19674502313137054, -0.1348704695701599, 0.025178857147693634, 0.1726207733154297, -0.1344510167837143, 0.03082342818379402, 1.234027624130249, -0.1179247796535492, 0.07744206488132477, -0.03423893079161644]} +{"t": 11.3521, "q": [-0.3639335334300995, -0.026379356160759926, 0.01612384244799614, 0.6247648000717163, -0.2964457869529724, 0.025728872045874596, -0.34857669472694397, -0.0036645096261054277, 0.003655987558886409, 0.63113933801651, -0.3330485224723816, 0.009710883721709251, 0.006039745174348354, 0.0629216730594635, -0.033175479620695114, -2.330488443374634, 1.1973918676376343, 2.252638816833496, -0.315976083278656, -0.1967330425977707, -0.13485848903656006, 0.02515488862991333, 0.1727645844221115, -0.1341993510723114, 0.030835412442684174, 1.2340515851974487, -0.11793676018714905, 0.07745404541492462, -0.03422694653272629]} +{"t": 11.3692, "q": [-0.3639335334300995, -0.02639640122652054, 0.01613723486661911, 0.6246539950370789, -0.2964707016944885, 0.025714289397001266, -0.3485170304775238, -0.003690076060593128, 0.0036292036529630423, 0.6310285329818726, -0.3331790268421173, 0.009566842578351498, 0.006120096426457167, 0.06292172521352768, -0.03318529576063156, -2.3309078216552734, 1.2086809873580933, 2.2540531158447266, -0.31601202487945557, -0.1967330425977707, -0.1348465085029602, 0.02515488862991333, 0.17310014367103577, -0.13405553996562958, 0.030835412442684174, 1.2341715097427368, -0.1179487481713295, 0.07747801393270493, -0.03419099375605583]} +{"t": 11.3861, "q": [-0.3638312816619873, -0.026447534561157227, 0.016164017841219902, 0.6245432496070862, -0.2964874505996704, 0.02574317343533039, -0.34836363792419434, -0.003724164329469204, 0.0037229470908641815, 0.6309859752655029, -0.33326032757759094, 0.009422292932868004, 0.006347758695483208, 0.0629446804523468, -0.033230237662792206, -2.332094192504883, 1.2220433950424194, 2.2552754878997803, -0.31601202487945557, -0.19674502313137054, -0.13483451306819916, 0.02515488862991333, 0.1733638048171997, -0.13398364186286926, 0.03075152263045311, 1.234183430671692, -0.11796072870492935, 0.07744206488132477, -0.03422694653272629]} +{"t": 11.4029, "q": [-0.36372047662734985, -0.026439011096954346, 0.016190802678465843, 0.6244750618934631, -0.29649582505226135, 0.02575760707259178, -0.3482528328895569, -0.0037497307639569044, 0.003669379511848092, 0.6309007406234741, -0.333350270986557, 0.009365050122141838, 0.006441501900553703, 0.06299033761024475, -0.03327104449272156, -2.333112955093384, 1.2333805561065674, 2.2564139366149902, -0.31621575355529785, -0.1967330425977707, -0.1348225325345993, 0.025106951594352722, 0.1733398288488388, -0.13403157889842987, 0.030739538371562958, 1.2342673540115356, -0.11796072870492935, 0.07747801393270493, -0.034202978014945984]} +{"t": 11.4196, "q": [-0.36372047662734985, -0.02647309936583042, 0.016244368627667427, 0.6242534518241882, -0.2964916229248047, 0.02575038932263851, -0.34830397367477417, -0.003817907767370343, 0.0037497307639569044, 0.6307814121246338, -0.3333747982978821, 0.009350763633847237, 0.006495069246739149, 0.06303609907627106, -0.0333314873278141, -2.3347907066345215, 1.2455685138702393, 2.258091688156128, -0.3161798119544983, -0.1967330425977707, -0.13481055200099945, 0.02509496733546257, 0.1732679307460785, -0.1341514140367508, 0.030739538371562958, 1.2342313528060913, -0.11796072870492935, 0.07747801393270493, -0.034202978014945984]} +{"t": 11.4365, "q": [-0.36367788910865784, -0.026507189497351646, 0.016164017841219902, 0.6241341829299927, -0.29648327827453613, 0.02573595754802227, -0.34831249713897705, -0.003817907767370343, 0.0037497307639569044, 0.6307047009468079, -0.33337894082069397, 0.00935807079076767, 0.006695947609841824, 0.0630892664194107, -0.03335783630609512, -2.337822675704956, 1.258080005645752, 2.2617709636688232, -0.3160000443458557, -0.1967090666294098, -0.13467872142791748, 0.025059014558792114, 0.17323197424411774, -0.1341514140367508, 0.03075152263045311, 1.2342313528060913, -0.11796072870492935, 0.07746603339910507, -0.034214962273836136]} +{"t": 11.4533, "q": [-0.36368638277053833, -0.026507189497351646, 0.016083667054772377, 0.6241427063941956, -0.2964916229248047, 0.02575038932263851, -0.3482869267463684, -0.003834951901808381, 0.0036292036529630423, 0.6307047009468079, -0.3333911895751953, 0.009350927546620369, 0.006990569643676281, 0.06310446560382843, -0.03336817026138306, -2.341370105743408, 1.2690935134887695, 2.2664806842803955, -0.3160240054130554, -0.19667312502861023, -0.13463078439235687, 0.025047030299901962, 0.17318403720855713, -0.1341993510723114, 0.030727554112672806, 1.2342792749404907, -0.11796072870492935, 0.07746603339910507, -0.03419099375605583]} +{"t": 11.47, "q": [-0.3636608421802521, -0.026507189497351646, 0.016083667054772377, 0.6240659952163696, -0.29647499322891235, 0.025750456377863884, -0.34830397367477417, -0.0038434739690274, 0.0036158119328320026, 0.630696177482605, -0.33337464928627014, 0.009321700781583786, 0.0070307450369000435, 0.06311216950416565, -0.03339296206831932, -2.344521999359131, 1.2812694311141968, 2.2727603912353516, -0.315832257270813, -0.19667312502861023, -0.13464276492595673, 0.02503504604101181, 0.17310014367103577, -0.13423530757427216, 0.03069160133600235, 1.2341954708099365, -0.11796072870492935, 0.07745404541492462, -0.03419099375605583]} +{"t": 11.4867, "q": [-0.36357560753822327, -0.026456056162714958, 0.016070274636149406, 0.6240574717521667, -0.2964874505996704, 0.02574317343533039, -0.34830397367477417, -0.003817907767370343, 0.0036158119328320026, 0.6307047009468079, -0.333382785320282, 0.00930723361670971, 0.00676290737465024, 0.06313502043485641, -0.03341827541589737, -2.347973346710205, 1.292810320854187, 2.2780933380126953, -0.31552067399024963, -0.1967090666294098, -0.13465476036071777, 0.02503504604101181, 0.17292039096355438, -0.134247288107872, 0.03069160133600235, 1.2342792749404907, -0.1179966852068901, 0.07747801393270493, -0.03422694653272629]} +{"t": 11.5034, "q": [-0.3634136915206909, -0.02641344629228115, 0.01612384244799614, 0.6239978075027466, -0.296479195356369, 0.025757672265172005, -0.34830397367477417, -0.0037923413328826427, 0.003696163184940815, 0.630696177482605, -0.33339083194732666, 0.009278252720832825, 0.0065620290115475655, 0.06314272433519363, -0.03344307094812393, -2.3514249324798584, 1.3048903942108154, 2.2832705974578857, -0.31481361389160156, -0.19668510556221008, -0.13459482789039612, 0.025011077523231506, 0.17282451689243317, -0.1342233270406723, 0.03069160133600235, 1.2341954708099365, -0.11796072870492935, 0.07746603339910507, -0.03422694653272629]} +{"t": 11.5202, "q": [-0.36335402727127075, -0.026421967893838882, 0.016056882217526436, 0.6239551901817322, -0.29648327827453613, 0.02573595754802227, -0.34830397367477417, -0.003783819265663624, 0.0036292036529630423, 0.6306791305541992, -0.33339887857437134, 0.009249253198504448, 0.006575420964509249, 0.06316553056240082, -0.03345856815576553, -2.355139970779419, 1.3176655769348145, 2.2898619174957275, -0.31380695104599, -0.19668510556221008, -0.13459482789039612, 0.025011077523231506, 0.1727885603904724, -0.1342712640762329, 0.030703585594892502, 1.2342313528060913, -0.1179966852068901, 0.07747801393270493, -0.03422694653272629]} +{"t": 11.5369, "q": [-0.36335402727127075, -0.02639640122652054, 0.016043491661548615, 0.6240063309669495, -0.2964376211166382, 0.025772301480174065, -0.3482784032821655, -0.003775297198444605, 0.0035220684949308634, 0.6307132244110107, -0.3333824872970581, 0.009249089285731316, 0.006642380263656378, 0.06315797567367554, -0.033463217318058014, -2.3585195541381836, 1.329709768295288, 2.296177625656128, -0.31326764822006226, -0.19666112959384918, -0.1345708668231964, 0.02502306178212166, 0.1727406233549118, -0.1342712640762329, 0.030703585594892502, 1.2342792749404907, -0.1179966852068901, 0.07747801393270493, -0.034214962273836136]} +{"t": 11.5536, "q": [-0.36343926191329956, -0.02639640122652054, 0.016003314405679703, 0.6240319013595581, -0.29645422101020813, 0.025757789611816406, -0.3482784032821655, -0.0037497307639569044, 0.0034952848218381405, 0.630696177482605, -0.3333824872970581, 0.009249089285731316, 0.0065620290115475655, 0.06315037608146667, -0.03345805034041405, -2.362929582595825, 1.342820405960083, 2.301318883895874, -0.31274035573005676, -0.19666112959384918, -0.1345229297876358, 0.0249631404876709, 0.1726207733154297, -0.13428324460983276, 0.030775491148233414, 1.234243392944336, -0.1179727166891098, 0.07745404541492462, -0.03423893079161644]} +{"t": 11.5704, "q": [-0.36343926191329956, -0.02639640122652054, 0.01598992384970188, 0.6240319013595581, -0.29644182324409485, 0.025779535993933678, -0.34826135635375977, -0.003775297198444605, 0.003441717242822051, 0.6305939555168152, -0.33335381746292114, 0.009256068617105484, 0.006937001831829548, 0.06313527375459671, -0.03346734493970871, -2.366189479827881, 1.3554997444152832, 2.30873703956604, -0.3126085102558136, -0.19664914906024933, -0.13448697328567505, 0.024939171969890594, 0.17265672981739044, -0.1342712640762329, 0.030787475407123566, 1.234255313873291, -0.11793676018714905, 0.07747801393270493, -0.03425091505050659]} +{"t": 11.5871, "q": [-0.3634136915206909, -0.02647309936583042, 0.015909571200609207, 0.6240319013595581, -0.296450138092041, 0.02577950432896614, -0.34826135635375977, -0.003826429834589362, 0.003347973804920912, 0.6305087208747864, -0.33337029814720154, 0.009270763956010342, 0.007325367070734501, 0.06315047293901443, -0.03347767889499664, -2.3695929050445557, 1.367615818977356, 2.3170180320739746, -0.31246471405029297, -0.19667312502861023, -0.1344749927520752, 0.02491520345211029, 0.1727645844221115, -0.1342712640762329, 0.030775491148233414, 1.2343032360076904, -0.1179966852068901, 0.07749000191688538, -0.03422694653272629]} +{"t": 11.6038, "q": [-0.3634222149848938, -0.026481622830033302, 0.015909571200609207, 0.624108612537384, -0.2964750826358795, 0.02577940560877323, -0.34826987981796265, -0.0038690404035151005, 0.0032676225528120995, 0.6304746270179749, -0.33337855339050293, 0.009285377338528633, 0.007378934416919947, 0.06310511380434036, -0.03349575027823448, -2.3765318393707275, 1.3818531036376953, 2.3230581283569336, -0.312428742647171, -0.19662518799304962, -0.13446301221847534, 0.024927187711000443, 0.17270466685295105, -0.13428324460983276, 0.030799459666013718, 1.2343631982803345, -0.11798469722270966, 0.07744206488132477, -0.03425091505050659]} +{"t": 11.6207, "q": [-0.36336255073547363, -0.026481622830033302, 0.015762262046337128, 0.6241341829299927, -0.2964833676815033, 0.025764888152480125, -0.3482784032821655, -0.0038860845379531384, 0.0031872710678726435, 0.6301337480545044, -0.3333662152290344, 0.009277988225221634, 0.007606596685945988, 0.06308245658874512, -0.033509694039821625, -2.383410692214966, 1.396138310432434, 2.329469680786133, -0.3124407231807709, -0.19662518799304962, -0.13441507518291473, 0.024927187711000443, 0.1726687103509903, -0.13430720567703247, 0.030847394838929176, 1.2343392372131348, -0.1179966852068901, 0.07747801393270493, -0.03422694653272629]} +{"t": 11.6374, "q": [-0.3631921112537384, -0.026558320969343185, 0.015668518841266632, 0.6241000890731812, -0.2964875400066376, 0.025772104039788246, -0.3482784032821655, -0.00392869533970952, 0.0030131766106933355, 0.629946231842041, -0.3333541750907898, 0.009328744374215603, 0.007713731843978167, 0.06304468959569931, -0.03353293240070343, -2.388108491897583, 1.410339593887329, 2.3373193740844727, -0.31229692697525024, -0.19664914906024933, -0.1344270557165146, 0.024927187711000443, 0.17270466685295105, -0.13433118164539337, 0.03087136335670948, 1.2343631982803345, -0.1179727166891098, 0.07747801393270493, -0.03422694653272629]} +{"t": 11.6541, "q": [-0.3631409704685211, -0.026541277766227722, 0.015695301815867424, 0.6242023706436157, -0.29649174213409424, 0.025779321789741516, -0.34826987981796265, -0.003988349810242653, 0.003066744189709425, 0.6299377083778381, -0.3333665132522583, 0.009336150251328945, 0.0076467725448310375, 0.06304468959569931, -0.03353293240070343, -2.393105983734131, 1.424409031867981, 2.3435990810394287, -0.31222501397132874, -0.19664914906024933, -0.13437911868095398, 0.024927187711000443, 0.17257283627986908, -0.13431920111179352, 0.03087136335670948, 1.2343032360076904, -0.1179966852068901, 0.07745404541492462, -0.03422694653272629]} +{"t": 11.6708, "q": [-0.3630898594856262, -0.026609454303979874, 0.015748869627714157, 0.6241512298583984, -0.2965209186077118, 0.025800922885537148, -0.34826135635375977, -0.004022438544780016, 0.003254230599850416, 0.6298013925552368, -0.33334213495254517, 0.009379517287015915, 0.007807475049048662, 0.06304479390382767, -0.033552560955286026, -2.3968091011047363, 1.43867027759552, 2.3506219387054443, -0.3113142251968384, -0.19662518799304962, -0.13393570482730865, 0.024891234934329987, 0.1726447492837906, -0.13435514271259308, 0.030895331874489784, 1.2342913150787354, -0.11793676018714905, 0.07744206488132477, -0.03423893079161644]} +{"t": 11.6876, "q": [-0.36312392354011536, -0.02664354257285595, 0.015722084790468216, 0.62418532371521, -0.2965705692768097, 0.02572837844491005, -0.3482954502105713, -0.00418435875326395, 0.0032006630208343267, 0.6297928690910339, -0.3333382308483124, 0.009415805339813232, 0.007847650907933712, 0.06304468959569931, -0.03353293240070343, -2.4021899700164795, 1.4542018175125122, 2.3580880165100098, -0.3106910288333893, -0.19654129445552826, -0.13350427150726318, 0.02485528402030468, 0.17265672981739044, -0.13435514271259308, 0.030835412442684174, 1.2343392372131348, -0.1179487481713295, 0.07751397043466568, -0.03419099375605583]} +{"t": 11.7043, "q": [-0.3632432520389557, -0.02664354257285595, 0.015681909397244453, 0.6242194175720215, -0.29660364985466003, 0.02567036636173725, -0.3482954502105713, -0.004235491156578064, 0.003093527862802148, 0.6297076344490051, -0.3333342969417572, 0.009452092461287975, 0.007807475049048662, 0.06298422813415527, -0.03356030210852623, -2.4069597721099854, 1.4713633060455322, 2.3651227951049805, -0.3106670677661896, -0.19658923149108887, -0.13349229097366333, 0.024867268279194832, 0.17260879278182983, -0.13430720567703247, 0.03085937909781933, 1.2343392372131348, -0.11793676018714905, 0.07747801393270493, -0.03423893079161644]} +{"t": 11.7211, "q": [-0.3631835877895355, -0.026609454303979874, 0.015722084790468216, 0.6242108941078186, -0.29673606157302856, 0.025467250496149063, -0.3483465909957886, -0.004235491156578064, 0.0031872710678726435, 0.6296053528785706, -0.3333057165145874, 0.009473621845245361, 0.007700339891016483, 0.06293881684541702, -0.03356856107711792, -2.4102914333343506, 1.4867150783538818, 2.371438503265381, -0.31105056405067444, -0.19658923149108887, -0.1335282325744629, 0.024831315502524376, 0.17254887521266937, -0.1342712640762329, 0.030895331874489784, 1.2343032360076904, -0.1179487481713295, 0.07746603339910507, -0.034214962273836136]} +{"t": 11.7378, "q": [-0.36326882243156433, -0.026617975905537605, 0.01577565260231495, 0.6242194175720215, -0.2967611253261566, 0.0254961010068655, -0.3483721613883972, -0.004261057823896408, 0.003334582084789872, 0.629503071308136, -0.3333222568035126, 0.009502848610281944, 0.007499461527913809, 0.062840536236763, -0.03360935300588608, -2.415121078491211, 1.5034090280532837, 2.3765199184417725, -0.3113621473312378, -0.19654129445552826, -0.13361212611198425, 0.02479536272585392, 0.17252489924430847, -0.1342233270406723, 0.030919300392270088, 1.2342792749404907, -0.1179487481713295, 0.07746603339910507, -0.03423893079161644]} +{"t": 11.7546, "q": [-0.36326029896736145, -0.026558320969343185, 0.015842612832784653, 0.6241938471794128, -0.2967569828033447, 0.02550335042178631, -0.3483721613883972, -0.004278101958334446, 0.003468500915914774, 0.6294690370559692, -0.33325308561325073, 0.009611174464225769, 0.0074191102758049965, 0.06283293664455414, -0.03360418602824211, -2.4203221797943115, 1.518904685974121, 2.3814454078674316, -0.3113142251968384, -0.19654129445552826, -0.13367204368114471, 0.0246755201369524, 0.17252489924430847, -0.134247288107872, 0.030835412442684174, 1.234243392944336, -0.11793676018714905, 0.07745404541492462, -0.034214962273836136]} +{"t": 11.7713, "q": [-0.36331993341445923, -0.02659240923821926, 0.015882788226008415, 0.62418532371521, -0.2967569828033447, 0.02550335042178631, -0.34836363792419434, -0.004312190227210522, 0.00354885240085423, 0.6294775605201721, -0.3332367539405823, 0.009625541977584362, 0.007445894181728363, 0.06285574287176132, -0.03361968696117401, -2.4247562885284424, 1.5348916053771973, 2.3862390518188477, -0.3108348548412323, -0.19654129445552826, -0.13358816504478455, 0.024711472913622856, 0.17256085574626923, -0.13423530757427216, 0.030883347615599632, 1.2342313528060913, -0.11793676018714905, 0.07744206488132477, -0.034202978014945984]} +{"t": 11.7881, "q": [-0.36325177550315857, -0.026600932702422142, 0.01581582799553871, 0.6241682767868042, -0.2967611849308014, 0.02551056630909443, -0.3483721613883972, -0.004346278961747885, 0.003468500915914774, 0.6294008493423462, -0.3332614600658417, 0.009640336968004704, 0.0074860695749521255, 0.06284064054489136, -0.033628981560468674, -2.426529884338379, 1.550207495689392, 2.393105983734131, -0.3103794455528259, -0.1964813768863678, -0.1333484798669815, 0.024687504395842552, 0.17256085574626923, -0.1341993510723114, 0.030883347615599632, 1.234255313873291, -0.11796072870492935, 0.07745404541492462, -0.034214962273836136]} +{"t": 11.8048, "q": [-0.3631921112537384, -0.026609454303979874, 0.015695301815867424, 0.6242108941078186, -0.2967569828033447, 0.02550335042178631, -0.3483721613883972, -0.004337756894528866, 0.003321190131828189, 0.6293752789497375, -0.3332612216472626, 0.00959672499448061, 0.0074860695749521255, 0.06279532611370087, -0.03365686908364296, -2.428471326828003, 1.5651637315750122, 2.398127317428589, -0.31027159094810486, -0.1964813768863678, -0.13327656686306, 0.024687504395842552, 0.17254887521266937, -0.1342233270406723, 0.03087136335670948, 1.234255313873291, -0.11793676018714905, 0.07749000191688538, -0.03422694653272629]} +{"t": 11.8215, "q": [-0.3632262051105499, -0.02658388763666153, 0.015547990798950195, 0.6242875456809998, -0.29674866795539856, 0.025503382086753845, -0.3483806848526001, -0.004363323096185923, 0.003133703488856554, 0.6293667554855347, -0.33324894309043884, 0.009603867307305336, 0.007619988638907671, 0.06268194317817688, -0.03370695561170578, -2.430616617202759, 1.581222653388977, 2.402945041656494, -0.31057119369506836, -0.19646938145160675, -0.13333648443222046, 0.0246755201369524, 0.17253689467906952, -0.1341993510723114, 0.030955253168940544, 1.2342792749404907, -0.11796072870492935, 0.07749000191688538, -0.03419099375605583]} +{"t": 11.8383, "q": [-0.36316654086112976, -0.026617975905537605, 0.015507815405726433, 0.6243045926094055, -0.2966907322406769, 0.0255904421210289, -0.3483806848526001, -0.004346278961747885, 0.003066744189709425, 0.6293582320213318, -0.33324894309043884, 0.009603867307305336, 0.007553029339760542, 0.062598817050457, -0.033748265355825424, -2.43279767036438, 1.596550464630127, 2.406001091003418, -0.3105592131614685, -0.1964574009180069, -0.1333484798669815, 0.024699488654732704, 0.17254887521266937, -0.1341753900051117, 0.03093128465116024, 1.2342313528060913, -0.11793676018714905, 0.07744206488132477, -0.03423893079161644]} +{"t": 11.855, "q": [-0.36321768164634705, -0.026635020971298218, 0.015521206893026829, 0.6243301630020142, -0.2966865599155426, 0.02558322623372078, -0.34839773178100586, -0.004320712294429541, 0.0030801359098404646, 0.6293838024139404, -0.33324065804481506, 0.009589253924787045, 0.007459285669028759, 0.06256860494613647, -0.03376685455441475, -2.4340200424194336, 1.6111233234405518, 2.40922474861145, -0.31049928069114685, -0.19644542038440704, -0.13327656686306, 0.024627583101391792, 0.17252489924430847, -0.1341514140367508, 0.030907316133379936, 1.2342313528060913, -0.11796072870492935, 0.07745404541492462, -0.03423893079161644]} +{"t": 11.8717, "q": [-0.36326029896736145, -0.026609454303979874, 0.0155345993116498, 0.6243301630020142, -0.2966907322406769, 0.0255904421210289, -0.34839773178100586, -0.004312190227210522, 0.003066744189709425, 0.6294519901275635, -0.3332570791244507, 0.009589417837560177, 0.007378934416919947, 0.06256860494613647, -0.03376685455441475, -2.4354941844940186, 1.6261035203933716, 2.4122567176818848, -0.3104393780231476, -0.19639748334884644, -0.13324061036109924, 0.024567661806941032, 0.1724889576435089, -0.1341753900051117, 0.03093128465116024, 1.2342673540115356, -0.11796072870492935, 0.07747801393270493, -0.034202978014945984]} +{"t": 11.8885, "q": [-0.3632347285747528, -0.026635020971298218, 0.015588166192173958, 0.624338686466217, -0.29660385847091675, 0.025728246197104454, -0.3483806848526001, -0.004320712294429541, 0.003093527862802148, 0.629571259021759, -0.3332200348377228, 0.00956723466515541, 0.0074191102758049965, 0.06257615983486176, -0.03376220911741257, -2.4378671646118164, 1.6408681869506836, 2.4148693084716797, -0.31027159094810486, -0.19639748334884644, -0.13309679925441742, 0.02455567754805088, 0.172464981675148, -0.1341753900051117, 0.030919300392270088, 1.2342673540115356, -0.11796072870492935, 0.07746603339910507, -0.03423893079161644]} +{"t": 11.9052, "q": [-0.3632773458957672, -0.026626497507095337, 0.01562834158539772, 0.6243045926094055, -0.29656654596328735, 0.02576455846428871, -0.348389208316803, -0.004312190227210522, 0.0031203117687255144, 0.6296650171279907, -0.3332405090332031, 0.009560191072523594, 0.007526245433837175, 0.06259126216173172, -0.033752914518117905, -2.440084218978882, 1.6550694704055786, 2.4178173542022705, -0.31012779474258423, -0.1964094638824463, -0.13301292061805725, 0.024471787735819817, 0.17242904007434845, -0.13418737053871155, 0.03087136335670948, 1.2343032360076904, -0.1179966852068901, 0.07745404541492462, -0.034214962273836136]} +{"t": 11.9219, "q": [-0.36330291628837585, -0.026660587638616562, 0.015561383217573166, 0.6243131160736084, -0.2965541481971741, 0.025786306709051132, -0.34839773178100586, -0.004303668159991503, 0.0030131766106933355, 0.6297502517700195, -0.3332527279853821, 0.00953849870711565, 0.007499461527913809, 0.06262162327766418, -0.033763766288757324, -2.4421215057373047, 1.6698219776153564, 2.42153263092041, -0.30990007519721985, -0.19639748334884644, -0.13303688168525696, 0.024411866441369057, 0.1723451465368271, -0.134247288107872, 0.03085937909781933, 1.2344350814819336, -0.1179966852068901, 0.07747801393270493, -0.03419099375605583]} +{"t": 11.9387, "q": [-0.36330291628837585, -0.02665206417441368, 0.015561383217573166, 0.6242875456809998, -0.2965540587902069, 0.025757376104593277, -0.3483806848526001, -0.004261057823896408, 0.002986392704769969, 0.6298184394836426, -0.33326077461242676, 0.009509517811238766, 0.007539637386798859, 0.06262166798114777, -0.03377357870340347, -2.4434876441955566, 1.6831364631652832, 2.4250199794769287, -0.30974429845809937, -0.19639748334884644, -0.1329769641160965, 0.02442385070025921, 0.17227323353290558, -0.13428324460983276, 0.03085937909781933, 1.2344471216201782, -0.11796072870492935, 0.07750198245048523, -0.03423893079161644]} +{"t": 11.9554, "q": [-0.36326882243156433, -0.026575366035103798, 0.0155345993116498, 0.6242960691452026, -0.29654985666275024, 0.025750160217285156, -0.3483806848526001, -0.004141747951507568, 0.0029060414526611567, 0.629861056804657, -0.3332769572734833, 0.009466051124036312, 0.0074860695749521255, 0.0626140683889389, -0.033768411725759506, -2.444662094116211, 1.697721242904663, 2.4288430213928223, -0.30960047245025635, -0.19638550281524658, -0.13296498358249664, 0.024411866441369057, 0.17212942242622375, -0.13425926864147186, 0.03085937909781933, 1.234483003616333, -0.1179727166891098, 0.07745404541492462, -0.034202978014945984]} +{"t": 11.9722, "q": [-0.3632262051105499, -0.026481622830033302, 0.015494422987103462, 0.6243301630020142, -0.29655399918556213, 0.02574291080236435, -0.3483806848526001, -0.004030960611999035, 0.0027721223887056112, 0.6298525333404541, -0.33328086137771606, 0.009429763071238995, 0.0072584073059260845, 0.06259896606206894, -0.03377771005034447, -2.445920467376709, 1.711898684501648, 2.431898832321167, -0.30927690863609314, -0.19636152684688568, -0.1329290270805359, 0.024387897923588753, 0.17173394560813904, -0.134247288107872, 0.03082342818379402, 1.2345070838928223, -0.1179966852068901, 0.07747801393270493, -0.03425091505050659]} +{"t": 11.9889, "q": [-0.36326029896736145, -0.026430489495396614, 0.015494422987103462, 0.6243813037872314, -0.296558141708374, 0.025735661387443542, -0.3483806848526001, -0.00392869533970952, 0.0027855143416672945, 0.6298695802688599, -0.33328086137771606, 0.009429763071238995, 0.006950393784791231, 0.06256110966205597, -0.03378131985664368, -2.447298526763916, 1.72708261013031, 2.434847116470337, -0.30892935395240784, -0.19636152684688568, -0.1329290270805359, 0.02436392940580845, 0.1711706817150116, -0.134247288107872, 0.03081144392490387, 1.2344950437545776, -0.11796072870492935, 0.07747801393270493, -0.03423893079161644]} +{"t": 12.0056, "q": [-0.36325177550315857, -0.026430489495396614, 0.015494422987103462, 0.6244068741798401, -0.29654985666275024, 0.025750160217285156, -0.3483721613883972, -0.0038860845379531384, 0.002839081920683384, 0.6299036145210266, -0.3332727253437042, 0.009444213472306728, 0.0065620290115475655, 0.06255350261926651, -0.03377615287899971, -2.4483413696289062, 1.7420989274978638, 2.4384663105010986, -0.3086656928062439, -0.19636152684688568, -0.132905051112175, 0.02431599237024784, 0.1703677475452423, -0.13428324460983276, 0.03081144392490387, 1.2344950437545776, -0.11796072870492935, 0.07746603339910507, -0.03423893079161644]} +{"t": 12.0225, "q": [-0.3632432520389557, -0.02646457776427269, 0.01562834158539772, 0.6244239211082458, -0.29654160141944885, 0.02576465718448162, -0.3483806848526001, -0.003920173272490501, 0.002946217078715563, 0.6300485134124756, -0.3332686126232147, 0.009436906315386295, 0.006294190883636475, 0.06258376687765121, -0.033767376095056534, -2.450378656387329, 1.755988597869873, 2.4413065910339355, -0.30842602252960205, -0.19633756577968597, -0.13285711407661438, 0.02430400811135769, 0.16948091983795166, -0.13435514271259308, 0.03081144392490387, 1.234542965888977, -0.1179727166891098, 0.07747801393270493, -0.03423893079161644]} +{"t": 12.0392, "q": [-0.3632432520389557, -0.026481622830033302, 0.015748869627714157, 0.6245688199996948, -0.29654568433761597, 0.025742942467331886, -0.34835511445999146, -0.003920173272490501, 0.003133703488856554, 0.6302615404129028, -0.3332481384277344, 0.009443985298275948, 0.006039745174348354, 0.06259141862392426, -0.03378235548734665, -2.453206777572632, 1.7695907354354858, 2.44364333152771, -0.30792269110679626, -0.19633756577968597, -0.13283315300941467, 0.024280039593577385, 0.1684263050556183, -0.1344030797481537, 0.030799459666013718, 1.2346268892288208, -0.1179727166891098, 0.07747801393270493, -0.03422694653272629]} +{"t": 12.0559, "q": [-0.3632262051105499, -0.026507189497351646, 0.015829220414161682, 0.6246795654296875, -0.2965622544288635, 0.025728411972522736, -0.34836363792419434, -0.00392869533970952, 0.003240838646888733, 0.6303467750549316, -0.33326053619384766, 0.009465905837714672, 0.005879042204469442, 0.06259141862392426, -0.03378235548734665, -2.4555678367614746, 1.7825576066970825, 2.4467952251434326, -0.3073953688144684, -0.19632558524608612, -0.13280917704105377, 0.024232102558016777, 0.1672518402338028, -0.1344510167837143, 0.030775491148233414, 1.2347347736358643, -0.11796072870492935, 0.07747801393270493, -0.03423893079161644]} +{"t": 12.0727, "q": [-0.36312392354011536, -0.026498666033148766, 0.015842612832784653, 0.6247477531433105, -0.2965623140335083, 0.025742877274751663, -0.3483721613883972, -0.003937217406928539, 0.003240838646888733, 0.6304490566253662, -0.3332359194755554, 0.009465659968554974, 0.005745123140513897, 0.06255350261926651, -0.03377615287899971, -2.459846019744873, 1.7947216033935547, 2.447861909866333, -0.3070598244667053, -0.19633756577968597, -0.1327732354402542, 0.02424408681690693, 0.16631707549095154, -0.1344510167837143, 0.030787475407123566, 1.234770655632019, -0.1179966852068901, 0.07750198245048523, -0.034202978014945984]} +{"t": 12.0894, "q": [-0.363106906414032, -0.026498666033148766, 0.01581582799553871, 0.6248756051063538, -0.29659947752952576, 0.02566315047442913, -0.3483806848526001, -0.00392869533970952, 0.00321405497379601, 0.6304831504821777, -0.3332318663597107, 0.009472884237766266, 0.0056112040765583515, 0.06256110966205597, -0.03378131985664368, -2.4629619121551514, 1.8064781427383423, 2.4489643573760986, -0.3064126670360565, -0.19636152684688568, -0.13282117247581482, 0.02425607107579708, 0.16544222831726074, -0.1344510167837143, 0.03076350688934326, 1.2347826957702637, -0.11798469722270966, 0.07749000191688538, -0.03423893079161644]} +{"t": 12.1063, "q": [-0.36311542987823486, -0.026515711098909378, 0.015842612832784653, 0.6249182224273682, -0.2966243028640747, 0.025619637221097946, -0.3483806848526001, -0.003920173272490501, 0.003254230599850416, 0.6305854320526123, -0.3332318663597107, 0.009472884237766266, 0.005624596029520035, 0.06256870925426483, -0.033786483108997345, -2.4643161296844482, 1.8164969682693481, 2.449899196624756, -0.30535805225372314, -0.19633756577968597, -0.13283315300941467, 0.024280039593577385, 0.16473515331745148, -0.1344749927520752, 0.030799459666013718, 1.234758734703064, -0.11798469722270966, 0.07749000191688538, -0.03422694653272629]} +{"t": 12.123, "q": [-0.36316654086112976, -0.02652423270046711, 0.015882788226008415, 0.6249523162841797, -0.2965663969516754, 0.02572116255760193, -0.34839773178100586, -0.003962783608585596, 0.003361365757882595, 0.630611002445221, -0.33322373032569885, 0.009487334638834, 0.005557636730372906, 0.06260652095079422, -0.03377306088805199, -2.46451997756958, 1.8267914056777954, 2.449815273284912, -0.30386003851890564, -0.19632558524608612, -0.13285711407661438, 0.024292023852467537, 0.16418388485908508, -0.13453491032123566, 0.03082342818379402, 1.2347227334976196, -0.1179487481713295, 0.07745404541492462, -0.03423893079161644]} +{"t": 12.1398, "q": [-0.363336980342865, -0.026515711098909378, 0.01598992384970188, 0.6249011754989624, -0.29664501547813416, 0.025597838684916496, -0.348389208316803, -0.003937217406928539, 0.003575636073946953, 0.6308240294456482, -0.33325663208961487, 0.009502192959189415, 0.005490677431225777, 0.06262162327766418, -0.033763766288757324, -2.4639687538146973, 1.835707664489746, 2.4490244388580322, -0.30296120047569275, -0.19636152684688568, -0.13279719650745392, 0.02425607107579708, 0.1639561802148819, -0.1344749927520752, 0.03085937909781933, 1.2346148490905762, -0.1179727166891098, 0.07747801393270493, -0.03422694653272629]} +{"t": 12.1565, "q": [-0.3636949062347412, -0.02652423270046711, 0.016056882217526436, 0.624858558177948, -0.2965497076511383, 0.025706762447953224, -0.34836363792419434, -0.0039116512052714825, 0.003696163184940815, 0.6309689283370972, -0.3332359194755554, 0.009465659968554974, 0.005383542273193598, 0.06262902170419693, -0.0337296724319458, -2.463585138320923, 1.8445639610290527, 2.4481494426727295, -0.30153509974479675, -0.19636152684688568, -0.13266538083553314, 0.024268055334687233, 0.16387230157852173, -0.13448697328567505, 0.03085937909781933, 1.2345908880233765, -0.11793676018714905, 0.07745404541492462, -0.03423893079161644]} +{"t": 12.1733, "q": [-0.36395058035850525, -0.02647309936583042, 0.01615062542259693, 0.6248159408569336, -0.29653722047805786, 0.025699561461806297, -0.3486022651195526, -0.003894606838002801, 0.0037899063900113106, 0.6312160491943359, -0.33321499824523926, 0.009385514073073864, 0.0053701503202319145, 0.06270395219326019, -0.03356542810797691, -2.4625306129455566, 1.8514070510864258, 2.446735382080078, -0.30045652389526367, -0.19638550281524658, -0.13264140486717224, 0.024280039593577385, 0.16380038857460022, -0.1344749927520752, 0.03081144392490387, 1.2345669269561768, -0.11796072870492935, 0.07746603339910507, -0.034202978014945984]} +{"t": 12.19, "q": [-0.3639164865016937, -0.026447534561157227, 0.01615062542259693, 0.6247648000717163, -0.296450138092041, 0.02577950432896614, -0.34886643290519714, -0.0037923413328826427, 0.0037229470908641815, 0.6313012838363647, -0.33321863412857056, 0.009291063994169235, 0.005316582508385181, 0.06277729570865631, -0.03308713436126709, -2.459810256958008, 1.8580702543258667, 2.4430081844329834, -0.29921016097068787, -0.19636152684688568, -0.13266538083553314, 0.02425607107579708, 0.16371649503707886, -0.1344749927520752, 0.030847394838929176, 1.234531044960022, -0.11793676018714905, 0.07743007689714432, -0.034202978014945984]} +{"t": 12.2067, "q": [-0.3638738691806793, -0.02640492282807827, 0.016097059473395348, 0.6246710419654846, -0.2964085042476654, 0.025765184313058853, -0.3491135835647583, -0.003698598127812147, 0.0036024199798703194, 0.6313353776931763, -0.3332469165325165, 0.009211409837007523, 0.005196055397391319, 0.06290211528539658, -0.032351426780223846, -2.456634283065796, 1.8659558296203613, 2.4376392364501953, -0.2970050573348999, -0.19633756577968597, -0.13266538083553314, 0.02424408681690693, 0.16371649503707886, -0.1344989538192749, 0.03082342818379402, 1.2345190048217773, -0.1179247796535492, 0.07744206488132477, -0.03422694653272629]} +{"t": 12.2235, "q": [-0.36376309394836426, -0.026362312957644463, 0.016097059473395348, 0.6246028542518616, -0.2963918149471283, 0.02575080282986164, -0.3493351638317108, -0.0036389431916177273, 0.0035220684949308634, 0.6314375996589661, -0.33333227038383484, 0.009059634990990162, 0.005249623209238052, 0.06285981088876724, -0.031521398574113846, -2.4517807960510254, 1.8737096786499023, 2.433384895324707, -0.29374533891677856, -0.19638550281524658, -0.1327252984046936, 0.024268055334687233, 0.16369253396987915, -0.1344749927520752, 0.030847394838929176, 1.2345070838928223, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 12.2402, "q": [-0.3637886643409729, -0.0262770913541317, 0.016003314405679703, 0.6246028542518616, -0.29636287689208984, 0.02580154687166214, -0.3496163785457611, -0.0035366779193282127, 0.0033077981788665056, 0.6314290761947632, -0.3333640396595001, 0.00885646790266037, 0.0051424880512058735, 0.06294641643762589, -0.030731020495295525, -2.4470229148864746, 1.8817631006240845, 2.4269495010375977, -0.2897665798664093, -0.19638550281524658, -0.1326294243335724, 0.02424408681690693, 0.16362062096595764, -0.13448697328567505, 0.03082342818379402, 1.234471082687378, -0.1179247796535492, 0.07744206488132477, -0.03422694653272629]} +{"t": 12.2572, "q": [-0.3636097013950348, -0.026183348149061203, 0.016003314405679703, 0.6246369481086731, -0.29631713032722473, 0.02580896206200123, -0.34986352920532227, -0.003391801845282316, 0.0031604873947799206, 0.6313949823379517, -0.33340024948120117, 0.008718732744455338, 0.0051424880512058735, 0.06306345760822296, -0.029970824718475342, -2.440347671508789, 1.88957679271698, 2.421496629714966, -0.2858237624168396, -0.19636152684688568, -0.1324496567249298, 0.02425607107579708, 0.16339293122291565, -0.1345229297876358, 0.03081144392490387, 1.2344111204147339, -0.11793676018714905, 0.07743007689714432, -0.03422694653272629]} +{"t": 12.274, "q": [-0.36354151368141174, -0.026123693212866783, 0.01594974845647812, 0.6246966123580933, -0.2962545156478882, 0.025744114071130753, -0.3501192033290863, -0.0033747577108442783, 0.0029060414526611567, 0.6314290761947632, -0.33351826667785645, 0.00853822287172079, 0.005155880004167557, 0.06301246583461761, -0.02899996004998684, -2.432569980621338, 1.897222638130188, 2.4159598350524902, -0.28189295530319214, -0.19632558524608612, -0.13248561322689056, 0.02424408681690693, 0.16321316361427307, -0.13451094925403595, 0.030835412442684174, 1.2343871593475342, -0.11796072870492935, 0.07745404541492462, -0.03423893079161644]} +{"t": 12.2907, "q": [-0.36348187923431396, -0.02609812654554844, 0.01593635603785515, 0.6246795654296875, -0.29622548818588257, 0.025765908882021904, -0.3502214550971985, -0.003272492438554764, 0.0027855143416672945, 0.6314375996589661, -0.3335375487804413, 0.008298568427562714, 0.005075528286397457, 0.06293100863695145, -0.02798917144536972, -2.4260506629943848, 1.904293417930603, 2.408961057662964, -0.2787650525569916, -0.19633756577968597, -0.13222195208072662, 0.02425607107579708, 0.16309332847595215, -0.13451094925403595, 0.030895331874489784, 1.2343991994857788, -0.11793676018714905, 0.07745404541492462, -0.034214962273836136]} +{"t": 12.3076, "q": [-0.3630557656288147, -0.02605551667511463, 0.01597653143107891, 0.6246369481086731, -0.2962213456630707, 0.02577315829694271, -0.3502214550971985, -0.0032469260040670633, 0.002718554809689522, 0.6314546465873718, -0.3335251212120056, 0.008276647888123989, 0.004767514765262604, 0.06297914683818817, -0.02714475616812706, -2.420501947402954, 1.9104293584823608, 2.4015069007873535, -0.2770393490791321, -0.19636152684688568, -0.13194632530212402, 0.02419615164399147, 0.16287760436534882, -0.1344749927520752, 0.03087136335670948, 1.2344231605529785, -0.1179487481713295, 0.07745404541492462, -0.03423893079161644]} +{"t": 12.3243, "q": [-0.36280861496925354, -0.026072561740875244, 0.01612384244799614, 0.6246199011802673, -0.29620471596717834, 0.025773242115974426, -0.3501703143119812, -0.003204315435141325, 0.002718554809689522, 0.6316165924072266, -0.3334921598434448, 0.008247257210314274, 0.004325582180172205, 0.06300298869609833, -0.02608020231127739, -2.415228843688965, 1.9168528318405151, 2.3944602012634277, -0.2760685980319977, -0.19631358981132507, -0.1317785382270813, 0.024100277572870255, 0.16263791918754578, -0.13453491032123566, 0.03085937909781933, 1.2343991994857788, -0.1179247796535492, 0.07744206488132477, -0.03425091505050659]} +{"t": 12.3411, "q": [-0.3624165952205658, -0.026081083342432976, 0.0163247212767601, 0.6245006322860718, -0.2962172031402588, 0.025780407711863518, -0.3499317169189453, -0.003195793367922306, 0.0027721223887056112, 0.6319233775138855, -0.33343422412872314, 0.008144945837557316, 0.003696163184940815, 0.06305714696645737, -0.02501722238957882, -2.4100637435913086, 1.9239715337753296, 2.389223098754883, -0.27522972226142883, -0.19633756577968597, -0.1318025141954422, 0.02407630905508995, 0.1621825248003006, -0.13448697328567505, 0.03081144392490387, 1.2343871593475342, -0.11793676018714905, 0.07745404541492462, -0.03423893079161644]} +{"t": 12.358, "q": [-0.362169474363327, -0.026072561740875244, 0.016498815268278122, 0.6243557333946228, -0.29622557759284973, 0.02579485811293125, -0.3498038649559021, -0.003204315435141325, 0.0027989062946289778, 0.6320256590843201, -0.3334340751171112, 0.008115846663713455, 0.0029997846577316523, 0.06324067711830139, -0.024100996553897858, -2.4057013988494873, 1.9320008754730225, 2.385483980178833, -0.2742350399494171, -0.19632558524608612, -0.1318025141954422, 0.02407630905508995, 0.16143949329853058, -0.13455888628959656, 0.030847394838929176, 1.2343631982803345, -0.1179247796535492, 0.07744206488132477, -0.03422694653272629]} +{"t": 12.3747, "q": [-0.36188822984695435, -0.026064038276672363, 0.016565775498747826, 0.6240745186805725, -0.29622966051101685, 0.025773124769330025, -0.3497101366519928, -0.003144660498946905, 0.0027855143416672945, 0.6321108937263489, -0.3334829807281494, 0.008058212697505951, 0.0021962709724903107, 0.06353648006916046, -0.023018386214971542, -2.4022018909454346, 1.9419478178024292, 2.3810858726501465, -0.27325230836868286, -0.19630160927772522, -0.1315268725156784, 0.024100277572870255, 0.16002535820007324, -0.1345229297876358, 0.03085937909781933, 1.2344111204147339, -0.1179727166891098, 0.07749000191688538, -0.034202978014945984]} +{"t": 12.3915, "q": [-0.3613087236881256, -0.02591916359961033, 0.01678004488348961, 0.6234439015388489, -0.29622551798820496, 0.02578037418425083, -0.34964194893836975, -0.0029060414526611567, 0.002959609031677246, 0.6320938467979431, -0.333629310131073, 0.007798047736287117, 0.0008838651119731367, 0.06386707723140717, -0.021504411473870277, -2.3986785411834717, 1.9531171321868896, 2.377610445022583, -0.2731204926967621, -0.19631358981132507, -0.1314549595117569, 0.024052340537309647, 0.15811987221240997, -0.13448697328567505, 0.03082342818379402, 1.2343991994857788, -0.11796072870492935, 0.07745404541492462, -0.03423893079161644]} +{"t": 12.4082, "q": [-0.36026903986930847, -0.02568054385483265, 0.017355896532535553, 0.6226342916488647, -0.29622963070869446, 0.025758659467101097, -0.3495822846889496, -0.0025566346012055874, 0.0034149333368986845, 0.6320427060127258, -0.3337065577507019, 0.0076607223600149155, -0.0003481892927084118, 0.06407585740089417, -0.019918398931622505, -2.397444248199463, 1.96468186378479, 2.3754892349243164, -0.27322834730148315, -0.19630160927772522, -0.13146695494651794, 0.02400440350174904, 0.1567416787147522, -0.1344749927520752, 0.030847394838929176, 1.234531044960022, -0.1179487481713295, 0.07750198245048523, -0.03423893079161644]} +{"t": 12.4249, "q": [-0.3594253361225128, -0.02538226917386055, 0.017690693959593773, 0.6220547556877136, -0.2962295114994049, 0.025729728862643242, -0.34909653663635254, -0.0021646174136549234, 0.0037229470908641815, 0.6318807601928711, -0.3337915241718292, 0.007436272222548723, -0.0011784868547692895, 0.06406576931476593, -0.01847785897552967, -2.397588014602661, 1.9762825965881348, 2.3739430904388428, -0.2733481824398041, -0.19632558524608612, -0.1315028965473175, 0.02401638776063919, 0.15590278804302216, -0.13439109921455383, 0.03085937909781933, 1.2345550060272217, -0.1179487481713295, 0.07747801393270493, -0.03419099375605583]} +{"t": 12.4417, "q": [-0.3583345115184784, -0.025126606225967407, 0.01778443716466427, 0.62142413854599, -0.29623356461524963, 0.025693530216813087, -0.34844884276390076, -0.0019089538836851716, 0.003696163184940815, 0.6316933035850525, -0.3339623808860779, 0.0071618035435676575, -0.0018212978029623628, 0.06362058967351913, -0.01754714362323284, -2.3982112407684326, 1.9870444536209106, 2.373403787612915, -0.27343207597732544, -0.19631358981132507, -0.13158679008483887, 0.024040356278419495, 0.15525563061237335, -0.13433118164539337, 0.030907316133379936, 1.2346148490905762, -0.1179487481713295, 0.07747801393270493, -0.03422694653272629]} +{"t": 12.4585, "q": [-0.3575930893421173, -0.025066951289772987, 0.017730869352817535, 0.6207594275474548, -0.2962251305580139, 0.025664614513516426, -0.3477756083011627, -0.0018578211311250925, 0.003696163184940815, 0.6315398812294006, -0.33415356278419495, 0.0068512288853526115, -0.002356973709538579, 0.06311134248971939, -0.017183322459459305, -2.3987746238708496, 1.9973868131637573, 2.373068332672119, -0.27348002791404724, -0.19630160927772522, -0.13167068362236023, 0.024040356278419495, 0.1546204686164856, -0.1341514140367508, 0.031027158722281456, 1.23469877243042, -0.1179487481713295, 0.07751397043466568, -0.03422694653272629]} +{"t": 12.4752, "q": [-0.356681227684021, -0.024981729686260223, 0.017677301540970802, 0.6199924349784851, -0.2961875796318054, 0.02562861703336239, -0.3468296527862549, -0.0017811221769079566, 0.003669379511848092, 0.63113933801651, -0.33423900604248047, 0.006713985465466976, -0.0027051628567278385, 0.06282257288694382, -0.016988618299365044, -2.3997092247009277, 2.0093350410461426, 2.372912645339966, -0.2740193009376526, -0.19630160927772522, -0.1318264752626419, 0.024040356278419495, 0.1537695974111557, -0.13407951593399048, 0.030979221686720848, 1.23469877243042, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 12.492, "q": [-0.3557693660259247, -0.02495616301894188, 0.017704086378216743, 0.6190890669822693, -0.296137273311615, 0.02551303617656231, -0.34584107995033264, -0.0017896442441269755, 0.003669379511848092, 0.6307132244110107, -0.3343329131603241, 0.006634967867285013, -0.0029194331727921963, 0.06270118802785873, -0.01693580113351345, -2.400404453277588, 2.0231528282165527, 2.3729004859924316, -0.27387550473213196, -0.19626565277576447, -0.13183845579624176, 0.02401638776063919, 0.15269100666046143, -0.1341274529695511, 0.030979221686720848, 1.23469877243042, -0.11798469722270966, 0.07747801393270493, -0.03423893079161644]} +{"t": 12.5089, "q": [-0.3547126054763794, -0.02495616301894188, 0.017851397395133972, 0.6181687116622925, -0.2960745096206665, 0.025404755026102066, -0.3443070948123932, -0.0018066884949803352, 0.0037497307639569044, 0.6303723454475403, -0.33435723185539246, 0.0065770698711276054, -0.0029997846577316523, 0.06267072260379791, -0.016905583441257477, -2.401111364364624, 2.0372703075408936, 2.372828722000122, -0.2737196981906891, -0.19630160927772522, -0.1318025141954422, 0.024028372019529343, 0.1516004502773285, -0.1341993510723114, 0.030991205945611, 1.2347227334976196, -0.1179966852068901, 0.07747801393270493, -0.03422694653272629]} +{"t": 12.5257, "q": [-0.3540734648704529, -0.024922074750065804, 0.017904965206980705, 0.6170011758804321, -0.29608264565467834, 0.02534686028957367, -0.34235554933547974, -0.0018322548130527139, 0.0038970415480434895, 0.6297587752342224, -0.3345491886138916, 0.006411845795810223, -0.0034149333368986845, 0.06261000037193298, -0.016874315217137337, -2.4019863605499268, 2.053520917892456, 2.372804641723633, -0.2736957371234894, -0.19630160927772522, -0.1317785382270813, 0.024052340537309647, 0.14999456703662872, -0.134247288107872, 0.031003190204501152, 1.2347826957702637, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 12.5425, "q": [-0.35256505012512207, -0.024862419813871384, 0.017690693959593773, 0.6159018278121948, -0.2961157560348511, 0.0253033135086298, -0.3404977321624756, -0.0018578211311250925, 0.00388364982791245, 0.6286253333091736, -0.33483171463012695, 0.006320179905742407, -0.004874649923294783, 0.06246718764305115, -0.017000528052449226, -2.40211820602417, 2.0697834491729736, 2.3726367950439453, -0.272641122341156, -0.19633756577968597, -0.13149091601371765, 0.024052340537309647, 0.14818494021892548, -0.1342712640762329, 0.031027158722281456, 1.2350223064422607, -0.1179966852068901, 0.07750198245048523, -0.03422694653272629]} +{"t": 12.5592, "q": [-0.3500424921512604, -0.024743109941482544, 0.01765051856637001, 0.6148620843887329, -0.2961696982383728, 0.025266917422413826, -0.33886146545410156, -0.0018748653819784522, 0.003803298342972994, 0.6276196837425232, -0.33513304591178894, 0.005887121427804232, -0.006655772216618061, 0.06224885955452919, -0.01714354194700718, -2.402022123336792, 2.084739923477173, 2.3723254203796387, -0.27175429463386536, -0.19630160927772522, -0.1311313956975937, 0.024052340537309647, 0.14614762365818024, -0.13421133160591125, 0.030979221686720848, 1.235058307647705, -0.1179727166891098, 0.07747801393270493, -0.03423893079161644]} +{"t": 12.5759, "q": [-0.34844884276390076, -0.024615278467535973, 0.017596950754523277, 0.6141632795333862, -0.29618629813194275, 0.025252368301153183, -0.3382478952407837, -0.0018492990639060736, 0.0037497307639569044, 0.6269038319587708, -0.3352598547935486, 0.005822980776429176, -0.008155664429068565, 0.061865951865911484, -0.01754320226609707, -2.4019503593444824, 2.1006429195404053, 2.3717620372772217, -0.2717662751674652, -0.19631358981132507, -0.1311553567647934, 0.024052340537309647, 0.14414626359939575, -0.13421133160591125, 0.031003190204501152, 1.2350223064422607, -0.1179487481713295, 0.07746603339910507, -0.03425091505050659]} +{"t": 12.5926, "q": [-0.34864485263824463, -0.024444837123155594, 0.017583558335900307, 0.6138564944267273, -0.2961905896663666, 0.025288552045822144, -0.3381200432777405, -0.0017214673571288586, 0.003816690295934677, 0.626349925994873, -0.33529651165008545, 0.005772489123046398, -0.009387718513607979, 0.06176859885454178, -0.017680715769529343, -2.4018545150756836, 2.1166417598724365, 2.371210813522339, -0.2718501687049866, -0.19630160927772522, -0.1311313956975937, 0.024040356278419495, 0.14213290810585022, -0.13425926864147186, 0.031039142981171608, 1.2348664999008179, -0.11796072870492935, 0.07741809636354446, -0.03425091505050659]} +{"t": 12.6094, "q": [-0.34857669472694397, -0.024325527250766754, 0.01746303215622902, 0.6138564944267273, -0.2961905896663666, 0.025288552045822144, -0.33821380138397217, -0.0016618125373497605, 0.003669379511848092, 0.6259579062461853, -0.33528822660446167, 0.005757857579737902, -0.010124272666871548, 0.06171581521630287, -0.017703169956803322, -2.4018664360046387, 2.131742000579834, 2.370515823364258, -0.2719939649105072, -0.19626565277576447, -0.13114337623119354, 0.02401638776063919, 0.1403113156557083, -0.13430720567703247, 0.031039142981171608, 1.2348545789718628, -0.11793676018714905, 0.07744206488132477, -0.03423893079161644]} +{"t": 12.6261, "q": [-0.3485170304775238, -0.024257350713014603, 0.01711484231054783, 0.6139587759971619, -0.2961573600769043, 0.025303130969405174, -0.33831605315208435, -0.0016703346045687795, 0.0031470954418182373, 0.6254465579986572, -0.3352552652359009, 0.005728467367589474, -0.010231408290565014, 0.06139165163040161, -0.017862172797322273, -2.402453660964966, 2.1466143131256104, 2.3701202869415283, -0.272041916847229, -0.1962776482105255, -0.1311313956975937, 0.023932497948408127, 0.13917280733585358, -0.13433118164539337, 0.031015174463391304, 1.2348785400390625, -0.11796072870492935, 0.07746603339910507, -0.034214962273836136]} +{"t": 12.6429, "q": [-0.34822729229927063, -0.024282917380332947, 0.016672909259796143, 0.6139843463897705, -0.2961075007915497, 0.025317812338471413, -0.33827343583106995, -0.0017725999932736158, 0.0024908925406634808, 0.6246284246444702, -0.33506259322166443, 0.005748340394347906, -0.009642165154218674, 0.06103038415312767, -0.01815176196396351, -2.406120777130127, 2.160935640335083, 2.3709232807159424, -0.27207785844802856, -0.1962776482105255, -0.1311793327331543, 0.023980434983968735, 0.13883724808692932, -0.1344030797481537, 0.031039142981171608, 1.235154151916504, -0.11796072870492935, 0.07752595096826553, -0.03423893079161644]} +{"t": 12.6596, "q": [-0.3481846749782562, -0.024376660585403442, 0.016405072063207626, 0.6141206622123718, -0.29609930515289307, 0.025361260399222374, -0.33826491236686707, -0.0019856528379023075, 0.002022176282480359, 0.624108612537384, -0.33496931195259094, 0.005958177149295807, -0.008825259283185005, 0.060797493904829025, -0.018401704728603363, -2.41113018989563, 2.1732912063598633, 2.370983123779297, -0.2718381881713867, -0.19630160927772522, -0.13119131326675415, 0.023980434983968735, 0.13827398419380188, -0.1344510167837143, 0.03105112724006176, 1.235226035118103, -0.1179727166891098, 0.07749000191688538, -0.034262899309396744]} +{"t": 12.6763, "q": [-0.348201721906662, -0.024495968595147133, 0.01645863987505436, 0.6142655611038208, -0.29609110951423645, 0.025390224531292915, -0.3382564187049866, -0.0021134845446795225, 0.0020757438614964485, 0.6237080693244934, -0.3348146378993988, 0.006189196836203337, -0.00798156950622797, 0.06081334128975868, -0.01850922778248787, -2.417973279953003, 2.1858267784118652, 2.36962890625, -0.27145469188690186, -0.19631358981132507, -0.1309276670217514, 0.023920513689517975, 0.1371714472770691, -0.1344749927520752, 0.031087080016732216, 1.2352020740509033, -0.1179727166891098, 0.07747801393270493, -0.034262899309396744]} +{"t": 12.693, "q": [-0.3481591045856476, -0.024674933403730392, 0.016538990661501884, 0.6142911314964294, -0.29608288407325745, 0.025419188663363457, -0.3382564187049866, -0.0022413162514567375, 0.0021828790195286274, 0.6234183311462402, -0.33469247817993164, 0.00636238232254982, -0.007124488707631826, 0.06098072975873947, -0.018651200458407402, -2.424804210662842, 2.197295665740967, 2.369508981704712, -0.27090340852737427, -0.1962776482105255, -0.13086773455142975, 0.023860592395067215, 0.13570936024188995, -0.1344510167837143, 0.031075095757842064, 1.2352020740509033, -0.11798469722270966, 0.07750198245048523, -0.03423893079161644]} +{"t": 12.7098, "q": [-0.34816762804985046, -0.0250158179551363, 0.01664612628519535, 0.6142996549606323, -0.29609963297843933, 0.025448070839047432, -0.3382478952407837, -0.002454369328916073, 0.002504284493625164, 0.6233842372894287, -0.3346313536167145, 0.0064417277462780476, -0.006602204404771328, 0.06097498908638954, -0.018928702920675278, -2.4321985244750977, 2.208608865737915, 2.370300054550171, -0.27041205763816833, -0.19630160927772522, -0.1308557540178299, 0.023872576653957367, 0.1339476853609085, -0.1344510167837143, 0.031087080016732216, 1.2351301908493042, -0.11798469722270966, 0.07751397043466568, -0.03422694653272629]} +{"t": 12.7266, "q": [-0.34809091687202454, -0.025237392634153366, 0.016713086515665054, 0.6145212054252625, -0.2961038649082184, 0.02546975202858448, -0.33804336190223694, -0.002522546099498868, 0.0027453387156128883, 0.6233075261116028, -0.33454200625419617, 0.006615258753299713, -0.006602204404771328, 0.06114236265420914, -0.019070925191044807, -2.4405994415283203, 2.218867301940918, 2.3706235885620117, -0.26956117153167725, -0.1962536722421646, -0.1308078169822693, 0.023860592395067215, 0.13229386508464813, -0.1344270557165146, 0.031087080016732216, 1.2350702285766602, -0.11793676018714905, 0.07751397043466568, -0.03423893079161644]} +{"t": 12.7433, "q": [-0.3480738699436188, -0.025424880906939507, 0.016927355900406837, 0.6147257685661316, -0.29609987139701843, 0.025520415976643562, -0.3378388285636902, -0.002573678968474269, 0.003093527862802148, 0.6233416199684143, -0.3345298171043396, 0.006636932957917452, -0.006615596357733011, 0.061180680990219116, -0.019145334139466286, -2.4506423473358154, 2.229029893875122, 2.3708033561706543, -0.2686983048915863, -0.1962536722421646, -0.13072392344474792, 0.023848608136177063, 0.13098758459091187, -0.1344270557165146, 0.031075095757842064, 1.2351422309875488, -0.11796072870492935, 0.07752595096826553, -0.03425091505050659]} +{"t": 12.7601, "q": [-0.3479801416397095, -0.025612367317080498, 0.01699431613087654, 0.6147598624229431, -0.2961123585700989, 0.02552761882543564, -0.33735305070877075, -0.002582201035693288, 0.003361365757882595, 0.6233416199684143, -0.3344113528728485, 0.006730236578732729, -0.0065620290115475655, 0.061173275113105774, -0.019169436767697334, -2.4635612964630127, 2.238845109939575, 2.37076735496521, -0.26729616522789, -0.1962536722421646, -0.13044829666614532, 0.023812655359506607, 0.13017265498638153, -0.13451094925403595, 0.031075095757842064, 1.235214114189148, -0.1179966852068901, 0.07751397043466568, -0.03428686782717705]} +{"t": 12.7769, "q": [-0.34784379601478577, -0.02568906545639038, 0.0169675312936306, 0.6150069832801819, -0.29610827565193176, 0.025549333542585373, -0.3363815248012543, -0.0025651566684246063, 0.003347973804920912, 0.6233927607536316, -0.33436256647109985, 0.006816952023655176, -0.006481677293777466, 0.06102275475859642, -0.01929088495671749, -2.4756293296813965, 2.2466588020324707, 2.371126890182495, -0.26679283380508423, -0.1962536722421646, -0.13024455308914185, 0.02382463961839676, 0.12974122166633606, -0.1344270557165146, 0.03105112724006176, 1.2354058027267456, -0.11798469722270966, 0.07754991948604584, -0.034274883568286896]} +{"t": 12.7936, "q": [-0.3477756083011627, -0.025595322251319885, 0.01661934331059456, 0.6156631708145142, -0.29610827565193176, 0.025549333542585373, -0.33625370264053345, -0.0025651566684246063, 0.002624811604619026, 0.6238018274307251, -0.3343500792980194, 0.006780500523746014, -0.006334366742521524, 0.06030557304620743, -0.01952407695353031, -2.490370035171509, 2.246586799621582, 2.371210813522339, -0.2678234577178955, -0.19621771574020386, -0.13052019476890564, 0.023728765547275543, 0.1297292411327362, -0.13425926864147186, 0.03111104853451252, 1.2359211444854736, -0.11793676018714905, 0.07758587598800659, -0.034274883568286896]} +{"t": 12.8103, "q": [-0.3477329909801483, -0.025552712380886078, 0.016164017841219902, 0.6155949831008911, -0.29609155654907227, 0.02552044950425625, -0.33533331751823425, -0.0025481125339865685, 0.002129311440512538, 0.6233927607536316, -0.334190309047699, 0.006815250497311354, -0.006106704473495483, 0.05995890498161316, -0.01973618008196354, -2.504103899002075, 2.2465388774871826, 2.371354579925537, -0.2682429254055023, -0.1961577981710434, -0.13077186048030853, 0.02340519241988659, 0.12953749299049377, -0.13425926864147186, 0.03111104853451252, 1.237095594406128, -0.11796072870492935, 0.07762182503938675, -0.03431083634495735]} +{"t": 12.827, "q": [-0.34703418612480164, -0.025544188916683197, 0.016164017841219902, 0.6157057881355286, -0.29609981179237366, 0.025505950674414635, -0.3345237076282501, -0.0025481125339865685, 0.002022176282480359, 0.6235035061836243, -0.3341945707798004, 0.00685162004083395, -0.0059995693154633045, 0.0598905012011528, -0.019690008834004402, -2.5174663066864014, 2.2466228008270264, 2.373164176940918, -0.26666098833084106, -0.1961817741394043, -0.13031646609306335, 0.023429160937666893, 0.12899820506572723, -0.13433118164539337, 0.031099064275622368, 1.2376708984375, -0.11796072870492935, 0.07764579355716705, -0.034274883568286896]} +{"t": 12.8438, "q": [-0.3469148874282837, -0.02556975558400154, 0.016204193234443665, 0.6156546473503113, -0.2961081862449646, 0.025520384311676025, -0.333109050989151, -0.0025651566684246063, 0.0020623519085347652, 0.6234012842178345, -0.334214985370636, 0.0068300277926027775, -0.005972785409539938, 0.05993592366576195, -0.019691526889801025, -2.5315358638763428, 2.246574878692627, 2.374770164489746, -0.26421621441841125, -0.1961817741394043, -0.13010074198246002, 0.02340519241988659, 0.1281832754611969, -0.13443903625011444, 0.031075095757842064, 1.2387014627456665, -0.1179487481713295, 0.07766976207494736, -0.034274883568286896]} +{"t": 12.8605, "q": [-0.34665921330451965, -0.025654977187514305, 0.016498815268278122, 0.6153308153152466, -0.2961622178554535, 0.0255129374563694, -0.33226534724235535, -0.0026674221735447645, 0.0024908925406634808, 0.6233416199684143, -0.3343139588832855, 0.006932766642421484, -0.005879042204469442, 0.06012604758143425, -0.01983928680419922, -2.54559326171875, 2.246598720550537, 2.375321388244629, -0.26246652007102966, -0.1961817741394043, -0.12964534759521484, 0.023381223902106285, 0.12773986160755157, -0.13441507518291473, 0.031123032793402672, 1.2396363019943237, -0.1179966852068901, 0.07768175005912781, -0.034274883568286896]} +{"t": 12.8772, "q": [-0.34588369727134705, -0.025646455585956573, 0.016512207686901093, 0.6154501438140869, -0.29625391960144043, 0.025570454075932503, -0.3315580189228058, -0.002718554809689522, 0.0024908925406634808, 0.623367190361023, -0.3343837261199951, 0.006940728519111872, -0.00579869095236063, 0.060567937791347504, -0.020312415435910225, -2.5581767559051514, 2.246598720550537, 2.3766636848449707, -0.2617594599723816, -0.1961817741394043, -0.12957344949245453, 0.023381223902106285, 0.12734438478946686, -0.1344510167837143, 0.031099064275622368, 1.2403912544250488, -0.1179727166891098, 0.07774166762828827, -0.034322820603847504]} +{"t": 12.8939, "q": [-0.34555986523628235, -0.02568054385483265, 0.01647203229367733, 0.6154757142066956, -0.29625803232192993, 0.025548739358782768, -0.33133643865585327, -0.002778209513053298, 0.0024775005877017975, 0.6234268546104431, -0.3344041407108307, 0.006919117644429207, -0.0058388663455843925, 0.06096465140581131, -0.020823046565055847, -2.571730852127075, 2.2466228008270264, 2.3782455921173096, -0.2611842155456543, -0.19619375467300415, -0.12953749299049377, 0.023393208160996437, 0.1267092078924179, -0.1344749927520752, 0.031075095757842064, 1.241493821144104, -0.11798469722270966, 0.07776563614606857, -0.034394726157188416]} +{"t": 12.9107, "q": [-0.3456194996833801, -0.02568906545639038, 0.016431856900453568, 0.6157569289207458, -0.29625388979911804, 0.025555988773703575, -0.33135348558425903, -0.0027952538803219795, 0.002464108867570758, 0.6235546469688416, -0.33437949419021606, 0.006918872240930796, -0.005812082905322313, 0.06130068376660347, -0.021302059292793274, -2.5852251052856445, 2.246598720550537, 2.3798274993896484, -0.2605370581150055, -0.1961577981710434, -0.12944161891937256, 0.02328534983098507, 0.12630175054073334, -0.13448697328567505, 0.031039142981171608, 1.2425484657287598, -0.1179487481713295, 0.07777762413024902, -0.03446663171052933]} +{"t": 12.9275, "q": [-0.34561097621917725, -0.025672022253274918, 0.016391679644584656, 0.6160381436347961, -0.2962622046470642, 0.025555957108736038, -0.33143872022628784, -0.00282082031480968, 0.002464108867570758, 0.6238614320755005, -0.33439192175865173, 0.006940810475498438, -0.00575851509347558, 0.06143913045525551, -0.0216581579297781, -2.5983479022979736, 2.246574878692627, 2.381025791168213, -0.26017752289772034, -0.1961817741394043, -0.12944161891937256, 0.02328534983098507, 0.1261100023984909, -0.13451094925403595, 0.031075095757842064, 1.24366295337677, -0.1179487481713295, 0.07781357318162918, -0.03449060022830963]} +{"t": 12.9442, "q": [-0.3456876873970032, -0.025654977187514305, 0.016217585653066635, 0.616259753704071, -0.29628297686576843, 0.025548623874783516, -0.33175402879714966, -0.0028122980147600174, 0.0024373249616473913, 0.6239722371101379, -0.3344084918498993, 0.0069700367748737335, -0.005651379935443401, 0.06154122203588486, -0.022252094000577927, -2.6119019985198975, 2.2466347217559814, 2.3817570209503174, -0.25955435633659363, -0.19619375467300415, -0.1294056624174118, 0.02329733408987522, 0.12602610886096954, -0.13453491032123566, 0.031027158722281456, 1.244981288909912, -0.11796072870492935, 0.07783754169940948, -0.03446663171052933]} +{"t": 12.9609, "q": [-0.3456876873970032, -0.025637932121753693, 0.016177410259842873, 0.6163023710250854, -0.2962995171546936, 0.02551962621510029, -0.3319244682788849, -0.002829342382028699, 0.002423933008685708, 0.6240489482879639, -0.3344578742980957, 0.006999591365456581, -0.005557636730372906, 0.06165087968111038, -0.022831032052636147, -2.624605178833008, 2.2466228008270264, 2.381924629211426, -0.2592187821865082, -0.1961817741394043, -0.12932176887989044, 0.023249397054314613, 0.12605008482933044, -0.1344749927520752, 0.031099064275622368, 1.24589204788208, -0.11798469722270966, 0.07786151021718979, -0.034454647451639175]} +{"t": 12.9776, "q": [-0.34574735164642334, -0.025595322251319885, 0.01611045002937317, 0.6164727807044983, -0.2962954342365265, 0.025541340932250023, -0.33226534724235535, -0.00282082031480968, 0.0024775005877017975, 0.6242108941078186, -0.33447426557540894, 0.006999772973358631, -0.005745123140513897, 0.06172185018658638, -0.023277005180716515, -2.6365416049957275, 2.2466228008270264, 2.3822243213653564, -0.25897911190986633, -0.1961817741394043, -0.1293337643146515, 0.023261381313204765, 0.12605008482933044, -0.13446301221847534, 0.031039142981171608, 1.2461557388305664, -0.11793676018714905, 0.07789746671915054, -0.03443067893385887]} +{"t": 12.9946, "q": [-0.3458496034145355, -0.025527145713567734, 0.016083667054772377, 0.6168477535247803, -0.2963036000728607, 0.025497911497950554, -0.33249545097351074, -0.002752643311396241, 0.0025176764465868473, 0.6244068741798401, -0.33452773094177246, 0.007022102363407612, -0.006146880332380533, 0.06192800775170326, -0.023561934009194374, -2.6469438076019287, 2.246598720550537, 2.382200241088867, -0.2587634027004242, -0.19621771574020386, -0.1293097883462906, 0.023249397054314613, 0.12596619129180908, -0.13451094925403595, 0.031063111498951912, 1.246335506439209, -0.11793676018714905, 0.0779094472527504, -0.034394726157188416]} +{"t": 13.0113, "q": [-0.3459092676639557, -0.02551010064780712, 0.016070274636149406, 0.6171971559524536, -0.2963077127933502, 0.025490662083029747, -0.3331516683101654, -0.0026674221735447645, 0.0026783791836351156, 0.6248074173927307, -0.33458492159843445, 0.006979063153266907, -0.006294190883636475, 0.062057968229055405, -0.02376646175980568, -2.6593356132507324, 2.246574878692627, 2.3819127082824707, -0.2581881582736969, -0.1961577981710434, -0.12924987077713013, 0.02316550724208355, 0.12596619129180908, -0.13448697328567505, 0.03105112724006176, 1.2463953495025635, -0.1179727166891098, 0.07792143523693085, -0.034394726157188416]} +{"t": 13.028, "q": [-0.3460797071456909, -0.025493057444691658, 0.016003314405679703, 0.617682933807373, -0.2963244616985321, 0.02551954612135887, -0.3337141275405884, -0.002701510675251484, 0.002758730435743928, 0.6253783702850342, -0.3346712589263916, 0.007016269490122795, -0.006655772216618061, 0.06204379349946976, -0.023922184482216835, -2.6692583560943604, 2.246598720550537, 2.38196063041687, -0.2579364776611328, -0.1961817741394043, -0.12926185131072998, 0.023189475759863853, 0.12602610886096954, -0.1345229297876358, 0.031027158722281456, 1.2465392351150513, -0.1179727166891098, 0.07792143523693085, -0.03440671041607857]} +{"t": 13.045, "q": [-0.34625014662742615, -0.0254504457116127, 0.015922963619232178, 0.6183987855911255, -0.2963285744190216, 0.025497812777757645, -0.33455780148506165, -0.002701510675251484, 0.0027051628567278385, 0.6259408593177795, -0.33477818965911865, 0.007075477857142687, -0.006910218391567469, 0.06212763860821724, -0.024017896503210068, -2.679588794708252, 2.246598720550537, 2.3820085525512695, -0.25715750455856323, -0.1961577981710434, -0.12922589480876923, 0.02316550724208355, 0.1260620653629303, -0.13448697328567505, 0.031027158722281456, 1.2466470003128052, -0.11793676018714905, 0.0779094472527504, -0.034394726157188416]} +{"t": 13.0619, "q": [-0.3469489514827728, -0.02544192411005497, 0.016056882217526436, 0.6191231608390808, -0.29637831449508667, 0.02545420080423355, -0.33761724829673767, -0.0026759442407637835, 0.0029194331727921963, 0.6269890666007996, -0.33499571681022644, 0.007099444977939129, -0.00705752894282341, 0.06222166493535042, -0.024548642337322235, -2.6914172172546387, 2.246574878692627, 2.3818886280059814, -0.2556115388870239, -0.1961577981710434, -0.12921391427516937, 0.02316550724208355, 0.1260620653629303, -0.1344749927520752, 0.031099064275622368, 1.2467788457870483, -0.1179487481713295, 0.07792143523693085, -0.03440671041607857]} +{"t": 13.0786, "q": [-0.3487130403518677, -0.02551010064780712, 0.01647203229367733, 0.6202821731567383, -0.296312153339386, 0.025570224970579147, -0.3394068777561188, -0.0026759442407637835, 0.0036024199798703194, 0.6286764740943909, -0.3349485993385315, 0.006713784299790859, -0.006977177690714598, 0.0621512345969677, -0.02542532980442047, -2.7008249759674072, 2.246598720550537, 2.381852865219116, -0.25425732135772705, -0.1961817741394043, -0.12920193374156952, 0.02316550724208355, 0.12599016726016998, -0.13455888628959656, 0.03105112724006176, 1.2469106912612915, -0.11796072870492935, 0.07792143523693085, -0.034382741898298264]} +{"t": 13.0953, "q": [-0.3497186601161957, -0.025365225970745087, 0.016391679644584656, 0.6222848892211914, -0.29641208052635193, 0.025598779320716858, -0.3400460481643677, -0.0025481125339865685, 0.0034551091957837343, 0.6302189826965332, -0.3351617753505707, 0.00668685045093298, -0.007338759023696184, 0.062256526201963425, -0.02531176619231701, -2.709022045135498, 2.246574878692627, 2.3817689418792725, -0.2536221444606781, -0.19616977870464325, -0.12922589480876923, 0.0231774915009737, 0.12549880146980286, -0.1345468908548355, 0.031039142981171608, 1.2468388080596924, -0.11796072870492935, 0.0779094472527504, -0.03437075763940811]} +{"t": 13.1121, "q": [-0.3511674106121063, -0.0253140926361084, 0.016391679644584656, 0.6234524250030518, -0.29648301005363464, 0.025663593783974648, -0.3420061469078064, -0.002522546099498868, 0.0034551091957837343, 0.6317103505134583, -0.33550912141799927, 0.006435939110815525, -0.00772712379693985, 0.06224892660975456, -0.025306619703769684, -2.716320514678955, 2.2465507984161377, 2.3817689418792725, -0.25218406319618225, -0.19619375467300415, -0.12920193374156952, 0.0231774915009737, 0.1252351552248001, -0.1344989538192749, 0.031147001311182976, 1.246862769126892, -0.1179727166891098, 0.07789746671915054, -0.03437075763940811]} +{"t": 13.1288, "q": [-0.3525905907154083, -0.02527148276567459, 0.01629793643951416, 0.6246539950370789, -0.29647883772850037, 0.025656377896666527, -0.3420998752117157, -0.00250550196506083, 0.0032944062259048223, 0.6325880885124207, -0.3355827331542969, 0.006393081974238157, -0.008182448334991932, 0.0622413232922554, -0.02530146948993206, -2.723726749420166, 2.246586799621582, 2.3816850185394287, -0.25109347701072693, -0.19616977870464325, -0.1291539967060089, 0.023189475759863853, 0.12517523765563965, -0.13455888628959656, 0.031099064275622368, 1.246862769126892, -0.1179966852068901, 0.07789746671915054, -0.03434678912162781]} +{"t": 13.1455, "q": [-0.353920042514801, -0.025160694494843483, 0.01594974845647812, 0.6257789134979248, -0.29648301005363464, 0.025663593783974648, -0.3421339690685272, -0.002369148191064596, 0.0029060414526611567, 0.6330397725105286, -0.3355744779109955, 0.006378468591719866, -0.008436894044280052, 0.06225647032260895, -0.025301996618509293, -2.7315523624420166, 2.246574878692627, 2.380786180496216, -0.25026658177375793, -0.1961817741394043, -0.1290581226348877, 0.02311757020652294, 0.12515126168727875, -0.13453491032123566, 0.031087080016732216, 1.2468867301940918, -0.11793676018714905, 0.07789746671915054, -0.034334804862737656]} +{"t": 13.1623, "q": [-0.3551216721534729, -0.025058429688215256, 0.015695301815867424, 0.6267760396003723, -0.29647883772850037, 0.025656377896666527, -0.3423299789428711, -0.0022924491204321384, 0.0025176764465868473, 0.6337300539016724, -0.3355746269226074, 0.006407531443983316, -0.008570813573896885, 0.06223372370004654, -0.025296323001384735, -2.737640380859375, 2.246574878692627, 2.3801748752593994, -0.24982315301895142, -0.1961577981710434, -0.12904614210128784, 0.02311757020652294, 0.12512730062007904, -0.13453491032123566, 0.031075095757842064, 1.2468867301940918, -0.11796072870492935, 0.07787349820137024, -0.03428686782717705]} +{"t": 13.179, "q": [-0.3564852178096771, -0.024913553148508072, 0.015293545089662075, 0.6278071999549866, -0.29647883772850037, 0.025656377896666527, -0.34293505549430847, -0.0022157500497996807, 0.002048959955573082, 0.6342925429344177, -0.3355623483657837, 0.00641467422246933, -0.008798475377261639, 0.062195781618356705, -0.02528035268187523, -2.7411997318267822, 2.246574878692627, 2.3803067207336426, -0.24978721141815186, -0.1961817741394043, -0.12911804020404816, 0.023153522983193398, 0.12505538761615753, -0.13451094925403595, 0.031075095757842064, 1.2469106912612915, -0.11796072870492935, 0.07789746671915054, -0.03428686782717705]} +{"t": 13.1957, "q": [-0.3576442301273346, -0.02484537661075592, 0.01503909844905138, 0.6286082863807678, -0.29651200771331787, 0.025627315044403076, -0.3435571491718292, -0.0021816615480929613, 0.0018079059664160013, 0.6346845626831055, -0.3355049788951874, 0.006428632419556379, -0.008825259283185005, 0.06214257329702377, -0.025244316086173058, -2.7433929443359375, 2.246574878692627, 2.3798155784606934, -0.24933180212974548, -0.1961817741394043, -0.12909407913684845, 0.023153522983193398, 0.12487562745809555, -0.1345468908548355, 0.031075095757842064, 1.2468867301940918, -0.11796072870492935, 0.07789746671915054, -0.034274883568286896]} +{"t": 13.2124, "q": [-0.35889697074890137, -0.02489650808274746, 0.015012315474450588, 0.6290088295936584, -0.2965077757835388, 0.02560563199222088, -0.3453894257545471, -0.002198705682530999, 0.0018212978029623628, 0.6350510120391846, -0.3354318141937256, 0.006558733060956001, -0.00881186779588461, 0.06209708750247955, -0.025232966989278793, -2.744112014770508, 2.2466108798980713, 2.3783774375915527, -0.24861274659633636, -0.1961577981710434, -0.1291060596704483, 0.023153522983193398, 0.12480372190475464, -0.1345229297876358, 0.031123032793402672, 1.2468867301940918, -0.1179487481713295, 0.07788547873497009, -0.03428686782717705]} +{"t": 13.2292, "q": [-0.36026903986930847, -0.024939119815826416, 0.015132841654121876, 0.6295371651649475, -0.29645806550979614, 0.02566371113061905, -0.34885790944099426, -0.0022072279825806618, 0.001982000656425953, 0.6354600787162781, -0.3352242410182953, 0.006869180127978325, -0.008878827095031738, 0.06202879920601845, -0.025206176564097404, -2.744135856628418, 2.2466108798980713, 2.3765437602996826, -0.24754615128040314, -0.1961577981710434, -0.12914201617240906, 0.023153522983193398, 0.12465991079807281, -0.1344989538192749, 0.03105112724006176, 1.246802806854248, -0.1179727166891098, 0.07787349820137024, -0.034274883568286896]} +{"t": 13.2459, "q": [-0.3620416224002838, -0.02496468648314476, 0.015347111970186234, 0.6300229430198669, -0.2964496910572052, 0.02564927749335766, -0.34899428486824036, -0.0022072279825806618, 0.002316797850653529, 0.6358435750007629, -0.3350652754306793, 0.007063812110573053, -0.008945786394178867, 0.0620136559009552, -0.025205649435520172, -2.7441599369049072, 2.246586799621582, 2.3738951683044434, -0.24595224857330322, -0.1961817741394043, -0.129130020737648, 0.02316550724208355, 0.12461197376251221, -0.1345468908548355, 0.031039142981171608, 1.2467190027236938, -0.1179247796535492, 0.07787349820137024, -0.03425091505050659]} +{"t": 13.2626, "q": [-0.36340516805648804, -0.024981729686260223, 0.015574774704873562, 0.6303126811981201, -0.2964414358139038, 0.025663776323199272, -0.34886643290519714, -0.0022157500497996807, 0.002624811604619026, 0.6360566020011902, -0.3345301151275635, 0.007487253751605749, -0.009227016009390354, 0.061929989606142044, -0.025139251723885536, -2.7429494857788086, 2.246574878692627, 2.3697726726531982, -0.24395088851451874, -0.1961817741394043, -0.12909407913684845, 0.02310558594763279, 0.1245880052447319, -0.13455888628959656, 0.031015174463391304, 1.2466470003128052, -0.1179487481713295, 0.07784952968358994, -0.034202978014945984]} +{"t": 13.2795, "q": [-0.3642062544822693, -0.02513512782752514, 0.015748869627714157, 0.6304064393043518, -0.29639166593551636, 0.025707369670271873, -0.3488493859767914, -0.0022413162514567375, 0.002946217078715563, 0.6360821723937988, -0.3341018259525299, 0.007955372333526611, -0.009227016009390354, 0.06170172244310379, -0.024945851415395737, -2.7411398887634277, 2.2466228008270264, 2.3649191856384277, -0.2421892136335373, -0.1961338371038437, -0.1290101855993271, 0.02310558594763279, 0.12465991079807281, -0.1345708668231964, 0.031015174463391304, 1.2465990781784058, -0.11793676018714905, 0.07786151021718979, -0.03425091505050659]} +{"t": 13.2962, "q": [-0.364155113697052, -0.025280004367232323, 0.015762262046337128, 0.6304746270179749, -0.29634174704551697, 0.025707585737109184, -0.3495311737060547, -0.002266882685944438, 0.003106919815763831, 0.6360651254653931, -0.3337264060974121, 0.008329550735652447, -0.009307367727160454, 0.06129831820726395, -0.024585364386439323, -2.73946213722229, 2.246598720550537, 2.3587591648101807, -0.24088293313980103, -0.1961577981710434, -0.12895026803016663, 0.02310558594763279, 0.12479173392057419, -0.13459482789039612, 0.031039142981171608, 1.2466111183166504, -0.11793676018714905, 0.07787349820137024, -0.03422694653272629]} +{"t": 13.3129, "q": [-0.3640784025192261, -0.02537374757230282, 0.015922963619232178, 0.6305172443389893, -0.2963252067565918, 0.025736583396792412, -0.35010215640068054, -0.0023435817565768957, 0.003334582084789872, 0.6360566020011902, -0.33332934975624084, 0.00849272683262825, -0.009508245624601841, 0.06068277359008789, -0.024198411032557487, -2.73649001121521, 2.2466228008270264, 2.3537259101867676, -0.23997212946414948, -0.1961338371038437, -0.12890233099460602, 0.023141538724303246, 0.12497150152921677, -0.13451094925403595, 0.030979221686720848, 1.2465871572494507, -0.11793676018714905, 0.07786151021718979, -0.03419099375605583]} +{"t": 13.3299, "q": [-0.36386537551879883, -0.02539079077541828, 0.01611045002937317, 0.6307217478752136, -0.2962505519390106, 0.025794759392738342, -0.3501362204551697, -0.0023606258910149336, 0.0034952848218381405, 0.6360651254653931, -0.33281129598617554, 0.00825499277561903, -0.009508245624601841, 0.059785857796669006, -0.023602690547704697, -2.7346444129943848, 2.246598720550537, 2.3488001823425293, -0.2388935387134552, -0.19609788060188293, -0.12887835502624512, 0.02298574335873127, 0.1252111792564392, -0.13429522514343262, 0.031027158722281456, 1.246575117111206, -0.1179487481713295, 0.07786151021718979, -0.034214962273836136]} +{"t": 13.3466, "q": [-0.3640272915363312, -0.02538226917386055, 0.01615062542259693, 0.6308581233024597, -0.2962380051612854, 0.02577310986816883, -0.3500851094722748, -0.0023521038237959146, 0.0034952848218381405, 0.6360651254653931, -0.33275845646858215, 0.008348951116204262, -0.009441286325454712, 0.058661628514528275, -0.022959750145673752, -2.7338054180145264, 2.246598720550537, 2.344545841217041, -0.23758725821971893, -0.1961098611354828, -0.12884239852428436, 0.022961774840950966, 0.12561865150928497, -0.13379189372062683, 0.031039142981171608, 1.2465871572494507, -0.1179247796535492, 0.07786151021718979, -0.034214962273836136]} +{"t": 13.3634, "q": [-0.3639761507511139, -0.025407835841178894, 0.016083667054772377, 0.6309433579444885, -0.29623380303382874, 0.025765875354409218, -0.3498890995979309, -0.0023606258910149336, 0.0033881496638059616, 0.6360566020011902, -0.33272188901901245, 0.008413992822170258, -0.009387718513607979, 0.05697740986943245, -0.022378964349627495, -2.733853340148926, 2.246574878692627, 2.3392727375030518, -0.2355499416589737, -0.19609788060188293, -0.1288543939590454, 0.022997727617621422, 0.12591825425624847, -0.13286910951137543, 0.031063111498951912, 1.2466470003128052, -0.11793676018714905, 0.07787349820137024, -0.034214962273836136]} +{"t": 13.3803, "q": [-0.3639846742153168, -0.02539079077541828, 0.016070274636149406, 0.6309689283370972, -0.2962585985660553, 0.025722362101078033, -0.3497612476348877, -0.0023606258910149336, 0.0034149333368986845, 0.6360566020011902, -0.33270561695098877, 0.008442891761660576, -0.009441286325454712, 0.05516352877020836, -0.021633753553032875, -2.733853340148926, 2.2466228008270264, 2.334035634994507, -0.23332087695598602, -0.1961098611354828, -0.12884239852428436, 0.022973759099841118, 0.12599016726016998, -0.13176655769348145, 0.031063111498951912, 1.2466470003128052, -0.11793676018714905, 0.07786151021718979, -0.03419099375605583]} +{"t": 13.3974, "q": [-0.363967627286911, -0.025365225970745087, 0.016070274636149406, 0.6309689283370972, -0.29624614119529724, 0.02572966367006302, -0.3497697710990906, -0.0023521038237959146, 0.003334582084789872, 0.6360651254653931, -0.33270132541656494, 0.008406521752476692, -0.009494854137301445, 0.05315355584025383, -0.021060822531580925, -2.733625650405884, 2.2466228008270264, 2.328690767288208, -0.23141539096832275, -0.19608590006828308, -0.12867462635040283, 0.022949790582060814, 0.12597817182540894, -0.13036440312862396, 0.031075095757842064, 1.2466470003128052, -0.11796072870492935, 0.07786151021718979, -0.034202978014945984]} +{"t": 13.4142, "q": [-0.36395910382270813, -0.0253140926361084, 0.01598992384970188, 0.6309859752655029, -0.29624196887016296, 0.02572244592010975, -0.34969308972358704, -0.0023521038237959146, 0.0031872710678726435, 0.6360480785369873, -0.33269721269607544, 0.008399215526878834, -0.009535029530525208, 0.0504603385925293, -0.020237280055880547, -2.7337934970855713, 2.246670722961426, 2.324376344680786, -0.23003719747066498, -0.19609788060188293, -0.1285547912120819, 0.02292582206428051, 0.1260380893945694, -0.12872256338596344, 0.03105112724006176, 1.2466709613800049, -0.11796072870492935, 0.07787349820137024, -0.03423893079161644]} +{"t": 13.431, "q": [-0.3639335334300995, -0.025228871032595634, 0.015842612832784653, 0.6309859752655029, -0.2962377071380615, 0.02568628080189228, -0.349624902009964, -0.0022924491204321384, 0.002959609031677246, 0.63599693775177, -0.3326970338821411, 0.00837013404816389, -0.009481461718678474, 0.04783663898706436, -0.01966729387640953, -2.7347042560577393, 2.246682643890381, 2.3203976154327393, -0.2289346605539322, -0.1961338371038437, -0.128530815243721, 0.022937806323170662, 0.12625381350517273, -0.12720057368278503, 0.03105112724006176, 1.2466830015182495, -0.11793676018714905, 0.07789746671915054, -0.03423893079161644]} +{"t": 13.4477, "q": [-0.3638909161090851, -0.025160694494843483, 0.01564173400402069, 0.6309774518013, -0.29623764753341675, 0.025671815499663353, -0.34936925768852234, -0.0022498385515064, 0.0027453387156128883, 0.6359117031097412, -0.3327297270298004, 0.008341399021446705, -0.009454678744077682, 0.044946931302547455, -0.019022256135940552, -2.735231637954712, 2.2467546463012695, 2.3164188861846924, -0.22765234112739563, -0.1961338371038437, -0.12854279577732086, 0.022949790582060814, 0.1263137310743332, -0.125486820936203, 0.03105112724006176, 1.2467069625854492, -0.11793676018714905, 0.07787349820137024, -0.034214962273836136]} +{"t": 13.4645, "q": [-0.36390796303749084, -0.02503286302089691, 0.015481031499803066, 0.6309177875518799, -0.2962251305580139, 0.025664614513516426, -0.34928402304649353, -0.0021901836153119802, 0.0025176764465868473, 0.6358094811439514, -0.3327663838863373, 0.008290889672935009, -0.00940111093223095, 0.04217131435871124, -0.018485818058252335, -2.7353994846343994, 2.246802568435669, 2.3128716945648193, -0.22585470974445343, -0.19609788060188293, -0.12857875227928162, 0.022937806323170662, 0.1263137310743332, -0.12373712658882141, 0.031075095757842064, 1.2467190027236938, -0.1179966852068901, 0.07789746671915054, -0.03422694653272629]} +{"t": 13.4812, "q": [-0.3638312816619873, -0.024828331544995308, 0.015347111970186234, 0.6308836936950684, -0.29622510075569153, 0.0256501492112875, -0.3491987884044647, -0.0020623519085347652, 0.002276622224599123, 0.6357071995735168, -0.33278682827949524, 0.008283828385174274, -0.00940111093223095, 0.03886385262012482, -0.017708877101540565, -2.7349798679351807, 2.246802568435669, 2.3098394870758057, -0.22364960610866547, -0.1961098611354828, -0.1285068541765213, 0.02292582206428051, 0.12619389593601227, -0.12187957018613815, 0.03105112724006176, 1.2467069625854492, -0.11796072870492935, 0.07783754169940948, -0.034214962273836136]} +{"t": 13.498, "q": [-0.36359265446662903, -0.024555623531341553, 0.015159625560045242, 0.6308666467666626, -0.296224981546402, 0.025621216744184494, -0.3491050601005554, -0.0018322548130527139, 0.002008784329518676, 0.6354941725730896, -0.3327867090702057, 0.008254746906459332, -0.009307367727160454, 0.0355704091489315, -0.016675613820552826, -2.7348721027374268, 2.2467784881591797, 2.307454824447632, -0.22152841091156006, -0.1961338371038437, -0.12831510603427887, 0.02292582206428051, 0.12602610886096954, -0.11987820267677307, 0.031147001311182976, 1.2466709613800049, -0.1179727166891098, 0.07782556116580963, -0.03423893079161644]} +{"t": 13.5147, "q": [-0.36340516805648804, -0.024257350713014603, 0.014985531568527222, 0.6307814121246338, -0.29621243476867676, 0.025599569082260132, -0.34913915395736694, -0.0017129451734945178, 0.0015400679549202323, 0.6351617574691772, -0.3327867090702057, 0.008254746906459332, -0.00925379991531372, 0.03281007707118988, -0.01631039008498192, -2.7348601818084717, 2.246814489364624, 2.3057289123535156, -0.2200423628091812, -0.1961098611354828, -0.12824319303035736, 0.02292582206428051, 0.12591825425624847, -0.11782890558242798, 0.031147001311182976, 1.2466470003128052, -0.11798469722270966, 0.07786151021718979, -0.03423893079161644]} +{"t": 13.5314, "q": [-0.3632262051105499, -0.023848289623856544, 0.014824828132987022, 0.630696177482605, -0.29617494344711304, 0.025578001514077187, -0.34913915395736694, -0.0015510249650105834, 0.001004392164759338, 0.6346163749694824, -0.33267906308174133, 0.00806471984833479, -0.009280583821237087, 0.030057601630687714, -0.01608196273446083, -2.7349679470062256, 2.246802568435669, 2.3036797046661377, -0.21886791288852692, -0.1961338371038437, -0.12817129492759705, 0.02292582206428051, 0.12591825425624847, -0.11576761305332184, 0.031158985570073128, 1.2466470003128052, -0.1179487481713295, 0.07787349820137024, -0.03422694653272629]} +{"t": 13.5484, "q": [-0.36292794346809387, -0.023311395198106766, 0.014824828132987022, 0.6306365132331848, -0.2961499094963074, 0.02556363306939602, -0.3490198254585266, -0.0013038836186751723, 0.0006026353221386671, 0.6339516639709473, -0.33249330520629883, 0.00783756747841835, -0.009293975308537483, 0.027926623821258545, -0.01587621495127678, -2.735219717025757, 2.2468385696411133, 2.3015224933624268, -0.21736988425254822, -0.1961577981710434, -0.12817129492759705, 0.022937806323170662, 0.12596619129180908, -0.11410180479288101, 0.03118295408785343, 1.2466470003128052, -0.1179966852068901, 0.07786151021718979, -0.03422694653272629]} +{"t": 13.5651, "q": [-0.36262965202331543, -0.022689281031489372, 0.01486500445753336, 0.6305939555168152, -0.296116441488266, 0.02550588548183441, -0.3486533761024475, -0.0009970874525606632, 0.00037497308221645653, 0.6332954168319702, -0.33237364888191223, 0.007698295172303915, -0.009240408428013325, 0.026023078709840775, -0.015696430578827858, -2.7355551719665527, 2.246814489364624, 2.298814058303833, -0.21532057225704193, -0.1961098611354828, -0.12819525599479675, 0.022949790582060814, 0.12596619129180908, -0.11212441325187683, 0.031147001311182976, 1.2466709613800049, -0.11793676018714905, 0.07786151021718979, -0.03425091505050659]} +{"t": 13.5818, "q": [-0.3626040816307068, -0.02213534340262413, 0.01486500445753336, 0.6305257678031921, -0.2961122691631317, 0.02549866959452629, -0.34840625524520874, -0.000690291344653815, 4.017568790004589e-05, 0.632477343082428, -0.3321998417377472, 0.007405855692923069, -0.009173448197543621, 0.024006590247154236, -0.015833109617233276, -2.7357468605041504, 2.2467546463012695, 2.2939724922180176, -0.21275594830513, -0.1961098611354828, -0.12807542085647583, 0.022949790582060814, 0.12609802186489105, -0.10994328558444977, 0.031123032793402672, 1.2466590404510498, -0.1179487481713295, 0.07787349820137024, -0.03422694653272629]} +{"t": 13.5986, "q": [-0.3626466989517212, -0.021700715646147728, 0.014811436645686626, 0.6303126811981201, -0.29607486724853516, 0.025506049394607544, -0.34826135635375977, -0.0004346278728917241, -0.00036158118746243417, 0.6314631700515747, -0.33182471990585327, 0.00704600103199482, -0.009240408428013325, 0.021550070494413376, -0.015987399965524673, -2.735806941986084, 2.246814489364624, 2.2909164428710938, -0.21087442338466644, -0.19609788060188293, -0.12784771621227264, 0.022901853546500206, 0.12627777457237244, -0.1080138236284256, 0.03111104853451252, 1.2467429637908936, -0.11796072870492935, 0.0779094472527504, -0.03425091505050659]} +{"t": 13.6153, "q": [-0.36229729652404785, -0.02147061936557293, 0.014757868833839893, 0.6299718022346497, -0.29607486724853516, 0.025506049394607544, -0.34795457124710083, -0.00010226538870483637, -0.00046871634549461305, 0.6305087208747864, -0.3314577341079712, 0.006671696435660124, -0.009240408428013325, 0.019032038748264313, -0.01589956134557724, -2.7357828617095947, 2.246718645095825, 2.2887473106384277, -0.2091846466064453, -0.19607390463352203, -0.12778779864311218, 0.022853918373584747, 0.12652945518493652, -0.10632404685020447, 0.031135017052292824, 1.2467669248580933, -0.11796072870492935, 0.0779094472527504, -0.03423893079161644]} +{"t": 13.632, "q": [-0.3620501458644867, -0.021010424941778183, 0.014677518047392368, 0.6295883059501648, -0.2960582375526428, 0.025506116449832916, -0.34734097123146057, 0.0002300971100339666, -0.0006695947959087789, 0.6292644739151001, -0.33095309138298035, 0.006644845940172672, -0.009119881317019463, 0.01681758090853691, -0.015945449471473694, -2.735914707183838, 2.246718645095825, 2.2857632637023926, -0.20658408105373383, -0.19609788060188293, -0.12771588563919067, 0.022782012820243835, 0.1266852468252182, -0.10481403023004532, 0.031087080016732216, 1.2467788457870483, -0.1179727166891098, 0.07788547873497009, -0.03423893079161644]} +{"t": 13.6489, "q": [-0.361163854598999, -0.02037978731095791, 0.014396287500858307, 0.6291877627372742, -0.29603734612464905, 0.02548450045287609, -0.34602856636047363, 0.000570981705095619, -0.0009910003282129765, 0.627849817276001, -0.33043161034584045, 0.006676428020000458, -0.0089993542060256, 0.01526245754212141, -0.015818927437067032, -2.7386112213134766, 2.2467427253723145, 2.2848763465881348, -0.20296484231948853, -0.1961577981710434, -0.12773986160755157, 0.022793997079133987, 0.12672120332717896, -0.10368751734495163, 0.031135017052292824, 1.2468507289886475, -0.11793676018714905, 0.07792143523693085, -0.03423893079161644]} +{"t": 13.6656, "q": [-0.35968953371047974, -0.019868459552526474, 0.014222193509340286, 0.628667950630188, -0.2960415184497833, 0.02549171634018421, -0.3438469171524048, 0.0007755124825052917, -0.0012588382232934237, 0.626426637172699, -0.3300745487213135, 0.006753170397132635, -0.009200232103466988, 0.014404941350221634, -0.015544254332780838, -2.741187810897827, 2.246682643890381, 2.284672737121582, -0.19969314336776733, -0.1961338371038437, -0.1276319921016693, 0.022782012820243835, 0.12675714492797852, -0.10318417847156525, 0.03118295408785343, 1.2468746900558472, -0.1179727166891098, 0.0779094472527504, -0.03425091505050659]} +{"t": 13.6823, "q": [-0.35724368691444397, -0.01936565525829792, 0.013914179988205433, 0.6279691457748413, -0.2960788905620575, 0.025469869375228882, -0.3404380679130554, 0.0012186624808236957, -0.0015132841654121876, 0.6239296197891235, -0.32961925864219666, 0.0068871681578457355, -0.009642165154218674, 0.014404472894966602, -0.01523254718631506, -2.744950771331787, 2.2466347217559814, 2.2842652797698975, -0.195235013961792, -0.1961338371038437, -0.12746421992778778, 0.02274606004357338, 0.12679310142993927, -0.10301639884710312, 0.031087080016732216, 1.2469466924667358, -0.1179487481713295, 0.0779094472527504, -0.03425091505050659]} +{"t": 13.6993, "q": [-0.3550279140472412, -0.018010638654232025, 0.013833828270435333, 0.6269294023513794, -0.2960871756076813, 0.025455370545387268, -0.33846092224121094, 0.0014317154418677092, -0.0015936355339363217, 0.6219354867935181, -0.3289579153060913, 0.006932171992957592, -0.010110881179571152, 0.014442799612879753, -0.015500718727707863, -2.74847412109375, 2.2466347217559814, 2.284217357635498, -0.19205918908119202, -0.19609788060188293, -0.1273084282875061, 0.02274606004357338, 0.12679310142993927, -0.10302838683128357, 0.031123032793402672, 1.2469706535339355, -0.11793676018714905, 0.07794540375471115, -0.03428686782717705]} +{"t": 13.7161, "q": [-0.35212188959121704, -0.01563296839594841, 0.014302544295787811, 0.6256937384605408, -0.29608309268951416, 0.025477085262537003, -0.3385632038116455, 0.0016788567882031202, -0.0014597165863960981, 0.6199412941932678, -0.3285812735557556, 0.007161267567425966, -0.010284976102411747, 0.0143747478723526, -0.01564142480492592, -2.7526326179504395, 2.246682643890381, 2.284660816192627, -0.1892668753862381, -0.1961098611354828, -0.12722453474998474, 0.022770028561353683, 0.12682905793190002, -0.10310029238462448, 0.03105112724006176, 1.2469946146011353, -0.11791279166936874, 0.0779334157705307, -0.03425091505050659]} +{"t": 13.7328, "q": [-0.3503492772579193, -0.01539435051381588, 0.015146234072744846, 0.6247733235359192, -0.2961495816707611, 0.025462357327342033, -0.3376598656177521, 0.0017470336752012372, -0.0009910003282129765, 0.6188675165176392, -0.3285606801509857, 0.007153825834393501, -0.010137665085494518, 0.013708021491765976, -0.016132961958646774, -2.7575583457946777, 2.2466588020324707, 2.284888505935669, -0.18653446435928345, -0.1961338371038437, -0.12722453474998474, 0.022770028561353683, 0.12684103846549988, -0.10325608402490616, 0.03105112724006176, 1.2470065355300903, -0.1179487481713295, 0.077957384288311, -0.03422694653272629]} +{"t": 13.7496, "q": [-0.34922435879707336, -0.01533469557762146, 0.015266761183738708, 0.6239892840385437, -0.29619133472442627, 0.025505589321255684, -0.3371911346912384, 0.0016447682864964008, -0.00044193255598656833, 0.6186288595199585, -0.3285894989967346, 0.007161357905715704, -0.010191232897341251, 0.012548575177788734, -0.01689925603568554, -2.760806083679199, 2.2466347217559814, 2.284888505935669, -0.18383800983428955, -0.1961098611354828, -0.12724851071834564, 0.022770028561353683, 0.12684103846549988, -0.10335195809602737, 0.031015174463391304, 1.24703049659729, -0.11798469722270966, 0.07801730930805206, -0.03423893079161644]} +{"t": 13.7663, "q": [-0.348431795835495, -0.015445481985807419, 0.015132841654121876, 0.6233586668968201, -0.2962205708026886, 0.02554163709282875, -0.33657753467559814, 0.0015510249650105834, 1.3391895663517062e-05, 0.6184414029121399, -0.3286266028881073, 0.007183448411524296, -0.010392110794782639, 0.012322191148996353, -0.01784348674118519, -2.76751708984375, 2.2466347217559814, 2.284900426864624, -0.18011091649532318, -0.1961338371038437, -0.1272125542163849, 0.02274606004357338, 0.1269129514694214, -0.1035437062382698, 0.031003190204501152, 1.24703049659729, -0.1179727166891098, 0.07799334079027176, -0.034262899309396744]} +{"t": 13.7831, "q": [-0.3482869267463684, -0.015428438782691956, 0.015092666260898113, 0.6227620840072632, -0.2962247431278229, 0.02554885484278202, -0.3364241421222687, 0.0014658038271591067, 0.0003481892927084118, 0.6183561682701111, -0.3286348283290863, 0.0071835205890238285, -0.01057959720492363, 0.013006467372179031, -0.018834032118320465, -2.7753548622131348, 2.2466588020324707, 2.2848405838012695, -0.176240012049675, -0.1961098611354828, -0.12717659771442413, 0.02274606004357338, 0.12690095603466034, -0.10378339141607285, 0.030967237427830696, 1.24703049659729, -0.11793676018714905, 0.07796937227249146, -0.034202978014945984]} +{"t": 13.7998, "q": [-0.3482869267463684, -0.015436960384249687, 0.014918571338057518, 0.622404158115387, -0.29621636867523193, 0.02553442120552063, -0.3364923298358917, 0.001448759576305747, 0.000522283953614533, 0.6183220744132996, -0.3286307752132416, 0.007190745323896408, -0.011101881042122841, 0.013971399515867233, -0.01972423680126667, -2.779932737350464, 2.2466347217559814, 2.284996271133423, -0.17357951402664185, -0.19609788060188293, -0.12712866067886353, 0.02275804430246353, 0.12688897550106049, -0.10378339141607285, 0.031003190204501152, 1.2470065355300903, -0.1179727166891098, 0.07801730930805206, -0.03422694653272629]} +{"t": 13.8165, "q": [-0.3482784032821655, -0.015419915318489075, 0.014677518047392368, 0.6222934126853943, -0.29621636867523193, 0.02553442120552063, -0.3366968631744385, 0.0014572817599400878, 0.0004955001641064882, 0.6182538866996765, -0.3285980522632599, 0.007219518069177866, -0.01193217933177948, 0.015126075595617294, -0.02050524763762951, -2.785062074661255, 2.2466347217559814, 2.2852120399475098, -0.1715182363986969, -0.19609788060188293, -0.12711668014526367, 0.022770028561353683, 0.1269129514694214, -0.1037953719496727, 0.030979221686720848, 1.2470065355300903, -0.1179487481713295, 0.07800532132387161, -0.03423893079161644]} +{"t": 13.8334, "q": [-0.3482784032821655, -0.015385827049612999, 0.014516814611852169, 0.6222848892211914, -0.29619964957237244, 0.025505555793642998, -0.3370206952095032, 0.0015169365797191858, 0.00042854066123254597, 0.6182027459144592, -0.32855650782585144, 0.007146528922021389, -0.012923179194331169, 0.016478141769766808, -0.02128901518881321, -2.7907304763793945, 2.2466588020324707, 2.2860748767852783, -0.16942098736763, -0.19612184166908264, -0.12710469961166382, 0.022770028561353683, 0.1269369125366211, -0.10389124602079391, 0.030979221686720848, 1.2470065355300903, -0.11796072870492935, 0.07799334079027176, -0.03422694653272629]} +{"t": 13.8501, "q": [-0.3482528328895569, -0.015326172113418579, 0.014423071406781673, 0.6222934126853943, -0.29617467522621155, 0.025505654513835907, -0.33712297677993774, 0.0015595471486449242, 0.0003883649769704789, 0.6183220744132996, -0.3284989893436432, 0.007146022282540798, -0.014275760389864445, 0.01779196970164776, -0.02181466668844223, -2.7973339557647705, 2.2466347217559814, 2.286398410797119, -0.16747954487800598, -0.19609788060188293, -0.12712866067886353, 0.02274606004357338, 0.1269369125366211, -0.10425077378749847, 0.030943268910050392, 1.2470065355300903, -0.11796072870492935, 0.07800532132387161, -0.034214962273836136]} +{"t": 13.8668, "q": [-0.3482869267463684, -0.01521538570523262, 0.014235584996640682, 0.6222678422927856, -0.29615795612335205, 0.025476789101958275, -0.3372252285480499, 0.0016618125373497605, 0.00033479739795438945, 0.6183220744132996, -0.3284737765789032, 0.007058655843138695, -0.015681909397244453, 0.01928066462278366, -0.022465484216809273, -2.803421974182129, 2.2466347217559814, 2.2869975566864014, -0.16529841721057892, -0.19612184166908264, -0.12712866067886353, 0.02274606004357338, 0.1269369125366211, -0.10475411266088486, 0.03093128465116024, 1.2469706535339355, -0.1179487481713295, 0.07798135280609131, -0.03423893079161644]} +{"t": 13.8836, "q": [-0.3482358157634735, -0.015044942498207092, 0.014222193509340286, 0.6221826076507568, -0.29614120721817017, 0.0254479069262743, -0.3373274803161621, 0.0018492990639060736, 0.00037497308221645653, 0.6183817386627197, -0.3283036947250366, 0.006802949123084545, -0.016512207686901093, 0.020602596923708916, -0.023154737427830696, -2.8111636638641357, 2.246598720550537, 2.286937713623047, -0.16268585622310638, -0.19609788060188293, -0.12712866067886353, 0.022734075784683228, 0.1269129514694214, -0.10538927465677261, 0.030883347615599632, 1.2469706535339355, -0.11796072870492935, 0.07799334079027176, -0.034214962273836136]} +{"t": 13.9003, "q": [-0.34821024537086487, -0.014806324616074562, 0.014248977415263653, 0.6221655607223511, -0.2961161136627197, 0.025404607877135277, -0.3373871445655823, 0.002002697205170989, 0.00037497308221645653, 0.6184414029121399, -0.3282290995121002, 0.006700608413666487, -0.017355896532535553, 0.022023148834705353, -0.023753110319375992, -2.817479372024536, 2.246598720550537, 2.287045478820801, -0.160061314702034, -0.1961098611354828, -0.1272125542163849, 0.02275804430246353, 0.126960888504982, -0.10597650706768036, 0.030835412442684174, 1.2469346523284912, -0.11790081113576889, 0.07796937227249146, -0.03422694653272629]} +{"t": 13.917, "q": [-0.34826987981796265, -0.01455065980553627, 0.014262368902564049, 0.6221570372581482, -0.296107679605484, 0.025375692173838615, -0.3374553322792053, 0.0023435817565768957, 0.00042854066123254597, 0.6185010671615601, -0.3281334638595581, 0.006518198177218437, -0.018253153190016747, 0.023147208616137505, -0.024109741672873497, -2.8221051692962646, 2.2466228008270264, 2.288795232772827, -0.1577123999595642, -0.1961338371038437, -0.12722453474998474, 0.02275804430246353, 0.12697286903858185, -0.10650380700826645, 0.030799459666013718, 1.2468867301940918, -0.11788882315158844, 0.07794540375471115, -0.03423893079161644]} +{"t": 13.9339, "q": [-0.34839773178100586, -0.01437169499695301, 0.014222193509340286, 0.6221144199371338, -0.2961075007915497, 0.025317812338471413, -0.3374553322792053, 0.0025566346012055874, 0.0003883649769704789, 0.6185436844825745, -0.3281536102294922, 0.006453012581914663, -0.018574560061097145, 0.023868456482887268, -0.024211831390857697, -2.825580596923828, 2.2466228008270264, 2.290472984313965, -0.15565112233161926, -0.19614581763744354, -0.1272365152835846, 0.022782012820243835, 0.12694889307022095, -0.10692325979471207, 0.030799459666013718, 1.246862769126892, -0.1179487481713295, 0.07796937227249146, -0.03423893079161644]} +{"t": 13.9506, "q": [-0.34836363792419434, -0.014294996857643127, 0.01411505788564682, 0.622097373008728, -0.29609084129333496, 0.025317860767245293, -0.33748942613601685, 0.0027355989441275597, 0.00030801360844634473, 0.6186203360557556, -0.3281613886356354, 0.006380457431077957, -0.01865491084754467, 0.024224944412708282, -0.024113690480589867, -2.828277111053467, 2.246598720550537, 2.2918033599853516, -0.15422499179840088, -0.1961577981710434, -0.12722453474998474, 0.022782012820243835, 0.1269369125366211, -0.1071389764547348, 0.030799459666013718, 1.2468267679214478, -0.11791279166936874, 0.07799334079027176, -0.03423893079161644]} +{"t": 13.9673, "q": [-0.3483465909957886, -0.014235341921448708, 0.013967746868729591, 0.6220377087593079, -0.29605311155319214, 0.02522396482527256, -0.33776211738586426, 0.0028719529509544373, 0.00020087843586225063, 0.6186800003051758, -0.32798686623573303, 0.006073869299143553, -0.018721869215369225, 0.02438400126993656, -0.023993711918592453, -2.8316328525543213, 2.246562957763672, 2.291743278503418, -0.153242290019989, -0.1961338371038437, -0.1272365152835846, 0.022770028561353683, 0.12694889307022095, -0.10717492550611496, 0.030775491148233414, 1.246802806854248, -0.11791279166936874, 0.07794540375471115, -0.03423893079161644]} +{"t": 13.9841, "q": [-0.3484658896923065, -0.014260908588767052, 0.013900787569582462, 0.6220036149024963, -0.29599058628082275, 0.02518804743885994, -0.33804336190223694, 0.002957174088805914, 0.00010713516530813649, 0.6187226176261902, -0.3279619514942169, 0.0060300868935883045, -0.018587950617074966, 0.02454308047890663, -0.023883504793047905, -2.834796667098999, 2.2466347217559814, 2.291719436645508, -0.15246331691741943, -0.1961098611354828, -0.1272365152835846, 0.02275804430246353, 0.1269369125366211, -0.10730675607919693, 0.03076350688934326, 1.246802806854248, -0.11790081113576889, 0.07794540375471115, -0.03423893079161644]} +{"t": 14.0008, "q": [-0.34854260087013245, -0.01425238698720932, 0.013820436783134937, 0.6219780445098877, -0.29597383737564087, 0.025159163400530815, -0.33812856674194336, 0.002974218223243952, -0.00010713516530813649, 0.618739664554596, -0.32796168327331543, 0.005986502859741449, -0.018520992249250412, 0.024732200428843498, -0.023646684363484383, -2.8352279663085938, 2.2466588020324707, 2.291407823562622, -0.15234346687793732, -0.1961098611354828, -0.1272365152835846, 0.022770028561353683, 0.12694889307022095, -0.10734270513057709, 0.030739538371562958, 1.246802806854248, -0.11790081113576889, 0.077957384288311, -0.03422694653272629]} +{"t": 14.0176, "q": [-0.34873008728027344, -0.014303518459200859, 0.01384721975773573, 0.6219354867935181, -0.29595711827278137, 0.025130297988653183, -0.33831605315208435, 0.003008306724950671, -0.00018748654110822827, 0.618739664554596, -0.32801470160484314, 0.005921624600887299, -0.018360288813710213, 0.02486840821802616, -0.023492198437452316, -2.835012197494507, 2.2466347217559814, 2.290712833404541, -0.15212775766849518, -0.1961098611354828, -0.1272604912519455, 0.02275804430246353, 0.12697286903858185, -0.1074385792016983, 0.03076350688934326, 1.246790885925293, -0.11790081113576889, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.0344, "q": [-0.34877270460128784, -0.014329085126519203, 0.013967746868729591, 0.6218843460083008, -0.2959529161453247, 0.025123082101345062, -0.3383927643299103, 0.003025350859388709, -0.0002544460294302553, 0.618739664554596, -0.3280635476112366, 0.005849412642419338, -0.018279938027262688, 0.025080209597945213, -0.023221487179398537, -2.834904432296753, 2.2466347217559814, 2.290053606033325, -0.15155251324176788, -0.19612184166908264, -0.1272365152835846, 0.02274606004357338, 0.12694889307022095, -0.10755842179059982, 0.030739538371562958, 1.246802806854248, -0.1179247796535492, 0.07798135280609131, -0.034202978014945984]} +{"t": 14.0511, "q": [-0.3488749563694, -0.014346130192279816, 0.014021314680576324, 0.6217905879020691, -0.2959362864494324, 0.025123130530118942, -0.33846092224121094, 0.003025350859388709, -0.00020087843586225063, 0.6187737584114075, -0.32808756828308105, 0.005747940391302109, -0.01845403201878071, 0.025496572256088257, -0.022821636870503426, -2.8346288204193115, 2.246574878692627, 2.289022922515869, -0.15078552067279816, -0.1961098611354828, -0.1272604912519455, 0.02274606004357338, 0.1269848495721817, -0.10770223289728165, 0.030739538371562958, 1.246790885925293, -0.11796072870492935, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.068, "q": [-0.34896019101142883, -0.014422828331589699, 0.01412845030426979, 0.6216968297958374, -0.2959153652191162, 0.02508704923093319, -0.33845239877700806, 0.0030594393610954285, -5.3567582654068246e-05, 0.6188334226608276, -0.3280990421772003, 0.005610054358839989, -0.01848081685602665, 0.025897853076457977, -0.022450469434261322, -2.833334445953369, 2.246598720550537, 2.2859909534454346, -0.14976686239242554, -0.19612184166908264, -0.1272365152835846, 0.02274606004357338, 0.12697286903858185, -0.10792993009090424, 0.030715569853782654, 1.2467669248580933, -0.11790081113576889, 0.07794540375471115, -0.03423893079161644]} +{"t": 14.0847, "q": [-0.349249929189682, -0.01443134993314743, 0.01419540960341692, 0.6216201186180115, -0.2958739697933197, 0.025145092979073524, -0.33840128779411316, 0.003067961661145091, 0.0, 0.6189612150192261, -0.328084796667099, 0.005297616124153137, -0.01833350583910942, 0.02630683407187462, -0.02219260297715664, -2.832651376724243, 2.246598720550537, 2.2818803787231445, -0.14864034950733185, -0.1961098611354828, -0.12722453474998474, 0.022722091525793076, 0.12694889307022095, -0.10816961526870728, 0.030679617077112198, 1.2467190027236938, -0.11787684261798859, 0.07794540375471115, -0.034214962273836136]} +{"t": 14.1015, "q": [-0.34954822063446045, -0.014473961666226387, 0.014342720620334148, 0.6217564940452576, -0.29585713148117065, 0.025087280198931694, -0.3382904827594757, 0.0030509172938764095, -0.00013391896209213883, 0.6193873286247253, -0.3282356262207031, 0.00510285422205925, -0.01797192357480526, 0.026404596865177155, -0.021876541897654533, -2.8330228328704834, 2.2466347217559814, 2.2769548892974854, -0.14734604954719543, -0.1961098611354828, -0.1272125542163849, 0.022722091525793076, 0.12699683010578156, -0.10827747732400894, 0.03069160133600235, 1.2467669248580933, -0.11785287410020828, 0.077957384288311, -0.034202978014945984]} +{"t": 14.1182, "q": [-0.3496675193309784, -0.014508049935102463, 0.014570382423698902, 0.6219269633293152, -0.2958321273326874, 0.025072911754250526, -0.33822232484817505, 0.003093527862802148, -0.0006160272168926895, 0.6194469928741455, -0.32822713255882263, 0.005059198010712862, -0.017717478796839714, 0.02644963748753071, -0.02170136198401451, -2.8332505226135254, 2.246598720550537, 2.2716097831726074, -0.14591993391513824, -0.19612184166908264, -0.1272365152835846, 0.02274606004357338, 0.12694889307022095, -0.1083134263753891, 0.030703585594892502, 1.2468267679214478, -0.11790081113576889, 0.07798135280609131, -0.03423893079161644]} +{"t": 14.1349, "q": [-0.34968456625938416, -0.014499528333544731, 0.015132841654121876, 0.6220036149024963, -0.2957863211631775, 0.025036921724677086, -0.3381456136703491, 0.0032980586402118206, -0.0008570813224650919, 0.6195066571235657, -0.3281855881214142, 0.004986208863556385, -0.018079059198498726, 0.026411155238747597, -0.02150055207312107, -2.8318843841552734, 2.246598720550537, 2.26837420463562, -0.14487729966640472, -0.19616977870464325, -0.1272365152835846, 0.022734075784683228, 0.12678112089633942, -0.10827747732400894, 0.030727554112672806, 1.2468388080596924, -0.11790081113576889, 0.07796937227249146, -0.03422694653272629]} +{"t": 14.1517, "q": [-0.3498038649559021, -0.014525093138217926, 0.0155345993116498, 0.6220547556877136, -0.29574039578437805, 0.024957535788416862, -0.3376428186893463, 0.0035366779193282127, -0.0008035137434490025, 0.6196089386940002, -0.32808631658554077, 0.004883669316768646, -0.018065666779875755, 0.026387475430965424, -0.021163200959563255, -2.830482244491577, 2.2466588020324707, 2.263017177581787, -0.14340323209762573, -0.1961098611354828, -0.1272125542163849, 0.022722091525793076, 0.12662532925605774, -0.10825350880622864, 0.030727554112672806, 1.246802806854248, -0.11788882315158844, 0.07798135280609131, -0.03422694653272629]} +{"t": 14.1687, "q": [-0.3502214550971985, -0.014593271538615227, 0.01577565260231495, 0.6220377087593079, -0.29571956396102905, 0.024921465665102005, -0.33662867546081543, 0.00364746549166739, -0.0006428110064007342, 0.6200265288352966, -0.32803258299827576, 0.004832354374229908, -0.018012098968029022, 0.02642505057156086, -0.02103186957538128, -2.8300387859344482, 2.246718645095825, 2.255922555923462, -0.1417374312877655, -0.19608590006828308, -0.12720057368278503, 0.022734075784683228, 0.12662532925605774, -0.10825350880622864, 0.03069160133600235, 1.2466830015182495, -0.11791279166936874, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.1854, "q": [-0.35024702548980713, -0.014584748074412346, 0.01580243743956089, 0.6220121383666992, -0.29569464921951294, 0.02493603527545929, -0.3363218903541565, 0.0036645096261054277, -0.000709770480170846, 0.6204015016555786, -0.32798272371292114, 0.004744752775877714, -0.018012098968029022, 0.026484277099370956, -0.0204954631626606, -2.831153392791748, 2.2467546463012695, 2.2477972507476807, -0.13987988233566284, -0.19609788060188293, -0.12720057368278503, 0.022590264678001404, 0.12652945518493652, -0.10827747732400894, 0.030643664300441742, 1.2466830015182495, -0.11788882315158844, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.2021, "q": [-0.3499913513660431, -0.014652926474809647, 0.015668518841266632, 0.622029185295105, -0.2956904172897339, 0.02489989623427391, -0.33602359890937805, 0.003707120195031166, -0.0008436894277110696, 0.6208531260490417, -0.3279702663421631, 0.004722861107438803, -0.01798531599342823, 0.02640671841800213, -0.019869377836585045, -2.8316328525543213, 2.246934413909912, 2.240978240966797, -0.13768675923347473, -0.19609788060188293, -0.1272365152835846, 0.022554311901330948, 0.1263856440782547, -0.10827747732400894, 0.030667632818222046, 1.2466709613800049, -0.11786485463380814, 0.07796937227249146, -0.03425091505050659]} +{"t": 14.2189, "q": [-0.3493095934391022, -0.014865977689623833, 0.01538728829473257, 0.6221144199371338, -0.2956986725330353, 0.024885380640625954, -0.3349839150905609, 0.0038434739690274, -0.0011650949018076062, 0.621049165725708, -0.32800692319869995, 0.004672341980040073, -0.017851397395133972, 0.026124382391572, -0.01927543431520462, -2.8319203853607178, 2.2470061779022217, 2.234602689743042, -0.13552960753440857, -0.19609788060188293, -0.12720057368278503, 0.022482406347990036, 0.12625381350517273, -0.10821755230426788, 0.030655648559331894, 1.246730923652649, -0.11787684261798859, 0.07798135280609131, -0.034262899309396744]} +{"t": 14.2356, "q": [-0.3481591045856476, -0.014865977689623833, 0.014891788363456726, 0.622097373008728, -0.29570695757865906, 0.02487088181078434, -0.3332453966140747, 0.004048004746437073, -0.001673986902460456, 0.6209468841552734, -0.32808831334114075, 0.004542331676930189, -0.017878180369734764, 0.025758514180779457, -0.018646128475666046, -2.8341615200042725, 2.2470662593841553, 2.2286343574523926, -0.13379189372062683, -0.1961098611354828, -0.12712866067886353, 0.02244645357131958, 0.12608602643013, -0.10802580416202545, 0.030727554112672806, 1.246730923652649, -0.11793676018714905, 0.07796937227249146, -0.034214962273836136]} +{"t": 14.2524, "q": [-0.34706827998161316, -0.014883022755384445, 0.014556990936398506, 0.622029185295105, -0.29574841260910034, 0.024841759353876114, -0.3323846757411957, 0.004252535756677389, -0.0020355682354420424, 0.6208105683326721, -0.32825949788093567, 0.004311427939683199, -0.017931748181581497, 0.02525033988058567, -0.018633682280778885, -2.836186647415161, 2.2471859455108643, 2.2238528728485107, -0.13284513354301453, -0.19609788060188293, -0.12714064121246338, 0.022434469312429428, 0.12590627372264862, -0.10764230787754059, 0.030799459666013718, 1.246730923652649, -0.11793676018714905, 0.077957384288311, -0.03423893079161644]} +{"t": 14.2693, "q": [-0.3462245762348175, -0.014857456088066101, 0.01444985531270504, 0.6220206618309021, -0.29579392075538635, 0.024776462465524673, -0.3315409719944, 0.004576376173645258, -0.0021159194875508547, 0.620750904083252, -0.3283735513687134, 0.004152645356953144, -0.017878180369734764, 0.024750301614403725, -0.018811438232660294, -2.8373851776123047, 2.2473058700561523, 2.2197420597076416, -0.13250957429409027, -0.1961098611354828, -0.12712866067886353, 0.022470422089099884, 0.12575048208236694, -0.10730675607919693, 0.030799459666013718, 1.2466709613800049, -0.11793676018714905, 0.07796937227249146, -0.03422694653272629]} +{"t": 14.286, "q": [-0.3459433615207672, -0.014823367819190025, 0.014315936714410782, 0.6219950914382935, -0.29579806327819824, 0.024769213050603867, -0.33124271035194397, 0.004849083721637726, -0.0021828790195286274, 0.6207082867622375, -0.3284306228160858, 0.004080523736774921, -0.017931748181581497, 0.024386802688241005, -0.0190503541380167, -2.8388712406158447, 2.247282028198242, 2.2149124145507812, -0.13234180212020874, -0.1961098611354828, -0.12712866067886353, 0.022482406347990036, 0.12565460801124573, -0.1070910394191742, 0.03082342818379402, 1.2466709613800049, -0.11791279166936874, 0.07798135280609131, -0.03422694653272629]} +{"t": 14.3027, "q": [-0.3459092676639557, -0.014695536345243454, 0.014289152808487415, 0.6219695210456848, -0.2957937717437744, 0.02471861056983471, -0.3312171399593353, 0.005087703000754118, -0.0022230546455830336, 0.6207253336906433, -0.328446626663208, 0.004008041229099035, -0.018065666779875755, 0.024265948683023453, -0.0192536860704422, -2.8405730724334717, 2.247282028198242, 2.208824634552002, -0.13220997154712677, -0.1961098611354828, -0.12712866067886353, 0.022458437830209732, 0.1255587339401245, -0.10700714588165283, 0.03085937909781933, 1.2466470003128052, -0.11793676018714905, 0.077957384288311, -0.03423893079161644]} +{"t": 14.3195, "q": [-0.34592631459236145, -0.014687014743685722, 0.014423071406781673, 0.6218928694725037, -0.29565608501434326, 0.024480486288666725, -0.3312256634235382, 0.00526666734367609, -0.002089135814458132, 0.620750904083252, -0.3284870982170105, 0.003906713332980871, -0.018105842173099518, 0.024296294897794724, -0.019254088401794434, -2.842071056365967, 2.2473058700561523, 2.2027604579925537, -0.13216203451156616, -0.1961098611354828, -0.12714064121246338, 0.02244645357131958, 0.12554673850536346, -0.10700714588165283, 0.03081144392490387, 1.246563196182251, -0.11790081113576889, 0.07798135280609131, -0.03425091505050659]} +{"t": 14.3362, "q": [-0.3462330996990204, -0.014601793140172958, 0.014476639218628407, 0.6217138767242432, -0.2955307066440582, 0.02419165149331093, -0.33139610290527344, 0.005428587552160025, -0.002008784329518676, 0.6207253336906433, -0.32858899235725403, 0.003769604954868555, -0.018212977796792984, 0.024334263056516647, -0.019269252195954323, -2.843904495239258, 2.247246026992798, 2.1965887546539307, -0.13213807344436646, -0.19609788060188293, -0.12714064121246338, 0.022434469312429428, 0.1255587339401245, -0.10704310238361359, 0.030775491148233414, 1.2465392351150513, -0.11788882315158844, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.3531, "q": [-0.3463098108768463, -0.014593271538615227, 0.014503423124551773, 0.6215093731880188, -0.2954263687133789, 0.02399679273366928, -0.3315154016017914, 0.00552233075723052, -0.0018882573349401355, 0.6206400990486145, -0.3288537263870239, 0.0033870164770632982, -0.018360288813710213, 0.024357009679079056, -0.019264688715338707, -2.8458938598632812, 2.2472219467163086, 2.1911957263946533, -0.13193432986736298, -0.1961098611354828, -0.12714064121246338, 0.02238653227686882, 0.12558269500732422, -0.10706707090139389, 0.030787475407123566, 1.2465152740478516, -0.11790081113576889, 0.07794540375471115, -0.03423893079161644]} +{"t": 14.3698, "q": [-0.3463524281978607, -0.014482483267784119, 0.01444985531270504, 0.6211344003677368, -0.2953178286552429, 0.023794718086719513, -0.33175402879714966, 0.005599029827862978, -0.0018614735454320908, 0.6205719113349915, -0.32914718985557556, 0.002997402334585786, -0.018373681232333183, 0.02440265193581581, -0.01931413635611534, -2.8487942218780518, 2.2471981048583984, 2.1852874755859375, -0.13171862065792084, -0.1961338371038437, -0.12716461718082428, 0.022410500794649124, 0.12572650611400604, -0.1070910394191742, 0.03076350688934326, 1.2465392351150513, -0.11787684261798859, 0.07796937227249146, -0.03422694653272629]} +{"t": 14.3865, "q": [-0.3465058207511902, -0.014448394998908043, 0.01446324773132801, 0.6205463409423828, -0.2952675521373749, 0.023621322587132454, -0.33180516958236694, 0.005573463626205921, -0.0017677302239462733, 0.620461106300354, -0.3293363153934479, 0.0030136059504002333, -0.018373681232333183, 0.024395177140831947, -0.01935795694589615, -2.8526411056518555, 2.2472219467163086, 2.1788878440856934, -0.13108345866203308, -0.19607390463352203, -0.12714064121246338, 0.022374548017978668, 0.12584635615348816, -0.10710301995277405, 0.030787475407123566, 1.2465511560440063, -0.11790081113576889, 0.07796937227249146, -0.03425091505050659]} +{"t": 14.4033, "q": [-0.3468126058578491, -0.014405785128474236, 0.014503423124551773, 0.6197367310523987, -0.2952800393104553, 0.02362849935889244, -0.3318648040294647, 0.00558198569342494, -0.0016873788554221392, 0.6202906966209412, -0.32938969135284424, 0.0030068152118474245, -0.01845403201878071, 0.024296920746564865, -0.019498134031891823, -2.8562722206115723, 2.247246026992798, 2.1729438304901123, -0.1303524225950241, -0.19609788060188293, -0.127188578248024, 0.022350579500198364, 0.12594223022460938, -0.1070910394191742, 0.030787475407123566, 1.2465871572494507, -0.11790081113576889, 0.07798135280609131, -0.03422694653272629]} +{"t": 14.42, "q": [-0.3470597565174103, -0.014354651793837547, 0.014664125628769398, 0.6186118125915527, -0.29522567987442017, 0.023491278290748596, -0.33216309547424316, 0.005471197888255119, -0.0014998923288658261, 0.6198901534080505, -0.32990017533302307, 0.003817465156316757, -0.018762046471238136, 0.024183686822652817, -0.01971626468002796, -2.8587889671325684, 2.247257947921753, 2.1678504943847656, -0.12956145405769348, -0.19609788060188293, -0.12716461718082428, 0.02238653227686882, 0.12600214779376984, -0.10703111439943314, 0.030775491148233414, 1.246563196182251, -0.11788882315158844, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.4368, "q": [-0.3472898602485657, -0.014235341921448708, 0.014851612038910389, 0.6176744103431702, -0.29502546787261963, 0.023173855617642403, -0.33229944109916687, 0.0054456316865980625, -0.0011249192757532, 0.6194981336593628, -0.33054426312446594, 0.0049633849412202835, -0.018922748044133186, 0.02420688420534134, -0.019887397065758705, -2.861485481262207, 2.2472219467163086, 2.161618709564209, -0.12831510603427887, -0.19607390463352203, -0.12720057368278503, 0.022338595241308212, 0.1260380893945694, -0.10704310238361359, 0.030787475407123566, 1.246563196182251, -0.11790081113576889, 0.07796937227249146, -0.034214962273836136]} +{"t": 14.4537, "q": [-0.34726428985595703, -0.014209775254130363, 0.014918571338057518, 0.616941511631012, -0.29489198327064514, 0.02295740880072117, -0.33258920907974243, 0.005403021350502968, -0.0006160272168926895, 0.6193788051605225, -0.33094674348831177, 0.005584273487329483, -0.01898970827460289, 0.024214809760451317, -0.020019281655550003, -2.8638103008270264, 2.247246026992798, 2.1558542251586914, -0.1269848495721817, -0.19609788060188293, -0.127188578248024, 0.022338595241308212, 0.12609802186489105, -0.10703111439943314, 0.03076350688934326, 1.2465871572494507, -0.11790081113576889, 0.077957384288311, -0.03419099375605583]} +{"t": 14.4704, "q": [-0.34726428985595703, -0.014167165383696556, 0.014811436645686626, 0.6165324449539185, -0.2948252558708191, 0.02285643294453621, -0.333109050989151, 0.005360410548746586, -0.00037497308221645653, 0.6193361878395081, -0.33109378814697266, 0.005440319888293743, -0.01913701929152012, 0.02423805743455887, -0.020209938287734985, -2.8653564453125, 2.247282028198242, 2.1517555713653564, -0.12570254504680634, -0.19606192409992218, -0.127188578248024, 0.022278673946857452, 0.12619389593601227, -0.10703111439943314, 0.030775491148233414, 1.2465871572494507, -0.11787684261798859, 0.077957384288311, -0.03423893079161644]} +{"t": 14.4872, "q": [-0.34726428985595703, -0.014175686985254288, 0.014690909534692764, 0.6163619756698608, -0.2948252260684967, 0.022841952741146088, -0.3331942558288574, 0.005360410548746586, -0.00040175687172450125, 0.6193276643753052, -0.33124902844429016, 0.0052964212372899055, -0.01929772086441517, 0.024284053593873978, -0.020396016538143158, -2.867513418197632, 2.247257947921753, 2.1483161449432373, -0.12443221360445023, -0.19604994356632233, -0.127188578248024, 0.022278673946857452, 0.12632571160793304, -0.10703111439943314, 0.030787475407123566, 1.2465871572494507, -0.11790081113576889, 0.07794540375471115, -0.03423893079161644]} +{"t": 14.5039, "q": [-0.3472728133201599, -0.014175686985254288, 0.014677518047392368, 0.616191565990448, -0.29480868577957153, 0.022870948538184166, -0.3331942558288574, 0.005360410548746586, -0.00046871634549461305, 0.6192851066589355, -0.33140772581100464, 0.005043625831604004, -0.01933789812028408, 0.02431492507457733, -0.020601416006684303, -2.8718037605285645, 2.2473058700561523, 2.141904592514038, -0.12299410253763199, -0.19619375467300415, -0.12717659771442413, 0.022338595241308212, 0.12646952271461487, -0.10704310238361359, 0.03076350688934326, 1.2465871572494507, -0.11788882315158844, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.5206, "q": [-0.34731540083885193, -0.014116032049059868, 0.014677518047392368, 0.6161404252052307, -0.2948128283023834, 0.02286370098590851, -0.3331942558288574, 0.005360410548746586, -0.0006695947959087789, 0.6192936301231384, -0.3315781056880951, 0.0046819886192679405, -0.019230762496590614, 0.024178767576813698, -0.020755792036652565, -2.875746726989746, 2.2475216388702393, 2.134941816329956, -0.12209528684616089, -0.19639748334884644, -0.1272125542163849, 0.02232661098241806, 0.12657739222049713, -0.10703111439943314, 0.030739538371562958, 1.2466111183166504, -0.11787684261798859, 0.077957384288311, -0.03423893079161644]} +{"t": 14.5373, "q": [-0.34734097123146057, -0.014056377112865448, 0.014583774842321873, 0.6162427067756653, -0.294758677482605, 0.022813310846686363, -0.33322834968566895, 0.005411543417721987, -0.0011650949018076062, 0.6192851066589355, -0.3309478461742401, 0.0031149331480264664, -0.019217370077967644, 0.02397419884800911, -0.020855575799942017, -2.877328634262085, 2.2475335597991943, 2.1287100315093994, -0.12038154155015945, -0.19633756577968597, -0.12802748382091522, 0.022338595241308212, 0.1266373097896576, -0.10695920884609222, 0.030775491148233414, 1.2466470003128052, -0.11788882315158844, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.5543, "q": [-0.34739211201667786, -0.014039333909749985, 0.014155233278870583, 0.616353452205658, -0.2947545051574707, 0.02280609682202339, -0.33327949047088623, 0.005411543417721987, -0.001607027486898005, 0.6192851066589355, -0.33057013154029846, 0.0018478917190805078, -0.018601343035697937, 0.02342083491384983, -0.02104855515062809, -2.877927780151367, 2.247617483139038, 2.1200454235076904, -0.11514443904161453, -0.1964813768863678, -0.12909407913684845, 0.022518359124660492, 0.1266852468252182, -0.10671952366828918, 0.03082342818379402, 1.2466470003128052, -0.11788882315158844, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.571, "q": [-0.347451776266098, -0.014056377112865448, 0.013298152014613152, 0.6166517734527588, -0.2946961224079132, 0.022719532251358032, -0.33327949047088623, 0.005377454683184624, -0.0024908925406634808, 0.6192765831947327, -0.33050447702407837, 0.0012009069323539734, -0.017342504113912582, 0.022685006260871887, -0.021122226491570473, -2.87734055519104, 2.247605562210083, 2.1106977462768555, -0.11080614477396011, -0.1964334398508072, -0.1293337643146515, 0.022494390606880188, 0.12667326629161835, -0.1064918264746666, 0.030787475407123566, 1.2466709613800049, -0.11791279166936874, 0.07799334079027176, -0.03423893079161644]} +{"t": 14.5877, "q": [-0.3472813367843628, -0.014064900577068329, 0.012400895357131958, 0.6170182228088379, -0.29463788866996765, 0.0226763729006052, -0.33326244354248047, 0.005275189410895109, -0.0035220684949308634, 0.6193021535873413, -0.3306249678134918, 0.0007516859914176166, -0.01577565260231495, 0.021736882627010345, -0.02127162553369999, -2.876741409301758, 2.2475335597991943, 2.1002354621887207, -0.10401108860969543, -0.19636152684688568, -0.12896224856376648, 0.022422485053539276, 0.12669722735881805, -0.10634801536798477, 0.03081144392490387, 1.2466709613800049, -0.11791279166936874, 0.07796937227249146, -0.034214962273836136]} +{"t": 14.6045, "q": [-0.34698304533958435, -0.01407342217862606, 0.011664341203868389, 0.6175380349159241, -0.29457539319992065, 0.022611556574702263, -0.3332368731498718, 0.005258145276457071, -0.004379149992018938, 0.6193106770515442, -0.3306698501110077, 0.0007012389833107591, -0.014985531568527222, 0.02126678079366684, -0.02142230048775673, -2.876777410507202, 2.247365713119507, 2.0888025760650635, -0.0959576889872551, -0.1961338371038437, -0.12841098010540009, 0.022038990631699562, 0.1267331838607788, -0.10613229870796204, 0.030835412442684174, 1.246802806854248, -0.11793676018714905, 0.07799334079027176, -0.03422694653272629]} +{"t": 14.6212, "q": [-0.3469063639640808, -0.01407342217862606, 0.011048314161598682, 0.6183391213417053, -0.29437950253486633, 0.022344736382365227, -0.3332113027572632, 0.005292233545333147, -0.0049817850813269615, 0.6193447113037109, -0.33063262701034546, 0.0006645906250923872, -0.013619557954370975, 0.020812293514609337, -0.02176855131983757, -2.8781914710998535, 2.247257947921753, 2.081000804901123, -0.08665793389081955, -0.19589415192604065, -0.12740430235862732, 0.021583588793873787, 0.12675714492797852, -0.10601245611906052, 0.030919300392270088, 1.2470065355300903, -0.1179487481713295, 0.07800532132387161, -0.03425091505050659]} +{"t": 14.6381, "q": [-0.34684669971466064, -0.014226820319890976, 0.010740300640463829, 0.619182825088501, -0.29428374767303467, 0.022265562787652016, -0.33294713497161865, 0.005292233545333147, -0.005383542273193598, 0.6196345090866089, -0.3304966986179352, 0.0006125524523667991, -0.012869611382484436, 0.020804939791560173, -0.021871041506528854, -2.8820624351501465, 2.2471261024475098, 2.0734987258911133, -0.07651928067207336, -0.19561851024627686, -0.1267092078924179, 0.021403826773166656, 0.12678112089633942, -0.10600047558546066, 0.030883347615599632, 1.2471504211425781, -0.11796072870492935, 0.07807722687721252, -0.03423893079161644]} +{"t": 14.6548, "q": [-0.34693190455436707, -0.014235341921448708, 0.010780476033687592, 0.6201031804084778, -0.2942337691783905, 0.02222236804664135, -0.33292156457901, 0.005309277679771185, -0.005490677431225777, 0.6205122470855713, -0.33046770095825195, 0.0005759763880632818, -0.012923179194331169, 0.0208352692425251, -0.021861637011170387, -2.886340618133545, 2.2472219467163086, 2.0667994022369385, -0.06476275622844696, -0.19535484910011292, -0.125858336687088, 0.021260015666484833, 0.12681707739830017, -0.10637198388576508, 0.031075095757842064, 1.2478694915771484, -0.11800866574048996, 0.07811318337917328, -0.03422694653272629]} +{"t": 14.6716, "q": [-0.34706827998161316, -0.014337606728076935, 0.010901003144681454, 0.6214156150817871, -0.29424625635147095, 0.022229565307497978, -0.33266589045524597, 0.0054626758210361, -0.005504068918526173, 0.6214497089385986, -0.3304016888141632, 0.0005318319308571517, -0.012976747006177902, 0.020827604457736015, -0.021827351301908493, -2.892284870147705, 2.247246026992798, 2.0584704875946045, -0.05155613645911217, -0.19501930475234985, -0.1254388839006424, 0.021212078630924225, 0.12652945518493652, -0.10647983849048615, 0.030955253168940544, 1.248504638671875, -0.11796072870492935, 0.07810119539499283, -0.03423893079161644]} +{"t": 14.6884, "q": [-0.34735801815986633, -0.014405785128474236, 0.010941178537905216, 0.622685432434082, -0.2942836880683899, 0.022251099348068237, -0.3325210213661194, 0.00577799417078495, -0.005584420636296272, 0.6223785877227783, -0.330364465713501, 0.0004951835726387799, -0.013338328339159489, 0.02078952081501484, -0.02176339365541935, -2.896970748901367, 2.247246026992798, 2.0502731800079346, -0.03652791678905487, -0.19432421028614044, -0.12476776540279388, 0.021140173077583313, 0.1256905496120453, -0.10638396441936493, 0.030979221686720848, 1.248960018157959, -0.11796072870492935, 0.07807722687721252, -0.034202978014945984]} +{"t": 14.7051, "q": [-0.3473324477672577, -0.014422828331589699, 0.011209016665816307, 0.6234609484672546, -0.29434171319007874, 0.022192981094121933, -0.3325210213661194, 0.005991047248244286, -0.005396933760493994, 0.6231881976127625, -0.3303478956222534, 0.0004659953701775521, -0.014731084927916527, 0.020569121465086937, -0.02160932496190071, -2.900589942932129, 2.2472100257873535, 2.042819023132324, -0.02064882032573223, -0.19305388629436493, -0.12285029143095016, 0.021104220300912857, 0.1250913441181183, -0.10607238113880157, 0.030967237427830696, 1.2489360570907593, -0.1179247796535492, 0.07805325835943222, -0.034262899309396744]} +{"t": 14.7218, "q": [-0.3471534848213196, -0.014414306730031967, 0.011691125109791756, 0.6236057877540588, -0.2943374812602997, 0.02217128686606884, -0.3325551152229309, 0.006161489523947239, -0.005182663444429636, 0.6234524250030518, -0.3302903175354004, 0.00045096754911355674, -0.016056882217526436, 0.02023477852344513, -0.02140015736222267, -2.904940128326416, 2.247246026992798, 2.035029411315918, -0.0031638354994356632, -0.19144800305366516, -0.1203455924987793, 0.02105628326535225, 0.12498348206281662, -0.105892613530159, 0.030967237427830696, 1.2489120960235596, -0.11790081113576889, 0.07804127782583237, -0.03423893079161644]} +{"t": 14.7385, "q": [-0.3470597565174103, -0.01443134993314743, 0.012039314024150372, 0.6237762570381165, -0.29433321952819824, 0.022120684385299683, -0.33253806829452515, 0.00640863087028265, -0.004955001175403595, 0.6235802173614502, -0.3302614986896515, 0.0004434355942066759, -0.017101449891924858, 0.0198016706854105, -0.02111680433154106, -2.9093503952026367, 2.2471141815185547, 2.0281143188476562, 0.013158679008483887, -0.18969830870628357, -0.11658254265785217, 0.020984377712011337, 0.12533102929592133, -0.10578475892543793, 0.030703585594892502, 1.248900055885315, -0.11778096854686737, 0.07804127782583237, -0.03422694653272629]} +{"t": 14.7553, "q": [-0.3471790552139282, -0.014269430190324783, 0.012360719963908195, 0.6240233778953552, -0.2943456172943115, 0.022098936140537262, -0.33268293738365173, 0.006672816351056099, -0.004646987654268742, 0.6235631704330444, -0.3302450180053711, 0.00042878749081864953, -0.017744261771440506, 0.019315313547849655, -0.02075035311281681, -2.9139163494110107, 2.2471859455108643, 2.0224339962005615, 0.02907373011112213, -0.18641462922096252, -0.11304719746112823, 0.02099636197090149, 0.12564261257648468, -0.10567689687013626, 0.030799459666013718, 1.248960018157959, -0.11781691759824753, 0.07804127782583237, -0.03423893079161644]} +{"t": 14.772, "q": [-0.3472387194633484, -0.01418420858681202, 0.01252142246812582, 0.6242278814315796, -0.29437050223350525, 0.022084347903728485, -0.3327766954898834, 0.006902913562953472, -0.00445950124412775, 0.6235887408256531, -0.3302408456802368, 0.00040693304617889225, -0.01845403201878071, 0.018973398953676224, -0.020517250522971153, -2.920076370239258, 2.247246026992798, 2.0141408443450928, 0.0463549830019474, -0.1841735690832138, -0.11001519113779068, 0.020972393453121185, 0.12594223022460938, -0.10560499131679535, 0.030775491148233414, 1.249187707901001, -0.11781691759824753, 0.07802928984165192, -0.03423893079161644]} +{"t": 14.7887, "q": [-0.34720462560653687, -0.0141245536506176, 0.012454463168978691, 0.6243813037872314, -0.2943912446498871, 0.022077027708292007, -0.3328363299369812, 0.006988134700804949, -0.004405933897942305, 0.6236398816108704, -0.3302656412124634, 0.0004507324774749577, -0.019096843898296356, 0.018775878474116325, -0.02039797231554985, -2.926715612411499, 2.247162103652954, 2.005751848220825, 0.06211423873901367, -0.1826515793800354, -0.10778611898422241, 0.020840568467974663, 0.12626579403877258, -0.10554507374763489, 0.03075152263045311, 1.249247670173645, -0.11780493706464767, 0.07800532132387161, -0.034214962273836136]} +{"t": 14.8055, "q": [-0.3471790552139282, -0.01407342217862606, 0.012548206374049187, 0.6243983507156372, -0.29440370202064514, 0.022069742903113365, -0.33285337686538696, 0.006996656768023968, -0.004298798739910126, 0.6236484050750732, -0.3302697241306305, 0.0004435078881215304, -0.01932450570166111, 0.018707601353526115, -0.02040211856365204, -2.934001922607422, 2.247246026992798, 1.9982976913452148, 0.07796937227249146, -0.18154902756214142, -0.10578475892543793, 0.020792631432414055, 0.12651745975017548, -0.10553308576345444, 0.030727554112672806, 1.2493075132369995, -0.11781691759824753, 0.07800532132387161, -0.03423893079161644]} +{"t": 14.8223, "q": [-0.3471534848213196, -0.014064900577068329, 0.012467854656279087, 0.6244580149650574, -0.2943912446498871, 0.022077027708292007, -0.3328448534011841, 0.006971090566366911, -0.0042854067869484425, 0.6236910223960876, -0.3302861750125885, 0.0004436525341589004, -0.01947181671857834, 0.01862427219748497, -0.02046467550098896, -2.9393229484558105, 2.2471022605895996, 1.9938275814056396, 0.09189503639936447, -0.1799791008234024, -0.10365156084299088, 0.020780647173523903, 0.12660135328769684, -0.10550911724567413, 0.030727554112672806, 1.2496072053909302, -0.11780493706464767, 0.07804127782583237, -0.03422694653272629]} +{"t": 14.8391, "q": [-0.3471790552139282, -0.014047855511307716, 0.012414286844432354, 0.6243898272514343, -0.29443278908729553, 0.02207685075700283, -0.33289599418640137, 0.006971090566366911, -0.004245230928063393, 0.6236739754676819, -0.33033981919288635, 0.0004949846188537776, -0.019364681094884872, 0.018586628139019012, -0.020625554025173187, -2.9461419582366943, 2.2471859455108643, 1.9874639511108398, 0.10712698847055435, -0.17645573616027832, -0.10094312578439713, 0.020804615691304207, 0.12662532925605774, -0.10550911724567413, 0.03082342818379402, 1.2497988939285278, -0.11780493706464767, 0.07801730930805206, -0.03425091505050659]} +{"t": 14.8558, "q": [-0.3471790552139282, -0.013962633907794952, 0.012280368246138096, 0.6244750618934631, -0.29442861676216125, 0.02206963673233986, -0.3329300880432129, 0.00697961263358593, -0.0042854067869484425, 0.6236739754676819, -0.3303975462913513, 0.0005245348438620567, -0.019458424299955368, 0.018510881811380386, -0.020703012123703957, -2.952385902404785, 2.2473537921905518, 1.980513095855713, 0.12155599892139435, -0.17130251228809357, -0.09700031578540802, 0.02076866291463375, 0.1266373097896576, -0.10549713671207428, 0.030835412442684174, 1.250218391418457, -0.11781691759824753, 0.07800532132387161, -0.03423893079161644]} +{"t": 14.8727, "q": [-0.34729838371276855, -0.013775147497653961, 0.0121062733232975, 0.6245517730712891, -0.2944576144218445, 0.022047800943255424, -0.33326244354248047, 0.007013700902462006, -0.0043523660860955715, 0.6236228346824646, -0.3307822048664093, 0.0009273775503970683, -0.01949859969317913, 0.018450291827321053, -0.02077084593474865, -2.9569039344787598, 2.247257947921753, 1.9746527671813965, 0.1348465085029602, -0.16523849964141846, -0.0923624262213707, 0.02070874162018299, 0.12669722735881805, -0.10546118021011353, 0.03087136335670948, 1.2509973049163818, -0.11781691759824753, 0.07801730930805206, -0.03422694653272629]} +{"t": 14.8897, "q": [-0.34747734665870667, -0.013698449358344078, 0.012119665741920471, 0.6245347261428833, -0.29450759291648865, 0.02209099382162094, -0.33400386571884155, 0.00703926756978035, -0.0043523660860955715, 0.6235120296478271, -0.33156195282936096, 0.002081751823425293, -0.019244154915213585, 0.01833653822541237, -0.0208137109875679, -2.9628000259399414, 2.247269868850708, 1.966395616531372, 0.1480291485786438, -0.16267387568950653, -0.08894691616296768, 0.020684773102402687, 0.1266373097896576, -0.10546118021011353, 0.03082342818379402, 1.251584529876709, -0.11780493706464767, 0.07802928984165192, -0.03425091505050659]} +{"t": 14.9064, "q": [-0.34775856137275696, -0.013672882691025734, 0.011825043708086014, 0.6245602965354919, -0.2945158779621124, 0.022090958431363106, -0.3355889916419983, 0.007013700902462006, -0.004633595701307058, 0.6234779357910156, -0.33235785365104675, 0.003192705102264881, -0.019083451479673386, 0.01821523904800415, -0.020880943164229393, -2.9681930541992188, 2.247389793395996, 1.9585819244384766, 0.16127172112464905, -0.15996544063091278, -0.08742492645978928, 0.020612867549061775, 0.12662532925605774, -0.10547316819429398, 0.03085937909781933, 1.2519919872283936, -0.11782890558242798, 0.07800532132387161, -0.034214962273836136]} +{"t": 14.9232, "q": [-0.34821024537086487, -0.01364731602370739, 0.011691125109791756, 0.6245858669281006, -0.29453250765800476, 0.022090906277298927, -0.3373274803161621, 0.006937001831829548, -0.004687163513153791, 0.62352055311203, -0.33268699049949646, 0.003253704169765115, -0.018601343035697937, 0.017488844692707062, -0.02204602211713791, -2.972327470779419, 2.2474136352539062, 1.952481985092163, 0.1741427779197693, -0.15631024539470673, -0.08658602833747864, 0.020564930513501167, 0.12669722735881805, -0.10542523115873337, 0.03087136335670948, 1.2522915601730347, -0.11784088611602783, 0.07799334079027176, -0.03423893079161644]} +{"t": 14.9399, "q": [-0.3486533761024475, -0.013621749356389046, 0.011624165810644627, 0.6247307062149048, -0.29450762271881104, 0.02210545726120472, -0.33808594942092896, 0.006971090566366911, -0.004713947419077158, 0.623597264289856, -0.3326334059238434, 0.0032314511481672525, -0.018226370215415955, 0.017042197287082672, -0.022701481357216835, -2.9759347438812256, 2.2474136352539062, 1.9458786249160767, 0.18621088564395905, -0.15306252241134644, -0.08593887835741043, 0.020552946254611015, 0.1267092078924179, -0.10542523115873337, 0.030907316133379936, 1.2529387474060059, -0.11785287410020828, 0.07801730930805206, -0.03422694653272629]} +{"t": 14.9566, "q": [-0.34922435879707336, -0.013476874679327011, 0.01159738190472126, 0.6247051358222961, -0.29449930787086487, 0.022105492651462555, -0.33881035447120667, 0.0070648337714374065, -0.004673771560192108, 0.6235802173614502, -0.3325963020324707, 0.0032093245536088943, -0.018253153190016747, 0.016632452607154846, -0.02278592810034752, -2.979302406311035, 2.247401714324951, 1.9370942115783691, 0.19889020919799805, -0.14841264486312866, -0.08520784229040146, 0.02052897773683071, 0.12656539678573608, -0.10537729412317276, 0.03085937909781933, 1.2534180879592896, -0.11784088611602783, 0.07802928984165192, -0.03425091505050659]} +{"t": 14.9735, "q": [-0.34931811690330505, -0.013425741344690323, 0.011650948785245419, 0.6246710419654846, -0.29448679089546204, 0.02208385057747364, -0.3390745222568512, 0.007192665245383978, -0.004646987654268742, 0.6235887408256531, -0.3325384855270386, 0.0031652345787733793, -0.01833350583910942, 0.016070883721113205, -0.022859258577227592, -2.9815673828125, 2.247401714324951, 1.9304189682006836, 0.20961607992649078, -0.14452975988388062, -0.08435696363449097, 0.020385166630148888, 0.12644556164741516, -0.1053173691034317, 0.03085937909781933, 1.2534540891647339, -0.11784088611602783, 0.07800532132387161, -0.03425091505050659]} +{"t": 14.9904, "q": [-0.3493095934391022, -0.013314953073859215, 0.011677732691168785, 0.624713659286499, -0.29448261857032776, 0.022076638415455818, -0.33909156918525696, 0.007226753979921341, -0.004606812261044979, 0.6235716938972473, -0.3325424790382385, 0.0031434877309948206, -0.018400464206933975, 0.015403174795210361, -0.023009857162833214, -2.984203815460205, 2.2474136352539062, 1.9229048490524292, 0.22072546184062958, -0.1423366367816925, -0.08348211646080017, 0.020373182371258736, 0.12644556164741516, -0.1050417348742485, 0.030895331874489784, 1.2535380125045776, -0.11784088611602783, 0.07800532132387161, -0.03423893079161644]} +{"t": 15.0071, "q": [-0.34927549958229065, -0.013306431472301483, 0.011677732691168785, 0.6246966123580933, -0.2944742739200592, 0.022062210366129875, -0.33910009264945984, 0.00729493098333478, -0.004620204214006662, 0.6235802173614502, -0.3325381278991699, 0.0031071468256413937, -0.018400464206933975, 0.014432310126721859, -0.02345101162791252, -2.986229181289673, 2.2474617958068848, 1.9165292978286743, 0.23068435490131378, -0.13997575640678406, -0.08263123035430908, 0.02033722959458828, 0.12651745975017548, -0.10449045896530151, 0.030967237427830696, 1.2537776231765747, -0.11785287410020828, 0.07802928984165192, -0.03423893079161644]} +{"t": 15.0238, "q": [-0.34923288226127625, -0.013297909870743752, 0.01158398948609829, 0.6247051358222961, -0.2944742739200592, 0.022062210366129875, -0.3390659987926483, 0.007311975117772818, -0.004700555466115475, 0.6235887408256531, -0.33246704936027527, 0.0029104137793183327, -0.018212977796792984, 0.013575104996562004, -0.023968525230884552, -2.9884462356567383, 2.24749755859375, 1.9113761186599731, 0.23973244428634644, -0.13677595555782318, -0.08205599337816238, 0.020325245335698128, 0.12662532925605774, -0.10357965528964996, 0.030991205945611, 1.2540053129196167, -0.11784088611602783, 0.07799334079027176, -0.03423893079161644]} +{"t": 15.0406, "q": [-0.3492925465106964, -0.013306431472301483, 0.01126258447766304, 0.6247818470001221, -0.2944493591785431, 0.02206231653690338, -0.33895522356033325, 0.007363107521086931, -0.004995177034288645, 0.6235887408256531, -0.33210521936416626, 0.00221727741882205, -0.01797192357480526, 0.012862123548984528, -0.02446223795413971, -2.990675449371338, 2.2474377155303955, 1.9064505100250244, 0.24674321711063385, -0.1339716613292694, -0.081552654504776, 0.02034921385347843, 0.1266373097896576, -0.10265687108039856, 0.031039142981171608, 1.254328966140747, -0.11784088611602783, 0.07804127782583237, -0.03423893079161644]} +{"t": 15.0573, "q": [-0.3493522107601166, -0.013314953073859215, 0.01118223275989294, 0.6248159408569336, -0.29444101452827454, 0.02204788848757744, -0.338972270488739, 0.0073716300539672375, -0.005102312192320824, 0.6235887408256531, -0.3308231234550476, -2.370116089878138e-05, -0.01762373559176922, 0.012126327492296696, -0.024950917810201645, -2.9931440353393555, 2.2474136352539062, 1.9005903005599976, 0.2527712881565094, -0.13350427150726318, -0.08133693784475327, 0.020361198112368584, 0.12660135328769684, -0.10166218131780624, 0.031063111498951912, 1.254556655883789, -0.11784088611602783, 0.07804127782583237, -0.03425091505050659]} +{"t": 15.074, "q": [-0.34946298599243164, -0.013280864804983139, 0.011168841272592545, 0.6248756051063538, -0.29444101452827454, 0.02204788848757744, -0.3389893174171448, 0.007405718322843313, -0.005182663444429636, 0.6235887408256531, -0.33075717091560364, -9.690505248727277e-05, -0.017396071925759315, 0.010972399264574051, -0.02515893429517746, -2.9934916496276855, 2.2474136352539062, 1.8977140188217163, 0.2572413980960846, -0.13340839743614197, -0.08139685541391373, 0.020253339782357216, 0.12645754218101501, -0.1005236804485321, 0.031063111498951912, 1.2545806169509888, -0.11784088611602783, 0.07805325835943222, -0.034214962273836136]} +{"t": 15.0908, "q": [-0.3496760427951813, -0.013297909870743752, 0.011075098067522049, 0.6250715851783752, -0.29442018270492554, 0.022026265040040016, -0.3390148878097534, 0.007414240390062332, -0.005303190555423498, 0.6235802173614502, -0.3307160437107086, -9.726679127197713e-05, -0.017061274498701096, 0.00943097472190857, -0.02515493892133236, -2.993419885635376, 2.247269868850708, 1.8970788717269897, 0.2589910924434662, -0.13346831500530243, -0.08145678043365479, 0.02022937312722206, 0.12642158567905426, -0.09936121106147766, 0.031039142981171608, 1.2545925378799438, -0.11786485463380814, 0.07802928984165192, -0.03423893079161644]} +{"t": 15.1075, "q": [-0.3501106798648834, -0.013340519741177559, 0.011008137837052345, 0.6253783702850342, -0.29441604018211365, 0.022033514454960823, -0.33913418650627136, 0.007380152121186256, -0.00542371766641736, 0.6235631704330444, -0.3306543529033661, -0.00011959148105233908, -0.016713086515665054, 0.007692159153521061, -0.025044197216629982, -2.9934797286987305, 2.2473177909851074, 1.89705491065979, 0.2594345211982727, -0.13381585478782654, -0.08198408782482147, 0.020241355523467064, 0.12650547921657562, -0.09801898151636124, 0.031075095757842064, 1.2547004222869873, -0.11786485463380814, 0.07802928984165192, -0.034274883568286896]} +{"t": 15.1242, "q": [-0.3504515588283539, -0.013357564806938171, 0.010941178537905216, 0.625906765460968, -0.2944243848323822, 0.02204796113073826, -0.3391256630420685, 0.007363107521086931, -0.005477285478264093, 0.6235546469688416, -0.33064207434654236, -9.791777847567573e-05, -0.016565775498747826, 0.005998610053211451, -0.02475866861641407, -2.993515729904175, 2.2473537921905518, 1.8971507549285889, 0.2590869665145874, -0.13413943350315094, -0.08326639980077744, 0.020241355523467064, 0.12651745975017548, -0.09665277600288391, 0.031099064275622368, 1.2549760341644287, -0.11784088611602783, 0.07802928984165192, -0.034262899309396744]} +{"t": 15.1409, "q": [-0.35056233406066895, -0.013417219743132591, 0.010941178537905216, 0.6262476444244385, -0.2944410741329193, 0.022076815366744995, -0.3390830457210541, 0.007269364316016436, -0.005490677431225777, 0.6235631704330444, -0.33058488368988037, 1.7783566363505088e-05, -0.016525600105524063, 0.00433557340875268, -0.02432859316468239, -2.9933478832244873, 2.2473537921905518, 1.8971388339996338, 0.25893115997314453, -0.13418737053871155, -0.08500410616397858, 0.020241355523467064, 0.12646952271461487, -0.09517871588468552, 0.031075095757842064, 1.2551318407058716, -0.11786485463380814, 0.07805325835943222, -0.03423893079161644]} +{"t": 15.1577, "q": [-0.35056233406066895, -0.013417219743132591, 0.011008137837052345, 0.6263073086738586, -0.2944411337375641, 0.022091278806328773, -0.3390659987926483, 0.00711596617475152, -0.005396933760493994, 0.6235461235046387, -0.33052757382392883, 8.99025981198065e-05, -0.016565775498747826, 0.0029003052040934563, -0.023752495646476746, -2.993072271347046, 2.2473537921905518, 1.8971028327941895, 0.25884726643562317, -0.1341753900051117, -0.0869215875864029, 0.020253339782357216, 0.12646952271461487, -0.09393236041069031, 0.031099064275622368, 1.2552037239074707, -0.11784088611602783, 0.07805325835943222, -0.03422694653272629]} +{"t": 15.1744, "q": [-0.3505793809890747, -0.013400174677371979, 0.011088489554822445, 0.6263243556022644, -0.294466108083725, 0.022120116278529167, -0.33905747532844543, 0.006971090566366911, -0.005276407115161419, 0.6235290765762329, -0.33044588565826416, 0.0002634907723404467, -0.016525600105524063, 0.0017765671946108341, -0.02313675917685032, -2.992856502532959, 2.2473299503326416, 1.89705491065979, 0.2584398090839386, -0.13416339457035065, -0.08834771066904068, 0.020253339782357216, 0.12655341625213623, -0.09290171414613724, 0.031158985570073128, 1.2552636861801147, -0.11784088611602783, 0.07804127782583237, -0.03428686782717705]} +{"t": 15.1911, "q": [-0.35074129700660706, -0.013391653075814247, 0.011088489554822445, 0.6264692544937134, -0.29447445273399353, 0.02213454246520996, -0.3390319049358368, 0.0068091703578829765, -0.005276407115161419, 0.6234694719314575, -0.33037233352661133, 0.0003935689455829561, -0.01644524745643139, 0.0006528537487611175, -0.022519471123814583, -2.9926648139953613, 2.2473299503326416, 1.8970309495925903, 0.2578166425228119, -0.13416339457035065, -0.08895890414714813, 0.020253339782357216, 0.12655341625213623, -0.09175122529268265, 0.031099064275622368, 1.2556113004684448, -0.11782890558242798, 0.07801730930805206, -0.034274883568286896]} +{"t": 15.208, "q": [-0.3508606255054474, -0.013417219743132591, 0.011061705648899078, 0.6265544295310974, -0.29447028040885925, 0.02212733030319214, -0.3390319049358368, 0.006638728082180023, -0.005316582508385181, 0.6233842372894287, -0.33029481768608093, 0.0005308915278874338, -0.016244368627667427, -0.0006300220265984535, -0.022091399878263474, -2.9925808906555176, 2.2473537921905518, 1.896994948387146, 0.2576368749141693, -0.13416339457035065, -0.0890427902340889, 0.020253339782357216, 0.12657739222049713, -0.09074455499649048, 0.031099064275622368, 1.2561146020889282, -0.11790081113576889, 0.07804127782583237, -0.034274883568286896]} +{"t": 15.2247, "q": [-0.35096287727355957, -0.01340869627892971, 0.01099474634975195, 0.6266908049583435, -0.29447028040885925, 0.02212733030319214, -0.33899784088134766, 0.006544984877109528, -0.005343366414308548, 0.6233160495758057, -0.33022114634513855, 0.0005738244508393109, -0.01596313901245594, -0.0024519094731658697, -0.021686293184757233, -2.9924609661102295, 2.247365713119507, 1.8969351053237915, 0.25722941756248474, -0.1341753900051117, -0.08911469578742981, 0.020253339782357216, 0.12657739222049713, -0.08953414857387543, 0.031087080016732216, 1.2565460205078125, -0.11786485463380814, 0.07806524634361267, -0.03425091505050659]} +{"t": 15.2415, "q": [-0.35097992420196533, -0.013391653075814247, 0.010967962443828583, 0.6267760396003723, -0.2944745123386383, 0.02214900590479374, -0.3388955593109131, 0.006442719139158726, -0.005410325713455677, 0.6232734322547913, -0.33020928502082825, 0.0006536045111715794, -0.01581582799553871, -0.004759309813380241, -0.02126864530146122, -2.9923412799835205, 2.2474377155303955, 1.8968392610549927, 0.2564983665943146, -0.13413943350315094, -0.08919858932495117, 0.020253339782357216, 0.12657739222049713, -0.0881200060248375, 0.031063111498951912, 1.256725788116455, -0.11786485463380814, 0.07806524634361267, -0.03428686782717705]} +{"t": 15.2582, "q": [-0.35092878341674805, -0.013263821601867676, 0.01084743533283472, 0.626801609992981, -0.294491171836853, 0.02216341532766819, -0.33886998891830444, 0.006391586735844612, -0.005450501572340727, 0.6232563853263855, -0.3302053213119507, 0.0006753512425348163, -0.015762262046337128, -0.007453511003404856, -0.020812910050153732, -2.9923412799835205, 2.2474136352539062, 1.896827220916748, 0.25552764534950256, -0.13418737053871155, -0.08916263282299042, 0.02022937312722206, 0.12651745975017548, -0.08675380796194077, 0.031099064275622368, 1.256725788116455, -0.11786485463380814, 0.07806524634361267, -0.03428686782717705]} +{"t": 15.2749, "q": [-0.3509884476661682, -0.013195643201470375, 0.010646557435393333, 0.6268357038497925, -0.29448699951171875, 0.022156203165650368, -0.33886146545410156, 0.006400108803063631, -0.005504068918526173, 0.6230944395065308, -0.33014020323753357, 0.0007764621404930949, -0.015668518841266632, -0.01015516184270382, -0.02039651945233345, -2.9922094345092773, 2.2473177909851074, 1.8967792987823486, 0.2556235194206238, -0.13431920111179352, -0.08925850689411163, 0.020241355523467064, 0.12648151814937592, -0.08550744503736496, 0.03105112724006176, 1.2567497491836548, -0.11785287410020828, 0.07804127782583237, -0.03431083634495735]} +{"t": 15.2917, "q": [-0.3511674106121063, -0.01310189999639988, 0.010365326888859272, 0.6268782615661621, -0.29448699951171875, 0.022156203165650368, -0.33886146545410156, 0.006434197071939707, -0.005637987982481718, 0.6228899359703064, -0.33000996708869934, 0.0009786839364096522, -0.015440856106579304, -0.012446735054254532, -0.020196102559566498, -2.9918618202209473, 2.2473299503326416, 1.8968151807785034, 0.2556474804878235, -0.13436713814735413, -0.08921056985855103, 0.02022937312722206, 0.12655341625213623, -0.08438093215227127, 0.03105112724006176, 1.2567377090454102, -0.11787684261798859, 0.07802928984165192, -0.03428686782717705]} +{"t": 15.3085, "q": [-0.35123559832572937, -0.012982591055333614, 0.010084097273647785, 0.6269464492797852, -0.2944703996181488, 0.022170718759298325, -0.338784784078598, 0.00640863087028265, -0.0057719070464372635, 0.6227024793624878, -0.3298797905445099, 0.001195427612401545, -0.01505249086767435, -0.01479880977421999, -0.01990177482366562, -2.9914183616638184, 2.247269868850708, 1.8967912197113037, 0.2558991611003876, -0.13437911868095398, -0.08921056985855103, 0.02022937312722206, 0.12667326629161835, -0.08329036831855774, 0.031099064275622368, 1.2567497491836548, -0.11784088611602783, 0.07805325835943222, -0.03428686782717705]} +{"t": 15.3253, "q": [-0.35133785009384155, -0.012752493843436241, 0.009789476171135902, 0.6270231604576111, -0.29447051882743835, 0.022214142605662346, -0.338784784078598, 0.006331931799650192, -0.00579869095236063, 0.6225661039352417, -0.32977837324142456, 0.0014051455073058605, -0.014610557816922665, -0.016483096405863762, -0.019740773364901543, -2.9913344383239746, 2.2473058700561523, 1.8966714143753052, 0.2561148703098297, -0.13431920111179352, -0.08919858932495117, 0.02022937312722206, 0.12675714492797852, -0.08261924982070923, 0.031075095757842064, 1.2567737102508545, -0.11782890558242798, 0.07804127782583237, -0.03425091505050659]} +{"t": 15.342, "q": [-0.35157647728919983, -0.01256500743329525, 0.009548421949148178, 0.6271169185638428, -0.29452890157699585, 0.022300690412521362, -0.33877626061439514, 0.006170011591166258, -0.005865650251507759, 0.6223530173301697, -0.32972216606140137, 0.0016225401777774096, -0.014262368902564049, -0.018053825944662094, -0.019799649715423584, -2.9913225173950195, 2.2473177909851074, 1.8966834545135498, 0.2561148703098297, -0.13434316217899323, -0.08918660134077072, 0.02021738886833191, 0.12679310142993927, -0.08206797391176224, 0.031147001311182976, 1.2568336725234985, -0.11785287410020828, 0.07804127782583237, -0.03423893079161644]} +{"t": 15.3587, "q": [-0.35170429944992065, -0.01256500743329525, 0.009307367727160454, 0.6271510124206543, -0.2945205569267273, 0.02228626236319542, -0.3387933075428009, 0.006101834587752819, -0.005879042204469442, 0.6220377087593079, -0.32959654927253723, 0.0019046686356887221, -0.014034707099199295, -0.019366895779967308, -0.020033923909068108, -2.991394519805908, 2.2473299503326416, 1.8966953754425049, 0.25615084171295166, -0.13431920111179352, -0.08911469578742981, 0.020205404609441757, 0.12681707739830017, -0.08154066652059555, 0.031135017052292824, 1.256893515586853, -0.11786485463380814, 0.07801730930805206, -0.03422694653272629]} +{"t": 15.3755, "q": [-0.35179805755615234, -0.012462742626667023, 0.009186840616166592, 0.6271595358848572, -0.29451245069503784, 0.02235863171517849, -0.3387506902217865, 0.0059995693154633045, -0.005879042204469442, 0.6217394471168518, -0.32942166924476624, 0.0022009031381458044, -0.013887396082282066, -0.02038397081196308, -0.020220888778567314, -2.991382360458374, 2.2472338676452637, 1.896755337715149, 0.25672608613967896, -0.13429522514343262, -0.08913866430521011, 0.02021738886833191, 0.12679310142993927, -0.08103732764720917, 0.031123032793402672, 1.256953477859497, -0.11785287410020828, 0.07804127782583237, -0.034202978014945984]} +{"t": 15.3922, "q": [-0.35194292664527893, -0.012351954355835915, 0.00906631350517273, 0.6272447109222412, -0.29452916979789734, 0.022401949390769005, -0.33867397904396057, 0.005982525181025267, -0.005905826110392809, 0.6212707161903381, -0.3292103111743927, 0.002576718805357814, -0.013753476552665234, -0.021113060414791107, -0.020560747012495995, -2.991358518600464, 2.2471859455108643, 1.896767258644104, 0.25755298137664795, -0.13431920111179352, -0.08905477821826935, 0.020205404609441757, 0.12681707739830017, -0.08072574436664581, 0.031099064275622368, 1.2570613622665405, -0.11786485463380814, 0.07804127782583237, -0.03419099375605583]} +{"t": 15.409, "q": [-0.3520877957344055, -0.012368999421596527, 0.009012745693325996, 0.627261757850647, -0.29454582929611206, 0.022416358813643456, -0.33863139152526855, 0.005914348177611828, -0.005852258298546076, 0.6208446025848389, -0.32895001769065857, 0.003010188229382038, -0.013619557954370975, -0.021584194153547287, -0.02086959406733513, -2.991382360458374, 2.2472100257873535, 1.8968032598495483, 0.2577327489852905, -0.13431920111179352, -0.0890427902340889, 0.02021738886833191, 0.12681707739830017, -0.08055796474218369, 0.031123032793402672, 1.2571332454681396, -0.11785287410020828, 0.07802928984165192, -0.03425091505050659]} +{"t": 15.4257, "q": [-0.35215598344802856, -0.012394565157592297, 0.00906631350517273, 0.6273128986358643, -0.29453346133232117, 0.022452587261795998, -0.33858877420425415, 0.00577799417078495, -0.005825474392622709, 0.6205719113349915, -0.32866358757019043, 0.003211035393178463, -0.013539206236600876, -0.021865377202630043, -0.021063683554530144, -2.991394519805908, 2.247269868850708, 1.8967792987823486, 0.2575410008430481, -0.13428324460983276, -0.08913866430521011, 0.020205404609441757, 0.12681707739830017, -0.08041415363550186, 0.031135017052292824, 1.2573130130767822, -0.11787684261798859, 0.07805325835943222, -0.03423893079161644]} +{"t": 15.4424, "q": [-0.3523178994655609, -0.012368999421596527, 0.009039529599249363, 0.6273896098136902, -0.29453346133232117, 0.022452587261795998, -0.33858877420425415, 0.005692773032933474, -0.00575851509347558, 0.6203418374061584, -0.3284601867198944, 0.003543321741744876, -0.01352581474930048, -0.022078080102801323, -0.021173838526010513, -2.9913344383239746, 2.2472939491271973, 1.896755337715149, 0.257433146238327, -0.13428324460983276, -0.08916263282299042, 0.020181436091661453, 0.12682905793190002, -0.08029431104660034, 0.031147001311182976, 1.257924199104309, -0.11790081113576889, 0.07806524634361267, -0.03428686782717705]} +{"t": 15.4592, "q": [-0.3525139093399048, -0.012343432754278183, 0.008945786394178867, 0.6275515556335449, -0.29453349113464355, 0.022467050701379776, -0.33859729766845703, 0.00564164062961936, -0.00579869095236063, 0.6201117038726807, -0.3282889127731323, 0.0037597035989165306, -0.013565990142524242, -0.02226036600768566, -0.021254291757941246, -2.99125075340271, 2.2473177909851074, 1.8965635299682617, 0.25734925270080566, -0.13429522514343262, -0.08918660134077072, 0.02021738886833191, 0.12682905793190002, -0.08006660640239716, 0.031087080016732216, 1.2591346502304077, -0.11790081113576889, 0.07807722687721252, -0.03425091505050659]} +{"t": 15.4759, "q": [-0.35271844267845154, -0.01232638768851757, 0.008905611000955105, 0.6277475357055664, -0.29453766345977783, 0.022474264726042747, -0.33859729766845703, 0.005624596029520035, -0.005812082905322313, 0.6199668645858765, -0.3281254470348358, 0.003903530305251479, -0.013579382561147213, -0.022541219368577003, -0.02130175195634365, -2.9912025928497314, 2.2473299503326416, 1.8965156078338623, 0.2573971748352051, -0.13431920111179352, -0.08917462080717087, 0.020205404609441757, 0.12679310142993927, -0.07994676381349564, 0.031099064275622368, 1.2602012157440186, -0.11790081113576889, 0.07805325835943222, -0.03425091505050659]} +{"t": 15.4926, "q": [-0.35284626483917236, -0.012317866086959839, 0.008825259283185005, 0.627849817276001, -0.2945418357849121, 0.02248147875070572, -0.33859729766845703, 0.005616073962301016, -0.0058388663455843925, 0.6198901534080505, -0.3280681073665619, 0.003932085819542408, -0.013552598655223846, -0.023095151409506798, -0.021313486620783806, -2.991142749786377, 2.2473537921905518, 1.8964557647705078, 0.2573851943016052, -0.1342712640762329, -0.08916263282299042, 0.020205404609441757, 0.1267092078924179, -0.07971906661987305, 0.031075095757842064, 1.261207938194275, -0.11787684261798859, 0.07804127782583237, -0.034274883568286896]} +{"t": 15.5093, "q": [-0.3530081808567047, -0.012309344485402107, 0.00865116436034441, 0.6279009580612183, -0.29453766345977783, 0.022474264726042747, -0.33859729766845703, 0.005607551895081997, -0.005932609550654888, 0.6197623014450073, -0.32802724838256836, 0.00397528987377882, -0.013391895219683647, -0.023960646241903305, -0.021529292687773705, -2.9910829067230225, 2.247389793395996, 1.8963958024978638, 0.2574211657047272, -0.13429522514343262, -0.08911469578742981, 0.0201694518327713, 0.1266373097896576, -0.07932358980178833, 0.031147001311182976, 1.2619868516921997, -0.11786485463380814, 0.07804127782583237, -0.03425091505050659]} +{"t": 15.5262, "q": [-0.35311898589134216, -0.012275256216526031, 0.008530637249350548, 0.6279520988464355, -0.2945418357849121, 0.02248147875070572, -0.3385717272758484, 0.005624596029520035, -0.00605313666164875, 0.6196856498718262, -0.32799032330513, 0.0039822254329919815, -0.01311066560447216, -0.024978438392281532, -0.021934159100055695, -2.991010904312134, 2.247377872467041, 1.8962039947509766, 0.2574451267719269, -0.13431920111179352, -0.08912668377161026, 0.020193420350551605, 0.12660135328769684, -0.0788322314620018, 0.03111104853451252, 1.263161301612854, -0.11790081113576889, 0.07802928984165192, -0.03423893079161644]} +{"t": 15.543, "q": [-0.3533320128917694, -0.012232644483447075, 0.008289583027362823, 0.6279691457748413, -0.29453763365745544, 0.02245980128645897, -0.33858025074005127, 0.005633118096739054, -0.006280798930674791, 0.6195492744445801, -0.32798200845718384, 0.00396763114258647, -0.012816044501960278, -0.026133118197321892, -0.022478319704532623, -2.990831136703491, 2.2474136352539062, 1.8961081504821777, 0.2573851943016052, -0.13435514271259308, -0.08911469578742981, 0.020181436091661453, 0.12655341625213623, -0.07835286110639572, 0.031087080016732216, 1.2642039060592651, -0.11788882315158844, 0.07802928984165192, -0.034262899309396744]} +{"t": 15.5597, "q": [-0.3533746302127838, -0.012172989547252655, 0.007954785600304604, 0.6279606223106384, -0.29453763365745544, 0.02245980128645897, -0.3384779691696167, 0.005692773032933474, -0.006548637058585882, 0.6194384694099426, -0.32791534066200256, 0.0038217792753130198, -0.012534813955426216, -0.027469659224152565, -0.022928573191165924, -2.9906632900238037, 2.2474377155303955, 1.8959044218063354, 0.2571694850921631, -0.13436713814735413, -0.08910271525382996, 0.020181436091661453, 0.12655341625213623, -0.07764579355716705, 0.031099064275622368, 1.2654383182525635, -0.11787684261798859, 0.07802928984165192, -0.03422694653272629]} +{"t": 15.5765, "q": [-0.35335758328437805, -0.012036636471748352, 0.007633380591869354, 0.6279691457748413, -0.29453346133232117, 0.022452587261795998, -0.3383927643299103, 0.005760950036346912, -0.00676290737465024, 0.6193276643753052, -0.3279111087322235, 0.0037999602500349283, -0.012146449647843838, -0.028851283714175224, -0.023204443976283073, -2.990603446960449, 2.2474377155303955, 1.8957486152648926, 0.2571694850921631, -0.1344030797481537, -0.0890667587518692, 0.020193420350551605, 0.12648151814937592, -0.07686682045459747, 0.031087080016732216, 1.2667685747146606, -0.11790081113576889, 0.07802928984165192, -0.03423893079161644]} +{"t": 15.5933, "q": [-0.35336610674858093, -0.0119684599339962, 0.007445894181728363, 0.6279691457748413, -0.29452091455459595, 0.02243092842400074, -0.33830752968788147, 0.005829127039760351, -0.006910218391567469, 0.6192680597305298, -0.32787787914276123, 0.0037415651604533195, -0.011677732691168785, -0.02999730408191681, -0.02335520274937153, -2.990567445755005, 2.2474617958068848, 1.895556926727295, 0.25712156295776367, -0.13441507518291473, -0.0890427902340889, 0.0201694518327713, 0.12648151814937592, -0.07621967047452927, 0.031099064275622368, 1.2674636840820312, -0.11788882315158844, 0.07806524634361267, -0.03423893079161644]} +{"t": 15.6103, "q": [-0.3533831536769867, -0.01178097352385521, 0.007298583164811134, 0.6279691457748413, -0.29451674222946167, 0.02242371439933777, -0.33826491236686707, 0.005922870244830847, -0.007044136989861727, 0.6191743016242981, -0.3277741074562073, 0.003573604626581073, -0.011048314161598682, -0.031234504655003548, -0.02352801151573658, -2.99055552482605, 2.24747371673584, 1.8953771591186523, 0.2569417953491211, -0.1344510167837143, -0.08907874673604965, 0.020181436091661453, 0.12654143571853638, -0.07572831958532333, 0.031147001311182976, 1.26795494556427, -0.11790081113576889, 0.07802928984165192, -0.03423893079161644]} +{"t": 15.6269, "q": [-0.3533916771411896, -0.011593486182391644, 0.0071914480067789555, 0.6279520988464355, -0.2945167124271393, 0.02240925095975399, -0.3382564187049866, 0.006016613449901342, -0.00709770480170846, 0.6190634965896606, -0.32762452960014343, 0.0033108359202742577, -0.010191232897341251, -0.032289452850818634, -0.023659009486436844, -2.990567445755005, 2.2475576400756836, 1.895041584968567, 0.2556474804878235, -0.1344749927520752, -0.08917462080717087, 0.020181436091661453, 0.12657739222049713, -0.07517704367637634, 0.03111104853451252, 1.2685902118682861, -0.11787684261798859, 0.07804127782583237, -0.03425091505050659]} +{"t": 15.6437, "q": [-0.3533916771411896, -0.011397477239370346, 0.007218231912702322, 0.6279520988464355, -0.29452085494995117, 0.022402003407478333, -0.3382393717765808, 0.006161489523947239, -0.007164664100855589, 0.6189271807670593, -0.32753726840019226, 0.0031575418543070555, -0.009535029530525208, -0.03318478912115097, -0.023743940517306328, -2.990579605102539, 2.2475576400756836, 1.894598126411438, 0.2550962269306183, -0.13453491032123566, -0.08919858932495117, 0.020181436091661453, 0.12660135328769684, -0.0746377557516098, 0.031087080016732216, 1.269201397895813, -0.11790081113576889, 0.07804127782583237, -0.03423893079161644]} +{"t": 15.6604, "q": [-0.35336610674858093, -0.011235557496547699, 0.007178056053817272, 0.6279265284538269, -0.29452913999557495, 0.022387485951185226, -0.33826491236686707, 0.0063063655979931355, -0.007151272147893906, 0.6187737584114075, -0.327425092458725, 0.002960465382784605, -0.008852043189108372, -0.034209344536066055, -0.023904861882328987, -2.990591526031494, 2.2475454807281494, 1.8939869403839111, 0.25506025552749634, -0.13453491032123566, -0.08919858932495117, 0.0201694518327713, 0.12657739222049713, -0.07419434189796448, 0.03111104853451252, 1.2702679634094238, -0.11790081113576889, 0.07801730930805206, -0.034262899309396744]} +{"t": 15.6771, "q": [-0.3533916771411896, -0.011073637753725052, 0.007151272147893906, 0.6279009580612183, -0.2945207953453064, 0.022373057901859283, -0.3382564187049866, 0.006442719139158726, -0.007178056053817272, 0.6186288595199585, -0.3273214101791382, 0.0028070269618183374, -0.008236016146838665, -0.035180769860744476, -0.02405119314789772, -2.9906275272369385, 2.2475335597991943, 1.8930761814117432, 0.25508424639701843, -0.13453491032123566, -0.08917462080717087, 0.02015746757388115, 0.12654143571853638, -0.07383481413125992, 0.031039142981171608, 1.271382451057434, -0.11785287410020828, 0.07802928984165192, -0.03422694653272629]} +{"t": 15.6939, "q": [-0.3533831536769867, -0.010962849482893944, 0.007111096754670143, 0.6278668642044067, -0.2945331931114197, 0.022351311519742012, -0.3382393717765808, 0.0065620290115475655, -0.007245015352964401, 0.6184840202331543, -0.3272632360458374, 0.002704830840229988, -0.007566420827060938, -0.035992879420518875, -0.024189496412873268, -2.990687370300293, 2.2475335597991943, 1.8921653032302856, 0.25510820746421814, -0.13455888628959656, -0.08918660134077072, 0.0201694518327713, 0.12645754218101501, -0.07340338081121445, 0.03111104853451252, 1.272353172302246, -0.11785287410020828, 0.07801730930805206, -0.03423893079161644]} +{"t": 15.7106, "q": [-0.3533831536769867, -0.010860584676265717, 0.006977177690714598, 0.6278327703475952, -0.2945372760295868, 0.022329598665237427, -0.3381882309913635, 0.006681338418275118, -0.007285191211849451, 0.6183391213417053, -0.3271346390247345, 0.00250762770883739, -0.007044136989861727, -0.0369185246527195, -0.024256639182567596, -2.990675449371338, 2.2475335597991943, 1.8913264274597168, 0.25513216853141785, -0.13453491032123566, -0.08917462080717087, 0.020181436091661453, 0.1264096051454544, -0.07291202992200851, 0.031099064275622368, 1.2734557390213013, -0.11784088611602783, 0.07801730930805206, -0.03425091505050659]} +{"t": 15.7275, "q": [-0.35344281792640686, -0.010766841471195221, 0.0068030827678740025, 0.6278071999549866, -0.2945331037044525, 0.022322384640574455, -0.3381967544555664, 0.0067665595561265945, -0.007405718322843313, 0.6181857585906982, -0.32703888416290283, 0.0023106595035642385, -0.006669164169579744, -0.03766176849603653, -0.024252209812402725, -2.9906513690948486, 2.2475335597991943, 1.8905714750289917, 0.25527599453926086, -0.13459482789039612, -0.08903080970048904, 0.0201694518327713, 0.12634968757629395, -0.07245662808418274, 0.031099064275622368, 1.273983120918274, -0.11787684261798859, 0.07799334079027176, -0.03425091505050659]} +{"t": 15.7443, "q": [-0.35363030433654785, -0.01057935506105423, 0.006602204404771328, 0.627773106098175, -0.2945414185523987, 0.02232234925031662, -0.33817118406295776, 0.00686030276119709, -0.007553029339760542, 0.6178362965583801, -0.3269645571708679, 0.0022519209887832403, -0.00638793408870697, -0.03837517648935318, -0.024394657462835312, -2.9906275272369385, 2.2475216388702393, 1.8896007537841797, 0.2553958296775818, -0.13459482789039612, -0.08905477821826935, 0.020181436091661453, 0.12644556164741516, -0.07207313179969788, 0.031087080016732216, 1.2744624614715576, -0.11786485463380814, 0.07801730930805206, -0.03425091505050659]} +{"t": 15.761, "q": [-0.3538263142108917, -0.010477089323103428, 0.006414717994630337, 0.6277390122413635, -0.29454559087753296, 0.02232956327497959, -0.33817118406295776, 0.006945523899048567, -0.00772712379693985, 0.6174954175949097, -0.326811283826828, 0.0020544826984405518, -0.0062272315844893456, -0.03897523134946823, -0.02463752217590809, -2.990603446960449, 2.2475335597991943, 1.8887139558792114, 0.25527599453926086, -0.13466674089431763, -0.0890907272696495, 0.0201694518327713, 0.12650547921657562, -0.07170161604881287, 0.031039142981171608, 1.2750136852264404, -0.11786485463380814, 0.07800532132387161, -0.03423893079161644]} +{"t": 15.7777, "q": [-0.3540308475494385, -0.010391868650913239, 0.006240623537451029, 0.6276708245277405, -0.2945413887500763, 0.0223078690469265, -0.33817970752716064, 0.006971090566366911, -0.007847650907933712, 0.617171585559845, -0.326732873916626, 0.002002932596951723, -0.006120096426457167, -0.03950685262680054, -0.02483489364385605, -2.990567445755005, 2.2475454807281494, 1.8878870010375977, 0.2551921010017395, -0.13465476036071777, -0.08916263282299042, 0.020181436091661453, 0.12650547921657562, -0.07135407626628876, 0.031063111498951912, 1.2755769491195679, -0.11787684261798859, 0.07800532132387161, -0.03423893079161644]} +{"t": 15.7945, "q": [-0.3542012870311737, -0.010238470509648323, 0.006160271819680929, 0.6276708245277405, -0.29456213116645813, 0.02230054885149002, -0.33817970752716064, 0.0070222229696810246, -0.008021745830774307, 0.6169244647026062, -0.32668358087539673, 0.0020025167614221573, -0.005972785409539938, -0.03994768112897873, -0.025089075788855553, -2.990579605102539, 2.2475335597991943, 1.8870600461959839, 0.25518012046813965, -0.13461880385875702, -0.08916263282299042, 0.0201694518327713, 0.12651745975017548, -0.07107844203710556, 0.031027158722281456, 1.2759004831314087, -0.11784088611602783, 0.07801730930805206, -0.034262899309396744]} +{"t": 15.8113, "q": [-0.35427796840667725, -0.01022142544388771, 0.006066528614610434, 0.6276537775993347, -0.2945703864097595, 0.022286050021648407, -0.33817118406295776, 0.0070307450369000435, -0.008048529736697674, 0.6167880892753601, -0.32665494084358215, 0.002024046378210187, -0.005959393456578255, -0.04044106975197792, -0.02521263249218464, -2.990603446960449, 2.2475335597991943, 1.8861253261566162, 0.25522804260253906, -0.13467872142791748, -0.08911469578742981, 0.0201694518327713, 0.12651745975017548, -0.07080280035734177, 0.031027158722281456, 1.2762120962142944, -0.11784088611602783, 0.07801730930805206, -0.03422694653272629]} +{"t": 15.828, "q": [-0.35436320304870605, -0.010170293040573597, 0.0059995693154633045, 0.6276623010635376, -0.29458287358283997, 0.022293228656053543, -0.33817970752716064, 0.0070307450369000435, -0.008035137318074703, 0.6166517734527588, -0.32663848996162415, 0.002023901790380478, -0.005972785409539938, -0.04083577170968056, -0.025309549644589424, -2.9907472133636475, 2.2475335597991943, 1.8845913410186768, 0.25520408153533936, -0.13469070196151733, -0.08910271525382996, 0.020193420350551605, 0.12654143571853638, -0.07052716612815857, 0.031015174463391304, 1.2763679027557373, -0.11785287410020828, 0.07802928984165192, -0.034262899309396744]} +{"t": 15.8448, "q": [-0.35441434383392334, -0.01016177050769329, 0.005946001503616571, 0.6276452541351318, -0.29458707571029663, 0.022314904257655144, -0.3381626605987549, 0.00703926756978035, -0.008035137318074703, 0.616489827632904, -0.3266385793685913, 0.0020384236704558134, -0.005905826110392809, -0.04117714986205101, -0.025341980159282684, -2.990819215774536, 2.2475454807281494, 1.88212251663208, 0.2551441490650177, -0.13466674089431763, -0.08911469578742981, 0.020193420350551605, 0.12656539678573608, -0.07015565782785416, 0.031039142981171608, 1.2764757871627808, -0.11787684261798859, 0.07804127782583237, -0.034262899309396744]} +{"t": 15.8617, "q": [-0.35446545481681824, -0.01016177050769329, 0.005892434157431126, 0.6275771260261536, -0.29458290338516235, 0.022307690232992172, -0.33817118406295776, 0.00703926756978035, -0.00806192122399807, 0.6163023710250854, -0.32659775018692017, 0.0020816458854824305, -0.005879042204469442, -0.04141239449381828, -0.025381730869412422, -2.990807294845581, 2.2475335597991943, 1.8798575401306152, 0.2550962269306183, -0.13469070196151733, -0.0890907272696495, 0.0201694518327713, 0.12654143571853638, -0.0698200985789299, 0.031039142981171608, 1.2765357494354248, -0.11784088611602783, 0.07804127782583237, -0.034262899309396744]} +{"t": 15.8784, "q": [-0.3544739782810211, -0.010144727304577827, 0.00579869095236063, 0.6275089383125305, -0.29458704590797424, 0.022300440818071365, -0.33817118406295776, 0.00703926756978035, -0.008008353412151337, 0.6161745190620422, -0.3264632523059845, 0.0022620302625000477, -0.005825474392622709, -0.04163972660899162, -0.02533807046711445, -2.99055552482605, 2.2475576400756836, 1.878395438194275, 0.2550482749938965, -0.13466674089431763, -0.0890907272696495, 0.02015746757388115, 0.12650547921657562, -0.06935270875692368, 0.031015174463391304, 1.2765237092971802, -0.11786485463380814, 0.07801730930805206, -0.034274883568286896]} +{"t": 15.8951, "q": [-0.35454216599464417, -0.01009359396994114, 0.005812082905322313, 0.6274237036705017, -0.29458287358283997, 0.022293228656053543, -0.33817118406295776, 0.0070648337714374065, -0.008021745830774307, 0.6159359216690063, -0.3264220952987671, 0.0022471467964351177, -0.005825474392622709, -0.04180615022778511, -0.025234242901206017, -2.9903876781463623, 2.2475335597991943, 1.8778321743011475, 0.2550482749938965, -0.13465476036071777, -0.08910271525382996, 0.02015746757388115, 0.12648151814937592, -0.06880144029855728, 0.030991205945611, 1.276619553565979, -0.11786485463380814, 0.07804127782583237, -0.03428686782717705]} +{"t": 15.9119, "q": [-0.35469555854797363, -0.010050983168184757, 0.005812082905322313, 0.6273810863494873, -0.2945745587348938, 0.02229326404631138, -0.33817118406295776, 0.00711596617475152, -0.008128880523145199, 0.615603506565094, -0.3263562321662903, 0.0022320463322103024, -0.0058388663455843925, -0.041957754641771317, -0.025218192487955093, -2.9904236793518066, 2.2475576400756836, 1.8777244091033936, 0.25506025552749634, -0.13461880385875702, -0.08911469578742981, 0.02015746757388115, 0.12651745975017548, -0.06846588104963303, 0.031015174463391304, 1.2765955924987793, -0.11785287410020828, 0.07801730930805206, -0.0342988520860672]} +{"t": 15.9287, "q": [-0.35482341051101685, -0.010025417432188988, 0.00579869095236063, 0.6273043751716614, -0.2945787310600281, 0.02230047807097435, -0.33817970752716064, 0.007158576976507902, -0.008276191540062428, 0.6153052449226379, -0.32628199458122253, 0.002187811303883791, -0.005825474392622709, -0.04210962727665901, -0.02527068555355072, -2.990471601486206, 2.2475576400756836, 1.8777483701705933, 0.255120187997818, -0.13469070196151733, -0.08911469578742981, 0.020181436091661453, 0.12648151814937592, -0.06809436529874802, 0.031039142981171608, 1.2766674757003784, -0.11786485463380814, 0.07802928984165192, -0.03428686782717705]} +{"t": 15.9454, "q": [-0.35486599802970886, -0.009957239963114262, 0.0057719070464372635, 0.6272277235984802, -0.2945745587348938, 0.02229326404631138, -0.33817118406295776, 0.007218231912702322, -0.008369934745132923, 0.6151518821716309, -0.32626140117645264, 0.002180369570851326, -0.00579869095236063, -0.04236752539873123, -0.025286484509706497, -2.9904837608337402, 2.2475576400756836, 1.8777602910995483, 0.2550962269306183, -0.13464276492595673, -0.08910271525382996, 0.0201694518327713, 0.12650547921657562, -0.0674472227692604, 0.031027158722281456, 1.2766915559768677, -0.11785287410020828, 0.07801730930805206, -0.0342988520860672]} +{"t": 15.9622, "q": [-0.3549000918865204, -0.00988906342536211, 0.005704947747290134, 0.6271680593490601, -0.2945787012577057, 0.02228601463139057, -0.33817118406295776, 0.007260842248797417, -0.008410110138356686, 0.6150240302085876, -0.32623231410980225, 0.002129271626472473, -0.00579869095236063, -0.04259501025080681, -0.0252819936722517, -2.9904837608337402, 2.2475576400756836, 1.877772331237793, 0.25520408153533936, -0.13467872142791748, -0.08910271525382996, 0.020181436091661453, 0.12648151814937592, -0.06683602184057236, 0.031015174463391304, 1.2767993211746216, -0.11786485463380814, 0.07801730930805206, -0.03431083634495735]} +{"t": 15.9789, "q": [-0.35495975613594055, -0.009778276085853577, 0.005651379935443401, 0.627099871635437, -0.2945828437805176, 0.022278765216469765, -0.33817118406295776, 0.007311975117772818, -0.008436894044280052, 0.6148961782455444, -0.3262198567390442, 0.002107362262904644, -0.005731731187552214, -0.04273148626089096, -0.02527538128197193, -2.9904837608337402, 2.2475335597991943, 1.8777483701705933, 0.25520408153533936, -0.13461880385875702, -0.08911469578742981, 0.0201694518327713, 0.12650547921657562, -0.06656038761138916, 0.031003190204501152, 1.2767874002456665, -0.11787684261798859, 0.07804127782583237, -0.03431083634495735]} +{"t": 15.9956, "q": [-0.35501089692115784, -0.009727142751216888, 0.005624596029520035, 0.6270146369934082, -0.2945703864097595, 0.022286050021648407, -0.338154137134552, 0.007363107521086931, -0.00847707036882639, 0.614700198173523, -0.32621967792510986, 0.0020783182699233294, -0.005664771888405085, -0.04282257333397865, -0.02529708668589592, -2.9904837608337402, 2.2475335597991943, 1.877772331237793, 0.2552879750728607, -0.13461880385875702, -0.08911469578742981, 0.02015746757388115, 0.12654143571853638, -0.0665244311094284, 0.031003190204501152, 1.2768113613128662, -0.11788882315158844, 0.07804127782583237, -0.03431083634495735]} +{"t": 16.0124, "q": [-0.35501089692115784, -0.009684532880783081, 0.0056112040765583515, 0.6269123554229736, -0.2945745289325714, 0.0222788006067276, -0.3381200432777405, 0.0073716300539672375, -0.008490461856126785, 0.6145723462104797, -0.32620304822921753, 0.0020491299219429493, -0.0055978125892579556, -0.04282257333397865, -0.02529708668589592, -2.990471601486206, 2.2475216388702393, 1.8777962923049927, 0.2553119361400604, -0.13459482789039612, -0.08912668377161026, 0.02015746757388115, 0.12657739222049713, -0.0665244311094284, 0.030991205945611, 1.2768232822418213, -0.11784088611602783, 0.07806524634361267, -0.0342988520860672]} +{"t": 16.0291, "q": [-0.3550194203853607, -0.009667487815022469, 0.005637987982481718, 0.6267845630645752, -0.294574499130249, 0.02226433716714382, -0.33809447288513184, 0.007380152121186256, -0.008503853343427181, 0.6143507957458496, -0.32618245482444763, 0.0020416700281202793, -0.005450501572340727, -0.042830172926187515, -0.025302156805992126, -2.9904837608337402, 2.247509717941284, 1.8777483701705933, 0.25538384914398193, -0.13464276492595673, -0.08911469578742981, 0.0201694518327713, 0.12660135328769684, -0.06651245057582855, 0.030991205945611, 1.276835322380066, -0.11785287410020828, 0.07802928984165192, -0.034274883568286896]} +{"t": 16.0458, "q": [-0.3550194203853607, -0.009641922079026699, 0.005624596029520035, 0.6266993284225464, -0.2945703864097595, 0.022286050021648407, -0.33804336190223694, 0.007397196255624294, -0.008517245762050152, 0.6141973733901978, -0.3261822760105133, 0.0020126260351389647, -0.005410325713455677, -0.042830172926187515, -0.025302156805992126, -2.990459680557251, 2.24749755859375, 1.8777962923049927, 0.2553958296775818, -0.13463078439235687, -0.0890907272696495, 0.0201694518327713, 0.12660135328769684, -0.06642855703830719, 0.030979221686720848, 1.27689528465271, -0.11785287410020828, 0.07801730930805206, -0.034274883568286896]} +{"t": 16.0625, "q": [-0.3549853265285492, -0.009641922079026699, 0.005624596029520035, 0.6266055703163147, -0.29457035660743713, 0.02227158658206463, -0.3380689322948456, 0.00743128452450037, -0.008517245762050152, 0.6141377091407776, -0.32616564631462097, 0.0019834376871585846, -0.005249623209238052, -0.04283773899078369, -0.025297438725829124, -2.9905195236206055, 2.24747371673584, 1.877784252166748, 0.25547972321510315, -0.13467872142791748, -0.08910271525382996, 0.02015746757388115, 0.12657739222049713, -0.06642855703830719, 0.031015174463391304, 1.2769192457199097, -0.11784088611602783, 0.07802928984165192, -0.034274883568286896]} +{"t": 16.0793, "q": [-0.35495975613594055, -0.009573744609951973, 0.005637987982481718, 0.626511812210083, -0.29457446932792664, 0.0222498569637537, -0.3380518853664398, 0.007482417393475771, -0.008503853343427181, 0.6140354871749878, -0.32615724205970764, 0.0019543033558875322, -0.00516927195712924, -0.0428074449300766, -0.025306524708867073, -2.99055552482605, 2.24749755859375, 1.877784252166748, 0.2555875778198242, -0.13464276492595673, -0.0890907272696495, 0.02015746757388115, 0.12651745975017548, -0.06639260798692703, 0.030979221686720848, 1.2769551277160645, -0.11785287410020828, 0.07802928984165192, -0.0342988520860672]} +{"t": 16.096, "q": [-0.35495975613594055, -0.00946295727044344, 0.005637987982481718, 0.6264436841011047, -0.2945827543735504, 0.022249821573495865, -0.3380604088306427, 0.007525027729570866, -0.008503853343427181, 0.6139246821403503, -0.32614073157310486, 0.0019396368879824877, -0.005102312192320824, -0.04281500726938248, -0.025301804766058922, -2.9906275272369385, 2.24747371673584, 1.8778082132339478, 0.2555995583534241, -0.13463078439235687, -0.0890907272696495, 0.0201694518327713, 0.12644556164741516, -0.06639260798692703, 0.030979221686720848, 1.276907205581665, -0.11788882315158844, 0.07804127782583237, -0.03431083634495735]} +{"t": 16.1127, "q": [-0.3549427092075348, -0.00943739153444767, 0.005678163841366768, 0.6262305974960327, -0.294582724571228, 0.022235358133912086, -0.3380604088306427, 0.0075846826657652855, -0.008490461856126785, 0.613737165927887, -0.32611995935440063, 0.0019031331175938249, -0.005008568987250328, -0.04279987886548042, -0.025311244651675224, -2.9906632900238037, 2.2474496364593506, 1.8779041767120361, 0.25568345189094543, -0.13461880385875702, -0.0890907272696495, 0.0201694518327713, 0.12642158567905426, -0.06635665148496628, 0.030955253168940544, 1.2769192457199097, -0.11787684261798859, 0.07805325835943222, -0.0342988520860672]} +{"t": 16.1296, "q": [-0.35490861535072327, -0.009369214065372944, 0.005678163841366768, 0.6261197924613953, -0.2945660650730133, 0.022220948711037636, -0.33803483843803406, 0.0076187714003026485, -0.008436894044280052, 0.6136178970336914, -0.326070100069046, 0.0018155495636165142, -0.004955001175403595, -0.0428074449300766, -0.025306524708867073, -2.9907472133636475, 2.2474136352539062, 1.8778802156448364, 0.25580328702926636, -0.13461880385875702, -0.08910271525382996, 0.02015746757388115, 0.1263616681098938, -0.06632070243358612, 0.030979221686720848, 1.27689528465271, -0.11784088611602783, 0.07802928984165192, -0.0342988520860672]} +{"t": 16.1463, "q": [-0.354857474565506, -0.009301036596298218, 0.005704947747290134, 0.6260260939598083, -0.2945660650730133, 0.022220948711037636, -0.33803483843803406, 0.007712514605373144, -0.008356543257832527, 0.6135241389274597, -0.3260451555252075, 0.0017717487644404173, -0.005048744846135378, -0.04279983788728714, -0.025301450863480568, -2.9907712936401367, 2.2474496364593506, 1.8779041767120361, 0.2558152675628662, -0.13459482789039612, -0.0890907272696495, 0.02015746757388115, 0.12632571160793304, -0.06630872189998627, 0.030943268910050392, 1.2768712043762207, -0.11786485463380814, 0.07802928984165192, -0.0342988520860672]} +{"t": 16.163, "q": [-0.35482341051101685, -0.009215815924108028, 0.005664771888405085, 0.6258897185325623, -0.29457443952560425, 0.022235393524169922, -0.33803483843803406, 0.007772169075906277, -0.008343150839209557, 0.6133962869644165, -0.32603687047958374, 0.0017571544740349054, -0.00516927195712924, -0.04282261058688164, -0.025306876748800278, -2.9908552169799805, 2.2474136352539062, 1.8779640197753906, 0.255863219499588, -0.13461880385875702, -0.08911469578742981, 0.0201694518327713, 0.12630175054073334, -0.06630872189998627, 0.030955253168940544, 1.2767874002456665, -0.11786485463380814, 0.07798135280609131, -0.0342988520860672]} +{"t": 16.1799, "q": [-0.3548063635826111, -0.009207293391227722, 0.005678163841366768, 0.6257362961769104, -0.2945702373981476, 0.022228162735700607, -0.3380518853664398, 0.007772169075906277, -0.008302975445985794, 0.6132599711418152, -0.3260287344455719, 0.0017716040601953864, -0.005263015162199736, -0.04279987886548042, -0.025311244651675224, -2.9908552169799805, 2.2474136352539062, 1.8779760599136353, 0.2558392286300659, -0.13459482789039612, -0.08911469578742981, 0.0201694518327713, 0.1263616681098938, -0.06628475338220596, 0.030991205945611, 1.276739478111267, -0.11784088611602783, 0.07798135280609131, -0.0342988520860672]} +{"t": 16.1967, "q": [-0.3547893166542053, -0.009224338456988335, 0.00571833923459053, 0.6256170272827148, -0.2945660650730133, 0.022220948711037636, -0.33804336190223694, 0.007780691608786583, -0.008262800052762032, 0.613200306892395, -0.326008141040802, 0.0017641441663727164, -0.00542371766641736, -0.042799800634384155, -0.02529166080057621, -2.9908790588378906, 2.247389793395996, 1.8780359029769897, 0.2559111416339874, -0.13463078439235687, -0.08911469578742981, 0.020145483314990997, 0.12662532925605774, -0.06626078486442566, 0.031027158722281456, 1.276679515838623, -0.11785287410020828, 0.07796937227249146, -0.0342988520860672]} +{"t": 16.2134, "q": [-0.3547466993331909, -0.009207293391227722, 0.005745123140513897, 0.625531792640686, -0.29456189274787903, 0.022213734686374664, -0.33804336190223694, 0.007772169075906277, -0.00814227294176817, 0.6131235957145691, -0.32598763704299927, 0.0017712423577904701, -0.005584420636296272, -0.042792197316884995, -0.025286585092544556, -2.990891218185425, 2.247401714324951, 1.8780359029769897, 0.2558991611003876, -0.13464276492595673, -0.08912668377161026, 0.02015746757388115, 0.1267331838607788, -0.0662248283624649, 0.031027158722281456, 1.276619553565979, -0.11790081113576889, 0.07796937227249146, -0.034322820603847504]} +{"t": 16.2303, "q": [-0.3546188771724701, -0.009215815924108028, 0.005704947747290134, 0.6253527998924255, -0.29456189274787903, 0.022213734686374664, -0.3380518853664398, 0.007763647008687258, -0.008048529736697674, 0.6130895018577576, -0.3259754478931427, 0.0017929167952388525, -0.0058388663455843925, -0.04278463125228882, -0.025291305035352707, -2.990915060043335, 2.247389793395996, 1.8780359029769897, 0.2559111416339874, -0.13467872142791748, -0.08917462080717087, 0.02015746757388115, 0.12676914036273956, -0.06610498577356339, 0.031075095757842064, 1.276619553565979, -0.11786485463380814, 0.07794540375471115, -0.03431083634495735]} +{"t": 16.247, "q": [-0.3545251190662384, -0.009224338456988335, 0.00571833923459053, 0.6252164840698242, -0.29456189274787903, 0.022213734686374664, -0.33804336190223694, 0.00774660287424922, -0.007928002625703812, 0.6130298376083374, -0.3259427547454834, 0.0018216893076896667, -0.006026353221386671, -0.042792197316884995, -0.025286585092544556, -2.99090313911438, 2.247389793395996, 1.8780598640441895, 0.25595909357070923, -0.13463078439235687, -0.08917462080717087, 0.02015746757388115, 0.12680508196353912, -0.06594919413328171, 0.031027158722281456, 1.276679515838623, -0.11786485463380814, 0.07796937227249146, -0.03428686782717705]} +{"t": 16.2637, "q": [-0.3545165956020355, -0.009215815924108028, 0.00571833923459053, 0.6251312494277954, -0.2945660650730133, 0.022220948711037636, -0.3380689322948456, 0.007763647008687258, -0.007861042395234108, 0.6129275560379028, -0.3258938789367676, 0.0018938829889521003, -0.006026353221386671, -0.04277706518769264, -0.025296024978160858, -2.990939140319824, 2.247377872467041, 1.8780839443206787, 0.25603097677230835, -0.13460682332515717, -0.08921056985855103, 0.02015746757388115, 0.12681707739830017, -0.06593720614910126, 0.031099064275622368, 1.276847243309021, -0.11785287410020828, 0.07798135280609131, -0.034262899309396744]} +{"t": 16.2804, "q": [-0.35454216599464417, -0.009207293391227722, 0.005704947747290134, 0.6250460147857666, -0.2945452928543091, 0.022213824093341827, -0.33803483843803406, 0.007763647008687258, -0.007941394113004208, 0.6127997636795044, -0.32581159472465515, 0.001878619659692049, -0.005986177362501621, -0.04279983788728714, -0.025301450863480568, -2.99090313911438, 2.2472939491271973, 1.8780958652496338, 0.2566421926021576, -0.13460682332515717, -0.08917462080717087, 0.0201694518327713, 0.12694889307022095, -0.06609300523996353, 0.031099064275622368, 1.2769911289215088, -0.11785287410020828, 0.07799334079027176, -0.03417900949716568]} +{"t": 16.2972, "q": [-0.35455068945884705, -0.009164683520793915, 0.005678163841366768, 0.6249863505363464, -0.2945285737514496, 0.0221849512308836, -0.3378729224205017, 0.007840346544981003, -0.008115489035844803, 0.6124929785728455, -0.32572081685066223, 0.001819736324250698, -0.0059995693154633045, -0.04279987886548042, -0.025311244651675224, -2.99092698097229, 2.2472338676452637, 1.8781079053878784, 0.2578406035900116, -0.13460682332515717, -0.08893493562936783, 0.02015746757388115, 0.12720057368278503, -0.06634467095136642, 0.031123032793402672, 1.2770509719848633, -0.11790081113576889, 0.07799334079027176, -0.033975277096033096]} +{"t": 16.3139, "q": [-0.3545336425304413, -0.008943108841776848, 0.005704947747290134, 0.6249096989631653, -0.29451191425323486, 0.022156095132231712, -0.3377024531364441, 0.008078965358436108, -0.008249407634139061, 0.612083911895752, -0.3254852592945099, 0.0016070347046479583, -0.005865650251507759, -0.04281500726938248, -0.025301804766058922, -2.99090313911438, 2.247174024581909, 1.8781917095184326, 0.2586435377597809, -0.13464276492595673, -0.08894691616296768, 0.0201694518327713, 0.12717659771442413, -0.0668000727891922, 0.031075095757842064, 1.2770509719848633, -0.11786485463380814, 0.07800532132387161, -0.033963292837142944]} +{"t": 16.3308, "q": [-0.354482501745224, -0.008602224290370941, 0.005704947747290134, 0.6247051358222961, -0.2944910228252411, 0.022120008245110512, -0.3375575840473175, 0.008351673372089863, -0.008276191540062428, 0.6116066575050354, -0.32525819540023804, 0.0014379891799762845, -0.005745123140513897, -0.04279231280088425, -0.025315964594483376, -2.990939140319824, 2.2472100257873535, 1.8781797885894775, 0.25900307297706604, -0.13465476036071777, -0.08898287266492844, 0.020145483314990997, 0.12714064121246338, -0.06796254217624664, 0.03105112724006176, 1.2769790887832642, -0.11785287410020828, 0.07798135280609131, -0.03395130857825279]} +{"t": 16.3476, "q": [-0.35432058572769165, -0.008363604545593262, 0.00571833923459053, 0.6244324445724487, -0.2944534718990326, 0.022055067121982574, -0.3373871445655823, 0.008769256994128227, -0.008249407634139061, 0.6111038327217102, -0.32499852776527405, 0.0013122381642460823, -0.005731731187552214, -0.042807478457689285, -0.02531631477177143, -2.990891218185425, 2.2471859455108643, 1.878167748451233, 0.25923076272010803, -0.13466674089431763, -0.08907874673604965, 0.0201694518327713, 0.12711668014526367, -0.06943660229444504, 0.03105112724006176, 1.276835322380066, -0.11787684261798859, 0.07796937227249146, -0.033903371542692184]} +{"t": 16.3643, "q": [-0.354295015335083, -0.00780966691672802, 0.005678163841366768, 0.6241341829299927, -0.294440895318985, 0.02200448326766491, -0.3372337520122528, 0.009246495552361012, -0.00831636693328619, 0.610370934009552, -0.3247256577014923, 0.0010483843507245183, -0.005691555794328451, -0.04282272607088089, -0.02533625438809395, -2.990891218185425, 2.2472100257873535, 1.8781797885894775, 0.25942251086235046, -0.13463078439235687, -0.0890907272696495, 0.02015746757388115, 0.12711668014526367, -0.07188138365745544, 0.031015174463391304, 1.2766915559768677, -0.11784088611602783, 0.07796937227249146, -0.03385543450713158]} +{"t": 16.381, "q": [-0.3542439043521881, -0.007161986082792282, 0.005664771888405085, 0.6239381432533264, -0.2943783104419708, 0.0218962412327528, -0.3370206952095032, 0.009791910648345947, -0.00839671865105629, 0.6095017194747925, -0.3243761956691742, 0.0010235273512080312, -0.005731731187552214, -0.04286834970116615, -0.02536669187247753, -2.99092698097229, 2.247162103652954, 1.8781437873840332, 0.2596142590045929, -0.13464276492595673, -0.08907874673604965, 0.02015746757388115, 0.12704476714134216, -0.07480553537607193, 0.030979221686720848, 1.276379942893982, -0.11785287410020828, 0.07796937227249146, -0.03386741876602173]} +{"t": 16.3977, "q": [-0.3541927635669708, -0.006650659255683422, 0.005637987982481718, 0.6236228346824646, -0.2941780388355255, 0.021549874916672707, -0.3367394804954529, 0.010524812154471874, -0.008450286462903023, 0.6085983514785767, -0.3241550922393799, 0.0011522895656526089, -0.005731731187552214, -0.042845577001571655, -0.02536126598715782, -2.9908430576324463, 2.247150182723999, 1.8781318664550781, 0.25987792015075684, -0.13465476036071777, -0.08905477821826935, 0.02015746757388115, 0.12706874310970306, -0.07904794812202454, 0.030883347615599632, 1.2762839794158936, -0.11786485463380814, 0.07794540375471115, -0.03386741876602173]} +{"t": 16.4145, "q": [-0.35409900546073914, -0.006386473774909973, 0.005517460871487856, 0.6231626272201538, -0.2940111458301544, 0.02126123569905758, -0.33656901121139526, 0.011172492988407612, -0.00847707036882639, 0.6077716946601868, -0.3240410089492798, 0.0013110722647979856, -0.005664771888405085, -0.04292156919836998, -0.02540219947695732, -2.9907472133636475, 2.247162103652954, 1.8780479431152344, 0.2601296007633209, -0.13466674089431763, -0.08905477821826935, 0.02015746757388115, 0.12711668014526367, -0.08385362476110458, 0.030847394838929176, 1.2762839794158936, -0.11784088611602783, 0.07792143523693085, -0.03375956416130066]} +{"t": 16.4313, "q": [-0.35399675369262695, -0.006224553566426039, 0.005356758367270231, 0.6225916743278503, -0.29376929998397827, 0.020842721685767174, -0.3363815248012543, 0.011590076610445976, -0.008584205061197281, 0.6070217490196228, -0.3239101469516754, 0.0014116044621914625, -0.00546389352530241, -0.04301273450255394, -0.025443488731980324, -2.9907472133636475, 2.247138023376465, 1.8780239820480347, 0.2603333294391632, -0.13467872142791748, -0.0890907272696495, 0.02015746757388115, 0.12706874310970306, -0.08893493562936783, 0.030727554112672806, 1.2763439416885376, -0.11785287410020828, 0.077957384288311, -0.03374757990241051]} +{"t": 16.448, "q": [-0.3538263142108917, -0.006233075633645058, 0.005075528286397457, 0.6218843460083008, -0.2934001088142395, 0.020229555666446686, -0.336168497800827, 0.012084359303116798, -0.00873151607811451, 0.6061609983444214, -0.32368046045303345, 0.0014822067460045218, -0.005356758367270231, -0.043248359113931656, -0.025581156834959984, -2.990795135498047, 2.2471022605895996, 1.8780839443206787, 0.2607887387275696, -0.13461880385875702, -0.08910271525382996, 0.02015746757388115, 0.12708072364330292, -0.09504689276218414, 0.030679617077112198, 1.276379942893982, -0.11785287410020828, 0.07796937227249146, -0.03374757990241051]} +{"t": 16.4647, "q": [-0.3534172475337982, -0.006284208502620459, 0.004780906718224287, 0.621117353439331, -0.2930184602737427, 0.0196236539632082, -0.33560603857040405, 0.012672385200858116, -0.00898596178740263, 0.6050360798835754, -0.32355427742004395, 0.0016772038070484996, -0.005289798602461815, -0.04339262843132019, -0.025628579780459404, -2.990831136703491, 2.2471261024475098, 1.8781079053878784, 0.26172348856925964, -0.13460682332515717, -0.08911469578742981, 0.02015746757388115, 0.12710469961166382, -0.10181798040866852, 0.030667632818222046, 1.276379942893982, -0.11790081113576889, 0.0779334157705307, -0.033735595643520355]} +{"t": 16.4815, "q": [-0.35224971175193787, -0.006284208502620459, 0.004432717338204384, 0.6200520992279053, -0.29262858629226685, 0.018945466727018356, -0.3340635299682617, 0.013524597510695457, -0.009227016009390354, 0.6029396653175354, -0.323093980550766, 0.0016731530195102096, -0.005316582508385181, -0.04347572848200798, -0.025547290220856667, -2.9907352924346924, 2.247174024581909, 1.8780239820480347, 0.26329341530799866, -0.1345708668231964, -0.08916263282299042, 0.020145483314990997, 0.12708072364330292, -0.10909239947795868, 0.030667632818222046, 1.2762839794158936, -0.11790081113576889, 0.0779094472527504, -0.03371162712574005]} +{"t": 16.4982, "q": [-0.3499402105808258, -0.006267163902521133, 0.004231838975101709, 0.6180834770202637, -0.2920893132686615, 0.01806543953716755, -0.33222275972366333, 0.014300109818577766, -0.009213624522089958, 0.6009710431098938, -0.3227235674858093, 0.0015535256825387478, -0.005289798602461815, -0.04380879923701286, -0.025428244844079018, -2.9906394481658936, 2.2470662593841553, 1.8779520988464355, 0.2652828097343445, -0.13459482789039612, -0.08915065228939056, 0.020145483314990997, 0.12711668014526367, -0.11673834174871445, 0.030547790229320526, 1.2762120962142944, -0.11787684261798859, 0.07794540375471115, -0.03374757990241051]} +{"t": 16.5151, "q": [-0.34767335653305054, -0.006267163902521133, 0.004312190227210522, 0.6158080697059631, -0.29154592752456665, 0.017163701355457306, -0.3312768042087555, 0.014393853023648262, -0.0089190024882555, 0.6003915667533875, -0.32276424765586853, 0.001495825476013124, -0.005196055397391319, -0.0449710488319397, -0.025960730388760567, -2.990603446960449, 2.247018337249756, 1.8779520988464355, 0.26795530319213867, -0.13459482789039612, -0.08913866430521011, 0.020145483314990997, 0.12714064121246338, -0.1245880052447319, 0.030535805970430374, 1.2761282920837402, -0.11790081113576889, 0.077957384288311, -0.03371162712574005]} +{"t": 16.5319, "q": [-0.3466933071613312, -0.006258642300963402, 0.004071136470884085, 0.6148365139961243, -0.29134270548820496, 0.016795722767710686, -0.33083364367485046, 0.014513162896037102, -0.0089993542060256, 0.60028076171875, -0.32305291295051575, 0.00101188151165843, -0.005329974461346865, -0.046012766659259796, -0.026657352223992348, -2.9907472133636475, 2.2469823360443115, 1.8780359029769897, 0.27095136046409607, -0.13459482789039612, -0.0890907272696495, 0.02015746757388115, 0.12711668014526367, -0.13320466876029968, 0.0303800106048584, 1.2760802507400513, -0.11787684261798859, 0.077957384288311, -0.03371162712574005]} +{"t": 16.5489, "q": [-0.3463609218597412, -0.005934801883995533, 0.0038568659219890833, 0.6148620843887329, -0.29127630591392517, 0.016709208488464355, -0.33069729804992676, 0.014819959178566933, -0.009414502419531345, 0.6004597544670105, -0.3233741819858551, 0.00046998608740977943, -0.0055978125892579556, -0.046385347843170166, -0.026906508952379227, -2.9908790588378906, 2.2469942569732666, 1.878167748451233, 0.2737916111946106, -0.13466674089431763, -0.08917462080717087, 0.02015746757388115, 0.1272365152835846, -0.14281600713729858, 0.030308105051517487, 1.2758885622024536, -0.11784088611602783, 0.07794540375471115, -0.033675674349069595]} +{"t": 16.5656, "q": [-0.3464035391807556, -0.00527007644996047, 0.0037229470908641815, 0.6148706078529358, -0.29095694422721863, 0.016139209270477295, -0.3307313621044159, 0.015271631069481373, -0.009789476171135902, 0.6005449295043945, -0.32352063059806824, 3.549823668436147e-05, -0.005812082905322313, -0.04662105068564415, -0.027064276859164238, -2.99090313911438, 2.247042179107666, 1.8781797885894775, 0.2775786221027374, -0.13461880385875702, -0.08916263282299042, 0.0201694518327713, 0.12720057368278503, -0.1536976844072342, 0.030104374513030052, 1.2758525609970093, -0.11787684261798859, 0.0779094472527504, -0.03366369009017944]} +{"t": 16.5823, "q": [-0.34652286767959595, -0.004869537428021431, 0.003481892868876457, 0.6147598624229431, -0.2905711531639099, 0.01552609633654356, -0.33084216713905334, 0.015603993088006973, -0.010351935401558876, 0.6005278825759888, -0.32353952527046204, -0.0005235592252574861, -0.006120096426457167, -0.04675022140145302, -0.027131246402859688, -2.9908790588378906, 2.2469582557678223, 1.8782516717910767, 0.27949610352516174, -0.13463078439235687, -0.0890667587518692, 0.02015746757388115, 0.12715263664722443, -0.16437563300132751, 0.02991262637078762, 1.2757567167282104, -0.11787684261798859, 0.0779334157705307, -0.033615753054618835]} +{"t": 16.5991, "q": [-0.34660807251930237, -0.0045627411454916, 0.003106919815763831, 0.6145041584968567, -0.2901189923286438, 0.014797565527260303, -0.3309614658355713, 0.01583409123122692, -0.010793867520987988, 0.6005960702896118, -0.32353731989860535, -0.0012643698137253523, -0.006535245105624199, -0.0467805489897728, -0.02713203802704811, -2.990915060043335, 2.2469582557678223, 1.8782516717910767, 0.28196483850479126, -0.13461880385875702, -0.08905477821826935, 0.02015746757388115, 0.12711668014526367, -0.17627596855163574, 0.02973286248743534, 1.2757208347320557, -0.11791279166936874, 0.07794540375471115, -0.03362773731350899]} +{"t": 16.6158, "q": [-0.34661659598350525, -0.004341166000813246, 0.00287925754673779, 0.6142911314964294, -0.28979554772377014, 0.014278330840170383, -0.3310807943344116, 0.015961922705173492, -0.011128664948046207, 0.600723922252655, -0.32363900542259216, -0.00161936751101166, -0.006843258626759052, -0.046780504286289215, -0.02712225168943405, -2.9908671379089355, 2.2469582557678223, 1.878239631652832, 0.2833550274372101, -0.13465476036071777, -0.08907874673604965, 0.02015746757388115, 0.12715263664722443, -0.18791265785694122, 0.02949317917227745, 1.2756608724594116, -0.11788882315158844, 0.0779094472527504, -0.033615753054618835]} +{"t": 16.6326, "q": [-0.34661659598350525, -0.004059936385601759, 0.0027989062946289778, 0.6141888499259949, -0.28961336612701416, 0.013961255550384521, -0.3312171399593353, 0.016098275780677795, -0.011289368383586407, 0.600953996181488, -0.32376107573509216, -0.002024991437792778, -0.006963785737752914, -0.046772900968790054, -0.027117162942886353, -2.9908790588378906, 2.2469942569732666, 1.8782756328582764, 0.28503280878067017, -0.13465476036071777, -0.08917462080717087, 0.020145483314990997, 0.12714064121246338, -0.20073577761650085, 0.029157619923353195, 1.2756727933883667, -0.11791279166936874, 0.07792143523693085, -0.033615753054618835]} +{"t": 16.6493, "q": [-0.3465569317340851, -0.003702007234096527, 0.002718554809689522, 0.6140865683555603, -0.2894602119922638, 0.013694643042981625, -0.3313279151916504, 0.01619201898574829, -0.011476854793727398, 0.6012352705001831, -0.3238372206687927, -0.00258335517719388, -0.0070173535495996475, -0.04675017669796944, -0.02712146006524563, -2.99092698097229, 2.246946334838867, 1.8782756328582764, 0.2865667939186096, -0.13471467792987823, -0.08917462080717087, 0.02015746757388115, 0.12714064121246338, -0.2134031057357788, 0.028989840298891068, 1.275648832321167, -0.11790081113576889, 0.0779094472527504, -0.03362773731350899]} +{"t": 16.6661, "q": [-0.34652286767959595, -0.003258857410401106, 0.0026649872306734324, 0.6140354871749878, -0.28935670852661133, 0.013500042259693146, -0.3313790559768677, 0.016226107254624367, -0.011570597998797894, 0.6013545393943787, -0.32386013865470886, -0.0030331306625157595, -0.0070307450369000435, -0.046719808131456375, -0.027110883966088295, -2.99092698097229, 2.246934413909912, 1.878287672996521, 0.2878251373767853, -0.13469070196151733, -0.08916263282299042, 0.02015746757388115, 0.12714064121246338, -0.2259386032819748, 0.028786109760403633, 1.2755529880523682, -0.11786485463380814, 0.07794540375471115, -0.03365170583128929]} +{"t": 16.6829, "q": [-0.34652286767959595, -0.0027390082832425833, 0.002731946762651205, 0.613950252532959, -0.28924494981765747, 0.013305467553436756, -0.3315068781375885, 0.016200540587306023, -0.011664341203868389, 0.6014482975006104, -0.32387861609458923, -0.0035628005862236023, -0.0070307450369000435, -0.04665915668010712, -0.02710930071771145, -2.990891218185425, 2.2468984127044678, 1.8783235549926758, 0.2894430160522461, -0.13464276492595673, -0.08915065228939056, 0.020145483314990997, 0.12711668014526367, -0.2389175146818161, 0.02858237735927105, 1.2753732204437256, -0.11790081113576889, 0.0779334157705307, -0.03362773731350899]} +{"t": 16.6996, "q": [-0.34651434421539307, -0.0021595044527202845, 0.0027721223887056112, 0.6138735413551331, -0.28911662101745605, 0.013067626394331455, -0.3317028880119324, 0.016209064051508904, -0.011664341203868389, 0.6015931963920593, -0.3237321972846985, -0.00415174663066864, -0.007070920895785093, -0.04662122204899788, -0.027103416621685028, -2.990939140319824, 2.2468984127044678, 1.8783595561981201, 0.2910608649253845, -0.13463078439235687, -0.08917462080717087, 0.02015746757388115, 0.12711668014526367, -0.2515249252319336, 0.028378644958138466, 1.2752294540405273, -0.11788882315158844, 0.07794540375471115, -0.0336996428668499]} +{"t": 16.7163, "q": [-0.3465484380722046, -0.0012732045724987984, 0.0029194331727921963, 0.6138905882835388, -0.2890007197856903, 0.012851414270699024, -0.33176255226135254, 0.016234630718827248, -0.011717909015715122, 0.601635754108429, -0.32343724370002747, -0.004828885197639465, -0.007124488707631826, -0.04659850150346756, -0.027107717469334602, -2.990939140319824, 2.2468984127044678, 1.8783595561981201, 0.29349368810653687, -0.13461880385875702, -0.08918660134077072, 0.02015746757388115, 0.12714064121246338, -0.2638806700706482, 0.028306739404797554, 1.275133490562439, -0.11790081113576889, 0.07794540375471115, -0.033615753054618835]} +{"t": 16.7331, "q": [-0.34660807251930237, -0.0003357715904712677, 0.0031872710678726435, 0.6139417290687561, -0.2889179289340973, 0.012692832387983799, -0.3319670855998993, 0.016336895525455475, -0.011717909015715122, 0.6016442775726318, -0.32308822870254517, -0.005644331220537424, -0.007151272147893906, -0.04659850150346756, -0.027107717469334602, -2.9909510612487793, 2.2468984127044678, 1.878455400466919, 0.2963578999042511, -0.13469070196151733, -0.08917462080717087, 0.020145483314990997, 0.1272604912519455, -0.27594876289367676, 0.028198881074786186, 1.2750616073608398, -0.11787684261798859, 0.077957384288311, -0.03363972157239914]} +{"t": 16.7499, "q": [-0.3467359244823456, 0.0005505280569195747, 0.0033747577108442783, 0.613950252532959, -0.288777232170105, 0.012404458597302437, -0.3321886658668518, 0.016405072063207626, -0.011691125109791756, 0.601635754108429, -0.32276880741119385, -0.00626361183822155, -0.007151272147893906, -0.04660610109567642, -0.0271128062158823, -2.99090313911438, 2.2468984127044678, 1.8784193992614746, 0.29891055822372437, -0.13469070196151733, -0.08917462080717087, 0.020145483314990997, 0.12762001156806946, -0.2872139513492584, 0.028150945901870728, 1.2750736474990845, -0.11787684261798859, 0.077957384288311, -0.03359178453683853]} +{"t": 16.7666, "q": [-0.34698304533958435, 0.0011726426891982555, 0.0034283252898603678, 0.6140013933181763, -0.2886282503604889, 0.012101676315069199, -0.33249545097351074, 0.016558470204472542, -0.011691125109791756, 0.6016528010368347, -0.32260292768478394, -0.006569661665707827, -0.007325367070734501, -0.04659854248166084, -0.027117500081658363, -2.990891218185425, 2.2468984127044678, 1.8784314393997192, 0.3006003201007843, -0.13469070196151733, -0.08910271525382996, 0.0201694518327713, 0.12782374024391174, -0.2989464998245239, 0.028150945901870728, 1.2750376462936401, -0.11790081113576889, 0.07796937227249146, -0.03357980027794838]} +{"t": 16.7833, "q": [-0.3471875786781311, 0.0015220493078231812, 0.0034283252898603678, 0.6139928698539734, -0.28836745023727417, 0.011647692881524563, -0.3328704237937927, 0.0167374350130558, -0.011704516597092152, 0.6019255518913269, -0.3223581612110138, -0.0070432256907224655, -0.0077672996558249, -0.0466136634349823, -0.02710811235010624, -2.99092698097229, 2.246922492980957, 1.878455400466919, 0.30263763666152954, -0.13469070196151733, -0.0890667587518692, 0.02015746757388115, 0.12801548838615417, -0.3101397752761841, 0.02811499312520027, 1.274965763092041, -0.1179487481713295, 0.07794540375471115, -0.03366369009017944]} +{"t": 16.8004, "q": [-0.34735801815986633, 0.0017351023852825165, 0.003334582084789872, 0.613950252532959, -0.28809836506843567, 0.011164850555360317, -0.3332027792930603, 0.016865266487002373, -0.01177147589623928, 0.6022579073905945, -0.32218360900878906, -0.007465459406375885, -0.008249407634139061, -0.04659094288945198, -0.027112411335110664, -2.9909629821777344, 2.246922492980957, 1.8784433603286743, 0.3042195439338684, -0.13466674089431763, -0.08917462080717087, 0.020145483314990997, 0.1281832754611969, -0.3206019997596741, 0.028138961642980576, 1.2747260332107544, -0.11793676018714905, 0.0779334157705307, -0.03357980027794838]} +{"t": 16.8171, "q": [-0.3475966453552246, 0.0019566770642995834, 0.0032810145057737827, 0.613950252532959, -0.2879203259944916, 0.010869449004530907, -0.3336118459701538, 0.01695900969207287, -0.011798259802162647, 0.6027181148529053, -0.32220301032066345, -0.00776286656036973, -0.008771691471338272, -0.046560656279325485, -0.02712140418589115, -2.990939140319824, 2.2468984127044678, 1.8784314393997192, 0.305885374546051, -0.13463078439235687, -0.08917462080717087, 0.020133499056100845, 0.12857875227928162, -0.33074066042900085, 0.02810300886631012, 1.2743066549301147, -0.11796072870492935, 0.07792143523693085, -0.033603768795728683]} +{"t": 16.8338, "q": [-0.3476563096046448, 0.002033376134932041, 0.0032676225528120995, 0.6139417290687561, -0.2877919673919678, 0.010660511441528797, -0.3339782953262329, 0.0169675312936306, -0.01177147589623928, 0.603340208530426, -0.3221972584724426, -0.008176581002771854, -0.00940111093223095, -0.04645451530814171, -0.027118634432554245, -2.9909510612487793, 2.246922492980957, 1.8784914016723633, 0.3073714077472687, -0.13464276492595673, -0.08917462080717087, 0.020145483314990997, 0.12902216613292694, -0.3410590589046478, 0.028079040348529816, 1.2738991975784302, -0.1179487481713295, 0.0779094472527504, -0.033603768795728683]} +{"t": 16.8506, "q": [-0.3477841317653656, 0.00210155313834548, 0.0032274469267576933, 0.6139672994613647, -0.2877257168292999, 0.010545214638113976, -0.334344744682312, 0.016950488090515137, -0.011650948785245419, 0.6039026379585266, -0.32227855920791626, -0.00843724887818098, -0.010017137974500656, -0.04629535228013992, -0.02712925150990486, -2.9909749031066895, 2.2468864917755127, 1.8785752058029175, 0.3084619641304016, -0.13464276492595673, -0.08917462080717087, 0.020145483314990997, 0.12952551245689392, -0.35056254267692566, 0.027995150536298752, 1.2736594676971436, -0.11793676018714905, 0.07792143523693085, -0.03357980027794838]} +{"t": 16.8673, "q": [-0.34790343046188354, 0.002144163940101862, 0.003254230599850416, 0.6139843463897705, -0.2876967191696167, 0.010509221814572811, -0.3347708582878113, 0.01690787635743618, -0.011570597998797894, 0.604465126991272, -0.32231464982032776, -0.008676471188664436, -0.010780476033687592, -0.04609847441315651, -0.027182959020137787, -2.991238594055176, 2.2468864917755127, 1.8787909746170044, 0.3094566762447357, -0.13461880385875702, -0.08918660134077072, 0.020145483314990997, 0.12994495034217834, -0.35992223024368286, 0.027779433876276016, 1.2733718156814575, -0.11793676018714905, 0.0779094472527504, -0.033555831760168076]} +{"t": 16.884, "q": [-0.34821876883506775, 0.002135641872882843, 0.0032944062259048223, 0.6140440106391907, -0.28766772150993347, 0.010473228991031647, -0.33547818660736084, 0.016865266487002373, -0.01143667846918106, 0.6053344011306763, -0.3223266303539276, -0.008770735003054142, -0.011744692921638489, -0.04584893211722374, -0.027348151430487633, -2.991370439529419, 2.2468864917755127, 1.8788509368896484, 0.31064310669898987, -0.13466674089431763, -0.08918660134077072, 0.020145483314990997, 0.13007678091526031, -0.3694497048854828, 0.027407923713326454, 1.2730603218078613, -0.11796072870492935, 0.0779094472527504, -0.03351987898349762]} +{"t": 16.9008, "q": [-0.34882381558418274, 0.0019992878660559654, 0.003655987558886409, 0.6141462326049805, -0.287601500749588, 0.010343479923903942, -0.336961030960083, 0.0167374350130558, -0.011235800571739674, 0.60685133934021, -0.3224779963493347, -0.009009093977510929, -0.012695517390966415, -0.045735590159893036, -0.0274482574313879, -2.991346597671509, 2.2468504905700684, 1.8788628578186035, 0.3121411204338074, -0.13463078439235687, -0.08918660134077072, 0.020145483314990997, 0.13007678091526031, -0.37909698486328125, 0.02708434872329235, 1.2727487087249756, -0.11793676018714905, 0.0779334157705307, -0.033495910465717316]} +{"t": 16.9175, "q": [-0.3497527241706848, 0.0017265803180634975, 0.0045130690559744835, 0.6144956350326538, -0.28750622272491455, 0.010221130214631557, -0.33894670009613037, 0.016413593664765358, -0.010485853999853134, 0.6088625192642212, -0.3227275609970093, -0.009406368248164654, -0.013418679125607014, -0.04571293294429779, -0.027472196146845818, -2.9913344383239746, 2.2468864917755127, 1.8788748979568481, 0.31411853432655334, -0.13463078439235687, -0.08921056985855103, 0.020145483314990997, 0.13010074198246002, -0.3880971372127533, 0.026509106159210205, 1.2725210189819336, -0.11793676018714905, 0.0779334157705307, -0.03350789472460747]} +{"t": 16.9342, "q": [-0.3508009612560272, 0.00159022631123662, 0.005303190555423498, 0.6150496006011963, -0.28738197684288025, 0.010048299096524715, -0.3409408628940582, 0.0163028072565794, -0.009508245624601841, 0.6108822822570801, -0.3228340148925781, -0.009550727903842926, -0.014409679919481277, -0.0456368587911129, -0.027411550283432007, -2.991358518600464, 2.2468984127044678, 1.878910779953003, 0.3160719573497772, -0.13463078439235687, -0.08921056985855103, 0.02015746757388115, 0.13012471795082092, -0.3975526988506317, 0.025226794183254242, 1.2724850177764893, -0.11791279166936874, 0.07794540375471115, -0.033495910465717316]} +{"t": 16.951, "q": [-0.3512611389160156, 0.0014197840355336666, 0.005745123140513897, 0.6151859164237976, -0.2870258390903473, 0.009486418217420578, -0.34204021096229553, 0.016149409115314484, -0.008798475377261639, 0.6122287511825562, -0.32284626364707947, -0.009572401642799377, -0.015320328995585442, -0.04546189308166504, -0.027275001630187035, -2.9912986755371094, 2.2468624114990234, 1.8788988590240479, 0.3171505331993103, -0.13463078439235687, -0.08918660134077072, 0.020145483314990997, 0.13018463551998138, -0.40578585863113403, 0.024088293313980103, 1.2724730968475342, -0.1179247796535492, 0.07794540375471115, -0.03347194194793701]} +{"t": 16.9677, "q": [-0.3512696623802185, 0.0012322976253926754, 0.005865650251507759, 0.615143358707428, -0.28676074743270874, 0.009140880778431892, -0.34266233444213867, 0.016081232577562332, -0.008410110138356686, 0.6129957437515259, -0.32285040616989136, -0.00956511590629816, -0.016056882217526436, -0.045309897512197495, -0.02719290368258953, -2.991286516189575, 2.2468745708465576, 1.8788988590240479, 0.31878039240837097, -0.13465476036071777, -0.08917462080717087, 0.020133499056100845, 0.13012471795082092, -0.41457030177116394, 0.022937806323170662, 1.2724370956420898, -0.11793676018714905, 0.07794540375471115, -0.03345995768904686]} +{"t": 16.9846, "q": [-0.35110774636268616, 0.0011215098202228546, 0.005986177362501621, 0.6151604056358337, -0.2866489291191101, 0.008975228294730186, -0.34276461601257324, 0.015996010974049568, -0.008222623728215694, 0.6134644746780396, -0.32291996479034424, -0.009673458524048328, -0.01645863987505436, -0.04506712779402733, -0.027167370542883873, -2.991382360458374, 2.2468984127044678, 1.8789347410202026, 0.3202904164791107, -0.13467872142791748, -0.08917462080717087, 0.020133499056100845, 0.12958543002605438, -0.42268362641334534, 0.022110896185040474, 1.2721734046936035, -0.1179247796535492, 0.07796937227249146, -0.03345995768904686]} +{"t": 17.0013, "q": [-0.35096287727355957, 0.0010618548840284348, 0.005919218063354492, 0.615228533744812, -0.2865661382675171, 0.008816664107143879, -0.34276461601257324, 0.015961922705173492, -0.008222623728215694, 0.6137286424636841, -0.3229527175426483, -0.009716762229800224, -0.016565775498747826, -0.044681426137685776, -0.027427373453974724, -2.991586208343506, 2.2468984127044678, 1.878982663154602, 0.32151278853416443, -0.13470269739627838, -0.08917462080717087, 0.020133499056100845, 0.1290581226348877, -0.429886132478714, 0.021823273971676826, 1.2718138694763184, -0.11791279166936874, 0.0779334157705307, -0.03344797343015671]} +{"t": 17.018, "q": [-0.3508606255054474, 0.001036288682371378, 0.005731731187552214, 0.6152711510658264, -0.28649577498435974, 0.008694163523614407, -0.3426964282989502, 0.015902267768979073, -0.008195839822292328, 0.6139246821403503, -0.32300588488578796, -0.009810717776417732, -0.016512207686901093, -0.044197339564561844, -0.027728760614991188, -2.9920175075531006, 2.2468624114990234, 1.8793781995773315, 0.3225434422492981, -0.13469070196151733, -0.08917462080717087, 0.020145483314990997, 0.1285547912120819, -0.43728041648864746, 0.021499700844287872, 1.2715622186660767, -0.11790081113576889, 0.07792143523693085, -0.033376067876815796]} +{"t": 17.0349, "q": [-0.35088616609573364, 0.001036288682371378, 0.005504068918526173, 0.6153052449226379, -0.28641295433044434, 0.008564486168324947, -0.3427305221557617, 0.015808524563908577, -0.008075312711298466, 0.614112138748169, -0.3230631649494171, -0.009897368960082531, -0.01645863987505436, -0.043660350143909454, -0.028072837740182877, -2.992508888244629, 2.2468385696411133, 1.8796777725219727, 0.32380178570747375, -0.13465476036071777, -0.08917462080717087, 0.02015746757388115, 0.12807542085647583, -0.4439316689968109, 0.02112818881869316, 1.2714663743972778, -0.11790081113576889, 0.07792143523693085, -0.03338805213570595]} +{"t": 17.0518, "q": [-0.35088616609573364, 0.0010448107495903969, 0.0053701503202319145, 0.6153052449226379, -0.28631773591041565, 0.008398744277656078, -0.342781662940979, 0.01576591283082962, -0.00772712379693985, 0.614248514175415, -0.3231040835380554, -0.009955103509128094, -0.01644524745643139, -0.043115537613630295, -0.028382936492562294, -2.992748737335205, 2.2468624114990234, 1.8797377347946167, 0.3249882161617279, -0.13467872142791748, -0.08917462080717087, 0.02015746757388115, 0.12754811346530914, -0.4508705139160156, 0.020840568467974663, 1.2713345289230347, -0.11790081113576889, 0.07792143523693085, -0.03335209935903549]} +{"t": 17.0685, "q": [-0.35087767243385315, 0.00107889948412776, 0.005276407115161419, 0.6153052449226379, -0.2862555980682373, 0.008319572545588017, -0.34285834431648254, 0.015731824561953545, -0.00735215051099658, 0.6143763661384583, -0.3231736123561859, -0.010077974759042263, -0.016391679644584656, -0.04235813394188881, -0.028688976541161537, -2.992616891860962, 2.2468864917755127, 1.8796658515930176, 0.32605481147766113, -0.13470269739627838, -0.08917462080717087, 0.020145483314990997, 0.12717659771442413, -0.4577374756336212, 0.020684773102402687, 1.2711308002471924, -0.11788882315158844, 0.0779094472527504, -0.033316146582365036]} +{"t": 17.0853, "q": [-0.3509543538093567, 0.001070377416908741, 0.005155880004167557, 0.6153052449226379, -0.2862100303173065, 0.00825476460158825, -0.34299468994140625, 0.01571478135883808, -0.007231623865664005, 0.6145041584968567, -0.3232514560222626, -0.010200769640505314, -0.0163247212767601, -0.04148734733462334, -0.029095051810145378, -2.9924609661102295, 2.2468504905700684, 1.8795100450515747, 0.32684576511383057, -0.13464276492595673, -0.08918660134077072, 0.020145483314990997, 0.12708072364330292, -0.4636816680431366, 0.020433103665709496, 1.271082878112793, -0.11788882315158844, 0.0779094472527504, -0.033316146582365036]} +{"t": 17.1022, "q": [-0.35106515884399414, 0.00107889948412776, 0.004968393128365278, 0.6152711510658264, -0.28616863489151, 0.008182691410183907, -0.34312254190444946, 0.015740348026156425, -0.007271799258887768, 0.614555299282074, -0.32338303327560425, -0.010432043112814426, -0.01628454588353634, -0.040586359798908234, -0.029559511691331863, -2.992293357849121, 2.2468864917755127, 1.8795459270477295, 0.32769665122032166, -0.13463078439235687, -0.08916263282299042, 0.020145483314990997, 0.1273323893547058, -0.468990683555603, 0.020325245335698128, 1.271142840385437, -0.11788882315158844, 0.0779094472527504, -0.03332813084125519]} +{"t": 17.1189, "q": [-0.35105663537979126, 0.001070377416908741, 0.004874649923294783, 0.6152626276016235, -0.2861272096633911, 0.008139538578689098, -0.34313106536865234, 0.015731824561953545, -0.007285191211849451, 0.6147513389587402, -0.323485791683197, -0.010641764849424362, -0.016204193234443665, -0.039593592286109924, -0.02990579977631569, -2.992173433303833, 2.2468745708465576, 1.8795100450515747, 0.32864341139793396, -0.13461880385875702, -0.08917462080717087, 0.020133499056100845, 0.12745223939418793, -0.47482699155807495, 0.020313261076807976, 1.2712026834487915, -0.11784088611602783, 0.07792143523693085, -0.033256225287914276]} +{"t": 17.1356, "q": [-0.3510395884513855, 0.001070377416908741, 0.00483447453007102, 0.6152626276016235, -0.28609398007392883, 0.008067435584962368, -0.34321627020835876, 0.015731824561953545, -0.007338759023696184, 0.6150155067443848, -0.3235927224159241, -0.010800627991557121, -0.016043491661548615, -0.0384412482380867, -0.0301847942173481, -2.9921135902404785, 2.2468864917755127, 1.87949800491333, 0.3293384909629822, -0.13461880385875702, -0.08917462080717087, 0.020145483314990997, 0.12746421992778778, -0.4800880551338196, 0.020301276817917824, 1.2713584899902344, -0.11785287410020828, 0.0779094472527504, -0.033256225287914276]} +{"t": 17.1523, "q": [-0.35105663537979126, 0.0011044656857848167, 0.00479429867118597, 0.6152200102806091, -0.2860189974308014, 0.007952172309160233, -0.3432333171367645, 0.01571478135883808, -0.007378934416919947, 0.6151348352432251, -0.3236461877822876, -0.010880077257752419, -0.01598992384970188, -0.03729613870382309, -0.030400723218917847, -2.992077589035034, 2.2468864917755127, 1.8794381618499756, 0.33004555106163025, -0.13460682332515717, -0.08918660134077072, 0.020133499056100845, 0.12752413749694824, -0.4848457872867584, 0.020301276817917824, 1.2715742588043213, -0.11788882315158844, 0.07792143523693085, -0.033256225287914276]} +{"t": 17.1691, "q": [-0.3510906994342804, 0.0011044656857848167, 0.004606812261044979, 0.6151944398880005, -0.28592315316200256, 0.007815338671207428, -0.3432333171367645, 0.01571478135883808, -0.007472677621990442, 0.6152796745300293, -0.3236996531486511, -0.010974020697176456, -0.015842612832784653, -0.03611208498477936, -0.03035757876932621, -2.99204158782959, 2.2468624114990234, 1.879426121711731, 0.3309324085712433, -0.13465476036071777, -0.08922255784273148, 0.020121514797210693, 0.1275121569633484, -0.48983123898506165, 0.020313261076807976, 1.2719337940216064, -0.11784088611602783, 0.07788547873497009, -0.033184319734573364]} +{"t": 17.1858, "q": [-0.35115036368370056, 0.0011044656857848167, 0.0045130690559744835, 0.6151518821716309, -0.2858273684978485, 0.007664053700864315, -0.34335261583328247, 0.015723302960395813, -0.007526245433837175, 0.6155268549919128, -0.3238312005996704, -0.011219806037843227, -0.015735477209091187, -0.034920137375593185, -0.030221451073884964, -2.9920055866241455, 2.2468864917755127, 1.8794500827789307, 0.3319869935512543, -0.13464276492595673, -0.08922255784273148, 0.0201694518327713, 0.12754811346530914, -0.4953080415725708, 0.02034921385347843, 1.272580862045288, -0.11785287410020828, 0.0779094472527504, -0.0331004299223423]} +{"t": 17.2025, "q": [-0.35125264525413513, 0.0011044656857848167, 0.00445950124412775, 0.6151263117790222, -0.2857648730278015, 0.007555951829999685, -0.34358271956443787, 0.015723302960395813, -0.007553029339760542, 0.6158421635627747, -0.3240368068218231, -0.011537631042301655, -0.015574774704873562, -0.03378107771277428, -0.030023088678717613, -2.9918737411499023, 2.2468864917755127, 1.879426121711731, 0.33359289169311523, -0.13469070196151733, -0.08925850689411163, 0.020121514797210693, 0.12752413749694824, -0.5005451440811157, 0.020325245335698128, 1.2730962038040161, -0.11784088611602783, 0.07789746671915054, -0.033004555851221085]} +{"t": 17.2193, "q": [-0.3512270748615265, 0.00107889948412776, 0.0045264605432748795, 0.6151092648506165, -0.2856607735157013, 0.007361336145550013, -0.34368500113487244, 0.01569773629307747, -0.007553029339760542, 0.6163364052772522, -0.3241519331932068, -0.011754515580832958, -0.015521206893026829, -0.03265691176056862, -0.029717963188886642, -2.9918618202209473, 2.2468624114990234, 1.8794500827789307, 0.33536654710769653, -0.13469070196151733, -0.08924652636051178, 0.020121514797210693, 0.1275840550661087, -0.5062256455421448, 0.020325245335698128, 1.2733359336853027, -0.11784088611602783, 0.07789746671915054, -0.03296860307455063]} +{"t": 17.236, "q": [-0.35130375623703003, 0.0010874215513467789, 0.004553244449198246, 0.6150325536727905, -0.2855774462223053, 0.007231646217405796, -0.34409406781196594, 0.015740348026156425, -0.007553029339760542, 0.6166773438453674, -0.32435342669487, -0.012094138190150261, -0.015481031499803066, -0.03168533742427826, -0.02975045144557953, -2.9919216632843018, 2.2468624114990234, 1.879426121711731, 0.337272047996521, -0.13467872142791748, -0.08918660134077072, 0.020145483314990997, 0.1276080310344696, -0.5121099352836609, 0.020313261076807976, 1.2733359336853027, -0.11784088611602783, 0.0779094472527504, -0.03290868178009987]} +{"t": 17.2527, "q": [-0.35148271918296814, 0.001070377416908741, 0.0045264605432748795, 0.6149387955665588, -0.28548169136047363, 0.007051439490169287, -0.3444264233112335, 0.015723302960395813, -0.007553029339760542, 0.6169329881668091, -0.3244932293891907, -0.01231083832681179, -0.015481031499803066, -0.03072906658053398, -0.029832322150468826, -2.9918618202209473, 2.2468504905700684, 1.8794381618499756, 0.3389738202095032, -0.13460682332515717, -0.08918660134077072, 0.02015746757388115, 0.12741628289222717, -0.5191686153411865, 0.020289292559027672, 1.273311972618103, -0.11781691759824753, 0.0779334157705307, -0.03287272900342941]} +{"t": 17.2696, "q": [-0.351678729057312, 0.0011555985547602177, 0.0044996771030128, 0.6148279905319214, -0.2853608727455139, 0.006856909953057766, -0.34463948011398315, 0.015808524563908577, -0.007740515749901533, 0.6170693039894104, -0.32458364963531494, -0.012513378635048866, -0.0153738958761096, -0.029757460579276085, -0.02985502779483795, -2.991837978363037, 2.2468504905700684, 1.8794381618499756, 0.3409392237663269, -0.13463078439235687, -0.08925850689411163, 0.020133499056100845, 0.1273084282875061, -0.5256640911102295, 0.020313261076807976, 1.2735276222229004, -0.11782890558242798, 0.0779094472527504, -0.03283677622675896]} +{"t": 17.2863, "q": [-0.3519684970378876, 0.0011641206219792366, 0.004272014833986759, 0.6146405339241028, -0.28516095876693726, 0.006510991137474775, -0.34492921829223633, 0.015851134434342384, -0.00799496192485094, 0.6172312498092651, -0.3246905505657196, -0.01270128320902586, -0.015333720482885838, -0.02891484647989273, -0.029855456203222275, -2.9917898178100586, 2.2468864917755127, 1.8794500827789307, 0.3436596393585205, -0.13459482789039612, -0.08935438096523285, 0.020121514797210693, 0.12732040882110596, -0.5332980155944824, 0.020289292559027672, 1.273695468902588, -0.11785287410020828, 0.0779094472527504, -0.0327768549323082]} +{"t": 17.303, "q": [-0.35248833894729614, 0.0012152530252933502, 0.004044352564960718, 0.6146064400672913, -0.2850193679332733, 0.006251518148928881, -0.34547463059425354, 0.015902267768979073, -0.008195839822292328, 0.6174868941307068, -0.3248180150985718, -0.012939843349158764, -0.015333720482885838, -0.028087368234992027, -0.029867272824048996, -2.9918019771575928, 2.2468385696411133, 1.879486083984375, 0.3460085391998291, -0.13464276492595673, -0.08928247541189194, 0.02010953053832054, 0.12732040882110596, -0.5413634181022644, 0.020289292559027672, 1.2737194299697876, -0.11782890558242798, 0.07789746671915054, -0.03266899660229683]} +{"t": 17.3198, "q": [-0.35312750935554504, 0.0012237750925123692, 0.003937217406928539, 0.6145893931388855, -0.28486526012420654, 0.005984865594655275, -0.34629276394844055, 0.015919310972094536, -0.00831636693328619, 0.617844820022583, -0.32494959235191345, -0.013156604953110218, -0.015320328995585442, -0.027472661808133125, -0.02999054081737995, -2.991813898086548, 2.2468385696411133, 1.8795579671859741, 0.34821364283561707, -0.13461880385875702, -0.08927049487829208, 0.020133499056100845, 0.12729644775390625, -0.5494767427444458, 0.020193420350551605, 1.273767352104187, -0.11781691759824753, 0.07789746671915054, -0.03263304382562637]} +{"t": 17.3365, "q": [-0.35427796840667725, 0.0012578638270497322, 0.003923825453966856, 0.6145893931388855, -0.28471115231513977, 0.005747134797275066, -0.3473665416240692, 0.015961922705173492, -0.008369934745132923, 0.618287980556488, -0.3250318467617035, -0.013286629691720009, -0.015320328995585442, -0.02687337063252926, -0.030212171375751495, -2.9918618202209473, 2.2468624114990234, 1.8795698881149292, 0.3508741557598114, -0.13464276492595673, -0.08930644392967224, 0.020133499056100845, 0.12727247178554535, -0.5583690404891968, 0.02015746757388115, 1.2737553119659424, -0.11782890558242798, 0.07787349820137024, -0.03263304382562637]} +{"t": 17.3532, "q": [-0.35527506470680237, 0.0013004741631448269, 0.003977392800152302, 0.6146149635314941, -0.28455284237861633, 0.005487729329615831, -0.3484147787094116, 0.0160045325756073, -0.008343150839209557, 0.6187822818756104, -0.3250441253185272, -0.013380900025367737, -0.0154542475938797, -0.026342255994677544, -0.03037118725478649, -2.9921014308929443, 2.2468745708465576, 1.8796058893203735, 0.3534986972808838, -0.13464276492595673, -0.08941430598497391, 0.020133499056100845, 0.12711668014526367, -0.56746506690979, 0.019953735172748566, 1.2737194299697876, -0.11782890558242798, 0.0779094472527504, -0.03260907530784607]} +{"t": 17.37, "q": [-0.3559057116508484, 0.0013516070321202278, 0.003937217406928539, 0.6145979166030884, -0.28429868817329407, 0.0051204124465584755, -0.3488493859767914, 0.016149409115314484, -0.008383326232433319, 0.6189101338386536, -0.32504820823669434, -0.013402636162936687, -0.015708694234490395, -0.025802407413721085, -0.030044568702578545, -2.9922094345092773, 2.2468504905700684, 1.8796658515930176, 0.35588353872299194, -0.13466674089431763, -0.089342400431633, 0.020133499056100845, 0.12690095603466034, -0.5769206285476685, 0.019654128700494766, 1.2736834287643433, -0.11784088611602783, 0.07789746671915054, -0.03259709104895592]} +{"t": 17.3868, "q": [-0.3561698794364929, 0.0014709164388477802, 0.003937217406928539, 0.614478588104248, -0.2842028737068176, 0.0049691093154251575, -0.3491562008857727, 0.016268718987703323, -0.00839671865105629, 0.6189442276954651, -0.32503584027290344, -0.013424496166408062, -0.01596313901245594, -0.02537657879292965, -0.029773544520139694, -2.992185354232788, 2.2468385696411133, 1.8796658515930176, 0.3577171266078949, -0.13461880385875702, -0.08930644392967224, 0.020145483314990997, 0.12685301899909973, -0.5854653716087341, 0.018994996324181557, 1.273695468902588, -0.11784088611602783, 0.07789746671915054, -0.03259709104895592]} +{"t": 17.4035, "q": [-0.35623806715011597, 0.0015135272406041622, 0.003990784753113985, 0.6143422722816467, -0.284140408039093, 0.0048610251396894455, -0.3493351638317108, 0.016353938728570938, -0.008343150839209557, 0.618969738483429, -0.32502761483192444, -0.013439069502055645, -0.016164017841219902, -0.02515607513487339, -0.029637925326824188, -2.992161512374878, 2.2468504905700684, 1.8796179294586182, 0.3592391312122345, -0.13460682332515717, -0.08927049487829208, 0.020133499056100845, 0.12680508196353912, -0.5950766801834106, 0.018024275079369545, 1.2736715078353882, -0.11787684261798859, 0.0779094472527504, -0.032585106790065765]} +{"t": 17.4202, "q": [-0.35620397329330444, 0.0015305713750422, 0.004004176706075668, 0.6141377091407776, -0.28413626551628113, 0.004839350935071707, -0.3493947982788086, 0.016388028860092163, -0.00831636693328619, 0.6189782619476318, -0.3250892758369446, -0.013561992906033993, -0.016418464481830597, -0.02511807531118393, -0.02962266467511654, -2.992077589035034, 2.2468624114990234, 1.8796418905258179, 0.3603177070617676, -0.13467872142791748, -0.08931843191385269, 0.020121514797210693, 0.12685301899909973, -0.6038011908531189, 0.0171494260430336, 1.273695468902588, -0.11788882315158844, 0.07789746671915054, -0.03257312253117561]} +{"t": 17.437, "q": [-0.3561869263648987, 0.0015646601095795631, 0.004044352564960718, 0.6140695214271545, -0.2841404676437378, 0.004817633889615536, -0.34937775135040283, 0.016396550461649895, -0.00831636693328619, 0.6189953088760376, -0.3251427412033081, -0.013641443103551865, -0.016672909259796143, -0.02510291151702404, -0.029632261022925377, -2.9921014308929443, 2.2468624114990234, 1.8796179294586182, 0.3614082932472229, -0.13467872142791748, -0.0893903374671936, 0.020121514797210693, 0.1269369125366211, -0.6135324239730835, 0.01607084646821022, 1.2737194299697876, -0.11787684261798859, 0.0779094472527504, -0.032525185495615005]} +{"t": 17.454, "q": [-0.35615283250808716, 0.0015646601095795631, 0.004151487722992897, 0.6139928698539734, -0.28413626551628113, 0.004824899137020111, -0.34936925768852234, 0.016439160332083702, -0.008195839822292328, 0.6190294027328491, -0.3251633048057556, -0.013663056306540966, -0.01699431613087654, -0.025102980434894562, -0.02966170199215412, -2.9922454357147217, 2.2468984127044678, 1.8796179294586182, 0.36282241344451904, -0.13461880385875702, -0.08951018005609512, 0.020133499056100845, 0.12690095603466034, -0.6229640245437622, 0.013218600302934647, 1.2736594676971436, -0.11790081113576889, 0.07788547873497009, -0.032513201236724854]} +{"t": 17.4708, "q": [-0.3561698794364929, 0.0015646601095795631, 0.0041916631162166595, 0.6139758229255676, -0.2841404676437378, 0.004817633889615536, -0.34936925768852234, 0.016439160332083702, -0.008155664429068565, 0.619037926197052, -0.3251632750034332, -0.013692080043256283, -0.017355896532535553, -0.025110583752393723, -0.02966671623289585, -2.9923532009124756, 2.2468864917755127, 1.879653811454773, 0.364284485578537, -0.13465476036071777, -0.08955811709165573, 0.020121514797210693, 0.12676914036273956, -0.6321558952331543, 0.008856342174112797, 1.2737194299697876, -0.11787684261798859, 0.07789746671915054, -0.032525185495615005]} +{"t": 17.4876, "q": [-0.3561784029006958, 0.0015305713750422, 0.004338974133133888, 0.6139161586761475, -0.28414463996887207, 0.004824838601052761, -0.34942036867141724, 0.016413593664765358, -0.008102096617221832, 0.6190294027328491, -0.3251715302467346, -0.0136775067076087, -0.017717478796839714, -0.025095397606492043, -0.02966650016605854, -2.9924371242523193, 2.2468864917755127, 1.8796658515930176, 0.365626722574234, -0.13461880385875702, -0.08949819207191467, 0.020133499056100845, 0.12639762461185455, -0.640389084815979, 0.004314321093261242, 1.2734557390213013, -0.11788882315158844, 0.0779094472527504, -0.032513201236724854]} +{"t": 17.5043, "q": [-0.35616135597229004, 0.0014709164388477802, 0.0044996771030128, 0.6138309240341187, -0.28414878249168396, 0.004832042846828699, -0.34953969717025757, 0.016336895525455475, -0.007968178018927574, 0.6190294027328491, -0.3251756429672241, -0.013670220039784908, -0.017864787951111794, -0.024996789172291756, -0.02970925346016884, -2.9925808906555176, 2.2468745708465576, 1.8797736167907715, 0.3668251633644104, -0.13461880385875702, -0.08937834948301315, 0.020121514797210693, 0.12579841911792755, -0.6484664082527161, -0.0016658073291182518, 1.273467779159546, -0.11793676018714905, 0.07789746671915054, -0.03253716975450516]} +{"t": 17.5211, "q": [-0.3561869263648987, 0.0014112619683146477, 0.004687163513153791, 0.6138224005699158, -0.2841570973396301, 0.004860939458012581, -0.3496078550815582, 0.016277240589261055, -0.00772712379693985, 0.6190464496612549, -0.3251797556877136, -0.013662933371961117, -0.017864787951111794, -0.0247084591537714, -0.02979346178472042, -2.992748737335205, 2.2468745708465576, 1.8798096179962158, 0.36761611700057983, -0.13461880385875702, -0.08942628651857376, 0.020121514797210693, 0.12558269500732422, -0.6561962366104126, -0.005872270558029413, 1.2732040882110596, -0.11796072870492935, 0.07788547873497009, -0.032405346632003784]} +{"t": 17.5378, "q": [-0.35616135597229004, 0.0013430849649012089, 0.004861257970333099, 0.6137797832489014, -0.28416547179222107, 0.0048608784563839436, -0.34968456625938416, 0.01619201898574829, -0.007673555985093117, 0.6190634965896606, -0.325179785490036, -0.0136339096352458, -0.017904965206980705, -0.02413143403828144, -0.02979540452361107, -2.9927966594696045, 2.2468745708465576, 1.8798216581344604, 0.36796364188194275, -0.13461880385875702, -0.08943827450275421, 0.020121514797210693, 0.1254628598690033, -0.6633987426757812, -0.011816445738077164, 1.2731801271438599, -0.11793676018714905, 0.07787349820137024, -0.032417330890893936]} +{"t": 17.5545, "q": [-0.35615283250808716, 0.0012408196926116943, 0.004995177034288645, 0.6137456893920898, -0.28416961431503296, 0.004868082702159882, -0.3497612476348877, 0.016174975782632828, -0.007713731843978167, 0.6190805435180664, -0.3251756727695465, -0.013641196303069592, -0.017918355762958527, -0.023394539952278137, -0.029644016176462173, -2.9927966594696045, 2.2468504905700684, 1.8798335790634155, 0.368431031703949, -0.13461880385875702, -0.08948621153831482, 0.020133499056100845, 0.125486820936203, -0.6705533266067505, -0.015447665937244892, 1.273192048072815, -0.1179487481713295, 0.07786151021718979, -0.03244129940867424]} +{"t": 17.5713, "q": [-0.35614433884620667, 0.0011811647564172745, 0.0052094473503530025, 0.6137542128562927, -0.28418630361557007, 0.004882448352873325, -0.34990614652633667, 0.016089754179120064, -0.007753907702863216, 0.619182825088501, -0.325179785490036, -0.0136339096352458, -0.01797192357480526, -0.02254369854927063, -0.029476534575223923, -2.9927127361297607, 2.2468745708465576, 1.8798456192016602, 0.3688984215259552, -0.13464276492595673, -0.08949819207191467, 0.020121514797210693, 0.1255107969045639, -0.6767971515655518, -0.01918674446642399, 1.2730962038040161, -0.11796072870492935, 0.07792143523693085, -0.03245328366756439]} +{"t": 17.588, "q": [-0.35616135597229004, 0.0011215098202228546, 0.005343366414308548, 0.613737165927887, -0.2841779291629791, 0.004896961152553558, -0.35005953907966614, 0.016047142446041107, -0.007673555985093117, 0.6192339658737183, -0.3251715898513794, -0.013590417802333832, -0.018038883805274963, -0.021419808268547058, -0.029482483863830566, -2.992640733718872, 2.2468624114990234, 1.8797616958618164, 0.36976128816604614, -0.13461880385875702, -0.08951018005609512, 0.02010953053832054, 0.12547484040260315, -0.6830409169197083, -0.02177533693611622, 1.2729883193969727, -0.11793676018714905, 0.07792143523693085, -0.03244129940867424]} +{"t": 17.6048, "q": [-0.3561869263648987, 0.0011044656857848167, 0.005504068918526173, 0.613737165927887, -0.2841779291629791, 0.004896961152553558, -0.3502214550971985, 0.016038620844483376, -0.007660164497792721, 0.6193276643753052, -0.3251715898513794, -0.013590417802333832, -0.018105842173099518, -0.020098503679037094, -0.029486391693353653, -2.9925928115844727, 2.2468504905700684, 1.879725694656372, 0.3709956705570221, -0.13461880385875702, -0.08953414857387543, 0.020121514797210693, 0.12542690336704254, -0.6884098649024963, -0.02389654517173767, 1.272736668586731, -0.1179487481713295, 0.0779094472527504, -0.03242931514978409]} +{"t": 17.6215, "q": [-0.3561698794364929, 0.0010448107495903969, 0.005584420636296272, 0.613737165927887, -0.2841821014881134, 0.004904183559119701, -0.3503151834011078, 0.015987489372491837, -0.007593204732984304, 0.6195322275161743, -0.3251674771308899, -0.013583192601799965, -0.01813262701034546, -0.018488699570298195, -0.029597153887152672, -2.992628812789917, 2.2468504905700684, 1.8797616958618164, 0.3728172481060028, -0.13461880385875702, -0.08957009762525558, 0.020133499056100845, 0.1252111792564392, -0.694042444229126, -0.027587685734033585, 1.2725210189819336, -0.11798469722270966, 0.07792143523693085, -0.03239336237311363]} +{"t": 17.6383, "q": [-0.35629773139953613, 0.0009425454773008823, 0.005584420636296272, 0.6137627363204956, -0.2841779291629791, 0.004896961152553558, -0.35051971673965454, 0.015902267768979073, -0.00739232636988163, 0.6196856498718262, -0.3251716196537018, -0.013575905933976173, -0.01813262701034546, -0.01646125316619873, -0.029867103323340416, -2.9926648139953613, 2.2468745708465576, 1.8798096179962158, 0.3745429813861847, -0.13467872142791748, -0.08951018005609512, 0.02010953053832054, 0.12499547004699707, -0.6987402439117432, -0.03287272900342941, 1.2722573280334473, -0.1179966852068901, 0.0779094472527504, -0.032405346632003784]} +{"t": 17.6551, "q": [-0.3565448522567749, 0.0008914126083254814, 0.0055442447774112225, 0.613737165927887, -0.2841779291629791, 0.004896961152553558, -0.35088616609573364, 0.015859656035900116, -0.007231623865664005, 0.6197282075881958, -0.3251798450946808, -0.013575844466686249, -0.018105842173099518, -0.014350592158734798, -0.03061489947140217, -2.9926886558532715, 2.2468385696411133, 1.8798216581344604, 0.3760649859905243, -0.13467872142791748, -0.08947422355413437, 0.020133499056100845, 0.12489959597587585, -0.7023475170135498, -0.03929627314209938, 1.2719457149505615, -0.11798469722270966, 0.07788547873497009, -0.03242931514978409]} +{"t": 17.6718, "q": [-0.356911301612854, 0.0008061914704740047, 0.005557636730372906, 0.6137797832489014, -0.2841654419898987, 0.004875347949564457, -0.3512611389160156, 0.01582556776702404, -0.00705752894282341, 0.6199753880500793, -0.3251798450946808, -0.013575844466686249, -0.018038883805274963, -0.011829379945993423, -0.03132372722029686, -2.9926528930664062, 2.2468624114990234, 1.8798216581344604, 0.3774791359901428, -0.13463078439235687, -0.08946224302053452, 0.020121514797210693, 0.1248876079916954, -0.7056551575660706, -0.044137902557849884, 1.2714903354644775, -0.1179727166891098, 0.07788547873497009, -0.03242931514978409]} +{"t": 17.6886, "q": [-0.3571925461292267, 0.0006698379293084145, 0.005584420636296272, 0.6137883067131042, -0.28415292501449585, 0.004868186544626951, -0.3518065810203552, 0.015748869627714157, -0.006990569643676281, 0.6203929781913757, -0.3251880705356598, -0.013561271131038666, -0.017838004976511, -0.009398664347827435, -0.031721968203783035, -2.9925808906555176, 2.2468504905700684, 1.8797975778579712, 0.37847381830215454, -0.13466674089431763, -0.08949819207191467, 0.020121514797210693, 0.1248396709561348, -0.708303689956665, -0.04893159121274948, 1.2712746858596802, -0.1179966852068901, 0.0779094472527504, -0.03242931514978409]} +{"t": 17.7054, "q": [-0.3580192029476166, 0.0004993956536054611, 0.005637987982481718, 0.6138394474983215, -0.2841028571128845, 0.004853974562138319, -0.35299113392829895, 0.01561251562088728, -0.007003961596637964, 0.6210065484046936, -0.3251962959766388, -0.0135757215321064, -0.017436247318983078, -0.0068992977030575275, -0.0323052704334259, -2.992521047592163, 2.2468504905700684, 1.8797377347946167, 0.37974414229393005, -0.13470269739627838, -0.08958208560943604, 0.020121514797210693, 0.12476776540279388, -0.7105087637901306, -0.053162023425102234, 1.2711787223815918, -0.11800866574048996, 0.0779334157705307, -0.03239336237311363]} +{"t": 17.7222, "q": [-0.35927194356918335, 0.0002437322400510311, 0.0055978125892579556, 0.6139161586761475, -0.28389862179756165, 0.0046165017411112785, -0.3543376326560974, 0.01540798507630825, -0.0068030827678740025, 0.6215178966522217, -0.3251962959766388, -0.013590233400464058, -0.016900572925806046, -0.004490976221859455, -0.033148378133773804, -2.9924609661102295, 2.2468385696411133, 1.8797377347946167, 0.38117027282714844, -0.13465476036071777, -0.08961803466081619, 0.02010953053832054, 0.12457602471113205, -0.7122824192047119, -0.056721337139606476, 1.271082878112793, -0.1179727166891098, 0.0779094472527504, -0.03238137811422348]} +{"t": 17.7389, "q": [-0.3603116273880005, -3.749784082174301e-05, 0.00546389352530241, 0.6138991117477417, -0.2835943400859833, 0.0042638941667973995, -0.35511314868927, 0.015263108536601067, -0.0067896912805736065, 0.6221399903297424, -0.3251839578151703, -0.013583069667220116, -0.016418464481830597, -0.002279765671119094, -0.03351307287812233, -2.9924609661102295, 2.2468624114990234, 1.879713773727417, 0.38301584124565125, -0.13467872142791748, -0.0896659716963768, 0.02010953053832054, 0.12406069785356522, -0.7141999006271362, -0.058411113917827606, 1.2707353830337524, -0.11798469722270966, 0.0779094472527504, -0.032345425337553024]} +{"t": 17.7558, "q": [-0.36096784472465515, -0.0002675950527191162, 0.005249623209238052, 0.6139246821403503, -0.28346189856529236, 0.0040913717821240425, -0.3555818796157837, 0.01516084372997284, -0.006843258626759052, 0.6225234866142273, -0.3251962959766388, -0.0135757215321064, -0.016030099242925644, -0.0011246073991060257, -0.033374302089214325, -2.9923532009124756, 2.2468624114990234, 1.8797017335891724, 0.385724276304245, -0.13467872142791748, -0.08973787724971771, 0.02010953053832054, 0.12316188216209412, -0.715793788433075, -0.05995707958936691, 1.2704477310180664, -0.1179966852068901, 0.07792143523693085, -0.032345425337553024]} +{"t": 17.7726, "q": [-0.3621268570423126, -0.0003528161905705929, 0.0052094473503530025, 0.6139417290687561, -0.28336673974990845, 0.003969185054302216, -0.3559057116508484, 0.015126754529774189, -0.006816474720835686, 0.6227706074714661, -0.3251921832561493, -0.013583008199930191, -0.01565512642264366, -0.0002887481823563576, -0.03308931738138199, -2.992269277572632, 2.2468385696411133, 1.8796179294586182, 0.38795334100723267, -0.13466674089431763, -0.08959406614303589, 0.02010953053832054, 0.12229901552200317, -0.7168843746185303, -0.06157495081424713, 1.2701361179351807, -0.1179966852068901, 0.0779334157705307, -0.032357409596443176]} +{"t": 17.7893, "q": [-0.3631580173969269, -0.0004295152612030506, 0.00512909609824419, 0.6139246821403503, -0.28329238295555115, 0.0038396455347537994, -0.35598239302635193, 0.015084144659340382, -0.006883434485644102, 0.622915506362915, -0.3252045214176178, -0.013590171001851559, -0.015320328995585442, 0.0007294726674444973, -0.0330696664750576, -2.992161512374878, 2.2468385696411133, 1.8796179294586182, 0.390098512172699, -0.13466674089431763, -0.08959406614303589, 0.02010953053832054, 0.12132829427719116, -0.7176274061203003, -0.06354036182165146, 1.2698125839233398, -0.1179966852068901, 0.07792143523693085, -0.032345425337553024]} +{"t": 17.8061, "q": [-0.3637375235557556, -0.0005232584662735462, 0.005062136333435774, 0.6139246821403503, -0.28327175974845886, 0.0037892123218625784, -0.35623806715011597, 0.015033011324703693, -0.006896826438605785, 0.6230689287185669, -0.3252333104610443, -0.01364076416939497, -0.014891788363456726, 0.0027204975485801697, -0.03329749405384064, -2.9921374320983887, 2.2468385696411133, 1.8796179294586182, 0.39193210005760193, -0.13473863899707794, -0.08958208560943604, 0.02009754627943039, 0.12078900635242462, -0.7176154255867004, -0.06581736356019974, 1.2695128917694092, -0.1179727166891098, 0.0779094472527504, -0.032345425337553024]} +{"t": 17.8228, "q": [-0.3637375235557556, -0.0005829129368066788, 0.005062136333435774, 0.6138394474983215, -0.2832552492618561, 0.003760433755815029, -0.35634031891822815, 0.015007445588707924, -0.0068030827678740025, 0.6233245730400085, -0.32531145215034485, -0.013734540902078152, -0.014583774842321873, 0.0052356780506670475, -0.033278416842222214, -2.9921014308929443, 2.2468504905700684, 1.8795579671859741, 0.39350202679634094, -0.13467872142791748, -0.08965399116277695, 0.020121514797210693, 0.12047741562128067, -0.7172079682350159, -0.06718356907367706, 1.269213318824768, -0.11796072870492935, 0.0779094472527504, -0.03238137811422348]} +{"t": 17.8397, "q": [-0.3640102446079254, -0.000591435469686985, 0.005062136333435774, 0.6138479709625244, -0.28325536847114563, 0.0037315317895263433, -0.3563147783279419, 0.014998923055827618, -0.0068030827678740025, 0.6235376000404358, -0.32545948028564453, -0.01399473287165165, -0.014342720620334148, 0.007530559785664082, -0.03317801281809807, -2.9921014308929443, 2.2468624114990234, 1.87949800491333, 0.39461657404899597, -0.13464276492595673, -0.08960605412721634, 0.020121514797210693, 0.12032162398099899, -0.7168963551521301, -0.06811833381652832, 1.2690455913543701, -0.1179487481713295, 0.07787349820137024, -0.032357409596443176]} +{"t": 17.8566, "q": [-0.3641124963760376, -0.000591435469686985, 0.005062136333435774, 0.6137627363204956, -0.28326380252838135, 0.0037025948986411095, -0.35633182525634766, 0.015007445588707924, -0.0068566505797207355, 0.6237677335739136, -0.32570624351501465, -0.014341253787279129, -0.014141841791570187, 0.009657821618020535, -0.03284405544400215, -2.9920055866241455, 2.2468504905700684, 1.8794140815734863, 0.3949281573295593, -0.13470269739627838, -0.08958208560943604, 0.020121514797210693, 0.12027368694543839, -0.7166566848754883, -0.06852579861879349, 1.2690695524215698, -0.11793676018714905, 0.07792143523693085, -0.03236939385533333]} +{"t": 17.8733, "q": [-0.364155113697052, -0.0005829129368066788, 0.004968393128365278, 0.6136860251426697, -0.28324317932128906, 0.0036521616857498884, -0.3564170300960541, 0.014998923055827618, -0.006829866673797369, 0.6240830421447754, -0.32590797543525696, -0.014593731611967087, -0.013954355381429195, 0.011480877175927162, -0.03234311565756798, -2.9920055866241455, 2.2468745708465576, 1.8793901205062866, 0.39497610926628113, -0.13464276492595673, -0.08960605412721634, 0.020121514797210693, 0.12023773044347763, -0.7131333351135254, -0.0685977041721344, 1.269081473350525, -0.11790081113576889, 0.0779094472527504, -0.03233344107866287]} +{"t": 17.8901, "q": [-0.36430850625038147, -0.000599957536906004, 0.004995177034288645, 0.6136690378189087, -0.2831977903842926, 0.003558542812243104, -0.3567664325237274, 0.015007445588707924, -0.0067896912805736065, 0.6245858669281006, -0.3261263966560364, -0.014933156780898571, -0.01379365287721157, 0.013015064410865307, -0.03185255080461502, -2.991933822631836, 2.247042179107666, 1.8793421983718872, 0.3948562443256378, -0.13473863899707794, -0.08960605412721634, 0.02010953053832054, 0.12026169896125793, -0.7078602313995361, -0.06860969215631485, 1.2690455913543701, -0.1179247796535492, 0.07789746671915054, -0.03233344107866287]} +{"t": 17.907, "q": [-0.3644874691963196, -0.0006340458057820797, 0.005008568987250328, 0.6136605143547058, -0.28314828872680664, 0.003457746934145689, -0.3572351634502411, 0.014990401454269886, -0.006709339562803507, 0.625301718711853, -0.3264313340187073, -0.015366229228675365, -0.013659733347594738, 0.01416928879916668, -0.03138968348503113, -2.991945743560791, 2.2470662593841553, 1.8792463541030884, 0.3947124481201172, -0.13470269739627838, -0.08970192819833755, 0.020121514797210693, 0.12027368694543839, -0.70233553647995, -0.0686216726899147, 1.269081473350525, -0.11790081113576889, 0.07789746671915054, -0.032345425337553024]} +{"t": 17.9237, "q": [-0.364530086517334, -0.0007533556781709194, 0.005102312192320824, 0.6136178970336914, -0.2830864191055298, 0.003320889314636588, -0.3578146696090698, 0.014828480780124664, -0.0066289883106946945, 0.6262561678886414, -0.3268640339374542, -0.015936197713017464, -0.013565990142524242, 0.014875260181725025, -0.03101743571460247, -2.9917778968811035, 2.2471022605895996, 1.8791863918304443, 0.39467647671699524, -0.13470269739627838, -0.08972589671611786, 0.020121514797210693, 0.12027368694543839, -0.695528507232666, -0.06863366067409515, 1.2690695524215698, -0.1179247796535492, 0.0779334157705307, -0.032345425337553024]} +{"t": 17.9404, "q": [-0.36464938521385193, -0.0010345852933824062, 0.005102312192320824, 0.6136264204978943, -0.28302451968193054, 0.0031984918750822544, -0.35825780034065247, 0.014658038504421711, -0.006521853152662516, 0.6274918913841248, -0.32752755284309387, -0.016185080632567406, -0.013391895219683647, 0.015269892290234566, -0.030725941061973572, -2.9916582107543945, 2.2471022605895996, 1.879138469696045, 0.3946884870529175, -0.13466674089431763, -0.08970192819833755, 0.02010953053832054, 0.12035757303237915, -0.6883739233016968, -0.06854976713657379, 1.2690935134887695, -0.11787684261798859, 0.07789746671915054, -0.03226153552532196]} +{"t": 17.9573, "q": [-0.36473461985588074, -0.0013839919120073318, 0.00516927195712924, 0.6136264204978943, -0.2829708158969879, 0.0031049256213009357, -0.35836008191108704, 0.014359764754772186, -0.006441501900553703, 0.6287872195243835, -0.3282240629196167, -0.016303101554512978, -0.013231192715466022, 0.01534568052738905, -0.030588990077376366, -2.9916460514068604, 2.2470901012420654, 1.8791025876998901, 0.3946884870529175, -0.13464276492595673, -0.0896899402141571, 0.02010953053832054, 0.12044146656990051, -0.6814829707145691, -0.06847786158323288, 1.2691174745559692, -0.11788882315158844, 0.0779094472527504, -0.03226153552532196]} +{"t": 17.974, "q": [-0.3647601902484894, -0.0019208851736038923, 0.005182663444429636, 0.6136349439620972, -0.28293365240097046, 0.0030401558615267277, -0.3583686053752899, 0.014001836068928242, -0.006320974789559841, 0.6302189826965332, -0.3288919925689697, -0.01674058847129345, -0.013204408809542656, 0.015353257767856121, -0.030574312433600426, -2.9916820526123047, 2.2471022605895996, 1.8791145086288452, 0.3946884870529175, -0.13466674089431763, -0.08970192819833755, 0.02010953053832054, 0.12041749805212021, -0.6740767359733582, -0.06847786158323288, 1.2691174745559692, -0.11791279166936874, 0.07789746671915054, -0.032225582748651505]} +{"t": 17.9908, "q": [-0.3647942841053009, -0.0023981237318366766, 0.005155880004167557, 0.6136690378189087, -0.28292956948280334, 0.0030185191426426172, -0.35836008191108704, 0.01369503978639841, -0.006307582836598158, 0.6316251158714294, -0.32964980602264404, -0.01697414368391037, -0.013231192715466022, 0.015307627618312836, -0.030534610152244568, -2.9916820526123047, 2.2471261024475098, 1.8790786266326904, 0.3946884870529175, -0.13466674089431763, -0.08972589671611786, 0.02009754627943039, 0.1203695610165596, -0.6669341325759888, -0.06846588104963303, 1.2689976692199707, -0.11793676018714905, 0.07786151021718979, -0.03214169293642044]} +{"t": 18.0076, "q": [-0.36477723717689514, -0.00282422942109406, 0.00512909609824419, 0.6136605143547058, -0.28292128443717957, 0.0030041118152439594, -0.35836008191108704, 0.013285977765917778, -0.006254015490412712, 0.6326221823692322, -0.33017417788505554, -0.0168539360165596, -0.013217801228165627, 0.015322808176279068, -0.030524911358952522, -2.991706132888794, 2.247174024581909, 1.8790905475616455, 0.3946285545825958, -0.13467872142791748, -0.08974986523389816, 0.02009754627943039, 0.12029765546321869, -0.6607382893562317, -0.06850183010101318, 1.2688418626785278, -0.11793676018714905, 0.07786151021718979, -0.03215367719531059]} +{"t": 18.0243, "q": [-0.3647431433200836, -0.003182158339768648, 0.005155880004167557, 0.6136519908905029, -0.2828923463821411, 0.0029681914020329714, -0.3583430349826813, 0.013055880554020405, -0.006160271819680929, 0.6332528591156006, -0.3304773271083832, -0.01669192686676979, -0.013204408809542656, 0.015383554622530937, -0.030505770817399025, -2.991741895675659, 2.247138023376465, 1.8791265487670898, 0.39449673891067505, -0.13461880385875702, -0.08976184576749802, 0.02010953053832054, 0.12020178139209747, -0.6541948914527893, -0.06845389306545258, 1.2686381340026855, -0.1179247796535492, 0.07786151021718979, -0.03209375590085983]} +{"t": 18.041, "q": [-0.3647005259990692, -0.003386689117178321, 0.005155880004167557, 0.6136349439620972, -0.2828467786312103, 0.0029179162811487913, -0.35820668935775757, 0.012970659881830215, -0.006146880332380533, 0.6336789131164551, -0.3305223882198334, -0.01666979305446148, -0.013231192715466022, 0.01559615321457386, -0.03042895346879959, -2.9916820526123047, 2.2471022605895996, 1.879138469696045, 0.39452069997787476, -0.13469070196151733, -0.08978581428527832, 0.02009754627943039, 0.12011788785457611, -0.6480829119682312, -0.06846588104963303, 1.2682546377182007, -0.11790081113576889, 0.07789746671915054, -0.032045818865299225]} +{"t": 18.058, "q": [-0.36464938521385193, -0.0035741757601499557, 0.005182663444429636, 0.6136605143547058, -0.2827848196029663, 0.002809960627928376, -0.3581896424293518, 0.013021792285144329, -0.006039745174348354, 0.6339942812919617, -0.3305469751358032, -0.01662607118487358, -0.013257976621389389, 0.01589980535209179, -0.03027428314089775, -2.991729974746704, 2.2471261024475098, 1.8791505098342896, 0.39456862211227417, -0.13464276492595673, -0.08979780226945877, 0.02010953053832054, 0.11993812769651413, -0.6429776549339294, -0.06845389306545258, 1.2677512168884277, -0.1179247796535492, 0.07787349820137024, -0.03203383460640907]} +{"t": 18.0747, "q": [-0.3646067976951599, -0.003915060311555862, 0.005182663444429636, 0.6136605143547058, -0.2827270030975342, 0.002709199907258153, -0.35812997817993164, 0.013047358952462673, -0.005919218063354492, 0.6343181133270264, -0.33061662316322327, -0.016502156853675842, -0.013244585134088993, 0.016142679378390312, -0.030138935893774033, -2.9916701316833496, 2.2471022605895996, 1.8791624307632446, 0.3946045935153961, -0.13464276492595673, -0.08980978280305862, 0.02010953053832054, 0.11963851749897003, -0.6378483772277832, -0.06846588104963303, 1.2670681476593018, -0.1179247796535492, 0.07789746671915054, -0.03202185034751892]} +{"t": 18.0915, "q": [-0.3646067976951599, -0.004213334061205387, 0.00516927195712924, 0.6136605143547058, -0.28267306089401245, 0.002673437586054206, -0.3581470251083374, 0.013064403086900711, -0.005865650251507759, 0.634505569934845, -0.3306862711906433, -0.01637822575867176, -0.013257976621389389, 0.01625640131533146, -0.0300075002014637, -2.9917898178100586, 2.2471022605895996, 1.8791744709014893, 0.3946045935153961, -0.13469070196151733, -0.08979780226945877, 0.02009754627943039, 0.11885954439640045, -0.632922887802124, -0.06850183010101318, 1.2666007280349731, -0.11788882315158844, 0.07788547873497009, -0.03200986608862877]} +{"t": 18.1084, "q": [-0.3646238446235657, -0.00444343127310276, 0.005182663444429636, 0.6137030720710754, -0.2826606333255768, 0.0026662955060601234, -0.3581129312515259, 0.013192234560847282, -0.005905826110392809, 0.6345908045768738, -0.33070266246795654, -0.016320059075951576, -0.013257976621389389, 0.016241196542978287, -0.02999754250049591, -2.991825819015503, 2.2471022605895996, 1.879210352897644, 0.39456862211227417, -0.13470269739627838, -0.08978581428527832, 0.02010953053832054, 0.11769707500934601, -0.6280213594436646, -0.06856175512075424, 1.2661094665527344, -0.11793676018714905, 0.07789746671915054, -0.03200986608862877]} +{"t": 18.1251, "q": [-0.3645727038383484, -0.004656484350562096, 0.0052094473503530025, 0.6137712597846985, -0.28267303109169006, 0.002687879605218768, -0.3579680621623993, 0.013285977765917778, -0.005892434157431126, 0.6346078515052795, -0.33080917596817017, -0.01597086526453495, -0.013405287638306618, 0.016203243285417557, -0.03001190908253193, -2.9918618202209473, 2.247138023376465, 1.8792223930358887, 0.394580602645874, -0.13471467792987823, -0.08977383375167847, 0.02010953053832054, 0.11639079451560974, -0.6239826679229736, -0.06854976713657379, 1.2657020092010498, -0.11791279166936874, 0.07789746671915054, -0.03197391331195831]} +{"t": 18.1418, "q": [-0.3645641803741455, -0.005005890969187021, 0.005276407115161419, 0.613737165927887, -0.2827019989490509, 0.0027238179463893175, -0.3580021560192108, 0.013294500298798084, -0.005825474392622709, 0.6345908045768738, -0.33125221729278564, -0.015154457651078701, -0.013766868971288204, 0.016150115057826042, -0.030035948380827904, -2.9918618202209473, 2.247150182723999, 1.8792223930358887, 0.39456862211227417, -0.13461880385875702, -0.08976184576749802, 0.02010953053832054, 0.11553991585969925, -0.6201836466789246, -0.0685737356543541, 1.2647671699523926, -0.1179247796535492, 0.07787349820137024, -0.03196192905306816]} +{"t": 18.1586, "q": [-0.36453860998153687, -0.005372342187911272, 0.005356758367270231, 0.613737165927887, -0.2827226221561432, 0.002759791212156415, -0.35802772641181946, 0.013337111100554466, -0.005785298999398947, 0.634573757648468, -0.33139699697494507, -0.014826375991106033, -0.01412845030426979, 0.01610458828508854, -0.030064966529607773, -2.9919817447662354, 2.247150182723999, 1.8792223930358887, 0.39456862211227417, -0.13469070196151733, -0.08976184576749802, 0.02010953053832054, 0.11516840755939484, -0.6170557737350464, -0.06865762919187546, 1.2636406421661377, -0.11793676018714905, 0.07788547873497009, -0.03197391331195831]} +{"t": 18.1754, "q": [-0.3644278347492218, -0.005764359142631292, 0.00546389352530241, 0.613737165927887, -0.2827889025211334, 0.0028316155076026917, -0.3581129312515259, 0.013456420041620731, -0.00575851509347558, 0.634573757648468, -0.33169054985046387, -0.014220979064702988, -0.014556990936398506, 0.01602872833609581, -0.030123144388198853, -2.9921014308929443, 2.247162103652954, 1.8792463541030884, 0.39456862211227417, -0.13464276492595673, -0.08974986523389816, 0.02010953053832054, 0.11484482884407043, -0.6138080358505249, -0.06876548379659653, 1.2626699209213257, -0.11791279166936874, 0.07787349820137024, -0.03196192905306816]} +{"t": 18.1921, "q": [-0.3642999827861786, -0.00621603149920702, 0.005490677431225777, 0.6137201189994812, -0.2828510105609894, 0.0028962090145796537, -0.3582407534122467, 0.013405287638306618, -0.0056112040765583515, 0.6345311403274536, -0.3318765163421631, -0.01386347133666277, -0.015012315474450588, 0.0158921517431736, -0.03022998943924904, -2.9921135902404785, 2.247162103652954, 1.879258394241333, 0.39426901936531067, -0.13467872142791748, -0.08979780226945877, 0.02010953053832054, 0.11459316313266754, -0.6106442213058472, -0.06882540881633759, 1.2617831230163574, -0.11793676018714905, 0.07789746671915054, -0.03194994479417801]} +{"t": 18.2088, "q": [-0.3641892075538635, -0.0065995268523693085, 0.005490677431225777, 0.6137030720710754, -0.28287166357040405, 0.0029322002083063126, -0.35839417576789856, 0.01338824350386858, -0.005624596029520035, 0.6344885230064392, -0.3320046663284302, -0.013608137145638466, -0.015333720482885838, 0.015816250815987587, -0.030278487130999565, -2.9921374320983887, 2.2472219467163086, 1.8792823553085327, 0.39384958148002625, -0.13467872142791748, -0.08984573930501938, 0.02010953053832054, 0.11454522609710693, -0.6077320575714111, -0.06884937733411789, 1.2606446743011475, -0.11790081113576889, 0.07789746671915054, -0.03197391331195831]} +{"t": 18.2255, "q": [-0.36418068408966064, -0.006931888870894909, 0.005490677431225777, 0.6137201189994812, -0.2829584777355194, 0.0030688815750181675, -0.3585646152496338, 0.01341380923986435, -0.005437109619379044, 0.6343947649002075, -0.3321203589439392, -0.01338925026357174, -0.015588166192173958, 0.015725210309028625, -0.030366167426109314, -2.992185354232788, 2.247269868850708, 1.8792463541030884, 0.3937297463417053, -0.13463078439235687, -0.08989367634057999, 0.02009754627943039, 0.11450926959514618, -0.604831874370575, -0.06881342083215714, 1.2594702243804932, -0.1179247796535492, 0.07792143523693085, -0.03194994479417801]} +{"t": 18.2423, "q": [-0.3641636371612549, -0.007315384224057198, 0.00546389352530241, 0.6136945486068726, -0.2830536961555481, 0.0031766442116349936, -0.35868391394615173, 0.013243366964161396, -0.005249623209238052, 0.6342073082923889, -0.33217859268188477, -0.013127285055816174, -0.015695301815867424, 0.015679681673645973, -0.030405092984437943, -2.9922454357147217, 2.247246026992798, 1.879270315170288, 0.3937896490097046, -0.13465476036071777, -0.08988168835639954, 0.02009754627943039, 0.11449728906154633, -0.6021114587783813, -0.06877747178077698, 1.258475422859192, -0.11793676018714905, 0.07789746671915054, -0.03193796053528786]} +{"t": 18.2591, "q": [-0.36418068408966064, -0.007673312909901142, 0.005450501572340727, 0.6136690378189087, -0.2831408679485321, 0.003212195821106434, -0.3588799238204956, 0.013200757093727589, -0.00516927195712924, 0.6340624094009399, -0.33220788836479187, -0.012916415929794312, -0.015695301815867424, 0.015679681673645973, -0.030405092984437943, -2.9922213554382324, 2.2472100257873535, 1.8792823553085327, 0.39392149448394775, -0.13469070196151733, -0.08986970782279968, 0.020133499056100845, 0.11442538350820541, -0.5994988679885864, -0.06881342083215714, 1.2578043937683105, -0.11790081113576889, 0.07789746671915054, -0.03193796053528786]} +{"t": 18.2758, "q": [-0.36423182487487793, -0.00805680826306343, 0.005383542273193598, 0.613575279712677, -0.2832232713699341, 0.003413910511881113, -0.3591611683368683, 0.013098491355776787, -0.005115704145282507, 0.6338834762573242, -0.3322330713272095, -0.012712862342596054, -0.015681909397244453, 0.015679694712162018, -0.030414922162890434, -2.9922332763671875, 2.247162103652954, 1.879258394241333, 0.3940652906894684, -0.13466674089431763, -0.08984573930501938, 0.02009754627943039, 0.11447332054376602, -0.596538782119751, -0.06883738934993744, 1.2565100193023682, -0.11791279166936874, 0.0779094472527504, -0.031925976276397705]} +{"t": 18.2927, "q": [-0.3642403483390808, -0.008193162269890308, 0.005356758367270231, 0.6135582327842712, -0.28330177068710327, 0.0035506626591086388, -0.35940828919410706, 0.013055880554020405, -0.005102312192320824, 0.633687436580658, -0.332282692193985, -0.012610743753612041, -0.015681909397244453, 0.015687258914113045, -0.030390415340662003, -2.9922094345092773, 2.247162103652954, 1.8792344331741333, 0.39417314529418945, -0.13465476036071777, -0.08980978280305862, 0.02010953053832054, 0.11447332054376602, -0.5937584638595581, -0.0688973143696785, 1.2554434537887573, -0.11793676018714905, 0.0779334157705307, -0.03196192905306816]} +{"t": 18.3094, "q": [-0.3642488718032837, -0.008252817206084728, 0.005383542273193598, 0.613507091999054, -0.28338855504989624, 0.0036873440258204937, -0.3597065806388855, 0.013021792285144329, -0.004928217735141516, 0.6334062218666077, -0.33231160044670105, -0.012559665367007256, -0.01565512642264366, 0.01569487527012825, -0.03040522150695324, -2.9921255111694336, 2.247174024581909, 1.8792463541030884, 0.39422109723091125, -0.13463078439235687, -0.08978581428527832, 0.02010953053832054, 0.11444935202598572, -0.5904747843742371, -0.06890929490327835, 1.2543888092041016, -0.11791279166936874, 0.0779094472527504, -0.031925976276397705]} +{"t": 18.3261, "q": [-0.36427441239356995, -0.008252817206084728, 0.005316582508385181, 0.613430380821228, -0.2834629714488983, 0.0038024415262043476, -0.3597491681575775, 0.013021792285144329, -0.004767514765262604, 0.6330482959747314, -0.3323364555835724, -0.012486825697124004, -0.015574774704873562, 0.015664514154195786, -0.03042462095618248, -2.992077589035034, 2.247150182723999, 1.8792223930358887, 0.3943049907684326, -0.13459482789039612, -0.08979780226945877, 0.02009754627943039, 0.11443736404180527, -0.5871671438217163, -0.06893326342105865, 1.2534420490264893, -0.1179247796535492, 0.0779094472527504, -0.03193796053528786]} +{"t": 18.3431, "q": [-0.3643340766429901, -0.008244294673204422, 0.005303190555423498, 0.6133877635002136, -0.28348779678344727, 0.0038311854004859924, -0.35972362756729126, 0.013047358952462673, -0.004740730859339237, 0.632707417011261, -0.3323405981063843, -0.012479528784751892, -0.015467639081180096, 0.015649335458874702, -0.030434319749474525, -2.992065668106079, 2.247150182723999, 1.8792223930358887, 0.3942809998989105, -0.13460682332515717, -0.08980978280305862, 0.02010953053832054, 0.11438942700624466, -0.5844706892967224, -0.0689452514052391, 1.2525193691253662, -0.11791279166936874, 0.0779094472527504, -0.03193796053528786]} +{"t": 18.3598, "q": [-0.364342600107193, -0.00823577307164669, 0.005236231256276369, 0.6132684946060181, -0.2834918200969696, 0.003867264138534665, -0.35973212122917175, 0.013055880554020405, -0.004807690624147654, 0.6324858665466309, -0.33233246207237244, -0.012436007149517536, -0.015333720482885838, 0.015687311068177223, -0.03042972832918167, -2.9920895099639893, 2.247162103652954, 1.8792344331741333, 0.3943289518356323, -0.13463078439235687, -0.08983375132083893, 0.020121514797210693, 0.11429355293512344, -0.5818341374397278, -0.0689212828874588, 1.251572608947754, -0.1179487481713295, 0.07789746671915054, -0.03189002349972725]} +{"t": 18.3765, "q": [-0.36441078782081604, -0.00823577307164669, 0.005236231256276369, 0.6130980253219604, -0.2834959328174591, 0.0038889185525476933, -0.35972362756729126, 0.013081447221338749, -0.004780906718224287, 0.632264256477356, -0.3323654532432556, -0.012406672351062298, -0.015280152671039104, 0.01566450111567974, -0.030414791777729988, -2.9920175075531006, 2.247174024581909, 1.8792463541030884, 0.3943049907684326, -0.13467872142791748, -0.08983375132083893, 0.02010953053832054, 0.11399395018815994, -0.5796769857406616, -0.06893326342105865, 1.2510572671890259, -0.1179247796535492, 0.07792143523693085, -0.0318780392408371]} +{"t": 18.3933, "q": [-0.36441078782081604, -0.008227250538766384, 0.0052094473503530025, 0.6129531264305115, -0.2835041880607605, 0.0039033079519867897, -0.35972362756729126, 0.013072924688458443, -0.004847866017371416, 0.6320853233337402, -0.3323778808116913, -0.012370243668556213, -0.015186409465968609, 0.015664463862776756, -0.030385306105017662, -2.99204158782959, 2.247174024581909, 1.879198431968689, 0.3943049907684326, -0.13469070196151733, -0.08984573930501938, 0.02010953053832054, 0.11369434744119644, -0.577699601650238, -0.06893326342105865, 1.2507935762405396, -0.11790081113576889, 0.07789746671915054, -0.03191399201750755]} +{"t": 18.41, "q": [-0.36441078782081604, -0.008193162269890308, 0.005155880004167557, 0.6128168106079102, -0.28349998593330383, 0.003910555504262447, -0.3597065806388855, 0.013089969754219055, -0.004941609688103199, 0.6318637132644653, -0.33242323994636536, -0.012333537451922894, -0.015079274773597717, 0.015656860545277596, -0.030380327254533768, -2.9920175075531006, 2.247162103652954, 1.879198431968689, 0.3942929804325104, -0.13469070196151733, -0.08984573930501938, 0.02010953053832054, 0.11338275671005249, -0.5756023526191711, -0.06900516897439957, 1.2505419254302979, -0.1179247796535492, 0.0779094472527504, -0.0319020077586174]} +{"t": 18.4268, "q": [-0.3643852174282074, -0.008150551468133926, 0.005048744846135378, 0.6127656698226929, -0.2834624946117401, 0.00393245555460453, -0.35968953371047974, 0.013115535490214825, -0.005008568987250328, 0.6317870020866394, -0.3324315547943115, -0.012289885431528091, -0.014985531568527222, 0.015664437785744667, -0.030365649610757828, -2.9919817447662354, 2.2471859455108643, 1.8792223930358887, 0.39424505829811096, -0.13464276492595673, -0.08983375132083893, 0.02010953053832054, 0.11309513449668884, -0.5735410451889038, -0.06907707452774048, 1.250170350074768, -0.11793676018714905, 0.0779094472527504, -0.0319020077586174]} +{"t": 18.4436, "q": [-0.36432555317878723, -0.008107941597700119, 0.005008568987250328, 0.6127400994300842, -0.2834542393684387, 0.003918066155165434, -0.3596980571746826, 0.013166667893528938, -0.005048744846135378, 0.6317870020866394, -0.332456111907959, -0.012333241291344166, -0.014878395944833755, 0.015649206936359406, -0.030336035415530205, -2.9919216632843018, 2.2471859455108643, 1.8791863918304443, 0.3942570388317108, -0.13464276492595673, -0.08980978280305862, 0.02009754627943039, 0.11281949281692505, -0.5716835260391235, -0.06910104304552078, 1.2498228549957275, -0.11793676018714905, 0.07792143523693085, -0.0319020077586174]} +{"t": 18.4603, "q": [-0.3642403483390808, -0.008073852397501469, 0.0049817850813269615, 0.6127400994300842, -0.2834169566631317, 0.003882180666550994, -0.3595702052116394, 0.013192234560847282, -0.005196055397391319, 0.6318040490150452, -0.3324766755104065, -0.01234031654894352, -0.01479804515838623, 0.015634002164006233, -0.030326077714562416, -2.9918737411499023, 2.2472219467163086, 1.8791863918304443, 0.39435291290283203, -0.13463078439235687, -0.08983375132083893, 0.02010953053832054, 0.1125798150897026, -0.5699817538261414, -0.06910104304552078, 1.2495232820510864, -0.11796072870492935, 0.07792143523693085, -0.03191399201750755]} +{"t": 18.4771, "q": [-0.3642573654651642, -0.008031241595745087, 0.005008568987250328, 0.6127315759658813, -0.28338369727134705, 0.0038824095390737057, -0.3593316078186035, 0.013217801228165627, -0.005289798602461815, 0.6318466663360596, -0.3324601948261261, -0.012354983948171139, -0.014731084927916527, 0.0156339630484581, -0.03029659204185009, -2.9918618202209473, 2.247246026992798, 1.8791744709014893, 0.39437687397003174, -0.13465476036071777, -0.08980978280305862, 0.02010953053832054, 0.11243600398302078, -0.568435788154602, -0.06912501156330109, 1.2492835521697998, -0.11790081113576889, 0.07792143523693085, -0.0319020077586174]} +{"t": 18.494, "q": [-0.36423182487487793, -0.008014197461307049, 0.005035352893173695, 0.6127486228942871, -0.2833090126514435, 0.003839522134512663, -0.35889697074890137, 0.01326893363147974, -0.005289798602461815, 0.6319148540496826, -0.33241474628448486, -0.012435268610715866, -0.014637341722846031, 0.015656718984246254, -0.030272215604782104, -2.991837978363037, 2.2472219467163086, 1.8791744709014893, 0.39431697130203247, -0.13465476036071777, -0.08982177078723907, 0.02010953053832054, 0.11230417340993881, -0.5667939186096191, -0.06910104304552078, 1.2490918636322021, -0.11791279166936874, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.5108, "q": [-0.3641124963760376, -0.007980109192430973, 0.005062136333435774, 0.6127912402153015, -0.283284068107605, 0.003839698154479265, -0.35804474353790283, 0.01341380923986435, -0.005316582508385181, 0.6320853233337402, -0.3323858976364136, -0.012457325123250484, -0.014423071406781673, 0.01564907841384411, -0.030237751081585884, -2.9918737411499023, 2.2472219467163086, 1.8791744709014893, 0.3943049907684326, -0.13466674089431763, -0.08980978280305862, 0.020085562020540237, 0.11212441325187683, -0.5652838945388794, -0.06912501156330109, 1.2488641738891602, -0.11793676018714905, 0.07789746671915054, -0.0319020077586174]} +{"t": 18.5275, "q": [-0.36404433846473694, -0.007997153326869011, 0.005062136333435774, 0.6127997636795044, -0.2832260727882385, 0.0037822811864316463, -0.357916921377182, 0.013516074977815151, -0.005356758367270231, 0.6322727799415588, -0.3322829306125641, -0.012509086169302464, -0.01436950359493494, 0.01574753038585186, -0.030007632449269295, -2.9918618202209473, 2.247246026992798, 1.879210352897644, 0.39431697130203247, -0.13470269739627838, -0.08980978280305862, 0.020121514797210693, 0.11189670860767365, -0.5636181235313416, -0.06912501156330109, 1.2486364841461182, -0.11790081113576889, 0.07792143523693085, -0.03191399201750755]} +{"t": 18.5442, "q": [-0.36395058035850525, -0.007971586659550667, 0.005075528286397457, 0.6128082871437073, -0.28315961360931396, 0.003768261056393385, -0.357916921377182, 0.013626862317323685, -0.005477285478264093, 0.6323665380477905, -0.33220067620277405, -0.012509825639426708, -0.014436463825404644, 0.015724070370197296, -0.0295609999448061, -2.9918618202209473, 2.2472219467163086, 1.8791863918304443, 0.39426901936531067, -0.13466674089431763, -0.08983375132083893, 0.02010953053832054, 0.11166901141405106, -0.5620721578598022, -0.06910104304552078, 1.2483128309249878, -0.1179247796535492, 0.07789746671915054, -0.03191399201750755]} +{"t": 18.561, "q": [-0.36380571126937866, -0.007937498390674591, 0.005155880004167557, 0.6128423810005188, -0.28313058614730835, 0.0037467647343873978, -0.35776352882385254, 0.013677995651960373, -0.005557636730372906, 0.6324347257614136, -0.33218011260032654, -0.012502732686698437, -0.014423071406781673, 0.015829896554350853, -0.029209017753601074, -2.9918737411499023, 2.247246026992798, 1.8791863918304443, 0.3942929804325104, -0.13466674089431763, -0.08985771983861923, 0.020121514797210693, 0.11150123178958893, -0.5604422688484192, -0.06902913749217987, 1.2479653358459473, -0.11787684261798859, 0.07792143523693085, -0.03191399201750755]} +{"t": 18.5777, "q": [-0.36372900009155273, -0.007911932654678822, 0.005196055397391319, 0.6128509044647217, -0.28313884139060974, 0.0037611539009958506, -0.35766124725341797, 0.013763216324150562, -0.005651379935443401, 0.6324602961540222, -0.33217599987983704, -0.012495509348809719, -0.014436463825404644, 0.01582205854356289, -0.029037408530712128, -2.9918737411499023, 2.247246026992798, 1.879198431968689, 0.3942570388317108, -0.13463078439235687, -0.08985771983861923, 0.02009754627943039, 0.11145329475402832, -0.5587405562400818, -0.06902913749217987, 1.2475578784942627, -0.11791279166936874, 0.0779334157705307, -0.03191399201750755]} +{"t": 18.5945, "q": [-0.36368638277053833, -0.007877843454480171, 0.005249623209238052, 0.612825334072113, -0.2831472158432007, 0.0037466592621058226, -0.3574056029319763, 0.013788782991468906, -0.0057719070464372635, 0.6324602961540222, -0.33216366171836853, -0.012502879835665226, -0.014490030705928802, 0.015837233513593674, -0.02902773581445217, -2.9919097423553467, 2.2472219467163086, 1.8791863918304443, 0.3942929804325104, -0.13465476036071777, -0.08985771983861923, 0.02009754627943039, 0.11139337718486786, -0.5569069385528564, -0.06902913749217987, 1.2468267679214478, -0.11788882315158844, 0.0779334157705307, -0.0319020077586174]} +{"t": 18.6112, "q": [-0.36361822485923767, -0.007843755185604095, 0.005329974461346865, 0.6128082871437073, -0.2831472158432007, 0.0037466592621058226, -0.356911301612854, 0.013856959529221058, -0.005932609550654888, 0.6324688196182251, -0.33215951919555664, -0.012510176748037338, -0.014597166329622269, 0.01587507501244545, -0.028934935107827187, -2.991957664489746, 2.2472219467163086, 1.879198431968689, 0.3941851258277893, -0.13464276492595673, -0.08985771983861923, 0.02010953053832054, 0.11127353459596634, -0.5545819997787476, -0.06902913749217987, 1.2458081245422363, -0.11790081113576889, 0.07792143523693085, -0.031925976276397705]} +{"t": 18.6282, "q": [-0.36368638277053833, -0.00780966691672802, 0.005410325713455677, 0.6127315759658813, -0.28315961360931396, 0.003768261056393385, -0.3567153215408325, 0.01389957033097744, -0.005986177362501621, 0.6324262022972107, -0.33217188715934753, -0.012502806261181831, -0.014744477346539497, 0.015890318900346756, -0.028974276036024094, -2.9920055866241455, 2.2472219467163086, 1.879198431968689, 0.39422109723091125, -0.13461880385875702, -0.08986970782279968, 0.02009754627943039, 0.11094995588064194, -0.5524727702140808, -0.06902913749217987, 1.2449932098388672, -0.11791279166936874, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.6449, "q": [-0.36368638277053833, -0.007775578647851944, 0.005490677431225777, 0.6126804351806641, -0.283184677362442, 0.0037392007652670145, -0.35647669434547424, 0.013950702734291553, -0.006120096426457167, 0.6324176788330078, -0.3322090208530426, -0.012451635673642159, -0.014811436645686626, 0.01588273234665394, -0.028979111462831497, -2.9921014308929443, 2.2471261024475098, 1.8792463541030884, 0.3942330777645111, -0.13465476036071777, -0.08986970782279968, 0.02010953053832054, 0.1101110652089119, -0.550207793712616, -0.06902913749217987, 1.2445738315582275, -0.11790081113576889, 0.07789746671915054, -0.03191399201750755]} +{"t": 18.6616, "q": [-0.3636523187160492, -0.007767056114971638, 0.005651379935443401, 0.6124588847160339, -0.2831929326057434, 0.003753590164706111, -0.35643407702445984, 0.013942181132733822, -0.0060933125205338, 0.632400631904602, -0.33224624395370483, -0.012371426448225975, -0.014878395944833755, 0.015913138166069984, -0.028998976573348045, -2.9922213554382324, 2.2471022605895996, 1.879258394241333, 0.3942809998989105, -0.13467872142791748, -0.08990565687417984, 0.02009754627943039, 0.10897255688905716, -0.5482183694839478, -0.06898120045661926, 1.244465947151184, -0.11788882315158844, 0.07789746671915054, -0.03191399201750755]} +{"t": 18.6785, "q": [-0.3637545704841614, -0.007784100715070963, 0.0058388663455843925, 0.6123054623603821, -0.28323861956596375, 0.0037605392280966043, -0.35639145970344543, 0.01389957033097744, -0.0059995693154633045, 0.6323409676551819, -0.3322586417198181, -0.012349535711109638, -0.014998923055827618, 0.01598152332007885, -0.029024068266153336, -2.9922454357147217, 2.247042179107666, 1.8793542385101318, 0.3943289518356323, -0.13463078439235687, -0.08986970782279968, 0.02010953053832054, 0.10779810696840286, -0.5463848114013672, -0.06896921992301941, 1.2441543340682983, -0.1179727166891098, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.6952, "q": [-0.3638227581977844, -0.007775578647851944, 0.005959393456578255, 0.6121946573257446, -0.28323861956596375, 0.0037605392280966043, -0.3564085066318512, 0.013891047798097134, -0.005852258298546076, 0.6322557330131531, -0.3322916626930237, -0.012305662035942078, -0.015065882354974747, 0.016065113246440887, -0.029059091582894325, -2.992305278778076, 2.2469942569732666, 1.8793302774429321, 0.3943049907684326, -0.13464276492595673, -0.08986970782279968, 0.02010953053832054, 0.10671952366828918, -0.5447549223899841, -0.06895723193883896, 1.2438666820526123, -0.11796072870492935, 0.07792143523693085, -0.031925976276397705]} +{"t": 18.712, "q": [-0.3637971878051758, -0.007818189449608326, 0.00613348837941885, 0.6119560599327087, -0.28323450684547424, 0.003753344528377056, -0.35639145970344543, 0.013865482062101364, -0.0057719070464372635, 0.632264256477356, -0.3322875499725342, -0.01229843869805336, -0.015106058679521084, 0.01617150381207466, -0.029109012335538864, -2.9923412799835205, 2.2469582557678223, 1.8793542385101318, 0.3943049907684326, -0.13463078439235687, -0.08986970782279968, 0.02009754627943039, 0.1056169793009758, -0.5431849956512451, -0.06895723193883896, 1.2435550689697266, -0.1179487481713295, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.7287, "q": [-0.3638738691806793, -0.007843755185604095, 0.006200447678565979, 0.6116918921470642, -0.2832842767238617, 0.003781912149861455, -0.35642555356025696, 0.01383991539478302, -0.005691555794328451, 0.6321364045143127, -0.33230820298194885, -0.012261936441063881, -0.015146234072744846, 0.016262708231806755, -0.029158804565668106, -2.9923770427703857, 2.2469942569732666, 1.8793901205062866, 0.39435291290283203, -0.13465476036071777, -0.08986970782279968, 0.02010953053832054, 0.10473014414310455, -0.5416869521141052, -0.06896921992301941, 1.2432794570922852, -0.11796072870492935, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.7454, "q": [-0.36385685205459595, -0.007843755185604095, 0.0061736637726426125, 0.6114532351493835, -0.28331759572029114, 0.0037672591861337423, -0.3565448522567749, 0.013677995651960373, -0.005624596029520035, 0.6319148540496826, -0.3323371112346649, -0.012225359678268433, -0.015159625560045242, 0.016308316960930824, -0.029188601300120354, -2.99238920211792, 2.246922492980957, 1.8794140815734863, 0.3945566415786743, -0.13463078439235687, -0.08980978280305862, 0.02010953053832054, 0.10427474230527878, -0.5405604839324951, -0.06890929490327835, 1.2429319620132446, -0.11793676018714905, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.7622, "q": [-0.36381423473358154, -0.00786932185292244, 0.0060933125205338, 0.6111634969711304, -0.28334254026412964, 0.00376708316616714, -0.3566727042198181, 0.013652428984642029, -0.0055978125892579556, 0.6316080689430237, -0.3323659598827362, -0.012203339487314224, -0.01511945016682148, 0.01640709489583969, -0.02922375500202179, -2.9923770427703857, 2.246946334838867, 1.8794140815734863, 0.39477235078811646, -0.13461880385875702, -0.08980978280305862, 0.020085562020540237, 0.10408299416303635, -0.5393500328063965, -0.06890929490327835, 1.2426203489303589, -0.11790081113576889, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.779, "q": [-0.3637886643409729, -0.007843755185604095, 0.005905826110392809, 0.6109760403633118, -0.2833508551120758, 0.0037670303136110306, -0.356868714094162, 0.013626862317323685, -0.005530852824449539, 0.6311734318733215, -0.33237424492836, -0.012174207717180252, -0.015106058679521084, 0.016551434993743896, -0.02924959920346737, -2.99238920211792, 2.2468984127044678, 1.8794740438461304, 0.3949640989303589, -0.13461880385875702, -0.08979780226945877, 0.02010953053832054, 0.10397513955831528, -0.5385111570358276, -0.0689212828874588, 1.2422488927841187, -0.11790081113576889, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.7957, "q": [-0.3637886643409729, -0.007843755185604095, 0.005745123140513897, 0.6107544302940369, -0.28336748480796814, 0.0037669427692890167, -0.35720106959342957, 0.013618340715765953, -0.005396933760493994, 0.6306450366973877, -0.3323824107646942, -0.01220319140702486, -0.015106058679521084, 0.016802145168185234, -0.029296118766069412, -2.992604970932007, 2.2468984127044678, 1.8796418905258179, 0.39497610926628113, -0.13467872142791748, -0.08980978280305862, 0.020133499056100845, 0.10391521453857422, -0.5378040671348572, -0.06890929490327835, 1.2419731616973877, -0.11796072870492935, 0.07792143523693085, -0.03191399201750755]} +{"t": 18.8124, "q": [-0.36376309394836426, -0.007792622782289982, 0.005584420636296272, 0.6104646921157837, -0.2833881378173828, 0.003802916035056114, -0.35766977071762085, 0.013592774048447609, -0.005196055397391319, 0.6300229430198669, -0.3323741853237152, -0.01220326591283083, -0.015132841654121876, 0.017068076878786087, -0.02936241216957569, -2.992616891860962, 2.246922492980957, 1.8796658515930176, 0.3949640989303589, -0.13460682332515717, -0.08985771983861923, 0.020121514797210693, 0.10387926548719406, -0.5373007655143738, -0.06890929490327835, 1.2416375875473022, -0.11793676018714905, 0.07792143523693085, -0.03191399201750755]} +{"t": 18.8292, "q": [-0.363711953163147, -0.007758534513413906, 0.005396933760493994, 0.6100897192955017, -0.28345075249671936, 0.0037375136744230986, -0.35825780034065247, 0.013584252446889877, -0.005048744846135378, 0.6295115947723389, -0.33239468932151794, -0.012224860489368439, -0.015146234072744846, 0.017235293984413147, -0.029442502185702324, -2.9925568103790283, 2.2468984127044678, 1.8795579671859741, 0.3949640989303589, -0.13464276492595673, -0.08984573930501938, 0.02010953053832054, 0.10386727750301361, -0.5369292497634888, -0.06893326342105865, 1.2413619756698608, -0.11793676018714905, 0.07792143523693085, -0.031925976276397705]} +{"t": 18.8459, "q": [-0.36367788910865784, -0.007741490378975868, 0.005155880004167557, 0.6096380352973938, -0.28346315026283264, 0.0037590975407510996, -0.358291894197464, 0.013490508310496807, -0.005075528286397457, 0.628736138343811, -0.3324317932128906, -0.012188228778541088, -0.015159625560045242, 0.01744810864329338, -0.029542647302150726, -2.9925448894500732, 2.2468745708465576, 1.8795819282531738, 0.3950599730014801, -0.13464276492595673, -0.08982177078723907, 0.02010953053832054, 0.10393918305635452, -0.5366535782814026, -0.06896921992301941, 1.2411582469940186, -0.1179247796535492, 0.07792143523693085, -0.03191399201750755]} +{"t": 18.8629, "q": [-0.3636949062347412, -0.007707401644438505, 0.004995177034288645, 0.6092545390129089, -0.2834755778312683, 0.0037662393879145384, -0.3582748472690582, 0.013516074977815151, -0.0051424880512058735, 0.6281395554542542, -0.3324276804924011, -0.0121955256909132, -0.015132841654121876, 0.01767619326710701, -0.029692014679312706, -2.9924731254577637, 2.2468624114990234, 1.8795100450515747, 0.39509594440460205, -0.13466674089431763, -0.08984573930501938, 0.02010953053832054, 0.10402307659387589, -0.5365217924118042, -0.06895723193883896, 1.241050362586975, -0.11791279166936874, 0.0779094472527504, -0.031925976276397705]} +{"t": 18.8798, "q": [-0.36367788910865784, -0.007690357510000467, 0.004968393128365278, 0.608802855014801, -0.2834380269050598, 0.0038025998510420322, -0.35825780034065247, 0.013516074977815151, -0.0051424880512058735, 0.6276282072067261, -0.33242353796958923, -0.012202822603285313, -0.015079274773597717, 0.017699003219604492, -0.02970695123076439, -2.99238920211792, 2.246922492980957, 1.8795100450515747, 0.39511990547180176, -0.13466674089431763, -0.08983375132083893, 0.020121514797210693, 0.1040949821472168, -0.5363779664039612, -0.06902913749217987, 1.2409186363220215, -0.1179247796535492, 0.0779334157705307, -0.03191399201750755]} +{"t": 18.8965, "q": [-0.3637034296989441, -0.007681835442781448, 0.004941609688103199, 0.6084534525871277, -0.2834298312664032, 0.0037737684324383736, -0.35825780034065247, 0.013533119112253189, -0.00516927195712924, 0.6272532343864441, -0.33241531252861023, -0.01220287848263979, -0.015025706961750984, 0.017729351297020912, -0.029687626287341118, -2.9923532009124756, 2.2468984127044678, 1.8795340061187744, 0.3951558470726013, -0.13464276492595673, -0.08984573930501938, 0.020121514797210693, 0.10410696268081665, -0.5362941026687622, -0.06900516897439957, 1.2407747507095337, -0.11796072870492935, 0.07789746671915054, -0.03191399201750755]} +{"t": 18.9133, "q": [-0.36372047662734985, -0.007681835442781448, 0.004941609688103199, 0.6079336404800415, -0.2834380865097046, 0.00378815783187747, -0.3582748472690582, 0.013550163246691227, -0.005182663444429636, 0.6268271803855896, -0.33241942524909973, -0.012195581570267677, -0.015025706961750984, 0.01774449646472931, -0.029658334329724312, -2.9923532009124756, 2.2468984127044678, 1.8795100450515747, 0.3951558470726013, -0.13464276492595673, -0.08984573930501938, 0.02009754627943039, 0.1041429191827774, -0.5361862182617188, -0.06904111802577972, 1.240583062171936, -0.1179727166891098, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.9302, "q": [-0.36377161741256714, -0.007681835442781448, 0.004955001175403595, 0.6075330972671509, -0.2833922505378723, 0.0038101107347756624, -0.35825780034065247, 0.013558685779571533, -0.0051424880512058735, 0.6264522075653076, -0.33238643407821655, -0.012239454314112663, -0.014998923055827618, 0.01777484640479088, -0.02963901124894619, -2.9922094345092773, 2.2468864917755127, 1.8793901205062866, 0.39509594440460205, -0.13460682332515717, -0.08983375132083893, 0.02010953053832054, 0.10410696268081665, -0.5360783338546753, -0.06906508654356003, 1.2402833700180054, -0.11793676018714905, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.9469, "q": [-0.3637460470199585, -0.007690357510000467, 0.005062136333435774, 0.6073200106620789, -0.28335076570510864, 0.0037959322798997164, -0.35802772641181946, 0.013618340715765953, -0.00516927195712924, 0.626349925994873, -0.3323536515235901, -0.012181652709841728, -0.014905179850757122, 0.017789989709854126, -0.029609719291329384, -2.9921493530273438, 2.2468624114990234, 1.879366159439087, 0.39509594440460205, -0.13470269739627838, -0.08986970782279968, 0.02009754627943039, 0.10410696268081665, -0.5359944701194763, -0.06907707452774048, 1.2398040294647217, -0.11790081113576889, 0.0779334157705307, -0.03191399201750755]} +{"t": 18.9637, "q": [-0.3637545704841614, -0.007673312909901142, 0.005115704145282507, 0.607311487197876, -0.2833091616630554, 0.003796196077018976, -0.3578146696090698, 0.013635384850203991, -0.005276407115161419, 0.626349925994873, -0.3323289155960083, -0.012210913933813572, -0.014851612038910389, 0.01785067282617092, -0.029561256989836693, -2.99204158782959, 2.2468745708465576, 1.879366159439087, 0.3952397406101227, -0.13466674089431763, -0.08984573930501938, 0.02009754627943039, 0.10415489971637726, -0.5360064506530762, -0.06910104304552078, 1.2390490770339966, -0.11790081113576889, 0.0779334157705307, -0.03191399201750755]} +{"t": 18.9804, "q": [-0.3636608421802521, -0.007690357510000467, 0.005182663444429636, 0.6073285341262817, -0.2832260727882385, 0.0037822811864316463, -0.3573288917541504, 0.013737649656832218, -0.005303190555423498, 0.6264181137084961, -0.33217206597328186, -0.012430206872522831, -0.01479804515838623, 0.017896197736263275, -0.02953227236866951, -2.9920175075531006, 2.2468624114990234, 1.8793901205062866, 0.3952637314796448, -0.13464276492595673, -0.08984573930501938, 0.02009754627943039, 0.1040949821472168, -0.5359585285186768, -0.069196917116642, 1.238353967666626, -0.1179247796535492, 0.0779334157705307, -0.031925976276397705]} +{"t": 18.9972, "q": [-0.3634648323059082, -0.007698879577219486, 0.005263015162199736, 0.607379674911499, -0.283151239156723, 0.003782755695283413, -0.356306254863739, 0.013865482062101364, -0.005329974461346865, 0.6265544295310974, -0.3320651650428772, -0.012402109801769257, -0.014771261252462864, 0.0179948341101408, -0.02946947142481804, -2.9920055866241455, 2.2468504905700684, 1.8794381618499756, 0.3952876925468445, -0.13467872142791748, -0.08984573930501938, 0.020085562020540237, 0.10402307659387589, -0.535874605178833, -0.06926882266998291, 1.2374671697616577, -0.11791279166936874, 0.07792143523693085, -0.03191399201750755]} +{"t": 19.0139, "q": [-0.36290237307548523, -0.007707401644438505, 0.005329974461346865, 0.607456386089325, -0.28314298391342163, 0.003768348600715399, -0.35633182525634766, 0.013976269401609898, -0.005517460871487856, 0.6266226172447205, -0.3319331407546997, -0.012563046999275684, -0.014838220551609993, 0.01830541528761387, -0.028947506099939346, -2.9921014308929443, 2.2468984127044678, 1.8794621229171753, 0.3952037990093231, -0.13464276492595673, -0.08983375132083893, 0.02010953053832054, 0.10389124602079391, -0.5357667803764343, -0.06926882266998291, 1.236424446105957, -0.11790081113576889, 0.0779094472527504, -0.031925976276397705]} +{"t": 19.0307, "q": [-0.36266374588012695, -0.007681835442781448, 0.005450501572340727, 0.6075842380523682, -0.28309711813926697, 0.0038047616835683584, -0.3563658893108368, 0.014061490073800087, -0.005812082905322313, 0.6267675161361694, -0.33176419138908386, -0.01268803607672453, -0.01486500445753336, 0.018615780398249626, -0.028396913781762123, -2.992161512374878, 2.2468745708465576, 1.8795100450515747, 0.39519181847572327, -0.13466674089431763, -0.08989367634057999, 0.020085562020540237, 0.10378339141607285, -0.535563051700592, -0.06934072822332382, 1.2353219985961914, -0.11788882315158844, 0.0779334157705307, -0.031925976276397705]} +{"t": 19.0474, "q": [-0.3624592125415802, -0.007681835442781448, 0.005704947747290134, 0.6077461242675781, -0.283088743686676, 0.0038192563224583864, -0.3561698794364929, 0.0140785351395607, -0.006039745174348354, 0.6269805431365967, -0.3316364586353302, -0.012769076973199844, -0.014851612038910389, 0.0190096627920866, -0.02784191258251667, -2.9921374320983887, 2.2468864917755127, 1.879486083984375, 0.39519181847572327, -0.13463078439235687, -0.08986970782279968, 0.02010953053832054, 0.10375942289829254, -0.5353593230247498, -0.06937667727470398, 1.2339078187942505, -0.11791279166936874, 0.0779334157705307, -0.031925976276397705]} +{"t": 19.0642, "q": [-0.36224615573883057, -0.007681835442781448, 0.005972785409539938, 0.6080188751220703, -0.28308454155921936, 0.0038265218026936054, -0.3558460474014282, 0.014087056741118431, -0.006240623537451029, 0.6272447109222412, -0.3315538763999939, -0.012900512665510178, -0.01486500445753336, 0.01945691742002964, -0.02741015888750553, -2.9921493530273438, 2.2468624114990234, 1.8795100450515747, 0.3952397406101227, -0.13464276492595673, -0.08985771983861923, 0.02010953053832054, 0.10371148586273193, -0.535191535949707, -0.06941263377666473, 1.232829213142395, -0.1179247796535492, 0.07789746671915054, -0.03193796053528786]} +{"t": 19.0813, "q": [-0.36207571625709534, -0.007673312909901142, 0.006240623537451029, 0.6082404255867004, -0.283088743686676, 0.0038192563224583864, -0.35556483268737793, 0.014121145009994507, -0.006267406977713108, 0.6274322271347046, -0.33152905106544495, -0.012958849780261517, -0.014851612038910389, 0.019927220419049263, -0.02713075652718544, -2.9921374320983887, 2.246922492980957, 1.8795100450515747, 0.39527571201324463, -0.13460682332515717, -0.08986970782279968, 0.02010953053832054, 0.10366354882717133, -0.5349518656730652, -0.06943660229444504, 1.2319303750991821, -0.11791279166936874, 0.07789746671915054, -0.03193796053528786]} +{"t": 19.098, "q": [-0.3620927631855011, -0.007673312909901142, 0.006521853152662516, 0.6083341836929321, -0.2830928564071655, 0.0038264510221779346, -0.35505348443984985, 0.014172278344631195, -0.006213839631527662, 0.6275259852409363, -0.33159103989601135, -0.012849360704421997, -0.014851612038910389, 0.02042020671069622, -0.02687690779566765, -2.9922094345092773, 2.2468864917755127, 1.8795698881149292, 0.395215779542923, -0.13464276492595673, -0.08985771983861923, 0.02009754627943039, 0.10356767475605011, -0.53459233045578, -0.06942461431026459, 1.2312712669372559, -0.11790081113576889, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.1147, "q": [-0.36211833357810974, -0.007681835442781448, 0.0068030827678740025, 0.6083086133003235, -0.2830969989299774, 0.003833645721897483, -0.3545251190662384, 0.014129667542874813, -0.006187055725604296, 0.627543032169342, -0.3316241204738617, -0.012776429764926434, -0.014851612038910389, 0.020920993760228157, -0.02673596516251564, -2.992305278778076, 2.2468745708465576, 1.8796179294586182, 0.3952037990093231, -0.13463078439235687, -0.08988168835639954, 0.02010953053832054, 0.1034718006849289, -0.5341368913650513, -0.0694725513458252, 1.2307559251785278, -0.11790081113576889, 0.07788547873497009, -0.03191399201750755]} +{"t": 19.1316, "q": [-0.36229729652404785, -0.007681835442781448, 0.0070173535495996475, 0.608274519443512, -0.28310948610305786, 0.0038263455498963594, -0.35423538088798523, 0.014112623408436775, -0.006120096426457167, 0.6275515556335449, -0.33165714144706726, -0.01273257378488779, -0.01486500445753336, 0.021551014855504036, -0.02667994610965252, -2.99241304397583, 2.2468504905700684, 1.879713773727417, 0.39527571201324463, -0.13470269739627838, -0.08986970782279968, 0.02010953053832054, 0.10336394608020782, -0.5335856676101685, -0.06943660229444504, 1.230204701423645, -0.11791279166936874, 0.07792143523693085, -0.031925976276397705]} +{"t": 19.1484, "q": [-0.36229729652404785, -0.007681835442781448, 0.007111096754670143, 0.6082148551940918, -0.2831385135650635, 0.0038478418719023466, -0.35409900546073914, 0.014146711677312851, -0.006106704473495483, 0.6275174617767334, -0.33182650804519653, -0.012433310970664024, -0.014905179850757122, 0.022112734615802765, -0.02663779817521572, -2.9924731254577637, 2.2468504905700684, 1.879713773727417, 0.3953835666179657, -0.13469070196151733, -0.08983375132083893, 0.02010953053832054, 0.10323211550712585, -0.5329145193099976, -0.06946057081222534, 1.2298451662063599, -0.11793676018714905, 0.0779094472527504, -0.03191399201750755]} +{"t": 19.1651, "q": [-0.36233991384506226, -0.007707401644438505, 0.007218231912702322, 0.6081040501594543, -0.28321340680122375, 0.003832925343886018, -0.3540819585323334, 0.014104100875556469, -0.00605313666164875, 0.6275004148483276, -0.33202478289604187, -0.012097472324967384, -0.014958747662603855, 0.02268201857805252, -0.026581035926938057, -2.992496967315674, 2.2468504905700684, 1.8797377347946167, 0.39541950821876526, -0.13471467792987823, -0.08983375132083893, 0.02010953053832054, 0.10316020995378494, -0.5321954488754272, -0.06948453933000565, 1.2296533584594727, -0.11791279166936874, 0.0779094472527504, -0.03194994479417801]} +{"t": 19.1819, "q": [-0.3623825013637543, -0.0077500119805336, 0.007164664100855589, 0.6080358624458313, -0.2832259237766266, 0.003825607243925333, -0.3541245758533478, 0.0140785351395607, -0.0059995693154633045, 0.6274833679199219, -0.3320661187171936, -0.012009965255856514, -0.014985531568527222, 0.023129906505346298, -0.026562005281448364, -2.9924609661102295, 2.2468624114990234, 1.879713773727417, 0.3953835666179657, -0.13463078439235687, -0.08988168835639954, 0.02010953053832054, 0.10314822942018509, -0.5313565731048584, -0.06941263377666473, 1.2295695543289185, -0.11793676018714905, 0.0779094472527504, -0.031925976276397705]} +{"t": 19.1986, "q": [-0.3626552224159241, -0.0077500119805336, 0.007124488707631826, 0.6080018281936646, -0.28324249386787415, 0.00383994379080832, -0.3541671931743622, 0.014087056741118431, -0.006039745174348354, 0.6274833679199219, -0.3320702612400055, -0.012002668343484402, -0.014945355243980885, 0.023592958226799965, -0.026543278247117996, -2.9924609661102295, 2.2468624114990234, 1.8796898126602173, 0.3953595757484436, -0.13464276492595673, -0.08986970782279968, 0.02009754627943039, 0.1031721979379654, -0.5302900075912476, -0.06941263377666473, 1.2295335531234741, -0.11790081113576889, 0.07792143523693085, -0.031925976276397705]} +{"t": 19.2154, "q": [-0.3626807928085327, -0.0077500119805336, 0.007044136989861727, 0.6079165935516357, -0.28323835134506226, 0.0038327493239194155, -0.35431206226348877, 0.014087056741118431, -0.00605313666164875, 0.6274833679199219, -0.33207863569259644, -0.011944479309022427, -0.014931963756680489, 0.02391190081834793, -0.026606297120451927, -2.99238920211792, 2.2468385696411133, 1.879653811454773, 0.3953835666179657, -0.13461880385875702, -0.08984573930501938, 0.02009754627943039, 0.10330402106046677, -0.529139518737793, -0.06941263377666473, 1.2295335531234741, -0.11790081113576889, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.2323, "q": [-0.36285123229026794, -0.0077500119805336, 0.006977177690714598, 0.6077802181243896, -0.2832634150981903, 0.00380370719358325, -0.35458478331565857, 0.014061490073800087, -0.005932609550654888, 0.6274577975273132, -0.3320910632610321, -0.011908050626516342, -0.014931963756680489, 0.024200482293963432, -0.026668908074498177, -2.9923171997070312, 2.2468745708465576, 1.8796418905258179, 0.39534759521484375, -0.13465476036071777, -0.08984573930501938, 0.02010953053832054, 0.10342386364936829, -0.5278452038764954, -0.06938866525888443, 1.2295455932617188, -0.11791279166936874, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.249, "q": [-0.36284270882606506, -0.007724445778876543, 0.0067896912805736065, 0.6077461242675781, -0.283284068107605, 0.003839698154479265, -0.3547637462615967, 0.01398479100316763, -0.005745123140513897, 0.6274407505989075, -0.3320786654949188, -0.011929959058761597, -0.014931963756680489, 0.024435963481664658, -0.02674548141658306, -2.992305278778076, 2.2468745708465576, 1.8796058893203735, 0.39532363414764404, -0.13470269739627838, -0.08985771983861923, 0.020133499056100845, 0.10353171825408936, -0.5266587734222412, -0.06935270875692368, 1.2295575141906738, -0.11793676018714905, 0.07792143523693085, -0.031925976276397705]} +{"t": 19.2658, "q": [-0.3628768026828766, -0.007732967846095562, 0.006535245105624199, 0.6077035069465637, -0.283296674489975, 0.003803496016189456, -0.3552239239215851, 0.013882526196539402, -0.005624596029520035, 0.6274322271347046, -0.3320951759815216, -0.01190075371414423, -0.014931963756680489, 0.02467130497097969, -0.02676333673298359, -2.992305278778076, 2.2468984127044678, 1.8796058893203735, 0.3953356146812439, -0.13465476036071777, -0.08988168835639954, 0.02009754627943039, 0.10362759232521057, -0.5253644585609436, -0.06937667727470398, 1.2295575141906738, -0.1179487481713295, 0.0779094472527504, -0.031925976276397705]} +{"t": 19.2826, "q": [-0.36285123229026794, -0.0077500119805336, 0.006320974789559841, 0.6076439023017883, -0.2833133935928345, 0.0037745067384094, -0.35616135597229004, 0.0137802604585886, -0.005490677431225777, 0.627406656742096, -0.3321199119091034, -0.011886011809110641, -0.014985531568527222, 0.024914324283599854, -0.02681572362780571, -2.992293357849121, 2.2468984127044678, 1.8796058893203735, 0.3952637314796448, -0.13465476036071777, -0.08985771983861923, 0.02009754627943039, 0.10368751734495163, -0.5239503383636475, -0.06937667727470398, 1.2295935153961182, -0.11793676018714905, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.2993, "q": [-0.36280009150505066, -0.007715923711657524, 0.006079920567572117, 0.6076098084449768, -0.28332170844078064, 0.0037744538858532906, -0.35652783513069153, 0.013763216324150562, -0.005410325713455677, 0.6273469924926758, -0.3321281373500824, -0.011885938234627247, -0.014958747662603855, 0.025111831724643707, -0.026877449825406075, -2.992269277572632, 2.246922492980957, 1.8795819282531738, 0.39525172114372253, -0.13465476036071777, -0.08985771983861923, 0.02009754627943039, 0.10375942289829254, -0.5224403142929077, -0.06942461431026459, 1.2295575141906738, -0.11793676018714905, 0.0779334157705307, -0.031925976276397705]} +{"t": 19.316, "q": [-0.36276599764823914, -0.007715923711657524, 0.005825474392622709, 0.607592761516571, -0.2833217680454254, 0.0037600118666887283, -0.3568516671657562, 0.013746172189712524, -0.0051424880512058735, 0.6272788047790527, -0.3321405053138733, -0.011878566816449165, -0.014958747662603855, 0.025347545742988586, -0.027042675763368607, -2.992293357849121, 2.246922492980957, 1.8796179294586182, 0.3952397406101227, -0.13465476036071777, -0.08988168835639954, 0.02010953053832054, 0.10375942289829254, -0.5207625031471252, -0.06941263377666473, 1.2295814752578735, -0.11793676018714905, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.3328, "q": [-0.3627489507198334, -0.007681835442781448, 0.0055978125892579556, 0.6075757145881653, -0.28333836793899536, 0.003774330485612154, -0.3572351634502411, 0.013746172189712524, -0.005102312192320824, 0.6271680593490601, -0.3321898281574249, -0.011892643757164478, -0.014931963756680489, 0.025514885783195496, -0.02718229964375496, -2.9922454357147217, 2.2468984127044678, 1.8796418905258179, 0.3952277600765228, -0.13467872142791748, -0.08988168835639954, 0.02009754627943039, 0.10372346639633179, -0.5191805958747864, -0.06943660229444504, 1.2295335531234741, -0.11796072870492935, 0.07794540375471115, -0.03193796053528786]} +{"t": 19.3495, "q": [-0.3627915680408478, -0.007681835442781448, 0.00542371766641736, 0.6075586676597595, -0.28335922956466675, 0.0037525356747210026, -0.35748228430747986, 0.013626862317323685, -0.005075528286397457, 0.6271083950996399, -0.3322225511074066, -0.011964983306825161, -0.014851612038910389, 0.025781018659472466, -0.027367372065782547, -2.9922213554382324, 2.2468984127044678, 1.8796179294586182, 0.3952397406101227, -0.13467872142791748, -0.08986970782279968, 0.020121514797210693, 0.10363958030939102, -0.5174069404602051, -0.06941263377666473, 1.2295095920562744, -0.11796072870492935, 0.07792143523693085, -0.031925976276397705]} +{"t": 19.3663, "q": [-0.36284270882606506, -0.007673312909901142, 0.005356758367270231, 0.6075330972671509, -0.2833509147167206, 0.0037525882944464684, -0.35756751894950867, 0.013609818182885647, -0.005075528286397457, 0.627099871635437, -0.3322307765483856, -0.011964908801019192, -0.014731084927916527, 0.026047106832265854, -0.02753286249935627, -2.9922454357147217, 2.246946334838867, 1.8795819282531738, 0.395215779542923, -0.13469070196151733, -0.08988168835639954, 0.020121514797210693, 0.10355568677186966, -0.5157771110534668, -0.06941263377666473, 1.2294496297836304, -0.1179727166891098, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.383, "q": [-0.36289384961128235, -0.007681835442781448, 0.005356758367270231, 0.6075330972671509, -0.28335508704185486, 0.0037453409750014544, -0.3576868176460266, 0.013601296581327915, -0.005075528286397457, 0.6270657777786255, -0.3322307765483856, -0.011964908801019192, -0.014597166329622269, 0.026335831731557846, -0.027644824236631393, -2.9922094345092773, 2.2469823360443115, 1.8795579671859741, 0.39519181847572327, -0.13464276492595673, -0.08988168835639954, 0.02009754627943039, 0.10348378121852875, -0.5141951441764832, -0.06943660229444504, 1.2293897867202759, -0.1179727166891098, 0.0779094472527504, -0.03193796053528786]} +{"t": 19.3998, "q": [-0.362919420003891, -0.007690357510000467, 0.005329974461346865, 0.6074819564819336, -0.2833467125892639, 0.003759835846722126, -0.35776352882385254, 0.013584252446889877, -0.005048744846135378, 0.6270487308502197, -0.3322307765483856, -0.011964908801019192, -0.014423071406781673, 0.026670079678297043, -0.027747660875320435, -2.992161512374878, 2.2469942569732666, 1.8795579671859741, 0.39516785740852356, -0.13465476036071777, -0.08988168835639954, 0.020121514797210693, 0.10342386364936829, -0.5123975276947021, -0.0694725513458252, 1.2292819023132324, -0.11796072870492935, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.4167, "q": [-0.3630898594856262, -0.007698879577219486, 0.005343366414308548, 0.6074734330177307, -0.2833509147167206, 0.0037525882944464684, -0.357916921377182, 0.013558685779571533, -0.005035352893173695, 0.6270231604576111, -0.3322307765483856, -0.011964908801019192, -0.014342720620334148, 0.026966407895088196, -0.02786462940275669, -2.9921374320983887, 2.2469823360443115, 1.8795698881149292, 0.3951798379421234, -0.13464276492595673, -0.08986970782279968, 0.02009754627943039, 0.10338791459798813, -0.5108515620231628, -0.06946057081222534, 1.2291500568389893, -0.11796072870492935, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.4334, "q": [-0.36312392354011536, -0.007707401644438505, 0.005396933760493994, 0.607456386089325, -0.2833259105682373, 0.0037672065664082766, -0.357916921377182, 0.013533119112253189, -0.004995177034288645, 0.6269975900650024, -0.3322307765483856, -0.011964908801019192, -0.01419540960341692, 0.027323195710778236, -0.027874765917658806, -2.9921374320983887, 2.2469582557678223, 1.8796058893203735, 0.3952277600765228, -0.13467872142791748, -0.08988168835639954, 0.020085562020540237, 0.10332798957824707, -0.5092217326164246, -0.0694725513458252, 1.2290902137756348, -0.11796072870492935, 0.0779334157705307, -0.03197391331195831]} +{"t": 19.4501, "q": [-0.36316654086112976, -0.007732967846095562, 0.005450501572340727, 0.6074734330177307, -0.2833300828933716, 0.0037599410861730576, -0.357916921377182, 0.013533119112253189, -0.004995177034288645, 0.6269890666007996, -0.3322184383869171, -0.011972280219197273, -0.014182017184793949, 0.027740443125367165, -0.02777807042002678, -2.9921255111694336, 2.2469582557678223, 1.8795819282531738, 0.3952037990093231, -0.13461880385875702, -0.08985771983861923, 0.02009754627943039, 0.10326807200908661, -0.5076158046722412, -0.06944858282804489, 1.2289702892303467, -0.1179487481713295, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.467, "q": [-0.3632432520389557, -0.007767056114971638, 0.00546389352530241, 0.607456386089325, -0.28332579135894775, 0.003796090604737401, -0.3578828275203705, 0.013575729914009571, -0.005008568987250328, 0.627031683921814, -0.3322061002254486, -0.011965112760663033, -0.014101666398346424, 0.028150197118520737, -0.027715876698493958, -2.9921255111694336, 2.2469823360443115, 1.8795819282531738, 0.3951798379421234, -0.13463078439235687, -0.08986970782279968, 0.020085562020540237, 0.10323211550712585, -0.5061417818069458, -0.06944858282804489, 1.228886365890503, -0.11796072870492935, 0.077957384288311, -0.03193796053528786]} +{"t": 19.4837, "q": [-0.36326882243156433, -0.007784100715070963, 0.0055442447774112225, 0.6074819564819336, -0.2833216190338135, 0.003803337924182415, -0.35784024000167847, 0.013575729914009571, -0.005008568987250328, 0.6270402073860168, -0.3322060704231262, -0.011979633010923862, -0.013967746868729591, 0.02853701449930668, -0.027589570730924606, -2.9920895099639893, 2.2469823360443115, 1.8795579671859741, 0.3951318860054016, -0.13464276492595673, -0.08986970782279968, 0.02010953053832054, 0.10323211550712585, -0.5045718550682068, -0.06944858282804489, 1.228790521621704, -0.1179727166891098, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.5005, "q": [-0.36339664459228516, -0.007818189449608326, 0.005584420636296272, 0.6074649095535278, -0.2833133935928345, 0.0037745067384094, -0.3577379584312439, 0.013558685779571533, -0.005021960940212011, 0.6270743012428284, -0.3321896493434906, -0.011965260840952396, -0.013914179988205433, 0.028779760003089905, -0.02752475067973137, -2.9920895099639893, 2.2469582557678223, 1.8795340061187744, 0.3951318860054016, -0.13459482789039612, -0.08988168835639954, 0.02010953053832054, 0.1032441034913063, -0.5029419660568237, -0.06948453933000565, 1.22870671749115, -0.11796072870492935, 0.07794540375471115, -0.03193796053528786]} +{"t": 19.5173, "q": [-0.3634307384490967, -0.007818189449608326, 0.0056112040765583515, 0.6074734330177307, -0.2833009660243988, 0.0037673646584153175, -0.35756751894950867, 0.013575729914009571, -0.005075528286397457, 0.6270828247070312, -0.3321896493434906, -0.011965260840952396, -0.013820436783134937, 0.02899211272597313, -0.027449633926153183, -2.992065668106079, 2.246934413909912, 1.8795579671859741, 0.3952037990093231, -0.13464276492595673, -0.08985771983861923, 0.02009754627943039, 0.10318417847156525, -0.5013121366500854, -0.06948453933000565, 1.228658676147461, -0.1179727166891098, 0.077957384288311, -0.03197391331195831]} +{"t": 19.534, "q": [-0.3635585606098175, -0.007843755185604095, 0.005637987982481718, 0.6074904799461365, -0.2832967936992645, 0.0037746119778603315, -0.3573288917541504, 0.013592774048447609, -0.00508892023935914, 0.6271424889564514, -0.3321690559387207, -0.01197272352874279, -0.013766868971288204, 0.029212048277258873, -0.027379650622606277, -2.9921014308929443, 2.246922492980957, 1.8795819282531738, 0.3952397406101227, -0.13464276492595673, -0.08986970782279968, 0.020085562020540237, 0.10314822942018509, -0.4997062385082245, -0.06948453933000565, 1.2284549474716187, -0.11798469722270966, 0.07792143523693085, -0.03194994479417801]} +{"t": 19.5508, "q": [-0.3636011779308319, -0.007826711051166058, 0.00571833923459053, 0.6075160503387451, -0.28326764702796936, 0.00378201762214303, -0.3570391535758972, 0.01369503978639841, -0.005115704145282507, 0.6272788047790527, -0.3321319818496704, -0.011994835920631886, -0.013713301159441471, 0.029333317652344704, -0.027322901412844658, -2.9921255111694336, 2.246934413909912, 1.8795698881149292, 0.3952397406101227, -0.13461880385875702, -0.08985771983861923, 0.02009754627943039, 0.10301639884710312, -0.4981003403663635, -0.06950850784778595, 1.2282272577285767, -0.11798469722270966, 0.0779334157705307, -0.03196192905306816]} +{"t": 19.5675, "q": [-0.3635585606098175, -0.007826711051166058, 0.00579869095236063, 0.607524573802948, -0.28323861956596375, 0.0037605392280966043, -0.35660451650619507, 0.013712083920836449, -0.0051424880512058735, 0.627474844455719, -0.3320866823196411, -0.012017021887004375, -0.013673125766217709, 0.02942442148923874, -0.027334226295351982, -2.992185354232788, 2.246934413909912, 1.8796179294586182, 0.395215779542923, -0.13464276492595673, -0.08986970782279968, 0.02010953053832054, 0.1029205247759819, -0.4966382682323456, -0.06948453933000565, 1.2278916835784912, -0.1179727166891098, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.5842, "q": [-0.36357560753822327, -0.007843755185604095, 0.005986177362501621, 0.6075586676597595, -0.2832135856151581, 0.0037895813584327698, -0.35628920793533325, 0.013729128055274487, -0.005249623209238052, 0.627773106098175, -0.33202069997787476, -0.012090248987078667, -0.013646341860294342, 0.02943962998688221, -0.027344277128577232, -2.9923412799835205, 2.246934413909912, 1.879725694656372, 0.3952037990093231, -0.13469070196151733, -0.08986970782279968, 0.020121514797210693, 0.10275274515151978, -0.49545183777809143, -0.0694725513458252, 1.2275562286376953, -0.11798469722270966, 0.07794540375471115, -0.03191399201750755]} +{"t": 19.6009, "q": [-0.3635585606098175, -0.00786932185292244, 0.006280798930674791, 0.607592761516571, -0.2831971049308777, 0.003746342845261097, -0.3560761511325836, 0.01375469472259283, -0.005249623209238052, 0.6281992197036743, -0.33199605345726013, -0.012075932696461678, -0.013632949441671371, 0.02946244180202484, -0.027359355241060257, -2.992293357849121, 2.246946334838867, 1.8797017335891724, 0.3952037990093231, -0.13464276492595673, -0.08986970782279968, 0.02010953053832054, 0.10241718590259552, -0.494517058134079, -0.0694725513458252, 1.2272446155548096, -0.1179966852068901, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.6177, "q": [-0.36357560753822327, -0.00786932185292244, 0.0065620290115475655, 0.6078143119812012, -0.2831929326057434, 0.003753590164706111, -0.3559909164905548, 0.0137802604585886, -0.005410325713455677, 0.6286423802375793, -0.33198362588882446, -0.012097842060029507, -0.013632949441671371, 0.029500290751457214, -0.027325700968503952, -2.992293357849121, 2.246946334838867, 1.879653811454773, 0.39514386653900146, -0.13469070196151733, -0.08986970782279968, 0.02010953053832054, 0.10211758315563202, -0.493917852640152, -0.0694725513458252, 1.2269809246063232, -0.1179966852068901, 0.0779334157705307, -0.031925976276397705]} +{"t": 19.6344, "q": [-0.3635585606098175, -0.007886365987360477, 0.006776299327611923, 0.6079336404800415, -0.2831804156303406, 0.0037609082646667957, -0.35605910420417786, 0.013814348727464676, -0.0056112040765583515, 0.6289917826652527, -0.33198362588882446, -0.012097842060029507, -0.013659733347594738, 0.029636655002832413, -0.027239814400672913, -2.992293357849121, 2.2469582557678223, 1.8796777725219727, 0.3951558470726013, -0.13465476036071777, -0.08986970782279968, 0.02010953053832054, 0.1017221063375473, -0.4935103952884674, -0.0694965198636055, 1.226837158203125, -0.1179966852068901, 0.0779334157705307, -0.031925976276397705]} +{"t": 19.6513, "q": [-0.3635670840740204, -0.007894888520240784, 0.007044136989861727, 0.6080188751220703, -0.2831721603870392, 0.0037465188652276993, -0.35602501034736633, 0.013814348727464676, -0.005571028683334589, 0.6292474269866943, -0.33197951316833496, -0.012105138972401619, -0.013686517253518105, 0.02975783869624138, -0.02715367265045643, -2.992305278778076, 2.246946334838867, 1.8796658515930176, 0.39511990547180176, -0.13466674089431763, -0.08986970782279968, 0.02009754627943039, 0.1013985276222229, -0.4932827055454254, -0.0694725513458252, 1.2267292737960815, -0.1179966852068901, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.668, "q": [-0.3635585606098175, -0.007911932654678822, 0.007325367070734501, 0.6080955266952515, -0.28318461775779724, 0.0037536427844315767, -0.35596534609794617, 0.013805827125906944, -0.005477285478264093, 0.629571259021759, -0.33197131752967834, -0.012090692296624184, -0.0137802604585886, 0.029818415641784668, -0.027105702087283134, -2.9923291206359863, 2.246922492980957, 1.8796898126602173, 0.3951079249382019, -0.13465476036071777, -0.08985771983861923, 0.020085562020540237, 0.10106296837329865, -0.4931868314743042, -0.0694965198636055, 1.2265135049819946, -0.1179727166891098, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.6847, "q": [-0.36348187923431396, -0.007920454256236553, 0.007633380591869354, 0.6081551909446716, -0.28318455815315247, 0.003768102964386344, -0.35592275857925415, 0.013797304593026638, -0.00542371766641736, 0.6299291849136353, -0.33199191093444824, -0.01208322960883379, -0.013820436783134937, 0.029879022389650345, -0.027067530900239944, -2.9923412799835205, 2.246922492980957, 1.879713773727417, 0.3951079249382019, -0.13465476036071777, -0.08988168835639954, 0.02010953053832054, 0.10073939710855484, -0.4931868314743042, -0.06948453933000565, 1.226333737373352, -0.1179966852068901, 0.077957384288311, -0.03193796053528786]} +{"t": 19.7015, "q": [-0.3633795976638794, -0.00792897678911686, 0.007874434813857079, 0.6081892848014832, -0.28318873047828674, 0.003760837484151125, -0.35588014125823975, 0.013797304593026638, -0.0053701503202319145, 0.6301422715187073, -0.3320125639438629, -0.012046745046973228, -0.013887396082282066, 0.029916955158114433, -0.027063267305493355, -2.9923770427703857, 2.246934413909912, 1.8797377347946167, 0.3951318860054016, -0.13465476036071777, -0.08988168835639954, 0.02010953053832054, 0.10033193230628967, -0.49322277307510376, -0.06948453933000565, 1.2261899709701538, -0.1179966852068901, 0.0779334157705307, -0.03194994479417801]} +{"t": 19.7182, "q": [-0.363336980342865, -0.00792897678911686, 0.00799496192485094, 0.608274519443512, -0.2831804156303406, 0.0037609082646667957, -0.35588014125823975, 0.0137802604585886, -0.005343366414308548, 0.6303041577339172, -0.3320166766643524, -0.012039448134601116, -0.013954355381429195, 0.029992882162332535, -0.027074338868260384, -2.99241304397583, 2.246934413909912, 1.879725694656372, 0.39509594440460205, -0.13465476036071777, -0.08986970782279968, 0.02009754627943039, 0.09975668787956238, -0.49322277307510376, -0.0694965198636055, 1.2260222434997559, -0.1179966852068901, 0.07794540375471115, -0.03193796053528786]} +{"t": 19.7349, "q": [-0.36334550380706787, -0.00792897678911686, 0.00798156950622797, 0.6083341836929321, -0.28318461775779724, 0.0037536427844315767, -0.35592275857925415, 0.013788782991468906, -0.005316582508385181, 0.630466103553772, -0.3320373594760895, -0.012002945877611637, -0.01411505788564682, 0.03006877936422825, -0.02707561105489731, -2.99241304397583, 2.246946334838867, 1.8797616958618164, 0.39509594440460205, -0.13464276492595673, -0.08989367634057999, 0.02009754627943039, 0.09925335645675659, -0.49322277307510376, -0.0694725513458252, 1.2259143590927124, -0.11802065372467041, 0.0779334157705307, -0.031925976276397705]} +{"t": 19.7516, "q": [-0.363336980342865, -0.00792897678911686, 0.007954785600304604, 0.6083341836929321, -0.28318461775779724, 0.0037536427844315767, -0.3559994399547577, 0.0137802604585886, -0.005343366414308548, 0.6305257678031921, -0.33204972743988037, -0.0119810551404953, -0.014222193509340286, 0.030159885063767433, -0.027086935937404633, -2.99238920211792, 2.246946334838867, 1.879713773727417, 0.3950839638710022, -0.13467872142791748, -0.08989367634057999, 0.02009754627943039, 0.09882192313671112, -0.4931628406047821, -0.06950850784778595, 1.225650668144226, -0.1179966852068901, 0.0779334157705307, -0.03194994479417801]} +{"t": 19.7684, "q": [-0.36331993341445923, -0.007920454256236553, 0.007914610207080841, 0.6083853244781494, -0.2831887900829315, 0.0037463954649865627, -0.3559994399547577, 0.013763216324150562, -0.005289798602461815, 0.6305939555168152, -0.33206623792648315, -0.011966369114816189, -0.014235584996640682, 0.030220715329051018, -0.027127142995595932, -2.99238920211792, 2.2469582557678223, 1.8796898126602173, 0.3950839638710022, -0.13467872142791748, -0.08986970782279968, 0.02009754627943039, 0.0984264388680458, -0.4931149184703827, -0.06944858282804489, 1.2253990173339844, -0.11800866574048996, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.7853, "q": [-0.36330291628837585, -0.00792897678911686, 0.007834259420633316, 0.608427882194519, -0.28320547938346863, 0.0037318479735404253, -0.35610172152519226, 0.013746172189712524, -0.005289798602461815, 0.6306450366973877, -0.33209100365638733, -0.01192258857190609, -0.014208801090717316, 0.03026636689901352, -0.027167096734046936, -2.99241304397583, 2.2469823360443115, 1.8797377347946167, 0.39504799246788025, -0.13469070196151733, -0.08988168835639954, 0.02009754627943039, 0.0981268361210823, -0.493090957403183, -0.06946057081222534, 1.2251592874526978, -0.1179966852068901, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.8022, "q": [-0.363294392824173, -0.007920454256236553, 0.0077672996558249, 0.6084193587303162, -0.28320127725601196, 0.003739095525816083, -0.35616135597229004, 0.01372060552239418, -0.005343366414308548, 0.6306535601615906, -0.3320992588996887, -0.011922496370971203, -0.014222193509340286, 0.030342459678649902, -0.027236953377723694, -2.9923412799835205, 2.2469942569732666, 1.8796777725219727, 0.3950120508670807, -0.13470269739627838, -0.08988168835639954, 0.02010953053832054, 0.0977792963385582, -0.49303102493286133, -0.06946057081222534, 1.2250155210494995, -0.11800866574048996, 0.0779334157705307, -0.03196192905306816]} +{"t": 19.8189, "q": [-0.36330291628837585, -0.007911932654678822, 0.007606596685945988, 0.6084534525871277, -0.28319716453552246, 0.0037319008260965347, -0.35619544982910156, 0.013677995651960373, -0.005155880004167557, 0.6306706070899963, -0.33209100365638733, -0.01192258857190609, -0.01419540960341692, 0.030388111248612404, -0.027276907116174698, -2.992305278778076, 2.247018337249756, 1.8796418905258179, 0.39497610926628113, -0.13465476036071777, -0.08986970782279968, 0.02009754627943039, 0.09753961116075516, -0.4929591119289398, -0.06942461431026459, 1.2248237133026123, -0.1179966852068901, 0.0779334157705307, -0.03194994479417801]} +{"t": 19.8357, "q": [-0.36331993341445923, -0.007911932654678822, 0.007472677621990442, 0.6084704995155334, -0.2832055389881134, 0.0037174061872065067, -0.3565448522567749, 0.013643906451761723, -0.00508892023935914, 0.6306450366973877, -0.3321115970611572, -0.011915125884115696, -0.01419540960341692, 0.030426129698753357, -0.027302036061882973, -2.992269277572632, 2.247018337249756, 1.8795819282531738, 0.3949401378631592, -0.13469070196151733, -0.08988168835639954, 0.02009754627943039, 0.09726396948099136, -0.4927913546562195, -0.06941263377666473, 1.224679946899414, -0.11800866574048996, 0.07794540375471115, -0.03196192905306816]} +{"t": 19.8524, "q": [-0.36335402727127075, -0.007903410121798515, 0.007311975117772818, 0.6084619760513306, -0.28320562839508057, 0.0036885221488773823, -0.3566471338272095, 0.013601296581327915, -0.00483447453007102, 0.6305939555168152, -0.33212393522262573, -0.011922292411327362, -0.01419540960341692, 0.03047935664653778, -0.027337219566106796, -2.9922213554382324, 2.247042179107666, 1.8795698881149292, 0.3949161767959595, -0.13466674089431763, -0.08986970782279968, 0.02010953053832054, 0.09697634726762772, -0.49250373244285583, -0.06946057081222534, 1.2245841026306152, -0.1179966852068901, 0.077957384288311, -0.03194994479417801]} +{"t": 19.8692, "q": [-0.36334550380706787, -0.007903410121798515, 0.007137880194932222, 0.6084449291229248, -0.2832222580909729, 0.003688398515805602, -0.3569965362548828, 0.013601296581327915, -0.004660379607230425, 0.6305683851242065, -0.332173228263855, -0.011950907297432423, -0.01419540960341692, 0.03049462102353573, -0.027366867288947105, -2.9922213554382324, 2.2470781803131104, 1.8795579671859741, 0.3949281573295593, -0.13465476036071777, -0.08988168835639954, 0.02009754627943039, 0.09677261859178543, -0.49220409989356995, -0.06946057081222534, 1.2245001792907715, -0.1179966852068901, 0.0779334157705307, -0.03196192905306816]} +{"t": 19.8859, "q": [-0.3633795976638794, -0.007894888520240784, 0.006950393784791231, 0.6084619760513306, -0.28323057293891907, 0.0036883458960801363, -0.3574056029319763, 0.013533119112253189, -0.0043523660860955715, 0.6305172443389893, -0.3322019577026367, -0.011972409673035145, -0.014222193509340286, 0.03050222434103489, -0.02737189270555973, -2.992185354232788, 2.2470662593841553, 1.8794621229171753, 0.39495211839675903, -0.13461880385875702, -0.08990565687417984, 0.02009754627943039, 0.09664079546928406, -0.49174872040748596, -0.06946057081222534, 1.2244282960891724, -0.1179966852068901, 0.07796937227249146, -0.03196192905306816]} +{"t": 19.9026, "q": [-0.3634136915206909, -0.007903410121798515, 0.0067896912805736065, 0.6084704995155334, -0.28323477506637573, 0.0036810985766351223, -0.35766124725341797, 0.013481986708939075, -0.004084527958184481, 0.6304746270179749, -0.33222252130508423, -0.011979502625763416, -0.014168625697493553, 0.03050985559821129, -0.02738671563565731, -2.9921014308929443, 2.2471022605895996, 1.8794021606445312, 0.3949281573295593, -0.13461880385875702, -0.08989367634057999, 0.02010953053832054, 0.096580870449543, -0.4911974370479584, -0.06944858282804489, 1.2243683338165283, -0.1179966852068901, 0.07796937227249146, -0.03193796053528786]} +{"t": 19.9193, "q": [-0.36349040269851685, -0.007903410121798515, 0.006602204404771328, 0.6084704995155334, -0.28323477506637573, 0.0036810985766351223, -0.35789987444877625, 0.01350755337625742, -0.004111311864107847, 0.6304234862327576, -0.33224302530288696, -0.0120010981336236, -0.014074882492423058, 0.03050985559821129, -0.02738671563565731, -2.992065668106079, 2.2471261024475098, 1.8794140815734863, 0.3949281573295593, -0.13464276492595673, -0.08990565687417984, 0.02009754627943039, 0.09647301584482193, -0.49057427048683167, -0.06948453933000565, 1.2243324518203735, -0.11798469722270966, 0.077957384288311, -0.03196192905306816]} +{"t": 19.9362, "q": [-0.3635585606098175, -0.007911932654678822, 0.006495069246739149, 0.6084619760513306, -0.2832472026348114, 0.003688240423798561, -0.35804474353790283, 0.013516074977815151, -0.004084527958184481, 0.6303638219833374, -0.33225125074386597, -0.012001024559140205, -0.013967746868729591, 0.030494648963212967, -0.02737666480243206, -2.99204158782959, 2.247162103652954, 1.8793901205062866, 0.3949041962623596, -0.13469070196151733, -0.08989367634057999, 0.020121514797210693, 0.09642507880926132, -0.4897952973842621, -0.06946057081222534, 1.2242964506149292, -0.1179966852068901, 0.077957384288311, -0.03194994479417801]} +{"t": 19.953, "q": [-0.36362674832344055, -0.007911932654678822, 0.0064013260416686535, 0.6084619760513306, -0.28323477506637573, 0.0036810985766351223, -0.3580617904663086, 0.013481986708939075, -0.004151487722992897, 0.6303126811981201, -0.3322717845439911, -0.012022636830806732, -0.013833828270435333, 0.030494648963212967, -0.02737666480243206, -2.991957664489746, 2.2471859455108643, 1.8793542385101318, 0.3948562443256378, -0.1347266584634781, -0.08990565687417984, 0.02009754627943039, 0.09631721675395966, -0.48893243074417114, -0.0694725513458252, 1.22422456741333, -0.1179966852068901, 0.077957384288311, -0.03196192905306816]} +{"t": 19.9697, "q": [-0.36367788910865784, -0.007920454256236553, 0.006374542135745287, 0.6084790229797363, -0.28323894739151, 0.0036738512571901083, -0.35807883739471436, 0.013456420041620731, -0.0041247038170695305, 0.6302700638771057, -0.3322799503803253, -0.012037083506584167, -0.013726692646741867, 0.030494676902890205, -0.027386462315917015, -2.991933822631836, 2.2472100257873535, 1.8793182373046875, 0.39479634165763855, -0.13464276492595673, -0.08988168835639954, 0.02009754627943039, 0.09606555104255676, -0.487973690032959, -0.06948453933000565, 1.2242006063461304, -0.1179966852068901, 0.077957384288311, -0.03196192905306816]} +{"t": 19.9866, "q": [-0.363711953163147, -0.007911932654678822, 0.006374542135745287, 0.6084790229797363, -0.2832180857658386, 0.003695663996040821, -0.3580617904663086, 0.01347346417605877, -0.004097919911146164, 0.6302445530891418, -0.3322716951370239, -0.012051677331328392, -0.013619557954370975, 0.030487073585391045, -0.02738143503665924, -2.991933822631836, 2.2472100257873535, 1.8793302774429321, 0.39477235078811646, -0.13471467792987823, -0.08991764485836029, 0.020085562020540237, 0.09581387788057327, -0.4869909882545471, -0.0694965198636055, 1.2241406440734863, -0.1179966852068901, 0.077957384288311, -0.03197391331195831]} +{"t": 20.0033, "q": [-0.3637460470199585, -0.007920454256236553, 0.006374542135745287, 0.608504593372345, -0.28323057293891907, 0.0036883458960801363, -0.35804474353790283, 0.013447898440063, -0.004111311864107847, 0.6302615404129028, -0.3322593867778778, -0.012044527567923069, -0.013619557954370975, 0.030487073585391045, -0.02738143503665924, -2.9918737411499023, 2.2472219467163086, 1.8793063163757324, 0.39482030272483826, -0.134750634431839, -0.08988168835639954, 0.02010953053832054, 0.09549030661582947, -0.4859483540058136, -0.0694965198636055, 1.2240447998046875, -0.1179966852068901, 0.07792143523693085, -0.03197391331195831]} +{"t": 20.02, "q": [-0.36378014087677, -0.00792897678911686, 0.0064013260416686535, 0.6084704995155334, -0.28322646021842957, 0.003681151196360588, -0.3580106794834137, 0.013499030843377113, -0.004084527958184481, 0.6302700638771057, -0.3322593867778778, -0.012044527567923069, -0.013539206236600876, 0.030502252280712128, -0.027381690219044685, -2.9918859004974365, 2.247246026992798, 1.879258394241333, 0.3948322832584381, -0.13467872142791748, -0.08990565687417984, 0.02009754627943039, 0.09511879831552505, -0.48483380675315857, -0.0694965198636055, 1.2239848375320435, -0.11798469722270966, 0.07796937227249146, -0.03196192905306816]} +{"t": 20.0368, "q": [-0.36380571126937866, -0.007920454256236553, 0.006414717994630337, 0.6084960699081421, -0.28320562839508057, 0.0036885221488773823, -0.35795101523399353, 0.01347346417605877, -0.004138095770031214, 0.6302700638771057, -0.33224284648895264, -0.01207373384386301, -0.01352581474930048, 0.030487045645713806, -0.027371637523174286, -2.991837978363037, 2.2472338676452637, 1.8792823553085327, 0.3948562443256378, -0.13466674089431763, -0.08988168835639954, 0.02010953053832054, 0.09487911313772202, -0.48356348276138306, -0.06946057081222534, 1.223865032196045, -0.11802065372467041, 0.07796937227249146, -0.03196192905306816]} +{"t": 20.0535, "q": [-0.3637971878051758, -0.007937498390674591, 0.00646828580647707, 0.6085472106933594, -0.283189058303833, 0.0036741674412041903, -0.3577038645744324, 0.013533119112253189, -0.004218447022140026, 0.630321204662323, -0.3322347104549408, -0.01204473152756691, -0.013472246937453747, 0.030471865087747574, -0.02737138420343399, -2.9918618202209473, 2.2472219467163086, 1.879258394241333, 0.39484426379203796, -0.13470269739627838, -0.08988168835639954, 0.020085562020540237, 0.09465140849351883, -0.4821014106273651, -0.0694965198636055, 1.2237931489944458, -0.11800866574048996, 0.0779334157705307, -0.03197391331195831]} +{"t": 20.0702, "q": [-0.3637886643409729, -0.007946020923554897, 0.006495069246739149, 0.6086153984069824, -0.28318068385124207, 0.003688662312924862, -0.3575930893421173, 0.013524597510695457, -0.004245230928063393, 0.6304064393043518, -0.3322058618068695, -0.012066788040101528, -0.013485639356076717, 0.03044147789478302, -0.027361076325178146, -2.9918737411499023, 2.2472219467163086, 1.879258394241333, 0.39484426379203796, -0.13467872142791748, -0.08986970782279968, 0.02009754627943039, 0.09441172331571579, -0.4805075228214264, -0.0694965198636055, 1.2237212657928467, -0.1179966852068901, 0.0779334157705307, -0.03194994479417801]} +{"t": 20.087, "q": [-0.36381423473358154, -0.00792897678911686, 0.006495069246739149, 0.608717679977417, -0.28316813707351685, 0.003710404271259904, -0.357473760843277, 0.013575729914009571, -0.004312190227210522, 0.6304149627685547, -0.33216044306755066, -0.012132552452385426, -0.013472246937453747, 0.03044144995510578, -0.02735127881169319, -2.9918618202209473, 2.247246026992798, 1.8792823553085327, 0.3948322832584381, -0.13471467792987823, -0.08990565687417984, 0.020073577761650085, 0.09427990019321442, -0.47890162467956543, -0.06948453933000565, 1.2236613035202026, -0.11803263425827026, 0.07796937227249146, -0.03196192905306816]} +{"t": 20.1037, "q": [-0.3638312816619873, -0.007920454256236553, 0.00646828580647707, 0.6087858080863953, -0.28315988183021545, 0.003696015104651451, -0.3569965362548828, 0.013643906451761723, -0.004325582180172205, 0.6304746270179749, -0.33215636014938354, -0.012125329114496708, -0.01345885545015335, 0.030411062762141228, -0.027340972796082497, -2.9918618202209473, 2.247246026992798, 1.8792942762374878, 0.3947843611240387, -0.13469070196151733, -0.08986970782279968, 0.02010953053832054, 0.09402823448181152, -0.4771878719329834, -0.0694965198636055, 1.2235534191131592, -0.1179966852068901, 0.07794540375471115, -0.03196192905306816]} +{"t": 20.1204, "q": [-0.3638227581977844, -0.007920454256236553, 0.006495069246739149, 0.6089562773704529, -0.28315988183021545, 0.003696015104651451, -0.35675790905952454, 0.01366095058619976, -0.004405933897942305, 0.6305769085884094, -0.3321358561515808, -0.012089196592569351, -0.013418679125607014, 0.03041866607964039, -0.027345998212695122, -2.991837978363037, 2.247246026992798, 1.8793063163757324, 0.39474838972091675, -0.13469070196151733, -0.08989367634057999, 0.02010953053832054, 0.09390839189291, -0.4755939841270447, -0.0694965198636055, 1.2234935760498047, -0.11800866574048996, 0.07796937227249146, -0.03197391331195831]} +{"t": 20.1371, "q": [-0.3637545704841614, -0.00792897678911686, 0.006535245105624199, 0.6090585589408875, -0.2831474840641022, 0.0036744310054928064, -0.3565959930419922, 0.013686517253518105, -0.004553244449198246, 0.630696177482605, -0.3321359157562256, -0.012074676342308521, -0.013405287638306618, 0.03041861020028591, -0.027326403185725212, -2.9918618202209473, 2.247246026992798, 1.8793063163757324, 0.39472442865371704, -0.13467872142791748, -0.08990565687417984, 0.02009754627943039, 0.09374061226844788, -0.4742876887321472, -0.06942461431026459, 1.2234336137771606, -0.11800866574048996, 0.077957384288311, -0.03194994479417801]} +{"t": 20.1538, "q": [-0.3637460470199585, -0.007920454256236553, 0.006602204404771328, 0.6091607809066772, -0.2831474840641022, 0.0036744310054928064, -0.3565789461135864, 0.013677995651960373, -0.004606812261044979, 0.6308325529098511, -0.33211126923561096, -0.01206037774682045, -0.013391895219683647, 0.03041861020028591, -0.027326403185725212, -2.9918618202209473, 2.247269868850708, 1.8793063163757324, 0.3947603702545166, -0.13465476036071777, -0.08990565687417984, 0.020085562020540237, 0.09365671873092651, -0.47305333614349365, -0.06942461431026459, 1.223421573638916, -0.11802065372467041, 0.077957384288311, -0.03194994479417801]} +{"t": 20.1708, "q": [-0.3637886643409729, -0.00792897678911686, 0.006669164169579744, 0.609177827835083, -0.28315573930740356, 0.003688820404931903, -0.3565874695777893, 0.01369503978639841, -0.004713947419077158, 0.6309007406234741, -0.33211129903793335, -0.012045858427882195, -0.013365112245082855, 0.03041861020028591, -0.027326403185725212, -2.9918737411499023, 2.247246026992798, 1.8793302774429321, 0.3947124481201172, -0.13466674089431763, -0.08986970782279968, 0.02009754627943039, 0.09364473819732666, -0.47205862402915955, -0.06941263377666473, 1.2233976125717163, -0.11800866574048996, 0.077957384288311, -0.031925976276397705]} +{"t": 20.1875, "q": [-0.3638227581977844, -0.007946020923554897, 0.006709339562803507, 0.609246015548706, -0.2831765115261078, 0.003695909632369876, -0.35657042264938354, 0.013677995651960373, -0.004700555466115475, 0.6309263110160828, -0.33211538195610046, -0.012053081765770912, -0.013365112245082855, 0.03041103482246399, -0.027331175282597542, -2.9918618202209473, 2.247246026992798, 1.8793302774429321, 0.3947603702545166, -0.13467872142791748, -0.08988168835639954, 0.02009754627943039, 0.0935608446598053, -0.47125568985939026, -0.06943660229444504, 1.2233856916427612, -0.11803263425827026, 0.0779334157705307, -0.03193796053528786]} +{"t": 20.2042, "q": [-0.3637886643409729, -0.007954543456435204, 0.006749515421688557, 0.609246015548706, -0.2831765115261078, 0.003695909632369876, -0.35652783513069153, 0.013669473119080067, -0.004727339372038841, 0.6309604048728943, -0.33211126923561096, -0.01206037774682045, -0.013365112245082855, 0.03041103482246399, -0.027331175282597542, -2.9918978214263916, 2.247246026992798, 1.8793421983718872, 0.3947124481201172, -0.134750634431839, -0.08988168835639954, 0.02009754627943039, 0.09351290762424469, -0.4706924259662628, -0.06940064579248428, 1.2233617305755615, -0.11802065372467041, 0.077957384288311, -0.03194994479417801]} +{"t": 20.2209, "q": [-0.36377161741256714, -0.007963065057992935, 0.0068030827678740025, 0.6092545390129089, -0.283168226480484, 0.0036815202329307795, -0.3565022647380829, 0.013677995651960373, -0.004888041876256466, 0.6310114860534668, -0.33211129903793335, -0.012045858427882195, -0.013378503732383251, 0.03042621538043022, -0.027331430464982986, -2.9918978214263916, 2.247246026992798, 1.8793781995773315, 0.3948083221912384, -0.1347745954990387, -0.08989367634057999, 0.02009754627943039, 0.09341703355312347, -0.47023701667785645, -0.06938866525888443, 1.223349690437317, -0.11800866574048996, 0.0779334157705307, -0.03193796053528786]} +{"t": 20.2377, "q": [-0.36381423473358154, -0.007971586659550667, 0.0068030827678740025, 0.6092715859413147, -0.2831765115261078, 0.003695909632369876, -0.35649374127388, 0.013703561387956142, -0.004901433829218149, 0.6310285329818726, -0.3321361243724823, -0.011987521313130856, -0.013405287638306618, 0.03041103482246399, -0.027331175282597542, -2.991957664489746, 2.247246026992798, 1.8793901205062866, 0.39477235078811646, -0.13473863899707794, -0.08990565687417984, 0.02009754627943039, 0.09329719096422195, -0.46991345286369324, -0.06941263377666473, 1.2233617305755615, -0.11802065372467041, 0.077957384288311, -0.03193796053528786]} +{"t": 20.2544, "q": [-0.36385685205459595, -0.00798863172531128, 0.006816474720835686, 0.609322726726532, -0.28318890929222107, 0.0037175114266574383, -0.35646817088127136, 0.01366095058619976, -0.004780906718224287, 0.6310029625892639, -0.3321319818496704, -0.011994835920631886, -0.013391895219683647, 0.030403459444642067, -0.02733594737946987, -2.991933822631836, 2.2472219467163086, 1.8794021606445312, 0.3947603702545166, -0.13466674089431763, -0.08990565687417984, 0.020085562020540237, 0.09315337985754013, -0.46966177225112915, -0.06942461431026459, 1.2233377695083618, -0.11802065372467041, 0.07794540375471115, -0.03196192905306816]} +{"t": 20.2711, "q": [-0.36381423473358154, -0.00798863172531128, 0.0068030827678740025, 0.6093312501907349, -0.28318890929222107, 0.0037175114266574383, -0.3564852178096771, 0.013618340715765953, -0.004687163513153791, 0.6310200095176697, -0.3321360647678375, -0.012002076953649521, -0.013391895219683647, 0.030395884066820145, -0.027340717613697052, -2.9919216632843018, 2.247246026992798, 1.879426121711731, 0.39479634165763855, -0.13467872142791748, -0.08989367634057999, 0.02009754627943039, 0.09308147430419922, -0.4694700539112091, -0.06943660229444504, 1.223349690437317, -0.11802065372467041, 0.0779334157705307, -0.03193796053528786]} +{"t": 20.2878, "q": [-0.3638227581977844, -0.007971586659550667, 0.006749515421688557, 0.6093397736549377, -0.28318890929222107, 0.0037175114266574383, -0.35651078820228577, 0.013643906451761723, -0.004673771560192108, 0.6310200095176697, -0.3321360647678375, -0.012002076953649521, -0.013365112245082855, 0.030388308688998222, -0.02734548971056938, -2.991969585418701, 2.247269868850708, 1.8794021606445312, 0.39477235078811646, -0.13466674089431763, -0.08988168835639954, 0.020085562020540237, 0.09303353726863861, -0.46929028630256653, -0.06941263377666473, 1.2233377695083618, -0.11802065372467041, 0.07794540375471115, -0.03193796053528786]} +{"t": 20.3047, "q": [-0.36381423473358154, -0.00798863172531128, 0.00676290737465024, 0.6093482971191406, -0.28318890929222107, 0.0037175114266574383, -0.3565533757209778, 0.013652428984642029, -0.004700555466115475, 0.6310285329818726, -0.3321443200111389, -0.012001984752714634, -0.013365112245082855, 0.03038073144853115, -0.02735026180744171, -2.9919817447662354, 2.247269868850708, 1.8793901205062866, 0.39474838972091675, -0.13467872142791748, -0.08988168835639954, 0.02010953053832054, 0.09302155673503876, -0.46915844082832336, -0.06943660229444504, 1.223349690437317, -0.11800866574048996, 0.077957384288311, -0.03194994479417801]} +{"t": 20.3215, "q": [-0.3638227581977844, -0.00798863172531128, 0.006669164169579744, 0.6093397736549377, -0.28318899869918823, 0.0036886094603687525, -0.3565874695777893, 0.013626862317323685, -0.004687163513153791, 0.6309944987297058, -0.3321525752544403, -0.01198739092797041, -0.013391895219683647, 0.030388308688998222, -0.02734548971056938, -2.9919216632843018, 2.2472939491271973, 1.8793901205062866, 0.39467647671699524, -0.13467872142791748, -0.08988168835639954, 0.02009754627943039, 0.09304552525281906, -0.4690026640892029, -0.06941263377666473, 1.2233736515045166, -0.11803263425827026, 0.07792143523693085, -0.03197391331195831]} +{"t": 20.3382, "q": [-0.3638398051261902, -0.007963065057992935, 0.006655772216618061, 0.6093312501907349, -0.28318890929222107, 0.0037175114266574383, -0.35661303997039795, 0.013643906451761723, -0.004646987654268742, 0.6310029625892639, -0.3321608006954193, -0.011987317353487015, -0.013391895219683647, 0.03036552481353283, -0.027340209111571312, -2.9918978214263916, 2.247269868850708, 1.8793302774429321, 0.39470046758651733, -0.13471467792987823, -0.08986970782279968, 0.02009754627943039, 0.09305750578641891, -0.46878692507743835, -0.06940064579248428, 1.223409652709961, -0.11803263425827026, 0.077957384288311, -0.03194994479417801]} +{"t": 20.3549, "q": [-0.3638312816619873, -0.007963065057992935, 0.006655772216618061, 0.6093482971191406, -0.28318890929222107, 0.0037175114266574383, -0.3565959930419922, 0.013643906451761723, -0.004673771560192108, 0.6309859752655029, -0.3321608006954193, -0.011987317353487015, -0.013418679125607014, 0.030380675569176674, -0.027330666780471802, -2.991933822631836, 2.247282028198242, 1.8793302774429321, 0.3946884870529175, -0.13470269739627838, -0.08988168835639954, 0.02009754627943039, 0.09306949377059937, -0.46858319640159607, -0.06936469674110413, 1.223421573638916, -0.11800866574048996, 0.07796937227249146, -0.03194994479417801]} +{"t": 20.3716, "q": [-0.3638823926448822, -0.007963065057992935, 0.006655772216618061, 0.6093397736549377, -0.2831806242465973, 0.003703104332089424, -0.3565959930419922, 0.01366095058619976, -0.004646987654268742, 0.6309859752655029, -0.33214840292930603, -0.012009208090603352, -0.013432071544229984, 0.03037310019135475, -0.027335437014698982, -2.9918978214263916, 2.2472939491271973, 1.8793302774429321, 0.3946884870529175, -0.134750634431839, -0.08988168835639954, 0.020085562020540237, 0.09309346228837967, -0.46833154559135437, -0.06937667727470398, 1.2234336137771606, -0.1179966852068901, 0.07796937227249146, -0.031985897570848465]} +{"t": 20.3886, "q": [-0.36385685205459595, -0.007946020923554897, 0.006655772216618061, 0.6093397736549377, -0.2831806242465973, 0.003703104332089424, -0.35660451650619507, 0.013669473119080067, -0.004553244449198246, 0.6310029625892639, -0.3321484327316284, -0.011994687840342522, -0.013432071544229984, 0.030380675569176674, -0.027330666780471802, -2.9919216632843018, 2.2473058700561523, 1.8793542385101318, 0.39465251564979553, -0.13470269739627838, -0.08988168835639954, 0.02009754627943039, 0.09306949377059937, -0.46798399090766907, -0.06940064579248428, 1.2234336137771606, -0.11802065372467041, 0.07796937227249146, -0.03197391331195831]} +{"t": 20.4055, "q": [-0.36385685205459595, -0.00792897678911686, 0.006655772216618061, 0.6093397736549377, -0.2831723093986511, 0.00370315695181489, -0.35662156343460083, 0.013669473119080067, -0.004606812261044979, 0.6310114860534668, -0.3321443200111389, -0.012001984752714634, -0.013432071544229984, 0.030373072251677513, -0.027325639501214027, -2.991933822631836, 2.2473058700561523, 1.8793063163757324, 0.3946884870529175, -0.1347266584634781, -0.08986970782279968, 0.020085562020540237, 0.09304552525281906, -0.46758851408958435, -0.06937667727470398, 1.223421573638916, -0.11803263425827026, 0.07796937227249146, -0.03197391331195831]} +{"t": 20.4222, "q": [-0.3638398051261902, -0.00792897678911686, 0.006655772216618061, 0.6093482971191406, -0.2831765115261078, 0.003695909632369876, -0.35661303997039795, 0.013677995651960373, -0.004593420308083296, 0.6310029625892639, -0.33214426040649414, -0.012016522698104382, -0.01345885545015335, 0.030365440994501114, -0.027310816571116447, -2.991957664489746, 2.2473058700561523, 1.8793063163757324, 0.3947124481201172, -0.13469070196151733, -0.08985771983861923, 0.020073577761650085, 0.09304552525281906, -0.46701326966285706, -0.06937667727470398, 1.2234455347061157, -0.11800866574048996, 0.077957384288311, -0.03199788182973862]} +{"t": 20.439, "q": [-0.3638312816619873, -0.00792897678911686, 0.0066289883106946945, 0.6093397736549377, -0.2831765115261078, 0.003695909632369876, -0.3565959930419922, 0.01369503978639841, -0.0045800283551216125, 0.6310114860534668, -0.33213192224502563, -0.012023894116282463, -0.01344546303153038, 0.030372988432645798, -0.027296246960759163, -2.9919817447662354, 2.2473058700561523, 1.8793063163757324, 0.3947124481201172, -0.13467872142791748, -0.08988168835639954, 0.020085562020540237, 0.09304552525281906, -0.46641406416893005, -0.06938866525888443, 1.2234336137771606, -0.11803263425827026, 0.077957384288311, -0.031985897570848465]} +{"t": 20.4557, "q": [-0.3637971878051758, -0.00792897678911686, 0.006655772216618061, 0.6093312501907349, -0.283168226480484, 0.0036815202329307795, -0.3565959930419922, 0.01369503978639841, -0.004713947419077158, 0.6310285329818726, -0.33213186264038086, -0.012038413435220718, -0.013485639356076717, 0.030357807874679565, -0.027295993641018867, -2.991957664489746, 2.2473058700561523, 1.8793901205062866, 0.3946285545825958, -0.13467872142791748, -0.08986970782279968, 0.02010953053832054, 0.09302155673503876, -0.465707004070282, -0.06935270875692368, 1.2234336137771606, -0.11802065372467041, 0.0779334157705307, -0.03197391331195831]} +{"t": 20.4725, "q": [-0.36378014087677, -0.007920454256236553, 0.006669164169579744, 0.6093312501907349, -0.28316405415534973, 0.003688767785206437, -0.35661303997039795, 0.013729128055274487, -0.004673771560192108, 0.6310200095176697, -0.33211955428123474, -0.01203126460313797, -0.013499030843377113, 0.030350176617503166, -0.02728116884827614, -2.9920175075531006, 2.247365713119507, 1.8793302774429321, 0.3941372036933899, -0.13469070196151733, -0.08990565687417984, 0.02009754627943039, 0.09297361969947815, -0.4649280309677124, -0.06930477172136307, 1.2234455347061157, -0.11803263425827026, 0.07796937227249146, -0.03199788182973862]} +{"t": 20.4892, "q": [-0.36378014087677, -0.007911932654678822, 0.006642380263656378, 0.6093397736549377, -0.283168226480484, 0.0036815202329307795, -0.3565959930419922, 0.013771738857030869, -0.004713947419077158, 0.6310285329818726, -0.33211955428123474, -0.01203126460313797, -0.013565990142524242, 0.03031218610703945, -0.02726583741605282, -2.99204158782959, 2.2474136352539062, 1.8793302774429321, 0.3938615620136261, -0.13470269739627838, -0.0899416133761406, 0.020085562020540237, 0.0929376631975174, -0.4640291929244995, -0.06925683468580246, 1.2234455347061157, -0.11803263425827026, 0.077957384288311, -0.031985897570848465]} +{"t": 20.5059, "q": [-0.36376309394836426, -0.007877843454480171, 0.006655772216618061, 0.6093482971191406, -0.28316405415534973, 0.003688767785206437, -0.3565959930419922, 0.013797304593026638, -0.004780906718224287, 0.6310029625892639, -0.33211544156074524, -0.012038561515510082, -0.013592774048447609, 0.03026650659739971, -0.02721608616411686, -2.992065668106079, 2.2474377155303955, 1.8793302774429321, 0.3938376009464264, -0.1347266584634781, -0.08992962539196014, 0.020085562020540237, 0.09284179657697678, -0.4631064236164093, -0.06931675970554352, 1.2234575748443604, -0.11803263425827026, 0.0779334157705307, -0.03197391331195831]} +{"t": 20.5227, "q": [-0.3637545704841614, -0.00786932185292244, 0.0066289883106946945, 0.6093312501907349, -0.28316405415534973, 0.003688767785206437, -0.3565789461135864, 0.013822871260344982, -0.004767514765262604, 0.6310200095176697, -0.33211538195610046, -0.012053081765770912, -0.013632949441671371, 0.03022082708775997, -0.02716633304953575, -2.9921374320983887, 2.2474136352539062, 1.879366159439087, 0.39387354254722595, -0.13471467792987823, -0.0899416133761406, 0.02009754627943039, 0.09279385954141617, -0.4621117115020752, -0.06929279118776321, 1.2234575748443604, -0.11803263425827026, 0.077957384288311, -0.031985897570848465]} +{"t": 20.5395, "q": [-0.3637886643409729, -0.007860800251364708, 0.006682556122541428, 0.6093482971191406, -0.283168226480484, 0.0036815202329307795, -0.3565874695777893, 0.013814348727464676, -0.0047541228123009205, 0.6310114860534668, -0.33211544156074524, -0.012038561515510082, -0.013659733347594738, 0.030213167890906334, -0.027141712605953217, -2.9921374320983887, 2.247365713119507, 1.8793542385101318, 0.39394545555114746, -0.1347266584634781, -0.0899416133761406, 0.020085562020540237, 0.09278187155723572, -0.4609133005142212, -0.06925683468580246, 1.2234455347061157, -0.11804462224245071, 0.077957384288311, -0.03197391331195831]} +{"t": 20.5562, "q": [-0.3637034296989441, -0.007877843454480171, 0.006709339562803507, 0.6093482971191406, -0.2831641137599945, 0.003674325766041875, -0.3565789461135864, 0.013797304593026638, -0.00483447453007102, 0.6310200095176697, -0.33211538195610046, -0.012053081765770912, -0.013659733347594738, 0.0302358940243721, -0.027127398177981377, -2.992185354232788, 2.247377872467041, 1.8793542385101318, 0.39401736855506897, -0.13469070196151733, -0.08992962539196014, 0.02009754627943039, 0.09279385954141617, -0.459990531206131, -0.06926882266998291, 1.2234575748443604, -0.11803263425827026, 0.077957384288311, -0.03199788182973862]} +{"t": 20.573, "q": [-0.3637545704841614, -0.007877843454480171, 0.006709339562803507, 0.6093482971191406, -0.28315994143486023, 0.003681573085486889, -0.35657042264938354, 0.013805827125906944, -0.00483447453007102, 0.6310285329818726, -0.33211949467658997, -0.012060304172337055, -0.013673125766217709, 0.030205534771084785, -0.027126889675855637, -2.992161512374878, 2.247389793395996, 1.8793542385101318, 0.39401736855506897, -0.13473863899707794, -0.08991764485836029, 0.02009754627943039, 0.09279385954141617, -0.45885202288627625, -0.06926882266998291, 1.2234935760498047, -0.11803263425827026, 0.07794540375471115, -0.03199788182973862]} +{"t": 20.5899, "q": [-0.3637375235557556, -0.00786932185292244, 0.006736123468726873, 0.6093312501907349, -0.2831641137599945, 0.003674325766041875, -0.35657042264938354, 0.013814348727464676, -0.004847866017371416, 0.6310285329818726, -0.33211129903793335, -0.012045858427882195, -0.013659733347594738, 0.030205506831407547, -0.027117092162370682, -2.992185354232788, 2.2474136352539062, 1.8793542385101318, 0.3940413296222687, -0.13469070196151733, -0.08992962539196014, 0.02009754627943039, 0.09279385954141617, -0.4577614367008209, -0.06928080320358276, 1.2235054969787598, -0.11803263425827026, 0.07794540375471115, -0.03199788182973862]} +{"t": 20.6067, "q": [-0.3637375235557556, -0.007877843454480171, 0.006695947609841824, 0.6093568205833435, -0.28315994143486023, 0.003681573085486889, -0.356536328792572, 0.013831393793225288, -0.0049148257821798325, 0.6310285329818726, -0.33211538195610046, -0.012053081765770912, -0.013673125766217709, 0.030182667076587677, -0.027092216536402702, -2.992185354232788, 2.2474136352539062, 1.879366159439087, 0.3940053880214691, -0.13470269739627838, -0.08992962539196014, 0.02009754627943039, 0.09280584007501602, -0.4566469192504883, -0.06926882266998291, 1.2235175371170044, -0.11803263425827026, 0.0779334157705307, -0.03196192905306816]} +{"t": 20.6234, "q": [-0.3637375235557556, -0.007877843454480171, 0.006695947609841824, 0.6093312501907349, -0.28315994143486023, 0.003681573085486889, -0.35657042264938354, 0.013865482062101364, -0.004955001175403595, 0.6310285329818726, -0.33211544156074524, -0.012038561515510082, -0.013659733347594738, 0.030152281746268272, -0.027081908658146858, -2.992185354232788, 2.2474136352539062, 1.8793302774429321, 0.3940053880214691, -0.13473863899707794, -0.08990565687417984, 0.02009754627943039, 0.09279385954141617, -0.455700159072876, -0.0692448541522026, 1.2235175371170044, -0.11803263425827026, 0.07794540375471115, -0.03199788182973862]} +{"t": 20.6402, "q": [-0.3637460470199585, -0.007877843454480171, 0.006749515421688557, 0.6093312501907349, -0.28315579891204834, 0.0036743783857673407, -0.35657042264938354, 0.01383991539478302, -0.005075528286397457, 0.6310114860534668, -0.33212366700172424, -0.012038487941026688, -0.013606165535748005, 0.030144648626446724, -0.027067085728049278, -2.992161512374878, 2.2474136352539062, 1.8793302774429321, 0.3940053880214691, -0.1347266584634781, -0.08991764485836029, 0.02009754627943039, 0.09276989102363586, -0.4550170600414276, -0.06925683468580246, 1.2235175371170044, -0.11803263425827026, 0.07794540375471115, -0.031985897570848465]} +{"t": 20.6569, "q": [-0.3637460470199585, -0.007886365987360477, 0.0067896912805736065, 0.609322726726532, -0.2831723093986511, 0.00370315695181489, -0.35656189918518066, 0.013848437927663326, -0.005008568987250328, 0.6309859752655029, -0.33211544156074524, -0.012038561515510082, -0.013606165535748005, 0.030152224004268646, -0.02706231363117695, -2.992185354232788, 2.2474136352539062, 1.8793063163757324, 0.3939933776855469, -0.13470269739627838, -0.0899416133761406, 0.020085562020540237, 0.09276989102363586, -0.45456165075302124, -0.06926882266998291, 1.2235175371170044, -0.11803263425827026, 0.0779334157705307, -0.03196192905306816]} +{"t": 20.6737, "q": [-0.3637375235557556, -0.00786932185292244, 0.0068030827678740025, 0.6093397736549377, -0.28316813707351685, 0.003710404271259904, -0.3565533757209778, 0.013822871260344982, -0.005062136333435774, 0.6309859752655029, -0.33211955428123474, -0.01203126460313797, -0.013579382561147213, 0.030159801244735718, -0.027057543396949768, -2.992161512374878, 2.2474136352539062, 1.8792942762374878, 0.3940293490886688, -0.13476261496543884, -0.0899416133761406, 0.02009754627943039, 0.09278187155723572, -0.4543459415435791, -0.0692208856344223, 1.2235054969787598, -0.11805660277605057, 0.07796937227249146, -0.03197391331195831]} +{"t": 20.6904, "q": [-0.36372900009155273, -0.007894888520240784, 0.006816474720835686, 0.6093397736549377, -0.2831765115261078, 0.003695909632369876, -0.3565533757209778, 0.013797304593026638, -0.005048744846135378, 0.6309944987297058, -0.33212780952453613, -0.012016670778393745, -0.013592774048447609, 0.030159801244735718, -0.027057543396949768, -2.9921014308929443, 2.2474136352539062, 1.8792942762374878, 0.3940293490886688, -0.13470269739627838, -0.08991764485836029, 0.020085562020540237, 0.09276989102363586, -0.45433396100997925, -0.069196917116642, 1.2235175371170044, -0.11803263425827026, 0.077957384288311, -0.031985897570848465]} +{"t": 20.7071, "q": [-0.36376309394836426, -0.007903410121798515, 0.0068030827678740025, 0.6093482971191406, -0.28318068385124207, 0.003688662312924862, -0.3565533757209778, 0.0137802604585886, -0.005008568987250328, 0.6309689283370972, -0.33212369680404663, -0.012023967690765858, -0.013592774048447609, 0.030159857124090195, -0.027077138423919678, -2.9921014308929443, 2.247401714324951, 1.8792942762374878, 0.39405331015586853, -0.1347266584634781, -0.08988168835639954, 0.02009754627943039, 0.09279385954141617, -0.45442983508110046, -0.0692448541522026, 1.2235294580459595, -0.11803263425827026, 0.07794540375471115, -0.03200986608862877]} +{"t": 20.7238, "q": [-0.36372900009155273, -0.007903410121798515, 0.006776299327611923, 0.6093482971191406, -0.2831806242465973, 0.003703104332089424, -0.3565448522567749, 0.013788782991468906, -0.0049817850813269615, 0.6309263110160828, -0.3321402072906494, -0.011994762346148491, -0.013579382561147213, 0.030152251943945885, -0.027072111144661903, -2.992065668106079, 2.247389793395996, 1.8792942762374878, 0.3940892517566681, -0.13471467792987823, -0.08990565687417984, 0.020085562020540237, 0.09279385954141617, -0.4545496702194214, -0.0692448541522026, 1.2235175371170044, -0.11804462224245071, 0.077957384288311, -0.03197391331195831]} +{"t": 20.7405, "q": [-0.3637375235557556, -0.007911932654678822, 0.00676290737465024, 0.6093397736549377, -0.2831847667694092, 0.0037102990318089724, -0.3565533757209778, 0.0137802604585886, -0.004955001175403595, 0.6309433579444885, -0.3321525454521179, -0.01200191117823124, -0.013552598655223846, 0.030144648626446724, -0.027067085728049278, -2.9920175075531006, 2.2474136352539062, 1.879258394241333, 0.3941132426261902, -0.13470269739627838, -0.08990565687417984, 0.020085562020540237, 0.09281782805919647, -0.4546934962272644, -0.06926882266998291, 1.2235294580459595, -0.11804462224245071, 0.07794540375471115, -0.03199788182973862]} +{"t": 20.7573, "q": [-0.3637545704841614, -0.007894888520240784, 0.00672273151576519, 0.6093397736549377, -0.2831765115261078, 0.003695909632369876, -0.3565533757209778, 0.013788782991468906, -0.005035352893173695, 0.6309348344802856, -0.33214840292930603, -0.012009208090603352, -0.013579382561147213, 0.030099110677838326, -0.027066322043538094, -2.991957664489746, 2.247389793395996, 1.8792344331741333, 0.3941132426261902, -0.13471467792987823, -0.08992962539196014, 0.020085562020540237, 0.09281782805919647, -0.4548133313655853, -0.06926882266998291, 1.2235054969787598, -0.11804462224245071, 0.07794540375471115, -0.03197391331195831]} +{"t": 20.774, "q": [-0.36376309394836426, -0.007894888520240784, 0.006682556122541428, 0.6093397736549377, -0.2831847667694092, 0.0037102990318089724, -0.35656189918518066, 0.013797304593026638, -0.004955001175403595, 0.630909264087677, -0.3321567177772522, -0.011980094015598297, -0.013565990142524242, 0.030083902180194855, -0.027056269347667694, -2.991957664489746, 2.2474136352539062, 1.879198431968689, 0.3940892517566681, -0.1347266584634781, -0.08990565687417984, 0.020085562020540237, 0.09280584007501602, -0.45493316650390625, -0.0692448541522026, 1.2235175371170044, -0.11804462224245071, 0.077957384288311, -0.03199788182973862]} +{"t": 20.7907, "q": [-0.36378014087677, -0.007886365987360477, 0.0066289883106946945, 0.6093482971191406, -0.2831765115261078, 0.003695909632369876, -0.35657042264938354, 0.0137802604585886, -0.004928217735141516, 0.6309263110160828, -0.33214840292930603, -0.012009208090603352, -0.013552598655223846, 0.030030760914087296, -0.027050480246543884, -2.991933822631836, 2.2474136352539062, 1.8791744709014893, 0.3941132426261902, -0.13470269739627838, -0.08991764485836029, 0.02009754627943039, 0.09281782805919647, -0.45502904057502747, -0.06926882266998291, 1.2235175371170044, -0.11804462224245071, 0.077957384288311, -0.031985897570848465]} +{"t": 20.8074, "q": [-0.3637545704841614, -0.007877843454480171, 0.006575420964509249, 0.6093142032623291, -0.2831765115261078, 0.003695909632369876, -0.3565959930419922, 0.013771738857030869, -0.004821082577109337, 0.6309007406234741, -0.3321566581726074, -0.011994614265859127, -0.013565990142524242, 0.030038364231586456, -0.02705550752580166, -2.991945743560791, 2.247401714324951, 1.8791744709014893, 0.3941611647605896, -0.13471467792987823, -0.08992962539196014, 0.02009754627943039, 0.09280584007501602, -0.45520880818367004, -0.06932874023914337, 1.2234935760498047, -0.11804462224245071, 0.077957384288311, -0.031985897570848465]} +{"t": 20.8242, "q": [-0.36376309394836426, -0.007860800251364708, 0.006548637058585882, 0.6093568205833435, -0.2831765115261078, 0.003695909632369876, -0.35661303997039795, 0.013805827125906944, -0.004861257970333099, 0.6309007406234741, -0.3321566581726074, -0.011994614265859127, -0.013552598655223846, 0.030030760914087296, -0.027050480246543884, -2.9919216632843018, 2.2474136352539062, 1.8791624307632446, 0.3941132426261902, -0.13470269739627838, -0.08991764485836029, 0.02009754627943039, 0.09279385954141617, -0.4554245173931122, -0.06934072822332382, 1.2235175371170044, -0.11804462224245071, 0.0779334157705307, -0.031985897570848465]} +{"t": 20.8409, "q": [-0.3637971878051758, -0.007852277718484402, 0.006521853152662516, 0.6093312501907349, -0.283168226480484, 0.0036815202329307795, -0.35661303997039795, 0.013797304593026638, -0.00483447453007102, 0.630909264087677, -0.33214840292930603, -0.012009208090603352, -0.013539206236600876, 0.030038364231586456, -0.02705550752580166, -2.991933822631836, 2.247389793395996, 1.8791624307632446, 0.3941372036933899, -0.13470269739627838, -0.08991764485836029, 0.020061593502759933, 0.09278187155723572, -0.4554964303970337, -0.06931675970554352, 1.22348153591156, -0.11804462224245071, 0.077957384288311, -0.03199788182973862]} +{"t": 20.8576, "q": [-0.3637545704841614, -0.007852277718484402, 0.006495069246739149, 0.6093482971191406, -0.2831724286079407, 0.0036742729134857655, -0.35662156343460083, 0.013788782991468906, -0.004847866017371416, 0.6309007406234741, -0.33214840292930603, -0.012009208090603352, -0.013485639356076717, 0.030030760914087296, -0.027050480246543884, -2.9918978214263916, 2.247389793395996, 1.8791505098342896, 0.39422109723091125, -0.1347266584634781, -0.0899416133761406, 0.02009754627943039, 0.09276989102363586, -0.4555683434009552, -0.06932874023914337, 1.2234935760498047, -0.11803263425827026, 0.077957384288311, -0.031985897570848465]} +{"t": 20.8744, "q": [-0.3637545704841614, -0.007852277718484402, 0.00646828580647707, 0.6093397736549377, -0.2831724286079407, 0.0036742729134857655, -0.35660451650619507, 0.0137802604585886, -0.00483447453007102, 0.6309007406234741, -0.33215659856796265, -0.012023653835058212, -0.013472246937453747, 0.030045967549085617, -0.027060532942414284, -2.991933822631836, 2.247365713119507, 1.8791863918304443, 0.3942570388317108, -0.13471467792987823, -0.08992962539196014, 0.020085562020540237, 0.09274592250585556, -0.4557361304759979, -0.06936469674110413, 1.22348153591156, -0.11803263425827026, 0.07796937227249146, -0.03199788182973862]} +{"t": 20.8912, "q": [-0.36376309394836426, -0.007835233584046364, 0.006495069246739149, 0.6093482971191406, -0.2831765115261078, 0.003695909632369876, -0.35660451650619507, 0.013763216324150562, -0.00483447453007102, 0.6308922171592712, -0.33214840292930603, -0.012009208090603352, -0.01344546303153038, 0.03005354292690754, -0.027055760845541954, -2.991933822631836, 2.2473537921905518, 1.879198431968689, 0.3942809998989105, -0.1347985714673996, -0.08992962539196014, 0.02010953053832054, 0.09272195398807526, -0.455843985080719, -0.06940064579248428, 1.22348153591156, -0.11805660277605057, 0.07798135280609131, -0.03199788182973862]} +{"t": 20.908, "q": [-0.36378014087677, -0.007852277718484402, 0.006495069246739149, 0.6093397736549377, -0.283168226480484, 0.0036815202329307795, -0.35660451650619507, 0.01375469472259283, -0.0047541228123009205, 0.6309007406234741, -0.3321525752544403, -0.01198739092797041, -0.013472246937453747, 0.03005354292690754, -0.027055760845541954, -2.9920055866241455, 2.2473537921905518, 1.8792223930358887, 0.3942809998989105, -0.1347985714673996, -0.08991764485836029, 0.020085562020540237, 0.09261409193277359, -0.455843985080719, -0.06941263377666473, 1.22348153591156, -0.11804462224245071, 0.07796937227249146, -0.03199788182973862]} +{"t": 20.9247, "q": [-0.36378014087677, -0.007852277718484402, 0.006495069246739149, 0.6093312501907349, -0.283168226480484, 0.0036815202329307795, -0.35660451650619507, 0.013746172189712524, -0.004767514765262604, 0.6308922171592712, -0.3321525454521179, -0.01200191117823124, -0.013485639356076717, 0.03005354292690754, -0.027055760845541954, -2.9920175075531006, 2.2473537921905518, 1.879258394241333, 0.3942570388317108, -0.13473863899707794, -0.08995359390974045, 0.020085562020540237, 0.09259012341499329, -0.45580801367759705, -0.06946057081222534, 1.22348153591156, -0.11803263425827026, 0.07794540375471115, -0.03199788182973862]} +{"t": 20.9414, "q": [-0.36376309394836426, -0.007826711051166058, 0.006508461199700832, 0.6093397736549377, -0.2831641137599945, 0.003674325766041875, -0.3565959930419922, 0.013746172189712524, -0.004780906718224287, 0.6308922171592712, -0.3321525454521179, -0.01200191117823124, -0.013485639356076717, 0.030030760914087296, -0.027050480246543884, -2.99204158782959, 2.2473537921905518, 1.8792463541030884, 0.3942570388317108, -0.13473863899707794, -0.08992962539196014, 0.02010953053832054, 0.09253020584583282, -0.45587992668151855, -0.06946057081222534, 1.22348153591156, -0.11803263425827026, 0.07792143523693085, -0.03199788182973862]} +{"t": 20.9584, "q": [-0.3637375235557556, -0.007835233584046364, 0.006508461199700832, 0.6093312501907349, -0.28318068385124207, 0.003688662312924862, -0.3565959930419922, 0.013788782991468906, -0.004821082577109337, 0.6309007406234741, -0.33214014768600464, -0.012023819610476494, -0.01351242233067751, 0.030045967549085617, -0.027060532942414284, -2.99204158782959, 2.2472939491271973, 1.8792942762374878, 0.3942809998989105, -0.1347266584634781, -0.0899416133761406, 0.020085562020540237, 0.09248226881027222, -0.45587992668151855, -0.06946057081222534, 1.2234575748443604, -0.11804462224245071, 0.07794540375471115, -0.03199788182973862]} +{"t": 20.9751, "q": [-0.36378014087677, -0.007843755185604095, 0.006535245105624199, 0.609322726726532, -0.283168226480484, 0.0036815202329307795, -0.3565959930419922, 0.013771738857030869, -0.00483447453007102, 0.6309007406234741, -0.332140177488327, -0.012009300291538239, -0.013539206236600876, 0.030030760914087296, -0.027050480246543884, -2.9920055866241455, 2.247282028198242, 1.8792942762374878, 0.3942929804325104, -0.1347745954990387, -0.0899416133761406, 0.02009754627943039, 0.09243433177471161, -0.45590388774871826, -0.06946057081222534, 1.2234694957733154, -0.11805660277605057, 0.077957384288311, -0.03200986608862877]} +{"t": 20.9918, "q": [-0.3637460470199585, -0.007843755185604095, 0.0065620290115475655, 0.6093397736549377, -0.2831641137599945, 0.003674325766041875, -0.35657042264938354, 0.013797304593026638, -0.00483447453007102, 0.6309177875518799, -0.33213186264038086, -0.012038413435220718, -0.013565990142524242, 0.03005354292690754, -0.027055760845541954, -2.9920175075531006, 2.2473058700561523, 1.8792823553085327, 0.3943049907684326, -0.13476261496543884, -0.08992962539196014, 0.02009754627943039, 0.09237440675497055, -0.45590388774871826, -0.06944858282804489, 1.22348153591156, -0.11805660277605057, 0.077957384288311, -0.03200986608862877]} +{"t": 21.0089, "q": [-0.3637375235557556, -0.007843755185604095, 0.006588812451809645, 0.6093312501907349, -0.283168226480484, 0.0036815202329307795, -0.3565533757209778, 0.013805827125906944, -0.004901433829218149, 0.6308922171592712, -0.33213186264038086, -0.012038413435220718, -0.013592774048447609, 0.03004593960940838, -0.02705073542892933, -2.9920175075531006, 2.247282028198242, 1.879258394241333, 0.3943289518356323, -0.1347266584634781, -0.08992962539196014, 0.02009754627943039, 0.09235043823719025, -0.4559158682823181, -0.0694725513458252, 1.22348153591156, -0.11804462224245071, 0.077957384288311, -0.03199788182973862]} +{"t": 21.0256, "q": [-0.3637375235557556, -0.007843755185604095, 0.006588812451809645, 0.6093312501907349, -0.2831641137599945, 0.003674325766041875, -0.3565448522567749, 0.013805827125906944, -0.004901433829218149, 0.6308922171592712, -0.33213186264038086, -0.012038413435220718, -0.013592774048447609, 0.03004593960940838, -0.02705073542892933, -2.9920055866241455, 2.247282028198242, 1.879258394241333, 0.39435291290283203, -0.13476261496543884, -0.0899416133761406, 0.02010953053832054, 0.09224258363246918, -0.45640721917152405, -0.06953247636556625, 1.2234935760498047, -0.11804462224245071, 0.07794540375471115, -0.03199788182973862]} +{"t": 21.0424, "q": [-0.3637460470199585, -0.007843755185604095, 0.006602204404771328, 0.609322726726532, -0.28316405415534973, 0.003688767785206437, -0.3565448522567749, 0.013822871260344982, -0.004901433829218149, 0.6308922171592712, -0.33212774991989136, -0.01204571034759283, -0.013579382561147213, 0.030030760914087296, -0.027050480246543884, -2.9919817447662354, 2.247282028198242, 1.879270315170288, 0.3943888545036316, -0.13476261496543884, -0.0899416133761406, 0.02010953053832054, 0.09215869009494781, -0.45710232853889465, -0.06960438191890717, 1.2234694957733154, -0.11805660277605057, 0.07796937227249146, -0.03200986608862877]} +{"t": 21.0591, "q": [-0.3637375235557556, -0.007843755185604095, 0.006602204404771328, 0.609322726726532, -0.283168226480484, 0.0036815202329307795, -0.35652783513069153, 0.013831393793225288, -0.0049148257821798325, 0.6309007406234741, -0.33213186264038086, -0.012038413435220718, -0.013619557954370975, 0.030038336291909218, -0.027045708149671555, -2.9920175075531006, 2.247269868850708, 1.8792823553085327, 0.3943888545036316, -0.13473863899707794, -0.08992962539196014, 0.020085562020540237, 0.09201487898826599, -0.4577135145664215, -0.0697721615433693, 1.2234575748443604, -0.11806859076023102, 0.077957384288311, -0.03200986608862877]} +{"t": 21.0758, "q": [-0.3637375235557556, -0.007860800251364708, 0.0066289883106946945, 0.609322726726532, -0.28315579891204834, 0.0036743783857673407, -0.35652783513069153, 0.013831393793225288, -0.004901433829218149, 0.6309007406234741, -0.33213186264038086, -0.012038413435220718, -0.013632949441671371, 0.030038336291909218, -0.027045708149671555, -2.99204158782959, 2.247282028198242, 1.8793063163757324, 0.3943409323692322, -0.1347985714673996, -0.08992962539196014, 0.020085562020540237, 0.09190702438354492, -0.458240807056427, -0.0698440670967102, 1.2234455347061157, -0.11806859076023102, 0.07792143523693085, -0.03199788182973862]} +{"t": 21.0926, "q": [-0.3637375235557556, -0.007835233584046364, 0.006602204404771328, 0.6093312501907349, -0.28315988183021545, 0.003696015104651451, -0.35652783513069153, 0.013831393793225288, -0.004888041876256466, 0.6308922171592712, -0.33212366700172424, -0.012038487941026688, -0.013673125766217709, 0.03004591166973114, -0.027040937915444374, -2.992077589035034, 2.247269868850708, 1.8793302774429321, 0.39440086483955383, -0.1348225325345993, -0.08990565687417984, 0.020085562020540237, 0.0917392447590828, -0.45864829421043396, -0.06995192170143127, 1.2234694957733154, -0.11805660277605057, 0.077957384288311, -0.03199788182973862]} +{"t": 21.1093, "q": [-0.3637460470199585, -0.007835233584046364, 0.006642380263656378, 0.6093397736549377, -0.28315988183021545, 0.003696015104651451, -0.35651078820228577, 0.013831393793225288, -0.004888041876256466, 0.6309007406234741, -0.33211538195610046, -0.012053081765770912, -0.013753476552665234, 0.030038336291909218, -0.027045708149671555, -2.992077589035034, 2.2472219467163086, 1.8793302774429321, 0.3943648934364319, -0.1348225325345993, -0.0899416133761406, 0.02009754627943039, 0.0915115475654602, -0.4590677320957184, -0.07008375227451324, 1.22348153591156, -0.11806859076023102, 0.077957384288311, -0.031985897570848465]} +{"t": 21.1261, "q": [-0.3637034296989441, -0.007826711051166058, 0.006615596357733011, 0.6093312501907349, -0.2831641137599945, 0.003674325766041875, -0.35651931166648865, 0.013831393793225288, -0.004888041876256466, 0.6309007406234741, -0.33212360739707947, -0.012053007259964943, -0.013833828270435333, 0.030030760914087296, -0.027050480246543884, -2.9921014308929443, 2.2472219467163086, 1.8793542385101318, 0.39442482590675354, -0.1347985714673996, -0.08992962539196014, 0.02009754627943039, 0.09122392535209656, -0.45940327644348145, -0.07034739851951599, 1.22348153591156, -0.11806859076023102, 0.07796937227249146, -0.03199788182973862]} +{"t": 21.1428, "q": [-0.3637034296989441, -0.007792622782289982, 0.006615596357733011, 0.6093312501907349, -0.2831641137599945, 0.003674325766041875, -0.35649374127388, 0.013874003663659096, -0.004888041876256466, 0.6309007406234741, -0.33211949467658997, -0.012060304172337055, -0.013900787569582462, 0.03004593960940838, -0.02705073542892933, -2.9921014308929443, 2.247150182723999, 1.8793901205062866, 0.3946045935153961, -0.13476261496543884, -0.08988168835639954, 0.02009754627943039, 0.09096027165651321, -0.4596309959888458, -0.07064700871706009, 1.2234694957733154, -0.11805660277605057, 0.077957384288311, -0.03200986608862877]} +{"t": 21.1595, "q": [-0.36372047662734985, -0.0077500119805336, 0.006615596357733011, 0.6093142032623291, -0.283168226480484, 0.0036815202329307795, -0.35649374127388, 0.013874003663659096, -0.004807690624147654, 0.6308922171592712, -0.33212360739707947, -0.012053007259964943, -0.013940962962806225, 0.030038336291909218, -0.027045708149671555, -2.9921255111694336, 2.2471022605895996, 1.8794021606445312, 0.3947124481201172, -0.13473863899707794, -0.08989367634057999, 0.02009754627943039, 0.09072058647871017, -0.45982274413108826, -0.07127019017934799, 1.2234694957733154, -0.11808057129383087, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.1763, "q": [-0.36372047662734985, -0.007741490378975868, 0.006615596357733011, 0.6092971563339233, -0.2831641137599945, 0.003674325766041875, -0.35649374127388, 0.013891047798097134, -0.004861257970333099, 0.6308836936950684, -0.33211952447891235, -0.0120457848533988, -0.013981139287352562, 0.030038336291909218, -0.027045708149671555, -2.992161512374878, 2.2471022605895996, 1.8793781995773315, 0.3946884870529175, -0.13476261496543884, -0.08989367634057999, 0.02009754627943039, 0.09048090130090714, -0.4599665403366089, -0.07282813638448715, 1.22348153591156, -0.11808057129383087, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.1931, "q": [-0.3637460470199585, -0.0077500119805336, 0.006602204404771328, 0.6092801094055176, -0.2831641137599945, 0.003674325766041875, -0.3565022647380829, 0.013882526196539402, -0.004861257970333099, 0.6308666467666626, -0.33211949467658997, -0.012060304172337055, -0.013967746868729591, 0.03004591166973114, -0.027040937915444374, -2.9922094345092773, 2.2471261024475098, 1.8794140815734863, 0.3946285545825958, -0.1347985714673996, -0.08992962539196014, 0.020073577761650085, 0.09025319665670395, -0.4600144922733307, -0.07534482330083847, 1.2234694957733154, -0.11808057129383087, 0.07794540375471115, -0.03197391331195831]} +{"t": 21.2099, "q": [-0.36372900009155273, -0.007724445778876543, 0.006602204404771328, 0.6092801094055176, -0.2831641137599945, 0.003674325766041875, -0.35649374127388, 0.013882526196539402, -0.004821082577109337, 0.6308836936950684, -0.33212774991989136, -0.01204571034759283, -0.013967746868729591, 0.03006112016737461, -0.027050988748669624, -2.9922213554382324, 2.2471022605895996, 1.8794140815734863, 0.39461657404899597, -0.13481055200099945, -0.08992962539196014, 0.02009754627943039, 0.08988168835639954, -0.46032607555389404, -0.07716642320156097, 1.2234694957733154, -0.11809255182743073, 0.07796937227249146, -0.03199788182973862]} +{"t": 21.2266, "q": [-0.36372047662734985, -0.007724445778876543, 0.006602204404771328, 0.6092545390129089, -0.2831641137599945, 0.003674325766041875, -0.35651078820228577, 0.01383991539478302, -0.00483447453007102, 0.6308325529098511, -0.33213600516319275, -0.012031116522848606, -0.013967746868729591, 0.030068695545196533, -0.027046218514442444, -2.9922573566436768, 2.2471022605895996, 1.8794381618499756, 0.3946884870529175, -0.1347266584634781, -0.08992962539196014, 0.02010953053832054, 0.08963002264499664, -0.46090131998062134, -0.07776563614606857, 1.2234575748443604, -0.11809255182743073, 0.07798135280609131, -0.03197391331195831]} +{"t": 21.2435, "q": [-0.3637375235557556, -0.007698879577219486, 0.006615596357733011, 0.609246015548706, -0.2831641137599945, 0.003674325766041875, -0.35646817088127136, 0.013882526196539402, -0.00483447453007102, 0.6308155059814453, -0.33212366700172424, -0.012038487941026688, -0.013927571475505829, 0.03004591166973114, -0.027040937915444374, -2.9922454357147217, 2.2470781803131104, 1.8794021606445312, 0.3947364091873169, -0.13476261496543884, -0.08992962539196014, 0.02010953053832054, 0.089342400431633, -0.46169227361679077, -0.07807722687721252, 1.2234455347061157, -0.11809255182743073, 0.077957384288311, -0.03197391331195831]} +{"t": 21.2602, "q": [-0.3637375235557556, -0.007690357510000467, 0.006575420964509249, 0.6092119216918945, -0.28316405415534973, 0.003688767785206437, -0.35646817088127136, 0.013874003663659096, -0.004888041876256466, 0.6308240294456482, -0.33211949467658997, -0.012060304172337055, -0.013887396082282066, 0.03006112016737461, -0.027050988748669624, -2.992293357849121, 2.247030258178711, 1.8793901205062866, 0.39484426379203796, -0.1347266584634781, -0.0899416133761406, 0.020085562020540237, 0.08910271525382996, -0.462758868932724, -0.07841278612613678, 1.223409652709961, -0.11810453981161118, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.277, "q": [-0.363711953163147, -0.007698879577219486, 0.006615596357733011, 0.6091693043708801, -0.283168226480484, 0.0036815202329307795, -0.35646817088127136, 0.013891047798097134, -0.004901433829218149, 0.6307984590530396, -0.33213600516319275, -0.012031116522848606, -0.013900787569582462, 0.03006112016737461, -0.027050988748669624, -2.992293357849121, 2.247042179107666, 1.8794140815734863, 0.3949640989303589, -0.13473863899707794, -0.08992962539196014, 0.020085562020540237, 0.088791124522686, -0.46408912539482117, -0.07874834537506104, 1.2233976125717163, -0.11810453981161118, 0.077957384288311, -0.03197391331195831]} +{"t": 21.2938, "q": [-0.36372900009155273, -0.007690357510000467, 0.006642380263656378, 0.6091437935829163, -0.2831723093986511, 0.00370315695181489, -0.35646817088127136, 0.013908091932535172, -0.004928217735141516, 0.6307899355888367, -0.33212360739707947, -0.012053007259964943, -0.013900787569582462, 0.030068695545196533, -0.027046218514442444, -2.992305278778076, 2.247018337249756, 1.8794621229171753, 0.39507198333740234, -0.1347745954990387, -0.0899416133761406, 0.02009754627943039, 0.08850350230932236, -0.46546730399131775, -0.07900001108646393, 1.2233856916427612, -0.11812850832939148, 0.07796937227249146, -0.03199788182973862]} +{"t": 21.3105, "q": [-0.3636949062347412, -0.007707401644438505, 0.006669164169579744, 0.6091182231903076, -0.283168226480484, 0.0036815202329307795, -0.35649374127388, 0.013916614465415478, -0.004968393128365278, 0.630764365196228, -0.33213186264038086, -0.012038413435220718, -0.013954355381429195, 0.030061090365052223, -0.02704119123518467, -2.992269277572632, 2.247042179107666, 1.879426121711731, 0.39509594440460205, -0.13481055200099945, -0.08992962539196014, 0.020085562020540237, 0.08829977363348007, -0.4670252501964569, -0.07925168424844742, 1.2233856916427612, -0.11809255182743073, 0.077957384288311, -0.03200986608862877]} +{"t": 21.3273, "q": [-0.36368638277053833, -0.007698879577219486, 0.006669164169579744, 0.6091096997261047, -0.2831724286079407, 0.0036742729134857655, -0.35647669434547424, 0.013942181132733822, -0.004955001175403595, 0.630764365196228, -0.33212774991989136, -0.01204571034759283, -0.014021314680576324, 0.030068695545196533, -0.027046218514442444, -2.992305278778076, 2.247042179107666, 1.8795100450515747, 0.3950839638710022, -0.13481055200099945, -0.08992962539196014, 0.02009754627943039, 0.08808405697345734, -0.4687030613422394, -0.0794074758887291, 1.2233617305755615, -0.11810453981161118, 0.077957384288311, -0.03199788182973862]} +{"t": 21.344, "q": [-0.36372047662734985, -0.007707401644438505, 0.006669164169579744, 0.6091011762619019, -0.283168226480484, 0.0036815202329307795, -0.35646817088127136, 0.013908091932535172, -0.004941609688103199, 0.6307302713394165, -0.33213600516319275, -0.012031116522848606, -0.014141841791570187, 0.030061090365052223, -0.02704119123518467, -2.992293357849121, 2.247030258178711, 1.8794740438461304, 0.39509594440460205, -0.1347745954990387, -0.0899416133761406, 0.02009754627943039, 0.08791627734899521, -0.4707763195037842, -0.07955128699541092, 1.223349690437317, -0.11810453981161118, 0.077957384288311, -0.03197391331195831]} +{"t": 21.3608, "q": [-0.3637034296989441, -0.007707401644438505, 0.00672273151576519, 0.6090670824050903, -0.2831765115261078, 0.003695909632369876, -0.35649374127388, 0.01389957033097744, -0.004874649923294783, 0.6307047009468079, -0.33214840292930603, -0.012009208090603352, -0.014222193509340286, 0.030068695545196533, -0.027046218514442444, -2.992269277572632, 2.247018337249756, 1.8794621229171753, 0.3950839638710022, -0.134750634431839, -0.08992962539196014, 0.020085562020540237, 0.08777246624231339, -0.4730892777442932, -0.07963517308235168, 1.223349690437317, -0.11812850832939148, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.3775, "q": [-0.3637034296989441, -0.007724445778876543, 0.006749515421688557, 0.6090585589408875, -0.28318068385124207, 0.003688662312924862, -0.35649374127388, 0.01389957033097744, -0.004861257970333099, 0.6307047009468079, -0.332140177488327, -0.012009300291538239, -0.014275760389864445, 0.030068695545196533, -0.027046218514442444, -2.992269277572632, 2.247018337249756, 1.8794621229171753, 0.3951079249382019, -0.13473863899707794, -0.0899416133761406, 0.02009754627943039, 0.08770056068897247, -0.47545015811920166, -0.07969509810209274, 1.2233617305755615, -0.11812850832939148, 0.077957384288311, -0.03197391331195831]} +{"t": 21.3942, "q": [-0.36372900009155273, -0.007707401644438505, 0.0067896912805736065, 0.6090074181556702, -0.28318068385124207, 0.003688662312924862, -0.3564852178096771, 0.01389957033097744, -0.004807690624147654, 0.630696177482605, -0.3321525454521179, -0.01200191117823124, -0.014289152808487415, 0.030068695545196533, -0.027046218514442444, -2.992305278778076, 2.2469942569732666, 1.8794500827789307, 0.39519181847572327, -0.1347745954990387, -0.08992962539196014, 0.02009754627943039, 0.08767659217119217, -0.4776912033557892, -0.07985088974237442, 1.2233856916427612, -0.11812850832939148, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.4109, "q": [-0.3637034296989441, -0.007715923711657524, 0.006776299327611923, 0.6089818477630615, -0.2831765115261078, 0.003695909632369876, -0.3564596474170685, 0.01389957033097744, -0.004807690624147654, 0.6306791305541992, -0.33214840292930603, -0.012009208090603352, -0.014342720620334148, 0.030076326802372932, -0.027061041444540024, -2.992269277572632, 2.2469823360443115, 1.8794740438461304, 0.3952637314796448, -0.1347266584634781, -0.08990565687417984, 0.02009754627943039, 0.08767659217119217, -0.4800041615962982, -0.07999470084905624, 1.2233617305755615, -0.11812850832939148, 0.077957384288311, -0.03199788182973862]} +{"t": 21.4278, "q": [-0.363711953163147, -0.007707401644438505, 0.00672273151576519, 0.6089136600494385, -0.283168226480484, 0.0036815202329307795, -0.35646817088127136, 0.013882526196539402, -0.00483447453007102, 0.6306876540184021, -0.3321525454521179, -0.01200191117823124, -0.014436463825404644, 0.030076326802372932, -0.027061041444540024, -2.992269277572632, 2.2469582557678223, 1.879486083984375, 0.39537158608436584, -0.1347266584634781, -0.08992962539196014, 0.02009754627943039, 0.08767659217119217, -0.4820774495601654, -0.08018644899129868, 1.223409652709961, -0.11812850832939148, 0.077957384288311, -0.03197391331195831]} +{"t": 21.4445, "q": [-0.36368638277053833, -0.007707401644438505, 0.006695947609841824, 0.608879566192627, -0.2831765115261078, 0.003695909632369876, -0.3564596474170685, 0.013856959529221058, -0.004821082577109337, 0.6306791305541992, -0.3321566581726074, -0.011994614265859127, -0.01446324773132801, 0.030076326802372932, -0.027061041444540024, -2.9922454357147217, 2.2469582557678223, 1.8794740438461304, 0.39537158608436584, -0.134750634431839, -0.08992962539196014, 0.020085562020540237, 0.08768857270479202, -0.4842945337295532, -0.08042613416910172, 1.2233976125717163, -0.11811652034521103, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.4613, "q": [-0.3636949062347412, -0.007698879577219486, 0.006642380263656378, 0.6088454723358154, -0.2831599712371826, 0.0036671310663223267, -0.3564511239528656, 0.01383991539478302, -0.004713947419077158, 0.6306706070899963, -0.3321566581726074, -0.011994614265859127, -0.014490030705928802, 0.030076326802372932, -0.027061041444540024, -2.9922094345092773, 2.2469582557678223, 1.8795219659805298, 0.39539554715156555, -0.134750634431839, -0.08992962539196014, 0.02009754627943039, 0.08766460418701172, -0.48653557896614075, -0.08066581934690475, 1.2233976125717163, -0.11811652034521103, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.478, "q": [-0.36368638277053833, -0.0076647913083434105, 0.006642380263656378, 0.6088113784790039, -0.2831558585166931, 0.0036599363666027784, -0.35647669434547424, 0.013831393793225288, -0.004673771560192108, 0.6306535601615906, -0.3321566581726074, -0.011994614265859127, -0.014476639218628407, 0.030106686055660248, -0.027061549946665764, -2.992185354232788, 2.246934413909912, 1.8795100450515747, 0.3954314887523651, -0.134750634431839, -0.08992962539196014, 0.020085562020540237, 0.08767659217119217, -0.4887406826019287, -0.08112122118473053, 1.223409652709961, -0.11812850832939148, 0.07794540375471115, -0.031985897570848465]} +{"t": 21.4947, "q": [-0.36367788910865784, -0.007639224641025066, 0.006615596357733011, 0.6087602972984314, -0.2831600308418274, 0.0036526890471577644, -0.35647669434547424, 0.013831393793225288, -0.004713947419077158, 0.6306620836257935, -0.3321525454521179, -0.01200191117823124, -0.014490030705928802, 0.030114345252513885, -0.027086172252893448, -2.992185354232788, 2.246934413909912, 1.8795219659805298, 0.3955034017562866, -0.134750634431839, -0.0899416133761406, 0.02009754627943039, 0.08766460418701172, -0.4909697473049164, -0.08194813132286072, 1.223421573638916, -0.11812850832939148, 0.07798135280609131, -0.03197391331195831]} +{"t": 21.5115, "q": [-0.36367788910865784, -0.007639224641025066, 0.006615596357733011, 0.6086665391921997, -0.2831558585166931, 0.0036599363666027784, -0.3564852178096771, 0.013822871260344982, -0.004660379607230425, 0.6306365132331848, -0.3321607708930969, -0.012001837603747845, -0.014476639218628407, 0.030197875574231148, -0.027102267369627953, -2.992185354232788, 2.246922492980957, 1.8795219659805298, 0.3956352174282074, -0.1347745954990387, -0.08992962539196014, 0.020085562020540237, 0.08766460418701172, -0.49365419149398804, -0.08300274610519409, 1.2234336137771606, -0.11812850832939148, 0.077957384288311, -0.03194994479417801]} +{"t": 21.5282, "q": [-0.3636437952518463, -0.007647747173905373, 0.006615596357733011, 0.6085472106933594, -0.2831517159938812, 0.003652723738923669, -0.35649374127388, 0.013831393793225288, -0.004646987654268742, 0.6306195259094238, -0.33216485381126404, -0.012009060010313988, -0.014476639218628407, 0.030281461775302887, -0.027137959375977516, -2.992185354232788, 2.2468745708465576, 1.8795100450515747, 0.39574307203292847, -0.134750634431839, -0.08991764485836029, 0.020085562020540237, 0.08766460418701172, -0.49617090821266174, -0.0848722830414772, 1.2234575748443604, -0.11810453981161118, 0.07796937227249146, -0.03196192905306816]} +{"t": 21.5449, "q": [-0.3636608421802521, -0.007639224641025066, 0.006642380263656378, 0.6084449291229248, -0.2831476330757141, 0.003631087252870202, -0.3565022647380829, 0.013822871260344982, -0.0045800283551216125, 0.6305513381958008, -0.3321689963340759, -0.012001763097941875, -0.014436463825404644, 0.03044094517827034, -0.027174923568964005, -2.992161512374878, 2.2468745708465576, 1.8795219659805298, 0.39582696557044983, -0.134750634431839, -0.08992962539196014, 0.02009754627943039, 0.08767659217119217, -0.4991309940814972, -0.08681372553110123, 1.2234575748443604, -0.11810453981161118, 0.077957384288311, -0.03197391331195831]} +{"t": 21.5618, "q": [-0.3636523187160492, -0.0076647913083434105, 0.006642380263656378, 0.608274519443512, -0.2831518054008484, 0.0036238397005945444, -0.35651078820228577, 0.013822871260344982, -0.004566636402159929, 0.630534291267395, -0.33217716217041016, -0.012016208842396736, -0.014409679919481277, 0.030501747503876686, -0.0272053349763155, -2.992185354232788, 2.2468745708465576, 1.8795340061187744, 0.39594683051109314, -0.134750634431839, -0.08991764485836029, 0.020085562020540237, 0.08766460418701172, -0.5021390318870544, -0.0878683403134346, 1.2234575748443604, -0.11814048886299133, 0.07796937227249146, -0.031985897570848465]} +{"t": 21.5787, "q": [-0.36359265446662903, -0.007647747173905373, 0.0066289883106946945, 0.6080784797668457, -0.28313523530960083, 0.0036095031537115574, -0.35652783513069153, 0.013822871260344982, -0.004539852496236563, 0.6304916739463806, -0.3321812152862549, -0.012052490375936031, -0.014409679919481277, 0.03052455745637417, -0.027220413088798523, -2.992185354232788, 2.2468984127044678, 1.8796058893203735, 0.39619848132133484, -0.13476261496543884, -0.08992962539196014, 0.020073577761650085, 0.08766460418701172, -0.5051351189613342, -0.08855143934488297, 1.2234575748443604, -0.11812850832939148, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.5954, "q": [-0.36357560753822327, -0.0076647913083434105, 0.006642380263656378, 0.6079592108726501, -0.28311872482299805, 0.003580706659704447, -0.35652783513069153, 0.013856959529221058, -0.004620204214006662, 0.6304490566253662, -0.33218124508857727, -0.012037970125675201, -0.014490030705928802, 0.030516983941197395, -0.027225183323025703, -2.9922213554382324, 2.2468984127044678, 1.8796058893203735, 0.39639022946357727, -0.1347266584634781, -0.08991764485836029, 0.02009754627943039, 0.0875926986336708, -0.5083827972412109, -0.08929446339607239, 1.2234336137771606, -0.11811652034521103, 0.0779334157705307, -0.03197391331195831]} +{"t": 21.6121, "q": [-0.36359265446662903, -0.007639224641025066, 0.006615596357733011, 0.6078569293022156, -0.2831104099750519, 0.0035807595122605562, -0.35651931166648865, 0.013874003663659096, -0.004593420308083296, 0.6304064393043518, -0.33218538761138916, -0.01203067321330309, -0.014556990936398506, 0.03052455745637417, -0.027220413088798523, -2.9922094345092773, 2.2468745708465576, 1.8796058893203735, 0.39649808406829834, -0.13473863899707794, -0.08992962539196014, 0.020085562020540237, 0.08760468661785126, -0.5118702054023743, -0.09010939300060272, 1.2234336137771606, -0.11812850832939148, 0.07792143523693085, -0.03196192905306816]} +{"t": 21.6288, "q": [-0.3635585606098175, -0.0076221805065870285, 0.0066289883106946945, 0.6076439023017883, -0.2830815315246582, 0.0035159368999302387, -0.3565533757209778, 0.013882526196539402, -0.004620204214006662, 0.6303979158401489, -0.3321894705295563, -0.012037896551191807, -0.014623950235545635, 0.030547285452485085, -0.027206098660826683, -2.9922213554382324, 2.2468745708465576, 1.879593849182129, 0.39661794900894165, -0.134750634431839, -0.08992962539196014, 0.02009754627943039, 0.08770056068897247, -0.5153695940971375, -0.0908404290676117, 1.2234575748443604, -0.11814048886299133, 0.07794540375471115, -0.03197391331195831]} +{"t": 21.6456, "q": [-0.36354151368141174, -0.007605136372148991, 0.006669164169579744, 0.6075757145881653, -0.28306910395622253, 0.0035087950527668, -0.3565533757209778, 0.013908091932535172, -0.004553244449198246, 0.6303638219833374, -0.3321770429611206, -0.012074325233697891, -0.014744477346539497, 0.03063061833381653, -0.027153611183166504, -2.9922332763671875, 2.2468984127044678, 1.8796179294586182, 0.3968096673488617, -0.13473863899707794, -0.08995359390974045, 0.020085562020540237, 0.08782040327787399, -0.5192645192146301, -0.09160741418600082, 1.2234694957733154, -0.11812850832939148, 0.077957384288311, -0.03197391331195831]} +{"t": 21.6624, "q": [-0.3635159432888031, -0.0075795697048306465, 0.006695947609841824, 0.6075501441955566, -0.28305670619010925, 0.0034872109536081553, -0.35656189918518066, 0.013891047798097134, -0.0045264605432748795, 0.6303638219833374, -0.3321647047996521, -0.012067175470292568, -0.01486500445753336, 0.0307745561003685, -0.027062952518463135, -2.992269277572632, 2.2468745708465576, 1.8796418905258179, 0.3970853090286255, -0.1348225325345993, -0.0899416133761406, 0.020085562020540237, 0.08783238381147385, -0.5228357911109924, -0.09255417436361313, 1.2235175371170044, -0.11812850832939148, 0.077957384288311, -0.03196192905306816]} +{"t": 21.6791, "q": [-0.36349040269851685, -0.007562525570392609, 0.00672273151576519, 0.6074904799461365, -0.28305670619010925, 0.0034872109536081553, -0.3565448522567749, 0.013916614465415478, -0.0044996771030128, 0.6303467750549316, -0.3321770131587982, -0.012088844552636147, -0.014998923055827618, 0.030941223725676537, -0.026957979425787926, -2.992269277572632, 2.2468864917755127, 1.8796298503875732, 0.39731302857398987, -0.13478657603263855, -0.0899416133761406, 0.02009754627943039, 0.0878683403134346, -0.5265988707542419, -0.09424394369125366, 1.2235175371170044, -0.11812850832939148, 0.077957384288311, -0.03193796053528786]} +{"t": 21.6958, "q": [-0.36349040269851685, -0.007536959368735552, 0.006736123468726873, 0.6074819564819336, -0.2830691635608673, 0.0034943530336022377, -0.356536328792572, 0.013925136998295784, -0.0045264605432748795, 0.6303552985191345, -0.332177072763443, -0.012059787288308144, -0.015173017978668213, 0.031107909977436066, -0.026862910017371178, -2.992305278778076, 2.246922492980957, 1.8796898126602173, 0.3975766599178314, -0.1347745954990387, -0.0899416133761406, 0.02009754627943039, 0.08788032084703445, -0.5309610962867737, -0.09563411772251129, 1.223541498184204, -0.11812850832939148, 0.077957384288311, -0.03194994479417801]} +{"t": 21.7126, "q": [-0.3635074198246002, -0.007528437301516533, 0.0067896912805736065, 0.6074904799461365, -0.2830691635608673, 0.0034943530336022377, -0.3565448522567749, 0.013933658599853516, -0.0045130690559744835, 0.6303552985191345, -0.3321770429611206, -0.012074325233697891, -0.015320328995585442, 0.031236717477440834, -0.026791686192154884, -2.9923770427703857, 2.2468984127044678, 1.8797496557235718, 0.397900253534317, -0.13476261496543884, -0.0899416133761406, 0.02010953053832054, 0.08782040327787399, -0.5346282720565796, -0.09668873250484467, 1.2235175371170044, -0.11812850832939148, 0.0779334157705307, -0.03194994479417801]} +{"t": 21.7293, "q": [-0.3634563088417053, -0.007545481435954571, 0.006829866673797369, 0.607456386089325, -0.28305256366729736, 0.0034799985587596893, -0.356536328792572, 0.013933658599853516, -0.004432717338204384, 0.6303467750549316, -0.3321811258792877, -0.012081547640264034, -0.015414072200655937, 0.03144142031669617, -0.026721790432929993, -2.99241304397583, 2.2468745708465576, 1.8797377347946167, 0.3983077108860016, -0.13476261496543884, -0.0899416133761406, 0.02009754627943039, 0.08778444677591324, -0.5392541885375977, -0.09768342226743698, 1.2234935760498047, -0.11815247684717178, 0.07796937227249146, -0.03193796053528786]} +{"t": 21.746, "q": [-0.3634307384490967, -0.007536959368735552, 0.006990569643676281, 0.6074649095535278, -0.28305256366729736, 0.0034799985587596893, -0.35657042264938354, 0.013908091932535172, -0.004566636402159929, 0.6303552985191345, -0.33215638995170593, -0.012110808864235878, -0.015440856106579304, 0.03161579370498657, -0.026661161333322525, -2.99241304397583, 2.2468745708465576, 1.8797736167907715, 0.3988829553127289, -0.13476261496543884, -0.08995359390974045, 0.020085562020540237, 0.08772452920675278, -0.5434007048606873, -0.09851033240556717, 1.2234694957733154, -0.11812850832939148, 0.07794540375471115, -0.03197391331195831]} +{"t": 21.7628, "q": [-0.36339664459228516, -0.007536959368735552, 0.007124488707631826, 0.6074478626251221, -0.28305670619010925, 0.0034872109536081553, -0.356536328792572, 0.01395922526717186, -0.004553244449198246, 0.6303552985191345, -0.33215636014938354, -0.012125329114496708, -0.015507815405726433, 0.03171446919441223, -0.02666778676211834, -2.9924490451812744, 2.2468504905700684, 1.8797975778579712, 0.3995780348777771, -0.1347985714673996, -0.0899416133761406, 0.02009754627943039, 0.08768857270479202, -0.5479906797409058, -0.09904962033033371, 1.223409652709961, -0.11814048886299133, 0.07794540375471115, -0.03193796053528786]} +{"t": 21.7795, "q": [-0.3633881211280823, -0.007545481435954571, 0.007204839959740639, 0.6074137687683105, -0.2830609083175659, 0.0034799636341631413, -0.35652783513069153, 0.013967746868729591, -0.004539852496236563, 0.6303638219833374, -0.3321440517902374, -0.01210366003215313, -0.015588166192173958, 0.031828295439481735, -0.02666488103568554, -2.9924490451812744, 2.2468624114990234, 1.8798335790634155, 0.4007285237312317, -0.13481055200099945, -0.0899655818939209, 0.020085562020540237, 0.08765262365341187, -0.5529041886329651, -0.09928930550813675, 1.223349690437317, -0.11814048886299133, 0.07798135280609131, -0.03193796053528786]} +{"t": 21.7964, "q": [-0.36331993341445923, -0.007545481435954571, 0.007338759023696184, 0.6074222922325134, -0.2830609083175659, 0.0034799636341631413, -0.356536328792572, 0.013993313536047935, -0.0045800283551216125, 0.6303808689117432, -0.3321564197540283, -0.012096289545297623, -0.01564173400402069, 0.03188909590244293, -0.026695335283875465, -2.9924731254577637, 2.2468624114990234, 1.8798335790634155, 0.40223854780197144, -0.1347985714673996, -0.0899655818939209, 0.02010953053832054, 0.0875687301158905, -0.5576499700546265, -0.09945708513259888, 1.2233257293701172, -0.11815247684717178, 0.07796937227249146, -0.03193796053528786]} +{"t": 21.8131, "q": [-0.3632347285747528, -0.007545481435954571, 0.007378934416919947, 0.6074137687683105, -0.28306496143341064, 0.0035016003530472517, -0.35647669434547424, 0.013993313536047935, -0.004566636402159929, 0.6303808689117432, -0.33215227723121643, -0.012103586457669735, -0.015762262046337128, 0.03195752575993538, -0.02674061805009842, -2.992521047592163, 2.2468864917755127, 1.8798335790634155, 0.40383243560791016, -0.13473863899707794, -0.08995359390974045, 0.02009754627943039, 0.08750881254673004, -0.562982976436615, -0.09975668787956238, 1.2232178449630737, -0.11815247684717178, 0.07794540375471115, -0.03191399201750755]} +{"t": 21.8299, "q": [-0.3632006347179413, -0.00755400350317359, 0.007499461527913809, 0.6073967218399048, -0.28306496143341064, 0.0035016003530472517, -0.35646817088127136, 0.014010357670485973, -0.004553244449198246, 0.6303638219833374, -0.3321564197540283, -0.012096289545297623, -0.015882788226008415, 0.032033588737249374, -0.02680073119699955, -2.992532968521118, 2.2468745708465576, 1.8799294233322144, 0.4055701494216919, -0.1347745954990387, -0.0899416133761406, 0.020073577761650085, 0.08740095794200897, -0.5688192844390869, -0.09996042400598526, 1.2231340408325195, -0.11816445738077164, 0.077957384288311, -0.031925976276397705]} +{"t": 21.8466, "q": [-0.3631409704685211, -0.00755400350317359, 0.007579812780022621, 0.607379674911499, -0.2830774784088135, 0.0034943001810461283, -0.3565022647380829, 0.01398479100316763, -0.0044996771030128, 0.6303552985191345, -0.3321605920791626, -0.01207447238266468, -0.01596313901245594, 0.03217042237520218, -0.0268815029412508, -2.9925808906555176, 2.2468504905700684, 1.879941463470459, 0.4072958827018738, -0.13476261496543884, -0.08995359390974045, 0.02010953053832054, 0.08734103292226791, -0.5748113989830017, -0.1002001091837883, 1.2229901552200317, -0.11817644536495209, 0.077957384288311, -0.031925976276397705]} +{"t": 21.8633, "q": [-0.36307281255722046, -0.00755400350317359, 0.007713731843978167, 0.6073626279830933, -0.2830732762813568, 0.003501547733321786, -0.35646817088127136, 0.01398479100316763, -0.004446109291166067, 0.6303638219833374, -0.3321605920791626, -0.01207447238266468, -0.01612384244799614, 0.03233775123953819, -0.027011793106794357, -2.992640733718872, 2.2468504905700684, 1.8799893856048584, 0.40880587697029114, -0.134750634431839, -0.0899416133761406, 0.020085562020540237, 0.0872211903333664, -0.5810551643371582, -0.10084725171327591, 1.2228463888168335, -0.11818842589855194, 0.07798135280609131, -0.0319020077586174]} +{"t": 21.8801, "q": [-0.3630046248435974, -0.007571048103272915, 0.007780691608786583, 0.6073541045188904, -0.2830897867679596, 0.003530326299369335, -0.3564511239528656, 0.013976269401609898, -0.004432717338204384, 0.6303382515907288, -0.3321565091609955, -0.01205271203070879, -0.016271153464913368, 0.03245186060667038, -0.027106862515211105, -2.9927966594696045, 2.2468745708465576, 1.8800612688064575, 0.4103159010410309, -0.13478657603263855, -0.08995359390974045, 0.020085562020540237, 0.08702944219112396, -0.5871671438217163, -0.10165020078420639, 1.2226186990737915, -0.11818842589855194, 0.07794540375471115, -0.03191399201750755]} +{"t": 21.897, "q": [-0.36298757791519165, -0.007571048103272915, 0.007753907702863216, 0.6073541045188904, -0.2830856144428253, 0.003537573618814349, -0.35643407702445984, 0.01398479100316763, -0.004392541944980621, 0.6303297281265259, -0.3321647047996521, -0.012067175470292568, -0.016351504251360893, 0.03264205902814865, -0.02727184258401394, -2.9931082725524902, 2.2468385696411133, 1.880181074142456, 0.41194576025009155, -0.13478657603263855, -0.08995359390974045, 0.020085562020540237, 0.08682571351528168, -0.593926191329956, -0.1026448905467987, 1.2223191261291504, -0.11818842589855194, 0.077957384288311, -0.03193796053528786]} +{"t": 21.9137, "q": [-0.362919420003891, -0.007562525570392609, 0.007780691608786583, 0.6073029637336731, -0.2830939292907715, 0.003537538694217801, -0.3564170300960541, 0.013925136998295784, -0.004379149992018938, 0.6303297281265259, -0.3321729898452759, -0.012052563950419426, -0.01647203229367733, 0.03270305320620537, -0.02737087942659855, -2.993647575378418, 2.2468385696411133, 1.8803129196166992, 0.4134078323841095, -0.13478657603263855, -0.08995359390974045, 0.020085562020540237, 0.0866219773888588, -0.6000860929489136, -0.10457435250282288, 1.2220433950424194, -0.118248350918293, 0.077957384288311, -0.0319020077586174]} +{"t": 21.9304, "q": [-0.3628768026828766, -0.007571048103272915, 0.007753907702863216, 0.6073285341262817, -0.2830939292907715, 0.003537538694217801, -0.35638293623924255, 0.013976269401609898, -0.004379149992018938, 0.6303297281265259, -0.332168847322464, -0.012059878557920456, -0.01647203229367733, 0.03276390954852104, -0.027420928701758385, -2.994222640991211, 2.2468504905700684, 1.8804328441619873, 0.41459426283836365, -0.1347745954990387, -0.08995359390974045, 0.020085562020540237, 0.08635832369327545, -0.6062699556350708, -0.10735469311475754, 1.2217319011688232, -0.118248350918293, 0.07796937227249146, -0.0319020077586174]} +{"t": 21.9472, "q": [-0.36289384961128235, -0.0075795697048306465, 0.007753907702863216, 0.607311487197876, -0.2830815017223358, 0.003530378919094801, -0.35638293623924255, 0.013967746868729591, -0.004392541944980621, 0.6303126811981201, -0.3321688771247864, -0.01204532291740179, -0.01647203229367733, 0.03293877840042114, -0.027526961639523506, -2.9947140216827393, 2.2468504905700684, 1.8804926872253418, 0.41551706194877625, -0.13478657603263855, -0.08992962539196014, 0.02009754627943039, 0.08603475242853165, -0.6121782064437866, -0.10963169485330582, 1.2212764024734497, -0.11823636293411255, 0.07796937227249146, -0.03191399201750755]} +{"t": 21.9639, "q": [-0.3628768026828766, -0.007588092237710953, 0.007780691608786583, 0.6072944402694702, -0.2830856144428253, 0.003537573618814349, -0.35639145970344543, 0.013942181132733822, -0.004392541944980621, 0.6302956342697144, -0.33216479420661926, -0.012038099579513073, -0.016431856900453568, 0.03321245312690735, -0.02767895720899105, -2.9951095581054688, 2.2468504905700684, 1.8805047273635864, 0.4162001609802246, -0.13476261496543884, -0.0899416133761406, 0.020085562020540237, 0.08595086634159088, -0.6178587079048157, -0.11291536688804626, 1.2200300693511963, -0.11826033145189285, 0.07796937227249146, -0.03191399201750755]} +{"t": 21.9806, "q": [-0.3628597557544708, -0.007596613839268684, 0.007780691608786583, 0.6072348356246948, -0.28309398889541626, 0.003523078979924321, -0.35638293623924255, 0.01389957033097744, -0.004405933897942305, 0.6302956342697144, -0.3321771025657654, -0.012045267038047314, -0.016405072063207626, 0.03357742354273796, -0.02791125886142254, -2.9955170154571533, 2.2468745708465576, 1.8805047273635864, 0.4165237247943878, -0.13473863899707794, -0.0899416133761406, 0.02009754627943039, 0.08590292930603027, -0.6224486827850342, -0.11760120093822479, 1.2185200452804565, -0.11828429996967316, 0.077957384288311, -0.031925976276397705]} +{"t": 21.9974, "q": [-0.3628597557544708, -0.007596613839268684, 0.007740515749901533, 0.6072007417678833, -0.28309398889541626, 0.003523078979924321, -0.35639145970344543, 0.013916614465415478, -0.004365758039057255, 0.630236029624939, -0.3321647346019745, -0.01205263752490282, -0.016338111832737923, 0.03400314226746559, -0.02815450169146061, -2.996080160140991, 2.2468385696411133, 1.8805047273635864, 0.41671547293663025, -0.13476261496543884, -0.0899416133761406, 0.020085562020540237, 0.08598681539297104, -0.6268109083175659, -0.12093281745910645, 1.216686487197876, -0.11828429996967316, 0.07798135280609131, -0.031925976276397705]} +{"t": 22.0141, "q": [-0.36284270882606506, -0.0076221805065870285, 0.007700339891016483, 0.6071836948394775, -0.2830856740474701, 0.003523131599649787, -0.35639145970344543, 0.013908091932535172, -0.004338974133133888, 0.6302530169487, -0.332168847322464, -0.012059878557920456, -0.01628454588353634, 0.03445909917354584, -0.02835909090936184, -2.9965476989746094, 2.2468385696411133, 1.8805406093597412, 0.4167754054069519, -0.13476261496543884, -0.0899655818939209, 0.02009754627943039, 0.08603475242853165, -0.6307777166366577, -0.12439625710248947, 1.2144094705581665, -0.11830826848745346, 0.07798135280609131, -0.031925976276397705]} +{"t": 22.0308, "q": [-0.3628341853618622, -0.007596613839268684, 0.007700339891016483, 0.6071410775184631, -0.2830773591995239, 0.0035231842193752527, -0.35639145970344543, 0.013916614465415478, -0.004298798739910126, 0.6302615404129028, -0.3321688771247864, -0.01204532291740179, -0.016244368627667427, 0.03502131253480911, -0.02856566570699215, -2.997170925140381, 2.2468745708465576, 1.8805526494979858, 0.41673943400382996, -0.13473863899707794, -0.0899895504117012, 0.02009754627943039, 0.08603475242853165, -0.6339535117149353, -0.12807542085647583, 1.211089849472046, -0.11830826848745346, 0.07799334079027176, -0.0319020077586174]} +{"t": 22.0476, "q": [-0.3628597557544708, -0.0076221805065870285, 0.007619988638907671, 0.607149600982666, -0.2830691635608673, 0.0034943530336022377, -0.35639145970344543, 0.013942181132733822, -0.004312190227210522, 0.6302700638771057, -0.3321647346019745, -0.01205263752490282, -0.016190802678465843, 0.035522907972335815, -0.028800753876566887, -2.9979379177093506, 2.2468745708465576, 1.8805526494979858, 0.4167514443397522, -0.13471467792987823, -0.0899895504117012, 0.020085562020540237, 0.08590292930603027, -0.6365661025047302, -0.13073591887950897, 1.208021879196167, -0.11832025647163391, 0.07799334079027176, -0.031925976276397705]} +{"t": 22.0643, "q": [-0.36285123229026794, -0.007588092237710953, 0.007526245433837175, 0.607149600982666, -0.28305256366729736, 0.0034799985587596893, -0.3563744127750397, 0.013925136998295784, -0.004218447022140026, 0.6302700638771057, -0.3321647346019745, -0.01205263752490282, -0.016030099242925644, 0.03614630922675133, -0.02915654517710209, -2.9991841316223145, 2.2468385696411133, 1.8806126117706299, 0.4167993664741516, -0.1347266584634781, -0.08995359390974045, 0.02010953053832054, 0.08569919317960739, -0.6388550996780396, -0.13345633447170258, 1.2049659490585327, -0.11833223700523376, 0.07798135280609131, -0.03193796053528786]} +{"t": 22.081, "q": [-0.36285123229026794, -0.0075795697048306465, 0.00739232636988163, 0.6071325540542603, -0.28304430842399597, 0.003465609159320593, -0.35634884238243103, 0.013925136998295784, -0.004151487722992897, 0.6302785873413086, -0.3321605920791626, -0.01207447238266468, -0.01593635603785515, 0.03692176192998886, -0.029603688046336174, -3.000945806503296, 2.2468984127044678, 1.8806005716323853, 0.41681134700775146, -0.1347745954990387, -0.08997756242752075, 0.020085562020540237, 0.08565125614404678, -0.6407485604286194, -0.1354457139968872, 1.2017182111740112, -0.11834422498941422, 0.07799334079027176, -0.031925976276397705]} +{"t": 22.0978, "q": [-0.36284270882606506, -0.007588092237710953, 0.007338759023696184, 0.6071325540542603, -0.28304848074913025, 0.003458361839875579, -0.3563233017921448, 0.013925136998295784, -0.0041247038170695305, 0.6302700638771057, -0.3321729898452759, -0.012052563950419426, -0.01581582799553871, 0.037697456777095795, -0.03011942282319069, -3.002767562866211, 2.2468624114990234, 1.880564570426941, 0.4167993664741516, -0.13478657603263855, -0.0899895504117012, 0.020073577761650085, 0.08553141355514526, -0.6425342559814453, -0.13670405745506287, 1.1986981630325317, -0.11835620552301407, 0.07799334079027176, -0.03191399201750755]} +{"t": 22.1145, "q": [-0.36280009150505066, -0.007588092237710953, 0.007285191211849451, 0.6071155071258545, -0.28304430842399597, 0.003465609159320593, -0.3563147783279419, 0.01389957033097744, -0.004084527958184481, 0.6302871108055115, -0.332177072763443, -0.012059787288308144, -0.01564173400402069, 0.038564156740903854, -0.030608920380473137, -3.0048887729644775, 2.2468504905700684, 1.8806005716323853, 0.4167754054069519, -0.13478657603263855, -0.09000153094530106, 0.020085562020540237, 0.08555538207292557, -0.6438285112380981, -0.1378905028104782, 1.1951388120651245, -0.11836819350719452, 0.07800532132387161, -0.031925976276397705]} +{"t": 22.1313, "q": [-0.3627489507198334, -0.007588092237710953, 0.007245015352964401, 0.6071155071258545, -0.2830318808555603, 0.003458467312157154, -0.3563233017921448, 0.013916614465415478, -0.004057744517922401, 0.630321204662323, -0.332177072763443, -0.012059787288308144, -0.015547990798950195, 0.039445824921131134, -0.031039884313941002, -3.007105827331543, 2.2468745708465576, 1.8805166482925415, 0.4167754054069519, -0.13481055200099945, -0.0900135189294815, 0.020085562020540237, 0.08551943302154541, -0.6450389623641968, -0.13865748047828674, 1.191591501235962, -0.11836819350719452, 0.07798135280609131, -0.031925976276397705]} +{"t": 22.148, "q": [-0.36270636320114136, -0.007605136372148991, 0.007231623865664005, 0.6071410775184631, -0.2830154597759247, 0.003400786779820919, -0.3563147783279419, 0.01389957033097744, -0.004017568659037352, 0.6303297281265259, -0.332168847322464, -0.012059878557920456, -0.015481031499803066, 0.040304236114025116, -0.03133828565478325, -3.009742259979248, 2.2468385696411133, 1.880468726158142, 0.41683530807495117, -0.134750634431839, -0.0899895504117012, 0.020073577761650085, 0.08550744503736496, -0.6463212370872498, -0.1389690786600113, 1.1879483461380005, -0.11834422498941422, 0.07799334079027176, -0.03191399201750755]} +{"t": 22.1649, "q": [-0.36262112855911255, -0.007605136372148991, 0.007204839959740639, 0.6071410775184631, -0.2829988896846771, 0.0033864500001072884, -0.35634884238243103, 0.013882526196539402, -0.003964001312851906, 0.6303808689117432, -0.3321852684020996, -0.012074233032763004, -0.015440856106579304, 0.0411851704120636, -0.03155458718538284, -3.0119714736938477, 2.2468745708465576, 1.880624532699585, 0.41681134700775146, -0.1347266584634781, -0.09000153094530106, 0.020085562020540237, 0.08507601171731949, -0.6479031443595886, -0.13938851654529572, 1.1852757930755615, -0.11836819350719452, 0.07796937227249146, -0.031925976276397705]} +{"t": 22.1816, "q": [-0.3625614643096924, -0.00761365843936801, 0.007137880194932222, 0.6071581244468689, -0.2829948365688324, 0.003350353566929698, -0.3564085066318512, 0.013848437927663326, -0.003964001312851906, 0.6303808689117432, -0.3321647047996521, -0.012067175470292568, -0.0154542475938797, 0.04213530942797661, -0.032032646238803864, -3.0135412216186523, 2.2468385696411133, 1.8809480667114258, 0.41683530807495117, -0.13478657603263855, -0.0900135189294815, 0.02009754627943039, 0.08426108956336975, -0.6491974592208862, -0.1396401971578598, 1.1831306219100952, -0.11836819350719452, 0.07802928984165192, -0.03191399201750755]} +{"t": 22.1984, "q": [-0.3625018298625946, -0.00761365843936801, 0.007151272147893906, 0.607149600982666, -0.2829907536506653, 0.0033287168480455875, -0.3564596474170685, 0.013848437927663326, -0.003937217406928539, 0.6303808689117432, -0.332168847322464, -0.012059878557920456, -0.015507815405726433, 0.04316188395023346, -0.03268013522028923, -3.0145599842071533, 2.2468624114990234, 1.881151795387268, 0.41685929894447327, -0.13481055200099945, -0.0900135189294815, 0.02009754627943039, 0.08357799053192139, -0.650335967540741, -0.14041917026042938, 1.1801586151123047, -0.11838017404079437, 0.07800532132387161, -0.0319020077586174]} +{"t": 22.2153, "q": [-0.3624506890773773, -0.0076307025738060474, 0.007164664100855589, 0.6071410775184631, -0.28300321102142334, 0.0033358586952090263, -0.3565959930419922, 0.013814348727464676, -0.00388364982791245, 0.6303723454475403, -0.3321771025657654, -0.012045267038047314, -0.015601558610796928, 0.044006239622831345, -0.03327484428882599, -3.0150034427642822, 2.2468504905700684, 1.8811758756637573, 0.4168952405452728, -0.1347745954990387, -0.09000153094530106, 0.02009754627943039, 0.08319449424743652, -0.6505157351493835, -0.141809344291687, 1.1767550706863403, -0.11838017404079437, 0.07802928984165192, -0.03191399201750755]} +{"t": 22.2321, "q": [-0.3623313903808594, -0.0076647913083434105, 0.007231623865664005, 0.6071410775184631, -0.28302398324012756, 0.0033429479226469994, -0.3566727042198181, 0.013763216324150562, -0.0037497307639569044, 0.6303808689117432, -0.33220189809799194, -0.01200148556381464, -0.015681909397244453, 0.04489615187048912, -0.033890753984451294, -3.015350818634033, 2.2468504905700684, 1.881151795387268, 0.4168952405452728, -0.1347985714673996, -0.09002549946308136, 0.02009754627943039, 0.08311060070991516, -0.6505157351493835, -0.14357101917266846, 1.1726444959640503, -0.11838017404079437, 0.07802928984165192, -0.03191399201750755]} +{"t": 22.2488, "q": [-0.36224615573883057, -0.007698879577219486, 0.007231623865664005, 0.6071240305900574, -0.2830531597137451, 0.003321100492030382, -0.3569539189338684, 0.013771738857030869, -0.003696163184940815, 0.6303723454475403, -0.33220604062080383, -0.01199417095631361, -0.01578904502093792, 0.04564151540398598, -0.034390754997730255, -3.0153987407684326, 2.2468745708465576, 1.8811638355255127, 0.4168952405452728, -0.13483451306819916, -0.0900135189294815, 0.02009754627943039, 0.08336227387189865, -0.6505995988845825, -0.14486531913280487, 1.1677069664001465, -0.11836819350719452, 0.07807722687721252, -0.0319020077586174]} +{"t": 22.2657, "q": [-0.36224615573883057, -0.007707401644438505, 0.007271799258887768, 0.6071240305900574, -0.2830655574798584, 0.003342684358358383, -0.3570902943611145, 0.013729128055274487, -0.003589028026908636, 0.6303638219833374, -0.33220604062080383, -0.01199417095631361, -0.015922963619232178, 0.04623481258749962, -0.03479870781302452, -3.0153868198394775, 2.2468385696411133, 1.8810919523239136, 0.4169311821460724, -0.1347745954990387, -0.09002549946308136, 0.020085562020540237, 0.0833263173699379, -0.6510190963745117, -0.14639928936958313, 1.1636801958084106, -0.11838017404079437, 0.07805325835943222, -0.0319020077586174]} +{"t": 22.2824, "q": [-0.36224615573883057, -0.007732967846095562, 0.0072584073059260845, 0.6071410775184631, -0.2830864191055298, 0.003320889314636588, -0.35725221037864685, 0.01375469472259283, -0.003468500915914774, 0.6303552985191345, -0.33221837878227234, -0.011986799538135529, -0.015909571200609207, 0.04671396687626839, -0.03512044996023178, -3.0154707431793213, 2.2468745708465576, 1.881139874458313, 0.4170750081539154, -0.13478657603263855, -0.09000153094530106, 0.020073577761650085, 0.08311060070991516, -0.6516063213348389, -0.1484006643295288, 1.1603845357894897, -0.11840414255857468, 0.07806524634361267, -0.031866054981946945]} +{"t": 22.2991, "q": [-0.3621950149536133, -0.007775578647851944, 0.007245015352964401, 0.6071325540542603, -0.28309887647628784, 0.0033280313946306705, -0.3576868176460266, 0.013729128055274487, -0.0034149333368986845, 0.6303638219833374, -0.33221837878227234, -0.011986799538135529, -0.01593635603785515, 0.04712469130754471, -0.035406194627285004, -3.015638589859009, 2.2468984127044678, 1.8812477588653564, 0.4171469211578369, -0.1347745954990387, -0.09000153094530106, 0.02009754627943039, 0.08314655721187592, -0.6522055268287659, -0.1516963243484497, 1.1568971872329712, -0.11838017404079437, 0.07806524634361267, -0.03184208646416664]} +{"t": 22.3161, "q": [-0.362169474363327, -0.007775578647851944, 0.0072584073059260845, 0.6071240305900574, -0.28309887647628784, 0.0033280313946306705, -0.35803622007369995, 0.013703561387956142, -0.003361365757882595, 0.6303808689117432, -0.33223071694374084, -0.011993949301540852, -0.01598992384970188, 0.047527823597192764, -0.03568699583411217, -3.0156984329223633, 2.2468504905700684, 1.8812477588653564, 0.41729071736335754, -0.13476261496543884, -0.09002549946308136, 0.020073577761650085, 0.08315853774547577, -0.6526609063148499, -0.15592674911022186, 1.1536134481430054, -0.11839216202497482, 0.07806524634361267, -0.03184208646416664]} +{"t": 22.3328, "q": [-0.3620927631855011, -0.007792622782289982, 0.007245015352964401, 0.6071325540542603, -0.2831155061721802, 0.0033279259223490953, -0.3581470251083374, 0.013584252446889877, -0.003321190131828189, 0.6303808689117432, -0.33223071694374084, -0.011993949301540852, -0.016043491661548615, 0.0478016696870327, -0.03588100150227547, -3.0157344341278076, 2.2468745708465576, 1.8812477588653564, 0.4174704849720001, -0.1348225325345993, -0.0900135189294815, 0.020085562020540237, 0.08341021090745926, -0.6534398794174194, -0.15857526659965515, 1.1500182151794434, -0.11839216202497482, 0.07807722687721252, -0.03181811794638634]} +{"t": 22.3495, "q": [-0.3620842397212982, -0.007801144849509001, 0.0071914480067789555, 0.6071155071258545, -0.28314897418022156, 0.0032699289731681347, -0.35831746459007263, 0.013447898440063, -0.0031203117687255144, 0.6303723454475403, -0.3322637677192688, -0.011935555376112461, -0.01613723486661911, 0.04806045442819595, -0.036104120314121246, -3.0157582759857178, 2.2468745708465576, 1.8812477588653564, 0.4176023006439209, -0.13476261496543884, -0.0900135189294815, 0.020085562020540237, 0.08388957381248474, -0.6540989875793457, -0.16214656829833984, 1.1457997560501099, -0.11839216202497482, 0.07808921486139297, -0.03179414942860603]} +{"t": 22.3664, "q": [-0.3620927631855011, -0.00780966691672802, 0.007178056053817272, 0.607149600982666, -0.28315314650535583, 0.0032626816537231207, -0.3583771288394928, 0.013405287638306618, -0.0029060414526611567, 0.6303638219833374, -0.3322678208351135, -0.011957298964262009, -0.016257761046290398, 0.048197727650403976, -0.03629456087946892, -3.015806198120117, 2.2468504905700684, 1.8812717199325562, 0.4177221655845642, -0.1347745954990387, -0.09002549946308136, 0.020085562020540237, 0.08398544788360596, -0.6544345617294312, -0.16648486256599426, 1.142791748046875, -0.11840414255857468, 0.07807722687721252, -0.031806133687496185]} +{"t": 22.3831, "q": [-0.36206719279289246, -0.007801144849509001, 0.0071914480067789555, 0.6071410775184631, -0.2831697165966034, 0.0032770182006061077, -0.35845381021499634, 0.013405287638306618, -0.0028926494996994734, 0.6303638219833374, -0.3322637677192688, -0.011935555376112461, -0.01631132885813713, 0.048312220722436905, -0.036479488015174866, -3.015998125076294, 2.2468504905700684, 1.8812717199325562, 0.41784200072288513, -0.13471467792987823, -0.0900135189294815, 0.020085562020540237, 0.0839494988322258, -0.6553214192390442, -0.16897757351398468, 1.1407424211502075, -0.11839216202497482, 0.07807722687721252, -0.03181811794638634]} +{"t": 22.3998, "q": [-0.36202457547187805, -0.00780966691672802, 0.0071914480067789555, 0.6071581244468689, -0.2831655442714691, 0.0032842655200511217, -0.35859018564224243, 0.013354155234992504, -0.002865865593776107, 0.6303808689117432, -0.33225956559181213, -0.011971892789006233, -0.016418464481830597, 0.048343006521463394, -0.03659829869866371, -3.016465425491333, 2.2468864917755127, 1.8812717199325562, 0.4179498553276062, -0.13476261496543884, -0.09002549946308136, 0.020085562020540237, 0.0839494988322258, -0.6558486819267273, -0.1723451465368271, 1.1387650966644287, -0.11840414255857468, 0.07812516391277313, -0.03177018091082573]} +{"t": 22.4167, "q": [-0.36199048161506653, -0.007852277718484402, 0.0071914480067789555, 0.6071666479110718, -0.283169686794281, 0.0032914781477302313, -0.35876914858818054, 0.013285977765917778, -0.0027453387156128883, 0.6303723454475403, -0.3322596251964569, -0.011942852288484573, -0.01645863987505436, 0.04836604744195938, -0.03667265921831131, -3.017124652862549, 2.2468745708465576, 1.8812836408615112, 0.41816556453704834, -0.1347745954990387, -0.0900135189294815, 0.020073577761650085, 0.08423712104558945, -0.6564838886260986, -0.17468206584453583, 1.1362364292144775, -0.11840414255857468, 0.07826897501945496, -0.03177018091082573]} +{"t": 22.4334, "q": [-0.36193937063217163, -0.007852277718484402, 0.007151272147893906, 0.6071410775184631, -0.283186137676239, 0.0033346987329423428, -0.3589310646057129, 0.013175190426409245, -0.0027989062946289778, 0.630389392375946, -0.3322596549987793, -0.011928332969546318, -0.01644524745643139, 0.048419397324323654, -0.03673797845840454, -3.0182511806488037, 2.2468624114990234, 1.881367564201355, 0.4184292256832123, -0.1347266584634781, -0.0900135189294815, 0.020073577761650085, 0.08477640897035599, -0.6572748422622681, -0.17582057416439056, 1.1330845355987549, -0.11840414255857468, 0.0782569944858551, -0.03178216516971588]} +{"t": 22.4502, "q": [-0.36193937063217163, -0.007894888520240784, 0.007137880194932222, 0.6072007417678833, -0.2831903398036957, 0.0033274514134973288, -0.35894811153411865, 0.0131496237590909, -0.002691771136596799, 0.6303979158401489, -0.3322719633579254, -0.011950002051889896, -0.016418464481830597, 0.04843464493751526, -0.03675804287195206, -3.0196292400360107, 2.2468745708465576, 1.881367564201355, 0.41878876090049744, -0.13473863899707794, -0.0900135189294815, 0.020061593502759933, 0.08562728762626648, -0.6577781438827515, -0.17659954726696014, 1.1290818452835083, -0.11838017404079437, 0.07838881760835648, -0.03178216516971588]} +{"t": 22.4671, "q": [-0.3619052767753601, -0.007946020923554897, 0.007124488707631826, 0.6072263121604919, -0.28317371010780334, 0.003327556885778904, -0.35899922251701355, 0.01320927869528532, -0.002718554809689522, 0.6304831504821777, -0.3322513699531555, -0.011957446113228798, -0.016418464481830597, 0.048442400991916656, -0.0368025004863739, -3.0206000804901123, 2.2468745708465576, 1.8814754486083984, 0.41923215985298157, -0.1347985714673996, -0.09002549946308136, 0.020073577761650085, 0.08617856353521347, -0.6579219698905945, -0.17712685465812683, 1.1244559288024902, -0.11840414255857468, 0.07846072316169739, -0.03178216516971588]} +{"t": 22.4839, "q": [-0.3618285655975342, -0.00798863172531128, 0.007137880194932222, 0.6072689294815063, -0.28318196535110474, 0.0033419460523873568, -0.35904183983802795, 0.013200757093727589, -0.002718554809689522, 0.6305939555168152, -0.3322555124759674, -0.011950149200856686, -0.01647203229367733, 0.04841984063386917, -0.03685599938035011, -3.0211033821105957, 2.246814489364624, 1.8815593719482422, 0.41978344321250916, -0.1347745954990387, -0.09002549946308136, 0.020085562020540237, 0.0863223746418953, -0.6579219698905945, -0.17745041847229004, 1.1202853918075562, -0.11840414255857468, 0.07848469167947769, -0.03179414942860603]} +{"t": 22.5007, "q": [-0.3617774546146393, -0.00798863172531128, 0.007151272147893906, 0.6073455810546875, -0.2831944525241852, 0.003334646113216877, -0.3591015040874481, 0.013158146291971207, -0.0026783791836351156, 0.6306876540184021, -0.3322596251964569, -0.011942852288484573, -0.016605950891971588, 0.04842020571231842, -0.036954350769519806, -3.021354913711548, 2.2468624114990234, 1.8816192150115967, 0.4202388525009155, -0.13476261496543884, -0.09002549946308136, 0.020073577761650085, 0.08643022924661636, -0.6578261256217957, -0.17765416204929352, 1.1175649166107178, -0.11840414255857468, 0.07860453426837921, -0.03177018091082573]} +{"t": 22.5174, "q": [-0.36175188422203064, -0.008014197461307049, 0.007245015352964401, 0.6073711514472961, -0.28317785263061523, 0.0033347513526678085, -0.3593060374259949, 0.013124058023095131, -0.002651595277711749, 0.6307984590530396, -0.3322555124759674, -0.011950149200856686, -0.01661934331059456, 0.04846609756350517, -0.03705389425158501, -3.0217745304107666, 2.2468745708465576, 1.8817270994186401, 0.42070621252059937, -0.1347266584634781, -0.0900135189294815, 0.020073577761650085, 0.08644221723079681, -0.6576822996139526, -0.17775003612041473, 1.1144490242004395, -0.11840414255857468, 0.07879628241062164, -0.03177018091082573]} +{"t": 22.5341, "q": [-0.36175188422203064, -0.008073852397501469, 0.0072584073059260845, 0.607456386089325, -0.2831694781780243, 0.00334924622438848, -0.35935714840888977, 0.0131496237590909, -0.00258463597856462, 0.6310029625892639, -0.3322555124759674, -0.011950149200856686, -0.016592558473348618, 0.048534732311964035, -0.03714911267161369, -3.022505521774292, 2.2468624114990234, 1.8818708658218384, 0.42108970880508423, -0.13471467792987823, -0.09000153094530106, 0.020073577761650085, 0.08649015426635742, -0.6575384736061096, -0.1777620166540146, 1.1111414432525635, -0.11841613054275513, 0.07890413701534271, -0.03177018091082573]} +{"t": 22.5508, "q": [-0.36178597807884216, -0.008133507333695889, 0.007218231912702322, 0.6076523661613464, -0.2831652760505676, 0.003356493543833494, -0.35945090651512146, 0.0131496237590909, -0.00258463597856462, 0.6311649084091187, -0.3322555124759674, -0.011950149200856686, -0.016592558473348618, 0.04873252287507057, -0.0372919999063015, -3.0236079692840576, 2.2468504905700684, 1.8819668292999268, 0.42160505056381226, -0.13470269739627838, -0.0900135189294815, 0.020061593502759933, 0.08651412278413773, -0.6573107838630676, -0.1778818517923355, 1.1071146726608276, -0.11840414255857468, 0.0791558101773262, -0.03177018091082573]} +{"t": 22.5676, "q": [-0.36179450154304504, -0.008210206404328346, 0.0071914480067789555, 0.6078398823738098, -0.28315696120262146, 0.003356564324349165, -0.359485000371933, 0.013081447221338749, -0.00258463597856462, 0.6313268542289734, -0.3322513699531555, -0.011957446113228798, -0.016512207686901093, 0.04893069714307785, -0.037543248385190964, -3.0246148109436035, 2.2468745708465576, 1.8822304010391235, 0.42233607172966003, -0.13469070196151733, -0.0900135189294815, 0.020073577761650085, 0.08649015426635742, -0.6570351719856262, -0.17792978882789612, 1.1031599044799805, -0.11840414255857468, 0.07922771573066711, -0.03177018091082573]} +{"t": 22.5843, "q": [-0.3617774546146393, -0.008286905474960804, 0.007137880194932222, 0.608129620552063, -0.2831694185733795, 0.0033636882435530424, -0.359485000371933, 0.013038836419582367, -0.0025712440256029367, 0.6316336393356323, -0.3322513699531555, -0.011957446113228798, -0.01644524745643139, 0.04917449131608009, -0.03781558945775032, -3.0260887145996094, 2.2468745708465576, 1.8822064399719238, 0.423342764377594, -0.13471467792987823, -0.09000153094530106, 0.020073577761650085, 0.08650213479995728, -0.6566756367683411, -0.17792978882789612, 1.0993369817733765, -0.11840414255857468, 0.07928763329982758, -0.03175819665193558]} +{"t": 22.601, "q": [-0.36179450154304504, -0.00835508294403553, 0.007070920895785093, 0.6084108352661133, -0.28316110372543335, 0.003363759024068713, -0.3595276176929474, 0.01293657161295414, -0.0025712440256029367, 0.6319233775138855, -0.3322596251964569, -0.011942852288484573, -0.016351504251360893, 0.04944101721048355, -0.038083624094724655, -3.0278143882751465, 2.2468504905700684, 1.8822064399719238, 0.42432546615600586, -0.13471467792987823, -0.0899655818939209, 0.020073577761650085, 0.0866219773888588, -0.6562681794166565, -0.1779058277606964, 1.0966883897781372, -0.11840414255857468, 0.07932358980178833, -0.03178216516971588]} +{"t": 22.6178, "q": [-0.36179450154304504, -0.008423259481787682, 0.007044136989861727, 0.6086665391921997, -0.2831569015979767, 0.003371006343513727, -0.3595787286758423, 0.01287691667675972, -0.00254446011967957, 0.6322045922279358, -0.3322514295578003, -0.011928406544029713, -0.01612384244799614, 0.04969210922718048, -0.0382823720574379, -3.0297439098358154, 2.2468504905700684, 1.8822064399719238, 0.42505648732185364, -0.13467872142791748, -0.0899416133761406, 0.020085562020540237, 0.0866699144244194, -0.655704915523529, -0.1779058277606964, 1.093932032585144, -0.11841613054275513, 0.07949136942625046, -0.03175819665193558]} +{"t": 22.6345, "q": [-0.36184561252593994, -0.008542569354176521, 0.006977177690714598, 0.6089221835136414, -0.28314441442489624, 0.003378306282684207, -0.3596554398536682, 0.012851350009441376, -0.00254446011967957, 0.6325199007987976, -0.33225560188293457, -0.011906590312719345, -0.016070274636149406, 0.0500040128827095, -0.038512300699949265, -3.0314457416534424, 2.2468864917755127, 1.8822543621063232, 0.4256197512149811, -0.13470269739627838, -0.08992962539196014, 0.020085562020540237, 0.08714928478002548, -0.6552374958992004, -0.1779058277606964, 1.0909479856491089, -0.11842811107635498, 0.07974303513765335, -0.031746212393045425]} +{"t": 22.6514, "q": [-0.36184561252593994, -0.008619267493486404, 0.007003961596637964, 0.6091267466545105, -0.2831445336341858, 0.0033494222443550825, -0.3597576916217804, 0.0128172617405653, -0.0024775005877017975, 0.6328011751174927, -0.3322555720806122, -0.0119211096316576, -0.016083667054772377, 0.050254929810762405, -0.038661811500787735, -3.032428503036499, 2.2468745708465576, 1.8822903633117676, 0.42595532536506653, -0.13469070196151733, -0.08991764485836029, 0.02009754627943039, 0.08713730424642563, -0.6549019813537598, -0.1779058277606964, 1.0879160165786743, -0.11840414255857468, 0.08018644899129868, -0.03173422813415527]} +{"t": 22.6682, "q": [-0.3618285655975342, -0.008661878295242786, 0.007070920895785093, 0.609390914440155, -0.2831278443336487, 0.00336396973580122, -0.3598514497280121, 0.01269795186817646, -0.002356973709538579, 0.6331335306167603, -0.3322104215621948, -0.011885198764503002, -0.01612384244799614, 0.050483059138059616, -0.03880578652024269, -3.0331594944000244, 2.2468745708465576, 1.8823503255844116, 0.4261949956417084, -0.13467872142791748, -0.0899416133761406, 0.020085562020540237, 0.08719722181558609, -0.6545664072036743, -0.17792978882789612, 1.0837215185165405, -0.11842811107635498, 0.08054597675800323, -0.03169827535748482]} +{"t": 22.6849, "q": [-0.36183708906173706, -0.008678922429680824, 0.007124488707631826, 0.6096550822257996, -0.2831527888774872, 0.003363811643794179, -0.35997074842453003, 0.01236558984965086, -0.0022230546455830336, 0.6335085034370422, -0.3322104811668396, -0.011856140568852425, -0.016204193234443665, 0.05061228573322296, -0.03887327015399933, -3.0336029529571533, 2.2468745708465576, 1.8824820518493652, 0.42660245299339294, -0.13470269739627838, -0.08995359390974045, 0.020073577761650085, 0.087269127368927, -0.6543986201286316, -0.1779058277606964, 1.0789158344268799, -0.11842811107635498, 0.08080963045358658, -0.03171025961637497]} +{"t": 22.7017, "q": [-0.36184561252593994, -0.008695967495441437, 0.007164664100855589, 0.6098766922950745, -0.28315284848213196, 0.0033493696246296167, -0.3600730299949646, 0.012135492637753487, -0.0021828790195286274, 0.6339175701141357, -0.3322104811668396, -0.011856140568852425, -0.01628454588353634, 0.050695985555648804, -0.03893951699137688, -3.0340702533721924, 2.2468624114990234, 1.8824820518493652, 0.4274653196334839, -0.13466674089431763, -0.0899895504117012, 0.020085562020540237, 0.0872451588511467, -0.6540271043777466, -0.17791780829429626, 1.0757399797439575, -0.11842811107635498, 0.08085756748914719, -0.03171025961637497]} +{"t": 22.7185, "q": [-0.36184561252593994, -0.008695967495441437, 0.007231623865664005, 0.6101323366165161, -0.28330346941947937, 0.003088374389335513, -0.3602605164051056, 0.01206731516867876, -0.0020623519085347652, 0.6343181133270264, -0.3322186768054962, -0.011870604939758778, -0.01631132885813713, 0.05074165388941765, -0.03898012638092041, -3.034705400466919, 2.2468745708465576, 1.8826138973236084, 0.42851993441581726, -0.13464276492595673, -0.0899895504117012, 0.020061593502759933, 0.08719722181558609, -0.6537154912948608, -0.1778818517923355, 1.0735108852386475, -0.11841613054275513, 0.08100137859582901, -0.03171025961637497]} +{"t": 22.7352, "q": [-0.3619564175605774, -0.008704489096999168, 0.007164664100855589, 0.6103624105453491, -0.283496230840683, 0.0026826595421880484, -0.3604394793510437, 0.011862784624099731, -0.0021025275345891714, 0.6345908045768738, -0.33224326372146606, -0.011899422854185104, -0.016271153464913368, 0.050734080374240875, -0.03898484632372856, -3.0357000827789307, 2.2468624114990234, 1.8827697038650513, 0.42964646220207214, -0.13464276492595673, -0.0899895504117012, 0.020085562020540237, 0.08713730424642563, -0.6534638404846191, -0.17789383232593536, 1.0707186460494995, -0.11842811107635498, 0.08128900080919266, -0.03169827535748482]} +{"t": 22.7519, "q": [-0.36197346448898315, -0.0087130106985569, 0.007137880194932222, 0.6104987859725952, -0.2834340035915375, 0.0026469319127500057, -0.3604991137981415, 0.011590076610445976, -0.0021159194875508547, 0.6348379254341125, -0.3322269022464752, -0.011870531365275383, -0.016217585653066635, 0.05075686424970627, -0.038990382105112076, -3.0367066860198975, 2.2468385696411133, 1.883021354675293, 0.430856853723526, -0.13461880385875702, -0.0899895504117012, 0.020073577761650085, 0.08720920979976654, -0.6531882286071777, -0.17789383232593536, 1.0682858228683472, -0.11842811107635498, 0.08143281191587448, -0.03171025961637497]} +{"t": 22.7686, "q": [-0.3619649410247803, -0.008738577365875244, 0.00709770480170846, 0.6105584502220154, -0.28363245725631714, 0.0029490564484149218, -0.3606184422969818, 0.011291802860796452, -0.002156095113605261, 0.6349828243255615, -0.3322760760784149, -0.011942705139517784, -0.01612384244799614, 0.0507645420730114, -0.039015211164951324, -3.0380969047546387, 2.246814489364624, 1.8831052780151367, 0.4322470426559448, -0.13460682332515717, -0.08995359390974045, 0.020073577761650085, 0.08717325329780579, -0.6530563831329346, -0.1779058277606964, 1.0663443803787231, -0.11842811107635498, 0.08164852857589722, -0.031686291098594666]} +{"t": 22.7854, "q": [-0.36203309893608093, -0.008823798969388008, 0.0070307450369000435, 0.6107118129730225, -0.2836574912071228, 0.002919996390119195, -0.36068660020828247, 0.01071229949593544, -0.0021828790195286274, 0.6352299451828003, -0.3322760760784149, -0.011942705139517784, -0.01598992384970188, 0.050833024084568024, -0.039071206003427505, -3.0399065017700195, 2.2468385696411133, 1.8831292390823364, 0.433433473110199, -0.13461880385875702, -0.08991764485836029, 0.02004960924386978, 0.08723317831754684, -0.6529964804649353, -0.1779058277606964, 1.0644389390945435, -0.11842811107635498, 0.0818522572517395, -0.031686291098594666]} +{"t": 22.8023, "q": [-0.362101286649704, -0.00889197550714016, 0.006923609878867865, 0.6108055710792542, -0.28414639830589294, 0.0035093321930617094, -0.36073774099349976, 0.008897088468074799, -0.0022096626926213503, 0.6354004144668579, -0.3322802186012268, -0.011935408227145672, -0.015882788226008415, 0.0508938729763031, -0.03911224752664566, -3.0416922569274902, 2.2468504905700684, 1.8831532001495361, 0.43416452407836914, -0.13464276492595673, -0.08992962539196014, 0.020073577761650085, 0.08728111535310745, -0.6529005765914917, -0.1779058277606964, 1.0623416900634766, -0.11842811107635498, 0.08206797391176224, -0.031674306839704514]} +{"t": 22.819, "q": [-0.3621864914894104, -0.009122072719037533, 0.006816474720835686, 0.6108567118644714, -0.28439629077911377, 0.003941721748560667, -0.36092522740364075, 0.008402805775403976, -0.002464108867570758, 0.6357412934303284, -0.33229249715805054, -0.011957095004618168, -0.015909571200609207, 0.05093953758478165, -0.03915293514728546, -3.0428547859191895, 2.2468504905700684, 1.883524775505066, 0.43451204895973206, -0.13464276492595673, -0.08991764485836029, 0.020061593502759933, 0.0872211903333664, -0.6529005765914917, -0.17794176936149597, 1.0595372915267944, -0.11844009906053543, 0.08240353316068649, -0.031674306839704514]} +{"t": 22.8357, "q": [-0.3622376322746277, -0.009283993393182755, 0.0068030827678740025, 0.6109078526496887, -0.2848294675350189, 0.0046767606399953365, -0.3611809015274048, 0.008377239108085632, -0.0024373249616473913, 0.6360992193222046, -0.33229658007621765, -0.01197883766144514, -0.01596313901245594, 0.050992704927921295, -0.039169199764728546, -3.0439813137054443, 2.2468504905700684, 1.8837285041809082, 0.4347277581691742, -0.13460682332515717, -0.08992962539196014, 0.020073577761650085, 0.08728111535310745, -0.6529005765914917, -0.17794176936149597, 1.0557023286819458, -0.11844009906053543, 0.08261924982070923, -0.03166232258081436]} +{"t": 22.8525, "q": [-0.3623143434524536, -0.009301036596298218, 0.006870042532682419, 0.611027181148529, -0.2856874465942383, 0.006161333527415991, -0.3613598644733429, 0.008385761640965939, -0.0023435817565768957, 0.6362441182136536, -0.33228838443756104, -0.01196439191699028, -0.01594974845647812, 0.05105351284146309, -0.03920045495033264, -3.0452516078948975, 2.2468624114990234, 1.8837285041809082, 0.43476372957229614, -0.13460682332515717, -0.08995359390974045, 0.02004960924386978, 0.08719722181558609, -0.6529005765914917, -0.17796574532985687, 1.0525864362716675, -0.11844009906053543, 0.08266718685626984, -0.031674306839704514]} +{"t": 22.8692, "q": [-0.3624165952205658, -0.009309559129178524, 0.0068030827678740025, 0.6112998723983765, -0.2857833206653595, 0.006269263569265604, -0.3614962100982666, 0.008377239108085632, -0.002316797850653529, 0.6364315748214722, -0.33228012919425964, -0.011978985741734505, -0.015896180644631386, 0.0510840006172657, -0.039240725338459015, -3.047600507736206, 2.2468385696411133, 1.8837285041809082, 0.4348236322402954, -0.13464276492595673, -0.0899416133761406, 0.02004960924386978, 0.08725714683532715, -0.652876615524292, -0.17796574532985687, 1.0486197471618652, -0.11842811107635498, 0.0827750414609909, -0.03166232258081436]} +{"t": 22.8859, "q": [-0.3625614643096924, -0.009292514994740486, 0.006615596357733011, 0.6115469932556152, -0.28577494621276855, 0.006283758208155632, -0.36157292127609253, 0.008343150839209557, -0.002397149335592985, 0.6365935206413269, -0.33228012919425964, -0.011978985741734505, -0.01578904502093792, 0.05108403414487839, -0.03925057873129845, -3.050213098526001, 2.2468504905700684, 1.8838003873825073, 0.4348955452442169, -0.13459482789039612, -0.0899416133761406, 0.020061593502759933, 0.08743690699338913, -0.6528646349906921, -0.17798970639705658, 1.0453120470046997, -0.11845207959413528, 0.08279900997877121, -0.03166232258081436]} +{"t": 22.9027, "q": [-0.3626040816307068, -0.009309559129178524, 0.006535245105624199, 0.6117430329322815, -0.28577911853790283, 0.006276510655879974, -0.36156439781188965, 0.008360194973647594, -0.0024507169146090746, 0.6367127895355225, -0.33228418231010437, -0.012000728398561478, -0.01578904502093792, 0.05106896162033081, -0.03927972540259361, -3.051591157913208, 2.2468385696411133, 1.884507417678833, 0.4348955452442169, -0.13464276492595673, -0.0899416133761406, 0.020073577761650085, 0.08742492645978928, -0.6528406739234924, -0.17800170183181763, 1.0421961545944214, -0.11842811107635498, 0.08284694701433182, -0.03163835406303406]} +{"t": 22.9194, "q": [-0.36276599764823914, -0.009301036596298218, 0.006521853152662516, 0.6119304895401001, -0.285849928855896, 0.0063990214839577675, -0.36180299520492554, 0.008334629237651825, -0.0024105412885546684, 0.6368406414985657, -0.3322964310646057, -0.012036916799843311, -0.015869395807385445, 0.05103128403425217, -0.03935258835554123, -3.0521903038024902, 2.2468504905700684, 1.885478138923645, 0.43485960364341736, -0.13458284735679626, -0.0899655818939209, 0.020073577761650085, 0.08746087551116943, -0.652792751789093, -0.17798970639705658, 1.0384570360183716, -0.11842811107635498, 0.08288290351629257, -0.031626369804143906]} +{"t": 22.9361, "q": [-0.3628768026828766, -0.009292514994740486, 0.006535245105624199, 0.6121180057525635, -0.28587907552719116, 0.006463922094553709, -0.3618967533111572, 0.008343150839209557, -0.002397149335592985, 0.6369770169258118, -0.33229637145996094, -0.012051455676555634, -0.015896180644631386, 0.051031313836574554, -0.03936244174838066, -3.052406072616577, 2.2468385696411133, 1.8867005109786987, 0.43476372957229614, -0.13460682332515717, -0.0899655818939209, 0.020073577761650085, 0.08750881254673004, -0.6527807712554932, -0.17798970639705658, 1.0353171825408936, -0.11844009906053543, 0.08287091553211212, -0.031614385545253754]} +{"t": 22.9528, "q": [-0.36311542987823486, -0.009275470860302448, 0.006521853152662516, 0.6122884154319763, -0.285912424325943, 0.0064926715567708015, -0.3621268570423126, 0.008334629237651825, -0.002383757382631302, 0.6371048092842102, -0.33225542306900024, -0.011979207396507263, -0.015896180644631386, 0.05101614072918892, -0.039362020790576935, -3.0523462295532227, 2.2468385696411133, 1.888773798942566, 0.4347037971019745, -0.13463078439235687, -0.08997756242752075, 0.02004960924386978, 0.08752080053091049, -0.6526129841804504, -0.17798970639705658, 1.0333278179168701, -0.11844009906053543, 0.08287091553211212, -0.03165033832192421]} +{"t": 22.9697, "q": [-0.3633881211280823, -0.009283993393182755, 0.00646828580647707, 0.6124588847160339, -0.2859625518321991, 0.006463492289185524, -0.362356960773468, 0.008326106704771519, -0.002397149335592985, 0.6371644735336304, -0.33225539326667786, -0.011993727646768093, -0.01578904502093792, 0.051008570939302444, -0.03936673700809479, -3.052382230758667, 2.2468385696411133, 1.8907033205032349, 0.4347037971019745, -0.13460682332515717, -0.0899895504117012, 0.020073577761650085, 0.08753278106451035, -0.6517381072044373, -0.17794176936149597, 1.032500982284546, -0.11844009906053543, 0.08288290351629257, -0.031626369804143906]} +{"t": 22.9865, "q": [-0.3636437952518463, -0.009292514994740486, 0.006441501900553703, 0.6126633882522583, -0.2859624922275543, 0.006506865378469229, -0.36256998777389526, 0.008274974301457405, -0.002397149335592985, 0.6372411847114563, -0.332230806350708, -0.011950389482080936, -0.015614950098097324, 0.05101614072918892, -0.039362020790576935, -3.0523102283477783, 2.2468385696411133, 1.8926687240600586, 0.4347277581691742, -0.13458284735679626, -0.09000153094530106, 0.020085562020540237, 0.08772452920675278, -0.6503479480743408, -0.17795376479625702, 1.0317339897155762, -0.11842811107635498, 0.08290687203407288, -0.03163835406303406]} +{"t": 23.0032, "q": [-0.36386537551879883, -0.00937773659825325, 0.006495069246739149, 0.6126889586448669, -0.28598752617836, 0.00652118818834424, -0.362774521112442, 0.008198275230824947, -0.002397149335592985, 0.6373093724250793, -0.3322103023529053, -0.011928776279091835, -0.015440856106579304, 0.05103124678134918, -0.0393427312374115, -3.052262306213379, 2.246814489364624, 1.8939390182495117, 0.4347277581691742, -0.13460682332515717, -0.0900135189294815, 0.020073577761650085, 0.08822786808013916, -0.6488139629364014, -0.1779058277606964, 1.0311347246170044, -0.11844009906053543, 0.08290687203407288, -0.031626369804143906]} +{"t": 23.0201, "q": [-0.3639164865016937, -0.009565223008394241, 0.00646828580647707, 0.6127060055732727, -0.2859708368778229, 0.006521274335682392, -0.36289384961128235, 0.008070443756878376, -0.002356973709538579, 0.6373434662818909, -0.3321816325187683, -0.011878197081387043, -0.015320328995585442, 0.051061566919088364, -0.03933372348546982, -3.0521304607391357, 2.2468504905700684, 1.8952453136444092, 0.43478769063949585, -0.13459482789039612, -0.0899655818939209, 0.020073577761650085, 0.0887431874871254, -0.6473039388656616, -0.17789383232593536, 1.0307751893997192, -0.11842811107635498, 0.08294282108545303, -0.031614385545253754]} +{"t": 23.0368, "q": [-0.3639846742153168, -0.009693054482340813, 0.006495069246739149, 0.6126804351806641, -0.2858749032020569, 0.006456717383116484, -0.362919420003891, 0.00800226628780365, -0.0023435817565768957, 0.6373775601387024, -0.3321857154369354, -0.01188542041927576, -0.015213193371891975, 0.05103881657123566, -0.039338015019893646, -3.051950693130493, 2.2468504905700684, 1.896767258644104, 0.43478769063949585, -0.1345708668231964, -0.0899655818939209, 0.02004960924386978, 0.08935438096523285, -0.6460456252098083, -0.17786987125873566, 1.0305235385894775, -0.11842811107635498, 0.08293084055185318, -0.031626369804143906]} +{"t": 23.0535, "q": [-0.3640613555908203, -0.009778276085853577, 0.006495069246739149, 0.6126889586448669, -0.2858998775482178, 0.0064999619498848915, -0.36298757791519165, 0.00791704561561346, -0.0023435817565768957, 0.6373860836029053, -0.3321816325187683, -0.011878197081387043, -0.015159625560045242, 0.05103881657123566, -0.039338015019893646, -3.0517590045928955, 2.2468504905700684, 1.8985528945922852, 0.43478769063949585, -0.13460682332515717, -0.08997756242752075, 0.020061593502759933, 0.0902891531586647, -0.644727349281311, -0.17789383232593536, 1.0302718877792358, -0.11842811107635498, 0.08294282108545303, -0.031626369804143906]} +{"t": 23.0703, "q": [-0.36417216062545776, -0.009872019290924072, 0.006521853152662516, 0.6126889586448669, -0.28588318824768066, 0.006514499429613352, -0.36307281255722046, 0.007891478948295116, -0.002356973709538579, 0.6373519897460938, -0.3321939706802368, -0.011870826594531536, -0.01505249086767435, 0.0510084331035614, -0.039327315986156464, -3.0516390800476074, 2.2468385696411133, 1.8998112678527832, 0.43478769063949585, -0.13463078439235687, -0.08997756242752075, 0.02004960924386978, 0.09128384292125702, -0.6434569954872131, -0.17786987125873566, 1.0300202369689941, -0.11842811107635498, 0.08297877758741379, -0.031614385545253754]} +{"t": 23.087, "q": [-0.3642999827861786, -0.009948717430233955, 0.006521853152662516, 0.6126889586448669, -0.28584983944892883, 0.006471298169344664, -0.3631835877895355, 0.007840346544981003, -0.002383757382631302, 0.6373519897460938, -0.33217760920524597, -0.011841935105621815, -0.01505249086767435, 0.05098565295338631, -0.03932175412774086, -3.0516390800476074, 2.2468385696411133, 1.9003626108169556, 0.4348236322402954, -0.13463078439235687, -0.0899895504117012, 0.02004960924386978, 0.09218265861272812, -0.6422585844993591, -0.17786987125873566, 1.029600739479065, -0.11844009906053543, 0.08299075812101364, -0.031614385545253754]} +{"t": 23.1037, "q": [-0.3644448518753052, -0.01003393903374672, 0.006508461199700832, 0.6126974821090698, -0.2858290374279022, 0.0064208065159618855, -0.3633710741996765, 0.007755124941468239, -0.002356973709538579, 0.6373519897460938, -0.33217355608940125, -0.01182017382234335, -0.015106058679521084, 0.050970472395420074, -0.039321329444646835, -3.051687002182007, 2.2468504905700684, 1.9005663394927979, 0.43485960364341736, -0.13463078439235687, -0.09000153094530106, 0.020061593502759933, 0.09321330487728119, -0.6412878632545471, -0.17789383232593536, 1.028701901435852, -0.11844009906053543, 0.0830267146229744, -0.03159041702747345]} +{"t": 23.1206, "q": [-0.3645130395889282, -0.010136204771697521, 0.006615596357733011, 0.6127145290374756, -0.2854458689689636, 0.005757804494351149, -0.3634733557701111, 0.007772169075906277, -0.0023034061305224895, 0.6373264193534851, -0.3321325480937958, -0.011762445792555809, -0.01511945016682148, 0.05097044259309769, -0.039311476051807404, -3.0516512393951416, 2.2468385696411133, 1.9005903005599976, 0.4348476231098175, -0.13463078439235687, -0.0900135189294815, 0.020061593502759933, 0.09413608908653259, -0.6403771042823792, -0.17789383232593536, 1.0277072191238403, -0.11844009906053543, 0.08303869515657425, -0.03159041702747345]} +{"t": 23.1374, "q": [-0.3645556569099426, -0.01022142544388771, 0.006736123468726873, 0.6127145290374756, -0.28537464141845703, 0.005938870832324028, -0.3635500371456146, 0.007814779877662659, -0.0022632302716374397, 0.637334942817688, -0.3321284353733063, -0.011755223385989666, -0.015173017978668213, 0.05095519497990608, -0.03929134085774422, -3.0515551567077637, 2.2468624114990234, 1.9005663394927979, 0.4348476231098175, -0.13464276492595673, -0.0899895504117012, 0.02004960924386978, 0.09484315663576126, -0.6398018598556519, -0.1778818517923355, 1.027275800704956, -0.11842811107635498, 0.0830267146229744, -0.03159041702747345]} +{"t": 23.1541, "q": [-0.36464938521385193, -0.01034073531627655, 0.006776299327611923, 0.6127400994300842, -0.28536638617515564, 0.00588108878582716, -0.3636523187160492, 0.007797735743224621, -0.0022632302716374397, 0.6373519897460938, -0.33212849497795105, -0.011740685440599918, -0.015253368765115738, 0.05095519497990608, -0.03929134085774422, -3.051495313644409, 2.2468624114990234, 1.9005663394927979, 0.4348715841770172, -0.13459482789039612, -0.0899895504117012, 0.020073577761650085, 0.09551427513360977, -0.6392146348953247, -0.17789383232593536, 1.0271559953689575, -0.11845207959413528, 0.0830506831407547, -0.03159041702747345]} +{"t": 23.1711, "q": [-0.36463233828544617, -0.010425956919789314, 0.006843258626759052, 0.6127315759658813, -0.28530389070510864, 0.0057874564081430435, -0.36368638277053833, 0.007797735743224621, -0.0022632302716374397, 0.6373519897460938, -0.33212438225746155, -0.0117334621027112, -0.015253368765115738, 0.05093998834490776, -0.03928106278181076, -3.0514473915100098, 2.2468624114990234, 1.900482416152954, 0.4348715841770172, -0.13465476036071777, -0.0900135189294815, 0.020061593502759933, 0.09606555104255676, -0.6386153697967529, -0.17789383232593536, 1.0270960330963135, -0.11844009906053543, 0.083074651658535, -0.03159041702747345]} +{"t": 23.1878, "q": [-0.36467495560646057, -0.010468566790223122, 0.006910218391567469, 0.6127486228942871, -0.28492480516433716, 0.0051894658245146275, -0.3636949062347412, 0.00780625781044364, -0.0022900141775608063, 0.6373519897460938, -0.33207523822784424, -0.01164676807820797, -0.015280152671039104, 0.0509323813021183, -0.03927592188119888, -3.0513994693756104, 2.2468504905700684, 1.9005303382873535, 0.4349195063114166, -0.13461880385875702, -0.09000153094530106, 0.020061593502759933, 0.09642507880926132, -0.6379802227020264, -0.17789383232593536, 1.0268923044204712, -0.11842811107635498, 0.08308663219213486, -0.03159041702747345]} +{"t": 23.2046, "q": [-0.36464938521385193, -0.010485611855983734, 0.007003961596637964, 0.6127656698226929, -0.2837630808353424, 0.0035983012057840824, -0.3636949062347412, 0.00780625781044364, -0.0022900141775608063, 0.6373519897460938, -0.33207938075065613, -0.011639471165835857, -0.015306936576962471, 0.050902027636766434, -0.03927507996559143, -3.051375389099121, 2.2468385696411133, 1.9004703760147095, 0.4349434971809387, -0.13459482789039612, -0.0899895504117012, 0.02004960924386978, 0.096580870449543, -0.6373810172080994, -0.1778818517923355, 1.0268323421478271, -0.11842811107635498, 0.08309862017631531, -0.03159041702747345]} +{"t": 23.2214, "q": [-0.36464086174964905, -0.010502655059099197, 0.007044136989861727, 0.6128168106079102, -0.28314751386642456, 0.0025404179468750954, -0.3637034296989441, 0.00780625781044364, -0.002276622224599123, 0.6373519897460938, -0.33208751678466797, -0.011668437160551548, -0.015333720482885838, 0.05090956762433052, -0.03926050662994385, -3.051351547241211, 2.2468504905700684, 1.900482416152954, 0.43493151664733887, -0.13459482789039612, -0.0900135189294815, 0.020061593502759933, 0.09664079546928406, -0.6367937922477722, -0.17789383232593536, 1.0267964601516724, -0.11842811107635498, 0.08311060070991516, -0.0316024012863636]} +{"t": 23.2381, "q": [-0.3647090494632721, -0.010502655059099197, 0.007070920895785093, 0.6128423810005188, -0.2830401062965393, 0.0023533033672720194, -0.36372047662734985, 0.00780625781044364, -0.0022632302716374397, 0.6373605132102966, -0.3320874869823456, -0.011682975105941296, -0.015347111970186234, 0.05090195685625076, -0.03925536572933197, -3.051351547241211, 2.2468624114990234, 1.9004344940185547, 0.4348955452442169, -0.13463078439235687, -0.0899895504117012, 0.02004960924386978, 0.09664079546928406, -0.6359549164772034, -0.1778818517923355, 1.0267964601516724, -0.11844009906053543, 0.08313456922769547, -0.03159041702747345]} +{"t": 23.2548, "q": [-0.36473461985588074, -0.010502655059099197, 0.007044136989861727, 0.6128423810005188, -0.2833367884159088, 0.001954150153324008, -0.3638227581977844, 0.007772169075906277, -0.0022632302716374397, 0.6373690366744995, -0.332095742225647, -0.011668363586068153, -0.015333720482885838, 0.05090195685625076, -0.03925536572933197, -3.0514113903045654, 2.2468385696411133, 1.900482416152954, 0.4348955452442169, -0.13461880385875702, -0.09000153094530106, 0.020061593502759933, 0.09664079546928406, -0.6349722146987915, -0.17784589529037476, 1.0268083810806274, -0.11842811107635498, 0.08313456922769547, -0.0316024012863636]} +{"t": 23.2716, "q": [-0.3647601902484894, -0.010502655059099197, 0.007003961596637964, 0.6128423810005188, -0.28323689103126526, 0.0019836670253425837, -0.36384832859039307, 0.007797735743224621, -0.0023034061305224895, 0.6373690366744995, -0.33208751678466797, -0.011668437160551548, -0.015333720482885838, 0.05087157338857651, -0.03924468532204628, -3.0513875484466553, 2.2468385696411133, 1.9005303382873535, 0.43488356471061707, -0.13461880385875702, -0.09002549946308136, 0.02004960924386978, 0.0966048389673233, -0.6340254545211792, -0.17784589529037476, 1.0268083810806274, -0.11842811107635498, 0.08314655721187592, -0.03159041702747345]} +{"t": 23.2883, "q": [-0.364785760641098, -0.010485611855983734, 0.006937001831829548, 0.6128509044647217, -0.28327417373657227, 0.002019534818828106, -0.3638909161090851, 0.00780625781044364, -0.0023435817565768957, 0.6373775601387024, -0.3321080505847931, -0.011690032668411732, -0.015293545089662075, 0.05085635930299759, -0.03923441842198372, -3.0513875484466553, 2.2468624114990234, 1.9004703760147095, 0.4348476231098175, -0.13463078439235687, -0.09000153094530106, 0.020061593502759933, 0.0965569019317627, -0.6328989267349243, -0.1778578907251358, 1.0267964601516724, -0.11842811107635498, 0.08314655721187592, -0.03159041702747345]} +{"t": 23.305, "q": [-0.36481982469558716, -0.010485611855983734, 0.006870042532682419, 0.6128509044647217, -0.2832657992839813, 0.002034047618508339, -0.3639164865016937, 0.00780625781044364, -0.0023435817565768957, 0.6373946070671082, -0.3321244418621063, -0.01171894185245037, -0.015280152671039104, 0.05087914317846298, -0.03923996165394783, -3.051351547241211, 2.2468624114990234, 1.9003984928131104, 0.4347996711730957, -0.13464276492595673, -0.0899895504117012, 0.02004960924386978, 0.096580870449543, -0.6319641470909119, -0.1777859777212143, 1.0267964601516724, -0.11844009906053543, 0.08315853774547577, -0.03159041702747345]} +{"t": 23.3219, "q": [-0.3648880124092102, -0.010468566790223122, 0.006843258626759052, 0.6128423810005188, -0.2832823395729065, 0.0020628441125154495, -0.3640528619289398, 0.007797735743224621, -0.0023703654296696186, 0.6373946070671082, -0.3321613371372223, -0.011769447475671768, -0.015266761183738708, 0.05087150260806084, -0.03922497481107712, -3.0513155460357666, 2.2468624114990234, 1.900254726409912, 0.434775710105896, -0.13463078439235687, -0.0900135189294815, 0.02004960924386978, 0.096580870449543, -0.6308735609054565, -0.1777620166540146, 1.0268083810806274, -0.11842811107635498, 0.08315853774547577, -0.0315784327685833]} +{"t": 23.3386, "q": [-0.36496472358703613, -0.010434478521347046, 0.006776299327611923, 0.6128423810005188, -0.2832823395729065, 0.0020628441125154495, -0.3641465902328491, 0.00780625781044364, -0.0023301898036152124, 0.637420117855072, -0.332173615694046, -0.011791115626692772, -0.015239977277815342, 0.05087907612323761, -0.03922025114297867, -3.051267623901367, 2.2468864917755127, 1.9002426862716675, 0.4347996711730957, -0.13470269739627838, -0.0900135189294815, 0.020073577761650085, 0.0965569019317627, -0.630094587802887, -0.17775003612041473, 1.0267724990844727, -0.11842811107635498, 0.08317052572965622, -0.0316024012863636]} +{"t": 23.3554, "q": [-0.36505845189094543, -0.010425956919789314, 0.006749515421688557, 0.612825334072113, -0.2832740545272827, 0.0020484367851167917, -0.36426588892936707, 0.007763647008687258, -0.0023435817565768957, 0.637420117855072, -0.33218589425086975, -0.011812803335487843, -0.015213193371891975, 0.05087150260806084, -0.03922497481107712, -3.051267623901367, 2.2468504905700684, 1.9002187252044678, 0.4347996711730957, -0.13465476036071777, -0.0900135189294815, 0.020061593502759933, 0.09653293341398239, -0.6294474601745605, -0.17771407961845398, 1.0267844200134277, -0.11842811107635498, 0.08315853774547577, -0.031566448509693146]} +{"t": 23.3721, "q": [-0.3651181161403656, -0.010408911854028702, 0.006682556122541428, 0.6128168106079102, -0.28328239917755127, 0.0020484020933508873, -0.36431702971458435, 0.007780691608786583, -0.0023703654296696186, 0.6374456882476807, -0.3322063386440277, -0.011863437481224537, -0.015226585790514946, 0.05089428648352623, -0.03923051804304123, -3.051255702972412, 2.2468504905700684, 1.9002666473388672, 0.4347996711730957, -0.13464276492595673, -0.0900135189294815, 0.020061593502759933, 0.09656888991594315, -0.6289440989494324, -0.17763018608093262, 1.0267844200134277, -0.11842811107635498, 0.08317052572965622, -0.031566448509693146]} +{"t": 23.3888, "q": [-0.36519479751586914, -0.010391868650913239, 0.006682556122541428, 0.612825334072113, -0.28320732712745667, 0.002106644678860903, -0.3643852174282074, 0.007789213676005602, -0.002356973709538579, 0.6374286413192749, -0.3322145938873291, -0.011848843656480312, -0.015226585790514946, 0.050894249230623245, -0.0392206609249115, -3.051267623901367, 2.2468984127044678, 1.9002187252044678, 0.4347996711730957, -0.13466674089431763, -0.0900135189294815, 0.02004960924386978, 0.09664079546928406, -0.6286325454711914, -0.1776062250137329, 1.0268323421478271, -0.11842811107635498, 0.08317052572965622, -0.031566448509693146]} +{"t": 23.4057, "q": [-0.3652544617652893, -0.010374823585152626, 0.006695947609841824, 0.6127912402153015, -0.28320297598838806, 0.002157235983759165, -0.36445337533950806, 0.007814779877662659, -0.0023435817565768957, 0.6374456882476807, -0.3322186768054962, -0.011870604939758778, -0.015239977277815342, 0.05090181902050972, -0.039215944707393646, -3.051267623901367, 2.2468984127044678, 1.9001349210739136, 0.43478769063949585, -0.13464276492595673, -0.0900135189294815, 0.020061593502759933, 0.09672468155622482, -0.628440797328949, -0.17754629254341125, 1.0269043445587158, -0.11842811107635498, 0.08317052572965622, -0.031554464250802994]} +{"t": 23.4224, "q": [-0.3653056025505066, -0.010383346118032932, 0.006682556122541428, 0.6128082871437073, -0.28316158056259155, 0.0021141557954251766, -0.364530086517334, 0.00780625781044364, -0.0023703654296696186, 0.6374286413192749, -0.3322269320487976, -0.011856011115014553, -0.015239977277815342, 0.05088657885789871, -0.039195816963911057, -3.0512197017669678, 2.2468984127044678, 1.9001708030700684, 0.434775710105896, -0.13466674089431763, -0.0900135189294815, 0.02004960924386978, 0.0968565046787262, -0.6282610297203064, -0.1774863749742508, 1.0270001888275146, -0.11842811107635498, 0.08318250626325607, -0.03154247999191284]} +{"t": 23.4391, "q": [-0.36545899510383606, -0.010391868650913239, 0.006695947609841824, 0.6127997636795044, -0.283198744058609, 0.0021789255551993847, -0.36463233828544617, 0.00780625781044364, -0.002383757382631302, 0.6374456882476807, -0.3322310149669647, -0.01186323445290327, -0.015226585790514946, 0.05088654160499573, -0.039185959845781326, -3.051147699356079, 2.246922492980957, 1.900122880935669, 0.4348236322402954, -0.13466674089431763, -0.0899895504117012, 0.020061593502759933, 0.0971800833940506, -0.628213107585907, -0.17743843793869019, 1.0270001888275146, -0.11842811107635498, 0.08318250626325607, -0.03154247999191284]} +{"t": 23.4559, "q": [-0.3654930889606476, -0.010383346118032932, 0.006709339562803507, 0.6127827167510986, -0.2830483913421631, 0.002367692533880472, -0.3646579086780548, 0.007831824012100697, -0.0024105412885546684, 0.6374456882476807, -0.3322310149669647, -0.01186323445290327, -0.015213193371891975, 0.05088643729686737, -0.039156392216682434, -3.0510997772216797, 2.246934413909912, 1.9001588821411133, 0.4348236322402954, -0.13467872142791748, -0.09000153094530106, 0.020061593502759933, 0.09751564264297485, -0.6281172037124634, -0.17742645740509033, 1.0270121097564697, -0.11842811107635498, 0.08318250626325607, -0.03153049573302269]} +{"t": 23.4726, "q": [-0.36554422974586487, -0.010383346118032932, 0.006709339562803507, 0.6127827167510986, -0.2830483317375183, 0.0023821345530450344, -0.36469200253486633, 0.007848868146538734, -0.002397149335592985, 0.6374371647834778, -0.33223509788513184, -0.011884977109730244, -0.015132841654121876, 0.05086348205804825, -0.03910156711935997, -3.0510518550872803, 2.246946334838867, 1.900122880935669, 0.4348236322402954, -0.13463078439235687, -0.09000153094530106, 0.020061593502759933, 0.0981268361210823, -0.6280453205108643, -0.17727066576480865, 1.027143955230713, -0.11840414255857468, 0.08318250626325607, -0.03151851147413254]} +{"t": 23.4893, "q": [-0.3656123876571655, -0.010383346118032932, 0.006709339562803507, 0.6127827167510986, -0.2830565869808197, 0.002396523952484131, -0.3647516667842865, 0.00785739067941904, -0.002423933008685708, 0.6374456882476807, -0.33225974440574646, -0.011899293400347233, -0.01503909844905138, 0.05086344853043556, -0.03909171745181084, -3.0509321689605713, 2.246934413909912, 1.9000749588012695, 0.4347996711730957, -0.13464276492595673, -0.0900135189294815, 0.02004960924386978, 0.09898970276117325, -0.6279613971710205, -0.17709089815616608, 1.0272637605667114, -0.11839216202497482, 0.08318250626325607, -0.03153049573302269]} +{"t": 23.506, "q": [-0.36564648151397705, -0.010391868650913239, 0.006682556122541428, 0.6127827167510986, -0.2830565869808197, 0.002396523952484131, -0.36477723717689514, 0.00788295641541481, -0.0024775005877017975, 0.6374371647834778, -0.33225974440574646, -0.011899293400347233, -0.014958747662603855, 0.05082534998655319, -0.039046380668878555, -3.0508601665496826, 2.2469823360443115, 1.8998831510543823, 0.4347996711730957, -0.13463078439235687, -0.09002549946308136, 0.020061593502759933, 0.10002034157514572, -0.6278655529022217, -0.17675533890724182, 1.027443528175354, -0.11838017404079437, 0.08318250626325607, -0.03151851147413254]} +{"t": 23.5228, "q": [-0.365723192691803, -0.010391868650913239, 0.006655772216618061, 0.6127827167510986, -0.2830483317375183, 0.0023821345530450344, -0.3648368716239929, 0.00791704561561346, -0.0024908925406634808, 0.6374456882476807, -0.3322761654853821, -0.011913665570318699, -0.01471769344061613, 0.05081003159284592, -0.039006590843200684, -3.0507402420043945, 2.2469942569732666, 1.8999310731887817, 0.4348236322402954, -0.13466674089431763, -0.0900135189294815, 0.02004960924386978, 0.10126670449972153, -0.6277816295623779, -0.1763598620891571, 1.0275514125823975, -0.11834422498941422, 0.08318250626325607, -0.03153049573302269]} +{"t": 23.5395, "q": [-0.36574023962020874, -0.010391868650913239, 0.006588812451809645, 0.6127741932868958, -0.2830525040626526, 0.0023748872336000204, -0.3648880124092102, 0.00791704561561346, -0.00258463597856462, 0.6374456882476807, -0.3322884142398834, -0.011949853971600533, -0.014476639218628407, 0.0508023165166378, -0.03897193819284439, -3.050764322280884, 2.2469823360443115, 1.8999191522598267, 0.43481165170669556, -0.13470269739627838, -0.09000153094530106, 0.020073577761650085, 0.10272877663373947, -0.6276618242263794, -0.17613215744495392, 1.0275394916534424, -0.11834422498941422, 0.08318250626325607, -0.03151851147413254]} +{"t": 23.5562, "q": [-0.3657572567462921, -0.010391868650913239, 0.0065620290115475655, 0.6127486228942871, -0.28304001688957214, 0.002382187405601144, -0.36492210626602173, 0.007908523082733154, -0.0025980276986956596, 0.6374627351760864, -0.3323170840740204, -0.012000433169305325, -0.014235584996640682, 0.0508173406124115, -0.038932982832193375, -3.050800323486328, 2.2469582557678223, 1.8999791145324707, 0.4347996711730957, -0.13464276492595673, -0.09002549946308136, 0.020061593502759933, 0.10440657287836075, -0.6275179982185364, -0.17607223987579346, 1.0275874137878418, -0.11833223700523376, 0.08314655721187592, -0.03151851147413254]} +{"t": 23.5729, "q": [-0.3657743036746979, -0.010391868650913239, 0.006548637058585882, 0.6127230525016785, -0.28300637006759644, 0.002483510412275791, -0.3649391531944275, 0.007891478948295116, -0.0026649872306734324, 0.6374712586402893, -0.33233755826950073, -0.012036565691232681, -0.014088273979723454, 0.05081726610660553, -0.0389133021235466, -3.0507524013519287, 2.2469582557678223, 1.8999431133270264, 0.43481165170669556, -0.13464276492595673, -0.0900135189294815, 0.02004960924386978, 0.10574880242347717, -0.6273981332778931, -0.17595238983631134, 1.0278750658035278, -0.11834422498941422, 0.08318250626325607, -0.03151851147413254]} +{"t": 23.5897, "q": [-0.3657743036746979, -0.010383346118032932, 0.006521853152662516, 0.6127315759658813, -0.2829481065273285, 0.0024983214680105448, -0.3649391531944275, 0.00791704561561346, -0.002691771136596799, 0.6375223994255066, -0.33235394954681396, -0.012065458111464977, -0.013967746868729591, 0.050817228853702545, -0.038903459906578064, -3.0507164001464844, 2.246922492980957, 1.899967074394226, 0.4348715841770172, -0.13464276492595673, -0.0900135189294815, 0.020061593502759933, 0.10748651623725891, -0.6273502111434937, -0.17589247226715088, 1.0288697481155396, -0.11833223700523376, 0.08321846276521683, -0.031506527215242386]} +{"t": 23.6064, "q": [-0.3657572567462921, -0.010391868650913239, 0.006521853152662516, 0.6127315759658813, -0.2828729450702667, 0.0025854839477688074, -0.36494767665863037, 0.007951133884489536, -0.0026783791836351156, 0.6375735402107239, -0.33235394954681396, -0.012065458111464977, -0.013807044364511967, 0.050847429782152176, -0.038864921778440475, -3.0507164001464844, 2.246946334838867, 1.8998831510543823, 0.4348955452442169, -0.13464276492595673, -0.0899895504117012, 0.02004960924386978, 0.10916430503129959, -0.6273022890090942, -0.17580857872962952, 1.029373049736023, -0.11832025647163391, 0.08324243128299713, -0.03151851147413254]} +{"t": 23.6234, "q": [-0.3657743036746979, -0.010366301983594894, 0.006548637058585882, 0.6127060055732727, -0.28274333477020264, 0.0027813403867185116, -0.3649391531944275, 0.007985222153365612, -0.0027051628567278385, 0.6376246809959412, -0.3323580324649811, -0.012072698213160038, -0.01379365287721157, 0.0508548840880394, -0.03883068263530731, -3.05065655708313, 2.246922492980957, 1.8997993469238281, 0.4349195063114166, -0.13465476036071777, -0.09000153094530106, 0.020061593502759933, 0.11059042811393738, -0.6272543668746948, -0.17580857872962952, 1.029768466949463, -0.11832025647163391, 0.08323044329881668, -0.031506527215242386]} +{"t": 23.6402, "q": [-0.3657487630844116, -0.010357779450714588, 0.006495069246739149, 0.6126889586448669, -0.28273916244506836, 0.0027885877061635256, -0.3649391531944275, 0.00800226628780365, -0.002691771136596799, 0.6376417279243469, -0.3323580026626587, -0.012087218463420868, -0.01379365287721157, 0.050832103937864304, -0.0388251394033432, -3.0506443977355957, 2.246946334838867, 1.8997633457183838, 0.43488356471061707, -0.13463078439235687, -0.09000153094530106, 0.020061593502759933, 0.11210044473409653, -0.6271704435348511, -0.17577263712882996, 1.0303198099136353, -0.11829628795385361, 0.08323044329881668, -0.031506527215242386]} +{"t": 23.6569, "q": [-0.36574023962020874, -0.010357779450714588, 0.006495069246739149, 0.6127060055732727, -0.2827349901199341, 0.0027958350256085396, -0.3649306297302246, 0.00800226628780365, -0.002758730435743928, 0.6377440094947815, -0.33238673210144043, -0.012108739465475082, -0.013726692646741867, 0.05082450062036514, -0.03882001340389252, -3.0507044792175293, 2.2469823360443115, 1.899835228919983, 0.43483564257621765, -0.13466674089431763, -0.0900135189294815, 0.02004960924386978, 0.11367037892341614, -0.6270146369934082, -0.17561683058738708, 1.0313384532928467, -0.1182723194360733, 0.08323044329881668, -0.031506527215242386]} +{"t": 23.6736, "q": [-0.365765780210495, -0.01034073531627655, 0.006495069246739149, 0.6127060055732727, -0.2827349901199341, 0.0027958350256085396, -0.3649391531944275, 0.008010788820683956, -0.0028122980147600174, 0.637863278388977, -0.33239081501960754, -0.012130482122302055, -0.013726692646741867, 0.05083207041025162, -0.03881530091166496, -3.0507402420043945, 2.2469823360443115, 1.8999191522598267, 0.43483564257621765, -0.13463078439235687, -0.0900135189294815, 0.020061593502759933, 0.11521634459495544, -0.6268948316574097, -0.17547301948070526, 1.0323091745376587, -0.11826033145189285, 0.08323044329881668, -0.03151851147413254]} +{"t": 23.6903, "q": [-0.36573171615600586, -0.01034073531627655, 0.006495069246739149, 0.6126974821090698, -0.2827349901199341, 0.0027958350256085396, -0.36492210626602173, 0.007993744686245918, -0.0028122980147600174, 0.6379058957099915, -0.3324030935764313, -0.012152169831097126, -0.013726692646741867, 0.05083956569433212, -0.038790903985500336, -3.050800323486328, 2.2469582557678223, 1.8998472690582275, 0.43483564257621765, -0.13465476036071777, -0.09002549946308136, 0.020061593502759933, 0.11665444821119308, -0.6266671419143677, -0.17531722784042358, 1.0333278179168701, -0.11826033145189285, 0.08321846276521683, -0.03151851147413254]} +{"t": 23.7071, "q": [-0.3657061457633972, -0.01034073531627655, 0.006495069246739149, 0.6127145290374756, -0.2827349901199341, 0.0027958350256085396, -0.36492210626602173, 0.008027832955121994, -0.0027989062946289778, 0.6379826068878174, -0.3324195146560669, -0.012166541069746017, -0.013713301159441471, 0.050869911909103394, -0.038791730999946594, -3.0508241653442383, 2.2469582557678223, 1.899907112121582, 0.43483564257621765, -0.13469070196151733, -0.09000153094530106, 0.020061593502759933, 0.11790081113576889, -0.6263195872306824, -0.17525731027126312, 1.0343225002288818, -0.11826033145189285, 0.08323044329881668, -0.031506527215242386]} +{"t": 23.7239, "q": [-0.3657146692276001, -0.010349256917834282, 0.006535245105624199, 0.6126889586448669, -0.2827267348766327, 0.002781445859000087, -0.36492210626602173, 0.008096009492874146, -0.0027989062946289778, 0.6380252242088318, -0.3324359059333801, -0.012195451185107231, -0.013740085065364838, 0.05088505148887634, -0.03878230229020119, -3.050776243209839, 2.2469582557678223, 1.899907112121582, 0.43485960364341736, -0.13465476036071777, -0.09000153094530106, 0.02004960924386978, 0.11927899718284607, -0.6259840130805969, -0.17520937323570251, 1.0348857641220093, -0.11826033145189285, 0.08321846276521683, -0.031506527215242386]} +{"t": 23.7406, "q": [-0.3657061457633972, -0.01034073531627655, 0.006521853152662516, 0.6126719117164612, -0.28279784321784973, 0.0026582046411931515, -0.3649306297302246, 0.008096009492874146, -0.0027855143416672945, 0.6380593180656433, -0.33245640993118286, -0.012217046692967415, -0.013753476552665234, 0.050884976983070374, -0.03876262158155441, -3.050764322280884, 2.2469823360443115, 1.8998831510543823, 0.43481165170669556, -0.13469070196151733, -0.09000153094530106, 0.02003762498497963, 0.12098075449466705, -0.6255645751953125, -0.174909770488739, 1.0350415706634521, -0.118248350918293, 0.08321846276521683, -0.031506527215242386]} +{"t": 23.7573, "q": [-0.365723192691803, -0.010332213714718819, 0.006495069246739149, 0.6126633882522583, -0.28281018137931824, 0.0026942305266857147, -0.3649902939796448, 0.008078965358436108, -0.0028256899677217007, 0.6380593180656433, -0.33252203464508057, -0.012303592637181282, -0.013713301159441471, 0.050884976983070374, -0.03876262158155441, -3.050800323486328, 2.246946334838867, 1.899907112121582, 0.4347996711730957, -0.13466674089431763, -0.09000153094530106, 0.020061593502759933, 0.12289822846651077, -0.6250731945037842, -0.17477793991565704, 1.0351015329360962, -0.1182243824005127, 0.08320647478103638, -0.031506527215242386]} +{"t": 23.7742, "q": [-0.36574023962020874, -0.010349256917834282, 0.006495069246739149, 0.6126378178596497, -0.28286013007164, 0.002679472090676427, -0.36501583456993103, 0.008078965358436108, -0.002852473873645067, 0.6380593180656433, -0.3325916528701782, -0.01242641918361187, -0.013673125766217709, 0.05089254677295685, -0.03875790908932686, -3.050776243209839, 2.2469582557678223, 1.899895191192627, 0.43478769063949585, -0.13467872142791748, -0.0900135189294815, 0.02004960924386978, 0.1248636394739151, -0.6244739890098572, -0.17462214827537537, 1.0352692604064941, -0.1182243824005127, 0.08321846276521683, -0.031506527215242386]} +{"t": 23.7909, "q": [-0.36574023962020874, -0.01034073531627655, 0.006495069246739149, 0.6126207709312439, -0.28286439180374146, 0.0026577827520668507, -0.36510106921195984, 0.008078965358436108, -0.002852473873645067, 0.6380593180656433, -0.33260396122932434, -0.012433568015694618, -0.013619557954370975, 0.05089254677295685, -0.03875790908932686, -3.0508241653442383, 2.2469582557678223, 1.8998831510543823, 0.43478769063949585, -0.13469070196151733, -0.0900135189294815, 0.02004960924386978, 0.12654143571853638, -0.6237189769744873, -0.17452627420425415, 1.0356168746948242, -0.11818842589855194, 0.08320647478103638, -0.03151851147413254]} +{"t": 23.8076, "q": [-0.365765780210495, -0.01034073531627655, 0.006495069246739149, 0.6125611066818237, -0.28286856412887573, 0.0026505354326218367, -0.36517778038978577, 0.008087487891316414, -0.0028256899677217007, 0.6380763649940491, -0.3326285779476166, -0.012462403625249863, -0.013659733347594738, 0.050900112837553024, -0.038753196597099304, -3.0508241653442383, 2.2469823360443115, 1.8999310731887817, 0.4347996711730957, -0.13465476036071777, -0.09000153094530106, 0.020061593502759933, 0.12802748382091522, -0.622604489326477, -0.1744663566350937, 1.0361560583114624, -0.11817644536495209, 0.08321846276521683, -0.031506527215242386]} +{"t": 23.8243, "q": [-0.36578282713890076, -0.01034073531627655, 0.006495069246739149, 0.6125100255012512, -0.2828643321990967, 0.002672224771231413, -0.3653056025505066, 0.008070443756878376, -0.002865865593776107, 0.6380763649940491, -0.33266136050224304, -0.012520206160843372, -0.013659733347594738, 0.0509076826274395, -0.03874848783016205, -3.050812244415283, 2.2469823360443115, 1.899895191192627, 0.43478769063949585, -0.13465476036071777, -0.09000153094530106, 0.020061593502759933, 0.12952551245689392, -0.6211064457893372, -0.1744423806667328, 1.0364197492599487, -0.11821239441633224, 0.08321846276521683, -0.03151851147413254]} +{"t": 23.8411, "q": [-0.3658083975315094, -0.010306647047400475, 0.006495069246739149, 0.6125015020370483, -0.28287267684936523, 0.002657730132341385, -0.3654419481754303, 0.008078965358436108, -0.002852473873645067, 0.638084888458252, -0.33269003033638, -0.01257078442722559, -0.013713301159441471, 0.050884902477264404, -0.03874293714761734, -3.0508241653442383, 2.2469942569732666, 1.8997873067855835, 0.43473976850509644, -0.13466674089431763, -0.08997756242752075, 0.020061593502759933, 0.13105948269367218, -0.6192488670349121, -0.17434650659561157, 1.0364317893981934, -0.11815247684717178, 0.08321846276521683, -0.03151851147413254]} +{"t": 23.8579, "q": [-0.3657998740673065, -0.010264036245644093, 0.006441501900553703, 0.6124844551086426, -0.2828225791454315, 0.0027158143930137157, -0.36565500497817993, 0.008078965358436108, -0.00287925754673779, 0.6381189823150635, -0.3327310383319855, -0.01262851245701313, -0.013713301159441471, 0.050884902477264404, -0.03874293714761734, -3.050800323486328, 2.247042179107666, 1.8998233079910278, 0.43469181656837463, -0.13467872142791748, -0.09000153094530106, 0.02004960924386978, 0.13271330296993256, -0.6168999671936035, -0.17429856956005096, 1.036455750465393, -0.11816445738077164, 0.08321846276521683, -0.03151851147413254]} +{"t": 23.8747, "q": [-0.3657743036746979, -0.010255513712763786, 0.006374542135745287, 0.6124588847160339, -0.2827185094356537, 0.0027525965124368668, -0.36583396792411804, 0.008113053627312183, -0.0029328251257538795, 0.6381956338882446, -0.33275970816612244, -0.012679091654717922, -0.013646341860294342, 0.05086208134889603, -0.03872755542397499, -3.050800323486328, 2.2470662593841553, 1.8998712301254272, 0.43469181656837463, -0.13465476036071777, -0.0899895504117012, 0.020061593502759933, 0.13431920111179352, -0.6144552230834961, -0.17427460849285126, 1.0364317893981934, -0.11816445738077164, 0.08321846276521683, -0.03153049573302269]} +{"t": 23.8914, "q": [-0.3658083975315094, -0.010246992111206055, 0.006294190883636475, 0.6124674081802368, -0.28273093700408936, 0.002759738592430949, -0.36602145433425903, 0.00812157616019249, -0.0029997846577316523, 0.6382297277450562, -0.33276379108428955, -0.01268631499260664, -0.013632949441671371, 0.05084679648280144, -0.03869761526584625, -3.050800323486328, 2.2470901012420654, 1.899835228919983, 0.4346199035644531, -0.13465476036071777, -0.0900135189294815, 0.020061593502759933, 0.1356973797082901, -0.6113033294677734, -0.1741907149553299, 1.0364676713943481, -0.11815247684717178, 0.08323044329881668, -0.03151851147413254]} +{"t": 23.9082, "q": [-0.36579135060310364, -0.010212903842329979, 0.006280798930674791, 0.6124929785728455, -0.2827308475971222, 0.002788640558719635, -0.36624303460121155, 0.008147141896188259, -0.0030399602837860584, 0.6382212042808533, -0.33276379108428955, -0.01268631499260664, -0.013646341860294342, 0.050869427621364594, -0.03866378962993622, -3.0507524013519287, 2.247150182723999, 1.8997633457183838, 0.434548020362854, -0.13469070196151733, -0.09000153094530106, 0.02004960924386978, 0.13672801852226257, -0.608343243598938, -0.17413079738616943, 1.0365875959396362, -0.11815247684717178, 0.08323044329881668, -0.03153049573302269]} +{"t": 23.9249, "q": [-0.36565500497817993, -0.01022142544388771, 0.006334366742521524, 0.6124844551086426, -0.2826642692089081, 0.0028035042341798544, -0.3663708567619324, 0.00818123109638691, -0.0030131766106933355, 0.6384257674217224, -0.3327596187591553, -0.012708131223917007, -0.013646341860294342, 0.050876814872026443, -0.03860987350344658, -3.0507044792175293, 2.2471261024475098, 1.8996914625167847, 0.43448808789253235, -0.13465476036071777, -0.09002549946308136, 0.02004960924386978, 0.137794628739357, -0.6055868864059448, -0.17408286035060883, 1.0367313623428345, -0.11811652034521103, 0.08321846276521683, -0.03151851147413254]} +{"t": 23.9416, "q": [-0.36564648151397705, -0.010238470509648323, 0.006374542135745287, 0.6125015020370483, -0.28262677788734436, 0.0028254047501832247, -0.3664390444755554, 0.008215319365262985, -0.003026568330824375, 0.6385706067085266, -0.3327554762363434, -0.01272994838654995, -0.013592774048447609, 0.05094481259584427, -0.03853795677423477, -3.0507044792175293, 2.247162103652954, 1.8995596170425415, 0.4344521462917328, -0.13466674089431763, -0.0900135189294815, 0.02004960924386978, 0.13890916109085083, -0.6025189161300659, -0.1732918918132782, 1.036851167678833, -0.11806859076023102, 0.08321846276521683, -0.03147057443857193]} +{"t": 23.9584, "q": [-0.36565500497817993, -0.010229947976768017, 0.006374542135745287, 0.6124844551086426, -0.2826143205165863, 0.0028182626701891422, -0.3664475679397583, 0.008300540037453175, -0.003026568330824375, 0.6385961771011353, -0.3327349126338959, -0.012722890824079514, -0.013606165535748005, 0.05099767819046974, -0.03847547620534897, -3.050692319869995, 2.247174024581909, 1.8995835781097412, 0.434404194355011, -0.13471467792987823, -0.09002549946308136, 0.02004960924386978, 0.1396401971578598, -0.5992711782455444, -0.1732918918132782, 1.0370908975601196, -0.11808057129383087, 0.08321846276521683, -0.03147057443857193]} +{"t": 23.9751, "q": [-0.36564648151397705, -0.010229947976768017, 0.006414717994630337, 0.6124759316444397, -0.282601922750473, 0.002796678803861141, -0.36642199754714966, 0.00848802737891674, -0.0030399602837860584, 0.6386728882789612, -0.3327431380748749, -0.012722817249596119, -0.013539206236600876, 0.05101277679204941, -0.03845621645450592, -3.0507164001464844, 2.2471022605895996, 1.8995596170425415, 0.43446412682533264, -0.13469070196151733, -0.0900135189294815, 0.02004960924386978, 0.14020344614982605, -0.595568060874939, -0.17342372238636017, 1.0371267795562744, -0.11809255182743073, 0.08323044329881668, -0.03148255869746208]} +{"t": 23.9918, "q": [-0.3656294345855713, -0.01022142544388771, 0.006441501900553703, 0.6124844551086426, -0.28258100152015686, 0.002832933561876416, -0.3663538098335266, 0.008743690326809883, -0.0030801359098404646, 0.6387410759925842, -0.3327307105064392, -0.012759227305650711, -0.013472246937453747, 0.05098235607147217, -0.0384356826543808, -3.0507283210754395, 2.2471022605895996, 1.8995596170425415, 0.4345240294933319, -0.1347266584634781, -0.0899895504117012, 0.02004960924386978, 0.1404910683631897, -0.59175705909729, -0.1733398288488388, 1.0371267795562744, -0.11809255182743073, 0.08323044329881668, -0.031494542956352234]} +{"t": 24.0086, "q": [-0.365578293800354, -0.010212903842329979, 0.006441501900553703, 0.6125015020370483, -0.28258100152015686, 0.002832933561876416, -0.3661833703517914, 0.00908457487821579, -0.003066744189709425, 0.6387922167778015, -0.3327265679836273, -0.012766524218022823, -0.01344546303153038, 0.05094429478049278, -0.03840017691254616, -3.050764322280884, 2.247150182723999, 1.8995716571807861, 0.4344521462917328, -0.13469070196151733, -0.09000153094530106, 0.020061593502759933, 0.14065885543823242, -0.5879580974578857, -0.17332784831523895, 1.0371627807617188, -0.11809255182743073, 0.08321846276521683, -0.031494542956352234]} +{"t": 24.0253, "q": [-0.36560386419296265, -0.01022142544388771, 0.006521853152662516, 0.6125100255012512, -0.2825518250465393, 0.002854781225323677, -0.36605554819107056, 0.009152752347290516, -0.0031203117687255144, 0.638903021812439, -0.3327183723449707, -0.012752078473567963, -0.013365112245082855, 0.05094422027468681, -0.038380492478609085, -3.050764322280884, 2.247162103652954, 1.8995596170425415, 0.4343682527542114, -0.13469070196151733, -0.0900135189294815, 0.020073577761650085, 0.1408386081457138, -0.5843268632888794, -0.17319601774215698, 1.0372107028961182, -0.11809255182743073, 0.08321846276521683, -0.03145859017968178]} +{"t": 24.0422, "q": [-0.3655868172645569, -0.010246992111206055, 0.006642380263656378, 0.6125355958938599, -0.28253525495529175, 0.0028404267504811287, -0.36591067910194397, 0.009229451417922974, -0.003106919815763831, 0.6390478610992432, -0.33267703652381897, -0.01283960323780775, -0.013391895219683647, 0.05095178633928299, -0.03837578743696213, -3.050776243209839, 2.247174024581909, 1.8995956182479858, 0.43426039814949036, -0.1347266584634781, -0.0900135189294815, 0.02004960924386978, 0.14105433225631714, -0.5810192227363586, -0.17307618260383606, 1.0371867418289185, -0.11810453981161118, 0.08325441181659698, -0.03145859017968178]} +{"t": 24.0589, "q": [-0.3654930889606476, -0.010264036245644093, 0.006870042532682419, 0.6125355958938599, -0.282460480928421, 0.002826459240168333, -0.36551013588905334, 0.0093317162245512, -0.0031604873947799206, 0.6392949819564819, -0.3326483368873596, -0.012803544290363789, -0.013351719826459885, 0.050944145768880844, -0.03836081176996231, -3.050776243209839, 2.247174024581909, 1.8996195793151855, 0.43423640727996826, -0.13471467792987823, -0.09002549946308136, 0.020061593502759933, 0.1411861628293991, -0.5776276588439941, -0.17310014367103577, 1.0371867418289185, -0.11810453981161118, 0.08323044329881668, -0.03145859017968178]} +{"t": 24.0757, "q": [-0.36556127667427063, -0.010272558778524399, 0.007070920895785093, 0.6125525832176208, -0.282460480928421, 0.002826459240168333, -0.36487096548080444, 0.009442503564059734, -0.0034283252898603678, 0.6394824981689453, -0.33255746960639954, -0.012949592433869839, -0.013338328339159489, 0.05096647888422012, -0.038248270750045776, -3.050812244415283, 2.247174024581909, 1.8996315002441406, 0.4342483878135681, -0.13469070196151733, -0.0900135189294815, 0.02004960924386978, 0.14125806093215942, -0.5740324258804321, -0.17310014367103577, 1.0371748208999634, -0.11812850832939148, 0.08323044329881668, -0.03147057443857193]} +{"t": 24.0926, "q": [-0.3655271828174591, -0.010289601981639862, 0.007137880194932222, 0.6125441193580627, -0.28244808316230774, 0.0028048751410096884, -0.3648453950881958, 0.009612945839762688, -0.0035354604478925467, 0.6395506858825684, -0.33254945278167725, -0.012862528674304485, -0.013284760527312756, 0.0509735643863678, -0.03811562433838844, -3.050776243209839, 2.247162103652954, 1.8995716571807861, 0.43421244621276855, -0.1347266584634781, -0.09002549946308136, 0.020061593502759933, 0.1413659155368805, -0.5705450177192688, -0.17314808070659637, 1.0371627807617188, -0.11811652034521103, 0.08323044329881668, -0.03147057443857193]} +{"t": 24.1093, "q": [-0.36550161242485046, -0.010289601981639862, 0.007204839959740639, 0.6125355958938599, -0.28244391083717346, 0.002812122693285346, -0.364785760641098, 0.009817477315664291, -0.0036425956059247255, 0.6395677328109741, -0.33254945278167725, -0.012862528674304485, -0.01327136904001236, 0.05098113417625427, -0.03811091557145119, -3.0507402420043945, 2.247150182723999, 1.8995236158370972, 0.4342723786830902, -0.13471467792987823, -0.0900135189294815, 0.02004960924386978, 0.1414857655763626, -0.5671654343605042, -0.17316007614135742, 1.0371508598327637, -0.11811652034521103, 0.08323044329881668, -0.03147057443857193]} +{"t": 24.126, "q": [-0.36542490124702454, -0.010315168648958206, 0.007245015352964401, 0.6125185489654541, -0.28244391083717346, 0.002812122693285346, -0.3646664321422577, 0.010260626673698425, -0.0037899063900113106, 0.6396018266677856, -0.33254948258399963, -0.01284800935536623, -0.013164233416318893, 0.05100387707352638, -0.038106635212898254, -3.0507283210754395, 2.2470781803131104, 1.8994637727737427, 0.4342963397502899, -0.1347266584634781, -0.09000153094530106, 0.02004960924386978, 0.14156965911388397, -0.5638697743415833, -0.17313610017299652, 1.0371267795562744, -0.11812850832939148, 0.08321846276521683, -0.03145859017968178]} +{"t": 24.1428, "q": [-0.365348219871521, -0.010289601981639862, 0.007338759023696184, 0.612527072429657, -0.282460480928421, 0.002826459240168333, -0.3645641803741455, 0.01124919205904007, -0.003696163184940815, 0.6395933032035828, -0.3325659930706024, -0.012833323329687119, -0.013057098723948002, 0.05103418231010437, -0.03809764236211777, -3.050692319869995, 2.2470901012420654, 1.8994637727737427, 0.4343203008174896, -0.1347266584634781, -0.09002549946308136, 0.02004960924386978, 0.14161759614944458, -0.5609456300735474, -0.17313610017299652, 1.0371508598327637, -0.11811652034521103, 0.08321846276521683, -0.03145859017968178]} +{"t": 24.1595, "q": [-0.3652970790863037, -0.010289601981639862, 0.00739232636988163, 0.6125355958938599, -0.282460480928421, 0.002826459240168333, -0.3644278347492218, 0.012374111451208591, -0.0035086767747998238, 0.639576256275177, -0.3325825035572052, -0.01280413568019867, -0.012896395288407803, 0.05110233277082443, -0.0380651094019413, -3.050692319869995, 2.2471022605895996, 1.899511694908142, 0.4342723786830902, -0.13470269739627838, -0.0900135189294815, 0.02004960924386978, 0.1416415572166443, -0.5579975247383118, -0.17312411963939667, 1.0371267795562744, -0.11811652034521103, 0.08320647478103638, -0.03145859017968178]} +{"t": 24.1762, "q": [-0.36532264947891235, -0.010272558778524399, 0.00743250222876668, 0.612527072429657, -0.28248128294944763, 0.002819106448441744, -0.3643937408924103, 0.01236558984965086, -0.003481892868876457, 0.6395592093467712, -0.3325783610343933, -0.012811432592570782, -0.012708908878266811, 0.05115531012415886, -0.03803214803338051, -3.0507044792175293, 2.2471022605895996, 1.899439811706543, 0.4342483878135681, -0.13469070196151733, -0.0900135189294815, 0.02004960924386978, 0.14165353775024414, -0.554629921913147, -0.17320801317691803, 1.0371508598327637, -0.11815247684717178, 0.08320647478103638, -0.03148255869746208]} +{"t": 24.193, "q": [-0.36528855562210083, -0.010255513712763786, 0.007365542463958263, 0.6125185489654541, -0.28248128294944763, 0.002819106448441744, -0.3643511235713959, 0.012374111451208591, -0.0034551091957837343, 0.6395592093467712, -0.3326031565666199, -0.01276763342320919, -0.012628557160496712, 0.05115531012415886, -0.03803214803338051, -3.0507164001464844, 2.2470901012420654, 1.8994637727737427, 0.4342483878135681, -0.1347266584634781, -0.0900135189294815, 0.02004960924386978, 0.14167751371860504, -0.5513342618942261, -0.17314808070659637, 1.0371627807617188, -0.11811652034521103, 0.08323044329881668, -0.03147057443857193]} +{"t": 24.2097, "q": [-0.36528003215789795, -0.010238470509648323, 0.007311975117772818, 0.6125355958938599, -0.28248128294944763, 0.002819106448441744, -0.3642914593219757, 0.012399678118526936, -0.0034283252898603678, 0.639576256275177, -0.33261147141456604, -0.012738519348204136, -0.012494638562202454, 0.05116291344165802, -0.03803728148341179, -3.0507164001464844, 2.2470901012420654, 1.899451732635498, 0.4342723786830902, -0.13471467792987823, -0.0900135189294815, 0.020061593502759933, 0.1417134702205658, -0.5478468537330627, -0.17313610017299652, 1.0371748208999634, -0.11809255182743073, 0.08321846276521683, -0.03148255869746208]} +{"t": 24.2264, "q": [-0.3653056025505066, -0.010238470509648323, 0.0072584073059260845, 0.6124674081802368, -0.28248128294944763, 0.002819106448441744, -0.3642999827861786, 0.012382633984088898, -0.0034015413839370012, 0.6395592093467712, -0.33261141180992126, -0.012753039598464966, -0.012360719963908195, 0.05120835825800896, -0.03801887109875679, -3.050692319869995, 2.2471022605895996, 1.8993918895721436, 0.4342723786830902, -0.13473863899707794, -0.0900135189294815, 0.020061593502759933, 0.14174941182136536, -0.5441557168960571, -0.17310014367103577, 1.0371867418289185, -0.11811652034521103, 0.08321846276521683, -0.03148255869746208]} +{"t": 24.2432, "q": [-0.36528003215789795, -0.010204381309449673, 0.007204839959740639, 0.6124162673950195, -0.2824980318546295, 0.002790099009871483, -0.36430850625038147, 0.01239115558564663, -0.0034149333368986845, 0.6395506858825684, -0.3326403498649597, -0.012701943516731262, -0.012173233553767204, 0.0512612946331501, -0.03797607123851776, -3.0506443977355957, 2.2471022605895996, 1.8992840051651, 0.434176504611969, -0.13473863899707794, -0.0900135189294815, 0.02004960924386978, 0.1417134702205658, -0.5402249097824097, -0.17305220663547516, 1.0372107028961182, -0.11809255182743073, 0.08321846276521683, -0.03148255869746208]} +{"t": 24.2599, "q": [-0.36528003215789795, -0.01022142544388771, 0.007151272147893906, 0.6123395562171936, -0.2824981212615967, 0.0027612149715423584, -0.36431702971458435, 0.012416722252964973, -0.003468500915914774, 0.6395251154899597, -0.3326403498649597, -0.012701943516731262, -0.011892003007233143, 0.051382455974817276, -0.03792041912674904, -3.050536632537842, 2.2471022605895996, 1.8992000818252563, 0.434176504611969, -0.13471467792987823, -0.0900135189294815, 0.02004960924386978, 0.141809344291687, -0.5357188582420349, -0.17290839552879333, 1.0372346639633179, -0.11809255182743073, 0.08321846276521683, -0.031506527215242386]} +{"t": 24.2768, "q": [-0.3653141260147095, -0.010212903842329979, 0.007124488707631826, 0.6122969388961792, -0.2824980318546295, 0.002790099009871483, -0.36431702971458435, 0.012433766387403011, -0.0034283252898603678, 0.6395336389541626, -0.3326526880264282, -0.01269457209855318, -0.011503638699650764, 0.05157165229320526, -0.03780270740389824, -3.0504767894744873, 2.2471261024475098, 1.8990323543548584, 0.434176504611969, -0.13470269739627838, -0.0900135189294815, 0.02004960924386978, 0.14207299053668976, -0.5309850573539734, -0.17288443446159363, 1.0372346639633179, -0.11805660277605057, 0.08323044329881668, -0.031494542956352234]} +{"t": 24.2935, "q": [-0.3652544617652893, -0.010212903842329979, 0.007137880194932222, 0.6122457981109619, -0.28250637650489807, 0.002775604138150811, -0.3643511235713959, 0.012425243854522705, -0.0034015413839370012, 0.639508068561554, -0.3326609134674072, -0.012694498524069786, -0.010887610726058483, 0.0517609603703022, -0.03771451860666275, -3.0504047870635986, 2.2471022605895996, 1.8990442752838135, 0.4342004656791687, -0.13473863899707794, -0.0900135189294815, 0.02004960924386978, 0.1425643414258957, -0.5257479548454285, -0.1727166473865509, 1.0372467041015625, -0.11803263425827026, 0.08321846276521683, -0.031506527215242386]} +{"t": 24.3102, "q": [-0.3652459383010864, -0.01022142544388771, 0.0071914480067789555, 0.6121435761451721, -0.28250226378440857, 0.002768409438431263, -0.36435964703559875, 0.012433766387403011, -0.0034283252898603678, 0.6395165920257568, -0.3326568305492401, -0.012687275186181068, -0.010057313367724419, 0.052078887820243835, -0.03753644600510597, -3.0503928661346436, 2.2471022605895996, 1.8988884687423706, 0.43414053320884705, -0.13478657603263855, -0.09002549946308136, 0.02004960924386978, 0.14330735802650452, -0.52001953125, -0.172464981675148, 1.0372706651687622, -0.11805660277605057, 0.08323044329881668, -0.031506527215242386]} +{"t": 24.327, "q": [-0.36528003215789795, -0.01022142544388771, 0.007231623865664005, 0.612083911895752, -0.2825022041797638, 0.002782851457595825, -0.36436817049980164, 0.012374111451208591, -0.0034149333368986845, 0.6394824981689453, -0.3326898217201233, -0.01265794038772583, -0.00933415163308382, 0.05243472754955292, -0.03735451400279999, -3.050344944000244, 2.2471022605895996, 1.898864507675171, 0.43414053320884705, -0.1347266584634781, -0.0900135189294815, 0.02004960924386978, 0.14396649599075317, -0.5145307183265686, -0.17233316600322723, 1.0375343561172485, -0.11804462224245071, 0.08321846276521683, -0.031506527215242386]} +{"t": 24.3437, "q": [-0.3653567433357239, -0.010229947976768017, 0.007231623865664005, 0.6120157241821289, -0.2825062870979309, 0.0028044881764799356, -0.3643766939640045, 0.012357067316770554, -0.003347973804920912, 0.6394398808479309, -0.3326939046382904, -0.012665162794291973, -0.00847707036882639, 0.052888669073581696, -0.037082526832818985, -3.0501890182495117, 2.2471022605895996, 1.898768663406372, 0.434176504611969, -0.1347266584634781, -0.09002549946308136, 0.020061593502759933, 0.14442190527915955, -0.5088262557983398, -0.17220133543014526, 1.0380616188049316, -0.11802065372467041, 0.08323044329881668, -0.031506527215242386]} +{"t": 24.3604, "q": [-0.3653056025505066, -0.01022142544388771, 0.007245015352964401, 0.6119304895401001, -0.2825189530849457, 0.002753862179815769, -0.3643766939640045, 0.01236558984965086, -0.003361365757882595, 0.639431357383728, -0.3326980471611023, -0.01265786588191986, -0.007633380591869354, 0.053251758217811584, -0.036857180297374725, -3.050081253051758, 2.2471022605895996, 1.8986728191375732, 0.43414053320884705, -0.13478657603263855, -0.09000153094530106, 0.02004960924386978, 0.14486531913280487, -0.5031576752662659, -0.1720695048570633, 1.03855299949646, -0.1179966852068901, 0.08321846276521683, -0.031494542956352234]} +{"t": 24.3772, "q": [-0.3652970790863037, -0.010229947976768017, 0.007231623865664005, 0.6118367314338684, -0.28252720832824707, 0.002768251346424222, -0.36441078782081604, 0.012374111451208591, -0.0033747577108442783, 0.6394057869911194, -0.3327309787273407, -0.01264303270727396, -0.006829866673797369, 0.053561896085739136, -0.0366646982729435, -3.0500333309173584, 2.2471261024475098, 1.8984930515289307, 0.4337570369243622, -0.13473863899707794, -0.09002549946308136, 0.02004960924386978, 0.1452368199825287, -0.49753710627555847, -0.17210546135902405, 1.0387446880340576, -0.1179966852068901, 0.08323044329881668, -0.031506527215242386]} +{"t": 24.3939, "q": [-0.36533117294311523, -0.01022142544388771, 0.0071914480067789555, 0.6118111610412598, -0.28252720832824707, 0.002768251346424222, -0.3644363582134247, 0.012382633984088898, -0.003334582084789872, 0.6393716931343079, -0.3327473998069763, -0.012657404877245426, -0.006320974789559841, 0.05386438965797424, -0.036457255482673645, -3.049877405166626, 2.247162103652954, 1.8983012437820435, 0.43356528878211975, -0.134750634431839, -0.09002549946308136, 0.02003762498497963, 0.1455603986978531, -0.49172475934028625, -0.17200958728790283, 1.038780689239502, -0.1179966852068901, 0.08323044329881668, -0.031494542956352234]} +{"t": 24.4109, "q": [-0.36537379026412964, -0.010212903842329979, 0.00709770480170846, 0.6117941737174988, -0.28253135085105896, 0.0027754639741033316, -0.3644448518753052, 0.01236558984965086, -0.003321190131828189, 0.639363169670105, -0.33275970816612244, -0.012679091654717922, -0.005892434157431126, 0.05422748997807503, -0.03623182326555252, -3.049769639968872, 2.247174024581909, 1.8980616331100464, 0.43356528878211975, -0.1347266584634781, -0.09002549946308136, 0.020061593502759933, 0.14569222927093506, -0.48651161789894104, -0.17193767428398132, 1.0388286113739014, -0.1179966852068901, 0.08323044329881668, -0.031494542956352234]} +{"t": 24.4276, "q": [-0.365390807390213, -0.010229947976768017, 0.0070173535495996475, 0.611777126789093, -0.28253138065338135, 0.002761004026979208, -0.3644704222679138, 0.012374111451208591, -0.0032944062259048223, 0.6393375992774963, -0.33278438448905945, -0.012678869999945164, -0.005504068918526173, 0.05460570007562637, -0.03598697483539581, -3.049625873565674, 2.2471859455108643, 1.8977739810943604, 0.43354132771492004, -0.1347985714673996, -0.0900135189294815, 0.020061593502759933, 0.14578810334205627, -0.48061537742614746, -0.17190173268318176, 1.0388765335083008, -0.1179966852068901, 0.08321846276521683, -0.031506527215242386]} +{"t": 24.4443, "q": [-0.3652629852294922, -0.010204381309449673, 0.0070173535495996475, 0.6117430329322815, -0.282514750957489, 0.002761109499260783, -0.36449599266052246, 0.012382633984088898, -0.0033077981788665056, 0.6393205523490906, -0.33277198672294617, -0.0127007607370615, -0.005115704145282507, 0.05490822345018387, -0.03580932691693306, -3.049553871154785, 2.2471859455108643, 1.8976061344146729, 0.43356528878211975, -0.1347985714673996, -0.09002549946308136, 0.02004960924386978, 0.14587199687957764, -0.47420379519462585, -0.1718418002128601, 1.0389244556427002, -0.11798469722270966, 0.08321846276521683, -0.03151851147413254]} +{"t": 24.4611, "q": [-0.36532264947891235, -0.010187337175011635, 0.0070173535495996475, 0.6117345094680786, -0.2825064957141876, 0.0027467200998216867, -0.3645556569099426, 0.012399678118526936, -0.0032944062259048223, 0.6393375992774963, -0.3327678442001343, -0.012708057649433613, -0.004646987654268742, 0.05532406270503998, -0.035551875829696655, -3.0495657920837402, 2.2472100257873535, 1.8975223302841187, 0.43351736664772034, -0.13476261496543884, -0.0900135189294815, 0.02004960924386978, 0.1459079384803772, -0.46811583638191223, -0.17150624096393585, 1.0392600297927856, -0.11798469722270966, 0.08321846276521683, -0.03151851147413254]} +{"t": 24.4778, "q": [-0.3653056025505066, -0.010204381309449673, 0.007044136989861727, 0.6116918921470642, -0.28249409794807434, 0.0027251362334936857, -0.36458122730255127, 0.012425243854522705, -0.0033077981788665056, 0.6393375992774963, -0.3327678442001343, -0.012708057649433613, -0.004057744517922401, 0.05572473257780075, -0.03529396653175354, -3.0495898723602295, 2.2472100257873535, 1.8973904848098755, 0.433433473110199, -0.1348465085029602, -0.0900135189294815, 0.02003762498497963, 0.1459319144487381, -0.4623394310474396, -0.17141036689281464, 1.0397993326187134, -0.1179966852068901, 0.08320647478103638, -0.031506527215242386]} +{"t": 24.4945, "q": [-0.3653056025505066, -0.010187337175011635, 0.007070920895785093, 0.611632227897644, -0.28247323632240295, 0.002746913116425276, -0.3646238446235657, 0.012433766387403011, -0.0032944062259048223, 0.6393461227416992, -0.3327596187591553, -0.012708131223917007, -0.0024373249616473913, 0.0561329685151577, -0.03503137826919556, -3.0495779514312744, 2.247246026992798, 1.8973784446716309, 0.433433473110199, -0.1347745954990387, -0.0900135189294815, 0.02004960924386978, 0.1459319144487381, -0.4560237526893616, -0.17138640582561493, 1.0408419370651245, -0.11798469722270966, 0.08321846276521683, -0.03153049573302269]} +{"t": 24.5115, "q": [-0.36528855562210083, -0.010144727304577827, 0.0071914480067789555, 0.6116492748260498, -0.2824815511703491, 0.0027468781918287277, -0.36467495560646057, 0.012553076259791851, -0.0032676225528120995, 0.639363169670105, -0.3327513635158539, -0.012722725048661232, -0.0002410541201243177, 0.05649585649371147, -0.03479670733213425, -3.0497934818267822, 2.247269868850708, 1.8973544836044312, 0.4333495795726776, -0.13481055200099945, -0.09000153094530106, 0.02004960924386978, 0.1462315171957016, -0.4498039186000824, -0.1709190160036087, 1.0418965816497803, -0.11796072870492935, 0.08319449424743652, -0.03153049573302269]} +{"t": 24.5282, "q": [-0.3652544617652893, -0.010110638104379177, 0.00739232636988163, 0.611632227897644, -0.28247323632240295, 0.002746913116425276, -0.364785760641098, 0.012706474401056767, -0.003334582084789872, 0.6393546462059021, -0.3327431380748749, -0.012722817249596119, 0.0011383111122995615, 0.05673765018582344, -0.0346074253320694, -3.049973249435425, 2.2473537921905518, 1.8974504470825195, 0.43296608328819275, -0.13478657603263855, -0.09002549946308136, 0.02004960924386978, 0.1468067616224289, -0.44389569759368896, -0.17045164108276367, 1.0433106422424316, -0.11796072870492935, 0.08319449424743652, -0.03154247999191284]} +{"t": 24.5449, "q": [-0.3652970790863037, -0.01009359396994114, 0.0074860695749521255, 0.6115299463272095, -0.28247737884521484, 0.0027541257441043854, -0.36481982469558716, 0.012706474401056767, -0.0033077981788665056, 0.6393716931343079, -0.332747220993042, -0.012730039656162262, 0.002048959955573082, 0.05697949230670929, -0.03444797173142433, -3.049997329711914, 2.2473299503326416, 1.8974264860153198, 0.4325466454029083, -0.13478657603263855, -0.09006145596504211, 0.020061593502759933, 0.14711834490299225, -0.43713659048080444, -0.1702478975057602, 1.0452641248703003, -0.1179727166891098, 0.08319449424743652, -0.031554464250802994]} +{"t": 24.5617, "q": [-0.36527150869369507, -0.01010211557149887, 0.007512853480875492, 0.6114788055419922, -0.28248143196105957, 0.002775780390948057, -0.36481982469558716, 0.012723518535494804, -0.003321190131828189, 0.6393802165985107, -0.3327348828315735, -0.012737411074340343, 0.002464108867570758, 0.05719112977385521, -0.034327104687690735, -3.0499134063720703, 2.2473299503326416, 1.8974024057388306, 0.43248671293258667, -0.1348225325345993, -0.09004946798086166, 0.02003762498497963, 0.1474059671163559, -0.430629163980484, -0.16978052258491516, 1.0473613739013672, -0.11796072870492935, 0.08321846276521683, -0.031566448509693146]} +{"t": 24.5784, "q": [-0.36527150869369507, -0.010110638104379177, 0.007553029339760542, 0.6114788055419922, -0.28248563408851624, 0.002768514910712838, -0.3648368716239929, 0.012706474401056767, -0.0033881496638059616, 0.6393716931343079, -0.3327431082725525, -0.012737336568534374, 0.00287925754673779, 0.057485803961753845, -0.034135278314352036, -3.0498414039611816, 2.2473537921905518, 1.8973065614700317, 0.43248671293258667, -0.1347985714673996, -0.09002549946308136, 0.02004960924386978, 0.1474778801202774, -0.42402586340904236, -0.16793495416641235, 1.0498300790786743, -0.11796072870492935, 0.08321846276521683, -0.031554464250802994]} +{"t": 24.5951, "q": [-0.3653056025505066, -0.010110638104379177, 0.007526245433837175, 0.6114702820777893, -0.28247737884521484, 0.0027541257441043854, -0.36481133103370667, 0.012706474401056767, -0.0033747577108442783, 0.6393716931343079, -0.33271417021751404, -0.012788433581590652, 0.0030399602837860584, 0.05768200382590294, -0.03395506739616394, -3.049757719039917, 2.247365713119507, 1.897222638130188, 0.4324507713317871, -0.13478657603263855, -0.09002549946308136, 0.02004960924386978, 0.14786137640476227, -0.4169311821460724, -0.16656874120235443, 1.0517116785049438, -0.11796072870492935, 0.08320647478103638, -0.031566448509693146]} +{"t": 24.6118, "q": [-0.3653056025505066, -0.010127682238817215, 0.007526245433837175, 0.6114788055419922, -0.2824690043926239, 0.0027686383109539747, -0.36481133103370667, 0.012749084271490574, -0.003481892868876457, 0.6393716931343079, -0.33270999789237976, -0.01281024981290102, 0.003133703488856554, 0.05781765282154083, -0.03379257395863533, -3.049625873565674, 2.2474136352539062, 1.8971507549285889, 0.4324268102645874, -0.13478657603263855, -0.0900135189294815, 0.02004960924386978, 0.14787335693836212, -0.41010019183158875, -0.16549016535282135, 1.0541443824768066, -0.11796072870492935, 0.08319449424743652, -0.031566448509693146]} +{"t": 24.6286, "q": [-0.3652970790863037, -0.010136204771697521, 0.007512853480875492, 0.6114788055419922, -0.28248143196105957, 0.002775780390948057, -0.3648028075695038, 0.012766129337251186, -0.0034283252898603678, 0.6393887400627136, -0.33270591497421265, -0.012803027406334877, 0.0032274469267576933, 0.057900216430425644, -0.033623505383729935, -3.049661636352539, 2.24747371673584, 1.8970309495925903, 0.4322110712528229, -0.13478657603263855, -0.0900135189294815, 0.020061593502759933, 0.14783740043640137, -0.403017520904541, -0.16467523574829102, 1.057020664215088, -0.1179727166891098, 0.08319449424743652, -0.031554464250802994]} +{"t": 24.6454, "q": [-0.3653056025505066, -0.010119160637259483, 0.007566420827060938, 0.6114702820777893, -0.282464861869812, 0.002761425916105509, -0.364785760641098, 0.01275760680437088, -0.0034952848218381405, 0.6394057869911194, -0.33270183205604553, -0.01279580406844616, 0.0032676225528120995, 0.05799071490764618, -0.03352821618318558, -3.049637794494629, 2.2474377155303955, 1.8969590663909912, 0.4319594204425812, -0.13483451306819916, -0.09002549946308136, 0.020061593502759933, 0.1480291485786438, -0.39576706290245056, -0.16471119225025177, 1.0592018365859985, -0.1179727166891098, 0.08318250626325607, -0.03159041702747345]} +{"t": 24.6621, "q": [-0.36527150869369507, -0.010127682238817215, 0.007619988638907671, 0.6114788055419922, -0.2824690341949463, 0.002754178596660495, -0.364785760641098, 0.012766129337251186, -0.0034952848218381405, 0.6393887400627136, -0.33268943428993225, -0.012817694805562496, 0.00321405497379601, 0.058028098195791245, -0.03341645747423172, -3.049661636352539, 2.2474496364593506, 1.8968751430511475, 0.4319833815097809, -0.1347985714673996, -0.09002549946308136, 0.02003762498497963, 0.14812502264976501, -0.3888881206512451, -0.16468721628189087, 1.0612510442733765, -0.1179727166891098, 0.08321846276521683, -0.03159041702747345]} +{"t": 24.6788, "q": [-0.3652629852294922, -0.010119160637259483, 0.007780691608786583, 0.6114788055419922, -0.2824690043926239, 0.0027686383109539747, -0.36476871371269226, 0.012766129337251186, -0.0034952848218381405, 0.6394057869911194, -0.33269768953323364, -0.012803100980818272, 0.003133703488856554, 0.05813349410891533, -0.033262643963098526, -3.0497336387634277, 2.2474377155303955, 1.8968632221221924, 0.4319594204425812, -0.1347745954990387, -0.09002549946308136, 0.02003762498497963, 0.14804112911224365, -0.3820211589336395, -0.1646272987127304, 1.0639235973358154, -0.11793676018714905, 0.08319449424743652, -0.03159041702747345]} +{"t": 24.6956, "q": [-0.3652118444442749, -0.010136204771697521, 0.00798156950622797, 0.6114788055419922, -0.28248143196105957, 0.002775780390948057, -0.36476871371269226, 0.012749084271490574, -0.0035354604478925467, 0.6394398808479309, -0.33270591497421265, -0.012803027406334877, 0.0030131766106933355, 0.0582316517829895, -0.033182259649038315, -3.049853563308716, 2.2474377155303955, 1.8968991041183472, 0.4318994879722595, -0.1347985714673996, -0.09002549946308136, 0.020061593502759933, 0.1480291485786438, -0.3753219544887543, -0.16466325521469116, 1.0666320323944092, -0.11793676018714905, 0.08317052572965622, -0.03165033832192421]} +{"t": 24.7123, "q": [-0.3652118444442749, -0.010136204771697521, 0.008128880523145199, 0.6114702820777893, -0.2824814021587372, 0.0027902224101126194, -0.3647516667842865, 0.012766129337251186, -0.0034952848218381405, 0.6394484043121338, -0.3326853811740875, -0.012795952148735523, 0.002959609031677246, 0.05829944461584091, -0.03309109807014465, -3.0499253273010254, 2.2474377155303955, 1.8969230651855469, 0.4318994879722595, -0.13481055200099945, -0.09002549946308136, 0.020013656467199326, 0.14793327450752258, -0.3686707317829132, -0.16461531817913055, 1.0697718858718872, -0.11796072870492935, 0.08320647478103638, -0.031626369804143906]} +{"t": 24.7291, "q": [-0.36522889137268066, -0.010136204771697521, 0.00832975935190916, 0.6114702820777893, -0.28248557448387146, 0.0027829750906676054, -0.364717572927475, 0.012766129337251186, -0.0034283252898603678, 0.639431357383728, -0.3326895534992218, -0.012759597040712833, 0.0029060414526611567, 0.05838234722614288, -0.03299058973789215, -3.0500452518463135, 2.2474136352539062, 1.8969470262527466, 0.4318755269050598, -0.13478657603263855, -0.09003748744726181, 0.02004960924386978, 0.1480051875114441, -0.3622112274169922, -0.16459134221076965, 1.0726720094680786, -0.11796072870492935, 0.08321846276521683, -0.031626369804143906]} +{"t": 24.7458, "q": [-0.3652544617652893, -0.010127682238817215, 0.008530637249350548, 0.6114276647567749, -0.28249382972717285, 0.002797364257276058, -0.36469200253486633, 0.012749084271490574, -0.0034149333368986845, 0.6394484043121338, -0.3326854407787323, -0.012766893953084946, 0.002758730435743928, 0.058404795825481415, -0.032927464693784714, -3.050021171569824, 2.2474136352539062, 1.8969470262527466, 0.4318515658378601, -0.13476261496543884, -0.09003748744726181, 0.02003762498497963, 0.14804112911224365, -0.3557756841182709, -0.16463927924633026, 1.0754643678665161, -0.11793676018714905, 0.08321846276521683, -0.031674306839704514]} +{"t": 24.7625, "q": [-0.3652203679084778, -0.010127682238817215, 0.008704732172191143, 0.6114276647567749, -0.2824896574020386, 0.002804611576721072, -0.36467495560646057, 0.012749084271490574, -0.0034015413839370012, 0.639431357383728, -0.33267316222190857, -0.012745224870741367, 0.0027453387156128883, 0.05841958895325661, -0.03284936398267746, -3.050021171569824, 2.2474377155303955, 1.8969470262527466, 0.43181559443473816, -0.13473863899707794, -0.09002549946308136, 0.02004960924386978, 0.1480051875114441, -0.34916040301322937, -0.16463927924633026, 1.0787240266799927, -0.1179247796535492, 0.08323044329881668, -0.03166232258081436]} +{"t": 24.7794, "q": [-0.36523741483688354, -0.010136204771697521, 0.008825259283185005, 0.6114361882209778, -0.28250208497047424, 0.0028117536567151546, -0.36467495560646057, 0.012723518535494804, -0.0033747577108442783, 0.639431357383728, -0.33267736434936523, -0.012708870694041252, 0.0026649872306734324, 0.05835089460015297, -0.032744091004133224, -3.0500571727752686, 2.2474377155303955, 1.8969470262527466, 0.43181559443473816, -0.13476261496543884, -0.09002549946308136, 0.02004960924386978, 0.14817295968532562, -0.34242525696754456, -0.16461531817913055, 1.0810489654541016, -0.1179487481713295, 0.08321846276521683, -0.03172224387526512]} +{"t": 24.7962, "q": [-0.3652544617652893, -0.010144727304577827, 0.008878827095031738, 0.6114361882209778, -0.28250622749328613, 0.0028189660515636206, -0.36468347907066345, 0.012706474401056767, -0.003347973804920912, 0.639431357383728, -0.33268558979034424, -0.012708796188235283, 0.002611419651657343, 0.058342862874269485, -0.03265060484409332, -3.0500333309173584, 2.2474377155303955, 1.8969111442565918, 0.4318036139011383, -0.13476261496543884, -0.0900135189294815, 0.020061593502759933, 0.14822089672088623, -0.33624139428138733, -0.16471119225025177, 1.0829185247421265, -0.11796072870492935, 0.08321846276521683, -0.03172224387526512]} +{"t": 24.8129, "q": [-0.3652459383010864, -0.010144727304577827, 0.008945786394178867, 0.611419141292572, -0.28250205516815186, 0.0028262136038392782, -0.36467495560646057, 0.012680907733738422, -0.0032944062259048223, 0.6394057869911194, -0.3326815366744995, -0.01268705353140831, 0.002624811604619026, 0.05831166356801987, -0.03247307986021042, -3.0500571727752686, 2.2474377155303955, 1.8969230651855469, 0.43176767230033875, -0.13476261496543884, -0.09002549946308136, 0.02004960924386978, 0.14814899861812592, -0.32984182238578796, -0.16471119225025177, 1.0847041606903076, -0.1179487481713295, 0.08321846276521683, -0.03175819665193558]} +{"t": 24.8297, "q": [-0.3652629852294922, -0.010153248906135559, 0.0089993542060256, 0.6114361882209778, -0.2825144827365875, 0.002833355451002717, -0.36467495560646057, 0.012714996002614498, -0.0032810145057737827, 0.6394143104553223, -0.3326733112335205, -0.01268712803721428, 0.0025980276986956596, 0.058257997035980225, -0.032348763197660446, -3.050081253051758, 2.2474136352539062, 1.8969230651855469, 0.43171972036361694, -0.13483451306819916, -0.09003748744726181, 0.020073577761650085, 0.14814899861812592, -0.3236100375652313, -0.16475912928581238, 1.086010456085205, -0.1179487481713295, 0.08320647478103638, -0.03178216516971588]} +{"t": 24.8464, "q": [-0.36523741483688354, -0.010170293040573597, 0.008959177881479263, 0.6114361882209778, -0.2825144827365875, 0.002833355451002717, -0.36468347907066345, 0.012706474401056767, -0.0032944062259048223, 0.6393802165985107, -0.3326691687107086, -0.012694424018263817, 0.002624811604619026, 0.0581970289349556, -0.0322781465947628, -3.050081253051758, 2.2474257946014404, 1.896887183189392, 0.4316238462924957, -0.1347745954990387, -0.09002549946308136, 0.02004960924386978, 0.14812502264976501, -0.3166831433773041, -0.16473515331745148, 1.0872927904129028, -0.11793676018714905, 0.08321846276521683, -0.03175819665193558]} +{"t": 24.8631, "q": [-0.36523741483688354, -0.010153248906135559, 0.008959177881479263, 0.6114361882209778, -0.2825227975845337, 0.0028332846704870462, -0.36468347907066345, 0.012706474401056767, -0.0032944062259048223, 0.6393716931343079, -0.3326815664768219, -0.012672534212470055, 0.0026783791836351156, 0.058174069970846176, -0.03223327547311783, -3.0500333309173584, 2.2474377155303955, 1.8968991041183472, 0.4314081370830536, -0.13478657603263855, -0.09002549946308136, 0.02004960924386978, 0.1479812115430832, -0.30992403626441956, -0.16471119225025177, 1.0886350870132446, -0.11796072870492935, 0.08324243128299713, -0.03179414942860603]} +{"t": 24.88, "q": [-0.36523741483688354, -0.010178815573453903, 0.008972570300102234, 0.6114361882209778, -0.28251442313194275, 0.0028477974701672792, -0.36467495560646057, 0.012689430266618729, -0.003321190131828189, 0.6393716931343079, -0.33267742395401, -0.012679831124842167, 0.002758730435743928, 0.058151211589574814, -0.03220801800489426, -3.050009250640869, 2.2474496364593506, 1.8969470262527466, 0.43104860186576843, -0.13473863899707794, -0.0900135189294815, 0.020073577761650085, 0.14776550233364105, -0.3031769394874573, -0.16469921171665192, 1.0902409553527832, -0.11793676018714905, 0.08319449424743652, -0.03179414942860603]} +{"t": 24.8967, "q": [-0.3652118444442749, -0.010195858776569366, 0.008959177881479263, 0.6114361882209778, -0.28251442313194275, 0.0028477974701672792, -0.36467495560646057, 0.012663863599300385, -0.003361365757882595, 0.6393375992774963, -0.3326691687107086, -0.012694424018263817, 0.002852473873645067, 0.058151114732027054, -0.032188404351472855, -3.0500333309173584, 2.2474496364593506, 1.8968991041183472, 0.43059322237968445, -0.13476261496543884, -0.09002549946308136, 0.02004960924386978, 0.14739398658275604, -0.2960582971572876, -0.16461531817913055, 1.0924100875854492, -0.11798469722270966, 0.08321846276521683, -0.031806133687496185]} +{"t": 24.9135, "q": [-0.36518630385398865, -0.01022142544388771, 0.008972570300102234, 0.6114447116851807, -0.28251442313194275, 0.0028477974701672792, -0.36467495560646057, 0.012655341066420078, -0.0033077981788665056, 0.6393205523490906, -0.3326733112335205, -0.01268712803721428, 0.003026568330824375, 0.058151062577962875, -0.032178595662117004, -3.050021171569824, 2.2474496364593506, 1.8968511819839478, 0.42994606494903564, -0.13478657603263855, -0.09002549946308136, 0.02004960924386978, 0.14716628193855286, -0.2893231511116028, -0.1646512746810913, 1.0945552587509155, -0.1179966852068901, 0.08323044329881668, -0.03181811794638634]} +{"t": 24.9302, "q": [-0.3651181161403656, -0.010255513712763786, 0.00898596178740263, 0.6114361882209778, -0.28251025080680847, 0.0028550447896122932, -0.36467495560646057, 0.01263829693198204, -0.003321190131828189, 0.6393290758132935, -0.3326610028743744, -0.012665440328419209, 0.0030533522367477417, 0.0581660233438015, -0.032139852643013, -3.050009250640869, 2.2474377155303955, 1.8967432975769043, 0.4293588399887085, -0.13476261496543884, -0.0900135189294815, 0.02004960924386978, 0.14698652923107147, -0.28283968567848206, -0.16468721628189087, 1.0968801975250244, -0.11798469722270966, 0.08321846276521683, -0.03185407072305679]} +{"t": 24.9469, "q": [-0.3651095926761627, -0.010238470509648323, 0.008972570300102234, 0.6114276647567749, -0.2825060784816742, 0.0028622921090573072, -0.36464086174964905, 0.012646819464862347, -0.003347973804920912, 0.6393375992774963, -0.3326610028743744, -0.012665440328419209, 0.003026568330824375, 0.05810520052909851, -0.03209865838289261, -3.0499253273010254, 2.24747371673584, 1.896467685699463, 0.42881953716278076, -0.13476261496543884, -0.09002549946308136, 0.02004960924386978, 0.14672286808490753, -0.27585288882255554, -0.16472317278385162, 1.1001039743423462, -0.1179487481713295, 0.08319449424743652, -0.03193796053528786]} +{"t": 24.9636, "q": [-0.3651522099971771, -0.010246992111206055, 0.00898596178740263, 0.6114361882209778, -0.2825019359588623, 0.0028550976421684027, -0.3646579086780548, 0.012646819464862347, -0.003361365757882595, 0.6393120288848877, -0.33267340064048767, -0.012643549591302872, 0.003093527862802148, 0.0580214187502861, -0.03201259300112724, -3.0498414039611816, 2.247509717941284, 1.8961920738220215, 0.42780089378356934, -0.13478657603263855, -0.09002549946308136, 0.02004960924386978, 0.1462075412273407, -0.26898592710494995, -0.16473515331745148, 1.103279709815979, -0.11796072870492935, 0.08320647478103638, -0.031985897570848465]} +{"t": 24.9804, "q": [-0.3651095926761627, -0.010264036245644093, 0.008972570300102234, 0.6114532351493835, -0.2825019359588623, 0.0028550976421684027, -0.36464086174964905, 0.012655341066420078, -0.0034015413839370012, 0.6393035054206848, -0.3326775133609772, -0.012636253610253334, 0.0032274469267576933, 0.05796819552779198, -0.031976547092199326, -3.049769639968872, 2.24749755859375, 1.8957725763320923, 0.4263627827167511, -0.1348225325345993, -0.0899655818939209, 0.02004960924386978, 0.14529675245285034, -0.2619631886482239, -0.16473515331745148, 1.1048976182937622, -0.1179487481713295, 0.08319449424743652, -0.03202185034751892]} +{"t": 24.9971, "q": [-0.36505845189094543, -0.010264036245644093, 0.008932393975555897, 0.6114532351493835, -0.2825019359588623, 0.0028550976421684027, -0.36459827423095703, 0.01263829693198204, -0.0034551091957837343, 0.6393035054206848, -0.33266928791999817, -0.012636327184736729, 0.0033747577108442783, 0.05791472643613815, -0.031891461461782455, -3.0497217178344727, 2.247509717941284, 1.894897699356079, 0.4240737855434418, -0.1348465085029602, -0.0899416133761406, 0.020073577761650085, 0.14439792931079865, -0.25446105003356934, -0.16468721628189087, 1.1070069074630737, -0.11796072870492935, 0.08319449424743652, -0.03206978738307953]} +{"t": 25.0138, "q": [-0.36505845189094543, -0.010272558778524399, 0.00898596178740263, 0.6114447116851807, -0.2825060784816742, 0.0028622921090573072, -0.36459827423095703, 0.012612731195986271, -0.0034149333368986845, 0.6393120288848877, -0.3326775133609772, -0.012636253610253334, 0.0035086767747998238, 0.05787661671638489, -0.031846120953559875, -3.0497097969055176, 2.247593402862549, 1.8934836387634277, 0.4216170310974121, -0.13483451306819916, -0.0899416133761406, 0.02004960924386978, 0.14375078678131104, -0.24764202535152435, -0.16466325521469116, 1.1088883876800537, -0.1179487481713295, 0.08320647478103638, -0.032045818865299225]} +{"t": 25.0306, "q": [-0.36505845189094543, -0.01028108038008213, 0.008959177881479263, 0.6114447116851807, -0.2825143337249756, 0.0028766815084964037, -0.3645641803741455, 0.012612731195986271, -0.003468500915914774, 0.6392694711685181, -0.33268582820892334, -0.012607120908796787, 0.003575636073946953, 0.05780059099197388, -0.03179468959569931, -3.049625873565674, 2.247593402862549, 1.8916500806808472, 0.41759032011032104, -0.13485848903656006, -0.08989367634057999, 0.020061593502759933, 0.14330735802650452, -0.2400919646024704, -0.16466325521469116, 1.1106740236282349, -0.1179966852068901, 0.08320647478103638, -0.03208177164196968]} +{"t": 25.0473, "q": [-0.3650414049625397, -0.010289601981639862, 0.008959177881479263, 0.6114447116851807, -0.2825060784816742, 0.0028622921090573072, -0.36450451612472534, 0.012612731195986271, -0.0034551091957837343, 0.6392268538475037, -0.33268579840660095, -0.01262165978550911, 0.003575636073946953, 0.05766374245285988, -0.03170211240649223, -3.049553871154785, 2.247617483139038, 1.889744520187378, 0.4124131500720978, -0.1348465085029602, -0.08989367634057999, 0.02004960924386978, 0.14304371178150177, -0.23270969092845917, -0.16466325521469116, 1.1126514673233032, -0.11800866574048996, 0.08318250626325607, -0.03208177164196968]} +{"t": 25.0641, "q": [-0.3650754988193512, -0.010298124514520168, 0.008959177881479263, 0.6114702820777893, -0.2825060784816742, 0.0028622921090573072, -0.36449599266052246, 0.012587164528667927, -0.003441717242822051, 0.6392268538475037, -0.33268997073173523, -0.01259982492774725, 0.0037497307639569044, 0.05752689763903618, -0.031609535217285156, -3.0494818687438965, 2.2476413249969482, 1.8879948854446411, 0.40697231888771057, -0.13473863899707794, -0.08991764485836029, 0.02004960924386978, 0.1428639441728592, -0.22608241438865662, -0.16468721628189087, 1.1148205995559692, -0.1179727166891098, 0.08319449424743652, -0.03206978738307953]} +{"t": 25.0808, "q": [-0.3650669753551483, -0.010332213714718819, 0.008892218582332134, 0.6114532351493835, -0.282493531703949, 0.002884034300222993, -0.3644448518753052, 0.012544553726911545, -0.00354885240085423, 0.6391586661338806, -0.3326858580112457, -0.012592601589858532, 0.004419325385242701, 0.0573597252368927, -0.03151607885956764, -3.049422025680542, 2.2476413249969482, 1.885825753211975, 0.40086033940315247, -0.13470269739627838, -0.08992962539196014, 0.02004960924386978, 0.14281600713729858, -0.21925139427185059, -0.16466325521469116, 1.1166541576385498, -0.11798469722270966, 0.08320647478103638, -0.03208177164196968]} +{"t": 25.0975, "q": [-0.3650840222835541, -0.010349256917834282, 0.008838650770485401, 0.6114788055419922, -0.282493531703949, 0.002884034300222993, -0.36441078782081604, 0.012518987990915775, -0.003669379511848092, 0.639133095741272, -0.3326982259750366, -0.012585231103003025, 0.005021960940212011, 0.05723046883940697, -0.0314287394285202, -3.0494940280914307, 2.247617483139038, 1.8817989826202393, 0.39392149448394775, -0.13467872142791748, -0.08984573930501938, 0.020061593502759933, 0.14252838492393494, -0.21281586587429047, -0.1645793616771698, 1.1189072132110596, -0.11796072870492935, 0.08320647478103638, -0.03209375590085983]} +{"t": 25.1143, "q": [-0.3650414049625397, -0.010357779450714588, 0.008865434676408768, 0.6114447116851807, -0.2825101315975189, 0.0028839288279414177, -0.3643766939640045, 0.012501942925155163, -0.0036024199798703194, 0.6390649080276489, -0.3327023386955261, -0.012577934190630913, 0.005383542273193598, 0.0571393258869648, -0.03138669207692146, -3.0491225719451904, 2.2476894855499268, 1.8785033226013184, 0.38733017444610596, -0.13460682332515717, -0.0899416133761406, 0.02003762498497963, 0.14153370261192322, -0.20767463743686676, -0.1645793616771698, 1.1215916872024536, -0.11796072870492935, 0.08319449424743652, -0.03200986608862877]} +{"t": 25.131, "q": [-0.3650754988193512, -0.010391868650913239, 0.008798475377261639, 0.6114788055419922, -0.28250178694725037, 0.0028984236996620893, -0.36435964703559875, 0.01245081052184105, -0.003669379511848092, 0.639056384563446, -0.3327147960662842, -0.012541505508124828, 0.00575851509347558, 0.057025227695703506, -0.03129982203245163, -3.0481996536254883, 2.247701406478882, 1.8766098022460938, 0.3804751932621002, -0.1345468908548355, -0.09000153094530106, 0.01998968794941902, 0.14073075354099274, -0.20265324413776398, -0.16469921171665192, 1.123053789138794, -0.11796072870492935, 0.08320647478103638, -0.03206978738307953]} +{"t": 25.1477, "q": [-0.3651181161403656, -0.010366301983594894, 0.008637772873044014, 0.6114788055419922, -0.28251421451568604, 0.002905565546825528, -0.36436817049980164, 0.012433766387403011, -0.003669379511848092, 0.6390137672424316, -0.3327808976173401, -0.012424718588590622, 0.006079920567572117, 0.05686565861105919, -0.03121153637766838, -3.047924041748047, 2.2476534843444824, 1.8751477003097534, 0.37372806668281555, -0.13451094925403595, -0.08980978280305862, 0.020025640726089478, 0.14037123322486877, -0.19814717769622803, -0.16479508578777313, 1.1239285469055176, -0.11796072870492935, 0.08320647478103638, -0.03206978738307953]} +{"t": 25.1645, "q": [-0.36510106921195984, -0.010374823585152626, 0.008624380454421043, 0.6114788055419922, -0.2825101315975189, 0.0028839288279414177, -0.36435964703559875, 0.012408199720084667, -0.0037095551379024982, 0.6390137672424316, -0.3327890634536743, -0.012439164333045483, 0.006307582836598158, 0.056728895753622055, -0.03113866038620472, -3.0477442741394043, 2.2476894855499268, 1.8734699487686157, 0.3667532503604889, -0.13451094925403595, -0.08988168835639954, 0.02003762498497963, 0.13995178043842316, -0.193760946393013, -0.1648550033569336, 1.1244319677352905, -0.11793676018714905, 0.08319449424743652, -0.03209375590085983]} +{"t": 25.1813, "q": [-0.36509254574775696, -0.010374823585152626, 0.008570813573896885, 0.611495852470398, -0.2825101315975189, 0.0028839288279414177, -0.36435964703559875, 0.012408199720084667, -0.003669379511848092, 0.6390137672424316, -0.3327890634536743, -0.012439164333045483, 0.006307582836598158, 0.05666046217083931, -0.031092418357729912, -3.047720193862915, 2.247701406478882, 1.8711330890655518, 0.360054075717926, -0.13451094925403595, -0.0900135189294815, 0.020025640726089478, 0.13970011472702026, -0.190117746591568, -0.1648310273885727, 1.1246356964111328, -0.11796072870492935, 0.08318250626325607, -0.03208177164196968]} +{"t": 25.1981, "q": [-0.36509254574775696, -0.010366301983594894, 0.008597597479820251, 0.6115214228630066, -0.2825101315975189, 0.0028839288279414177, -0.36435964703559875, 0.012416722252964973, -0.003669379511848092, 0.6390222907066345, -0.3327808380126953, -0.01243925653398037, 0.006213839631527662, 0.05664530768990517, -0.031091947108507156, -3.047492504119873, 2.2476773262023926, 1.8688321113586426, 0.3527796268463135, -0.13453491032123566, -0.09000153094530106, 0.020025640726089478, 0.1395922601222992, -0.18676216900348663, -0.1648550033569336, 1.124719500541687, -0.11796072870492935, 0.08318250626325607, -0.03211772441864014]} +{"t": 25.2148, "q": [-0.36510106921195984, -0.010366301983594894, 0.00866455677896738, 0.6115214228630066, -0.282522588968277, 0.0028910709079355, -0.3643852174282074, 0.01239115558564663, -0.0036158119328320026, 0.6390222907066345, -0.332793265581131, -0.012402827851474285, 0.006106704473495483, 0.05664530768990517, -0.031091947108507156, -3.0474445819854736, 2.2476773262023926, 1.8665670156478882, 0.3464040160179138, -0.13453491032123566, -0.0899655818939209, 0.02004960924386978, 0.13962820172309875, -0.18361032009124756, -0.16493889689445496, 1.1248873472213745, -0.11793676018714905, 0.08318250626325607, -0.03209375590085983]} +{"t": 25.2316, "q": [-0.3651266396045685, -0.010374823585152626, 0.008637772873044014, 0.6115299463272095, -0.282522588968277, 0.0028910709079355, -0.36436817049980164, 0.01239115558564663, -0.0035220684949308634, 0.6390137672424316, -0.33280155062675476, -0.01238823402673006, 0.005946001503616571, 0.056637752801179886, -0.03109661117196083, -3.047720193862915, 2.247629404067993, 1.8635350465774536, 0.34122684597969055, -0.13451094925403595, -0.09009740501642227, 0.02004960924386978, 0.13965217769145966, -0.1810816377401352, -0.16493889689445496, 1.1253187656402588, -0.1179487481713295, 0.08318250626325607, -0.03209375590085983]} +{"t": 25.2483, "q": [-0.3651181161403656, -0.010374823585152626, 0.008691340684890747, 0.6115299463272095, -0.28252673149108887, 0.002898283302783966, -0.3643852174282074, 0.01239115558564663, -0.0034551091957837343, 0.6390478610992432, -0.33279332518577576, -0.01238830853253603, 0.005624596029520035, 0.05657722055912018, -0.03111431933939457, -3.0480797290802, 2.247593402862549, 1.8593645095825195, 0.3359537720680237, -0.1345229297876358, -0.08995359390974045, 0.020013656467199326, 0.13965217769145966, -0.17887654900550842, -0.1649029403924942, 1.125846028327942, -0.1179487481713295, 0.08319449424743652, -0.03211772441864014]} +{"t": 25.265, "q": [-0.3651181161403656, -0.010374823585152626, 0.008798475377261639, 0.6115299463272095, -0.28255173563957214, 0.0028836652636528015, -0.3643852174282074, 0.012382633984088898, -0.0033747577108442783, 0.6390137672424316, -0.3327893614768982, -0.012322969734668732, 0.005356758367270231, 0.056547004729509354, -0.031132977455854416, -3.047924041748047, 2.247617483139038, 1.856332540512085, 0.33122003078460693, -0.1344989538192749, -0.08997756242752075, 0.01998968794941902, 0.13967613875865936, -0.17719875276088715, -0.16489095985889435, 1.126205563545227, -0.1179487481713295, 0.08318250626325607, -0.03209375590085983]} +{"t": 25.2817, "q": [-0.36513516306877136, -0.010374823585152626, 0.008798475377261639, 0.6115555167198181, -0.28255167603492737, 0.002898125210776925, -0.3643766939640045, 0.012374111451208591, -0.0033747577108442783, 0.6390052437782288, -0.33279356360435486, -0.012286633253097534, 0.005316582508385181, 0.056432951241731644, -0.031055908650159836, -3.0478880405426025, 2.2475576400756836, 1.8542232513427734, 0.32652220129966736, -0.13451094925403595, -0.08988168835639954, 0.020013656467199326, 0.13973607122898102, -0.17614413797855377, -0.16489095985889435, 1.1266010999679565, -0.11793676018714905, 0.08319449424743652, -0.03208177164196968]} +{"t": 25.2985, "q": [-0.36513516306877136, -0.010443000122904778, 0.008785083889961243, 0.611564040184021, -0.28255584836006165, 0.002890859730541706, -0.3643766939640045, 0.01233150064945221, -0.0033881496638059616, 0.6389711499214172, -0.33278539776802063, -0.012257667258381844, 0.005356758367270231, 0.05631178617477417, -0.031071724370121956, -3.047924041748047, 2.2475814819335938, 1.8525575399398804, 0.3220880329608917, -0.13455888628959656, -0.08989367634057999, 0.02003762498497963, 0.13976003229618073, -0.17555691301822662, -0.16491492092609406, 1.1273560523986816, -0.1179487481713295, 0.08319449424743652, -0.03209375590085983]} +{"t": 25.3153, "q": [-0.3651266396045685, -0.010468566790223122, 0.008798475377261639, 0.6116151809692383, -0.28255584836006165, 0.002890859730541706, -0.3643852174282074, 0.01230593491345644, -0.003347973804920912, 0.638988196849823, -0.3327771723270416, -0.01225772313773632, 0.005396933760493994, 0.05613705888390541, -0.030982961878180504, -3.047935962677002, 2.247593402862549, 1.8509515523910522, 0.31806135177612305, -0.13455888628959656, -0.08992962539196014, 0.02004960924386978, 0.13978400826454163, -0.17542508244514465, -0.1649269014596939, 1.1282309293746948, -0.11791279166936874, 0.08320647478103638, -0.032105740159749985]} +{"t": 25.332, "q": [-0.3651266396045685, -0.01051970012485981, 0.008785083889961243, 0.6115981340408325, -0.28255993127822876, 0.0029125146102160215, -0.3643766939640045, 0.012220713309943676, -0.003347973804920912, 0.6389541029930115, -0.3327772319316864, -0.012228683568537235, 0.00546389352530241, 0.0558258593082428, -0.03088013455271721, -3.047935962677002, 2.2475814819335938, 1.8493456840515137, 0.3145259916782379, -0.13458284735679626, -0.0899416133761406, 0.020013656467199326, 0.13977201282978058, -0.1754370778799057, -0.16497483849525452, 1.1290098428726196, -0.1179727166891098, 0.08324243128299713, -0.03212970867753029]} +{"t": 25.3488, "q": [-0.36510106921195984, -0.010553788393735886, 0.00873151607811451, 0.6115810871124268, -0.282530814409256, 0.0029199200216680765, -0.3643852174282074, 0.012229235842823982, -0.0033881496638059616, 0.6389796733856201, -0.33274438977241516, -0.012214459478855133, 0.005517460871487856, 0.055430587381124496, -0.03063257969915867, -3.047924041748047, 2.2475695610046387, 1.8482191562652588, 0.31241676211357117, -0.13461880385875702, -0.08997756242752075, 0.020013656467199326, 0.13971209526062012, -0.17564080655574799, -0.16499881446361542, 1.1294053792953491, -0.11796072870492935, 0.08319449424743652, -0.03212970867753029]} +{"t": 25.3657, "q": [-0.36514368653297424, -0.010553788393735886, 0.008637772873044014, 0.6115981340408325, -0.282530814409256, 0.0029199200216680765, -0.3643766939640045, 0.012229235842823982, -0.0033747577108442783, 0.638988196849823, -0.33274438977241516, -0.012199921533465385, 0.005651379935443401, 0.05495171621441841, -0.03033888339996338, -3.047924041748047, 2.247509717941284, 1.847500205039978, 0.31072700023651123, -0.13459482789039612, -0.08990565687417984, 0.020025640726089478, 0.13962820172309875, -0.17589247226715088, -0.16503477096557617, 1.1296809911727905, -0.11796072870492935, 0.08319449424743652, -0.03215367719531059]} +{"t": 25.3824, "q": [-0.36513516306877136, -0.010536743327975273, 0.008597597479820251, 0.6116066575050354, -0.2825225591659546, 0.00290553062222898, -0.3643766939640045, 0.012229235842823982, -0.0034283252898603678, 0.638988196849823, -0.33274027705192566, -0.012207218445837498, 0.005704947747290134, 0.054442282766103745, -0.02999543957412243, -3.047924041748047, 2.24749755859375, 1.8470447063446045, 0.30937278270721436, -0.13458284735679626, -0.08986970782279968, 0.02003762498497963, 0.13955630362033844, -0.17620407044887543, -0.16507071256637573, 1.1297409534454346, -0.1179487481713295, 0.08318250626325607, -0.0321776457130909]} +{"t": 25.3991, "q": [-0.3651095926761627, -0.01054526586085558, 0.008463677950203419, 0.6115981340408325, -0.28251421451568604, 0.002905565546825528, -0.3643937408924103, 0.012237757444381714, -0.003468500915914774, 0.6389796733856201, -0.33274027705192566, -0.012207218445837498, 0.00571833923459053, 0.05398602411150932, -0.029678087681531906, -3.047948122024536, 2.2474496364593506, 1.846313714981079, 0.30785077810287476, -0.13465476036071777, -0.08980978280305862, 0.020025640726089478, 0.13940051198005676, -0.17659954726696014, -0.16508270800113678, 1.1297409534454346, -0.1179727166891098, 0.08319449424743652, -0.0321776457130909]} +{"t": 25.4159, "q": [-0.3651266396045685, -0.01051970012485981, 0.008410110138356686, 0.6116066575050354, -0.28250595927238464, 0.0028911761473864317, -0.3644363582134247, 0.012263324111700058, -0.0034283252898603678, 0.6389711499214172, -0.33274024724960327, -0.012221756391227245, 0.00571833923459053, 0.05368178337812424, -0.029453465715050697, -3.048043966293335, 2.24747371673584, 1.8451752662658691, 0.3066883087158203, -0.13464276492595673, -0.08979780226945877, 0.020025640726089478, 0.1392926573753357, -0.1767074018716812, -0.16509468853473663, 1.1297528743743896, -0.11793676018714905, 0.08318250626325607, -0.03224955126643181]} +{"t": 25.4326, "q": [-0.36510106921195984, -0.010502655059099197, 0.008463677950203419, 0.6116066575050354, -0.28250178694725037, 0.0028984236996620893, -0.3644448518753052, 0.012297412380576134, -0.003468500915914774, 0.6389711499214172, -0.3327195942401886, -0.012258258648216724, 0.005624596029520035, 0.05340035259723663, -0.02924422174692154, -3.0481276512145996, 2.2474496364593506, 1.8438210487365723, 0.3058973550796509, -0.13466674089431763, -0.08983375132083893, 0.020025640726089478, 0.13916082680225372, -0.17692311108112335, -0.16509468853473663, 1.1297768354415894, -0.1179487481713295, 0.08319449424743652, -0.03226153552532196]} +{"t": 25.4493, "q": [-0.36514368653297424, -0.010502655059099197, 0.00847707036882639, 0.6116066575050354, -0.2825142741203308, 0.002891123527660966, -0.3644363582134247, 0.012322979047894478, -0.003441717242822051, 0.6389626264572144, -0.3327278196811676, -0.01225818507373333, 0.005504068918526173, 0.05317986011505127, -0.029095526784658432, -3.0482237339019775, 2.2474496364593506, 1.8422390222549438, 0.3054659068584442, -0.13464276492595673, -0.08988168835639954, 0.020001672208309174, 0.1390409767627716, -0.17701898515224457, -0.16511864960193634, 1.129788875579834, -0.1179966852068901, 0.08319449424743652, -0.032297488301992416]} +{"t": 25.4665, "q": [-0.3651181161403656, -0.010502655059099197, 0.00847707036882639, 0.6115981340408325, -0.282530814409256, 0.0029199200216680765, -0.3644448518753052, 0.012340023182332516, -0.0034952848218381405, 0.6389285326004028, -0.3327154517173767, -0.012265555560588837, 0.00542371766641736, 0.05302770063281059, -0.028973529115319252, -3.048379421234131, 2.2474377155303955, 1.8407530784606934, 0.3054179847240448, -0.13458284735679626, -0.08985771983861923, 0.020061593502759933, 0.1389451026916504, -0.1771627962589264, -0.16511864960193634, 1.129800796508789, -0.1179727166891098, 0.08318250626325607, -0.032297488301992416]} +{"t": 25.4834, "q": [-0.36510106921195984, -0.010502655059099197, 0.008544029667973518, 0.6115896105766296, -0.28251418471336365, 0.0029200254939496517, -0.36440226435661316, 0.012357067316770554, -0.0035354604478925467, 0.6389200091362, -0.3327030539512634, -0.012287446297705173, 0.0053701503202319145, 0.0529058538377285, -0.028852544724941254, -3.0484392642974854, 2.2474496364593506, 1.839806318283081, 0.3054659068584442, -0.13460682332515717, -0.08983375132083893, 0.020025640726089478, 0.13882526755332947, -0.1774624139070511, -0.16509468853473663, 1.1298367977142334, -0.1179727166891098, 0.08318250626325607, -0.03232145681977272]} +{"t": 25.5003, "q": [-0.3651181161403656, -0.010502655059099197, 0.008624380454421043, 0.6115896105766296, -0.28250986337661743, 0.0029561747796833515, -0.36440226435661316, 0.012357067316770554, -0.0035220684949308634, 0.638903021812439, -0.3327030539512634, -0.012287446297705173, 0.005343366414308548, 0.05282187834382057, -0.028727762401103973, -3.048643112182617, 2.2474257946014404, 1.8388954401016235, 0.30542996525764465, -0.13464276492595673, -0.08983375132083893, 0.020025640726089478, 0.13875335454940796, -0.17821741104125977, -0.16507071256637573, 1.1298367977142334, -0.11796072870492935, 0.08319449424743652, -0.032345425337553024]} +{"t": 25.517, "q": [-0.36510106921195984, -0.010511177591979504, 0.00866455677896738, 0.6116066575050354, -0.28249743580818176, 0.0029490329325199127, -0.3643937408924103, 0.01236558984965086, -0.0035220684949308634, 0.6388944983482361, -0.33270716667175293, -0.012294668704271317, 0.005329974461346865, 0.052760954946279526, -0.0286672692745924, -3.0488109588623047, 2.2474377155303955, 1.8381524085998535, 0.3054419457912445, -0.13460682332515717, -0.08983375132083893, 0.020025640726089478, 0.13872939348220825, -0.17892448604106903, -0.16504675149917603, 1.1299207210540771, -0.11798469722270966, 0.08319449424743652, -0.032345425337553024]} +{"t": 25.5337, "q": [-0.36505845189094543, -0.010502655059099197, 0.008718123659491539, 0.611564040184021, -0.28250569105148315, 0.002963422331959009, -0.3643340766429901, 0.01239115558564663, -0.003589028026908636, 0.6388944983482361, -0.33261629939079285, -0.012440735474228859, 0.005289798602461815, 0.05273020640015602, -0.028578288853168488, -3.048942804336548, 2.2474496364593506, 1.837361454963684, 0.30535805225372314, -0.13463078439235687, -0.08984573930501938, 0.02004960924386978, 0.13870541751384735, -0.17914019525051117, -0.16508270800113678, 1.1299686431884766, -0.11800866574048996, 0.08318250626325607, -0.032357409596443176]} +{"t": 25.5505, "q": [-0.36504992842674255, -0.01051970012485981, 0.008771691471338272, 0.6115981340408325, -0.2824891209602356, 0.002949067857116461, -0.3642999827861786, 0.012399678118526936, -0.0036024199798703194, 0.6388859748840332, -0.33261218667030334, -0.012448032386600971, 0.005249623209238052, 0.052661772817373276, -0.028532259166240692, -3.0489907264709473, 2.2474496364593506, 1.836618423461914, 0.3053460717201233, -0.13469070196151733, -0.08984573930501938, 0.020025640726089478, 0.13870541751384735, -0.17917615175247192, -0.16507071256637573, 1.1300045251846313, -0.11796072870492935, 0.08319449424743652, -0.03236939385533333]} +{"t": 25.5672, "q": [-0.3650328814983368, -0.010502655059099197, 0.008798475377261639, 0.6115810871124268, -0.2824932932853699, 0.002941820304840803, -0.3642999827861786, 0.012416722252964973, -0.003575636073946953, 0.6388774514198303, -0.33260393142700195, -0.012448088265955448, 0.005263015162199736, 0.052570536732673645, -0.02847089059650898, -3.049062490463257, 2.2474257946014404, 1.8359713554382324, 0.30528613924980164, -0.13465476036071777, -0.08984573930501938, 0.020025640726089478, 0.13863351941108704, -0.17927202582359314, -0.16511864960193634, 1.1300525665283203, -0.11793676018714905, 0.08318250626325607, -0.03239336237311363]} +{"t": 25.5839, "q": [-0.3650328814983368, -0.010511177591979504, 0.008798475377261639, 0.6115896105766296, -0.28250986337661743, 0.0029561747796833515, -0.3642914593219757, 0.012416722252964973, -0.0036158119328320026, 0.6388774514198303, -0.3326410949230194, -0.012396935373544693, 0.005249623209238052, 0.052426066249608994, -0.02837371826171875, -3.049062490463257, 2.2474496364593506, 1.8356118202209473, 0.30526217818260193, -0.13467872142791748, -0.08980978280305862, 0.02004960924386978, 0.13858558237552643, -0.17931996285915375, -0.16508270800113678, 1.1300644874572754, -0.11796072870492935, 0.08318250626325607, -0.03242931514978409]} +{"t": 25.6007, "q": [-0.3650243580341339, -0.010502655059099197, 0.008798475377261639, 0.6115896105766296, -0.28250986337661743, 0.0029561747796833515, -0.3642829358577728, 0.012425243854522705, -0.0036425956059247255, 0.6388604044914246, -0.3326493501663208, -0.012382341548800468, 0.005263015162199736, 0.052311867475509644, -0.02826763689517975, -3.049062490463257, 2.2474496364593506, 1.8353841304779053, 0.3052382171154022, -0.13469070196151733, -0.08982177078723907, 0.020025640726089478, 0.13856160640716553, -0.17934392392635345, -0.16504675149917603, 1.130184292793274, -0.11798469722270966, 0.08318250626325607, -0.03244129940867424]} +{"t": 25.6174, "q": [-0.3650328814983368, -0.010502655059099197, 0.008798475377261639, 0.611564040184021, -0.28250569105148315, 0.002963422331959009, -0.36426588892936707, 0.012433766387403011, -0.0036827712319791317, 0.6388433575630188, -0.3326658308506012, -0.01236767414957285, 0.005249623209238052, 0.05219747871160507, -0.028122397139668465, -3.049062490463257, 2.2474496364593506, 1.835192322731018, 0.30520227551460266, -0.13465476036071777, -0.08978581428527832, 0.02003762498497963, 0.13847772777080536, -0.17931996285915375, -0.16507071256637573, 1.1302682161331177, -0.11796072870492935, 0.08318250626325607, -0.03242931514978409]} +{"t": 25.6341, "q": [-0.3650328814983368, -0.010502655059099197, 0.008798475377261639, 0.6115896105766296, -0.28250569105148315, 0.002963422331959009, -0.3642488718032837, 0.012425243854522705, -0.003669379511848092, 0.6388177871704102, -0.33270716667175293, -0.012294668704271317, 0.005276407115161419, 0.0521060936152935, -0.028031660243868828, -3.049086570739746, 2.24747371673584, 1.8350365161895752, 0.3050704300403595, -0.13464276492595673, -0.08982177078723907, 0.02003762498497963, 0.1384177953004837, -0.179056316614151, -0.16507071256637573, 1.1304360628128052, -0.11796072870492935, 0.08317052572965622, -0.03242931514978409]} +{"t": 25.6508, "q": [-0.3650414049625397, -0.010502655059099197, 0.008758299984037876, 0.6115810871124268, -0.28250160813331604, 0.0029417856130748987, -0.3642573654651642, 0.012442288920283318, -0.003669379511848092, 0.6387751698493958, -0.33270716667175293, -0.012294668704271317, 0.005303190555423498, 0.05204526707530022, -0.02799074538052082, -3.0491225719451904, 2.24747371673584, 1.8348567485809326, 0.30457907915115356, -0.13465476036071777, -0.08977383375167847, 0.020025640726089478, 0.1383219212293625, -0.17864884436130524, -0.16508270800113678, 1.1307835578918457, -0.1179727166891098, 0.08318250626325607, -0.03244129940867424]} +{"t": 25.6676, "q": [-0.3650328814983368, -0.010494133457541466, 0.00873151607811451, 0.611564040184021, -0.2825181782245636, 0.0029561221599578857, -0.36423182487487793, 0.012442288920283318, -0.0036827712319791317, 0.6387325525283813, -0.33270716667175293, -0.012294668704271317, 0.005289798602461815, 0.052014853805303574, -0.027970287948846817, -3.0491464138031006, 2.24747371673584, 1.8347489833831787, 0.30395591259002686, -0.13466674089431763, -0.08977383375167847, 0.02003762498497963, 0.13817811012268066, -0.1784331351518631, -0.16502277553081512, 1.1315505504608154, -0.11796072870492935, 0.08318250626325607, -0.03244129940867424]} +{"t": 25.6844, "q": [-0.3650243580341339, -0.010502655059099197, 0.00873151607811451, 0.6115469932556152, -0.28250986337661743, 0.0029561747796833515, -0.3641892075538635, 0.012425243854522705, -0.003655987558886409, 0.6386899352073669, -0.3327071964740753, -0.012280149385333061, 0.005356758367270231, 0.051999740302562714, -0.027979638427495956, -3.049182415008545, 2.24747371673584, 1.8345931768417358, 0.30318892002105713, -0.13467872142791748, -0.08980978280305862, 0.020025640726089478, 0.138022318482399, -0.17826534807682037, -0.16503477096557617, 1.1327729225158691, -0.11796072870492935, 0.08318250626325607, -0.03245328366756439]} +{"t": 25.7011, "q": [-0.36499881744384766, -0.010511177591979504, 0.00873151607811451, 0.6115555167198181, -0.2825140058994293, 0.0029633694794028997, -0.36418068408966064, 0.012399678118526936, -0.0036425956059247255, 0.6386473178863525, -0.3327154517173767, -0.012265555560588837, 0.005329974461346865, 0.051999740302562714, -0.027979638427495956, -3.049182415008545, 2.2474496364593506, 1.834449291229248, 0.3023500144481659, -0.13466674089431763, -0.08980978280305862, 0.02003762498497963, 0.137794628739357, -0.17824138700962067, -0.16504675149917603, 1.1343908309936523, -0.11796072870492935, 0.08319449424743652, -0.03244129940867424]} +{"t": 25.7178, "q": [-0.36495620012283325, -0.010502655059099197, 0.008758299984037876, 0.6115555167198181, -0.2825140058994293, 0.0029633694794028997, -0.3641636371612549, 0.01239115558564663, -0.0036292036529630423, 0.6386473178863525, -0.3327195942401886, -0.012258258648216724, 0.0053701503202319145, 0.051999740302562714, -0.027979638427495956, -3.049182415008545, 2.24747371673584, 1.8343415260314941, 0.3013193607330322, -0.13466674089431763, -0.08977383375167847, 0.02003762498497963, 0.13743509352207184, -0.17822939157485962, -0.16507071256637573, 1.1363801956176758, -0.11796072870492935, 0.08318250626325607, -0.03245328366756439]} +{"t": 25.7346, "q": [-0.3649306297302246, -0.010511177591979504, 0.00873151607811451, 0.6115725636482239, -0.2825264632701874, 0.002970511559396982, -0.3641465902328491, 0.01239115558564663, -0.0036158119328320026, 0.6385791301727295, -0.3327154517173767, -0.012265555560588837, 0.005329974461346865, 0.052007343620061874, -0.027984751388430595, -3.049206256866455, 2.2474617958068848, 1.8342695236206055, 0.30006101727485657, -0.13466674089431763, -0.08976184576749802, 0.020013656467199326, 0.1372193843126297, -0.17825336754322052, -0.1651066690683365, 1.1381418704986572, -0.11793676018714905, 0.08319449424743652, -0.03245328366756439]} +{"t": 25.7513, "q": [-0.3649391531944275, -0.010511177591979504, 0.008744907565414906, 0.611564040184021, -0.28253063559532166, 0.002963246079161763, -0.36412954330444336, 0.01239115558564663, -0.0036158119328320026, 0.6385620832443237, -0.3327237069606781, -0.012250961735844612, 0.005356758367270231, 0.051999740302562714, -0.027979638427495956, -3.0492303371429443, 2.2474617958068848, 1.8341617584228516, 0.29856300354003906, -0.13471467792987823, -0.08977383375167847, 0.02004960924386978, 0.13697969913482666, -0.17827732861042023, -0.1651066690683365, 1.140394926071167, -0.11796072870492935, 0.08319449424743652, -0.03244129940867424]} +{"t": 25.768, "q": [-0.3649391531944275, -0.010511177591979504, 0.008771691471338272, 0.6115725636482239, -0.2825305759906769, 0.0029777060262858868, -0.36412954330444336, 0.01239115558564663, -0.0036158119328320026, 0.638528048992157, -0.3327154517173767, -0.012265555560588837, 0.005356758367270231, 0.05197697877883911, -0.0279740858823061, -3.0492541790008545, 2.247485637664795, 1.8340299129486084, 0.2974604666233063, -0.13470269739627838, -0.08984573930501938, 0.02004960924386978, 0.13646437227725983, -0.17826534807682037, -0.16504675149917603, 1.1434987783432007, -0.1179727166891098, 0.08318250626325607, -0.032501220703125]} +{"t": 25.7848, "q": [-0.36495620012283325, -0.010494133457541466, 0.00873151607811451, 0.611564040184021, -0.2825264632701874, 0.002970511559396982, -0.36412954330444336, 0.01236558984965086, -0.003655987558886409, 0.6385024785995483, -0.3328021764755249, -0.012126804329454899, 0.005356758367270231, 0.05197692662477493, -0.027964293956756592, -3.0492541790008545, 2.247485637664795, 1.8338741064071655, 0.2965017259120941, -0.13471467792987823, -0.08984573930501938, 0.020025640726089478, 0.13614079356193542, -0.17821741104125977, -0.16505873203277588, 1.145763874053955, -0.11798469722270966, 0.08319449424743652, -0.03248923644423485]} +{"t": 25.8017, "q": [-0.3649817705154419, -0.01051970012485981, 0.008624380454421043, 0.6115469932556152, -0.2825264632701874, 0.002970511559396982, -0.36412954330444336, 0.01236558984965086, -0.0036024199798703194, 0.6384342908859253, -0.3327897787094116, -0.012148695066571236, 0.005383542273193598, 0.05196171998977661, -0.027954066172242165, -3.0492663383483887, 2.247509717941284, 1.833766222000122, 0.29609423875808716, -0.13470269739627838, -0.08983375132083893, 0.02003762498497963, 0.13614079356193542, -0.1781574934720993, -0.16505873203277588, 1.14728581905365, -0.1179966852068901, 0.08321846276521683, -0.03248923644423485]} +{"t": 25.8186, "q": [-0.36496472358703613, -0.010528221726417542, 0.008610988967120647, 0.6115384697914124, -0.2825264632701874, 0.002970511559396982, -0.36412954330444336, 0.012357067316770554, -0.0036158119328320026, 0.6384342908859253, -0.3327939212322235, -0.012141398154199123, 0.005383542273193598, 0.05193895846605301, -0.027948511764407158, -3.0492422580718994, 2.247509717941284, 1.8335504531860352, 0.2960103750228882, -0.13471467792987823, -0.08984573930501938, 0.02003762498497963, 0.13612881302833557, -0.1780616194009781, -0.16509468853473663, 1.1484123468399048, -0.11796072870492935, 0.08319449424743652, -0.032477252185344696]} +{"t": 25.8353, "q": [-0.36499881744384766, -0.010502655059099197, 0.008584205061197281, 0.6115043759346008, -0.2825305163860321, 0.002992148045450449, -0.36412954330444336, 0.01236558984965086, -0.0036158119328320026, 0.6384257674217224, -0.3327815532684326, -0.012148769572377205, 0.0053701503202319145, 0.05194651335477829, -0.027943836525082588, -3.0491943359375, 2.247509717941284, 1.8333708047866821, 0.29599836468696594, -0.13470269739627838, -0.08984573930501938, 0.020025640726089478, 0.13611683249473572, -0.17807359993457794, -0.16509468853473663, 1.149574875831604, -0.11798469722270966, 0.08319449424743652, -0.032477252185344696]} +{"t": 25.852, "q": [-0.36495620012283325, -0.010502655059099197, 0.008570813573896885, 0.6114788055419922, -0.2825264632701874, 0.002970511559396982, -0.36413806676864624, 0.01236558984965086, -0.0036024199798703194, 0.6384172439575195, -0.3327856957912445, -0.012141472660005093, 0.005356758367270231, 0.05193891376256943, -0.0279387254267931, -3.049182415008545, 2.247485637664795, 1.833250880241394, 0.29602235555648804, -0.13466674089431763, -0.08983375132083893, 0.020025640726089478, 0.13611683249473572, -0.17804963886737823, -0.16508270800113678, 1.150545597076416, -0.11798469722270966, 0.08318250626325607, -0.03248923644423485]} +{"t": 25.8688, "q": [-0.36495620012283325, -0.010502655059099197, 0.008570813573896885, 0.6114788055419922, -0.2825264632701874, 0.002970511559396982, -0.3641210198402405, 0.01236558984965086, -0.00354885240085423, 0.638383150100708, -0.3327856659889221, -0.012155991978943348, 0.005356758367270231, 0.05193895846605301, -0.027948511764407158, -3.0491943359375, 2.247485637664795, 1.8331550359725952, 0.29602235555648804, -0.13466674089431763, -0.08982177078723907, 0.020025640726089478, 0.13609285652637482, -0.17804963886737823, -0.16502277553081512, 1.1515402793884277, -0.11798469722270966, 0.08319449424743652, -0.032477252185344696]} +{"t": 25.8855, "q": [-0.36496472358703613, -0.010502655059099197, 0.008570813573896885, 0.6114702820777893, -0.2825222611427307, 0.002977758878841996, -0.3641210198402405, 0.01236558984965086, -0.003562244353815913, 0.638383150100708, -0.3327856957912445, -0.012141472660005093, 0.005383542273193598, 0.05194651335477829, -0.027943836525082588, -3.0491943359375, 2.24747371673584, 1.8330591917037964, 0.2960822582244873, -0.13465476036071777, -0.08979780226945877, 0.02004960924386978, 0.13600897789001465, -0.1780616194009781, -0.16509468853473663, 1.1524989604949951, -0.11798469722270966, 0.08318250626325607, -0.03248923644423485]} +{"t": 25.9024, "q": [-0.3649306297302246, -0.010502655059099197, 0.008570813573896885, 0.6114702820777893, -0.2825264632701874, 0.002970511559396982, -0.3641210198402405, 0.012374111451208591, -0.0036024199798703194, 0.638383150100708, -0.3327815532684326, -0.012148769572377205, 0.005356758367270231, 0.05194651335477829, -0.027943836525082588, -3.049182415008545, 2.247485637664795, 1.8329752683639526, 0.29609423875808716, -0.13470269739627838, -0.08978581428527832, 0.02004960924386978, 0.13591310381889343, -0.17804963886737823, -0.16514262557029724, 1.1534696817398071, -0.1179727166891098, 0.08318250626325607, -0.032513201236724854]} +{"t": 25.9191, "q": [-0.36496472358703613, -0.010502655059099197, 0.008570813573896885, 0.6114532351493835, -0.2825222611427307, 0.002977758878841996, -0.3641210198402405, 0.012357067316770554, -0.0036024199798703194, 0.6383575797080994, -0.3327856957912445, -0.012141472660005093, 0.005343366414308548, 0.05194651335477829, -0.027943836525082588, -3.049182415008545, 2.247485637664795, 1.8328434228897095, 0.29607027769088745, -0.13467872142791748, -0.08980978280305862, 0.02004960924386978, 0.13579325377941132, -0.17804963886737823, -0.16509468853473663, 1.154656171798706, -0.11796072870492935, 0.08318250626325607, -0.03253716975450516]} +{"t": 25.9358, "q": [-0.36495620012283325, -0.010502655059099197, 0.008570813573896885, 0.6114788055419922, -0.28253889083862305, 0.0029776354786008596, -0.3641124963760376, 0.012348544783890247, -0.003562244353815913, 0.6382979154586792, -0.3327815532684326, -0.012148769572377205, 0.005343366414308548, 0.05193895846605301, -0.027948511764407158, -3.049206256866455, 2.24749755859375, 1.8327715396881104, 0.29604631662368774, -0.13467872142791748, -0.08984573930501938, 0.02003762498497963, 0.13561348617076874, -0.1780376434326172, -0.16508270800113678, 1.1558665037155151, -0.11796072870492935, 0.08318250626325607, -0.03253716975450516]} +{"t": 25.9526, "q": [-0.3649306297302246, -0.010502655059099197, 0.008570813573896885, 0.6114617586135864, -0.2825264632701874, 0.002970511559396982, -0.36409544944763184, 0.01236558984965086, -0.00354885240085423, 0.6382893919944763, -0.3327815532684326, -0.012148769572377205, 0.005356758367270231, 0.05193895846605301, -0.027948511764407158, -3.0491943359375, 2.247485637664795, 1.8326756954193115, 0.2960822582244873, -0.13471467792987823, -0.08985771983861923, 0.020025640726089478, 0.13552960753440857, -0.17802566289901733, -0.16507071256637573, 1.1572926044464111, -0.1179247796535492, 0.08318250626325607, -0.032513201236724854]} +{"t": 25.9693, "q": [-0.3648965358734131, -0.010494133457541466, 0.008597597479820251, 0.6114532351493835, -0.2825264036655426, 0.0029849535785615444, -0.3640613555908203, 0.012314456515014172, -0.0035220684949308634, 0.6382723450660706, -0.3327856659889221, -0.012155991978943348, 0.005356758367270231, 0.05193895846605301, -0.027948511764407158, -3.0491943359375, 2.24747371673584, 1.8326038122177124, 0.29614219069480896, -0.13469070196151733, -0.08983375132083893, 0.02004960924386978, 0.13550563156604767, -0.1780376434326172, -0.16504675149917603, 1.1586109399795532, -0.1179487481713295, 0.08318250626325607, -0.03253716975450516]} +{"t": 25.986, "q": [-0.3649306297302246, -0.010502655059099197, 0.008610988967120647, 0.6114788055419922, -0.2825264036655426, 0.0029849535785615444, -0.3640272915363312, 0.01233150064945221, -0.0035220684949308634, 0.6382126808166504, -0.3327815532684326, -0.012148769572377205, 0.0053701503202319145, 0.05194651335477829, -0.027943836525082588, -3.049206256866455, 2.24747371673584, 1.8325318098068237, 0.29616615176200867, -0.13473863899707794, -0.08980978280305862, 0.02003762498497963, 0.13556554913520813, -0.17802566289901733, -0.1651066690683365, 1.159773349761963, -0.1179487481713295, 0.08319449424743652, -0.03253716975450516]} +{"t": 26.0028, "q": [-0.36492210626602173, -0.010528221726417542, 0.008584205061197281, 0.6114447116851807, -0.2825263440608978, 0.0029993955977261066, -0.36399319767951965, 0.012280368246138096, -0.003468500915914774, 0.6381445527076721, -0.332789808511734, -0.01213417574763298, 0.005356758367270231, 0.05193135514855385, -0.027943400666117668, -3.049182415008545, 2.247485637664795, 1.8323161602020264, 0.2961781322956085, -0.13470269739627838, -0.08978581428527832, 0.020025640726089478, 0.13558952510356903, -0.1780376434326172, -0.1651066690683365, 1.1612474918365479, -0.11796072870492935, 0.08318250626325607, -0.03253716975450516]} +{"t": 26.0195, "q": [-0.36487096548080444, -0.010502655059099197, 0.008584205061197281, 0.6114532351493835, -0.2825264036655426, 0.0029849535785615444, -0.363967627286911, 0.012297412380576134, -0.003481892868876457, 0.6381275057792664, -0.3327856957912445, -0.012141472660005093, 0.005356758367270231, 0.05192380025982857, -0.027948075905442238, -3.04917049407959, 2.24749755859375, 1.832208275794983, 0.29614219069480896, -0.1347266584634781, -0.08982177078723907, 0.02003762498497963, 0.13552960753440857, -0.17802566289901733, -0.1651066690683365, 1.1632847785949707, -0.11798469722270966, 0.08318250626325607, -0.03253716975450516]} +{"t": 26.0364, "q": [-0.36491358280181885, -0.010502655059099197, 0.008597597479820251, 0.6114447116851807, -0.2825305163860321, 0.002992148045450449, -0.363967627286911, 0.012280368246138096, -0.0034952848218381405, 0.6380763649940491, -0.3327856957912445, -0.012141472660005093, 0.00542371766641736, 0.05193140357732773, -0.027953187003731728, -3.049182415008545, 2.247485637664795, 1.832112431526184, 0.29616615176200867, -0.13471467792987823, -0.08980978280305862, 0.020025640726089478, 0.13550563156604767, -0.17802566289901733, -0.16509468853473663, 1.164974570274353, -0.11796072870492935, 0.08318250626325607, -0.032525185495615005]} +{"t": 26.0531, "q": [-0.3648965358734131, -0.010502655059099197, 0.008544029667973518, 0.6114532351493835, -0.2825305759906769, 0.0029777060262858868, -0.3639250099658966, 0.012271846644580364, -0.003468500915914774, 0.6380167007446289, -0.3327857255935669, -0.012126934714615345, 0.005450501572340727, 0.05192375183105469, -0.02793828397989273, -3.0491583347320557, 2.247485637664795, 1.8319566249847412, 0.2961541712284088, -0.13470269739627838, -0.08982177078723907, 0.02004960924386978, 0.13561348617076874, -0.1780376434326172, -0.1651066690683365, 1.1659932136535645, -0.11793676018714905, 0.08318250626325607, -0.03254915401339531]} +{"t": 26.0698, "q": [-0.3648880124092102, -0.010502655059099197, 0.008544029667973518, 0.6114532351493835, -0.28253889083862305, 0.0029776354786008596, -0.36390796303749084, 0.012263324111700058, -0.0034551091957837343, 0.6379911303520203, -0.3327815532684326, -0.012148769572377205, 0.00542371766641736, 0.05193135514855385, -0.027943400666117668, -3.0491583347320557, 2.247485637664795, 1.8317768573760986, 0.29616615176200867, -0.13471467792987823, -0.08984573930501938, 0.02003762498497963, 0.1356494426727295, -0.17802566289901733, -0.16509468853473663, 1.166844129562378, -0.1179487481713295, 0.08318250626325607, -0.032525185495615005]} +{"t": 26.0866, "q": [-0.36490505933761597, -0.010502655059099197, 0.008544029667973518, 0.6114361882209778, -0.28253471851348877, 0.002984900726005435, -0.36390796303749084, 0.012254801578819752, -0.0034283252898603678, 0.6379655599594116, -0.332789808511734, -0.01213417574763298, 0.005396933760493994, 0.05192375183105469, -0.02793828397989273, -3.04917049407959, 2.247485637664795, 1.8316810131072998, 0.2961781322956085, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.13573333621025085, -0.17804963886737823, -0.1651066690683365, 1.1670238971710205, -0.11793676018714905, 0.08320647478103638, -0.03253716975450516]} +{"t": 26.1033, "q": [-0.36492210626602173, -0.010502655059099197, 0.008517245762050152, 0.6114276647567749, -0.28253886103630066, 0.0029921133536845446, -0.36389943957328796, 0.012254801578819752, -0.0034283252898603678, 0.6379144191741943, -0.332781583070755, -0.012134231626987457, 0.0053701503202319145, 0.05190863832831383, -0.02794763445854187, -3.0491464138031006, 2.24749755859375, 1.8315610885620117, 0.29621410369873047, -0.13471467792987823, -0.08980978280305862, 0.02003762498497963, 0.13575729727745056, -0.17807359993457794, -0.1651066690683365, 1.167083740234375, -0.1179487481713295, 0.08319449424743652, -0.03253716975450516]} +{"t": 26.12, "q": [-0.3649306297302246, -0.010502655059099197, 0.008490461856126785, 0.611419141292572, -0.28253889083862305, 0.0029776354786008596, -0.36389943957328796, 0.012254801578819752, -0.0033747577108442783, 0.6378718018531799, -0.33281049132347107, -0.012097672559320927, 0.005356758367270231, 0.05193135514855385, -0.027943400666117668, -3.0491344928741455, 2.24749755859375, 1.8314772844314575, 0.2961901128292084, -0.13471467792987823, -0.08980978280305862, 0.02003762498497963, 0.13570936024188995, -0.17807359993457794, -0.16507071256637573, 1.1671197414398193, -0.1179487481713295, 0.08318250626325607, -0.03256113827228546]} +{"t": 26.1368, "q": [-0.3649306297302246, -0.010502655059099197, 0.00847707036882639, 0.6113936305046082, -0.2825305759906769, 0.0029777060262858868, -0.3638823926448822, 0.012263324111700058, -0.0034015413839370012, 0.6378291845321655, -0.33281049132347107, -0.012083134613931179, 0.005356758367270231, 0.05191619321703911, -0.0279429592192173, -3.0491464138031006, 2.247485637664795, 1.8313933610916138, 0.2962021231651306, -0.13470269739627838, -0.08982177078723907, 0.02003762498497963, 0.1356494426727295, -0.17807359993457794, -0.16509468853473663, 1.1671197414398193, -0.11798469722270966, 0.08318250626325607, -0.03254915401339531]} +{"t": 26.1535, "q": [-0.36490505933761597, -0.010494133457541466, 0.00847707036882639, 0.6113765835762024, -0.28254303336143494, 0.0029848478734493256, -0.36389943957328796, 0.012254801578819752, -0.0034015413839370012, 0.637795090675354, -0.33281460404396057, -0.012090375646948814, 0.0053701503202319145, 0.05193895846605301, -0.027948511764407158, -3.049182415008545, 2.247485637664795, 1.8313933610916138, 0.2962021231651306, -0.13471467792987823, -0.08982177078723907, 0.02003762498497963, 0.13558952510356903, -0.1780616194009781, -0.16511864960193634, 1.1670957803726196, -0.1179487481713295, 0.08315853774547577, -0.03254915401339531]} +{"t": 26.1703, "q": [-0.3649306297302246, -0.010511177591979504, 0.008503853343427181, 0.611333966255188, -0.28254303336143494, 0.0029848478734493256, -0.3638823926448822, 0.01224627997726202, -0.0033881496638059616, 0.6377354860305786, -0.33281460404396057, -0.012090375646948814, 0.005383542273193598, 0.05191624537110329, -0.02795274928212166, -3.04917049407959, 2.24747371673584, 1.8313933610916138, 0.2962380647659302, -0.1347266584634781, -0.08982177078723907, 0.020025640726089478, 0.13556554913520813, -0.17804963886737823, -0.1651066690683365, 1.167083740234375, -0.11796072870492935, 0.08318250626325607, -0.03254915401339531]} +{"t": 26.187, "q": [-0.3649306297302246, -0.010502655059099197, 0.008463677950203419, 0.6113254427909851, -0.28253886103630066, 0.0029921133536845446, -0.3638738691806793, 0.012229235842823982, -0.0034149333368986845, 0.6377013921737671, -0.33281463384628296, -0.012075837701559067, 0.005410325713455677, 0.05193895846605301, -0.027948511764407158, -3.04917049407959, 2.24747371673584, 1.8313813209533691, 0.2962260842323303, -0.13471467792987823, -0.08982177078723907, 0.02003762498497963, 0.13555356860160828, -0.17804963886737823, -0.16508270800113678, 1.167083740234375, -0.1179487481713295, 0.08318250626325607, -0.03254915401339531]} +{"t": 26.2037, "q": [-0.3648880124092102, -0.010511177591979504, 0.00847707036882639, 0.6112743020057678, -0.282555490732193, 0.002991989953443408, -0.36385685205459595, 0.012229235842823982, -0.0033881496638059616, 0.6376417279243469, -0.33282285928726196, -0.01207578182220459, 0.005356758367270231, 0.05191624537110329, -0.02795274928212166, -3.0491583347320557, 2.247485637664795, 1.8312615156173706, 0.2961781322956085, -0.13471467792987823, -0.08980978280305862, 0.02003762498497963, 0.13556554913520813, -0.1780376434326172, -0.1651066690683365, 1.1671197414398193, -0.11793676018714905, 0.08318250626325607, -0.03253716975450516]} +{"t": 26.2205, "q": [-0.36492210626602173, -0.010502655059099197, 0.008436894044280052, 0.6112402081489563, -0.28255128860473633, 0.002999237272888422, -0.3638312816619873, 0.012237757444381714, -0.0033747577108442783, 0.6375394463539124, -0.33282285928726196, -0.01207578182220459, 0.005410325713455677, 0.05191624537110329, -0.02795274928212166, -3.0491344928741455, 2.247485637664795, 1.8312015533447266, 0.2962260842323303, -0.13471467792987823, -0.08980978280305862, 0.02003762498497963, 0.13558952510356903, -0.17804963886737823, -0.16509468853473663, 1.1670957803726196, -0.11796072870492935, 0.08318250626325607, -0.03256113827228546]} +{"t": 26.2372, "q": [-0.3649306297302246, -0.010502655059099197, 0.00839671865105629, 0.6112402081489563, -0.2825678586959839, 0.003013573819771409, -0.3638227581977844, 0.012229235842823982, -0.0033747577108442783, 0.6374286413192749, -0.33281874656677246, -0.012083078734576702, 0.005396933760493994, 0.05192384496331215, -0.027957862243056297, -3.049098491668701, 2.24747371673584, 1.831141710281372, 0.2961781322956085, -0.1347266584634781, -0.08982177078723907, 0.020025640726089478, 0.13561348617076874, -0.17804963886737823, -0.16509468853473663, 1.1671556234359741, -0.11796072870492935, 0.08318250626325607, -0.03256113827228546]} +{"t": 26.254, "q": [-0.3648965358734131, -0.010511177591979504, 0.008343150839209557, 0.6112231612205505, -0.2825636863708496, 0.003020821139216423, -0.3637545704841614, 0.012220713309943676, -0.0033747577108442783, 0.6373775601387024, -0.33281877636909485, -0.012068540789186954, 0.005410325713455677, 0.05192375183105469, -0.02793828397989273, -3.049098491668701, 2.24749755859375, 1.8310937881469727, 0.2962380647659302, -0.13478657603263855, -0.08978581428527832, 0.02003762498497963, 0.13561348617076874, -0.1780376434326172, -0.16514262557029724, 1.1671316623687744, -0.1179727166891098, 0.08318250626325607, -0.03254915401339531]} +{"t": 26.2708, "q": [-0.3648965358734131, -0.01051970012485981, 0.008369934745132923, 0.6111975908279419, -0.2825596034526825, 0.0029991844203323126, -0.3637545704841614, 0.012203669175505638, -0.0034015413839370012, 0.6373775601387024, -0.33281874656677246, -0.012083078734576702, 0.005396933760493994, 0.05191624537110329, -0.02795274928212166, -3.0491225719451904, 2.247485637664795, 1.831069827079773, 0.29627400636672974, -0.13471467792987823, -0.08980978280305862, 0.02003762498497963, 0.13562548160552979, -0.1780376434326172, -0.16504675149917603, 1.1671676635742188, -0.1179487481713295, 0.08317052572965622, -0.03257312253117561]} +{"t": 26.2876, "q": [-0.3648794889450073, -0.010502655059099197, 0.00839671865105629, 0.6111379265785217, -0.2825596034526825, 0.0029991844203323126, -0.3637460470199585, 0.0121866250410676, -0.0034015413839370012, 0.637334942817688, -0.33281877636909485, -0.012068540789186954, 0.0053701503202319145, 0.05190863832831383, -0.02794763445854187, -3.0491464138031006, 2.247485637664795, 1.8310338258743286, 0.2962380647659302, -0.13471467792987823, -0.08979780226945877, 0.02003762498497963, 0.13561348617076874, -0.17801368236541748, -0.16509468853473663, 1.1671556234359741, -0.11793676018714905, 0.08318250626325607, -0.03257312253117561]} +{"t": 26.3043, "q": [-0.3648794889450073, -0.010511177591979504, 0.00839671865105629, 0.611120879650116, -0.2825596034526825, 0.0029991844203323126, -0.3637375235557556, 0.012229235842823982, -0.0034015413839370012, 0.6372838020324707, -0.33282285928726196, -0.01207578182220459, 0.005410325713455677, 0.05193895846605301, -0.027948511764407158, -3.0491344928741455, 2.24747371673584, 1.8310338258743286, 0.29621410369873047, -0.13470269739627838, -0.08980978280305862, 0.020061593502759933, 0.13560150563716888, -0.17795376479625702, -0.16508270800113678, 1.1671556234359741, -0.11793676018714905, 0.08317052572965622, -0.032585106790065765]} +{"t": 26.321, "q": [-0.3648965358734131, -0.01051970012485981, 0.008383326232433319, 0.6110782623291016, -0.2825678586959839, 0.003013573819771409, -0.3637460470199585, 0.012203669175505638, -0.0034015413839370012, 0.6371985673904419, -0.33281874656677246, -0.012083078734576702, 0.005383542273193598, 0.05190863832831383, -0.02794763445854187, -3.0491464138031006, 2.247485637664795, 1.8309978246688843, 0.2962380647659302, -0.13470269739627838, -0.08979780226945877, 0.02003762498497963, 0.13558952510356903, -0.17786987125873566, -0.16508270800113678, 1.167203664779663, -0.1179487481713295, 0.08315853774547577, -0.03257312253117561]} +{"t": 26.3378, "q": [-0.3648965358734131, -0.010511177591979504, 0.008423502556979656, 0.6110612154006958, -0.2825678586959839, 0.003013573819771409, -0.3637460470199585, 0.012229235842823982, -0.003334582084789872, 0.6371644735336304, -0.33281877636909485, -0.012068540789186954, 0.005329974461346865, 0.05190863832831383, -0.02794763445854187, -3.0491464138031006, 2.247485637664795, 1.8309859037399292, 0.29621410369873047, -0.13471467792987823, -0.08980978280305862, 0.020025640726089478, 0.13562548160552979, -0.1778339147567749, -0.16509468853473663, 1.167203664779663, -0.1179487481713295, 0.08317052572965622, -0.03256113827228546]} +{"t": 26.3545, "q": [-0.3648794889450073, -0.01051970012485981, 0.008410110138356686, 0.6110357046127319, -0.2825678586959839, 0.003013573819771409, -0.3637375235557556, 0.012220713309943676, -0.0033747577108442783, 0.6371474266052246, -0.33281877636909485, -0.012068540789186954, 0.005329974461346865, 0.05192384496331215, -0.027957862243056297, -3.0491583347320557, 2.247485637664795, 1.831009864807129, 0.29621410369873047, -0.13470269739627838, -0.08980978280305862, 0.02003762498497963, 0.13562548160552979, -0.17779795825481415, -0.16505873203277588, 1.1672276258468628, -0.11793676018714905, 0.08319449424743652, -0.03257312253117561]} +{"t": 26.3712, "q": [-0.3648794889450073, -0.010511177591979504, 0.008410110138356686, 0.6110101342201233, -0.2825596034526825, 0.0029991844203323126, -0.363711953163147, 0.012212191708385944, -0.0034149333368986845, 0.6371303796768188, -0.33281874656677246, -0.012083078734576702, 0.005356758367270231, 0.05191624537110329, -0.02795274928212166, -3.04917049407959, 2.247485637664795, 1.8309738636016846, 0.29621410369873047, -0.13471467792987823, -0.08980978280305862, 0.02003762498497963, 0.13562548160552979, -0.1778099536895752, -0.16508270800113678, 1.1672635078430176, -0.11793676018714905, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.3879, "q": [-0.36487096548080444, -0.01051970012485981, 0.00839671865105629, 0.6110101342201233, -0.2825678586959839, 0.003013573819771409, -0.36368638277053833, 0.012212191708385944, -0.0033747577108442783, 0.6371133327484131, -0.33281877636909485, -0.012068540789186954, 0.005303190555423498, 0.05191624537110329, -0.02795274928212166, -3.049182415008545, 2.247485637664795, 1.8309619426727295, 0.2961901128292084, -0.1347266584634781, -0.08980978280305862, 0.02003762498497963, 0.1356494426727295, -0.17779795825481415, -0.16507071256637573, 1.1672635078430176, -0.11796072870492935, 0.08318250626325607, -0.03257312253117561]} +{"t": 26.4048, "q": [-0.3648794889450073, -0.010511177591979504, 0.008369934745132923, 0.6109760403633118, -0.2825678586959839, 0.003013573819771409, -0.36363527178764343, 0.012203669175505638, -0.0034015413839370012, 0.6370962858200073, -0.33281460404396057, -0.012090375646948814, 0.005329974461346865, 0.05192375183105469, -0.02793828397989273, -3.049182415008545, 2.24749755859375, 1.8309619426727295, 0.29621410369873047, -0.13471467792987823, -0.08982177078723907, 0.02003762498497963, 0.13566142320632935, -0.1777859777212143, -0.1651066690683365, 1.167311429977417, -0.11796072870492935, 0.08318250626325607, -0.03257312253117561]} +{"t": 26.4215, "q": [-0.3648368716239929, -0.010502655059099197, 0.008369934745132923, 0.6109675168991089, -0.2825596034526825, 0.0029991844203323126, -0.36361822485923767, 0.012212191708385944, -0.0033747577108442783, 0.6370707154273987, -0.33281460404396057, -0.012090375646948814, 0.005289798602461815, 0.05190863832831383, -0.02794763445854187, -3.049182415008545, 2.24747371673584, 1.8309499025344849, 0.2962021231651306, -0.13473863899707794, -0.08982177078723907, 0.020025640726089478, 0.13570936024188995, -0.17772606015205383, -0.16511864960193634, 1.1673234701156616, -0.1179487481713295, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.4383, "q": [-0.3647942841053009, -0.010502655059099197, 0.008369934745132923, 0.6109248995780945, -0.2825554311275482, 0.0030064319726079702, -0.3634307384490967, 0.012229235842823982, -0.0033747577108442783, 0.6370280981063843, -0.33279818296432495, -0.01207598578184843, 0.005276407115161419, 0.05192375183105469, -0.02793828397989273, -3.0491583347320557, 2.247485637664795, 1.8309499025344849, 0.2962021231651306, -0.1347266584634781, -0.08980978280305862, 0.020025640726089478, 0.13570936024188995, -0.17769010365009308, -0.16511864960193634, 1.167359471321106, -0.11790081113576889, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.455, "q": [-0.36476871371269226, -0.010494133457541466, 0.008369934745132923, 0.6109248995780945, -0.2825596034526825, 0.0029991844203323126, -0.36340516805648804, 0.012212191708385944, -0.0033747577108442783, 0.6369770169258118, -0.3328022360801697, -0.012097728438675404, 0.005303190555423498, 0.05192375183105469, -0.02793828397989273, -3.0491583347320557, 2.247485637664795, 1.8309379816055298, 0.2961781322956085, -0.13471467792987823, -0.08983375132083893, 0.02003762498497963, 0.13570936024188995, -0.1776062250137329, -0.16501079499721527, 1.167359471321106, -0.1179487481713295, 0.08315853774547577, -0.03257312253117561]} +{"t": 26.4717, "q": [-0.36472609639167786, -0.010502655059099197, 0.008369934745132923, 0.6109163761138916, -0.2825637459754944, 0.003006379120051861, -0.36331140995025635, 0.012237757444381714, -0.0034015413839370012, 0.6369429230690002, -0.33280640840530396, -0.012075912207365036, 0.005329974461346865, 0.051908545196056366, -0.027928056195378304, -3.0491583347320557, 2.247485637664795, 1.8309379816055298, 0.2961781322956085, -0.134750634431839, -0.08982177078723907, 0.02003762498497963, 0.13570936024188995, -0.17754629254341125, -0.16509468853473663, 1.167371392250061, -0.11793676018714905, 0.08319449424743652, -0.03259709104895592]} +{"t": 26.4886, "q": [-0.3647090494632721, -0.010502655059099197, 0.008343150839209557, 0.6109163761138916, -0.2825554311275482, 0.0030064319726079702, -0.36326029896736145, 0.012229235842823982, -0.0034015413839370012, 0.6369258761405945, -0.33280640840530396, -0.012075912207365036, 0.005276407115161419, 0.051900941878557205, -0.027922943234443665, -3.049182415008545, 2.247485637664795, 1.8309019804000854, 0.29616615176200867, -0.13469070196151733, -0.08983375132083893, 0.02003762498497963, 0.13570936024188995, -0.17749835550785065, -0.16508270800113678, 1.1673834323883057, -0.1179247796535492, 0.08317052572965622, -0.032585106790065765]} +{"t": 26.5055, "q": [-0.3646579086780548, -0.01051970012485981, 0.008343150839209557, 0.610890805721283, -0.2825554311275482, 0.0030064319726079702, -0.36311542987823486, 0.012237757444381714, -0.0034015413839370012, 0.6368747353553772, -0.33279404044151306, -0.012083282694220543, 0.005289798602461815, 0.051885779947042465, -0.027922501787543297, -3.049206256866455, 2.247509717941284, 1.8308900594711304, 0.2961541712284088, -0.13469070196151733, -0.08982177078723907, 0.02003762498497963, 0.1356494426727295, -0.17743843793869019, -0.16508270800113678, 1.1673834323883057, -0.11793676018714905, 0.08318250626325607, -0.03259709104895592]} +{"t": 26.5222, "q": [-0.3646664321422577, -0.010502655059099197, 0.008343150839209557, 0.6108822822570801, -0.282555490732193, 0.002991989953443408, -0.362962007522583, 0.01224627997726202, -0.0034015413839370012, 0.6368065476417542, -0.33280640840530396, -0.012075912207365036, 0.005276407115161419, 0.0518781803548336, -0.027917388826608658, -3.04917049407959, 2.247485637664795, 1.8308660984039307, 0.29614219069480896, -0.13473863899707794, -0.08982177078723907, 0.02003762498497963, 0.13566142320632935, -0.17734256386756897, -0.1651066690683365, 1.1673953533172607, -0.11793676018714905, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.539, "q": [-0.36468347907066345, -0.010502655059099197, 0.00832975935190916, 0.6108567118644714, -0.2825678586959839, 0.003013573819771409, -0.3628597557544708, 0.01224627997726202, -0.0034283252898603678, 0.6367298364639282, -0.33280640840530396, -0.012075912207365036, 0.005263015162199736, 0.051885735243558884, -0.027912713587284088, -3.049182415008545, 2.247509717941284, 1.8308420181274414, 0.29611822962760925, -0.134750634431839, -0.08979780226945877, 0.02003762498497963, 0.13568539917469025, -0.1772347092628479, -0.16509468853473663, 1.1674672365188599, -0.11793676018714905, 0.08321846276521683, -0.032585106790065765]} +{"t": 26.556, "q": [-0.3646579086780548, -0.010502655059099197, 0.008302975445985794, 0.6108652353286743, -0.28257614374160767, 0.0030279632192105055, -0.3626466989517212, 0.012237757444381714, -0.0034149333368986845, 0.6366786956787109, -0.33280232548713684, -0.012068688869476318, 0.005316582508385181, 0.05187062546610832, -0.027922064065933228, -3.049182415008545, 2.247509717941284, 1.8308300971984863, 0.2960822582244873, -0.13476261496543884, -0.08983375132083893, 0.020025640726089478, 0.13570936024188995, -0.17707891762256622, -0.16511864960193634, 1.1675032377243042, -0.11793676018714905, 0.08315853774547577, -0.032585106790065765]} +{"t": 26.5727, "q": [-0.3646579086780548, -0.010494133457541466, 0.008262800052762032, 0.6108567118644714, -0.2825678586959839, 0.003013573819771409, -0.3625018298625946, 0.012229235842823982, -0.0034283252898603678, 0.636584997177124, -0.33281058073043823, -0.012054095044732094, 0.005289798602461815, 0.05184020847082138, -0.027901608496904373, -3.0491583347320557, 2.247509717941284, 1.830782175064087, 0.29609423875808716, -0.134750634431839, -0.08982177078723907, 0.020025640726089478, 0.13570936024188995, -0.1769351065158844, -0.1651066690683365, 1.167527198791504, -0.11796072870492935, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.5895, "q": [-0.36463233828544617, -0.010485611855983734, 0.008249407634139061, 0.6108226180076599, -0.2825844883918762, 0.003013468347489834, -0.36243364214897156, 0.012220713309943676, -0.0034015413839370012, 0.636516809463501, -0.33281058073043823, -0.012054095044732094, 0.005289798602461815, 0.05183260515332222, -0.027896491810679436, -3.04917049407959, 2.247509717941284, 1.8307461738586426, 0.2961062490940094, -0.1347745954990387, -0.08984573930501938, 0.02004960924386978, 0.13570936024188995, -0.17673136293888092, -0.16509468853473663, 1.167539119720459, -0.1179487481713295, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.6063, "q": [-0.3646664321422577, -0.010502655059099197, 0.008236016146838665, 0.6107800006866455, -0.2825886309146881, 0.0030206809751689434, -0.362356960773468, 0.012220713309943676, -0.0034015413839370012, 0.6364315748214722, -0.33281058073043823, -0.012054095044732094, 0.005316582508385181, 0.05174906179308891, -0.02785981446504593, -3.0491583347320557, 2.2475335597991943, 1.830686330795288, 0.29609423875808716, -0.134750634431839, -0.08983375132083893, 0.02003762498497963, 0.1357453167438507, -0.1765875518321991, -0.16511864960193634, 1.167659044265747, -0.11793676018714905, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.623, "q": [-0.36468347907066345, -0.010485611855983734, 0.008195839822292328, 0.6107714772224426, -0.2825968563556671, 0.0030495121609419584, -0.36225467920303345, 0.012203669175505638, -0.0034015413839370012, 0.6363633871078491, -0.3328229784965515, -0.01203218661248684, 0.005329974461346865, 0.051673173904418945, -0.02783804200589657, -3.0491464138031006, 2.2475335597991943, 1.8306503295898438, 0.2961062490940094, -0.13471467792987823, -0.08982177078723907, 0.02003762498497963, 0.13570936024188995, -0.17645573616027832, -0.16504675149917603, 1.1677188873291016, -0.11796072870492935, 0.08315853774547577, -0.032585106790065765]} +{"t": 26.6398, "q": [-0.36467495560646057, -0.010494133457541466, 0.008115489035844803, 0.6107629537582397, -0.28259265422821045, 0.003056759713217616, -0.3621950149536133, 0.012195147573947906, -0.0033747577108442783, 0.6362441182136536, -0.3328188359737396, -0.01203950121998787, 0.005329974461346865, 0.051589485257864, -0.027771996334195137, -3.0491104125976562, 2.2475335597991943, 1.8306382894515991, 0.29611822962760925, -0.1347745954990387, -0.08982177078723907, 0.02003762498497963, 0.13573333621025085, -0.17632390558719635, -0.16509468853473663, 1.1677188873291016, -0.1179487481713295, 0.08318250626325607, -0.03262105956673622]} +{"t": 26.6567, "q": [-0.3646664321422577, -0.010502655059099197, 0.008048529736697674, 0.6107373833656311, -0.28262168169021606, 0.0030782560352236032, -0.3621353805065155, 0.012178102508187294, -0.0033747577108442783, 0.6361759305000305, -0.33286014199256897, -0.011966496706008911, 0.005329974461346865, 0.05142999812960625, -0.027703752741217613, -3.0491225719451904, 2.2475335597991943, 1.8305903673171997, 0.29611822962760925, -0.1348225325345993, -0.08982177078723907, 0.020025640726089478, 0.13573333621025085, -0.17622803151607513, -0.16504675149917603, 1.167754888534546, -0.11798469722270966, 0.08318250626325607, -0.03260907530784607]} +{"t": 26.6734, "q": [-0.36467495560646057, -0.010502655059099197, 0.008035137318074703, 0.6107544302940369, -0.28263434767723083, 0.0030275939498096704, -0.3621353805065155, 0.012169580906629562, -0.0033747577108442783, 0.6361247897148132, -0.33286428451538086, -0.011959199793636799, 0.005316582508385181, 0.05127802491188049, -0.02762104570865631, -3.0491225719451904, 2.2475335597991943, 1.8305424451828003, 0.2961062490940094, -0.1347745954990387, -0.08982177078723907, 0.02003762498497963, 0.13575729727745056, -0.17612017691135406, -0.16504675149917603, 1.167754888534546, -0.11793676018714905, 0.08317052572965622, -0.032585106790065765]} +{"t": 26.6901, "q": [-0.3646664321422577, -0.010494133457541466, 0.008035137318074703, 0.6107203364372253, -0.2826426029205322, 0.0030420012772083282, -0.3621268570423126, 0.012178102508187294, -0.003361365757882595, 0.6360395550727844, -0.33286428451538086, -0.011959199793636799, 0.005276407115161419, 0.05116397142410278, -0.027544334530830383, -3.0491104125976562, 2.247509717941284, 1.8304945230484009, 0.29611822962760925, -0.13476261496543884, -0.08982177078723907, 0.02003762498497963, 0.13575729727745056, -0.1760602593421936, -0.16503477096557617, 1.1678028106689453, -0.1179727166891098, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.707, "q": [-0.3647005259990692, -0.010494133457541466, 0.008008353412151337, 0.6106777191162109, -0.2826467454433441, 0.0030491959769278765, -0.3621353805065155, 0.012144014239311218, -0.0033747577108442783, 0.6360054612159729, -0.33286428451538086, -0.011959199793636799, 0.005316582508385181, 0.05101965367794037, -0.027476567775011063, -3.0491344928741455, 2.2475335597991943, 1.8304345607757568, 0.29611822962760925, -0.13478657603263855, -0.08983375132083893, 0.02004960924386978, 0.13582921028137207, -0.176012322306633, -0.1651066690683365, 1.1677908897399902, -0.11796072870492935, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.7237, "q": [-0.364717572927475, -0.010494133457541466, 0.008008353412151337, 0.6106522083282471, -0.2826591432094574, 0.0030707798432558775, -0.3621353805065155, 0.012144014239311218, -0.0032810145057737827, 0.6359457969665527, -0.33286842703819275, -0.011951902881264687, 0.005222839303314686, 0.05092841759324074, -0.02741527371108532, -3.0491344928741455, 2.247509717941284, 1.830398678779602, 0.29614219069480896, -0.1347745954990387, -0.08980978280305862, 0.02003762498497963, 0.13582921028137207, -0.17602430284023285, -0.16508270800113678, 1.1678986549377441, -0.11798469722270966, 0.08318250626325607, -0.03259709104895592]} +{"t": 26.7404, "q": [-0.3647005259990692, -0.010502655059099197, 0.008008353412151337, 0.6106436848640442, -0.2826673984527588, 0.0030851690098643303, -0.3621353805065155, 0.01212697010487318, -0.0032944062259048223, 0.6358776688575745, -0.33286023139953613, -0.011937456205487251, 0.005196055397391319, 0.05086750164628029, -0.02735484391450882, -3.0491225719451904, 2.247509717941284, 1.8303747177124023, 0.29611822962760925, -0.13476261496543884, -0.08979780226945877, 0.02003762498497963, 0.13586516678333282, -0.17602430284023285, -0.16504675149917603, 1.1679346561431885, -0.1179727166891098, 0.08318250626325607, -0.03259709104895592]} +{"t": 26.7574, "q": [-0.3647005259990692, -0.010502655059099197, 0.008021745830774307, 0.6106010675430298, -0.2826632559299469, 0.0030779745429754257, -0.3621439039707184, 0.012118448503315449, -0.0032944062259048223, 0.6358350515365601, -0.3328684866428375, -0.011922863312065601, 0.005182663444429636, 0.0507611483335495, -0.02730296179652214, -3.0491344928741455, 2.247509717941284, 1.8303747177124023, 0.2961541712284088, -0.1347745954990387, -0.08980978280305862, 0.020025640726089478, 0.135949045419693, -0.1760362833738327, -0.16504675149917603, 1.167946696281433, -0.11796072870492935, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.7741, "q": [-0.36467495560646057, -0.010494133457541466, 0.00806192122399807, 0.610584020614624, -0.2826673984527588, 0.0030851690098643303, -0.3621439039707184, 0.01212697010487318, -0.0032944062259048223, 0.6357839107513428, -0.33286023139953613, -0.011937456205487251, 0.0051424880512058735, 0.05065460503101349, -0.027211962267756462, -3.0491464138031006, 2.247509717941284, 1.8303626775741577, 0.29621410369873047, -0.134750634431839, -0.08980978280305862, 0.020025640726089478, 0.1359730213880539, -0.17597636580467224, -0.1651066690683365, 1.1680305004119873, -0.1179727166891098, 0.08314655721187592, -0.03259709104895592]} +{"t": 26.7908, "q": [-0.36464938521385193, -0.010511177591979504, 0.008075312711298466, 0.6105584502220154, -0.28265905380249023, 0.003085239790380001, -0.3621268570423126, 0.01212697010487318, -0.003254230599850416, 0.6357839107513428, -0.3328602612018585, -0.011922936886548996, 0.0051424880512058735, 0.050510093569755554, -0.027105234563350677, -3.0491583347320557, 2.247509717941284, 1.8303626775741577, 0.29627400636672974, -0.13478657603263855, -0.08983375132083893, 0.02003762498497963, 0.1359730213880539, -0.1759643852710724, -0.16508270800113678, 1.1680904626846313, -0.1179727166891098, 0.08318250626325607, -0.03256113827228546]} +{"t": 26.8077, "q": [-0.36459827423095703, -0.010502655059099197, 0.008102096617221832, 0.6105328798294067, -0.2826591432094574, 0.0030707798432558775, -0.3621268570423126, 0.012135492637753487, -0.003347973804920912, 0.6357753872871399, -0.3328438103199005, -0.01192308496683836, 0.005155880004167557, 0.0503883920609951, -0.027013815939426422, -3.0491464138031006, 2.24749755859375, 1.8303747177124023, 0.29627400636672974, -0.134750634431839, -0.08980978280305862, 0.02003762498497963, 0.1359730213880539, -0.1759404093027115, -0.16509468853473663, 1.1681504249572754, -0.11796072870492935, 0.08318250626325607, -0.03257312253117561]} +{"t": 26.8244, "q": [-0.3646153211593628, -0.010502655059099197, 0.008102096617221832, 0.6105328798294067, -0.28264233469963074, 0.0031142293009907007, -0.36211833357810974, 0.012118448503315449, -0.003347973804920912, 0.6357412934303284, -0.3328397274017334, -0.011901323683559895, 0.005115704145282507, 0.050213467329740524, -0.026886677369475365, -3.049182415008545, 2.247509717941284, 1.830326795578003, 0.2962620258331299, -0.13476261496543884, -0.08980978280305862, 0.020025640726089478, 0.1359730213880539, -0.17590445280075073, -0.16509468853473663, 1.1681623458862305, -0.11796072870492935, 0.08317052572965622, -0.032585106790065765]} +{"t": 26.8412, "q": [-0.3646067976951599, -0.010502655059099197, 0.008075312711298466, 0.6104987859725952, -0.2826423943042755, 0.0030997872818261385, -0.36211833357810974, 0.012144014239311218, -0.003347973804920912, 0.6356901526451111, -0.3328397274017334, -0.011901323683559895, 0.00512909609824419, 0.050008174031972885, -0.026748916134238243, -3.049182415008545, 2.247509717941284, 1.830338716506958, 0.2962260842323303, -0.13478657603263855, -0.08980978280305862, 0.02003762498497963, 0.13591310381889343, -0.17583255469799042, -0.16505873203277588, 1.168174386024475, -0.11798469722270966, 0.08317052572965622, -0.03259709104895592]} +{"t": 26.8579, "q": [-0.36458122730255127, -0.010494133457541466, 0.008102096617221832, 0.6104561686515808, -0.2826548218727112, 0.0031069291289895773, -0.36211833357810974, 0.012152536772191525, -0.003347973804920912, 0.6356645822525024, -0.3328438997268677, -0.011879507452249527, 0.005155880004167557, 0.04975725710391998, -0.026580536738038063, -3.0492184162139893, 2.247509717941284, 1.830338716506958, 0.2962260842323303, -0.13473863899707794, -0.08982177078723907, 0.02003762498497963, 0.13585317134857178, -0.1757846176624298, -0.16507071256637573, 1.1681983470916748, -0.1179727166891098, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.8746, "q": [-0.36458975076675415, -0.010502655059099197, 0.008102096617221832, 0.6104561686515808, -0.2826382517814636, 0.0030925925821065903, -0.3620586693286896, 0.012152536772191525, -0.0033747577108442783, 0.6356390118598938, -0.3328191936016083, -0.01189424842596054, 0.005115704145282507, 0.04950625076889992, -0.02639259397983551, -3.0492541790008545, 2.247509717941284, 1.8303626775741577, 0.2962260842323303, -0.13471467792987823, -0.08982177078723907, 0.02003762498497963, 0.13575729727745056, -0.17574866116046906, -0.16508270800113678, 1.1682102680206299, -0.11796072870492935, 0.08318250626325607, -0.03259709104895592]} +{"t": 26.8914, "q": [-0.36453860998153687, -0.010502655059099197, 0.008115489035844803, 0.6103965044021606, -0.282646507024765, 0.0031069819815456867, -0.36197346448898315, 0.012161058373749256, -0.0033747577108442783, 0.635621964931488, -0.33282333612442017, -0.011886951513588428, 0.005155880004167557, 0.049179114401340485, -0.026134062558412552, -3.0492541790008545, 2.247509717941284, 1.8303626775741577, 0.2962260842323303, -0.13476261496543884, -0.08980978280305862, 0.02003762498497963, 0.1357453167438507, -0.17565278708934784, -0.16509468853473663, 1.1682102680206299, -0.11796072870492935, 0.08315853774547577, -0.03259709104895592]} +{"t": 26.9081, "q": [-0.364530086517334, -0.010502655059099197, 0.008075312711298466, 0.610370934009552, -0.2826507091522217, 0.0030997346621006727, -0.3619052767753601, 0.012178102508187294, -0.0033881496638059616, 0.6355708241462708, -0.3328191637992859, -0.01190876867622137, 0.00512909609824419, 0.048882581293582916, -0.025935109704732895, -3.0492663383483887, 2.247509717941284, 1.8303507566452026, 0.2961901128292084, -0.13473863899707794, -0.08978581428527832, 0.02003762498497963, 0.13573333621025085, -0.17555691301822662, -0.16507071256637573, 1.1682462692260742, -0.11793676018714905, 0.08318250626325607, -0.03259709104895592]} +{"t": 26.9248, "q": [-0.3644874691963196, -0.010494133457541466, 0.00806192122399807, 0.6103283166885376, -0.28263407945632935, 0.0030998399015516043, -0.36170926690101624, 0.012203669175505638, -0.003468500915914774, 0.6355282068252563, -0.332806795835495, -0.01191615778952837, 0.00516927195712924, 0.04855566471815109, -0.025716040283441544, -3.0492782592773438, 2.247509717941284, 1.830338716506958, 0.29614219069480896, -0.13471467792987823, -0.08980978280305862, 0.020025640726089478, 0.13570936024188995, -0.1754850149154663, -0.16508270800113678, 1.1682462692260742, -0.11793676018714905, 0.08315853774547577, -0.03259709104895592]} +{"t": 26.9415, "q": [-0.36450451612472534, -0.010477089323103428, 0.008048529736697674, 0.6102772355079651, -0.2826423943042755, 0.0030997872818261385, -0.36165812611579895, 0.012195147573947906, -0.003468500915914774, 0.6354430317878723, -0.3328191637992859, -0.01190876867622137, 0.00512909609824419, 0.04828199744224548, -0.025542564690113068, -3.0492663383483887, 2.247485637664795, 1.830338716506958, 0.2961302101612091, -0.13473863899707794, -0.08978581428527832, 0.02003762498497963, 0.13575729727745056, -0.17542508244514465, -0.16511864960193634, 1.1683061122894287, -0.11796072870492935, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.9583, "q": [-0.36445337533950806, -0.010485611855983734, 0.008021745830774307, 0.6102687120437622, -0.282646507024765, 0.0031069819815456867, -0.3614110052585602, 0.012220713309943676, -0.003481892868876457, 0.6353492736816406, -0.3328191936016083, -0.01189424842596054, 0.00512909609824419, 0.04797035828232765, -0.025353411212563515, -3.0492303371429443, 2.247509717941284, 1.830338716506958, 0.29614219069480896, -0.13473863899707794, -0.08980978280305862, 0.02003762498497963, 0.13581722974777222, -0.17540112137794495, -0.16509468853473663, 1.1683781147003174, -0.11793676018714905, 0.08315853774547577, -0.032585106790065765]} +{"t": 26.975, "q": [-0.3644704222679138, -0.010468566790223122, 0.00798156950622797, 0.6102431416511536, -0.2826589047908783, 0.003128583775833249, -0.3611723780632019, 0.012195147573947906, -0.0034551091957837343, 0.6352299451828003, -0.33284392952919006, -0.011864987201988697, 0.00512909609824419, 0.04760530963540077, -0.02508951909840107, -3.0492541790008545, 2.247509717941284, 1.8303147554397583, 0.2961541712284088, -0.1347745954990387, -0.08980978280305862, 0.02003762498497963, 0.13579325377941132, -0.1754131019115448, -0.16507071256637573, 1.1683900356292725, -0.1179247796535492, 0.08317052572965622, -0.03259709104895592]} +{"t": 26.9918, "q": [-0.3644789457321167, -0.010468566790223122, 0.007954785600304604, 0.610209047794342, -0.2826506495475769, 0.003114176681265235, -0.36093375086784363, 0.012203669175505638, -0.003441717242822051, 0.6350510120391846, -0.33283984661102295, -0.01185776386409998, 0.005115704145282507, 0.0473012775182724, -0.024905459955334663, -3.0492422580718994, 2.2475335597991943, 1.8302788734436035, 0.29614219069480896, -0.1347266584634781, -0.08979780226945877, 0.02004960924386978, 0.13586516678333282, -0.17537714540958405, -0.16511864960193634, 1.1683781147003174, -0.11793676018714905, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.0085, "q": [-0.3644704222679138, -0.010468566790223122, 0.007874434813857079, 0.6101664304733276, -0.28266721963882446, 0.0031285311561077833, -0.360533207654953, 0.012195147573947906, -0.0034283252898603678, 0.6348720192909241, -0.33283576369285583, -0.011850541457533836, 0.00508892023935914, 0.046943921595811844, -0.024666210636496544, -3.0492541790008545, 2.247509717941284, 1.8302547931671143, 0.2961302101612091, -0.13471467792987823, -0.08980978280305862, 0.020025640726089478, 0.13586516678333282, -0.17537714540958405, -0.1651066690683365, 1.1684260368347168, -0.11796072870492935, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.0253, "q": [-0.3644874691963196, -0.010451522655785084, 0.007713731843978167, 0.6101238131523132, -0.28268781304359436, 0.003178946441039443, -0.3602605164051056, 0.0121866250410676, -0.0034149333368986845, 0.6345908045768738, -0.33283981680870056, -0.01187228411436081, 0.00512909609824419, 0.046769142150878906, -0.02456868626177311, -3.0492422580718994, 2.247509717941284, 1.8302308320999146, 0.2961302101612091, -0.1347266584634781, -0.08980978280305862, 0.02003762498497963, 0.13591310381889343, -0.1753651648759842, -0.16507071256637573, 1.1684619188308716, -0.11796072870492935, 0.08317052572965622, -0.03260907530784607]} +{"t": 27.042, "q": [-0.3644704222679138, -0.010451522655785084, 0.007660164497792721, 0.6101067662239075, -0.28273746371269226, 0.0032508759759366512, -0.3598940670490265, 0.012169580906629562, -0.0034015413839370012, 0.634343683719635, -0.33284807205200195, -0.011857690289616585, 0.005115704145282507, 0.046586718410253525, -0.024456430226564407, -3.0492663383483887, 2.247509717941284, 1.8302308320999146, 0.2961781322956085, -0.13476261496543884, -0.08980978280305862, 0.020025640726089478, 0.13593706488609314, -0.17535318434238434, -0.16511864960193634, 1.168497920036316, -0.11796072870492935, 0.08317052572965622, -0.03260907530784607]} +{"t": 27.0587, "q": [-0.3644874691963196, -0.010451522655785084, 0.007579812780022621, 0.6100811958312988, -0.2827746868133545, 0.003301203716546297, -0.3596554398536682, 0.012152536772191525, -0.0034015413839370012, 0.6341561675071716, -0.33283984661102295, -0.01185776386409998, 0.004995177034288645, 0.04640447720885277, -0.02438337169587612, -3.0492422580718994, 2.247509717941284, 1.8302547931671143, 0.2961541712284088, -0.13476261496543884, -0.08979780226945877, 0.020025640726089478, 0.1359730213880539, -0.1753891408443451, -0.1651306450366974, 1.1685339212417603, -0.1179487481713295, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.0754, "q": [-0.3644874691963196, -0.010434478521347046, 0.007579812780022621, 0.6100641489028931, -0.28280365467071533, 0.0033371243625879288, -0.3594253361225128, 0.012144014239311218, -0.003361365757882595, 0.6339601874351501, -0.3328440189361572, -0.01183592900633812, 0.005035352893173695, 0.04632863402366638, -0.024371646344661713, -3.0492663383483887, 2.247509717941284, 1.8302308320999146, 0.2961901128292084, -0.13476261496543884, -0.08980978280305862, 0.02003762498497963, 0.1359969824552536, -0.17537714540958405, -0.16514262557029724, 1.1685339212417603, -0.11796072870492935, 0.08318250626325607, -0.032585106790065765]} +{"t": 27.0922, "q": [-0.3644789457321167, -0.010443000122904778, 0.007579812780022621, 0.6100300550460815, -0.2828284204006195, 0.003380310023203492, -0.35928046703338623, 0.012118448503315449, -0.0033747577108442783, 0.6337897181510925, -0.332835853099823, -0.011806945316493511, 0.005021960940212011, 0.046252697706222534, -0.024340393021702766, -3.049206256866455, 2.2475335597991943, 1.8302068710327148, 0.2961901128292084, -0.134750634431839, -0.08979780226945877, 0.020061593502759933, 0.1360209584236145, -0.1753891408443451, -0.16511864960193634, 1.1685458421707153, -0.11796072870492935, 0.08319449424743652, -0.03259709104895592]} +{"t": 27.1089, "q": [-0.3644704222679138, -0.010451522655785084, 0.007579812780022621, 0.6099533438682556, -0.28286972641944885, 0.0034522744826972485, -0.35926342010498047, 0.012135492637753487, -0.003334582084789872, 0.6336193084716797, -0.3328072130680084, -0.011741846799850464, 0.005048744846135378, 0.046252697706222534, -0.024340393021702766, -3.0491943359375, 2.24749755859375, 1.8301949501037598, 0.29621410369873047, -0.1347266584634781, -0.08979780226945877, 0.020025640726089478, 0.13603293895721436, -0.17537714540958405, -0.16505873203277588, 1.16855788230896, -0.11796072870492935, 0.08315853774547577, -0.03260907530784607]} +{"t": 27.1258, "q": [-0.3644789457321167, -0.010451522655785084, 0.007579812780022621, 0.6099192500114441, -0.2828614115715027, 0.003452327335253358, -0.35917818546295166, 0.01212697010487318, -0.003347973804920912, 0.6334744095802307, -0.33277449011802673, -0.011669524945318699, 0.004995177034288645, 0.04623749107122421, -0.02433023601770401, -3.049206256866455, 2.247509717941284, 1.8301949501037598, 0.2962021231651306, -0.13478657603263855, -0.08982177078723907, 0.020025640726089478, 0.1360209584236145, -0.1753651648759842, -0.16507071256637573, 1.168569803237915, -0.1179247796535492, 0.08318250626325607, -0.03260907530784607]} +{"t": 27.1425, "q": [-0.36449599266052246, -0.010443000122904778, 0.007606596685945988, 0.6098511219024658, -0.2828655540943146, 0.0034595218021422625, -0.3591526448726654, 0.012135492637753487, -0.003347973804920912, 0.6333550810813904, -0.3327457904815674, -0.011633483693003654, 0.005035352893173695, 0.04624504968523979, -0.024325549602508545, -3.049206256866455, 2.247509717941284, 1.8301949501037598, 0.29627400636672974, -0.13473863899707794, -0.08984573930501938, 0.020025640726089478, 0.13600897789001465, -0.17525731027126312, -0.16511864960193634, 1.1686416864395142, -0.1179966852068901, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.1593, "q": [-0.3644874691963196, -0.010451522655785084, 0.007619988638907671, 0.6098085045814514, -0.28286147117614746, 0.0034378853160887957, -0.35913559794425964, 0.01212697010487318, -0.0033747577108442783, 0.6332272887229919, -0.33272117376327515, -0.01160464808344841, 0.004995177034288645, 0.04625265300273895, -0.024330629035830498, -3.049206256866455, 2.247509717941284, 1.8302189111709595, 0.2962859869003296, -0.134750634431839, -0.08982177078723907, 0.020025640726089478, 0.13608087599277496, -0.17519739270210266, -0.16503477096557617, 1.1686416864395142, -0.1179966852068901, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.176, "q": [-0.3644704222679138, -0.010451522655785084, 0.007606596685945988, 0.6097914576530457, -0.28286972641944885, 0.0034522744826972485, -0.3590759336948395, 0.012135492637753487, -0.003361365757882595, 0.6331761479377747, -0.3327212333679199, -0.011575608514249325, 0.0049817850813269615, 0.04625265300273895, -0.024330629035830498, -3.0491943359375, 2.247485637664795, 1.8302189111709595, 0.29627400636672974, -0.1347266584634781, -0.08978581428527832, 0.02003762498497963, 0.13603293895721436, -0.1751134991645813, -0.16503477096557617, 1.1687016487121582, -0.11798469722270966, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.1927, "q": [-0.36445337533950806, -0.010434478521347046, 0.007606596685945988, 0.6097403168678284, -0.28285717964172363, 0.003474016673862934, -0.3590333163738251, 0.01212697010487318, -0.0033747577108442783, 0.6331164836883545, -0.3327089548110962, -0.011553921736776829, 0.005062136333435774, 0.04625260457396507, -0.02432086318731308, -3.0491943359375, 2.24747371673584, 1.8302068710327148, 0.2962859869003296, -0.13471467792987823, -0.08980978280305862, 0.020025640726089478, 0.13609285652637482, -0.17499366402626038, -0.1651066690683365, 1.1687735319137573, -0.1179487481713295, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.2096, "q": [-0.3644704222679138, -0.010443000122904778, 0.007593204732984304, 0.6097147464752197, -0.28285717964172363, 0.003474016673862934, -0.3589736819267273, 0.01212697010487318, -0.0034015413839370012, 0.6330142021179199, -0.3327006995677948, -0.011568515561521053, 0.005062136333435774, 0.04625260457396507, -0.02432086318731308, -3.049206256866455, 2.24749755859375, 1.8302068710327148, 0.2962859869003296, -0.1347985714673996, -0.08979780226945877, 0.020025640726089478, 0.13609285652637482, -0.1748618334531784, -0.16504675149917603, 1.168785572052002, -0.11796072870492935, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.2263, "q": [-0.3644448518753052, -0.010443000122904778, 0.007566420827060938, 0.6096806526184082, -0.28285717964172363, 0.003474016673862934, -0.3589736819267273, 0.012144014239311218, -0.0034283252898603678, 0.6329545378684998, -0.3327130079269409, -0.01157568208873272, 0.005021960940212011, 0.04625260457396507, -0.02432086318731308, -3.049206256866455, 2.247485637664795, 1.8301949501037598, 0.2962859869003296, -0.13471467792987823, -0.08979780226945877, 0.020025640726089478, 0.1360688954591751, -0.17467008531093597, -0.16508270800113678, 1.1688334941864014, -0.11796072870492935, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.2431, "q": [-0.3644363582134247, -0.010434478521347046, 0.007579812780022621, 0.6096380352973938, -0.28285717964172363, 0.003474016673862934, -0.35889697074890137, 0.012135492637753487, -0.0034551091957837343, 0.6329119205474854, -0.3326801061630249, -0.011575978249311447, 0.00508892023935914, 0.04624495655298233, -0.024306021630764008, -3.049206256866455, 2.24749755859375, 1.8301949501037598, 0.29632195830345154, -0.134750634431839, -0.08979780226945877, 0.02003762498497963, 0.13611683249473572, -0.17450229823589325, -0.16507071256637573, 1.1688693761825562, -0.1179487481713295, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.2598, "q": [-0.36440226435661316, -0.010443000122904778, 0.007539637386798859, 0.6096124649047852, -0.2828530967235565, 0.0034523799549788237, -0.35889697074890137, 0.012152536772191525, -0.0035220684949308634, 0.63285231590271, -0.3326759934425354, -0.01156875491142273, 0.005048744846135378, 0.04623739793896675, -0.024310708045959473, -3.049206256866455, 2.247485637664795, 1.8302068710327148, 0.2963099777698517, -0.13478657603263855, -0.08979780226945877, 0.02003762498497963, 0.13617675006389618, -0.17433452606201172, -0.1651066690683365, 1.1689532995224, -0.1179487481713295, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.2765, "q": [-0.3643511235713959, -0.010425956919789314, 0.007526245433837175, 0.6095868945121765, -0.28284892439842224, 0.0034596272744238377, -0.35886287689208984, 0.012178102508187294, -0.0034952848218381405, 0.6328437924385071, -0.332684189081192, -0.01158320065587759, 0.005021960940212011, 0.04622974991798401, -0.02429586462676525, -3.0492184162139893, 2.247485637664795, 1.8302068710327148, 0.2963339388370514, -0.13476261496543884, -0.08979780226945877, 0.02003762498497963, 0.13614079356193542, -0.17413079738616943, -0.16508270800113678, 1.1689772605895996, -0.11796072870492935, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.2932, "q": [-0.364342600107193, -0.010434478521347046, 0.007512853480875492, 0.6095954179763794, -0.2828530967235565, 0.0034523799549788237, -0.3588458299636841, 0.012161058373749256, -0.0034952848218381405, 0.6328437924385071, -0.3326800763607025, -0.011590497568249702, 0.005062136333435774, 0.04625247046351433, -0.024291571229696274, -3.0492184162139893, 2.247485637664795, 1.8301829099655151, 0.29632195830345154, -0.1347745954990387, -0.08978581428527832, 0.02003762498497963, 0.13611683249473572, -0.1739630103111267, -0.16509468853473663, 1.1689893007278442, -0.11793676018714905, 0.08317052572965622, -0.032585106790065765]} +{"t": 27.31, "q": [-0.3643511235713959, -0.010451522655785084, 0.007512853480875492, 0.6095868945121765, -0.28284892439842224, 0.0034596272744238377, -0.3587861955165863, 0.012169580906629562, -0.0035220684949308634, 0.6328437924385071, -0.3326759934425354, -0.01156875491142273, 0.005048744846135378, 0.046222150325775146, -0.024290787056088448, -3.049206256866455, 2.247485637664795, 1.8302068710327148, 0.2962859869003296, -0.1347745954990387, -0.08978581428527832, 0.02003762498497963, 0.13609285652637482, -0.17375928163528442, -0.16505873203277588, 1.1690012216567993, -0.11796072870492935, 0.08318250626325607, -0.032585106790065765]} +{"t": 27.3267, "q": [-0.364342600107193, -0.010425956919789314, 0.007499461527913809, 0.6095613241195679, -0.28284481167793274, 0.0034524325747042894, -0.35871800780296326, 0.012169580906629562, -0.003481892868876457, 0.6328437924385071, -0.3326636254787445, -0.011590645648539066, 0.005075528286397457, 0.046222150325775146, -0.024290787056088448, -3.0492184162139893, 2.247485637664795, 1.8301829099655151, 0.29629799723625183, -0.1347985714673996, -0.08977383375167847, 0.02003762498497963, 0.13605691492557526, -0.173567533493042, -0.1651066690683365, 1.1689893007278442, -0.11796072870492935, 0.08319449424743652, -0.03259709104895592]} +{"t": 27.3435, "q": [-0.36436817049980164, -0.010425956919789314, 0.0074860695749521255, 0.6095698475837708, -0.28284892439842224, 0.0034596272744238377, -0.35868391394615173, 0.0121866250410676, -0.0035086767747998238, 0.6328267455101013, -0.332675963640213, -0.01158327516168356, 0.005048744846135378, 0.046222150325775146, -0.024290787056088448, -3.0492422580718994, 2.2474617958068848, 1.8302189111709595, 0.29625004529953003, -0.13478657603263855, -0.08978581428527832, 0.020025640726089478, 0.1359969824552536, -0.1733638048171997, -0.16509468853473663, 1.1689532995224, -0.1179966852068901, 0.08318250626325607, -0.03260907530784607]} +{"t": 27.3602, "q": [-0.36432555317878723, -0.010417434386909008, 0.007512853480875492, 0.6095698475837708, -0.2828572392463684, 0.003459574654698372, -0.35859018564224243, 0.0121866250410676, -0.003468500915914774, 0.6328437924385071, -0.3326554000377655, -0.011590719223022461, 0.005048744846135378, 0.04624486342072487, -0.02428649179637432, -3.0492782592773438, 2.24747371673584, 1.8302189111709595, 0.29627400636672974, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.13591310381889343, -0.17317205667495728, -0.16509468853473663, 1.1689893007278442, -0.11793676018714905, 0.08318250626325607, -0.03257312253117561]} +{"t": 27.3769, "q": [-0.36430850625038147, -0.010425956919789314, 0.007512853480875492, 0.6095698475837708, -0.28285717964172363, 0.003474016673862934, -0.35853904485702515, 0.012195147573947906, -0.003468500915914774, 0.6327841281890869, -0.3326718807220459, -0.011576051823794842, 0.005035352893173695, 0.04623730853199959, -0.024291178211569786, -3.0492782592773438, 2.24747371673584, 1.8302189111709595, 0.2962859869003296, -0.1347266584634781, -0.08978581428527832, 0.02003762498497963, 0.13586516678333282, -0.1729922890663147, -0.16509468853473663, 1.1689772605895996, -0.1179487481713295, 0.08318250626325607, -0.032585106790065765]} +{"t": 27.3938, "q": [-0.36435964703559875, -0.010425956919789314, 0.007539637386798859, 0.6095442771911621, -0.2828530967235565, 0.0034523799549788237, -0.3585219979286194, 0.0121866250410676, -0.0035220684949308634, 0.632775604724884, -0.3326718807220459, -0.011576051823794842, 0.004995177034288645, 0.04626007005572319, -0.024296648800373077, -3.049290180206299, 2.24747371673584, 1.8302189111709595, 0.29625004529953003, -0.13476261496543884, -0.08978581428527832, 0.02004960924386978, 0.13582921028137207, -0.17281252145767212, -0.16509468853473663, 1.1690012216567993, -0.11796072870492935, 0.08318250626325607, -0.03257312253117561]} +{"t": 27.4105, "q": [-0.364342600107193, -0.010425956919789314, 0.007566420827060938, 0.6095102429389954, -0.2828655540943146, 0.0034595218021422625, -0.35853052139282227, 0.012169580906629562, -0.003468500915914774, 0.632775604724884, -0.3326718807220459, -0.011576051823794842, 0.005021960940212011, 0.04624495655298233, -0.024306021630764008, -3.0492663383483887, 2.24747371673584, 1.8302189111709595, 0.29625004529953003, -0.13473863899707794, -0.08978581428527832, 0.020013656467199326, 0.13586516678333282, -0.17263276875019073, -0.16509468853473663, 1.1689893007278442, -0.11793676018714905, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.4273, "q": [-0.36436817049980164, -0.010425956919789314, 0.007566420827060938, 0.6095017194747925, -0.28286969661712646, 0.003466734429821372, -0.35853052139282227, 0.012161058373749256, -0.003468500915914774, 0.6327585577964783, -0.3326965868473053, -0.011561292223632336, 0.005021960940212011, 0.04625247046351433, -0.024291571229696274, -3.0492663383483887, 2.24747371673584, 1.8302068710327148, 0.2962260842323303, -0.13483451306819916, -0.08979780226945877, 0.020025640726089478, 0.13591310381889343, -0.1724410206079483, -0.16509468853473663, 1.1689893007278442, -0.11793676018714905, 0.08318250626325607, -0.032585106790065765]} +{"t": 27.4441, "q": [-0.3643852174282074, -0.010434478521347046, 0.007539637386798859, 0.6094846725463867, -0.28286972641944885, 0.0034522744826972485, -0.3585219979286194, 0.012178102508187294, -0.0034551091957837343, 0.6327585577964783, -0.3326924741268158, -0.011568589136004448, 0.004995177034288645, 0.04624495655298233, -0.024306021630764008, -3.0492541790008545, 2.24747371673584, 1.8301949501037598, 0.2962260842323303, -0.13478657603263855, -0.08978581428527832, 0.02003762498497963, 0.1359730213880539, -0.17223729193210602, -0.16507071256637573, 1.169013261795044, -0.11796072870492935, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.4608, "q": [-0.3643852174282074, -0.010417434386909008, 0.007539637386798859, 0.609467625617981, -0.28287795186042786, 0.0034811238292604685, -0.35853904485702515, 0.0121866250410676, -0.0034952848218381405, 0.6327500343322754, -0.3326883614063263, -0.01156136579811573, 0.005021960940212011, 0.04624495655298233, -0.024306021630764008, -3.0492303371429443, 2.24747371673584, 1.8302068710327148, 0.29621410369873047, -0.1347745954990387, -0.08978581428527832, 0.02004960924386978, 0.1359969824552536, -0.17202156782150269, -0.16509468853473663, 1.1690731048583984, -0.1179727166891098, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.4776, "q": [-0.36435964703559875, -0.010408911854028702, 0.007526245433837175, 0.6094335317611694, -0.28287380933761597, 0.0034739291295409203, -0.3585219979286194, 0.012178102508187294, -0.0035220684949308634, 0.6327159404754639, -0.3326842784881592, -0.011554143391549587, 0.004995177034288645, 0.04625255987048149, -0.02431110106408596, -3.0492184162139893, 2.24747371673584, 1.8302068710327148, 0.2962260842323303, -0.13478657603263855, -0.08979780226945877, 0.02003762498497963, 0.13603293895721436, -0.17178188264369965, -0.1651066690683365, 1.1690970659255981, -0.1179966852068901, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.4943, "q": [-0.36435964703559875, -0.010425956919789314, 0.007526245433837175, 0.6094335317611694, -0.28288212418556213, 0.003473876276984811, -0.3585219979286194, 0.012178102508187294, -0.0034283252898603678, 0.632707417011261, -0.3326965868473053, -0.011561292223632336, 0.005048744846135378, 0.04626007005572319, -0.024296648800373077, -3.0492422580718994, 2.24747371673584, 1.8302189111709595, 0.29621410369873047, -0.13478657603263855, -0.08983375132083893, 0.020025640726089478, 0.13603293895721436, -0.1715421974658966, -0.16504675149917603, 1.1690731048583984, -0.1179727166891098, 0.08315853774547577, -0.03259709104895592]} +{"t": 27.511, "q": [-0.36436817049980164, -0.010425956919789314, 0.007539637386798859, 0.6093482971191406, -0.28287801146507263, 0.0034666818100959063, -0.3585219979286194, 0.012169580906629562, -0.0034283252898603678, 0.6326818466186523, -0.3326925039291382, -0.011554068885743618, 0.005008568987250328, 0.04626007005572319, -0.024296648800373077, -3.0492184162139893, 2.24747371673584, 1.8302189111709595, 0.2962260842323303, -0.1347745954990387, -0.08980978280305862, 0.020025640726089478, 0.13605691492557526, -0.1712425947189331, -0.16504675149917603, 1.169145107269287, -0.11798469722270966, 0.08318250626325607, -0.03260907530784607]} +{"t": 27.5277, "q": [-0.3643766939640045, -0.010434478521347046, 0.007526245433837175, 0.6093056797981262, -0.28287380933761597, 0.0034739291295409203, -0.35853052139282227, 0.012178102508187294, -0.0034283252898603678, 0.6326647996902466, -0.33269253373146057, -0.011539549566805363, 0.00508892023935914, 0.04626011848449707, -0.024306414648890495, -3.0492422580718994, 2.247485637664795, 1.8301949501037598, 0.2962260842323303, -0.13478657603263855, -0.08978581428527832, 0.02004960924386978, 0.13600897789001465, -0.17093101143836975, -0.16507071256637573, 1.169180989265442, -0.11796072870492935, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.5445, "q": [-0.36436817049980164, -0.010425956919789314, 0.007526245433837175, 0.6092801094055176, -0.28287380933761597, 0.0034739291295409203, -0.35853904485702515, 0.012169580906629562, -0.0034015413839370012, 0.6326307058334351, -0.3327048420906067, -0.011546698398888111, 0.00508892023935914, 0.04624495655298233, -0.024306021630764008, -3.0492184162139893, 2.247485637664795, 1.8301949501037598, 0.2962380647659302, -0.134750634431839, -0.08978581428527832, 0.02003762498497963, 0.13603293895721436, -0.17067933082580566, -0.16507071256637573, 1.1691690683364868, -0.11798469722270966, 0.08319449424743652, -0.032585106790065765]} +{"t": 27.5612, "q": [-0.3643852174282074, -0.010417434386909008, 0.007512853480875492, 0.6092119216918945, -0.28287380933761597, 0.0034739291295409203, -0.35853052139282227, 0.012161058373749256, -0.0034015413839370012, 0.632562518119812, -0.3326966166496277, -0.011546771973371506, 0.004995177034288645, 0.04626016318798065, -0.024316176772117615, -3.0492663383483887, 2.247485637664795, 1.8301949501037598, 0.2961781322956085, -0.13478657603263855, -0.08980978280305862, 0.020025640726089478, 0.13600897789001465, -0.17037972807884216, -0.16509468853473663, 1.1691930294036865, -0.11796072870492935, 0.08317052572965622, -0.032585106790065765]} +{"t": 27.5779, "q": [-0.3643852174282074, -0.010408911854028702, 0.0074860695749521255, 0.6091523170471191, -0.28286969661712646, 0.003466734429821372, -0.3585219979286194, 0.012169580906629562, -0.0034149333368986845, 0.6324432492256165, -0.3327007293701172, -0.011553995311260223, 0.005062136333435774, 0.04625255987048149, -0.02431110106408596, -3.0492422580718994, 2.24749755859375, 1.8301949501037598, 0.2961781322956085, -0.13478657603263855, -0.08982177078723907, 0.020025640726089478, 0.13605691492557526, -0.17015202343463898, -0.16511864960193634, 1.1692169904708862, -0.11796072870492935, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.5946, "q": [-0.36436817049980164, -0.010408911854028702, 0.007472677621990442, 0.6091437935829163, -0.28286969661712646, 0.003466734429821372, -0.35853904485702515, 0.012169580906629562, -0.0033747577108442783, 0.6324091553688049, -0.3326965868473053, -0.011561292223632336, 0.005048744846135378, 0.04625255987048149, -0.02431110106408596, -3.0492422580718994, 2.247485637664795, 1.8301949501037598, 0.29616615176200867, -0.1347745954990387, -0.08978581428527832, 0.02003762498497963, 0.13608087599277496, -0.16990035772323608, -0.16509468853473663, 1.169240951538086, -0.1179487481713295, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.6114, "q": [-0.36436817049980164, -0.01040039025247097, 0.007472677621990442, 0.6090585589408875, -0.28287380933761597, 0.0034739291295409203, -0.358547568321228, 0.012169580906629562, -0.0034015413839370012, 0.6323580145835876, -0.3327089548110962, -0.011553921736776829, 0.005021960940212011, 0.04626007005572319, -0.024296648800373077, -3.0492663383483887, 2.247485637664795, 1.8301829099655151, 0.2961781322956085, -0.13478657603263855, -0.08977383375167847, 0.02003762498497963, 0.13605691492557526, -0.16962473094463348, -0.16505873203277588, 1.169252872467041, -0.11798469722270966, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.6281, "q": [-0.3643852174282074, -0.010408911854028702, 0.0074860695749521255, 0.6090244650840759, -0.2828655242919922, 0.003473981749266386, -0.3585219979286194, 0.0121866250410676, -0.0034015413839370012, 0.6323494911193848, -0.3326965868473053, -0.011561292223632336, 0.005035352893173695, 0.04625247046351433, -0.024291571229696274, -3.0492422580718994, 2.247485637664795, 1.83017098903656, 0.2961541712284088, -0.13478657603263855, -0.08980978280305862, 0.02004960924386978, 0.1360688954591751, -0.1693970263004303, -0.16508270800113678, 1.169252872467041, -0.11796072870492935, 0.08315853774547577, -0.03260907530784607]} +{"t": 27.6448, "q": [-0.3643852174282074, -0.010391868650913239, 0.0074860695749521255, 0.6090500354766846, -0.2828613817691803, 0.00346676935441792, -0.35853052139282227, 0.012178102508187294, -0.003441717242822051, 0.6323239207267761, -0.3327007293701172, -0.011553995311260223, 0.005048744846135378, 0.04625247046351433, -0.024291571229696274, -3.0492422580718994, 2.24749755859375, 1.8302068710327148, 0.29616615176200867, -0.13476261496543884, -0.08980978280305862, 0.02003762498497963, 0.13609285652637482, -0.1691453605890274, -0.16508270800113678, 1.1692768335342407, -0.1179727166891098, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.6615, "q": [-0.36436817049980164, -0.010408911854028702, 0.007499461527913809, 0.6090074181556702, -0.2828655540943146, 0.0034595218021422625, -0.35853052139282227, 0.012169580906629562, -0.0034149333368986845, 0.632264256477356, -0.332684189081192, -0.01158320065587759, 0.005062136333435774, 0.04625255987048149, -0.02431110106408596, -3.0492184162139893, 2.24749755859375, 1.8301829099655151, 0.29616615176200867, -0.134750634431839, -0.08982177078723907, 0.02003762498497963, 0.1360688954591751, -0.16888169944286346, -0.16508270800113678, 1.16930091381073, -0.11796072870492935, 0.08318250626325607, -0.03260907530784607]} +{"t": 27.6783, "q": [-0.364342600107193, -0.010391868650913239, 0.007472677621990442, 0.6089988946914673, -0.2828613817691803, 0.00346676935441792, -0.3585219979286194, 0.012178102508187294, -0.0034283252898603678, 0.6322386860847473, -0.3326842784881592, -0.011554143391549587, 0.005021960940212011, 0.04624491184949875, -0.02429625764489174, -3.049206256866455, 2.247509717941284, 1.8301829099655151, 0.29616615176200867, -0.13473863899707794, -0.08980978280305862, 0.02003762498497963, 0.1360688954591751, -0.1685701161623001, -0.16504675149917603, 1.1693248748779297, -0.11798469722270966, 0.08318250626325607, -0.03260907530784607]} +{"t": 27.695, "q": [-0.36435964703559875, -0.010408911854028702, 0.0074860695749521255, 0.6089903712272644, -0.2828613817691803, 0.00346676935441792, -0.35853904485702515, 0.012178102508187294, -0.0034551091957837343, 0.6322216391563416, -0.3326801061630249, -0.011575978249311447, 0.005008568987250328, 0.04625247046351433, -0.024291571229696274, -3.0492422580718994, 2.247485637664795, 1.8301949501037598, 0.29616615176200867, -0.13481055200099945, -0.08980978280305862, 0.02003762498497963, 0.1360688954591751, -0.1681986004114151, -0.1651066690683365, 1.1693367958068848, -0.11796072870492935, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.7117, "q": [-0.36430850625038147, -0.010408911854028702, 0.007512853480875492, 0.6089903712272644, -0.2828530967235565, 0.0034523799549788237, -0.35853052139282227, 0.012203669175505638, -0.003481892868876457, 0.6322131156921387, -0.33266356587409973, -0.011605165898799896, 0.005048744846135378, 0.04625247046351433, -0.024291571229696274, -3.0492184162139893, 2.247485637664795, 1.8301829099655151, 0.29616615176200867, -0.1347985714673996, -0.08979780226945877, 0.02004960924386978, 0.13605691492557526, -0.16788701713085175, -0.16507071256637573, 1.1693607568740845, -0.1179487481713295, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.7285, "q": [-0.3642999827861786, -0.010417434386909008, 0.007512853480875492, 0.6089903712272644, -0.2828655242919922, 0.003473981749266386, -0.3585219979286194, 0.012212191708385944, -0.003575636073946953, 0.6322301626205444, -0.33266356587409973, -0.011605165898799896, 0.005021960940212011, 0.04624491184949875, -0.02429625764489174, -3.0492422580718994, 2.247485637664795, 1.8301949501037598, 0.29616615176200867, -0.13478657603263855, -0.08979780226945877, 0.02004960924386978, 0.13600897789001465, -0.1675274819135666, -0.1651066690683365, 1.1693607568740845, -0.11793676018714905, 0.08318250626325607, -0.03260907530784607]} +{"t": 27.7454, "q": [-0.3642999827861786, -0.010408911854028702, 0.007499461527913809, 0.6089818477630615, -0.2828364372253418, 0.003466927446424961, -0.35844528675079346, 0.012203669175505638, -0.0035354604478925467, 0.6322216391563416, -0.3326306641101837, -0.011605478823184967, 0.005048744846135378, 0.04625247046351433, -0.024291571229696274, -3.0492422580718994, 2.247485637664795, 1.8301949501037598, 0.2961541712284088, -0.13478657603263855, -0.08980978280305862, 0.020025640726089478, 0.13593706488609314, -0.16712002456188202, -0.16505873203277588, 1.1693607568740845, -0.1179487481713295, 0.08318250626325607, -0.03260907530784607]} +{"t": 27.7621, "q": [-0.36427441239356995, -0.010408911854028702, 0.007526245433837175, 0.6089988946914673, -0.28284481167793274, 0.0034524325747042894, -0.3584112226963043, 0.012203669175505638, -0.0036425956059247255, 0.6322386860847473, -0.33261823654174805, -0.011641889810562134, 0.005048744846135378, 0.04624491184949875, -0.02429625764489174, -3.0492422580718994, 2.247485637664795, 1.8302068710327148, 0.2960582971572876, -0.13476261496543884, -0.08979780226945877, 0.02004960924386978, 0.1359250843524933, -0.16660469770431519, -0.16509468853473663, 1.1693847179412842, -0.11796072870492935, 0.08318250626325607, -0.032645028084516525]} +{"t": 27.7788, "q": [-0.3642914593219757, -0.01040039025247097, 0.007512853480875492, 0.6089903712272644, -0.28284892439842224, 0.0034596272744238377, -0.3583430349826813, 0.012229235842823982, -0.0036024199798703194, 0.6322216391563416, -0.3326388895511627, -0.011605405248701572, 0.005035352893173695, 0.04624486342072487, -0.02428649179637432, -3.0492422580718994, 2.247509717941284, 1.8301949501037598, 0.2960582971572876, -0.1347985714673996, -0.08978581428527832, 0.02003762498497963, 0.13586516678333282, -0.16594555974006653, -0.16504675149917603, 1.1693967580795288, -0.1179727166891098, 0.08317052572965622, -0.032645028084516525]} +{"t": 27.7958, "q": [-0.36430850625038147, -0.010408911854028702, 0.007512853480875492, 0.6089818477630615, -0.28284475207328796, 0.0034668745938688517, -0.35830894112586975, 0.012203669175505638, -0.003575636073946953, 0.6322301626205444, -0.3326430320739746, -0.011598090641200542, 0.005102312192320824, 0.04624491184949875, -0.02429625764489174, -3.0492184162139893, 2.247509717941284, 1.8302068710327148, 0.2960582971572876, -0.134750634431839, -0.08980978280305862, 0.02003762498497963, 0.13580523431301117, -0.16526246070861816, -0.16514262557029724, 1.169372797012329, -0.11796072870492935, 0.08317052572965622, -0.03268098086118698]} +{"t": 27.8125, "q": [-0.36427441239356995, -0.010391868650913239, 0.007499461527913809, 0.6089903712272644, -0.2828364372253418, 0.003466927446424961, -0.3581896424293518, 0.012203669175505638, -0.0036024199798703194, 0.6322301626205444, -0.33262237906455994, -0.011634592898190022, 0.00512909609824419, 0.04625247046351433, -0.024291571229696274, -3.0492184162139893, 2.24747371673584, 1.8301949501037598, 0.2960582971572876, -0.13476261496543884, -0.08982177078723907, 0.020025640726089478, 0.13570936024188995, -0.16445952653884888, -0.16509468853473663, 1.1693847179412842, -0.1179727166891098, 0.08317052572965622, -0.03265701234340668]} +{"t": 27.8292, "q": [-0.36426588892936707, -0.010391868650913239, 0.007459285669028759, 0.6089903712272644, -0.28284481167793274, 0.0034524325747042894, -0.35816407203674316, 0.012212191708385944, -0.003575636073946953, 0.6322472095489502, -0.3326141834259033, -0.01162014715373516, 0.00516927195712924, 0.04625247046351433, -0.024291571229696274, -3.049206256866455, 2.247485637664795, 1.83017098903656, 0.2960343360900879, -0.13478657603263855, -0.08979780226945877, 0.020025640726089478, 0.13570936024188995, -0.16341689229011536, -0.16509468853473663, 1.1694086790084839, -0.1179966852068901, 0.08315853774547577, -0.03268098086118698]} +{"t": 27.8461, "q": [-0.36427441239356995, -0.010391868650913239, 0.007445894181728363, 0.6089733242988586, -0.2828364968299866, 0.003452485427260399, -0.35812145471572876, 0.012220713309943676, -0.0036425956059247255, 0.6322557330131531, -0.3326347768306732, -0.011612702161073685, 0.005222839303314686, 0.04625247046351433, -0.024291571229696274, -3.0491943359375, 2.247509717941284, 1.83017098903656, 0.29604631662368774, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.1356734186410904, -0.16231434047222137, -0.16507071256637573, 1.1693967580795288, -0.1179727166891098, 0.08315853774547577, -0.03268098086118698]} +{"t": 27.863, "q": [-0.3642914593219757, -0.010383346118032932, 0.007338759023696184, 0.6089988946914673, -0.28284066915512085, 0.003445238107815385, -0.3580958843231201, 0.012229235842823982, -0.0036292036529630423, 0.6322557330131531, -0.3326347768306732, -0.011612702161073685, 0.005249623209238052, 0.04624491184949875, -0.02429625764489174, -3.049182415008545, 2.247509717941284, 1.8301589488983154, 0.29602235555648804, -0.13478657603263855, -0.08982177078723907, 0.02003762498497963, 0.1356734186410904, -0.16092418134212494, -0.16509468853473663, 1.1693967580795288, -0.11796072870492935, 0.08317052572965622, -0.03266899660229683]} +{"t": 27.8797, "q": [-0.36430850625038147, -0.010383346118032932, 0.0072584073059260845, 0.6089988946914673, -0.2828406095504761, 0.0034596798941493034, -0.3581129312515259, 0.012229235842823982, -0.003669379511848092, 0.6322386860847473, -0.3326471745967865, -0.01159079372882843, 0.005222839303314686, 0.04625247046351433, -0.024291571229696274, -3.049182415008545, 2.247509717941284, 1.8301589488983154, 0.29602235555648804, -0.13478657603263855, -0.08980978280305862, 0.02003762498497963, 0.13570936024188995, -0.15947408974170685, -0.16509468853473663, 1.1693967580795288, -0.11796072870492935, 0.08317052572965622, -0.032704949378967285]} +{"t": 27.8965, "q": [-0.36431702971458435, -0.010391868650913239, 0.007245015352964401, 0.6089733242988586, -0.28284066915512085, 0.003445238107815385, -0.3581129312515259, 0.012237757444381714, -0.0036158119328320026, 0.6322386860847473, -0.3326430320739746, -0.011598090641200542, 0.005249623209238052, 0.04625247046351433, -0.024291571229696274, -3.0491464138031006, 2.247485637664795, 1.830111026763916, 0.2960103750228882, -0.13481055200099945, -0.08979780226945877, 0.02003762498497963, 0.13575729727745056, -0.1580120027065277, -0.16508270800113678, 1.1694086790084839, -0.11796072870492935, 0.08315853774547577, -0.032704949378967285]} +{"t": 27.9134, "q": [-0.3642914593219757, -0.010383346118032932, 0.007178056053817272, 0.6089903712272644, -0.28283652663230896, 0.0034380434080958366, -0.358104407787323, 0.012220713309943676, -0.0036024199798703194, 0.6322472095489502, -0.332651287317276, -0.011583496816456318, 0.005196055397391319, 0.04625247046351433, -0.024291571229696274, -3.0491583347320557, 2.247485637664795, 1.8300631046295166, 0.29602235555648804, -0.13473863899707794, -0.08980978280305862, 0.02003762498497963, 0.13585317134857178, -0.15631024539470673, -0.16508270800113678, 1.1694446802139282, -0.11796072870492935, 0.08319449424743652, -0.03269296512007713]} +{"t": 27.9302, "q": [-0.364342600107193, -0.010391868650913239, 0.007164664100855589, 0.6089818477630615, -0.28284066915512085, 0.003445238107815385, -0.35812145471572876, 0.012229235842823982, -0.003562244353815913, 0.6322557330131531, -0.3326719403266907, -0.011547012254595757, 0.005155880004167557, 0.04626007005572319, -0.024296648800373077, -3.0491464138031006, 2.24749755859375, 1.830039143562317, 0.2960103750228882, -0.134750634431839, -0.08982177078723907, 0.02003762498497963, 0.1359250843524933, -0.15477627515792847, -0.16508270800113678, 1.169468641281128, -0.11796072870492935, 0.08315853774547577, -0.032704949378967285]} +{"t": 27.9469, "q": [-0.3643511235713959, -0.010383346118032932, 0.007164664100855589, 0.6089988946914673, -0.2828531563282013, 0.0034379379358142614, -0.35812145471572876, 0.012203669175505638, -0.00354885240085423, 0.6322301626205444, -0.33266782760620117, -0.011554309166967869, 0.00508892023935914, 0.04626011848449707, -0.024306414648890495, -3.049182415008545, 2.247485637664795, 1.8300271034240723, 0.29602235555648804, -0.134750634431839, -0.08982177078723907, 0.02003762498497963, 0.1359730213880539, -0.15331418812274933, -0.1651066690683365, 1.1695046424865723, -0.11796072870492935, 0.08317052572965622, -0.03268098086118698]} +{"t": 27.9637, "q": [-0.3643511235713959, -0.010391868650913239, 0.007151272147893906, 0.6089818477630615, -0.28284481167793274, 0.0034524325747042894, -0.35812145471572876, 0.012203669175505638, -0.003562244353815913, 0.6322216391563416, -0.3326719105243683, -0.011561531573534012, 0.00512909609824419, 0.04627527669072151, -0.024306805804371834, -3.0491583347320557, 2.247485637664795, 1.830039143562317, 0.2960343360900879, -0.13478657603263855, -0.08982177078723907, 0.020013656467199326, 0.13593706488609314, -0.15191203355789185, -0.16509468853473663, 1.169528603553772, -0.11793676018714905, 0.08315853774547577, -0.03269296512007713]} +{"t": 27.9804, "q": [-0.36435964703559875, -0.010383346118032932, 0.007151272147893906, 0.6089903712272644, -0.2828530967235565, 0.0034523799549788237, -0.35812145471572876, 0.012220713309943676, -0.0035220684949308634, 0.6322216391563416, -0.3326883912086487, -0.011546846479177475, 0.00508892023935914, 0.04626016318798065, -0.024316176772117615, -3.049182415008545, 2.247485637664795, 1.8300271034240723, 0.29604631662368774, -0.13476261496543884, -0.08980978280305862, 0.020061593502759933, 0.1359969824552536, -0.15071362257003784, -0.16507071256637573, 1.169540524482727, -0.1179487481713295, 0.08318250626325607, -0.03269296512007713]} +{"t": 27.9971, "q": [-0.3643511235713959, -0.010408911854028702, 0.007164664100855589, 0.6089818477630615, -0.28284481167793274, 0.0034524325747042894, -0.3581129312515259, 0.012195147573947906, -0.003481892868876457, 0.6322045922279358, -0.33267608284950256, -0.011539696715772152, 0.00508892023935914, 0.04625255987048149, -0.02431110106408596, -3.0491943359375, 2.247485637664795, 1.830039143562317, 0.29602235555648804, -0.1347266584634781, -0.08982177078723907, 0.02003762498497963, 0.13600897789001465, -0.1495271772146225, -0.16504675149917603, 1.169600486755371, -0.11791279166936874, 0.08317052572965622, -0.03269296512007713]} +{"t": 28.0138, "q": [-0.36436817049980164, -0.010374823585152626, 0.007178056053817272, 0.6089733242988586, -0.2828614115715027, 0.003452327335253358, -0.3581385016441345, 0.012203669175505638, -0.003481892868876457, 0.6322045922279358, -0.33267608284950256, -0.011539696715772152, 0.00512909609824419, 0.04624495655298233, -0.024306021630764008, -3.0491583347320557, 2.247485637664795, 1.8300151824951172, 0.2960103750228882, -0.134750634431839, -0.08984573930501938, 0.02003762498497963, 0.13603293895721436, -0.14844860136508942, -0.1651066690683365, 1.1696484088897705, -0.11796072870492935, 0.08317052572965622, -0.03268098086118698]} +{"t": 28.0306, "q": [-0.36436817049980164, -0.010391868650913239, 0.0071914480067789555, 0.6089903712272644, -0.2828572988510132, 0.0034451326355338097, -0.3581470251083374, 0.012195147573947906, -0.0035220684949308634, 0.63218754529953, -0.33268019556999207, -0.01154692005366087, 0.0051424880512058735, 0.04625255987048149, -0.02431110106408596, -3.049182415008545, 2.24749755859375, 1.8300151824951172, 0.2960103750228882, -0.13478657603263855, -0.08980978280305862, 0.02003762498497963, 0.1360688954591751, -0.1474299430847168, -0.16508270800113678, 1.1696844100952148, -0.11798469722270966, 0.08318250626325607, -0.03269296512007713]} +{"t": 28.0475, "q": [-0.36436817049980164, -0.010391868650913239, 0.0071914480067789555, 0.6089903712272644, -0.2828572988510132, 0.0034451326355338097, -0.3581385016441345, 0.012178102508187294, -0.0034952848218381405, 0.6321704983711243, -0.33268022537231445, -0.01153239980340004, 0.005182663444429636, 0.04626767709851265, -0.02430172823369503, -3.0491464138031006, 2.24749755859375, 1.8300151824951172, 0.29599836468696594, -0.13478657603263855, -0.08980978280305862, 0.02003762498497963, 0.1360688954591751, -0.14654310047626495, -0.16509468853473663, 1.16969633102417, -0.11802065372467041, 0.08318250626325607, -0.03269296512007713]} +{"t": 28.0643, "q": [-0.36435964703559875, -0.010391868650913239, 0.0071914480067789555, 0.6089818477630615, -0.28286969661712646, 0.003466734429821372, -0.35817259550094604, 0.012178102508187294, -0.00354885240085423, 0.6321449279785156, -0.3326883912086487, -0.011546846479177475, 0.005182663444429636, 0.04624495655298233, -0.024306021630764008, -3.04917049407959, 2.247509717941284, 1.8300031423568726, 0.29602235555648804, -0.13471467792987823, -0.08979780226945877, 0.020025640726089478, 0.13609285652637482, -0.14569222927093506, -0.1651066690683365, 1.1697202920913696, -0.11798469722270966, 0.08315853774547577, -0.03269296512007713]} +{"t": 28.081, "q": [-0.3643766939640045, -0.010391868650913239, 0.0071914480067789555, 0.6089818477630615, -0.2828613817691803, 0.00346676935441792, -0.3581470251083374, 0.012161058373749256, -0.0035220684949308634, 0.6321364045143127, -0.33268845081329346, -0.011532326228916645, 0.00516927195712924, 0.04624495655298233, -0.024306021630764008, -3.0491464138031006, 2.24749755859375, 1.8300151824951172, 0.29604631662368774, -0.1347745954990387, -0.08980978280305862, 0.02003762498497963, 0.1360688954591751, -0.14488928020000458, -0.1651066690683365, 1.1698042154312134, -0.11796072870492935, 0.08315853774547577, -0.03269296512007713]} +{"t": 28.098, "q": [-0.3643766939640045, -0.01040039025247097, 0.007204839959740639, 0.6089903712272644, -0.2828613817691803, 0.00346676935441792, -0.35816407203674316, 0.012161058373749256, -0.0035086767747998238, 0.6321279406547546, -0.33268022537231445, -0.01153239980340004, 0.00516927195712924, 0.04624495655298233, -0.024306021630764008, -3.04917049407959, 2.247485637664795, 1.8299912214279175, 0.2960343360900879, -0.13476261496543884, -0.08979780226945877, 0.02004960924386978, 0.1360688954591751, -0.1441342830657959, -0.16511864960193634, 1.1698161363601685, -0.1179727166891098, 0.08314655721187592, -0.032704949378967285]} +{"t": 28.1147, "q": [-0.3643340766429901, -0.01040039025247097, 0.007204839959740639, 0.6089903712272644, -0.2828406095504761, 0.0034596798941493034, -0.3581555485725403, 0.012161058373749256, -0.0035220684949308634, 0.6321364045143127, -0.3326719403266907, -0.011547012254595757, 0.005155880004167557, 0.04624491184949875, -0.02429625764489174, -3.0491344928741455, 2.247485637664795, 1.8299791812896729, 0.2960582971572876, -0.13476261496543884, -0.08978581428527832, 0.02003762498497963, 0.13605691492557526, -0.1435350626707077, -0.16508270800113678, 1.1698521375656128, -0.11798469722270966, 0.08315853774547577, -0.032704949378967285]} +{"t": 28.1314, "q": [-0.3643340766429901, -0.010383346118032932, 0.007218231912702322, 0.6089818477630615, -0.28284481167793274, 0.0034524325747042894, -0.3581555485725403, 0.012178102508187294, -0.0035354604478925467, 0.6321534514427185, -0.3326636850833893, -0.011561606079339981, 0.005115704145282507, 0.04625247046351433, -0.024291571229696274, -3.0491464138031006, 2.247485637664795, 1.8299912214279175, 0.2960343360900879, -0.1347745954990387, -0.08980978280305862, 0.020025640726089478, 0.1360688954591751, -0.14311562478542328, -0.1651066690683365, 1.1698881387710571, -0.11798469722270966, 0.08317052572965622, -0.03268098086118698]} +{"t": 28.1482, "q": [-0.36431702971458435, -0.010391868650913239, 0.007218231912702322, 0.6089903712272644, -0.28284892439842224, 0.0034596272744238377, -0.3581470251083374, 0.012169580906629562, -0.00354885240085423, 0.6321534514427185, -0.3326595425605774, -0.011568902991712093, 0.00508892023935914, 0.04624495655298233, -0.024306021630764008, -3.0491344928741455, 2.247509717941284, 1.8299791812896729, 0.29602235555648804, -0.13476261496543884, -0.08980978280305862, 0.020025640726089478, 0.13611683249473572, -0.14278006553649902, -0.16514262557029724, 1.1699600219726562, -0.11798469722270966, 0.08317052572965622, -0.03268098086118698]} +{"t": 28.1651, "q": [-0.3642914593219757, -0.010391868650913239, 0.007245015352964401, 0.6089733242988586, -0.28284066915512085, 0.003445238107815385, -0.3581385016441345, 0.012178102508187294, -0.00354885240085423, 0.6321790218353271, -0.3326513171195984, -0.011568976566195488, 0.005062136333435774, 0.04623735696077347, -0.024300944060087204, -3.0491583347320557, 2.247485637664795, 1.8300031423568726, 0.2960582971572876, -0.1347266584634781, -0.08979780226945877, 0.02004960924386978, 0.13609285652637482, -0.14252838492393494, -0.16511864960193634, 1.1700079441070557, -0.1179966852068901, 0.08318250626325607, -0.03268098086118698]} +{"t": 28.1818, "q": [-0.3642914593219757, -0.010408911854028702, 0.0072584073059260845, 0.6089733242988586, -0.28282812237739563, 0.003466980066150427, -0.35812145471572876, 0.012203669175505638, -0.003575636073946953, 0.6321960687637329, -0.3326388895511627, -0.011605405248701572, 0.005021960940212011, 0.04623735696077347, -0.024300944060087204, -3.0491583347320557, 2.247485637664795, 1.8299912214279175, 0.29604631662368774, -0.13473863899707794, -0.08978581428527832, 0.02003762498497963, 0.13605691492557526, -0.14242053031921387, -0.16511864960193634, 1.1700438261032104, -0.1179727166891098, 0.08318250626325607, -0.032704949378967285]} +{"t": 28.1985, "q": [-0.3642829358577728, -0.010391868650913239, 0.007285191211849451, 0.6089903712272644, -0.28282812237739563, 0.003466980066150427, -0.358104407787323, 0.012220713309943676, -0.003575636073946953, 0.6322216391563416, -0.33260592818260193, -0.011634740978479385, 0.005048744846135378, 0.04625247046351433, -0.024291571229696274, -3.0491583347320557, 2.247485637664795, 1.8299791812896729, 0.2960343360900879, -0.13473863899707794, -0.08978581428527832, 0.020025640726089478, 0.1360688954591751, -0.142408549785614, -0.16508270800113678, 1.1701877117156982, -0.11796072870492935, 0.08315853774547577, -0.03269296512007713]} +{"t": 28.2152, "q": [-0.3642914593219757, -0.01040039025247097, 0.007285191211849451, 0.6089818477630615, -0.28282397985458374, 0.0034597853664308786, -0.358104407787323, 0.012237757444381714, -0.003655987558886409, 0.6322216391563416, -0.3326183259487152, -0.011612850241363049, 0.005021960940212011, 0.04625247046351433, -0.024291571229696274, -3.049182415008545, 2.247485637664795, 1.8299791812896729, 0.29604631662368774, -0.1348225325345993, -0.08977383375167847, 0.02003762498497963, 0.13609285652637482, -0.1423606127500534, -0.16507071256637573, 1.17043936252594, -0.11798469722270966, 0.08317052572965622, -0.03269296512007713]} +{"t": 28.232, "q": [-0.36430850625038147, -0.010391868650913239, 0.007271799258887768, 0.6089903712272644, -0.28283652663230896, 0.0034380434080958366, -0.3580532670021057, 0.01224627997726202, -0.003669379511848092, 0.6322301626205444, -0.3326265811920166, -0.011598256416618824, 0.005021960940212011, 0.04626758396625519, -0.024282200261950493, -3.049182415008545, 2.247485637664795, 1.8299791812896729, 0.29602235555648804, -0.1347266584634781, -0.08979780226945877, 0.02003762498497963, 0.13609285652637482, -0.14237259328365326, -0.16509468853473663, 1.1712303161621094, -0.11796072870492935, 0.08317052572965622, -0.03271693363785744]} +{"t": 28.2488, "q": [-0.3642914593219757, -0.010391868650913239, 0.007245015352964401, 0.6089903712272644, -0.2828323543071747, 0.0034452907275408506, -0.35799363255500793, 0.01224627997726202, -0.0036292036529630423, 0.6322301626205444, -0.3326265811920166, -0.011598256416618824, 0.0049817850813269615, 0.04623730853199959, -0.024291178211569786, -3.04917049407959, 2.247509717941284, 1.8299552202224731, 0.29602235555648804, -0.1347266584634781, -0.08980978280305862, 0.02003762498497963, 0.13611683249473572, -0.14234863221645355, -0.16507071256637573, 1.172165036201477, -0.11793676018714905, 0.08317052572965622, -0.03271693363785744]} +{"t": 28.2655, "q": [-0.3642914593219757, -0.010374823585152626, 0.0072584073059260845, 0.6089903712272644, -0.2828282415866852, 0.0034380960278213024, -0.35798510909080505, 0.01224627997726202, -0.0036425956059247255, 0.6322557330131531, -0.3326224684715271, -0.011591015383601189, 0.005021960940212011, 0.04623735696077347, -0.024300944060087204, -3.0491943359375, 2.247509717941284, 1.8300031423568726, 0.2960103750228882, -0.1347745954990387, -0.08980978280305862, 0.02003762498497963, 0.13611683249473572, -0.14237259328365326, -0.16509468853473663, 1.1729919910430908, -0.1179966852068901, 0.08315853774547577, -0.032704949378967285]} +{"t": 28.2823, "q": [-0.36430850625038147, -0.010374823585152626, 0.007245015352964401, 0.6089733242988586, -0.2828322947025299, 0.003459732746705413, -0.35794249176979065, 0.012288890779018402, -0.0036425956059247255, 0.6322301626205444, -0.3326306939125061, -0.011590959504246712, 0.005021960940212011, 0.04625247046351433, -0.024291571229696274, -3.04917049407959, 2.247485637664795, 1.8299912214279175, 0.2960582971572876, -0.1347266584634781, -0.08982177078723907, 0.020025640726089478, 0.13609285652637482, -0.14239656925201416, -0.16508270800113678, 1.1740226745605469, -0.11796072870492935, 0.08318250626325607, -0.03271693363785744]} +{"t": 28.2992, "q": [-0.364342600107193, -0.010357779450714588, 0.007231623865664005, 0.6089903712272644, -0.2828281819820404, 0.0034525380469858646, -0.35793396830558777, 0.012280368246138096, -0.0036292036529630423, 0.6322472095489502, -0.3326306939125061, -0.011590959504246712, 0.004995177034288645, 0.04625247046351433, -0.024291571229696274, -3.049182415008545, 2.247485637664795, 1.8299912214279175, 0.29604631662368774, -0.134750634431839, -0.08980978280305862, 0.02003762498497963, 0.13609285652637482, -0.14242053031921387, -0.1651066690683365, 1.1752090454101562, -0.1179966852068901, 0.08317052572965622, -0.03272891789674759]} +{"t": 28.3159, "q": [-0.36432555317878723, -0.010374823585152626, 0.007218231912702322, 0.6089988946914673, -0.2828323543071747, 0.0034452907275408506, -0.35795101523399353, 0.012263324111700058, -0.0036024199798703194, 0.6322472095489502, -0.3326389789581299, -0.011576347053050995, 0.005021960940212011, 0.04623735696077347, -0.024300944060087204, -3.049206256866455, 2.247509717941284, 1.8299912214279175, 0.29604631662368774, -0.1347266584634781, -0.08984573930501938, 0.02003762498497963, 0.13609285652637482, -0.14250442385673523, -0.1651066690683365, 1.1769108772277832, -0.11798469722270966, 0.08314655721187592, -0.03272891789674759]} +{"t": 28.3327, "q": [-0.36430850625038147, -0.010374823585152626, 0.007218231912702322, 0.6089818477630615, -0.2828407287597656, 0.0034307960886508226, -0.35795101523399353, 0.012280368246138096, -0.003575636073946953, 0.6322216391563416, -0.332634836435318, -0.011583643965423107, 0.005048744846135378, 0.04625247046351433, -0.024291571229696274, -3.049182415008545, 2.24749755859375, 1.8299791812896729, 0.29604631662368774, -0.1347266584634781, -0.08982177078723907, 0.020013656467199326, 0.1360688954591751, -0.1426362544298172, -0.1651066690683365, 1.179391622543335, -0.1179487481713295, 0.08315853774547577, -0.03271693363785744]} +{"t": 28.3495, "q": [-0.3643511235713959, -0.010357779450714588, 0.007231623865664005, 0.6089818477630615, -0.28284066915512085, 0.003445238107815385, -0.35795101523399353, 0.012263324111700058, -0.003575636073946953, 0.6322216391563416, -0.33265548944473267, -0.01154716033488512, 0.005048744846135378, 0.04623735696077347, -0.024300944060087204, -3.0491943359375, 2.247485637664795, 1.8299791812896729, 0.2960582971572876, -0.13476261496543884, -0.08980978280305862, 0.020013656467199326, 0.1360688954591751, -0.1426602154970169, -0.16514262557029724, 1.1816205978393555, -0.11796072870492935, 0.08313456922769547, -0.032704949378967285]} +{"t": 28.3662, "q": [-0.36435964703559875, -0.010374823585152626, 0.007218231912702322, 0.6089818477630615, -0.2828531563282013, 0.0034379379358142614, -0.35794249176979065, 0.012254801578819752, -0.003575636073946953, 0.6322216391563416, -0.33265548944473267, -0.01154716033488512, 0.005048744846135378, 0.04623735696077347, -0.024300944060087204, -3.049182415008545, 2.24747371673584, 1.8299791812896729, 0.29604631662368774, -0.13478657603263855, -0.08980978280305862, 0.02004960924386978, 0.135949045419693, -0.14262425899505615, -0.16509468853473663, 1.1838736534118652, -0.1179727166891098, 0.08315853774547577, -0.03274090215563774]} +{"t": 28.383, "q": [-0.364342600107193, -0.010366301983594894, 0.007204839959740639, 0.6089903712272644, -0.28284481167793274, 0.0034524325747042894, -0.35795101523399353, 0.012254801578819752, -0.003562244353815913, 0.6322045922279358, -0.3326636850833893, -0.011561606079339981, 0.005021960940212011, 0.04623735696077347, -0.024300944060087204, -3.0492184162139893, 2.24747371673584, 1.8299672603607178, 0.29604631662368774, -0.13476261496543884, -0.08980978280305862, 0.02003762498497963, 0.13579325377941132, -0.1426122784614563, -0.16509468853473663, 1.1861627101898193, -0.1179487481713295, 0.08313456922769547, -0.03271693363785744]} +{"t": 28.3997, "q": [-0.3643340766429901, -0.010366301983594894, 0.007245015352964401, 0.6089903712272644, -0.2828572392463684, 0.003459574654698372, -0.35794249176979065, 0.01224627997726202, -0.00354885240085423, 0.6321960687637329, -0.33265963196754456, -0.011539863422513008, 0.005035352893173695, 0.04624495655298233, -0.024306021630764008, -3.0492422580718994, 2.24749755859375, 1.8299912214279175, 0.29607027769088745, -0.13476261496543884, -0.08980978280305862, 0.02003762498497963, 0.13581722974777222, -0.14262425899505615, -0.1651546061038971, 1.187852382659912, -0.11796072870492935, 0.08314655721187592, -0.03272891789674759]} +{"t": 28.4164, "q": [-0.36432555317878723, -0.010374823585152626, 0.007218231912702322, 0.6090074181556702, -0.28284481167793274, 0.0034524325747042894, -0.35795101523399353, 0.01224627997726202, -0.0035220684949308634, 0.6322045922279358, -0.3326636850833893, -0.011561606079339981, 0.005182663444429636, 0.04623735696077347, -0.024300944060087204, -3.049182415008545, 2.247485637664795, 1.8299672603607178, 0.29607027769088745, -0.13481055200099945, -0.08978581428527832, 0.02003762498497963, 0.1359250843524933, -0.14260029792785645, -0.16514262557029724, 1.1889909505844116, -0.11798469722270966, 0.08315853774547577, -0.03272891789674759]} +{"t": 28.4332, "q": [-0.36436817049980164, -0.010374823585152626, 0.007218231912702322, 0.6089818477630615, -0.28284481167793274, 0.0034524325747042894, -0.35795101523399353, 0.0121866250410676, -0.0035354604478925467, 0.6321704983711243, -0.3326719403266907, -0.011547012254595757, 0.005182663444429636, 0.04625247046351433, -0.024291571229696274, -3.049074411392212, 2.247485637664795, 1.8299193382263184, 0.2961062490940094, -0.13478657603263855, -0.08978581428527832, 0.020025640726089478, 0.13600897789001465, -0.14262425899505615, -0.1651546061038971, 1.1897938251495361, -0.11796072870492935, 0.08317052572965622, -0.03271693363785744]} +{"t": 28.4499, "q": [-0.364342600107193, -0.010357779450714588, 0.0071914480067789555, 0.6089903712272644, -0.28284481167793274, 0.0034524325747042894, -0.3579680621623993, 0.012212191708385944, -0.0035220684949308634, 0.6321790218353271, -0.33265963196754456, -0.011539863422513008, 0.0051424880512058735, 0.04623735696077347, -0.024300944060087204, -3.0490145683288574, 2.24749755859375, 1.8298354148864746, 0.29607027769088745, -0.13476261496543884, -0.08978581428527832, 0.02003762498497963, 0.13600897789001465, -0.14260029792785645, -0.16508270800113678, 1.1905128955841064, -0.1179966852068901, 0.08314655721187592, -0.032704949378967285]} +{"t": 28.4667, "q": [-0.36432555317878723, -0.010374823585152626, 0.007164664100855589, 0.6089903712272644, -0.2828448414802551, 0.003437990555539727, -0.3579765856266022, 0.012212191708385944, -0.0035220684949308634, 0.6321790218353271, -0.33265548944473267, -0.01154716033488512, 0.005155880004167557, 0.04623735696077347, -0.024300944060087204, -3.0490505695343018, 2.247509717941284, 1.829811453819275, 0.2961062490940094, -0.134750634431839, -0.08977383375167847, 0.020013656467199326, 0.13603293895721436, -0.1425883173942566, -0.1651306450366974, 1.1910642385482788, -0.1179727166891098, 0.08314655721187592, -0.03271693363785744]} +{"t": 28.4835, "q": [-0.36436817049980164, -0.010374823585152626, 0.0071914480067789555, 0.6089903712272644, -0.2828364968299866, 0.003452485427260399, -0.3579595386981964, 0.012220713309943676, -0.0035354604478925467, 0.6321790218353271, -0.3326595425605774, -0.011568902991712093, 0.00512909609824419, 0.04622974991798401, -0.02429586462676525, -3.0490386486053467, 2.247509717941284, 1.8297874927520752, 0.2961062490940094, -0.13476261496543884, -0.08980978280305862, 0.02004960924386978, 0.1360688954591751, -0.1425883173942566, -0.1651066690683365, 1.191136121749878, -0.1179727166891098, 0.08315853774547577, -0.03271693363785744]} +{"t": 28.5003, "q": [-0.3643511235713959, -0.010366301983594894, 0.007164664100855589, 0.6089818477630615, -0.28284481167793274, 0.0034524325747042894, -0.3579595386981964, 0.012203669175505638, -0.003468500915914774, 0.6321790218353271, -0.33265963196754456, -0.011539863422513008, 0.00508892023935914, 0.04625247046351433, -0.024291571229696274, -3.0490505695343018, 2.24749755859375, 1.8297395706176758, 0.2961062490940094, -0.13478657603263855, -0.08979780226945877, 0.020025640726089478, 0.1360688954591751, -0.1425883173942566, -0.16511864960193634, 1.1911840438842773, -0.11802065372467041, 0.08315853774547577, -0.03271693363785744]} +{"t": 28.517, "q": [-0.36430850625038147, -0.010374823585152626, 0.007204839959740639, 0.6089988946914673, -0.28284481167793274, 0.0034524325747042894, -0.3579595386981964, 0.012212191708385944, -0.0034952848218381405, 0.6321790218353271, -0.3326430916786194, -0.011569050140678883, 0.00508892023935914, 0.04622974991798401, -0.02429586462676525, -3.049062490463257, 2.247509717941284, 1.8297035694122314, 0.29609423875808716, -0.1347745954990387, -0.08982177078723907, 0.02003762498497963, 0.13605691492557526, -0.1426122784614563, -0.1651306450366974, 1.1912919282913208, -0.1179727166891098, 0.08314655721187592, -0.03272891789674759]} +{"t": 28.5338, "q": [-0.3643340766429901, -0.010374823585152626, 0.007204839959740639, 0.6089988946914673, -0.28284066915512085, 0.003445238107815385, -0.3579680621623993, 0.012212191708385944, -0.0035086767747998238, 0.6321790218353271, -0.3326472342014313, -0.01156175322830677, 0.005021960940212011, 0.046222150325775146, -0.024290787056088448, -3.049086570739746, 2.247509717941284, 1.8297035694122314, 0.29609423875808716, -0.13478657603263855, -0.08979780226945877, 0.02004960924386978, 0.13605691492557526, -0.1426122784614563, -0.16511864960193634, 1.1913158893585205, -0.1179727166891098, 0.08314655721187592, -0.03271693363785744]} +{"t": 28.5506, "q": [-0.3642829358577728, -0.010366301983594894, 0.007218231912702322, 0.6089903712272644, -0.2828364968299866, 0.003452485427260399, -0.3579595386981964, 0.012229235842823982, -0.003589028026908636, 0.6322472095489502, -0.3326430916786194, -0.011569050140678883, 0.005048744846135378, 0.04622979834675789, -0.02430563047528267, -3.049086570739746, 2.247509717941284, 1.8296796083450317, 0.2961062490940094, -0.13481055200099945, -0.08979780226945877, 0.02003762498497963, 0.13603293895721436, -0.1425883173942566, -0.16516658663749695, 1.1913518905639648, -0.11798469722270966, 0.08315853774547577, -0.03271693363785744]} +{"t": 28.5673, "q": [-0.36431702971458435, -0.010374823585152626, 0.007245015352964401, 0.6089988946914673, -0.2828322947025299, 0.003459732746705413, -0.3579595386981964, 0.012237757444381714, -0.003562244353815913, 0.6322301626205444, -0.3326389789581299, -0.011576347053050995, 0.00508892023935914, 0.04623735696077347, -0.024300944060087204, -3.0491225719451904, 2.247509717941284, 1.829655647277832, 0.2961062490940094, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.13603293895721436, -0.14254038035869598, -0.1651306450366974, 1.1913877725601196, -0.11796072870492935, 0.08312258869409561, -0.03272891789674759]} +{"t": 28.5842, "q": [-0.36432555317878723, -0.010383346118032932, 0.0072584073059260845, 0.6089988946914673, -0.28283652663230896, 0.0034380434080958366, -0.3579595386981964, 0.01224627997726202, -0.0036024199798703194, 0.6322216391563416, -0.33263900876045227, -0.011561809107661247, 0.005021960940212011, 0.04623735696077347, -0.024300944060087204, -3.0491104125976562, 2.247509717941284, 1.8296436071395874, 0.29609423875808716, -0.13471467792987823, -0.08980978280305862, 0.02003762498497963, 0.13605691492557526, -0.14254038035869598, -0.1651306450366974, 1.191423773765564, -0.11798469722270966, 0.08314655721187592, -0.03272891789674759]} +{"t": 28.6009, "q": [-0.3643340766429901, -0.010374823585152626, 0.007231623865664005, 0.6090074181556702, -0.28284066915512085, 0.003445238107815385, -0.3579595386981964, 0.01224627997726202, -0.003575636073946953, 0.6322301626205444, -0.3326307535171509, -0.011576402932405472, 0.004995177034288645, 0.04623735696077347, -0.024300944060087204, -3.0491225719451904, 2.247509717941284, 1.8296436071395874, 0.2961062490940094, -0.1347745954990387, -0.08979780226945877, 0.02004960924386978, 0.13605691492557526, -0.14246846735477448, -0.1651306450366974, 1.191435694694519, -0.11798469722270966, 0.08315853774547577, -0.032704949378967285]} +{"t": 28.6176, "q": [-0.36431702971458435, -0.010374823585152626, 0.007245015352964401, 0.6089988946914673, -0.28284066915512085, 0.003445238107815385, -0.35794249176979065, 0.012254801578819752, -0.003575636073946953, 0.6322386860847473, -0.3326389789581299, -0.011576347053050995, 0.005048744846135378, 0.04622979834675789, -0.02430563047528267, -3.0491225719451904, 2.247509717941284, 1.8296196460723877, 0.2960822582244873, -0.1347745954990387, -0.08983375132083893, 0.02004960924386978, 0.1360688954591751, -0.142408549785614, -0.16511864960193634, 1.1914596557617188, -0.1179966852068901, 0.08314655721187592, -0.03271693363785744]} +{"t": 28.6344, "q": [-0.3642914593219757, -0.010374823585152626, 0.0072584073059260845, 0.609015941619873, -0.2828364968299866, 0.003452485427260399, -0.35795101523399353, 0.012237757444381714, -0.003575636073946953, 0.6322301626205444, -0.3326389789581299, -0.011576347053050995, 0.0049817850813269615, 0.04622974991798401, -0.02429586462676525, -3.0491344928741455, 2.247509717941284, 1.8296196460723877, 0.2960822582244873, -0.13476261496543884, -0.08980978280305862, 0.02003762498497963, 0.13605691492557526, -0.1423126757144928, -0.16509468853473663, 1.1915075778961182, -0.1179966852068901, 0.08314655721187592, -0.03274090215563774]} +{"t": 28.6511, "q": [-0.3642999827861786, -0.010374823585152626, 0.007285191211849451, 0.6090074181556702, -0.2828364968299866, 0.003452485427260399, -0.35794249176979065, 0.012254801578819752, -0.0036292036529630423, 0.6322301626205444, -0.3326389789581299, -0.011576347053050995, 0.005048744846135378, 0.04622979834675789, -0.02430563047528267, -3.0491344928741455, 2.247509717941284, 1.8296196460723877, 0.2960582971572876, -0.1347985714673996, -0.08979780226945877, 0.02003762498497963, 0.13609285652637482, -0.14219282567501068, -0.16511864960193634, 1.1915675401687622, -0.1179966852068901, 0.08317052572965622, -0.03272891789674759]} +{"t": 28.668, "q": [-0.36430850625038147, -0.010374823585152626, 0.007285191211849451, 0.6089988946914673, -0.28284066915512085, 0.003445238107815385, -0.3579595386981964, 0.012229235842823982, -0.0036024199798703194, 0.6322301626205444, -0.3326348662376404, -0.01156910602003336, 0.005048744846135378, 0.04622979834675789, -0.02430563047528267, -3.0491344928741455, 2.247509717941284, 1.8296077251434326, 0.2960582971572876, -0.1347985714673996, -0.08982177078723907, 0.02004960924386978, 0.1360688954591751, -0.1420130729675293, -0.1651066690683365, 1.191591501235962, -0.1179966852068901, 0.08314655721187592, -0.03274090215563774]} +{"t": 28.6847, "q": [-0.3643340766429901, -0.010374823585152626, 0.007285191211849451, 0.6089988946914673, -0.28284066915512085, 0.003445238107815385, -0.35794249176979065, 0.012254801578819752, -0.003575636073946953, 0.6322216391563416, -0.3326266407966614, -0.011569180525839329, 0.00508892023935914, 0.04622979834675789, -0.02430563047528267, -3.0491464138031006, 2.247509717941284, 1.829595685005188, 0.2960582971572876, -0.1347745954990387, -0.08980978280305862, 0.02003762498497963, 0.13603293895721436, -0.14172545075416565, -0.16508270800113678, 1.1917352676391602, -0.11796072870492935, 0.08314655721187592, -0.03275288641452789]} +{"t": 28.7014, "q": [-0.364342600107193, -0.010391868650913239, 0.007271799258887768, 0.6089988946914673, -0.28284066915512085, 0.003445238107815385, -0.3579254448413849, 0.012229235842823982, -0.00354885240085423, 0.6322216391563416, -0.3326389789581299, -0.011576347053050995, 0.005021960940212011, 0.04622979834675789, -0.02430563047528267, -3.0491344928741455, 2.247485637664795, 1.8295717239379883, 0.2960582971572876, -0.1347985714673996, -0.08980978280305862, 0.02003762498497963, 0.13603293895721436, -0.14144980907440186, -0.16514262557029724, 1.1920349597930908, -0.1179727166891098, 0.08315853774547577, -0.03274090215563774]} +{"t": 28.7182, "q": [-0.36432555317878723, -0.010374823585152626, 0.007298583164811134, 0.6090244650840759, -0.2828448414802551, 0.003437990555539727, -0.35795101523399353, 0.01224627997726202, -0.00354885240085423, 0.6322386860847473, -0.33263900876045227, -0.011561809107661247, 0.005008568987250328, 0.046207036823034286, -0.024300159886479378, -3.0491344928741455, 2.247509717941284, 1.8295598030090332, 0.29607027769088745, -0.1347266584634781, -0.08982177078723907, 0.02003762498497963, 0.13603293895721436, -0.1411142498254776, -0.1651306450366974, 1.1927180290222168, -0.11798469722270966, 0.08314655721187592, -0.03274090215563774]} +{"t": 28.7349, "q": [-0.36432555317878723, -0.010366301983594894, 0.007311975117772818, 0.6090244650840759, -0.28284481167793274, 0.0034524325747042894, -0.35794249176979065, 0.012229235842823982, -0.003575636073946953, 0.6322131156921387, -0.3326348662376404, -0.01156910602003336, 0.005021960940212011, 0.046206943690776825, -0.02428063191473484, -3.0491225719451904, 2.247509717941284, 1.8295358419418335, 0.29604631662368774, -0.1347266584634781, -0.08980978280305862, 0.020025640726089478, 0.13603293895721436, -0.14080266654491425, -0.1651306450366974, 1.19359290599823, -0.1179727166891098, 0.08313456922769547, -0.03274090215563774]} +{"t": 28.7516, "q": [-0.36430850625038147, -0.010374823585152626, 0.007285191211849451, 0.6090074181556702, -0.282848984003067, 0.0034451852552592754, -0.35794249176979065, 0.012237757444381714, -0.003575636073946953, 0.6322216391563416, -0.3326348662376404, -0.01156910602003336, 0.005021960940212011, 0.046206943690776825, -0.02428063191473484, -3.0491344928741455, 2.247509717941284, 1.8295358419418335, 0.2960343360900879, -0.1347745954990387, -0.08980978280305862, 0.02003762498497963, 0.13588912785053253, -0.14037123322486877, -0.16511864960193634, 1.1940842866897583, -0.1179487481713295, 0.08314655721187592, -0.03275288641452789]} +{"t": 28.7685, "q": [-0.3642914593219757, -0.010357779450714588, 0.007285191211849451, 0.609015941619873, -0.28284066915512085, 0.003445238107815385, -0.35794249176979065, 0.012237757444381714, -0.003589028026908636, 0.6322216391563416, -0.3326348662376404, -0.01156910602003336, 0.005155880004167557, 0.046199340373277664, -0.02427555061876774, -3.0491225719451904, 2.247509717941284, 1.8295358419418335, 0.2960343360900879, -0.13478657603263855, -0.08980978280305862, 0.02003762498497963, 0.1357692927122116, -0.14001169800758362, -0.1651066690683365, 1.194108247756958, -0.11796072870492935, 0.08313456922769547, -0.03274090215563774]} +{"t": 28.7853, "q": [-0.3642914593219757, -0.010383346118032932, 0.0072584073059260845, 0.6090244650840759, -0.2828364968299866, 0.003452485427260399, -0.35794249176979065, 0.01224627997726202, -0.0036425956059247255, 0.6322045922279358, -0.3326472342014313, -0.01156175322830677, 0.005222839303314686, 0.046199340373277664, -0.02427555061876774, -3.049098491668701, 2.247509717941284, 1.8294998407363892, 0.29602235555648804, -0.13481055200099945, -0.08980978280305862, 0.020025640726089478, 0.13568539917469025, -0.13962820172309875, -0.16511864960193634, 1.1941322088241577, -0.11796072870492935, 0.08313456922769547, -0.03275288641452789]} +{"t": 28.802, "q": [-0.3642914593219757, -0.010374823585152626, 0.007231623865664005, 0.609015941619873, -0.28283652663230896, 0.0034380434080958366, -0.35794249176979065, 0.012254801578819752, -0.0036292036529630423, 0.6322216391563416, -0.3326307535171509, -0.011576402932405472, 0.005263015162199736, 0.046199340373277664, -0.02427555061876774, -3.0491104125976562, 2.247509717941284, 1.82942795753479, 0.29602235555648804, -0.13481055200099945, -0.08979780226945877, 0.02004960924386978, 0.13558952510356903, -0.13912487030029297, -0.1651066690683365, 1.1941561698913574, -0.11793676018714905, 0.08313456922769547, -0.03274090215563774]} +{"t": 28.8189, "q": [-0.3642999827861786, -0.010383346118032932, 0.007204839959740639, 0.6089988946914673, -0.28284066915512085, 0.003445238107815385, -0.35793396830558777, 0.01224627997726202, -0.003669379511848092, 0.6322045922279358, -0.3326307535171509, -0.011576402932405472, 0.005356758367270231, 0.0461917370557785, -0.024270474910736084, -3.0491104125976562, 2.247509717941284, 1.8293440341949463, 0.29599836468696594, -0.13478657603263855, -0.08978581428527832, 0.02003762498497963, 0.13554158806800842, -0.13868145644664764, -0.16504675149917603, 1.1942399740219116, -0.1179727166891098, 0.08314655721187592, -0.03274090215563774]} +{"t": 28.8356, "q": [-0.3642914593219757, -0.010374823585152626, 0.0071914480067789555, 0.6090074181556702, -0.2828448414802551, 0.003437990555539727, -0.35795101523399353, 0.012263324111700058, -0.0037229470908641815, 0.6321960687637329, -0.3326306939125061, -0.011590959504246712, 0.005383542273193598, 0.04618413373827934, -0.024265393614768982, -3.0491104125976562, 2.2475216388702393, 1.8292361497879028, 0.29597440361976624, -0.134750634431839, -0.08979780226945877, 0.02003762498497963, 0.13550563156604767, -0.1380942314863205, -0.16508270800113678, 1.194275975227356, -0.1179487481713295, 0.08313456922769547, -0.03274090215563774]} +{"t": 28.8523, "q": [-0.36426588892936707, -0.010374823585152626, 0.0071914480067789555, 0.6089988946914673, -0.2828323543071747, 0.0034452907275408506, -0.35794249176979065, 0.012271846644580364, -0.0037229470908641815, 0.6322216391563416, -0.332626610994339, -0.011583718471229076, 0.005356758367270231, 0.04615376889705658, -0.024254847317934036, -3.049074411392212, 2.2475335597991943, 1.8291882276535034, 0.2959264814853668, -0.13476261496543884, -0.08982177078723907, 0.02003762498497963, 0.13550563156604767, -0.13739913702011108, -0.16507071256637573, 1.1942999362945557, -0.1179487481713295, 0.08314655721187592, -0.03274090215563774]} +{"t": 28.8691, "q": [-0.36430850625038147, -0.010391868650913239, 0.007164664100855589, 0.609015941619873, -0.28283247351646423, 0.003416406689211726, -0.35795101523399353, 0.012263324111700058, -0.0037899063900113106, 0.6322131156921387, -0.332634836435318, -0.011583643965423107, 0.005383542273193598, 0.046130914241075516, -0.024229848757386208, -3.049074411392212, 2.2475335597991943, 1.8291163444519043, 0.2959384620189667, -0.1347266584634781, -0.08982177078723907, 0.02003762498497963, 0.13555356860160828, -0.13675199449062347, -0.16508270800113678, 1.1943838596343994, -0.11793676018714905, 0.08315853774547577, -0.03272891789674759]} +{"t": 28.8858, "q": [-0.3642573654651642, -0.010349256917834282, 0.007164664100855589, 0.6090074181556702, -0.2828406095504761, 0.0034596798941493034, -0.35795101523399353, 0.012254801578819752, -0.0037631227169185877, 0.6321960687637329, -0.3326306939125061, -0.011590959504246712, 0.005383542273193598, 0.04610059782862663, -0.02422906458377838, -3.049062490463257, 2.247509717941284, 1.8290084600448608, 0.29591450095176697, -0.13476261496543884, -0.08980978280305862, 0.020013656467199326, 0.13562548160552979, -0.13593706488609314, -0.16511864960193634, 1.1944557428359985, -0.11798469722270966, 0.08313456922769547, -0.03274090215563774]} +{"t": 28.9025, "q": [-0.36426588892936707, -0.010383346118032932, 0.007204839959740639, 0.609015941619873, -0.28284481167793274, 0.0034524325747042894, -0.35794249176979065, 0.012254801578819752, -0.0037631227169185877, 0.6322131156921387, -0.3326430916786194, -0.011569050140678883, 0.005356758367270231, 0.04609294608235359, -0.02421422116458416, -3.049062490463257, 2.2475335597991943, 1.8288646936416626, 0.2959024906158447, -0.1347745954990387, -0.08979780226945877, 0.02004960924386978, 0.13570936024188995, -0.1348944455385208, -0.16514262557029724, 1.194563627243042, -0.1179966852068901, 0.08314655721187592, -0.032764870673418045]} +{"t": 28.9193, "q": [-0.3642914593219757, -0.010383346118032932, 0.007204839959740639, 0.6090329885482788, -0.2828406095504761, 0.0034596798941493034, -0.3579595386981964, 0.012229235842823982, -0.0036827712319791317, 0.6322216391563416, -0.3326348662376404, -0.01156910602003336, 0.005289798602461815, 0.04608539119362831, -0.024218907579779625, -3.049062490463257, 2.2475335597991943, 1.8286609649658203, 0.295878529548645, -0.134750634431839, -0.08980978280305862, 0.02004960924386978, 0.1357692927122116, -0.13371998071670532, -0.16509468853473663, 1.1947553157806396, -0.1179966852068901, 0.08314655721187592, -0.032764870673418045]} +{"t": 28.936, "q": [-0.364342600107193, -0.010391868650913239, 0.007271799258887768, 0.609015941619873, -0.282848984003067, 0.0034451852552592754, -0.35794249176979065, 0.012220713309943676, -0.003736338810995221, 0.6322045922279358, -0.33263903856277466, -0.011547289788722992, 0.005276407115161419, 0.04607778415083885, -0.024213826283812523, -3.049062490463257, 2.2475335597991943, 1.8284931182861328, 0.29586654901504517, -0.13473863899707794, -0.08982177078723907, 0.02003762498497963, 0.1357692927122116, -0.13223394751548767, -0.16505873203277588, 1.1952227354049683, -0.1179966852068901, 0.08314655721187592, -0.0328008234500885]} +{"t": 28.9529, "q": [-0.36435964703559875, -0.01040039025247097, 0.007285191211849451, 0.6090074181556702, -0.28284886479377747, 0.0034740692935884, -0.35794249176979065, 0.012195147573947906, -0.0036827712319791317, 0.6322131156921387, -0.33263078331947327, -0.011561883613467216, 0.005222839303314686, 0.04607778415083885, -0.024213826283812523, -3.049062490463257, 2.2475335597991943, 1.828397274017334, 0.29581862688064575, -0.134750634431839, -0.08979780226945877, 0.02003762498497963, 0.13585317134857178, -0.13031646609306335, -0.16511864960193634, 1.1957380771636963, -0.11796072870492935, 0.08313456922769547, -0.03281280770897865]} +{"t": 28.9696, "q": [-0.364342600107193, -0.010443000122904778, 0.007298583164811134, 0.609015941619873, -0.2828655242919922, 0.003473981749266386, -0.35794249176979065, 0.012169580906629562, -0.003696163184940815, 0.6321790218353271, -0.3326391279697418, -0.011503729969263077, 0.005196055397391319, 0.04607778415083885, -0.024213826283812523, -3.049086570739746, 2.247509717941284, 1.828229546546936, 0.2957826554775238, -0.13476261496543884, -0.08980978280305862, 0.020013656467199326, 0.13582921028137207, -0.1282312124967575, -0.16511864960193634, 1.1962534189224243, -0.1179727166891098, 0.08315853774547577, -0.03283677622675896]} +{"t": 28.9863, "q": [-0.3643511235713959, -0.010443000122904778, 0.007325367070734501, 0.6089988946914673, -0.2828655242919922, 0.003473981749266386, -0.35795101523399353, 0.012144014239311218, -0.003655987558886409, 0.6321619749069214, -0.3326432704925537, -0.011496433056890965, 0.005182663444429636, 0.04607778415083885, -0.024213826283812523, -3.049086570739746, 2.2475335597991943, 1.8281216621398926, 0.2958066463470459, -0.1347266584634781, -0.08979780226945877, 0.02003762498497963, 0.13586516678333282, -0.12567856907844543, -0.16507071256637573, 1.1970683336257935, -0.1179966852068901, 0.08314655721187592, -0.03284876048564911]} +{"t": 29.0031, "q": [-0.36436817049980164, -0.010443000122904778, 0.007338759023696184, 0.609015941619873, -0.2828654646873474, 0.0034884237684309483, -0.3579595386981964, 0.012152536772191525, -0.0036024199798703194, 0.6321704983711243, -0.3326432704925537, -0.011496433056890965, 0.005155880004167557, 0.04607783257961273, -0.02422359399497509, -3.049074411392212, 2.247509717941284, 1.828001856803894, 0.2957826554775238, -0.1347266584634781, -0.08980978280305862, 0.02004960924386978, 0.13586516678333282, -0.12293418496847153, -0.16507071256637573, 1.1982067823410034, -0.1179966852068901, 0.08314655721187592, -0.03284876048564911]} +{"t": 29.0199, "q": [-0.36436817049980164, -0.01046004518866539, 0.007338759023696184, 0.6090074181556702, -0.2828613817691803, 0.00346676935441792, -0.3579680621623993, 0.012144014239311218, -0.0036292036529630423, 0.6321449279785156, -0.3326474130153656, -0.011489118449389935, 0.005182663444429636, 0.04605511575937271, -0.024227885529398918, -3.049086570739746, 2.247509717941284, 1.8278939723968506, 0.29577067494392395, -0.13473863899707794, -0.08977383375167847, 0.02003762498497963, 0.13586516678333282, -0.11987820267677307, -0.16505873203277588, 1.1992614269256592, -0.1179966852068901, 0.08314655721187592, -0.03286074474453926]} +{"t": 29.0366, "q": [-0.36436817049980164, -0.010468566790223122, 0.00735215051099658, 0.6090329885482788, -0.28288620710372925, 0.0034955129958689213, -0.35799363255500793, 0.01212697010487318, -0.0036292036529630423, 0.6321534514427185, -0.3326474130153656, -0.011489118449389935, 0.005155880004167557, 0.04607783257961273, -0.02422359399497509, -3.0491104125976562, 2.2475335597991943, 1.827774167060852, 0.29577067494392395, -0.13478657603263855, -0.08980978280305862, 0.02003762498497963, 0.13582921028137207, -0.11666643619537354, -0.16509468853473663, 1.200783371925354, -0.11798469722270966, 0.08314655721187592, -0.032884713262319565]} +{"t": 29.0534, "q": [-0.3643511235713959, -0.010443000122904778, 0.00735215051099658, 0.609015941619873, -0.28289034962654114, 0.0035027076955884695, -0.3580192029476166, 0.012118448503315449, -0.0036158119328320026, 0.6321534514427185, -0.3326639235019684, -0.011459930799901485, 0.005182663444429636, 0.04606271907687187, -0.02423296496272087, -3.0491104125976562, 2.247509717941284, 1.8276782035827637, 0.29574671387672424, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.13579325377941132, -0.11363442242145538, -0.16508270800113678, 1.202269434928894, -0.11796072870492935, 0.08314655721187592, -0.03287272900342941]} +{"t": 29.0701, "q": [-0.3643766939640045, -0.010477089323103428, 0.00735215051099658, 0.6090244650840759, -0.28289446234703064, 0.0035099023953080177, -0.3580617904663086, 0.012084359303116798, -0.0036024199798703194, 0.6321364045143127, -0.3326721787452698, -0.011445336975157261, 0.005222839303314686, 0.04607783257961273, -0.02422359399497509, -3.0491464138031006, 2.2475335597991943, 1.8275704383850098, 0.29574671387672424, -0.13476261496543884, -0.08980978280305862, 0.020025640726089478, 0.13580523431301117, -0.11005114018917084, -0.16503477096557617, 1.2033120393753052, -0.1179966852068901, 0.08313456922769547, -0.03289669752120972]} +{"t": 29.0868, "q": [-0.364342600107193, -0.010485611855983734, 0.007338759023696184, 0.6090244650840759, -0.2828904092311859, 0.0034882656764239073, -0.3581129312515259, 0.01206731516867876, -0.003589028026908636, 0.6321108937263489, -0.3326803743839264, -0.011459782719612122, 0.005249623209238052, 0.04607783257961273, -0.02422359399497509, -3.0491104125976562, 2.247509717941284, 1.8275104761123657, 0.2957347333431244, -0.1347266584634781, -0.08982177078723907, 0.02003762498497963, 0.13579325377941132, -0.10635999590158463, -0.16505873203277588, 1.2043187618255615, -0.1179966852068901, 0.08315853774547577, -0.03292066603899002]} +{"t": 29.1036, "q": [-0.364342600107193, -0.010485611855983734, 0.007311975117772818, 0.6090329885482788, -0.2828904092311859, 0.0034882656764239073, -0.3581129312515259, 0.012075837701559067, -0.0036024199798703194, 0.6320767998695374, -0.3326762914657593, -0.011452560313045979, 0.005316582508385181, 0.04607783257961273, -0.02422359399497509, -3.049098491668701, 2.247509717941284, 1.8274625539779663, 0.2957107722759247, -0.134750634431839, -0.08980978280305862, 0.02003762498497963, 0.13570936024188995, -0.10276473313570023, -0.16504675149917603, 1.2054932117462158, -0.11798469722270966, 0.08314655721187592, -0.03289669752120972]} +{"t": 29.1203, "q": [-0.36436817049980164, -0.010477089323103428, 0.007285191211849451, 0.6090074181556702, -0.28288620710372925, 0.0034955129958689213, -0.3581129312515259, 0.01206731516867876, -0.0035220684949308634, 0.6320512294769287, -0.3326721489429474, -0.01145985722541809, 0.005356758367270231, 0.04607783257961273, -0.02422359399497509, -3.049098491668701, 2.2475335597991943, 1.8273906707763672, 0.295650839805603, -0.13476261496543884, -0.08982177078723907, 0.020025640726089478, 0.13562548160552979, -0.09916946291923523, -0.16503477096557617, 1.2066916227340698, -0.1179727166891098, 0.08315853774547577, -0.032884713262319565]} +{"t": 29.1371, "q": [-0.36435964703559875, -0.010502655059099197, 0.007298583164811134, 0.609015941619873, -0.28288203477859497, 0.0035027603153139353, -0.3581129312515259, 0.01206731516867876, -0.0035220684949308634, 0.6320171356201172, -0.3326721787452698, -0.011445336975157261, 0.005356758367270231, 0.04607783257961273, -0.02422359399497509, -3.049098491668701, 2.2475335597991943, 1.8272947072982788, 0.29556694626808167, -0.1347745954990387, -0.08980978280305862, 0.02003762498497963, 0.13555356860160828, -0.09593372046947479, -0.16503477096557617, 1.2078421115875244, -0.1179966852068901, 0.08315853774547577, -0.032884713262319565]} +{"t": 29.1538, "q": [-0.3643766939640045, -0.010502655059099197, 0.007298583164811134, 0.6090244650840759, -0.2828778326511383, 0.003510007867589593, -0.3581129312515259, 0.01206731516867876, -0.003575636073946953, 0.6320171356201172, -0.3326556980609894, -0.01146000437438488, 0.005383542273193598, 0.04607022926211357, -0.024218512699007988, -3.049074411392212, 2.247509717941284, 1.8272348642349243, 0.2955789268016815, -0.13476261496543884, -0.08977383375167847, 0.02003762498497963, 0.13550563156604767, -0.09317734837532043, -0.16503477096557617, 1.20854914188385, -0.11798469722270966, 0.08314655721187592, -0.03289669752120972]} +{"t": 29.1706, "q": [-0.36436817049980164, -0.010511177591979504, 0.007298583164811134, 0.6089988946914673, -0.2828778326511383, 0.003510007867589593, -0.3581129312515259, 0.01206731516867876, -0.003562244353815913, 0.6320171356201172, -0.33264338970184326, -0.011452855542302132, 0.005437109619379044, 0.04605502262711525, -0.02420835755765438, -3.049086570739746, 2.2475335597991943, 1.8270670175552368, 0.29554298520088196, -0.1347985714673996, -0.08978581428527832, 0.020025640726089478, 0.13552960753440857, -0.09013336151838303, -0.16504675149917603, 1.2088488340377808, -0.11798469722270966, 0.08314655721187592, -0.03290868178009987]} +{"t": 29.1875, "q": [-0.3643511235713959, -0.01057935506105423, 0.007285191211849451, 0.609015941619873, -0.2828778326511383, 0.003510007867589593, -0.3580958843231201, 0.011965050362050533, -0.003589028026908636, 0.6320171356201172, -0.33265161514282227, -0.011452781967818737, 0.005383542273193598, 0.04597890377044678, -0.02413804456591606, -3.049086570739746, 2.2475335597991943, 1.8270071744918823, 0.2955310046672821, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.13558952510356903, -0.08686166256666183, -0.1651066690683365, 1.2088009119033813, -0.11800866574048996, 0.08317052572965622, -0.032357409596443176]} +{"t": 29.2042, "q": [-0.36432555317878723, -0.010707186535000801, 0.007325367070734501, 0.6090244650840759, -0.28287366032600403, 0.003517255187034607, -0.35807883739471436, 0.011845740489661694, -0.003575636073946953, 0.6320597529411316, -0.3326474726200104, -0.01146007888019085, 0.005249623209238052, 0.04584965482354164, -0.024051714688539505, -3.0490505695343018, 2.2475335597991943, 1.8268393278121948, 0.29514750838279724, -0.13478657603263855, -0.08982177078723907, 0.02003762498497963, 0.1357453167438507, -0.0860467404127121, -0.1654542088508606, 1.2089207172393799, -0.11796072870492935, 0.08312258869409561, -0.03248923644423485]} +{"t": 29.2209, "q": [-0.3642829358577728, -0.010724230669438839, 0.007459285669028759, 0.6090415120124817, -0.2828778028488159, 0.003524449886754155, -0.3580617904663086, 0.01187982875853777, -0.003669379511848092, 0.6320597529411316, -0.33261460065841675, -0.011445854790508747, 0.005316582508385181, 0.045728012919425964, -0.023970462381839752, -3.049086570739746, 2.2475335597991943, 1.8267195224761963, 0.2947160601615906, -0.1347745954990387, -0.08979780226945877, 0.02004960924386978, 0.13582921028137207, -0.0854475274682045, -0.16534635424613953, 1.2090286016464233, -0.1179247796535492, 0.08314655721187592, -0.0327768549323082]} +{"t": 29.2377, "q": [-0.364342600107193, -0.010732753202319145, 0.007526245433837175, 0.609092652797699, -0.2828569710254669, 0.0035318026784807444, -0.3580532670021057, 0.01187982875853777, -0.0036827712319791317, 0.6320682764053345, -0.3325614333152771, -0.011322861537337303, 0.005289798602461815, 0.04546191543340683, -0.023792723193764687, -3.049086570739746, 2.247509717941284, 1.8266355991363525, 0.29442843794822693, -0.1347745954990387, -0.08978581428527832, 0.02003762498497963, 0.1357692927122116, -0.08521982282400131, -0.16533437371253967, 1.2090644836425781, -0.11793676018714905, 0.08315853774547577, -0.03286074474453926]} +{"t": 29.2544, "q": [-0.36430850625038147, -0.010732753202319145, 0.007566420827060938, 0.6091096997261047, -0.282869428396225, 0.003538944525644183, -0.35804474353790283, 0.011871307156980038, -0.0038434739690274, 0.632102370262146, -0.332495778799057, -0.011250853538513184, 0.005222839303314686, 0.045188210904598236, -0.02360990270972252, -3.0491104125976562, 2.247509717941284, 1.8265876770019531, 0.29415279626846313, -0.13476261496543884, -0.08978581428527832, 0.020025640726089478, 0.135721355676651, -0.08509998023509979, -0.16529841721057892, 1.2090644836425781, -0.11793676018714905, 0.08312258869409561, -0.032884713262319565]} +{"t": 29.2711, "q": [-0.3642914593219757, -0.010741274803876877, 0.007606596685945988, 0.6091182231903076, -0.2828652858734131, 0.003531749825924635, -0.35798510909080505, 0.011888351291418076, -0.003964001312851906, 0.632102370262146, -0.33245885372161865, -0.01121486909687519, 0.005249623209238052, 0.04477784037590027, -0.023374732583761215, -3.0491225719451904, 2.2475335597991943, 1.8265516757965088, 0.2937573194503784, -0.13473863899707794, -0.08978581428527832, 0.02003762498497963, 0.13568539917469025, -0.08501609414815903, -0.16531039774417877, 1.2090644836425781, -0.1179487481713295, 0.08313456922769547, -0.03298058733344078]} +{"t": 29.2878, "q": [-0.3642914593219757, -0.010741274803876877, 0.007633380591869354, 0.6091352701187134, -0.2828611135482788, 0.003538997145369649, -0.35794249176979065, 0.011896872892975807, -0.004030960611999035, 0.6321279406547546, -0.33243420720100403, -0.011200552806258202, 0.005222839303314686, 0.044329334050416946, -0.023084787651896477, -3.0491464138031006, 2.247509717941284, 1.8264439105987549, 0.2935296297073364, -0.13473863899707794, -0.08976184576749802, 0.02003762498497963, 0.1356734186410904, -0.08489625155925751, -0.16526246070861816, 1.2091004848480225, -0.11790081113576889, 0.08314655721187592, -0.033004555851221085]} +{"t": 29.3046, "q": [-0.3642914593219757, -0.010724230669438839, 0.0076467725448310375, 0.6091523170471191, -0.2828569710254669, 0.0035318026784807444, -0.3578146696090698, 0.01187982875853777, -0.004097919911146164, 0.6321619749069214, -0.33243831992149353, -0.01119325589388609, 0.005155880004167557, 0.04372885078191757, -0.022703997790813446, -3.0491225719451904, 2.247509717941284, 1.8263239860534668, 0.29332590103149414, -0.1347266584634781, -0.08976184576749802, 0.020025640726089478, 0.13558952510356903, -0.08483633399009705, -0.16531039774417877, 1.2091124057769775, -0.11790081113576889, 0.08313456922769547, -0.03301654011011124]} +{"t": 29.3214, "q": [-0.36430850625038147, -0.010707186535000801, 0.0076467725448310375, 0.6091693043708801, -0.2828652858734131, 0.003531749825924635, -0.3577464818954468, 0.01193948369473219, -0.004178271628916264, 0.6321790218353271, -0.33243831992149353, -0.01119325589388609, 0.005115704145282507, 0.0431969128549099, -0.02239818684756756, -3.0491225719451904, 2.247509717941284, 1.8261202573776245, 0.29321804642677307, -0.134750634431839, -0.08978581428527832, 0.02003762498497963, 0.13548167049884796, -0.08466855436563492, -0.16529841721057892, 1.2090884447097778, -0.11791279166936874, 0.08312258869409561, -0.03304050862789154]} +{"t": 29.3382, "q": [-0.36430850625038147, -0.010707186535000801, 0.007633380591869354, 0.6091693043708801, -0.282848596572876, 0.0035463152453303337, -0.3576868176460266, 0.01193948369473219, -0.004218447022140026, 0.6321704983711243, -0.33244651556015015, -0.01120770163834095, 0.005062136333435774, 0.04268035292625427, -0.022141559049487114, -3.049182415008545, 2.2475216388702393, 1.8260483741760254, 0.29307422041893005, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.13546967506408691, -0.08448878675699234, -0.16528643667697906, 1.2090884447097778, -0.1179247796535492, 0.08314655721187592, -0.033064477145671844]} +{"t": 29.3549, "q": [-0.36432555317878723, -0.010707186535000801, 0.0076467725448310375, 0.6091863512992859, -0.2828570306301117, 0.003517360659316182, -0.3576527535915375, 0.011956527829170227, -0.0041916631162166595, 0.6321704983711243, -0.3324466049671173, -0.011178662069141865, 0.00512909609824419, 0.04221661388874054, -0.021832525730133057, -3.0492541790008545, 2.247509717941284, 1.8259644508361816, 0.29282256960868835, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.13546967506408691, -0.08415322750806808, -0.16531039774417877, 1.2090884447097778, -0.11793676018714905, 0.08314655721187592, -0.033076461404561996]} +{"t": 29.3716, "q": [-0.36432555317878723, -0.010715708136558533, 0.007619988638907671, 0.6091948747634888, -0.2828570306301117, 0.003517360659316182, -0.35766124725341797, 0.011956527829170227, -0.0041247038170695305, 0.63218754529953, -0.3324424922466278, -0.011171438731253147, 0.005062136333435774, 0.04172249138355255, -0.02150368131697178, -3.0492422580718994, 2.247509717941284, 1.8259285688400269, 0.2924869954586029, -0.13476261496543884, -0.08976184576749802, 0.02003762498497963, 0.13548167049884796, -0.08396147936582565, -0.16528643667697906, 1.2090884447097778, -0.1179247796535492, 0.08313456922769547, -0.0331004299223423]} +{"t": 29.3884, "q": [-0.3642999827861786, -0.010707186535000801, 0.0076467725448310375, 0.6091948747634888, -0.2828611731529236, 0.0035245551262050867, -0.3576527535915375, 0.011956527829170227, -0.004097919911146164, 0.6321960687637329, -0.3324260711669922, -0.011157066561281681, 0.005048744846135378, 0.041380375623703, -0.021266499534249306, -3.0492422580718994, 2.247509717941284, 1.8258566856384277, 0.291995644569397, -0.1347985714673996, -0.08977383375167847, 0.02003762498497963, 0.13550563156604767, -0.08376973122358322, -0.16533437371253967, 1.2090884447097778, -0.11796072870492935, 0.08314655721187592, -0.03308844566345215]} +{"t": 29.4051, "q": [-0.36430850625038147, -0.010724230669438839, 0.0076467725448310375, 0.6092119216918945, -0.2828652858734131, 0.003531749825924635, -0.35766124725341797, 0.011948006227612495, -0.004138095770031214, 0.6321790218353271, -0.33244675397872925, -0.011120564304292202, 0.00508892023935914, 0.04096237197518349, -0.021008050069212914, -3.049206256866455, 2.247509717941284, 1.8257367610931396, 0.2912406325340271, -0.13478657603263855, -0.08976184576749802, 0.02003762498497963, 0.13556554913520813, -0.08355402201414108, -0.16528643667697906, 1.2091004848480225, -0.11798469722270966, 0.08313456922769547, -0.0331004299223423]} +{"t": 29.4218, "q": [-0.3642914593219757, -0.010707186535000801, 0.007619988638907671, 0.6092204451560974, -0.2828652858734131, 0.003531749825924635, -0.35766977071762085, 0.011948006227612495, -0.004138095770031214, 0.6321704983711243, -0.33245086669921875, -0.01111326739192009, 0.00512909609824419, 0.04066590592265129, -0.020810948684811592, -3.049206256866455, 2.247509717941284, 1.8256169557571411, 0.29010215401649475, -0.13478657603263855, -0.08973787724971771, 0.02003762498497963, 0.13561348617076874, -0.0833742544054985, -0.16528643667697906, 1.2091124057769775, -0.11793676018714905, 0.08313456922769547, -0.0331004299223423]} +{"t": 29.4386, "q": [-0.3642914593219757, -0.010707186535000801, 0.007606596685945988, 0.6092204451560974, -0.2828735113143921, 0.0035605812445282936, -0.35766124725341797, 0.011913917027413845, -0.004057744517922401, 0.6321449279785156, -0.33244678378105164, -0.011106044054031372, 0.005236231256276369, 0.04035415127873421, -0.02058422565460205, -3.049206256866455, 2.247485637664795, 1.8253653049468994, 0.2885441780090332, -0.1347266584634781, -0.08972589671611786, 0.02003762498497963, 0.13558952510356903, -0.08324243128299713, -0.16531039774417877, 1.2091004848480225, -0.11798469722270966, 0.08314655721187592, -0.03311241418123245]} +{"t": 29.4554, "q": [-0.36427441239356995, -0.010724230669438839, 0.007593204732984304, 0.6092545390129089, -0.2828652858734131, 0.003531749825924635, -0.35766977071762085, 0.011930961161851883, -0.004097919911146164, 0.6321194171905518, -0.33244264125823975, -0.011113340966403484, 0.005249623209238052, 0.040126148611307144, -0.02044236660003662, -3.049182415008545, 2.247509717941284, 1.8248978853225708, 0.2865787744522095, -0.134750634431839, -0.08971390873193741, 0.020025640726089478, 0.13556554913520813, -0.08315853774547577, -0.16531039774417877, 1.2091244459152222, -0.1179727166891098, 0.08314655721187592, -0.0331004299223423]} +{"t": 29.4721, "q": [-0.3642914593219757, -0.010715708136558533, 0.007606596685945988, 0.6092545390129089, -0.2828652560710907, 0.003546191845089197, -0.35766977071762085, 0.011905395425856113, -0.004057744517922401, 0.632102370262146, -0.3324178457260132, -0.01115714106708765, 0.005263015162199736, 0.039905741810798645, -0.020305560901761055, -3.049206256866455, 2.2475335597991943, 1.8239152431488037, 0.2849968671798706, -0.1347745954990387, -0.08977383375167847, 0.020025640726089478, 0.13550563156604767, -0.083074651658535, -0.16529841721057892, 1.2091363668441772, -0.1179487481713295, 0.08314655721187592, -0.0331004299223423]} +{"t": 29.4888, "q": [-0.3642829358577728, -0.010715708136558533, 0.0076467725448310375, 0.6092801094055176, -0.2828652560710907, 0.003546191845089197, -0.35766977071762085, 0.011922439560294151, -0.004057744517922401, 0.632102370262146, -0.3324178457260132, -0.01115714106708765, 0.005155880004167557, 0.03958665952086449, -0.0201326422393322, -3.0491943359375, 2.2475335597991943, 1.8227766752243042, 0.2835707366466522, -0.1348225325345993, -0.08984573930501938, 0.020025640726089478, 0.1353738009929657, -0.08296678960323334, -0.1652504801750183, 1.2091363668441772, -0.1179727166891098, 0.08313456922769547, -0.03308844566345215]} +{"t": 29.5057, "q": [-0.3642829358577728, -0.010724230669438839, 0.007673555985093117, 0.6092801094055176, -0.2828735113143921, 0.0035605812445282936, -0.3576442301273346, 0.011922439560294151, -0.004138095770031214, 0.6321108937263489, -0.33241787552833557, -0.011142603121697903, 0.005048744846135378, 0.03924508020281792, -0.020022939890623093, -3.049206256866455, 2.247509717941284, 1.8217101097106934, 0.28191691637039185, -0.1348225325345993, -0.08973787724971771, 0.02004960924386978, 0.13527794182300568, -0.08283496648073196, -0.16528643667697906, 1.2091244459152222, -0.11796072870492935, 0.08313456922769547, -0.0331004299223423]} +{"t": 29.5224, "q": [-0.3642829358577728, -0.010724230669438839, 0.00772712379693985, 0.6093312501907349, -0.28286105394363403, 0.003553457325324416, -0.3576442301273346, 0.011922439560294151, -0.004218447022140026, 0.632102370262146, -0.3323933780193329, -0.011070207692682743, 0.00508892023935914, 0.03888046741485596, -0.019839530810713768, -3.049206256866455, 2.2474617958068848, 1.8210389614105225, 0.2801552414894104, -0.1347745954990387, -0.08970192819833755, 0.02003762498497963, 0.13523000478744507, -0.08265519887208939, -0.16526246070861816, 1.2091244459152222, -0.11796072870492935, 0.08313456922769547, -0.0331004299223423]} +{"t": 29.5392, "q": [-0.36426588892936707, -0.010741274803876877, 0.007780691608786583, 0.6094505786895752, -0.28285685181617737, 0.00356070464476943, -0.35761013627052307, 0.011913917027413845, -0.0041916631162166595, 0.632102370262146, -0.33230316638946533, -0.010954825207591057, 0.005115704145282507, 0.03850061818957329, -0.01963627152144909, -3.0492663383483887, 2.247509717941284, 1.820631504058838, 0.27799805998802185, -0.1347745954990387, -0.08970192819833755, 0.02003762498497963, 0.13519404828548431, -0.08246345072984695, -0.16528643667697906, 1.2091604471206665, -0.11793676018714905, 0.08313456922769547, -0.03308844566345215]} +{"t": 29.5559, "q": [-0.3642829358577728, -0.010758318938314915, 0.007834259420633316, 0.6095868945121765, -0.2828609347343445, 0.0035823413636535406, -0.3576016128063202, 0.01187982875853777, -0.004205055069178343, 0.6321194171905518, -0.33221715688705444, -0.010803106240928173, 0.005115704145282507, 0.03810533881187439, -0.01936434768140316, -3.0492782592773438, 2.2475216388702393, 1.8202000856399536, 0.27622440457344055, -0.13476261496543884, -0.08980978280305862, 0.020025640726089478, 0.1351461112499237, -0.08230765908956528, -0.1652504801750183, 1.2091723680496216, -0.11796072870492935, 0.08313456922769547, -0.0331004299223423]} +{"t": 29.5726, "q": [-0.3642573654651642, -0.010749796405434608, 0.00798156950622797, 0.6096806526184082, -0.2828609347343445, 0.0035823413636535406, -0.3576016128063202, 0.011862784624099731, -0.004245230928063393, 0.6321194171905518, -0.33211469650268555, -0.010651517659425735, 0.0051424880512058735, 0.0376492477953434, -0.019052091985940933, -3.049302339553833, 2.2475454807281494, 1.8196847438812256, 0.27544543147087097, -0.1347985714673996, -0.08990565687417984, 0.020025640726089478, 0.13503825664520264, -0.08203202486038208, -0.16523849964141846, 1.2091844081878662, -0.11796072870492935, 0.08313456922769547, -0.03308844566345215]} +{"t": 29.5894, "q": [-0.36427441239356995, -0.010775363072752953, 0.008102096617221832, 0.6097232699394226, -0.2828526794910431, 0.003567951964214444, -0.3575930893421173, 0.011854262091219425, -0.004218447022140026, 0.6321108937263489, -0.33202460408210754, -0.010478038340806961, 0.00508892023935914, 0.03726162388920784, -0.018795184791088104, -3.0492663383483887, 2.247509717941284, 1.8192893266677856, 0.2754094898700714, -0.13476261496543884, -0.08989367634057999, 0.020025640726089478, 0.13497832417488098, -0.0818043202161789, -0.16529841721057892, 1.2091963291168213, -0.11793676018714905, 0.08314655721187592, -0.03308844566345215]} +{"t": 29.6061, "q": [-0.3642914593219757, -0.010775363072752953, 0.008182448334991932, 0.6097232699394226, -0.28287339210510254, 0.0035895011387765408, -0.35758456587791443, 0.011862784624099731, -0.004218447022140026, 0.6320767998695374, -0.331942617893219, -0.01036258228123188, 0.0051424880512058735, 0.036965299397706985, -0.018618552014231682, -3.049302339553833, 2.247509717941284, 1.8189177513122559, 0.27557724714279175, -0.1347985714673996, -0.08972589671611786, 0.02004960924386978, 0.13493038713932037, -0.08162456005811691, -0.1652025431394577, 1.2091963291168213, -0.1179247796535492, 0.08313456922769547, -0.0331004299223423]} +{"t": 29.6228, "q": [-0.3642914593219757, -0.010783884674310684, 0.008276191540062428, 0.6097744107246399, -0.28286507725715637, 0.0035895537585020065, -0.3576016128063202, 0.011854262091219425, -0.00416487967595458, 0.6320853233337402, -0.33187296986579895, -0.010239738039672375, 0.005021960940212011, 0.03688151389360428, -0.018514474853873253, -3.049326181411743, 2.247509717941284, 1.8186540603637695, 0.27572107315063477, -0.1347985714673996, -0.0896899402141571, 0.02004960924386978, 0.13491840660572052, -0.081552654504776, -0.1652744561433792, 1.209220290184021, -0.11793676018714905, 0.08312258869409561, -0.0331004299223423]} +{"t": 29.6397, "q": [-0.3642573654651642, -0.010835018008947372, 0.008343150839209557, 0.6097999811172485, -0.28286507725715637, 0.0035895537585020065, -0.3575930893421173, 0.011803129687905312, -0.004138095770031214, 0.6320938467979431, -0.3318156898021698, -0.010124078020453453, 0.004995177034288645, 0.03689667955040932, -0.018514782190322876, -3.049314260482788, 2.247509717941284, 1.8183904886245728, 0.27567312121391296, -0.13478657603263855, -0.08971390873193741, 0.02003762498497963, 0.13500230014324188, -0.08151669800281525, -0.16526246070861816, 1.2092562913894653, -0.1179966852068901, 0.08313456922769547, -0.033124398440122604]} +{"t": 29.6564, "q": [-0.3642573654651642, -0.01088615134358406, 0.008436894044280052, 0.6097744107246399, -0.2828609049320221, 0.003596801310777664, -0.3576016128063202, 0.01179460808634758, -0.004071136470884085, 0.632102370262146, -0.3317951560020447, -0.010102464817464352, 0.005075528286397457, 0.03689667955040932, -0.018514782190322876, -3.049314260482788, 2.2474617958068848, 1.818006992340088, 0.2757090926170349, -0.13476261496543884, -0.08970192819833755, 0.02004960924386978, 0.13499031960964203, -0.08149272948503494, -0.1652744561433792, 1.209280252456665, -0.1179966852068901, 0.08312258869409561, -0.03311241418123245]} +{"t": 29.6732, "q": [-0.3642573654651642, -0.01088615134358406, 0.008436894044280052, 0.6097744107246399, -0.2828567624092102, 0.0035895886830985546, -0.35753342509269714, 0.01179460808634758, -0.004071136470884085, 0.6320767998695374, -0.33179518580436707, -0.010087945498526096, 0.00508892023935914, 0.03694220259785652, -0.01852545328438282, -3.0493381023406982, 2.2474496364593506, 1.8175036907196045, 0.27592480182647705, -0.1347985714673996, -0.0896899402141571, 0.02003762498497963, 0.13497832417488098, -0.08154066652059555, -0.16526246070861816, 1.2093400955200195, -0.1179727166891098, 0.08311060070991516, -0.03311241418123245]} +{"t": 29.69, "q": [-0.36427441239356995, -0.010869106277823448, 0.008383326232433319, 0.609765887260437, -0.2828609347343445, 0.0035823413636535406, -0.3574056029319763, 0.01179460808634758, -0.004111311864107847, 0.6320853233337402, -0.3318157494068146, -0.01009502075612545, 0.005062136333435774, 0.03695743903517723, -0.01854526251554489, -3.0493621826171875, 2.2474377155303955, 1.8167126178741455, 0.2760086953639984, -0.13478657603263855, -0.0896659716963768, 0.02003762498497963, 0.13490642607212067, -0.08154066652059555, -0.16531039774417877, 1.2093641757965088, -0.1179966852068901, 0.08314655721187592, -0.0331004299223423]} +{"t": 29.7067, "q": [-0.3642403483390808, -0.010835018008947372, 0.008369934745132923, 0.6097744107246399, -0.2828567624092102, 0.0035895886830985546, -0.35735446214675903, 0.01182017382234335, -0.004111311864107847, 0.6320938467979431, -0.33183225989341736, -0.010065833106637001, 0.005048744846135378, 0.036995477974414825, -0.018580159172415733, -3.0495779514312744, 2.24747371673584, 1.815454363822937, 0.276044636964798, -0.13476261496543884, -0.0896899402141571, 0.02003762498497963, 0.13483451306819916, -0.0815286859869957, -0.16526246070861816, 1.2093641757965088, -0.11796072870492935, 0.08314655721187592, -0.0331004299223423]} +{"t": 29.7235, "q": [-0.36422330141067505, -0.01082649640738964, 0.00832975935190916, 0.609765887260437, -0.2828609347343445, 0.0035823413636535406, -0.357286274433136, 0.011845740489661694, -0.004097919911146164, 0.632102370262146, -0.33181992173194885, -0.010058684274554253, 0.005008568987250328, 0.037010639905929565, -0.018580466508865356, -3.049625873565674, 2.2474496364593506, 1.814207911491394, 0.2759847342967987, -0.13478657603263855, -0.08971390873193741, 0.02004960924386978, 0.13466674089431763, -0.08154066652059555, -0.1652744561433792, 1.2093641757965088, -0.11793676018714905, 0.08314655721187592, -0.033124398440122604]} +{"t": 29.7404, "q": [-0.36421477794647217, -0.010817973874509335, 0.00831636693328619, 0.6097573637962341, -0.2828609347343445, 0.0035823413636535406, -0.35724368691444397, 0.011854262091219425, -0.004057744517922401, 0.6321279406547546, -0.33183223009109497, -0.010080352425575256, 0.004995177034288645, 0.037041038274765015, -0.01860058307647705, -3.0495657920837402, 2.24747371673584, 1.8133331537246704, 0.2759607434272766, -0.1347985714673996, -0.08972589671611786, 0.02003762498497963, 0.13451094925403595, -0.081552654504776, -0.16528643667697906, 1.2093760967254639, -0.1179727166891098, 0.08313456922769547, -0.033124398440122604]} +{"t": 29.7571, "q": [-0.3642062544822693, -0.010758318938314915, 0.008276191540062428, 0.6097573637962341, -0.2828609347343445, 0.0035823413636535406, -0.35726073384284973, 0.011913917027413845, -0.004057744517922401, 0.6321449279785156, -0.33183225989341736, -0.010065833106637001, 0.004928217735141516, 0.03707140311598778, -0.01861094869673252, -3.0494940280914307, 2.24747371673584, 1.8129256963729858, 0.2759367823600769, -0.13473863899707794, -0.08971390873193741, 0.02004960924386978, 0.13441507518291473, -0.081552654504776, -0.16529841721057892, 1.2093760967254639, -0.11798469722270966, 0.08313456922769547, -0.033124398440122604]} +{"t": 29.7738, "q": [-0.36417216062545776, -0.010707186535000801, 0.008222623728215694, 0.6097403168678284, -0.28285273909568787, 0.003553509945049882, -0.3572692573070526, 0.011956527829170227, -0.004017568659037352, 0.6321534514427185, -0.33182400465011597, -0.010080426931381226, 0.00483447453007102, 0.037079039961099625, -0.01862572878599167, -3.049517869949341, 2.2474617958068848, 1.8126620054244995, 0.27599671483039856, -0.13476261496543884, -0.08971390873193741, 0.02003762498497963, 0.13433118164539337, -0.08154066652059555, -0.1652744561433792, 1.2093760967254639, -0.11796072870492935, 0.08313456922769547, -0.033124398440122604]} +{"t": 29.7908, "q": [-0.36417216062545776, -0.010664575733244419, 0.008155664429068565, 0.6097488403320312, -0.2828485667705536, 0.003560757264494896, -0.35724368691444397, 0.012075837701559067, -0.004017568659037352, 0.6321534514427185, -0.33183223009109497, -0.010080352425575256, 0.004646987654268742, 0.03710940107703209, -0.01863609440624714, -3.0496017932891846, 2.2474617958068848, 1.8125780820846558, 0.27592480182647705, -0.1347266584634781, -0.08971390873193741, 0.02003762498497963, 0.134247288107872, -0.08154066652059555, -0.16523849964141846, 1.2093760967254639, -0.11793676018714905, 0.08313456922769547, -0.033124398440122604]} +{"t": 29.8075, "q": [-0.3641636371612549, -0.010621964931488037, 0.008102096617221832, 0.6097488403320312, -0.2828485667705536, 0.003560757264494896, -0.35724368691444397, 0.012075837701559067, -0.003964001312851906, 0.6321704983711243, -0.33182811737060547, -0.010073130019009113, 0.004539852496236563, 0.03713979944586754, -0.018656210973858833, -3.049649715423584, 2.2474617958068848, 1.8124701976776123, 0.27597272396087646, -0.13473863899707794, -0.08973787724971771, 0.02003762498497963, 0.1341753900051117, -0.08154066652059555, -0.16528643667697906, 1.2093881368637085, -0.1179487481713295, 0.08313456922769547, -0.033124398440122604]} +{"t": 29.8242, "q": [-0.3641465902328491, -0.01057935506105423, 0.008075312711298466, 0.6097488403320312, -0.2828402817249298, 0.003546368097886443, -0.3571925461292267, 0.012084359303116798, -0.0038970415480434895, 0.6321534514427185, -0.3318198621273041, -0.010087723843753338, 0.004405933897942305, 0.037170201539993286, -0.018676327541470528, -3.049757719039917, 2.24747371673584, 1.8122905492782593, 0.27594876289367676, -0.1347745954990387, -0.08973787724971771, 0.020025640726089478, 0.13409149646759033, -0.08151669800281525, -0.1652265191078186, 1.2093881368637085, -0.11796072870492935, 0.08313456922769547, -0.033124398440122604]} +{"t": 29.8413, "q": [-0.3641636371612549, -0.010562309995293617, 0.008021745830774307, 0.6097232699394226, -0.2828402817249298, 0.003546368097886443, -0.3571840226650238, 0.01206731516867876, -0.0038568659219890833, 0.6321619749069214, -0.33182811737060547, -0.010073130019009113, 0.004245230928063393, 0.037170201539993286, -0.018676327541470528, -3.049781560897827, 2.2474617958068848, 1.8121826648712158, 0.27594876289367676, -0.13481055200099945, -0.08974986523389816, 0.02003762498497963, 0.13404355943202972, -0.08151669800281525, -0.16528643667697906, 1.2093881368637085, -0.11793676018714905, 0.08314655721187592, -0.033124398440122604]} +{"t": 29.8581, "q": [-0.3641124963760376, -0.01057935506105423, 0.008021745830774307, 0.6097147464752197, -0.282848596572876, 0.0035463152453303337, -0.35716697573661804, 0.012075837701559067, -0.0038434739690274, 0.6321704983711243, -0.33183225989341736, -0.010065833106637001, 0.004071136470884085, 0.03720063716173172, -0.018706195056438446, -3.0498056411743164, 2.2474617958068848, 1.8121466636657715, 0.27594876289367676, -0.13478657603263855, -0.08971390873193741, 0.02003762498497963, 0.13395966589450836, -0.08151669800281525, -0.16532239317893982, 1.2094240188598633, -0.1179487481713295, 0.08313456922769547, -0.03314836695790291]} +{"t": 29.8748, "q": [-0.36412954330444336, -0.01057935506105423, 0.008021745830774307, 0.6097062230110168, -0.282848596572876, 0.0035463152453303337, -0.35716697573661804, 0.012050271034240723, -0.0037095551379024982, 0.6321619749069214, -0.33182811737060547, -0.010073130019009113, 0.003990784753113985, 0.03724619746208191, -0.018726618960499763, -3.049865484237671, 2.2474496364593506, 1.8121107816696167, 0.27597272396087646, -0.13476261496543884, -0.08972589671611786, 0.020025640726089478, 0.1338997483253479, -0.081552654504776, -0.16528643667697906, 1.2094600200653076, -0.1179487481713295, 0.08313456922769547, -0.03311241418123245]} +{"t": 29.8916, "q": [-0.3641039729118347, -0.010596398264169693, 0.008035137318074703, 0.6097062230110168, -0.28285279870033264, 0.0035390679258853197, -0.3571499288082123, 0.012058793567121029, -0.003696163184940815, 0.6321449279785156, -0.33183225989341736, -0.010065833106637001, 0.003937217406928539, 0.037284236401319504, -0.018761515617370605, -3.049853563308716, 2.24747371673584, 1.8120508193969727, 0.2759847342967987, -0.134750634431839, -0.08972589671611786, 0.02003762498497963, 0.1338518112897873, -0.08154066652059555, -0.16528643667697906, 1.209519863128662, -0.11796072870492935, 0.08314655721187592, -0.03314836695790291]} +{"t": 29.9083, "q": [-0.3641124963760376, -0.01057935506105423, 0.008035137318074703, 0.6097317934036255, -0.2828402817249298, 0.003546368097886443, -0.3571073114871979, 0.012050271034240723, -0.003669379511848092, 0.6321449279785156, -0.33183225989341736, -0.010065833106637001, 0.0038702578749507666, 0.03732987120747566, -0.01880144141614437, -3.0498175621032715, 2.2474496364593506, 1.8119908571243286, 0.2759607434272766, -0.13471467792987823, -0.08971390873193741, 0.02003762498497963, 0.13377991318702698, -0.081552654504776, -0.16526246070861816, 1.2095319032669067, -0.11796072870492935, 0.08315853774547577, -0.033124398440122604]} +{"t": 29.925, "q": [-0.36408692598342896, -0.01057935506105423, 0.00806192122399807, 0.6097232699394226, -0.28285691142082214, 0.003546262625604868, -0.3570902943611145, 0.012024705298244953, -0.003669379511848092, 0.6321364045143127, -0.33183228969573975, -0.010051295161247253, 0.0038434739690274, 0.03732983395457268, -0.018791690468788147, -3.0498175621032715, 2.2474496364593506, 1.8119310140609741, 0.27594876289367676, -0.13473863899707794, -0.08970192819833755, 0.02003762498497963, 0.13376791775226593, -0.0815286859869957, -0.16526246070861816, 1.2095918655395508, -0.1179727166891098, 0.08313456922769547, -0.03316035121679306]} +{"t": 29.9417, "q": [-0.36409544944763184, -0.010613443329930305, 0.00806192122399807, 0.6097317934036255, -0.2828569710254669, 0.0035318026784807444, -0.357098788022995, 0.011973571963608265, -0.0036425956059247255, 0.6321194171905518, -0.33182406425476074, -0.01005138736218214, 0.0038702578749507666, 0.03732983395457268, -0.018791690468788147, -3.049853563308716, 2.2474496364593506, 1.8119189739227295, 0.27592480182647705, -0.13473863899707794, -0.08972589671611786, 0.02004960924386978, 0.13374395668506622, -0.08156463503837585, -0.16529841721057892, 1.2096877098083496, -0.11796072870492935, 0.08313456922769547, -0.03314836695790291]} +{"t": 29.9585, "q": [-0.3641124963760376, -0.010621964931488037, 0.008048529736697674, 0.6097232699394226, -0.28285691142082214, 0.003546262625604868, -0.3570817708969116, 0.011913917027413845, -0.0036292036529630423, 0.6321108937263489, -0.3318076431751251, -0.010037015192210674, 0.003964001312851906, 0.03732987120747566, -0.01880144141614437, -3.049865484237671, 2.2474617958068848, 1.8118950128555298, 0.2759607434272766, -0.1347745954990387, -0.08974986523389816, 0.02003762498497963, 0.13373197615146637, -0.08156463503837585, -0.1652744561433792, 1.2097235918045044, -0.11793676018714905, 0.08314655721187592, -0.03314836695790291]} +{"t": 29.9752, "q": [-0.3641124963760376, -0.010647531598806381, 0.00806192122399807, 0.6097232699394226, -0.28285691142082214, 0.003546262625604868, -0.3570817708969116, 0.011888351291418076, -0.0036425956059247255, 0.6320853233337402, -0.3318159282207489, -0.010022402741014957, 0.004044352564960718, 0.03731467202305794, -0.018791383132338524, -3.0498175621032715, 2.24747371673584, 1.8118470907211304, 0.2759847342967987, -0.13478657603263855, -0.08971390873193741, 0.02003762498497963, 0.13370800018310547, -0.08154066652059555, -0.16526246070861816, 1.209735631942749, -0.11793676018714905, 0.08313456922769547, -0.03314836695790291]} +{"t": 29.9919, "q": [-0.36413806676864624, -0.010664575733244419, 0.008048529736697674, 0.6097062230110168, -0.2828611135482788, 0.003538997145369649, -0.3570902943611145, 0.01187982875853777, -0.003669379511848092, 0.6320767998695374, -0.3318076729774475, -0.010022494941949844, 0.004111311864107847, 0.03731467202305794, -0.018791383132338524, -3.049781560897827, 2.2474617958068848, 1.8118470907211304, 0.2759847342967987, -0.13476261496543884, -0.08971390873193741, 0.02004960924386978, 0.13371998071670532, -0.08154066652059555, -0.1652504801750183, 1.2098435163497925, -0.11791279166936874, 0.08313456922769547, -0.033136382699012756]} diff --git a/Camera_Recorder/DataG1/test2(1).jsonl b/Camera_Recorder/DataG1/test2(1).jsonl new file mode 100644 index 0000000..d4739c9 --- /dev/null +++ b/Camera_Recorder/DataG1/test2(1).jsonl @@ -0,0 +1,665 @@ +{"meta": {"format": "g1_camera_pose_v1", "created_unix": 1773399405.5830863, "motors": 29, "source": "0", "model": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/Models/yolo11n-pose.pt", "record_hz": 30.0, "home_pose": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/DataG1/arm_home.jsonl", "raw_pose_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/RawPose/test2(1).pose.jsonl", "config_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/camera_recorder_config.json", "joint_config_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/joint.json", "pose_mapping_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/pose_mapping.json", "notes": "Lower body fixed to home pose; upper body derived heuristically from 2D YOLO keypoints."}} +{"t": 13.604933, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005362, -0.028714, 0.313545, 0.21556, -0.013879, 0.996331, 0.167614, 0.024121, -0.038541, 0.340366, -0.231886, 0.075387, 0.934925, -0.197923, -0.014033, 0.015538], "tracked": true, "track_id": 1} +{"t": 13.718573, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003865, -0.028714, 0.332951, 0.217738, -0.031079, 1.003904, 0.17864, -0.015391, -0.038435, 0.29504, -0.223805, 0.023094, 0.978081, -0.183562, 0.052419, 0.008844], "tracked": true, "track_id": 1} +{"t": 13.753928, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001955, -0.028714, 0.352254, 0.229763, -0.064963, 1.033914, 0.205841, -0.063537, -0.042107, 0.335506, -0.243345, 0.066302, 1.013622, -0.210576, 0.073511, 0.02431], "tracked": true, "track_id": 1} +{"t": 13.791661, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000522, -0.028714, 0.276436, 0.332187, -0.174175, 1.055361, 0.278205, -0.01772, -0.080217, 0.388198, -0.27356, 0.108983, 1.113069, -0.256041, 0.133931, 0.044761], "tracked": true, "track_id": 1} +{"t": 13.844667, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000119, -0.028714, 0.18369, 0.434009, -0.246212, 1.08754, 0.333183, 0.059806, -0.111539, 0.403103, -0.286137, 0.117999, 1.170359, -0.277519, 0.169941, 0.05212], "tracked": true, "track_id": 1} +{"t": 13.903225, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -7e-05, -0.028714, 0.114211, 0.513424, -0.306163, 1.119495, 0.378704, 0.126422, -0.13788, 0.416659, -0.296005, 0.123591, 1.219055, -0.294644, 0.202683, 0.058045], "tracked": true, "track_id": 1} +{"t": 13.962286, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000293, -0.028714, 0.038239, 0.592172, -0.351716, 1.149987, 0.418307, 0.18414, -0.158822, 0.429119, -0.305116, 0.128226, 1.260447, -0.309562, 0.237403, 0.063946], "tracked": true, "track_id": 1} +{"t": 14.022398, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.00051, -0.028714, -0.024663, 0.657109, -0.388709, 1.177373, 0.451325, 0.233252, -0.176122, 0.438102, -0.313917, 0.13463, 1.29563, -0.32345, 0.264139, 0.069325], "tracked": true, "track_id": 1} +{"t": 14.086413, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001031, -0.028714, -0.086882, 0.718706, -0.421434, 1.201871, 0.480199, 0.274969, -0.191201, 0.44557, -0.322251, 0.142471, 1.325535, -0.336632, 0.285294, 0.074396], "tracked": true, "track_id": 1} +{"t": 14.14322, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001251, -0.028714, -0.13518, 0.767501, -0.447642, 1.223915, 0.504172, 0.310416, -0.203543, 0.451044, -0.329897, 0.149158, 1.350955, -0.347911, 0.305405, 0.078992], "tracked": true, "track_id": 1} +{"t": 14.204161, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001544, -0.028714, -0.172235, 0.80527, -0.469276, 1.244935, 0.523734, 0.340436, -0.213829, 0.45564, -0.336618, 0.154575, 1.372562, -0.357898, 0.323965, 0.083012], "tracked": true, "track_id": 1} +{"t": 14.263261, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.002231, -0.028714, -0.217794, 0.848114, -0.490103, 1.259021, 0.541919, 0.366023, -0.2233, 0.45851, -0.345233, 0.164291, 1.390928, -0.369498, 0.342321, 0.088269], "tracked": true, "track_id": 1} +{"t": 14.324425, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.002447, -0.028714, -0.249066, 0.879356, -0.506878, 1.272605, 0.556868, 0.387768, -0.231076, 0.459992, -0.351462, 0.170722, 1.406538, -0.378003, 0.353972, 0.091683], "tracked": true, "track_id": 1} +{"t": 14.382552, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.002492, -0.028714, -0.274879, 0.905449, -0.520399, 1.283776, 0.569527, 0.406287, -0.237474, 0.461878, -0.356573, 0.175663, 1.419808, -0.384693, 0.366111, 0.094723], "tracked": true, "track_id": 1} +{"t": 14.445544, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001956, -0.028714, -0.291575, 0.924231, -0.529411, 1.293532, 0.579977, 0.42207, -0.242187, 0.462496, -0.358601, 0.177272, 1.431086, -0.387766, 0.367336, 0.095356], "tracked": true, "track_id": 1} +{"t": 14.50276, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001426, -0.028714, -0.303775, 0.939755, -0.539693, 1.299114, 0.589355, 0.435471, -0.246963, 0.463088, -0.360349, 0.178769, 1.440674, -0.390218, 0.368724, 0.095978], "tracked": true, "track_id": 1} +{"t": 14.563187, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001137, -0.028714, -0.313603, 0.951863, -0.547799, 1.305541, 0.596868, 0.446903, -0.250842, 0.466781, -0.359845, 0.175118, 1.448822, -0.390611, 0.375568, 0.095799], "tracked": true, "track_id": 1} +{"t": 14.623119, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001053, -0.028714, -0.325632, 0.964805, -0.555281, 1.309278, 0.603578, 0.456603, -0.25431, 0.469022, -0.361957, 0.175446, 1.455749, -0.393226, 0.387059, 0.097398], "tracked": true, "track_id": 1} +{"t": 14.693277, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001104, -0.028714, -0.340833, 0.979377, -0.561636, 1.309057, 0.609654, 0.464705, -0.257239, 0.467984, -0.365, 0.177461, 1.461637, -0.397149, 0.392783, 0.098738], "tracked": true, "track_id": 1} +{"t": 14.748441, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.00096, -0.028714, -0.347991, 0.987409, -0.566073, 1.311958, 0.614224, 0.471717, -0.25946, 0.468432, -0.365706, 0.17608, 1.466641, -0.398571, 0.396896, 0.09887], "tracked": true, "track_id": 1} +{"t": 14.80733, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000889, -0.028714, -0.349298, 0.990406, -0.570042, 1.315135, 0.617496, 0.477663, -0.261405, 0.469668, -0.364884, 0.171299, 1.470895, -0.398765, 0.40141, 0.098054], "tracked": true, "track_id": 1} +{"t": 14.867299, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000492, -0.028714, -0.340733, 0.986003, -0.572491, 1.317508, 0.619356, 0.482513, -0.262759, 0.471971, -0.36118, 0.162156, 1.474511, -0.395867, 0.401902, 0.095429], "tracked": true, "track_id": 1} +{"t": 14.927452, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 9.5e-05, -0.028714, -0.340801, 0.988679, -0.574652, 1.319371, 0.622288, 0.486776, -0.263952, 0.471962, -0.358387, 0.155738, 1.477584, -0.393548, 0.397756, 0.092999], "tracked": true, "track_id": 1} +{"t": 14.993319, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000417, -0.028714, -0.339502, 0.989668, -0.577401, 1.317415, 0.624504, 0.489906, -0.26517, 0.473469, -0.355362, 0.147955, 1.480197, -0.391185, 0.398292, 0.090781], "tracked": true, "track_id": 1} +{"t": 15.047179, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000512, -0.028714, -0.339204, 0.990578, -0.579475, 1.316284, 0.626154, 0.492686, -0.266143, 0.473223, -0.355399, 0.146002, 1.482417, -0.391669, 0.400411, 0.090483], "tracked": true, "track_id": 1} +{"t": 15.106963, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000619, -0.028714, -0.336468, 0.989788, -0.582131, 1.315091, 0.627484, 0.494918, -0.267216, 0.473895, -0.35678, 0.147513, 1.484305, -0.392725, 0.405987, 0.091656], "tracked": true, "track_id": 1} +{"t": 15.167377, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000704, -0.028714, -0.332099, 0.987567, -0.584512, 1.314766, 0.628377, 0.496857, -0.26817, 0.474066, -0.359087, 0.150693, 1.485909, -0.394482, 0.412669, 0.093465], "tracked": true, "track_id": 1} +{"t": 15.227511, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000997, -0.028714, -0.326631, 0.984124, -0.584312, 1.314672, 0.628743, 0.498469, -0.268322, 0.473807, -0.359734, 0.150498, 1.487273, -0.394697, 0.416388, 0.093894], "tracked": true, "track_id": 1} +{"t": 15.288, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000985, -0.028714, -0.319499, 0.979696, -0.587343, 1.31451, 0.629033, 0.499719, -0.269377, 0.47346, -0.361436, 0.15226, 1.488432, -0.396257, 0.421159, 0.095036], "tracked": true, "track_id": 1} +{"t": 15.347503, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001523, -0.028714, -0.303511, 0.969377, -0.588629, 1.317242, 0.628552, 0.500901, -0.269909, 0.472069, -0.360613, 0.149169, 1.489417, -0.395085, 0.420663, 0.094062], "tracked": true, "track_id": 1} +{"t": 15.407473, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001989, -0.028714, -0.296344, 0.96603, -0.591329, 1.316627, 0.629388, 0.501609, -0.270796, 0.46986, -0.358915, 0.144308, 1.490254, -0.393607, 0.416365, 0.09207], "tracked": true, "track_id": 1} +{"t": 15.467956, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002073, -0.028714, -0.294495, 0.966396, -0.595805, 1.315167, 0.630659, 0.502213, -0.272191, 0.468347, -0.358619, 0.142802, 1.490966, -0.393725, 0.41363, 0.09127], "tracked": true, "track_id": 1} +{"t": 15.527919, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001884, -0.028714, -0.296679, 0.969479, -0.601281, 1.312668, 0.632183, 0.50263, -0.273856, 0.468089, -0.360822, 0.146823, 1.491571, -0.395835, 0.416526, 0.092831], "tracked": true, "track_id": 1} +{"t": 15.588186, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001939, -0.028714, -0.289448, 0.965806, -0.606321, 1.311797, 0.632693, 0.502798, -0.275361, 0.468857, -0.361881, 0.14855, 1.492086, -0.396404, 0.421003, 0.093924], "tracked": true, "track_id": 1} +{"t": 15.647926, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001834, -0.028714, -0.28538, 0.964093, -0.611341, 1.309764, 0.633306, 0.502724, -0.276828, 0.469758, -0.365072, 0.15479, 1.492523, -0.398698, 0.428678, 0.096763], "tracked": true, "track_id": 1} +{"t": 15.708984, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001781, -0.028714, -0.28613, 0.966072, -0.616222, 1.304813, 0.634527, 0.501969, -0.278164, 0.473131, -0.368094, 0.162899, 1.492701, -0.400115, 0.437303, 0.100275], "tracked": true, "track_id": 1} +{"t": 15.767919, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001826, -0.028714, -0.291863, 0.97204, -0.620598, 1.299918, 0.636432, 0.501468, -0.279386, 0.478562, -0.368195, 0.189264, 1.437693, -0.398649, 0.391128, 0.101994], "tracked": true, "track_id": 1} +{"t": 15.827722, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002481, -0.028714, -0.295328, 0.97738, -0.623717, 1.295281, 0.638671, 0.500782, -0.280214, 0.482172, -0.365649, 0.236086, 1.326258, -0.394513, 0.279972, 0.101235], "tracked": true, "track_id": 1} +{"t": 15.888282, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002483, -0.028714, -0.299741, 0.981847, -0.62693, 1.291701, 0.640048, 0.500427, -0.281112, 0.482253, -0.371216, 0.274646, 1.272658, -0.398344, 0.228904, 0.1059], "tracked": true, "track_id": 1} +{"t": 15.94669, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002344, -0.028714, -0.297912, 0.981233, -0.630634, 1.288806, 0.640465, 0.499759, -0.282114, 0.48579, -0.373332, 0.300739, 1.233442, -0.399171, 0.191335, 0.108664], "tracked": true, "track_id": 1} +{"t": 16.007692, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002381, -0.028714, -0.301704, 0.985362, -0.633997, 1.285565, 0.641822, 0.49933, -0.283047, 0.48721, -0.374126, 0.336043, 1.165588, -0.39934, 0.120425, 0.109778], "tracked": true, "track_id": 1} +{"t": 16.067915, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002133, -0.028714, -0.312116, 0.993918, -0.63779, 1.278802, 0.643537, 0.498048, -0.283995, 0.486736, -0.376829, 0.36988, 1.106292, -0.40194, 0.059512, 0.111768], "tracked": true, "track_id": 1} +{"t": 16.127708, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00189, -0.028714, -0.318704, 0.999317, -0.641239, 1.272176, 0.644664, 0.496381, -0.284792, 0.489243, -0.377015, 0.396139, 1.056203, -0.401992, 0.00661, 0.112576], "tracked": true, "track_id": 1} +{"t": 16.187084, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001964, -0.028714, -0.317325, 0.999228, -0.644085, 1.268442, 0.645198, 0.495129, -0.285465, 0.490804, -0.377133, 0.411742, 1.027807, -0.401525, -0.023868, 0.113181], "tracked": true, "track_id": 1} +{"t": 16.247302, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00185, -0.028714, -0.3157, 0.998411, -0.646382, 1.267408, 0.645363, 0.494891, -0.28611, 0.494124, -0.375693, 0.420637, 1.008172, -0.399848, -0.04595, 0.11291], "tracked": true, "track_id": 1} +{"t": 16.311077, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002119, -0.028714, -0.314981, 0.998232, -0.645355, 1.267699, 0.645527, 0.495163, -0.285843, 0.499945, -0.369562, 0.428159, 0.967926, -0.392958, -0.088996, 0.109496], "tracked": true, "track_id": 1} +{"t": 16.37095, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001875, -0.028714, -0.307966, 0.992446, -0.645736, 1.271858, 0.644423, 0.496173, -0.286087, 0.502161, -0.369496, 0.411189, 0.999287, -0.392885, -0.046869, 0.110011], "tracked": true, "track_id": 1} +{"t": 16.431527, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001485, -0.028714, -0.308265, 0.991748, -0.645425, 1.277504, 0.643955, 0.497846, -0.286215, 0.501503, -0.373386, 0.387546, 1.064443, -0.396729, 0.02856, 0.112917], "tracked": true, "track_id": 1} +{"t": 16.493904, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001316, -0.028714, -0.310389, 0.992293, -0.642942, 1.282793, 0.643563, 0.499426, -0.285691, 0.500599, -0.375287, 0.360905, 1.129027, -0.398779, 0.098187, 0.114183], "tracked": true, "track_id": 1} +{"t": 16.551409, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001216, -0.028714, -0.315903, 0.995406, -0.639683, 1.288791, 0.643527, 0.501074, -0.284948, 0.49858, -0.377613, 0.338546, 1.183923, -0.401238, 0.15844, 0.115483], "tracked": true, "track_id": 1} +{"t": 16.611577, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001269, -0.028714, -0.320043, 0.997968, -0.636952, 1.291633, 0.643623, 0.502159, -0.284286, 0.494841, -0.380805, 0.321069, 1.230584, -0.40431, 0.209536, 0.117022], "tracked": true, "track_id": 1} +{"t": 16.673674, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000826, -0.028714, -0.311879, 0.991645, -0.641144, 1.287095, 0.642594, 0.500317, -0.285278, 0.495522, -0.381186, 0.303968, 1.269843, -0.405499, 0.250737, 0.117378], "tracked": true, "track_id": 1} +{"t": 16.731341, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000414, -0.028714, -0.287815, 0.97114, -0.638449, 1.286319, 0.637529, 0.498388, -0.284234, 0.493671, -0.3825, 0.288336, 1.303616, -0.407887, 0.288487, 0.117715], "tracked": true, "track_id": 1} +{"t": 16.794001, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000207, -0.028714, -0.281976, 0.963957, -0.639901, 1.269581, 0.635086, 0.489229, -0.283464, 0.491978, -0.385378, 0.292965, 1.295263, -0.411726, 0.290164, 0.119296], "tracked": true, "track_id": 1} +{"t": 16.851608, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000942, -0.028714, -0.273306, 0.95231, -0.642268, 1.238443, 0.630615, 0.465064, -0.281001, 0.29504, -0.223805, 0.023094, 0.978081, -0.183562, 0.052419, 0.008844], "tracked": true, "track_id": 1} +{"t": 16.911543, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001767, -0.028714, -0.265045, 0.936699, -0.641599, 1.193526, 0.623309, 0.422013, -0.275176, 0.29504, -0.223805, 0.023094, 0.978081, -0.183562, 0.052419, 0.008844], "tracked": true, "track_id": 1} +{"t": 16.973571, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.002059, -0.028714, 0.29039, 0.215968, -0.005213, 0.979195, 0.157569, 0.061683, -0.040902, 0.319349, -0.250446, 0.080243, 1.026262, -0.221714, 0.050443, 0.025395], "tracked": true, "track_id": 1} +{"t": 17.031813, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.00262, -0.028714, 0.216459, 0.304761, -0.122712, 0.958461, 0.217983, -0.000863, -0.067285, 0.29504, -0.223805, 0.023094, 0.978081, -0.183562, 0.052419, 0.008844], "tracked": true, "track_id": 1} +{"t": 17.091831, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.002851, -0.028714, 0.154896, 0.381488, -0.219482, 0.918665, 0.270614, -0.037438, -0.090966, 0.317332, -0.251409, 0.096184, 0.998932, -0.222756, 0.014689, 0.02541], "tracked": true, "track_id": 1} +{"t": 17.151097, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.003104, -0.028714, 0.114554, 0.436309, -0.297236, 0.881815, 0.312183, -0.068337, -0.109795, 0.339261, -0.275965, 0.118692, 1.073342, -0.256514, 0.086875, 0.041466], "tracked": true, "track_id": 1} +{"t": 17.210943, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.003074, -0.028714, 0.083568, 0.479196, -0.362642, 0.862805, 0.34609, -0.105876, -0.124125, 0.29504, -0.223805, 0.023094, 0.978081, -0.183562, 0.052419, 0.008844], "tracked": true, "track_id": 1} +{"t": 17.271126, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.002661, -0.028714, 0.058633, 0.517303, -0.420743, 0.839984, 0.376564, -0.132795, -0.137695, 0.319005, -0.248561, 0.079557, 1.019625, -0.21943, 0.041338, 0.024003], "tracked": true, "track_id": 1} +{"t": 17.330934, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.00231, -0.028714, 0.043808, 0.543729, -0.467324, 0.823142, 0.400282, -0.159048, -0.147963, 0.340858, -0.2691, 0.099923, 1.090931, -0.24933, 0.094809, 0.036983], "tracked": true, "track_id": 1} +{"t": 17.391378, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.002099, -0.028714, 0.029616, 0.567533, -0.506853, 0.805493, 0.420862, -0.178341, -0.157068, 0.357043, -0.286157, 0.124893, 1.143419, -0.27505, 0.113649, 0.046789], "tracked": true, "track_id": 1} +{"t": 17.45151, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.002144, -0.028714, 0.016946, 0.587896, -0.539949, 0.787479, 0.43817, -0.191952, -0.165022, 0.369539, -0.302373, 0.141405, 1.196157, -0.298682, 0.146569, 0.055949], "tracked": true, "track_id": 1} +{"t": 17.511904, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.002516, -0.028714, 0.008912, 0.602105, -0.565429, 0.76794, 0.45137, -0.200172, -0.171442, 0.381296, -0.317022, 0.154145, 1.240983, -0.319897, 0.184629, 0.064671], "tracked": true, "track_id": 1} +{"t": 17.573544, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.002618, -0.028714, -0.000961, 0.619337, -0.587692, 0.762003, 0.465333, -0.192292, -0.17902, 0.391771, -0.326967, 0.160203, 1.279086, -0.335753, 0.214102, 0.070306], "tracked": true, "track_id": 1} +{"t": 17.630834, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.00233, -0.028714, -0.00782, 0.634938, -0.594831, 0.783175, 0.478431, -0.152071, -0.186378, 0.40092, -0.331768, 0.158778, 1.311473, -0.345975, 0.23308, 0.072367], "tracked": true, "track_id": 1} +{"t": 17.697125, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001996, -0.028714, -0.01675, 0.649972, -0.573092, 0.855127, 0.489922, -0.059158, -0.192129, 0.406137, -0.335198, 0.155449, 1.339002, -0.354381, 0.243155, 0.072705], "tracked": true, "track_id": 1} +{"t": 17.750458, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.002202, -0.028714, 0.003833, 0.628253, -0.533219, 0.937308, 0.482625, -0.027796, -0.184501, 0.416535, -0.339796, 0.155806, 1.362402, -0.362765, 0.269333, 0.076232], "tracked": true, "track_id": 1} +{"t": 17.811542, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.00194, -0.028714, -0.009653, 0.648118, -0.526262, 1.007162, 0.495206, 0.046648, -0.192186, 0.419694, -0.342229, 0.15274, 1.382291, -0.368866, 0.276235, 0.076232], "tracked": true, "track_id": 1} +{"t": 17.870589, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001946, -0.028714, -0.032771, 0.679211, -0.541487, 1.0326, 0.511696, 0.103221, -0.20406, 0.422785, -0.344239, 0.148086, 1.399198, -0.374435, 0.286345, 0.076185], "tracked": true, "track_id": 1} +{"t": 17.936377, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001953, -0.028714, -0.059374, 0.711694, -0.554109, 1.062099, 0.527416, 0.157878, -0.214917, 0.424384, -0.345462, 0.143176, 1.413568, -0.378959, 0.291023, 0.075353], "tracked": true, "track_id": 1} +{"t": 17.995606, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001658, -0.028714, -0.081378, 0.740649, -0.566279, 1.093361, 0.541897, 0.207401, -0.22497, 0.425893, -0.347785, 0.144585, 1.425783, -0.383036, 0.292598, 0.075973], "tracked": true, "track_id": 1} +{"t": 18.054106, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001359, -0.028714, -0.100908, 0.76757, -0.580283, 1.124383, 0.55546, 0.251217, -0.234816, 0.430076, -0.349658, 0.144153, 1.436165, -0.385943, 0.30522, 0.077496], "tracked": true, "track_id": 1} +{"t": 18.11658, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001123, -0.028714, -0.117039, 0.789932, -0.592377, 1.147443, 0.566804, 0.287247, -0.243083, 0.433288, -0.351798, 0.145747, 1.444991, -0.388869, 0.314006, 0.079113], "tracked": true, "track_id": 1} +{"t": 18.174306, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000855, -0.028714, -0.132502, 0.810593, -0.602508, 1.170561, 0.576933, 0.319239, -0.250245, 0.436382, -0.352524, 0.143391, 1.452492, -0.39043, 0.324159, 0.079748], "tracked": true, "track_id": 1} +{"t": 18.237031, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000504, -0.028714, -0.149166, 0.830581, -0.609602, 1.188818, 0.58589, 0.346251, -0.255862, 0.43616, -0.356249, 0.146136, 1.458868, -0.393969, 0.334716, 0.081935], "tracked": true, "track_id": 1} +{"t": 18.296254, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000339, -0.028714, -0.172145, 0.853382, -0.613736, 1.204309, 0.594085, 0.36977, -0.260152, 0.43637, -0.359554, 0.149096, 1.464288, -0.397294, 0.3436, 0.083967], "tracked": true, "track_id": 1} +{"t": 18.354258, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 7.7e-05, -0.028714, -0.187096, 0.868896, -0.613938, 1.220899, 0.600182, 0.390316, -0.262897, 0.437566, -0.361412, 0.14999, 1.468895, -0.39878, 0.352914, 0.085447], "tracked": true, "track_id": 1} +{"t": 18.414203, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000111, -0.028714, -0.207582, 0.887741, -0.615706, 1.231995, 0.6062, 0.407502, -0.265664, 0.438468, -0.364459, 0.15388, 1.472811, -0.401705, 0.361252, 0.087681], "tracked": true, "track_id": 1} +{"t": 18.476728, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000273, -0.028714, -0.217531, 0.897882, -0.615642, 1.245253, 0.610233, 0.422555, -0.267613, 0.441675, -0.366417, 0.156702, 1.476139, -0.403105, 0.372595, 0.089994], "tracked": true, "track_id": 1} +{"t": 18.535291, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00026, -0.028714, -0.227026, 0.906806, -0.615247, 1.257839, 0.613492, 0.43559, -0.269201, 0.446372, -0.366883, 0.157354, 1.478968, -0.403442, 0.382971, 0.091542], "tracked": true, "track_id": 1} +{"t": 18.595832, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -7.9e-05, -0.028714, -0.245097, 0.92177, -0.616468, 1.266702, 0.617397, 0.446715, -0.271014, 0.448114, -0.372118, 0.167171, 1.481373, -0.408085, 0.394463, 0.095932], "tracked": true, "track_id": 1} +{"t": 18.657394, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000324, -0.028714, -0.236061, 0.917446, -0.621366, 1.283242, 0.618272, 0.456444, -0.273726, 0.452376, -0.374482, 0.172439, 1.483417, -0.41003, 0.405402, 0.098911], "tracked": true, "track_id": 1} +{"t": 18.71505, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000751, -0.028714, -0.225986, 0.9115, -0.625806, 1.295792, 0.618266, 0.464596, -0.276098, 0.458576, -0.376251, 0.177433, 1.485154, -0.411406, 0.417682, 0.101985], "tracked": true, "track_id": 1} +{"t": 18.777107, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001406, -0.028714, -0.226398, 0.912098, -0.62905, 1.305146, 0.619001, 0.471581, -0.277965, 0.464926, -0.379074, 0.185262, 1.486631, -0.413837, 0.430151, 0.105918], "tracked": true, "track_id": 1} +{"t": 18.835025, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.002457, -0.028714, -0.237156, 0.918878, -0.631385, 1.311582, 0.620164, 0.477563, -0.279434, 0.470966, -0.382544, 0.195132, 1.487887, -0.41758, 0.440389, 0.110159], "tracked": true, "track_id": 1} +{"t": 18.894243, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.003348, -0.028714, -0.244315, 0.923649, -0.634866, 1.316351, 0.621208, 0.482581, -0.281113, 0.475152, -0.38584, 0.203597, 1.488954, -0.421246, 0.448731, 0.113739], "tracked": true, "track_id": 1} +{"t": 18.956959, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.003914, -0.028714, -0.242031, 0.922013, -0.63789, 1.323699, 0.621211, 0.486923, -0.282571, 0.478481, -0.386267, 0.205251, 1.489861, -0.422397, 0.453192, 0.114809], "tracked": true, "track_id": 1} +{"t": 19.014223, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004501, -0.028714, -0.230622, 0.913267, -0.640219, 1.330566, 0.619387, 0.490526, -0.283727, 0.479679, -0.388081, 0.209068, 1.490631, -0.424967, 0.456195, 0.116324], "tracked": true, "track_id": 1} +{"t": 19.076685, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004716, -0.028714, -0.216033, 0.902634, -0.640828, 1.341431, 0.617261, 0.493671, -0.284317, 0.47779, -0.388403, 0.208609, 1.491287, -0.426264, 0.452521, 0.115709], "tracked": true, "track_id": 1} +{"t": 19.134627, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004813, -0.028714, -0.188961, 0.881989, -0.63684, 1.350667, 0.611816, 0.496068, -0.283457, 0.477057, -0.385354, 0.201707, 1.491844, -0.424815, 0.445601, 0.112774], "tracked": true, "track_id": 1} +{"t": 19.196372, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004649, -0.028714, -0.16867, 0.867954, -0.636299, 1.358517, 0.608948, 0.498402, -0.283603, 0.476194, -0.378518, 0.190325, 1.492317, -0.420262, 0.425421, 0.106788], "tracked": true, "track_id": 1} +{"t": 19.257293, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004584, -0.028714, -0.135537, 0.838796, -0.61728, 1.365189, 0.598708, 0.500394, -0.27827, 0.477015, -0.36674, 0.165449, 1.49272, -0.412264, 0.408228, 0.097225], "tracked": true, "track_id": 1} +{"t": 19.318077, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004551, -0.028714, -0.105372, 0.815789, -0.609874, 1.370861, 0.59156, 0.50205, -0.276308, 0.478243, -0.352382, 0.131587, 1.493062, -0.402499, 0.395809, 0.085642], "tracked": true, "track_id": 1} +{"t": 19.375297, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004381, -0.028714, -0.076842, 0.794366, -0.60264, 1.375682, 0.584903, 0.503201, -0.274331, 0.480193, -0.335516, 0.091237, 1.493352, -0.390552, 0.384366, 0.072278], "tracked": true, "track_id": 1} +{"t": 19.43433, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004417, -0.028714, -0.066248, 0.78549, -0.599217, 1.379779, 0.58247, 0.504324, -0.273471, 0.483628, -0.325044, 0.066927, 1.4936, -0.382906, 0.380557, 0.06463], "tracked": true, "track_id": 1} +{"t": 19.497196, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004369, -0.028714, -0.052988, 0.773577, -0.591415, 1.382931, 0.578516, 0.505066, -0.271273, 0.484874, -0.315458, 0.04413, 1.49381, -0.376224, 0.373897, 0.057055], "tracked": true, "track_id": 1} +{"t": 19.554396, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004196, -0.028714, -0.035204, 0.757687, -0.579295, 1.385941, 0.57277, 0.506001, -0.267831, 0.48633, -0.305457, 0.020524, 1.493988, -0.368903, 0.367372, 0.049259], "tracked": true, "track_id": 1} +{"t": 19.62025, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004045, -0.028714, -0.020233, 0.743857, -0.568605, 1.3885, 0.567645, 0.504979, -0.264553, 0.487119, -0.29639, -0.001205, 1.49414, -0.362412, 0.360869, 0.042018], "tracked": true, "track_id": 1} +{"t": 19.681125, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004117, -0.028714, -0.010858, 0.729935, -0.549029, 1.390675, 0.561007, 0.503141, -0.258555, 0.486643, -0.290294, -0.015973, 1.494269, -0.358694, 0.353661, 0.036732], "tracked": true, "track_id": 1} +{"t": 19.740418, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004088, -0.028714, 0.003567, 0.708342, -0.521735, 1.392524, 0.550175, 0.487918, -0.248538, 0.48519, -0.285076, -0.027643, 1.491878, -0.355534, 0.342928, 0.031897], "tracked": true, "track_id": 1} +{"t": 19.799376, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004395, -0.028714, 0.012274, 0.691263, -0.499183, 1.394095, 0.540871, 0.472166, -0.239845, 0.486339, -0.280765, -0.037294, 1.492346, -0.353139, 0.338953, 0.028539], "tracked": true, "track_id": 1} +{"t": 19.857835, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004969, -0.028714, 0.00445, 0.687317, -0.487149, 1.395431, 0.536488, 0.452107, -0.233684, 0.486743, -0.282636, -0.031068, 1.492744, -0.355634, 0.335825, 0.029961], "tracked": true, "track_id": 1} +{"t": 19.920248, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.005334, -0.028714, 0.005509, 0.674092, -0.474137, 1.396566, 0.528038, 0.408791, -0.224194, 0.487363, -0.284422, -0.024233, 1.493083, -0.357546, 0.332095, 0.031484], "tracked": true, "track_id": 1} +{"t": 19.979279, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.005652, -0.028714, 0.006836, 0.669054, -0.465008, 1.397531, 0.525078, 0.409038, -0.221542, 0.488645, -0.282931, -0.025751, 1.492488, -0.357, 0.328151, 0.030522], "tracked": true, "track_id": 1} +{"t": 20.039148, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.005722, -0.028714, 0.00957, 0.668445, -0.465682, 1.398352, 0.525498, 0.417288, -0.222819, 0.489074, -0.282531, -0.024552, 1.491376, -0.356823, 0.323713, 0.030294], "tracked": true, "track_id": 1} +{"t": 20.098156, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.005967, -0.028714, 0.002167, 0.673714, -0.466178, 1.399049, 0.527355, 0.423471, -0.223773, 0.487738, -0.283517, -0.020741, 1.488738, -0.358341, 0.316969, 0.030533], "tracked": true, "track_id": 1} +{"t": 20.160911, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.005796, -0.028714, 0.011941, 0.665398, -0.45789, 1.399642, 0.524185, 0.42746, -0.221856, 0.486791, -0.283638, -0.018992, 1.487009, -0.358276, 0.311946, 0.030391], "tracked": true, "track_id": 1} +{"t": 20.220661, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.005672, -0.028714, 0.020316, 0.658549, -0.452222, 1.400145, 0.521631, 0.429717, -0.220484, 0.486321, -0.283486, -0.018924, 1.487437, -0.358024, 0.310039, 0.030162], "tracked": true, "track_id": 1} +{"t": 20.277919, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.00557, -0.028714, 0.025642, 0.654997, -0.44942, 1.400574, 0.520628, 0.434465, -0.220281, 0.485714, -0.284201, -0.016128, 1.486729, -0.358428, 0.30708, 0.030598], "tracked": true, "track_id": 1} +{"t": 20.339707, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.005584, -0.028714, 0.031559, 0.646, -0.437949, 1.400937, 0.515969, 0.42779, -0.216035, 0.483304, -0.286105, -0.012011, 1.486127, -0.36022, 0.303456, 0.031335], "tracked": true, "track_id": 1} +{"t": 20.398221, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.005247, -0.028714, 0.033827, 0.648849, -0.445369, 1.401247, 0.518756, 0.434397, -0.219081, 0.483109, -0.286604, -0.009854, 1.486577, -0.359866, 0.302553, 0.031851], "tracked": true, "track_id": 1} +{"t": 20.457853, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.005178, -0.028714, 0.036514, 0.649925, -0.448494, 1.40151, 0.520204, 0.44475, -0.221353, 0.482563, -0.289003, -0.004544, 1.48784, -0.361448, 0.304725, 0.033697], "tracked": true, "track_id": 1} +{"t": 20.521304, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.005464, -0.028714, 0.036045, 0.64833, -0.441712, 1.401733, 0.518934, 0.452641, -0.22039, 0.48193, -0.292975, 0.003393, 1.488914, -0.364874, 0.309431, 0.036647], "tracked": true, "track_id": 1} +{"t": 20.57822, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.006008, -0.028714, 0.031574, 0.64676, -0.434123, 1.401923, 0.516641, 0.450025, -0.217816, 0.482318, -0.295465, 0.005797, 1.489827, -0.367673, 0.318937, 0.038596], "tracked": true, "track_id": 1} +{"t": 20.640482, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.005576, -0.028714, 0.056695, 0.629064, -0.42112, 1.402085, 0.509135, 0.456556, -0.214845, 0.48332, -0.290784, -0.007205, 1.490603, -0.363368, 0.322506, 0.035239], "tracked": true, "track_id": 1} +{"t": 20.698214, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.00521, -0.028714, 0.071709, 0.620622, -0.417579, 1.402222, 0.506504, 0.464669, -0.214864, 0.48422, -0.28684, -0.01725, 1.491263, -0.359722, 0.323617, 0.032429], "tracked": true, "track_id": 1} +{"t": 20.75835, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004821, -0.028714, 0.083908, 0.613659, -0.414338, 1.402339, 0.504432, 0.470457, -0.214667, 0.482535, -0.285567, -0.022582, 1.491823, -0.35838, 0.32462, 0.030992], "tracked": true, "track_id": 1} +{"t": 20.820162, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004697, -0.028714, 0.084299, 0.611369, -0.408855, 1.402438, 0.50335, 0.469226, -0.212894, 0.482418, -0.286439, -0.021073, 1.4923, -0.358723, 0.326959, 0.031742], "tracked": true, "track_id": 1} +{"t": 20.878386, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004967, -0.028714, 0.080065, 0.616501, -0.415704, 1.402522, 0.505977, 0.47456, -0.215606, 0.48212, -0.290352, -0.014169, 1.492705, -0.362006, 0.334579, 0.034768], "tracked": true, "track_id": 1} +{"t": 20.941981, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.005097, -0.028714, 0.070806, 0.627805, -0.4299, 1.402594, 0.511763, 0.480097, -0.220505, 0.483042, -0.294593, -0.004167, 1.493049, -0.364932, 0.341047, 0.038556], "tracked": true, "track_id": 1} +{"t": 20.998573, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.005574, -0.028714, 0.052635, 0.644006, -0.444154, 1.398248, 0.518439, 0.484274, -0.225243, 0.486316, -0.297025, 0.00145, 1.493342, -0.366839, 0.350685, 0.041467], "tracked": true, "track_id": 1} +{"t": 21.061056, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.005276, -0.028714, 0.047501, 0.658945, -0.473877, 1.398961, 0.527773, 0.48836, -0.234519, 0.485204, -0.297788, 0.00153, 1.49359, -0.366944, 0.35361, 0.041873], "tracked": true, "track_id": 1} +{"t": 21.119985, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.005233, -0.028714, 0.044873, 0.66038, -0.473429, 1.399567, 0.528423, 0.488136, -0.234358, 0.485471, -0.300467, 0.008135, 1.493802, -0.368591, 0.356674, 0.044217], "tracked": true, "track_id": 1} +{"t": 21.179773, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.00478, -0.028714, 0.037424, 0.674205, -0.494835, 1.398871, 0.536476, 0.491331, -0.241072, 0.483779, -0.304373, 0.01699, 1.493982, -0.370562, 0.358996, 0.047125], "tracked": true, "track_id": 1} +{"t": 21.247407, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.00493, -0.028714, 0.024353, 0.678374, -0.489552, 1.39949, 0.536274, 0.477852, -0.237756, 0.48242, -0.307156, 0.021658, 1.494134, -0.373041, 0.36205, 0.048897], "tracked": true, "track_id": 1} +{"t": 21.305148, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.004509, -0.028714, -0.017396, 0.71848, -0.515296, 1.382545, 0.550981, 0.480908, -0.245727, 0.48065, -0.307779, 0.021324, 1.494264, -0.372902, 0.363796, 0.049027], "tracked": true, "track_id": 1} +{"t": 21.364776, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.003228, -0.028714, -0.057001, 0.75791, -0.535889, 1.370804, 0.565423, 0.484509, -0.252255, 0.477666, -0.305027, 0.013031, 1.494375, -0.368863, 0.362543, 0.046424], "tracked": true, "track_id": 1} +{"t": 21.423077, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001813, -0.028714, -0.08142, 0.785315, -0.554177, 1.359371, 0.577084, 0.486582, -0.257905, 0.474929, -0.300699, 0.004254, 1.494468, -0.363429, 0.353668, 0.042682], "tracked": true, "track_id": 1} +{"t": 21.484084, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001025, -0.028714, -0.100296, 0.806308, -0.56963, 1.354903, 0.58613, 0.489608, -0.262845, 0.473415, -0.299397, 0.000172, 1.494548, -0.361141, 0.353837, 0.041504], "tracked": true, "track_id": 1} +{"t": 21.543439, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.0002, -0.028714, -0.101529, 0.814552, -0.583345, 1.349699, 0.592566, 0.49089, -0.267046, 0.472386, -0.297383, -0.00386, 1.494616, -0.357304, 0.352524, 0.040146], "tracked": true, "track_id": 1} +{"t": 21.603915, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002046, -0.028714, -0.100422, 0.82175, -0.594756, 1.346341, 0.599107, 0.492154, -0.270568, 0.470462, -0.292726, -0.014102, 1.494674, -0.350513, 0.349155, 0.036693], "tracked": true, "track_id": 1} +{"t": 21.664538, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002957, -0.028714, -0.10129, 0.827775, -0.60432, 1.345703, 0.603817, 0.493968, -0.273618, 0.466312, -0.292315, -0.018673, 1.494722, -0.349051, 0.350314, 0.035501], "tracked": true, "track_id": 1} +{"t": 21.727557, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00396, -0.028714, -0.09185, 0.826092, -0.612322, 1.348889, 0.606553, 0.495785, -0.276209, 0.46574, -0.287753, -0.031235, 1.494764, -0.343918, 0.352295, 0.032065], "tracked": true, "track_id": 1} +{"t": 21.783463, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00457, -0.028714, -0.09438, 0.8317, -0.619468, 1.345806, 0.610175, 0.496523, -0.278407, 0.464538, -0.283955, -0.042456, 1.494799, -0.340301, 0.352884, 0.028842], "tracked": true, "track_id": 1} +{"t": 21.844677, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005297, -0.028714, -0.091299, 0.833086, -0.626621, 1.337191, 0.612748, 0.494315, -0.280223, 0.462834, -0.283486, -0.043639, 1.49483, -0.338747, 0.351511, 0.028314], "tracked": true, "track_id": 1} +{"t": 21.903195, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005984, -0.028714, -0.093008, 0.837601, -0.632143, 1.332281, 0.615787, 0.493962, -0.2818, 0.462577, -0.280612, -0.049998, 1.494855, -0.335368, 0.349773, 0.026217], "tracked": true, "track_id": 1} +{"t": 21.964776, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006552, -0.028714, -0.097287, 0.843335, -0.636308, 1.328191, 0.618685, 0.493956, -0.283025, 0.462956, -0.276309, -0.060116, 1.494877, -0.331156, 0.348375, 0.023058], "tracked": true, "track_id": 1} +{"t": 22.022858, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007014, -0.028714, -0.097872, 0.845939, -0.639784, 1.326131, 0.620647, 0.494199, -0.284079, 0.464512, -0.272471, -0.067734, 1.494895, -0.3272, 0.346549, 0.020579], "tracked": true, "track_id": 1} +{"t": 22.089116, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008052, -0.028714, -0.102959, 0.85392, -0.645907, 1.32007, 0.625006, 0.493855, -0.285835, 0.466134, -0.266451, -0.078001, 1.494924, -0.32048, 0.33937, 0.016621], "tracked": true, "track_id": 1} +{"t": 22.124516, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008525, -0.028714, -0.103866, 0.856391, -0.648467, 1.3169, 0.626667, 0.49333, -0.286519, 0.468337, -0.261626, -0.087016, 1.494936, -0.315624, 0.335795, 0.013502], "tracked": true, "track_id": 1} +{"t": 22.189963, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009082, -0.028714, -0.10421, 0.859125, -0.652857, 1.311261, 0.62882, 0.492102, -0.287649, 0.468308, -0.261973, -0.084914, 1.494954, -0.314649, 0.335649, 0.014101], "tracked": true, "track_id": 1} +{"t": 22.258013, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00947, -0.028714, -0.115087, 0.868643, -0.655149, 1.305477, 0.631783, 0.491583, -0.288256, 0.465008, -0.264122, -0.082049, 1.494966, -0.315996, 0.336969, 0.015116], "tracked": true, "track_id": 1} +{"t": 22.320686, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009726, -0.028714, -0.123445, 0.875452, -0.654351, 1.309865, 0.633689, 0.494213, -0.288365, 0.457521, -0.268305, -0.077876, 1.494976, -0.319723, 0.337226, 0.016377], "tracked": true, "track_id": 1} +{"t": 22.387698, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009402, -0.028714, -0.123737, 0.875561, -0.655645, 1.313488, 0.633646, 0.495601, -0.288927, 0.455742, -0.27125, -0.072371, 1.494982, -0.32281, 0.337919, 0.018087], "tracked": true, "track_id": 1} +{"t": 22.451344, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009477, -0.028714, -0.110719, 0.866635, -0.655502, 1.327017, 0.632108, 0.498778, -0.2893, 0.455018, -0.271944, -0.073541, 1.494987, -0.323287, 0.34359, 0.018484], "tracked": true, "track_id": 1} +{"t": 22.516559, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009254, -0.028714, -0.101369, 0.8598, -0.656141, 1.334728, 0.630621, 0.500648, -0.289733, 0.453407, -0.273165, -0.072424, 1.494991, -0.324961, 0.343942, 0.018859], "tracked": true, "track_id": 1} +{"t": 22.553133, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009057, -0.028714, -0.095586, 0.855196, -0.656356, 1.334861, 0.629373, 0.500475, -0.289773, 0.453583, -0.273351, -0.072857, 1.494992, -0.32551, 0.345649, 0.018954], "tracked": true, "track_id": 1} +{"t": 22.617179, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008444, -0.028714, -0.086825, 0.846363, -0.653593, 1.334471, 0.626109, 0.499817, -0.288875, 0.454396, -0.273531, -0.071692, 1.494994, -0.326841, 0.3434, 0.019003], "tracked": true, "track_id": 1} +{"t": 22.685439, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007725, -0.028714, -0.07722, 0.833881, -0.642098, 1.349209, 0.62054, 0.50058, -0.285593, 0.454358, -0.271122, -0.077711, 1.494996, -0.326827, 0.338066, 0.016535], "tracked": true, "track_id": 1} +{"t": 22.749526, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00582, -0.028714, -0.006826, 0.744514, -0.633315, 1.221379, 0.574012, 0.263858, -0.252066, 0.454821, -0.270555, -0.077813, 1.494941, -0.330507, 0.327049, 0.015065], "tracked": true, "track_id": 1} +{"t": 22.815969, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004407, -0.028714, 0.0266, 0.682004, -0.609863, 1.142098, 0.540654, 0.084779, -0.221759, 0.458924, -0.271679, -0.071381, 1.494958, -0.33358, 0.32386, 0.01654], "tracked": true, "track_id": 1} +{"t": 22.879446, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003258, -0.028714, 0.06984, 0.620883, -0.581177, 1.068101, 0.508479, -0.046421, -0.196172, 0.451795, -0.274333, -0.07033, 1.494579, -0.338839, 0.313466, 0.01549], "tracked": true, "track_id": 1} +{"t": 22.913123, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003241, -0.028714, 0.0933, 0.593364, -0.567869, 1.042477, 0.494701, -0.097168, -0.185624, 0.452558, -0.274789, -0.066908, 1.494642, -0.339103, 0.310709, 0.016137], "tracked": true, "track_id": 1} +{"t": 22.98113, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003385, -0.028714, 0.147066, 0.541393, -0.547055, 0.983704, 0.468184, -0.177929, -0.168946, 0.451371, -0.273134, -0.072177, 1.494741, -0.337976, 0.309805, 0.014469], "tracked": true, "track_id": 1} +{"t": 23.042982, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004212, -0.028714, 0.210565, 0.4918, -0.527755, 0.921989, 0.440846, -0.235489, -0.155745, 0.447692, -0.266692, -0.090669, 1.493396, -0.33254, 0.304955, 0.008396], "tracked": true, "track_id": 1} +{"t": 23.076523, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004589, -0.028714, 0.24155, 0.468243, -0.515526, 0.897683, 0.426507, -0.25829, -0.149168, 0.449507, -0.264106, -0.096933, 1.493637, -0.329698, 0.309005, 0.007083], "tracked": true, "track_id": 1} +{"t": 23.110492, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005438, -0.028714, 0.269789, 0.448041, -0.505718, 0.879768, 0.414935, -0.277788, -0.143734, 0.444833, -0.260784, -0.106549, 1.492683, -0.326425, 0.30176, 0.003308], "tracked": true, "track_id": 1} +{"t": 23.176428, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007292, -0.028714, 0.316356, 0.416495, -0.49232, 0.849695, 0.397496, -0.308458, -0.135785, 0.435411, -0.253307, -0.126841, 1.487796, -0.318978, 0.285223, -0.004822], "tracked": true, "track_id": 1} +{"t": 23.242147, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008626, -0.028714, 0.353458, 0.390395, -0.476658, 0.833325, 0.381671, -0.330176, -0.128339, 0.428713, -0.24806, -0.141376, 1.485018, -0.313698, 0.274246, -0.010532], "tracked": true, "track_id": 1} +{"t": 23.276215, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009247, -0.028714, 0.367831, 0.379689, -0.468446, 0.831832, 0.375425, -0.337803, -0.124927, 0.426482, -0.244795, -0.149492, 1.483245, -0.310575, 0.269319, -0.013563], "tracked": true, "track_id": 1} +{"t": 23.311655, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009679, -0.028714, 0.380763, 0.36979, -0.459818, 0.832189, 0.369126, -0.343741, -0.121613, 0.425513, -0.241053, -0.158998, 1.482621, -0.307348, 0.26668, -0.016704], "tracked": true, "track_id": 1} +{"t": 23.375233, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01023, -0.028714, 0.39598, 0.360164, -0.459357, 0.817022, 0.364404, -0.356068, -0.119866, 0.423798, -0.23716, -0.168388, 1.480844, -0.303894, 0.261467, -0.020147], "tracked": true, "track_id": 1} +{"t": 23.438828, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010376, -0.028714, 0.402227, 0.356265, -0.462941, 0.804794, 0.363571, -0.364994, -0.119753, 0.423363, -0.235038, -0.173539, 1.480331, -0.30226, 0.259048, -0.021979], "tracked": true, "track_id": 1} +{"t": 23.502851, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00991, -0.028714, 0.397468, 0.361622, -0.477858, 0.781865, 0.368842, -0.368457, -0.123688, 0.426793, -0.233453, -0.175722, 1.480681, -0.301702, 0.260121, -0.02248], "tracked": true, "track_id": 1} +{"t": 23.538784, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008959, -0.028714, 0.38687, 0.367553, -0.485149, 0.773132, 0.372763, -0.368684, -0.125803, 0.432304, -0.235432, -0.169883, 1.482829, -0.304134, 0.268954, -0.019608], "tracked": true, "track_id": 1} +{"t": 23.605144, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00669, -0.028714, 0.352713, 0.385112, -0.498891, 0.768467, 0.383261, -0.369931, -0.129681, 0.438652, -0.240145, -0.160018, 1.486206, -0.311124, 0.282023, -0.014998], "tracked": true, "track_id": 1} +{"t": 23.672905, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004882, -0.028714, 0.308149, 0.414445, -0.52436, 0.760161, 0.400396, -0.366069, -0.137677, 0.443663, -0.242489, -0.152977, 1.488646, -0.315754, 0.285236, -0.012508], "tracked": true, "track_id": 1} +{"t": 23.7351, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003179, -0.028714, 0.251607, 0.45226, -0.552151, 0.765714, 0.420026, -0.36514, -0.145972, 0.456454, -0.242299, -0.146501, 1.49041, -0.316802, 0.294277, -0.009421], "tracked": true, "track_id": 1} +{"t": 23.803511, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001464, -0.028714, 0.198324, 0.495392, -0.585132, 0.751278, 0.442005, -0.335629, -0.15953, 0.452876, -0.245379, -0.145567, 1.491683, -0.323112, 0.293702, -0.009222], "tracked": true, "track_id": 1} +{"t": 23.837968, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000864, -0.028714, 0.158204, 0.532565, -0.597342, 0.771625, 0.459536, -0.276051, -0.17091, 0.459426, -0.245869, -0.142075, 1.492181, -0.323428, 0.303186, -0.006955], "tracked": true, "track_id": 1} +{"t": 23.89958, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000989, -0.028714, 0.131095, 0.571982, -0.568812, 0.93924, 0.483418, -0.060632, -0.190678, 0.466902, -0.241564, -0.149519, 1.492963, -0.318821, 0.311767, -0.008022], "tracked": true, "track_id": 1} +{"t": 23.969472, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00146, -0.028714, 0.092996, 0.623113, -0.577647, 1.046209, 0.512213, 0.092256, -0.213262, 0.473182, -0.236937, -0.158555, 1.493528, -0.313375, 0.320033, -0.0096], "tracked": true, "track_id": 1} +{"t": 24.033098, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002571, -0.028714, 0.06633, 0.66618, -0.596181, 1.138802, 0.537782, 0.207303, -0.233752, 0.478081, -0.232957, -0.166219, 1.493937, -0.30711, 0.328098, -0.010799], "tracked": true, "track_id": 1} +{"t": 24.100601, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00352, -0.028714, 0.030585, 0.710338, -0.612447, 1.210883, 0.560342, 0.291636, -0.24956, 0.48177, -0.229764, -0.171536, 1.494232, -0.301995, 0.332286, -0.011816], "tracked": true, "track_id": 1} +{"t": 24.162928, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004247, -0.028714, 0.002764, 0.743324, -0.622909, 1.264196, 0.576772, 0.352675, -0.260616, 0.486594, -0.224472, -0.18287, 1.494445, -0.295526, 0.337959, -0.014408], "tracked": true, "track_id": 1} +{"t": 24.197273, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004712, -0.028714, -0.012199, 0.759112, -0.625695, 1.285016, 0.583911, 0.376526, -0.264553, 0.486351, -0.224507, -0.182328, 1.494528, -0.294629, 0.338425, -0.014187], "tracked": true, "track_id": 1} +{"t": 24.233707, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005033, -0.028714, -0.026331, 0.773041, -0.62713, 1.302714, 0.589841, 0.39671, -0.267613, 0.486472, -0.225541, -0.179243, 1.494599, -0.294616, 0.339762, -0.013105], "tracked": true, "track_id": 1} +{"t": 24.29742, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005699, -0.028714, -0.051885, 0.797108, -0.62756, 1.330543, 0.599531, 0.428304, -0.27187, 0.484585, -0.226024, -0.177899, 1.49471, -0.294035, 0.338429, -0.012884], "tracked": true, "track_id": 1} +{"t": 24.359915, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006428, -0.028714, -0.067126, 0.811683, -0.625049, 1.35065, 0.605813, 0.451051, -0.274104, 0.485457, -0.223276, -0.183349, 1.494791, -0.290341, 0.338126, -0.014527], "tracked": true, "track_id": 1} +{"t": 24.396141, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006853, -0.028714, -0.075155, 0.818644, -0.62239, 1.358503, 0.60846, 0.460016, -0.274494, 0.484443, -0.222993, -0.184274, 1.494822, -0.289487, 0.337896, -0.014829], "tracked": true, "track_id": 1} +{"t": 24.459418, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006858, -0.028714, -0.100806, 0.837975, -0.61939, 1.370851, 0.613619, 0.473465, -0.27537, 0.484481, -0.221672, -0.187397, 1.494871, -0.288638, 0.336715, -0.015902], "tracked": true, "track_id": 1} +{"t": 24.494168, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006769, -0.028714, -0.10788, 0.843024, -0.618021, 1.375673, 0.614969, 0.478557, -0.275633, 0.485193, -0.221333, -0.188774, 1.494891, -0.288441, 0.338961, -0.016013], "tracked": true, "track_id": 1} +{"t": 24.561223, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006657, -0.028714, -0.134422, 0.861927, -0.614011, 1.383256, 0.618927, 0.486549, -0.275498, 0.484131, -0.219436, -0.195163, 1.494921, -0.287716, 0.338329, -0.017975], "tracked": true, "track_id": 1} +{"t": 24.626141, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006596, -0.028714, -0.142103, 0.866728, -0.610617, 1.388735, 0.619969, 0.491586, -0.275158, 0.482336, -0.217926, -0.200496, 1.494943, -0.287328, 0.336373, -0.019799], "tracked": true, "track_id": 1} +{"t": 24.661121, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006851, -0.028714, -0.14412, 0.866601, -0.603844, 1.390875, 0.619452, 0.493548, -0.273423, 0.48262, -0.215352, -0.206663, 1.494952, -0.284967, 0.335526, -0.021724], "tracked": true, "track_id": 1} +{"t": 24.695225, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006717, -0.028714, -0.151176, 0.869815, -0.598936, 1.392694, 0.619303, 0.494469, -0.2721, 0.4827, -0.212765, -0.213875, 1.494959, -0.283554, 0.334981, -0.023916], "tracked": true, "track_id": 1} +{"t": 24.757338, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006007, -0.028714, -0.180379, 0.887348, -0.591941, 1.395554, 0.620745, 0.494427, -0.270037, 0.480574, -0.214958, -0.211152, 1.49497, -0.287208, 0.335095, -0.0231], "tracked": true, "track_id": 1} +{"t": 24.825166, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005174, -0.028714, -0.210911, 0.905814, -0.585318, 1.39762, 0.622096, 0.494057, -0.268041, 0.477475, -0.217136, -0.209825, 1.494978, -0.291314, 0.335281, -0.022686], "tracked": true, "track_id": 1} +{"t": 24.887196, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004185, -0.028714, -0.24765, 0.928922, -0.57956, 1.399113, 0.623914, 0.492255, -0.266111, 0.478652, -0.218369, -0.206256, 1.494984, -0.294147, 0.334221, -0.021774], "tracked": true, "track_id": 1} +{"t": 24.955746, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003383, -0.028714, -0.280959, 0.94992, -0.5735, 1.400192, 0.625394, 0.490357, -0.264081, 0.478981, -0.217105, -0.210773, 1.494989, -0.295083, 0.334076, -0.023122], "tracked": true, "track_id": 1} +{"t": 25.021903, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002624, -0.028714, -0.303264, 0.963055, -0.568513, 1.400971, 0.625857, 0.489282, -0.262474, 0.479529, -0.216999, -0.212377, 1.494992, -0.296603, 0.335342, -0.023428], "tracked": true, "track_id": 1} +{"t": 25.089485, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001989, -0.028714, -0.325983, 0.978477, -0.568201, 1.401534, 0.627515, 0.487442, -0.262142, 0.479925, -0.21964, -0.206026, 1.494994, -0.299691, 0.336358, -0.021427], "tracked": true, "track_id": 1} +{"t": 25.153002, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001537, -0.028714, -0.341013, 0.988349, -0.567152, 1.401941, 0.628427, 0.486694, -0.261735, 0.480236, -0.224513, -0.193647, 1.494996, -0.303916, 0.33862, -0.017491], "tracked": true, "track_id": 1} +{"t": 25.21524, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000945, -0.028714, -0.353353, 0.996756, -0.568596, 1.402235, 0.629418, 0.486619, -0.26215, 0.478289, -0.23059, -0.179322, 1.494997, -0.309758, 0.337959, -0.013364], "tracked": true, "track_id": 1} +{"t": 25.251745, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001063, -0.028714, -0.351186, 0.994419, -0.565501, 1.40235, 0.628769, 0.487754, -0.261388, 0.479019, -0.231647, -0.174528, 1.494997, -0.310035, 0.336192, -0.012185], "tracked": true, "track_id": 1} +{"t": 25.316142, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000804, -0.028714, -0.355785, 0.999405, -0.570662, 1.40253, 0.630421, 0.489972, -0.263196, 0.477284, -0.237587, -0.158748, 1.494998, -0.314987, 0.333246, -0.007929], "tracked": true, "track_id": 1} +{"t": 25.350858, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00076, -0.028714, -0.350385, 0.996406, -0.573759, 1.402601, 0.630612, 0.491711, -0.264334, 0.477879, -0.23967, -0.153027, 1.494998, -0.316352, 0.334988, -0.006019], "tracked": true, "track_id": 1} +{"t": 25.416725, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001001, -0.028714, -0.341204, 0.991361, -0.576089, 1.401228, 0.630861, 0.495917, -0.26557, 0.476675, -0.244414, -0.141533, 1.494999, -0.31925, 0.337361, -0.002328], "tracked": true, "track_id": 1} +{"t": 25.480899, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00131, -0.028714, -0.35042, 1.001322, -0.579781, 1.390813, 0.633783, 0.500029, -0.267193, 0.475721, -0.248115, -0.132487, 1.494999, -0.321239, 0.339511, 0.000614], "tracked": true, "track_id": 1} +{"t": 25.515971, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001227, -0.028714, -0.354366, 1.005504, -0.582861, 1.386678, 0.635042, 0.501634, -0.268308, 0.475894, -0.250835, -0.12528, 1.494999, -0.323211, 0.340754, 0.002896], "tracked": true, "track_id": 1} +{"t": 25.550341, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001266, -0.028714, -0.355564, 1.007907, -0.586104, 1.381254, 0.636185, 0.503131, -0.269458, 0.476526, -0.251715, -0.122797, 1.494999, -0.323573, 0.342503, 0.003855], "tracked": true, "track_id": 1} +{"t": 25.613885, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001157, -0.028714, -0.3555, 1.01035, -0.593072, 1.373059, 0.637921, 0.50546, -0.271812, 0.477038, -0.254395, -0.116729, 1.495, -0.325504, 0.34681, 0.006202], "tracked": true, "track_id": 1} +{"t": 25.680883, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001114, -0.028714, -0.366446, 1.021378, -0.599642, 1.358383, 0.640862, 0.507004, -0.273946, 0.472315, -0.259356, -0.108253, 1.495, -0.329875, 0.347157, 0.008741], "tracked": true, "track_id": 1} +{"t": 25.74254, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001516, -0.028714, -0.355567, 1.015936, -0.604798, 1.352029, 0.641524, 0.508114, -0.275608, 0.473837, -0.256804, -0.114205, 1.495, -0.326961, 0.349757, 0.00733], "tracked": true, "track_id": 1} +{"t": 25.810567, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002516, -0.028714, -0.336533, 1.004769, -0.607231, 1.351437, 0.641435, 0.509034, -0.276444, 0.476635, -0.248842, -0.132519, 1.495, -0.318714, 0.35091, 0.002094], "tracked": true, "track_id": 1} +{"t": 25.843979, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002706, -0.028714, -0.32991, 1.000936, -0.609403, 1.350308, 0.641467, 0.509354, -0.277124, 0.477182, -0.246672, -0.137217, 1.495, -0.316729, 0.349792, 0.000566], "tracked": true, "track_id": 1} +{"t": 25.87781, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002856, -0.028714, -0.331306, 1.002867, -0.610567, 1.348383, 0.642189, 0.509659, -0.277506, 0.476091, -0.244578, -0.143424, 1.495, -0.315268, 0.34843, -0.001437], "tracked": true, "track_id": 1} +{"t": 25.945027, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003795, -0.028714, -0.316936, 0.994517, -0.611357, 1.350825, 0.642144, 0.510203, -0.27781, 0.474993, -0.237219, -0.161906, 1.495, -0.308534, 0.344425, -0.007397], "tracked": true, "track_id": 1} +{"t": 25.980018, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004332, -0.028714, -0.30576, 0.987108, -0.610799, 1.353524, 0.641481, 0.510423, -0.277675, 0.476579, -0.231476, -0.174632, 1.495, -0.303075, 0.342264, -0.011422], "tracked": true, "track_id": 1} +{"t": 26.0417, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004744, -0.028714, -0.299434, 0.984422, -0.613929, 1.356471, 0.642133, 0.510767, -0.27864, 0.47442, -0.228637, -0.182156, 1.495, -0.300791, 0.337715, -0.01423], "tracked": true, "track_id": 1} +{"t": 26.109776, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005344, -0.028714, -0.283029, 0.973644, -0.614808, 1.362054, 0.641221, 0.510978, -0.278926, 0.475326, -0.225074, -0.189013, 1.495, -0.296851, 0.335149, -0.016582], "tracked": true, "track_id": 1} +{"t": 26.172725, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00583, -0.028714, -0.268781, 0.964538, -0.616442, 1.367264, 0.640576, 0.511128, -0.279426, 0.474494, -0.22237, -0.196006, 1.495, -0.29417, 0.333731, -0.018824], "tracked": true, "track_id": 1} +{"t": 26.239416, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006223, -0.028714, -0.255461, 0.956403, -0.619427, 1.369745, 0.64019, 0.511239, -0.280319, 0.471956, -0.220945, -0.201631, 1.495, -0.292945, 0.332959, -0.020579], "tracked": true, "track_id": 1} +{"t": 26.304062, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006541, -0.028714, -0.236238, 0.94364, -0.622301, 1.374456, 0.638793, 0.511334, -0.281176, 0.474328, -0.218046, -0.207261, 1.495, -0.289686, 0.333887, -0.022114], "tracked": true, "track_id": 1} +{"t": 26.370809, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006574, -0.028714, -0.214759, 0.928927, -0.626196, 1.381234, 0.63675, 0.511374, -0.282327, 0.477119, -0.215064, -0.213611, 1.495, -0.286918, 0.335776, -0.023735], "tracked": true, "track_id": 1} +{"t": 26.404629, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006801, -0.028714, -0.201328, 0.919829, -0.627393, 1.384499, 0.635503, 0.511372, -0.282679, 0.477446, -0.214203, -0.215258, 1.495, -0.285754, 0.335695, -0.02423], "tracked": true, "track_id": 1} +{"t": 26.470655, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00703, -0.028714, -0.201796, 0.921195, -0.628989, 1.387224, 0.636409, 0.511344, -0.283145, 0.477204, -0.213461, -0.216753, 1.495, -0.28482, 0.334785, -0.024788], "tracked": true, "track_id": 1} +{"t": 26.53658, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007119, -0.028714, -0.191733, 0.913916, -0.629326, 1.390082, 0.635239, 0.511308, -0.283239, 0.478722, -0.212375, -0.219342, 1.495, -0.283498, 0.337535, -0.02519], "tracked": true, "track_id": 1} +{"t": 26.601248, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006673, -0.028714, -0.196631, 0.916899, -0.630632, 1.390251, 0.635528, 0.511302, -0.283623, 0.476321, -0.214752, -0.216301, 1.495, -0.286705, 0.338432, -0.024178], "tracked": true, "track_id": 1} +{"t": 26.66865, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006393, -0.028714, -0.199326, 0.918244, -0.630827, 1.391845, 0.635503, 0.5112, -0.283667, 0.477793, -0.215942, -0.211972, 1.495, -0.287781, 0.338631, -0.022879], "tracked": true, "track_id": 1} +{"t": 26.730531, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006353, -0.028714, -0.20309, 0.920872, -0.630586, 1.390935, 0.635946, 0.511267, -0.283605, 0.477598, -0.216799, -0.210022, 1.495, -0.288508, 0.339113, -0.022243], "tracked": true, "track_id": 1} +{"t": 26.798373, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006324, -0.028714, -0.207052, 0.922999, -0.628382, 1.389823, 0.635959, 0.511318, -0.282963, 0.478415, -0.219764, -0.203012, 1.495, -0.290348, 0.344029, -0.019538], "tracked": true, "track_id": 1} +{"t": 26.863876, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006277, -0.028714, -0.207774, 0.923394, -0.628316, 1.385043, 0.635991, 0.511398, -0.282954, 0.479783, -0.221532, -0.198195, 1.495, -0.291286, 0.347451, -0.017674], "tracked": true, "track_id": 1} +{"t": 26.933055, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006016, -0.028714, -0.212416, 0.926866, -0.63004, 1.378615, 0.636579, 0.511317, -0.28345, 0.478838, -0.226454, -0.18637, 1.495, -0.295417, 0.349007, -0.013993], "tracked": true, "track_id": 1} +{"t": 26.966896, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005994, -0.028714, -0.20762, 0.923218, -0.630082, 1.379106, 0.635881, 0.511368, -0.283469, 0.478558, -0.228815, -0.180766, 1.495, -0.29712, 0.350722, -0.012121], "tracked": true, "track_id": 1} +{"t": 27.029042, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006162, -0.028714, -0.214999, 0.929257, -0.630195, 1.377882, 0.637227, 0.51142, -0.283509, 0.478568, -0.229557, -0.178079, 1.495, -0.297236, 0.350122, -0.011409], "tracked": true, "track_id": 1} +{"t": 27.094954, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005893, -0.028714, -0.225604, 0.93686, -0.630838, 1.372947, 0.638387, 0.51145, -0.283703, 0.476372, -0.234054, -0.167994, 1.495, -0.30137, 0.349785, -0.008487], "tracked": true, "track_id": 1} +{"t": 27.158347, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006313, -0.028714, -0.217791, 0.931316, -0.629028, 1.370542, 0.637596, 0.511352, -0.283157, 0.475962, -0.231853, -0.173161, 1.495, -0.29906, 0.348187, -0.010215], "tracked": true, "track_id": 1} +{"t": 27.19451, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006475, -0.028714, -0.222959, 0.935354, -0.628244, 1.367056, 0.638367, 0.511261, -0.282915, 0.475167, -0.232538, -0.171661, 1.495, -0.299352, 0.348012, -0.009797], "tracked": true, "track_id": 1} +{"t": 27.260919, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006463, -0.028714, -0.223749, 0.936463, -0.630074, 1.358939, 0.638818, 0.510574, -0.283363, 0.474391, -0.234309, -0.167281, 1.495, -0.300737, 0.347509, -0.008574], "tracked": true, "track_id": 1} +{"t": 27.294367, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006806, -0.028714, -0.226198, 0.938989, -0.629678, 1.35562, 0.639599, 0.510375, -0.283221, 0.472587, -0.23347, -0.170288, 1.495, -0.299835, 0.346178, -0.009633], "tracked": true, "track_id": 1} +{"t": 27.360977, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00716, -0.028714, -0.220787, 0.935687, -0.629886, 1.349296, 0.639426, 0.509532, -0.283172, 0.473841, -0.232004, -0.172614, 1.495, -0.297706, 0.34629, -0.010302], "tracked": true, "track_id": 1} +{"t": 27.424068, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007133, -0.028714, -0.227352, 0.941538, -0.633027, 1.339889, 0.640897, 0.508427, -0.283951, 0.472927, -0.236029, -0.162377, 1.495, -0.300693, 0.346733, -0.007233], "tracked": true, "track_id": 1} +{"t": 27.486711, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007164, -0.028714, -0.221699, 0.938082, -0.635688, 1.333451, 0.640669, 0.507152, -0.284567, 0.473431, -0.238988, -0.154322, 1.495, -0.302483, 0.348803, -0.004594], "tracked": true, "track_id": 1} +{"t": 27.522676, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007278, -0.028714, -0.21927, 0.936837, -0.636881, 1.330547, 0.640754, 0.506544, -0.284839, 0.472339, -0.240782, -0.150321, 1.495, -0.303692, 0.349193, -0.003366], "tracked": true, "track_id": 1} +{"t": 27.556967, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007433, -0.028714, -0.220573, 0.938301, -0.637411, 1.327239, 0.641261, 0.506009, -0.284924, 0.470784, -0.241535, -0.149127, 1.495, -0.304216, 0.348337, -0.003127], "tracked": true, "track_id": 1} +{"t": 27.621362, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007325, -0.028714, -0.226743, 0.942955, -0.638393, 1.321787, 0.642083, 0.505341, -0.285126, 0.470012, -0.242491, -0.147783, 1.495, -0.305299, 0.349162, -0.002624], "tracked": true, "track_id": 1} +{"t": 27.656711, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006911, -0.028714, -0.235017, 0.948531, -0.639259, 1.319143, 0.642701, 0.505276, -0.285372, 0.469298, -0.244243, -0.145073, 1.495, -0.30756, 0.350745, -0.001619], "tracked": true, "track_id": 1} +{"t": 27.719954, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007208, -0.028714, -0.232028, 0.946844, -0.638816, 1.319763, 0.642712, 0.505437, -0.285263, 0.469278, -0.240734, -0.153253, 1.495, -0.304573, 0.34805, -0.004378], "tracked": true, "track_id": 1} +{"t": 27.754201, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007126, -0.028714, -0.23469, 0.948768, -0.638932, 1.320852, 0.643006, 0.505832, -0.285349, 0.469787, -0.23966, -0.155502, 1.495, -0.303929, 0.347136, -0.005159], "tracked": true, "track_id": 1} +{"t": 27.788671, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007172, -0.028714, -0.236725, 0.95041, -0.638807, 1.32079, 0.64334, 0.505976, -0.285331, 0.469921, -0.239442, -0.155888, 1.495, -0.303654, 0.347149, -0.005271], "tracked": true, "track_id": 1} +{"t": 27.851852, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006944, -0.028714, -0.2377, 0.950246, -0.637426, 1.325921, 0.642885, 0.506969, -0.285054, 0.4699, -0.236382, -0.165587, 1.495, -0.302124, 0.348415, -0.007957], "tracked": true, "track_id": 1} +{"t": 27.914375, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006781, -0.028714, -0.238278, 0.949519, -0.634732, 1.33492, 0.642191, 0.508177, -0.28442, 0.470057, -0.235664, -0.167859, 1.495, -0.301989, 0.348672, -0.008592], "tracked": true, "track_id": 1} +{"t": 27.951082, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006769, -0.028714, -0.237763, 0.948712, -0.633418, 1.341147, 0.641851, 0.508699, -0.284102, 0.470442, -0.233261, -0.174409, 1.495, -0.300327, 0.348953, -0.010482], "tracked": true, "track_id": 1} +{"t": 27.98666, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007012, -0.028714, -0.231569, 0.943713, -0.630716, 1.349618, 0.640818, 0.509069, -0.283355, 0.471803, -0.230075, -0.180922, 1.495, -0.297308, 0.347443, -0.012595], "tracked": true, "track_id": 1} +{"t": 28.049282, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006966, -0.028714, -0.222175, 0.93597, -0.628987, 1.361904, 0.639116, 0.509704, -0.28293, 0.472868, -0.227046, -0.187157, 1.495, -0.295143, 0.344492, -0.014815], "tracked": true, "track_id": 1} +{"t": 28.084738, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007205, -0.028714, -0.21358, 0.928813, -0.625323, 1.368068, 0.637481, 0.509915, -0.28188, 0.473256, -0.22413, -0.194261, 1.495, -0.292563, 0.343793, -0.016995], "tracked": true, "track_id": 1} +{"t": 28.148268, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007373, -0.028714, -0.19363, 0.913448, -0.623028, 1.377762, 0.634364, 0.509842, -0.281195, 0.475955, -0.2212, -0.199043, 1.495, -0.289523, 0.342744, -0.018539], "tracked": true, "track_id": 1} +{"t": 28.216149, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007259, -0.028714, -0.190304, 0.909976, -0.621435, 1.384765, 0.633293, 0.509259, -0.280651, 0.474775, -0.222845, -0.194599, 1.495, -0.291191, 0.340065, -0.017582], "tracked": true, "track_id": 1} +{"t": 28.282833, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007125, -0.028714, -0.185885, 0.905621, -0.619509, 1.389825, 0.631998, 0.509231, -0.280081, 0.476356, -0.222813, -0.194089, 1.495, -0.291068, 0.341817, -0.017203], "tracked": true, "track_id": 1} +{"t": 28.345429, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006906, -0.028714, -0.178616, 0.899069, -0.617947, 1.393481, 0.630181, 0.509049, -0.279597, 0.474864, -0.225164, -0.190508, 1.495, -0.293499, 0.34433, -0.015821], "tracked": true, "track_id": 1} +{"t": 28.381155, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006414, -0.028714, -0.179106, 0.899125, -0.62066, 1.394909, 0.630023, 0.508871, -0.280372, 0.476255, -0.228282, -0.181966, 1.495, -0.296358, 0.346324, -0.013048], "tracked": true, "track_id": 1} +{"t": 28.444002, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006269, -0.028714, -0.177147, 0.898176, -0.623078, 1.397154, 0.630104, 0.509121, -0.281116, 0.475939, -0.232813, -0.170714, 1.495, -0.299804, 0.348586, -0.009443], "tracked": true, "track_id": 1} +{"t": 28.51322, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006023, -0.028714, -0.18596, 0.904562, -0.623931, 1.395531, 0.631223, 0.509697, -0.281442, 0.47097, -0.2401, -0.155162, 1.495, -0.30629, 0.346878, -0.005092], "tracked": true, "track_id": 1} +{"t": 28.576185, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005902, -0.028714, -0.182114, 0.902792, -0.627723, 1.395178, 0.631406, 0.510216, -0.282625, 0.470322, -0.243324, -0.145844, 1.495, -0.308912, 0.344548, -0.002656], "tracked": true, "track_id": 1} +{"t": 28.643078, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006127, -0.028714, -0.174478, 0.898218, -0.629187, 1.394355, 0.631077, 0.510622, -0.283109, 0.471178, -0.246077, -0.137517, 1.495, -0.310071, 0.346451, 4.1e-05], "tracked": true, "track_id": 1} +{"t": 28.708178, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00573, -0.028714, -0.182691, 0.904595, -0.63259, 1.386362, 0.63241, 0.510783, -0.284131, 0.469752, -0.253351, -0.121309, 1.495, -0.316154, 0.351284, 0.00544], "tracked": true, "track_id": 1} +{"t": 28.742058, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005601, -0.028714, -0.186961, 0.907805, -0.633529, 1.382133, 0.633028, 0.510797, -0.284409, 0.468267, -0.256685, -0.114438, 1.495, -0.318995, 0.352906, 0.007673], "tracked": true, "track_id": 1} +{"t": 28.810101, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005735, -0.028714, -0.19056, 0.911157, -0.634333, 1.377585, 0.633972, 0.510911, -0.28466, 0.467465, -0.258264, -0.110176, 1.495, -0.31994, 0.352055, 0.008816], "tracked": true, "track_id": 1} +{"t": 28.873122, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005992, -0.028714, -0.190678, 0.911768, -0.634046, 1.374227, 0.634387, 0.510956, -0.284581, 0.466009, -0.26026, -0.107847, 1.495, -0.321035, 0.357214, 0.010175], "tracked": true, "track_id": 1} +{"t": 28.942018, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006428, -0.028714, -0.187293, 0.910549, -0.634718, 1.375002, 0.634833, 0.511101, -0.284798, 0.466355, -0.258723, -0.112695, 1.495, -0.31896, 0.361045, 0.00925], "tracked": true, "track_id": 1} +{"t": 29.004546, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006695, -0.028714, -0.176938, 0.90363, -0.634895, 1.37767, 0.633783, 0.51121, -0.284865, 0.469158, -0.262579, -0.098473, 1.495, -0.320121, 0.360928, 0.013417], "tracked": true, "track_id": 1} +{"t": 29.070792, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007226, -0.028714, -0.159186, 0.892087, -0.635855, 1.383189, 0.632312, 0.511334, -0.285163, 0.469308, -0.268018, -0.081522, 1.495, -0.322479, 0.360039, 0.018287], "tracked": true, "track_id": 1} +{"t": 29.135934, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00737, -0.028714, -0.149204, 0.885279, -0.636452, 1.385751, 0.631199, 0.511404, -0.285348, 0.465265, -0.281149, -0.052009, 1.495, -0.3317, 0.367966, 0.028003], "tracked": true, "track_id": 1} +{"t": 29.205357, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007824, -0.028714, -0.157894, 0.892736, -0.636254, 1.384144, 0.633245, 0.511465, -0.285297, 0.453704, -0.292105, -0.031066, 1.495, -0.339986, 0.363478, 0.033576], "tracked": true, "track_id": 1} +{"t": 29.267035, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008009, -0.028714, -0.161491, 0.895234, -0.634616, 1.38392, 0.633753, 0.511509, -0.284821, 0.441746, -0.299933, -0.022004, 1.495, -0.346799, 0.363316, 0.03622], "tracked": true, "track_id": 1} +{"t": 29.330791, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007969, -0.028714, -0.167245, 0.899704, -0.635483, 1.381501, 0.634755, 0.511488, -0.285074, 0.429695, -0.311469, -0.003133, 1.495, -0.356261, 0.362179, 0.041622], "tracked": true, "track_id": 1} +{"t": 29.369773, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008014, -0.028714, -0.168045, 0.900434, -0.635604, 1.380864, 0.634991, 0.511488, -0.285109, 0.422917, -0.318682, 0.009191, 1.495, -0.361798, 0.36229, 0.045261], "tracked": true, "track_id": 1} +{"t": 29.43353, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008207, -0.028714, -0.180253, 0.909825, -0.634925, 1.38001, 0.636895, 0.51153, -0.284915, 0.411, -0.331731, 0.033822, 1.495, -0.371474, 0.358637, 0.052028], "tracked": true, "track_id": 1} +{"t": 29.501038, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007742, -0.028714, -0.176745, 0.906107, -0.63515, 1.383724, 0.635657, 0.511529, -0.284981, 0.408624, -0.342135, 0.053993, 1.495, -0.379866, 0.371174, 0.0596], "tracked": true, "track_id": 1} +{"t": 29.565236, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008156, -0.028714, -0.165968, 0.898926, -0.634775, 1.388163, 0.634736, 0.511561, -0.284875, 0.408438, -0.340289, 0.05039, 1.495, -0.378056, 0.370193, 0.058412], "tracked": true, "track_id": 1} +{"t": 29.631545, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008148, -0.028714, -0.15479, 0.890938, -0.635672, 1.391306, 0.633279, 0.511587, -0.285142, 0.416759, -0.335618, 0.048052, 1.495, -0.374053, 0.368413, 0.057492], "tracked": true, "track_id": 1} +{"t": 29.69479, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007919, -0.028714, -0.169227, 0.900922, -0.634959, 1.38885, 0.634807, 0.511565, -0.28493, 0.415656, -0.335926, 0.050307, 1.495, -0.37502, 0.361543, 0.057256], "tracked": true, "track_id": 1} +{"t": 29.759515, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007911, -0.028714, -0.167628, 0.899169, -0.633457, 1.391159, 0.634218, 0.511554, -0.284486, 0.42286, -0.327408, 0.037139, 1.495, -0.368526, 0.356456, 0.052719], "tracked": true, "track_id": 1} +{"t": 29.794922, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008056, -0.028714, -0.167736, 0.899187, -0.632346, 1.391015, 0.634243, 0.511572, -0.284162, 0.424121, -0.325122, 0.034519, 1.495, -0.366611, 0.352187, 0.05139], "tracked": true, "track_id": 1} +{"t": 29.859235, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008016, -0.028714, -0.147788, 0.885256, -0.634869, 1.394341, 0.631728, 0.511531, -0.284899, 0.434892, -0.323902, 0.044116, 1.495, -0.364147, 0.350331, 0.05397], "tracked": true, "track_id": 1} +{"t": 29.892663, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008055, -0.028714, -0.141766, 0.880776, -0.634566, 1.39564, 0.630827, 0.511509, -0.284807, 0.434758, -0.320286, 0.034805, 1.495, -0.361781, 0.348432, 0.050983], "tracked": true, "track_id": 1} +{"t": 29.930109, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00838, -0.028714, -0.134846, 0.876059, -0.633549, 1.396744, 0.630131, 0.511534, -0.284511, 0.435912, -0.316129, 0.027286, 1.495, -0.358221, 0.343787, 0.048165], "tracked": true, "track_id": 1} +{"t": 29.994068, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008296, -0.028714, -0.121147, 0.866267, -0.63483, 1.39848, 0.628157, 0.511529, -0.284887, 0.43741, -0.309962, 0.012215, 1.495, -0.354195, 0.342267, 0.043534], "tracked": true, "track_id": 1} +{"t": 30.060308, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008024, -0.028714, -0.124033, 0.868637, -0.637436, 1.39938, 0.628723, 0.511415, -0.285639, 0.436629, -0.309585, 0.011698, 1.495, -0.354681, 0.337739, 0.042789], "tracked": true, "track_id": 1} +{"t": 30.122588, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007943, -0.028714, -0.124027, 0.868325, -0.637258, 1.400198, 0.628593, 0.511466, -0.285593, 0.437826, -0.308067, 0.010502, 1.495, -0.353738, 0.333735, 0.041914], "tracked": true, "track_id": 1} +{"t": 30.187004, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007349, -0.028714, -0.120517, 0.864679, -0.638292, 1.400975, 0.627201, 0.511329, -0.285879, 0.4409, -0.310504, 0.016831, 1.495, -0.356164, 0.340072, 0.044604], "tracked": true, "track_id": 1} +{"t": 30.224222, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007404, -0.028714, -0.118555, 0.863347, -0.638276, 1.401279, 0.627008, 0.511322, -0.285873, 0.440296, -0.312016, 0.020794, 1.495, -0.357185, 0.339608, 0.045709], "tracked": true, "track_id": 1} +{"t": 30.289786, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007378, -0.028714, -0.132213, 0.873309, -0.638197, 1.400748, 0.629042, 0.511305, -0.285848, 0.436478, -0.319231, 0.038483, 1.495, -0.362649, 0.335746, 0.050407], "tracked": true, "track_id": 1} +{"t": 30.356969, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007384, -0.028714, -0.136051, 0.876514, -0.639298, 1.39844, 0.629947, 0.511406, -0.286185, 0.437002, -0.321757, 0.043945, 1.495, -0.364272, 0.341035, 0.052705], "tracked": true, "track_id": 1} +{"t": 30.42177, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008718, -0.028714, -0.143011, 0.883869, -0.63668, 1.392097, 0.632641, 0.511367, -0.28541, 0.432043, -0.322372, 0.048471, 1.495, -0.362615, 0.329197, 0.052489], "tracked": true, "track_id": 1} +{"t": 30.487115, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008799, -0.028714, -0.154205, 0.892912, -0.638281, 1.383174, 0.634807, 0.511112, -0.285847, 0.42573, -0.328694, 0.062837, 1.495, -0.367492, 0.320745, 0.055609], "tracked": true, "track_id": 1} +{"t": 30.551459, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008588, -0.028714, -0.172806, 0.906949, -0.640682, 1.365476, 0.637509, 0.50949, -0.286342, 0.419004, -0.33849, 0.082451, 1.495, -0.375234, 0.319454, 0.061209], "tracked": true, "track_id": 1} +{"t": 30.615744, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007943, -0.028714, -0.20517, 0.930595, -0.643817, 1.342244, 0.641267, 0.506643, -0.286892, 0.399616, -0.352048, 0.096545, 1.495, -0.386545, 0.312636, 0.064463], "tracked": true, "track_id": 1} +{"t": 30.651944, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008015, -0.028714, -0.209169, 0.934273, -0.645959, 1.334092, 0.64233, 0.505199, -0.287333, 0.398695, -0.353822, 0.102312, 1.495, -0.387843, 0.309479, 0.065747], "tracked": true, "track_id": 1} +{"t": 30.685324, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00794, -0.028714, -0.214849, 0.938697, -0.647764, 1.324821, 0.64324, 0.503305, -0.287616, 0.391267, -0.357517, 0.10455, 1.495, -0.39087, 0.305679, 0.065908], "tracked": true, "track_id": 1} +{"t": 30.746539, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00813, -0.028714, -0.20722, 0.934198, -0.651158, 1.316751, 0.643178, 0.501329, -0.288356, 0.394579, -0.357964, 0.109273, 1.495, -0.39086, 0.30978, 0.067833], "tracked": true, "track_id": 1} +{"t": 30.784324, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007906, -0.028714, -0.21076, 0.936714, -0.65263, 1.312475, 0.6436, 0.500688, -0.288705, 0.394416, -0.359571, 0.113185, 1.495, -0.392501, 0.309796, 0.068986], "tracked": true, "track_id": 1} +{"t": 30.847231, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007668, -0.028714, -0.215459, 0.940002, -0.65396, 1.306337, 0.64407, 0.499703, -0.288968, 0.391753, -0.360841, 0.111161, 1.495, -0.394021, 0.313273, 0.068845], "tracked": true, "track_id": 1} +{"t": 30.881397, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007534, -0.028714, -0.226429, 0.947846, -0.653394, 1.30315, 0.645178, 0.499778, -0.288811, 0.387719, -0.361136, 0.108197, 1.495, -0.394732, 0.309195, 0.06744], "tracked": true, "track_id": 1} +{"t": 30.916791, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007613, -0.028714, -0.21757, 0.941642, -0.653938, 1.30729, 0.644314, 0.500564, -0.289074, 0.391107, -0.358974, 0.109061, 1.495, -0.392978, 0.304055, 0.067023], "tracked": true, "track_id": 1} +{"t": 30.98, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007847, -0.028714, -0.211091, 0.937631, -0.654244, 1.31367, 0.644083, 0.502149, -0.289371, 0.394715, -0.356109, 0.110256, 1.495, -0.390492, 0.295527, 0.066259], "tracked": true, "track_id": 1} +{"t": 31.046277, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008438, -0.028714, -0.193658, 0.92523, -0.651751, 1.324821, 0.642231, 0.503621, -0.28883, 0.395051, -0.350964, 0.099763, 1.495, -0.385913, 0.291435, 0.062638], "tracked": true, "track_id": 1} +{"t": 31.081002, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008463, -0.028714, -0.171833, 0.909298, -0.651322, 1.336548, 0.638941, 0.50483, -0.288862, 0.404639, -0.342423, 0.08223, 1.495, -0.378925, 0.302207, 0.058889], "tracked": true, "track_id": 1} +{"t": 31.143158, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008322, -0.028714, -0.138449, 0.884517, -0.650853, 1.354989, 0.63358, 0.506289, -0.288915, 0.418299, -0.334829, 0.068206, 1.495, -0.372491, 0.321495, 0.057286], "tracked": true, "track_id": 1} +{"t": 31.212785, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008504, -0.028714, -0.097555, 0.854616, -0.648513, 1.368312, 0.626606, 0.506045, -0.288195, 0.433605, -0.32272, 0.045358, 1.495, -0.361582, 0.336027, 0.052466], "tracked": true, "track_id": 1} +{"t": 31.277048, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009021, -0.028714, -0.058121, 0.827375, -0.64974, 1.377938, 0.620682, 0.501479, -0.287959, 0.440393, -0.313863, 0.027967, 1.495, -0.353757, 0.339626, 0.047821], "tracked": true, "track_id": 1} +{"t": 31.343675, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009538, -0.028714, -0.053962, 0.824466, -0.651249, 1.384893, 0.620867, 0.494114, -0.28744, 0.43273, -0.30963, 0.016118, 1.494608, -0.351328, 0.323574, 0.042238], "tracked": true, "track_id": 1} +{"t": 31.408571, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009706, -0.028714, -0.045555, 0.818212, -0.652486, 1.389917, 0.619728, 0.489078, -0.287145, 0.439603, -0.302938, 0.003073, 1.494716, -0.345515, 0.329017, 0.039113], "tracked": true, "track_id": 1} +{"t": 31.47362, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009627, -0.028714, -0.041088, 0.81449, -0.653473, 1.393548, 0.618909, 0.48609, -0.287045, 0.444283, -0.299156, -0.003288, 1.494795, -0.342541, 0.331332, 0.037544], "tracked": true, "track_id": 1} +{"t": 31.508369, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00911, -0.028714, -0.042168, 0.814587, -0.655519, 1.394966, 0.618562, 0.485169, -0.287526, 0.450927, -0.297849, -0.004644, 1.494826, -0.341419, 0.339859, 0.03826], "tracked": true, "track_id": 1} +{"t": 31.570901, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009851, -0.028714, -0.028098, 0.804258, -0.648409, 1.397195, 0.616307, 0.489086, -0.285947, 0.448024, -0.294961, -0.012311, 1.494874, -0.338553, 0.335896, 0.035487], "tracked": true, "track_id": 1} +{"t": 31.606073, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009622, -0.028714, -0.033983, 0.808167, -0.648342, 1.398066, 0.617142, 0.49113, -0.286195, 0.45126, -0.294801, -0.010978, 1.494893, -0.33839, 0.338834, 0.036263], "tracked": true, "track_id": 1} +{"t": 31.642483, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009333, -0.028714, -0.037587, 0.81031, -0.648077, 1.398806, 0.617455, 0.493517, -0.286429, 0.454519, -0.295211, -0.009206, 1.494909, -0.338704, 0.344159, 0.037481], "tracked": true, "track_id": 1} +{"t": 31.703001, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00904, -0.028714, -0.066321, 0.831401, -0.648865, 1.399503, 0.622344, 0.498335, -0.28729, 0.445768, -0.302184, 0.005756, 1.494934, -0.345599, 0.331451, 0.04022], "tracked": true, "track_id": 1} +{"t": 31.737324, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009168, -0.028714, -0.078684, 0.840773, -0.648357, 1.399775, 0.624666, 0.500315, -0.2874, 0.443796, -0.301962, 0.005995, 1.494944, -0.34563, 0.325482, 0.03951], "tracked": true, "track_id": 1} +{"t": 31.77213, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008905, -0.028714, -0.082661, 0.843588, -0.649386, 1.399595, 0.625323, 0.502014, -0.287924, 0.447297, -0.305032, 0.017674, 1.494953, -0.347653, 0.326363, 0.04306], "tracked": true, "track_id": 1} +{"t": 31.837607, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008785, -0.028714, -0.092075, 0.850971, -0.651004, 1.395887, 0.627367, 0.504482, -0.288723, 0.451745, -0.308024, 0.031559, 1.494966, -0.349192, 0.324902, 0.046953], "tracked": true, "track_id": 1} +{"t": 31.899023, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009158, -0.028714, -0.110971, 0.866037, -0.651988, 1.379522, 0.63127, 0.504885, -0.289065, 0.440758, -0.313981, 0.045291, 1.490729, -0.354194, 0.305989, 0.048519], "tracked": true, "track_id": 1} +{"t": 31.934824, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009539, -0.028714, -0.112418, 0.867993, -0.652286, 1.373511, 0.632287, 0.50482, -0.289144, 0.43648, -0.315129, 0.045442, 1.49137, -0.354886, 0.304263, 0.048338], "tracked": true, "track_id": 1} +{"t": 31.970441, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009393, -0.028714, -0.115517, 0.870164, -0.653236, 1.367002, 0.632748, 0.504524, -0.289385, 0.435298, -0.317089, 0.049035, 1.491914, -0.356774, 0.30506, 0.049499], "tracked": true, "track_id": 1} +{"t": 32.0344, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009713, -0.028714, -0.126716, 0.879235, -0.654401, 1.351012, 0.635143, 0.502775, -0.289499, 0.429243, -0.317613, 0.046951, 1.492771, -0.357446, 0.299379, 0.048144], "tracked": true, "track_id": 1} +{"t": 32.100527, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009583, -0.028714, -0.133204, 0.884099, -0.656769, 1.336305, 0.636257, 0.500287, -0.28987, 0.423027, -0.324518, 0.059278, 1.493389, -0.363204, 0.298546, 0.05166], "tracked": true, "track_id": 1} +{"t": 32.164698, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009765, -0.028714, -0.145014, 0.893438, -0.657671, 1.326554, 0.638454, 0.49939, -0.290018, 0.419128, -0.327387, 0.062455, 1.493836, -0.365318, 0.30058, 0.052861], "tracked": true, "track_id": 1} +{"t": 32.201405, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009891, -0.028714, -0.147326, 0.895409, -0.657737, 1.323691, 0.639029, 0.499187, -0.290011, 0.416282, -0.327649, 0.05991, 1.494011, -0.36561, 0.301168, 0.052189], "tracked": true, "track_id": 1} +{"t": 32.262684, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009682, -0.028714, -0.150158, 0.897247, -0.658932, 1.317483, 0.639312, 0.49822, -0.290236, 0.414624, -0.329826, 0.062286, 1.494285, -0.367767, 0.304208, 0.053285], "tracked": true, "track_id": 1} +{"t": 32.332847, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009817, -0.028714, -0.144457, 0.893406, -0.658859, 1.319819, 0.638791, 0.498992, -0.290316, 0.4149, -0.328056, 0.057079, 1.494484, -0.366359, 0.306399, 0.05204], "tracked": true, "track_id": 1} +{"t": 32.396543, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009755, -0.028714, -0.13667, 0.887503, -0.658871, 1.320757, 0.637561, 0.49919, -0.290345, 0.412302, -0.328662, 0.057183, 1.494627, -0.367214, 0.302695, 0.051587], "tracked": true, "track_id": 1} +{"t": 32.460622, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009093, -0.028714, -0.102415, 0.861262, -0.65717, 1.33506, 0.630277, 0.500917, -0.290071, 0.420855, -0.327322, 0.057545, 1.49473, -0.36634, 0.311807, 0.052884], "tracked": true, "track_id": 1} +{"t": 32.495648, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009154, -0.028714, -0.091486, 0.85358, -0.657126, 1.341594, 0.628775, 0.501965, -0.290195, 0.42131, -0.325364, 0.054065, 1.494771, -0.364924, 0.308907, 0.051481], "tracked": true, "track_id": 1} +{"t": 32.529707, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008714, -0.028714, -0.070028, 0.837138, -0.655395, 1.350805, 0.623819, 0.50322, -0.289849, 0.427006, -0.325295, 0.05789, 1.494805, -0.364952, 0.312428, 0.053067], "tracked": true, "track_id": 1} +{"t": 32.593058, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008585, -0.028714, -0.045713, 0.819792, -0.655476, 1.365289, 0.619708, 0.505118, -0.290121, 0.422059, -0.32791, 0.063358, 1.494772, -0.367622, 0.302745, 0.053409], "tracked": true, "track_id": 1} +{"t": 32.628635, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008354, -0.028714, -0.036943, 0.813128, -0.655436, 1.370946, 0.617884, 0.506058, -0.290233, 0.418958, -0.329638, 0.06494, 1.494806, -0.369624, 0.300405, 0.053569], "tracked": true, "track_id": 1} +{"t": 32.693031, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008137, -0.028714, -0.013872, 0.796775, -0.655346, 1.379841, 0.613425, 0.507616, -0.29041, 0.417284, -0.331911, 0.071953, 1.494371, -0.371822, 0.29335, 0.054709], "tracked": true, "track_id": 1} +{"t": 32.760996, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008223, -0.028714, 0.007846, 0.781985, -0.655282, 1.386267, 0.609733, 0.508639, -0.290524, 0.410158, -0.33786, 0.080909, 1.494545, -0.376378, 0.291989, 0.057165], "tracked": true, "track_id": 1} +{"t": 32.825744, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007768, -0.028714, 0.020195, 0.772183, -0.654539, 1.390911, 0.606463, 0.509082, -0.290364, 0.409149, -0.340768, 0.082441, 1.494672, -0.379377, 0.301757, 0.058893], "tracked": true, "track_id": 1} +{"t": 32.887949, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007651, -0.028714, 0.036153, 0.761039, -0.654299, 1.394266, 0.603187, 0.509699, -0.290374, 0.406275, -0.343318, 0.088042, 1.494763, -0.381644, 0.296822, 0.059895], "tracked": true, "track_id": 1} +{"t": 32.925693, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007457, -0.028714, 0.032709, 0.762913, -0.654463, 1.395576, 0.603611, 0.509815, -0.290437, 0.403137, -0.346233, 0.093447, 1.494798, -0.384221, 0.293045, 0.060991], "tracked": true, "track_id": 1} +{"t": 32.98944, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00714, -0.028714, 0.036773, 0.759363, -0.654502, 1.397636, 0.602304, 0.5099, -0.29046, 0.402803, -0.348759, 0.098395, 1.494854, -0.386636, 0.295389, 0.062753], "tracked": true, "track_id": 1} +{"t": 33.05496, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006607, -0.028714, 0.044927, 0.752838, -0.654675, 1.399124, 0.599686, 0.510277, -0.29056, 0.401286, -0.351505, 0.104326, 1.494895, -0.389665, 0.292019, 0.064056], "tracked": true, "track_id": 1} +{"t": 33.119166, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005876, -0.028714, 0.048272, 0.749074, -0.654661, 1.4002, 0.597547, 0.510622, -0.290601, 0.399615, -0.357315, 0.115977, 1.494924, -0.39508, 0.293471, 0.067673], "tracked": true, "track_id": 1} +{"t": 33.187421, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005596, -0.028714, 0.054936, 0.744108, -0.654789, 1.400977, 0.595667, 0.510788, -0.290661, 0.39794, -0.360495, 0.122429, 1.494945, -0.397841, 0.292514, 0.069446], "tracked": true, "track_id": 1} +{"t": 33.253495, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004531, -0.028714, 0.063003, 0.73587, -0.651607, 1.401538, 0.590704, 0.510948, -0.289745, 0.4029, -0.363772, 0.133532, 1.49496, -0.4016, 0.296293, 0.073205], "tracked": true, "track_id": 1} +{"t": 33.316963, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003349, -0.028714, 0.080603, 0.720738, -0.647185, 1.401944, 0.583117, 0.510947, -0.288445, 0.411895, -0.368484, 0.146525, 1.494971, -0.406348, 0.316498, 0.079668], "tracked": true, "track_id": 1} +{"t": 33.352391, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003165, -0.028714, 0.086827, 0.716009, -0.646221, 1.402102, 0.581147, 0.51099, -0.288167, 0.414845, -0.368614, 0.147951, 1.494976, -0.406564, 0.32156, 0.080749], "tracked": true, "track_id": 1} +{"t": 33.417174, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00189, -0.028714, 0.0915, 0.708346, -0.640781, 1.402351, 0.576021, 0.510685, -0.286527, 0.42176, -0.372202, 0.157493, 1.494982, -0.410864, 0.33586, 0.085425], "tracked": true, "track_id": 1} +{"t": 33.484823, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001544, -0.028714, 0.097947, 0.702682, -0.638701, 1.402531, 0.573267, 0.509893, -0.285812, 0.42511, -0.373895, 0.16388, 1.494987, -0.412419, 0.340006, 0.087845], "tracked": true, "track_id": 1} +{"t": 33.547371, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000972, -0.028714, 0.104821, 0.696038, -0.635805, 1.402661, 0.569637, 0.508912, -0.284832, 0.425467, -0.376122, 0.169175, 1.494991, -0.41505, 0.340178, 0.089425], "tracked": true, "track_id": 1} +{"t": 33.616566, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000488, -0.028714, 0.108354, 0.692326, -0.634912, 1.402755, 0.567475, 0.507978, -0.284447, 0.427295, -0.379366, 0.17646, 1.494993, -0.41804, 0.347131, 0.092476], "tracked": true, "track_id": 1} +{"t": 33.681308, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.0006, -0.028714, 0.111593, 0.690606, -0.635663, 1.402823, 0.567142, 0.507251, -0.284573, 0.43016, -0.376359, 0.170786, 1.494995, -0.415487, 0.349336, 0.091096], "tracked": true, "track_id": 1} +{"t": 33.743964, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000153, -0.028714, 0.114294, 0.687207, -0.633762, 1.402371, 0.564982, 0.506419, -0.283905, 0.430587, -0.37945, 0.177077, 1.494997, -0.418456, 0.35384, 0.093535], "tracked": true, "track_id": 1} +{"t": 33.778746, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000243, -0.028714, 0.114946, 0.687099, -0.63411, 1.402465, 0.565161, 0.506584, -0.284029, 0.430508, -0.378823, 0.175487, 1.494997, -0.417887, 0.353716, 0.093051], "tracked": true, "track_id": 1} +{"t": 33.842648, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000187, -0.028714, 0.113791, 0.686146, -0.632242, 1.401087, 0.56395, 0.505838, -0.283382, 0.431797, -0.379544, 0.176794, 1.494998, -0.419136, 0.356889, 0.09385], "tracked": true, "track_id": 1} +{"t": 33.910671, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -3.9e-05, -0.028714, 0.118251, 0.683582, -0.631799, 1.401618, 0.563186, 0.506203, -0.283299, 0.432578, -0.378386, 0.1743, 1.494998, -0.418, 0.358131, 0.093279], "tracked": true, "track_id": 1} +{"t": 33.944324, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -8.5e-05, -0.028714, 0.11843, 0.683379, -0.631701, 1.401825, 0.563058, 0.506492, -0.283308, 0.431624, -0.378756, 0.175151, 1.494999, -0.418444, 0.355603, 0.093199], "tracked": true, "track_id": 1} +{"t": 33.979794, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -5.6e-05, -0.028714, 0.121234, 0.681306, -0.630293, 1.402001, 0.562173, 0.50697, -0.282957, 0.433383, -0.376722, 0.171604, 1.494999, -0.41683, 0.355735, 0.092173], "tracked": true, "track_id": 1} +{"t": 34.046165, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 6.8e-05, -0.028714, 0.122947, 0.680348, -0.629578, 1.402278, 0.561977, 0.507733, -0.282846, 0.433863, -0.376979, 0.171447, 1.494999, -0.416714, 0.359758, 0.092653], "tracked": true, "track_id": 1} +{"t": 34.081412, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000139, -0.028714, 0.124392, 0.678659, -0.628239, 1.402387, 0.560871, 0.508115, -0.282502, 0.435041, -0.376697, 0.171773, 1.494999, -0.416821, 0.359539, 0.09272], "tracked": true, "track_id": 1} +{"t": 34.14244, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000738, -0.028714, 0.120968, 0.683849, -0.631586, 1.402557, 0.564491, 0.508835, -0.283581, 0.427246, -0.373268, 0.161899, 1.495, -0.413512, 0.342363, 0.087571], "tracked": true, "track_id": 1} +{"t": 34.207559, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001828, -0.028714, 0.12259, 0.687026, -0.637614, 1.40268, 0.568039, 0.508911, -0.285364, 0.414634, -0.377965, 0.168955, 1.494808, -0.415409, 0.325688, 0.087466], "tracked": true, "track_id": 1} +{"t": 34.271536, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002364, -0.028714, 0.116798, 0.693217, -0.641792, 1.402769, 0.571716, 0.509671, -0.286692, 0.411967, -0.374192, 0.16085, 1.494861, -0.412148, 0.315319, 0.083727], "tracked": true, "track_id": 1} +{"t": 34.340214, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002823, -0.028714, 0.10189, 0.704877, -0.645295, 1.402833, 0.577014, 0.510227, -0.287795, 0.404768, -0.373892, 0.156926, 1.4949, -0.411554, 0.303624, 0.081044], "tracked": true, "track_id": 1} +{"t": 34.373578, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003506, -0.028714, 0.102125, 0.70631, -0.646114, 1.402858, 0.57873, 0.510423, -0.288061, 0.400833, -0.37285, 0.152124, 1.494915, -0.409826, 0.300527, 0.079227], "tracked": true, "track_id": 1} +{"t": 34.407047, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003379, -0.028714, 0.101643, 0.706839, -0.647556, 1.402879, 0.578931, 0.510438, -0.288487, 0.403324, -0.370011, 0.144303, 1.494927, -0.408031, 0.306568, 0.077716], "tracked": true, "track_id": 1} +{"t": 34.476494, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004164, -0.028714, 0.094402, 0.713684, -0.649453, 1.402913, 0.582788, 0.51072, -0.289082, 0.393324, -0.370219, 0.138962, 1.494948, -0.407155, 0.294729, 0.074598], "tracked": true, "track_id": 1} +{"t": 34.537687, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004406, -0.028714, 0.098821, 0.712043, -0.651109, 1.402937, 0.582669, 0.510843, -0.289585, 0.391301, -0.369613, 0.13533, 1.494962, -0.406392, 0.294258, 0.073468], "tracked": true, "track_id": 1} +{"t": 34.601286, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004353, -0.028714, 0.101158, 0.710789, -0.652685, 1.402954, 0.582373, 0.510013, -0.28994, 0.395842, -0.365196, 0.126582, 1.494973, -0.403336, 0.299123, 0.071531], "tracked": true, "track_id": 1} +{"t": 34.636929, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004414, -0.028714, 0.106055, 0.70792, -0.653159, 1.402961, 0.581473, 0.509625, -0.290029, 0.399983, -0.360356, 0.116306, 1.494977, -0.399697, 0.303775, 0.069117], "tracked": true, "track_id": 1} +{"t": 34.698668, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004997, -0.028714, 0.10699, 0.708394, -0.653413, 1.402972, 0.582616, 0.509163, -0.290043, 0.403501, -0.354489, 0.107021, 1.493738, -0.394427, 0.30114, 0.066041], "tracked": true, "track_id": 1} +{"t": 34.732683, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004883, -0.028714, 0.098648, 0.713663, -0.653901, 1.402976, 0.584305, 0.508943, -0.290158, 0.401347, -0.356863, 0.112403, 1.493927, -0.396407, 0.297207, 0.06711], "tracked": true, "track_id": 1} +{"t": 34.768208, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004855, -0.028714, 0.098957, 0.713346, -0.65398, 1.40298, 0.58418, 0.508556, -0.290131, 0.404711, -0.353042, 0.103693, 1.494088, -0.393668, 0.302017, 0.065177], "tracked": true, "track_id": 1} +{"t": 34.801782, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004985, -0.028714, 0.097283, 0.71478, -0.654383, 1.402983, 0.584957, 0.508533, -0.290246, 0.405036, -0.351068, 0.100636, 1.494225, -0.392126, 0.298186, 0.063777], "tracked": true, "track_id": 1} +{"t": 34.865768, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004828, -0.028714, 0.087244, 0.721041, -0.654645, 1.402988, 0.586927, 0.50879, -0.290357, 0.40374, -0.351584, 0.09939, 1.49444, -0.392847, 0.29945, 0.063576], "tracked": true, "track_id": 1} +{"t": 34.899932, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004714, -0.028714, 0.082131, 0.724202, -0.654805, 1.402989, 0.58787, 0.509052, -0.290438, 0.403233, -0.353467, 0.104001, 1.494524, -0.394403, 0.299037, 0.064878], "tracked": true, "track_id": 1} +{"t": 34.964336, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004903, -0.028714, 0.087017, 0.721538, -0.654824, 1.402992, 0.587307, 0.509773, -0.290538, 0.404446, -0.351534, 0.10319, 1.494656, -0.392731, 0.293422, 0.063906], "tracked": true, "track_id": 1} +{"t": 35.027516, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005145, -0.028714, 0.080333, 0.726411, -0.654847, 1.402994, 0.589363, 0.510294, -0.290613, 0.398529, -0.354134, 0.109702, 1.491851, -0.394406, 0.279564, 0.06401], "tracked": true, "track_id": 1} +{"t": 35.06425, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005063, -0.028714, 0.077805, 0.727911, -0.654909, 1.402995, 0.589782, 0.510458, -0.290653, 0.397874, -0.35575, 0.112259, 1.492323, -0.39571, 0.281753, 0.065048], "tracked": true, "track_id": 1} +{"t": 35.097862, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005061, -0.028714, 0.075645, 0.729177, -0.65451, 1.402996, 0.590183, 0.510641, -0.290559, 0.399499, -0.353967, 0.110329, 1.492725, -0.394435, 0.279521, 0.064188], "tracked": true, "track_id": 1} +{"t": 35.161817, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004855, -0.028714, 0.078026, 0.726659, -0.65212, 1.402997, 0.588495, 0.510758, -0.289872, 0.405152, -0.355494, 0.116053, 1.493356, -0.395211, 0.291004, 0.067373], "tracked": true, "track_id": 1} +{"t": 35.228228, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003974, -0.028714, 0.090772, 0.715104, -0.647365, 1.402998, 0.582543, 0.510584, -0.28845, 0.415765, -0.358295, 0.125851, 1.493812, -0.397829, 0.312156, 0.07302], "tracked": true, "track_id": 1} +{"t": 35.261844, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003598, -0.028714, 0.095047, 0.71079, -0.645001, 1.402998, 0.580199, 0.510555, -0.287751, 0.419249, -0.359353, 0.129611, 1.49399, -0.398988, 0.318364, 0.074937], "tracked": true, "track_id": 1} +{"t": 35.329261, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002907, -0.028714, 0.099918, 0.704557, -0.640577, 1.402999, 0.576456, 0.509582, -0.286323, 0.428173, -0.359651, 0.133884, 1.494271, -0.399616, 0.332, 0.077976], "tracked": true, "track_id": 1} +{"t": 35.391616, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002541, -0.028714, 0.105311, 0.69924, -0.637491, 1.402999, 0.573672, 0.509144, -0.285358, 0.432742, -0.360995, 0.13815, 1.494473, -0.400819, 0.341962, 0.080533], "tracked": true, "track_id": 1} +{"t": 35.458506, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002265, -0.028714, 0.105779, 0.697254, -0.634875, 1.402731, 0.57228, 0.508178, -0.284462, 0.434308, -0.36136, 0.140675, 1.494619, -0.401544, 0.341721, 0.081245], "tracked": true, "track_id": 1} +{"t": 35.522697, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002027, -0.028714, 0.109969, 0.692999, -0.631995, 1.401584, 0.570003, 0.507265, -0.283496, 0.435576, -0.36296, 0.144677, 1.494725, -0.403009, 0.345362, 0.082897], "tracked": true, "track_id": 1} +{"t": 35.587651, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001965, -0.028714, 0.115594, 0.688518, -0.629731, 1.401766, 0.567945, 0.506667, -0.282752, 0.439595, -0.361504, 0.143877, 1.494801, -0.401642, 0.348548, 0.083079], "tracked": true, "track_id": 1} +{"t": 35.623523, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001705, -0.028714, 0.118911, 0.684759, -0.626551, 1.401505, 0.565751, 0.506047, -0.281736, 0.440197, -0.362099, 0.146216, 1.494831, -0.402532, 0.347515, 0.083632], "tracked": true, "track_id": 1} +{"t": 35.659995, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001702, -0.028714, 0.122256, 0.682415, -0.62574, 1.40173, 0.564773, 0.506129, -0.281508, 0.441884, -0.361912, 0.145562, 1.494856, -0.402198, 0.352403, 0.084078], "tracked": true, "track_id": 1} +{"t": 35.722253, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001616, -0.028714, 0.126709, 0.678662, -0.623069, 1.402082, 0.562962, 0.506756, -0.280804, 0.444554, -0.361075, 0.144972, 1.494896, -0.401473, 0.355291, 0.084282], "tracked": true, "track_id": 1} +{"t": 35.758859, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001565, -0.028714, 0.128476, 0.677363, -0.622518, 1.40222, 0.562361, 0.507299, -0.280713, 0.44546, -0.360048, 0.142843, 1.494912, -0.400784, 0.355793, 0.083721], "tracked": true, "track_id": 1} +{"t": 35.821833, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00234, -0.028714, 0.11803, 0.687131, -0.626734, 1.402436, 0.567557, 0.508333, -0.282088, 0.43886, -0.357639, 0.134115, 1.494936, -0.398364, 0.34593, 0.079865], "tracked": true, "track_id": 1} +{"t": 35.888281, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002622, -0.028714, 0.120879, 0.686662, -0.62877, 1.402593, 0.568183, 0.50925, -0.282807, 0.439568, -0.355708, 0.13146, 1.494954, -0.396461, 0.343031, 0.078705], "tracked": true, "track_id": 1} +{"t": 35.953204, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003376, -0.028714, 0.106824, 0.699344, -0.635227, 1.402706, 0.57467, 0.50986, -0.284786, 0.430703, -0.354985, 0.127231, 1.494967, -0.395464, 0.327356, 0.075412], "tracked": true, "track_id": 1} +{"t": 36.017537, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003972, -0.028714, 0.091705, 0.712033, -0.640329, 1.402787, 0.580621, 0.510346, -0.28635, 0.420811, -0.35529, 0.124053, 1.494976, -0.395417, 0.311628, 0.072422], "tracked": true, "track_id": 1} +{"t": 36.054304, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004433, -0.028714, 0.089253, 0.715247, -0.642512, 1.402819, 0.582754, 0.510546, -0.287018, 0.417804, -0.354335, 0.119949, 1.49498, -0.394204, 0.309089, 0.070883], "tracked": true, "track_id": 1} +{"t": 36.11747, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004638, -0.028714, 0.084446, 0.719969, -0.646077, 1.402869, 0.585142, 0.510601, -0.288074, 0.412519, -0.354397, 0.113398, 1.494985, -0.394365, 0.310368, 0.069123], "tracked": true, "track_id": 1} +{"t": 36.185065, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004685, -0.028714, 0.075385, 0.726811, -0.648628, 1.402906, 0.587812, 0.510541, -0.288816, 0.408462, -0.35474, 0.109268, 1.494989, -0.394862, 0.310425, 0.067916], "tracked": true, "track_id": 1} +{"t": 36.247655, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004696, -0.028714, 0.072738, 0.729071, -0.65057, 1.402932, 0.588925, 0.510315, -0.289358, 0.407925, -0.351439, 0.100368, 1.494992, -0.392741, 0.308096, 0.064994], "tracked": true, "track_id": 1} +{"t": 36.317168, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005712, -0.028714, 0.076941, 0.728415, -0.650763, 1.402951, 0.590318, 0.510622, -0.289455, 0.399901, -0.351289, 0.097252, 1.494994, -0.391285, 0.297316, 0.062668], "tracked": true, "track_id": 1} +{"t": 36.381476, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005525, -0.028714, 0.070353, 0.732592, -0.65174, 1.402964, 0.591584, 0.510507, -0.289727, 0.398633, -0.351833, 0.09609, 1.494996, -0.392028, 0.298317, 0.062457], "tracked": true, "track_id": 1} +{"t": 36.442657, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005501, -0.028714, 0.0713, 0.732091, -0.652251, 1.402974, 0.591515, 0.51068, -0.2899, 0.402363, -0.350107, 0.093619, 1.494997, -0.39071, 0.303605, 0.062422], "tracked": true, "track_id": 1} +{"t": 36.479812, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005608, -0.028714, 0.068429, 0.734349, -0.652682, 1.402978, 0.592485, 0.510827, -0.290046, 0.402537, -0.348181, 0.090922, 1.494998, -0.389247, 0.298631, 0.060978], "tracked": true, "track_id": 1} +{"t": 36.544214, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005016, -0.028714, 0.069533, 0.732194, -0.652009, 1.402984, 0.590855, 0.511028, -0.289874, 0.407005, -0.348186, 0.095391, 1.494998, -0.390079, 0.297973, 0.062207], "tracked": true, "track_id": 1} +{"t": 36.578803, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005145, -0.028714, 0.071959, 0.731017, -0.652413, 1.402987, 0.590729, 0.511086, -0.290001, 0.40618, -0.347536, 0.095283, 1.494998, -0.38949, 0.292534, 0.061464], "tracked": true, "track_id": 1} +{"t": 36.613683, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005099, -0.028714, 0.07115, 0.731558, -0.652713, 1.402989, 0.590896, 0.511171, -0.2901, 0.40597, -0.34843, 0.096751, 1.494999, -0.390218, 0.294087, 0.062099], "tracked": true, "track_id": 1} +{"t": 36.677104, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004773, -0.028714, 0.066071, 0.734331, -0.65293, 1.402992, 0.591309, 0.51123, -0.290171, 0.406969, -0.351197, 0.106601, 1.494158, -0.392575, 0.290237, 0.064493], "tracked": true, "track_id": 1} +{"t": 36.743844, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004627, -0.028714, 0.064796, 0.734959, -0.653285, 1.402994, 0.591375, 0.511209, -0.290273, 0.40733, -0.353978, 0.113377, 1.494392, -0.394735, 0.293007, 0.066848], "tracked": true, "track_id": 1} +{"t": 36.808283, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005059, -0.028714, 0.070513, 0.732182, -0.653679, 1.402996, 0.591166, 0.510934, -0.290353, 0.407219, -0.352709, 0.113301, 1.49456, -0.39309, 0.287464, 0.066101], "tracked": true, "track_id": 1} +{"t": 36.87099, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004245, -0.028714, 0.086042, 0.718495, -0.647322, 1.402997, 0.58431, 0.510681, -0.28845, 0.419404, -0.351803, 0.116841, 1.494682, -0.39268, 0.303038, 0.069178], "tracked": true, "track_id": 1} +{"t": 36.906753, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003768, -0.028714, 0.092325, 0.712239, -0.643464, 1.402997, 0.580899, 0.510674, -0.287315, 0.423233, -0.353282, 0.122458, 1.49473, -0.394248, 0.308093, 0.071491], "tracked": true, "track_id": 1} +{"t": 36.971732, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003175, -0.028714, 0.100295, 0.704738, -0.639928, 1.402998, 0.57694, 0.510515, -0.286254, 0.431197, -0.354882, 0.129089, 1.494805, -0.395588, 0.322321, 0.075301], "tracked": true, "track_id": 1} +{"t": 37.007469, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002896, -0.028714, 0.101361, 0.703107, -0.638918, 1.402998, 0.575853, 0.510424, -0.285945, 0.435101, -0.354246, 0.129086, 1.494834, -0.395248, 0.327584, 0.075988], "tracked": true, "track_id": 1} +{"t": 37.041699, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002848, -0.028714, 0.100964, 0.702824, -0.638083, 1.402999, 0.575607, 0.509795, -0.285617, 0.435213, -0.354567, 0.131533, 1.494859, -0.395615, 0.324312, 0.07628], "tracked": true, "track_id": 1} +{"t": 37.103449, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002864, -0.028714, 0.106652, 0.699243, -0.638178, 1.402999, 0.57435, 0.509465, -0.285602, 0.438435, -0.354576, 0.131831, 1.494898, -0.395241, 0.332727, 0.077467], "tracked": true, "track_id": 1} +{"t": 37.137473, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002824, -0.028714, 0.11094, 0.696247, -0.637591, 1.402999, 0.573105, 0.509237, -0.285399, 0.438473, -0.357121, 0.13619, 1.494913, -0.397063, 0.339138, 0.079588], "tracked": true, "track_id": 1} +{"t": 37.173382, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002624, -0.028714, 0.113245, 0.694209, -0.637032, 1.402999, 0.57199, 0.509199, -0.28523, 0.440187, -0.357173, 0.136792, 1.494926, -0.397307, 0.341852, 0.080119], "tracked": true, "track_id": 1} +{"t": 37.23553, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00256, -0.028714, 0.116001, 0.692323, -0.636794, 1.402999, 0.571197, 0.509529, -0.285203, 0.444014, -0.355247, 0.134414, 1.494947, -0.395612, 0.344908, 0.079819], "tracked": true, "track_id": 1} +{"t": 37.299683, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002395, -0.028714, 0.115189, 0.692376, -0.636403, 1.403, 0.570978, 0.509819, -0.285126, 0.446984, -0.353676, 0.133495, 1.494962, -0.394509, 0.344222, 0.079459], "tracked": true, "track_id": 1} +{"t": 37.337129, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003016, -0.028714, 0.108773, 0.698598, -0.639082, 1.403, 0.574436, 0.509817, -0.285914, 0.441485, -0.351873, 0.126675, 1.494967, -0.392734, 0.336372, 0.076428], "tracked": true, "track_id": 1} +{"t": 37.400718, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003489, -0.028714, 0.115565, 0.696111, -0.641997, 1.399816, 0.574452, 0.508467, -0.286595, 0.433013, -0.356884, 0.134807, 1.494976, -0.395774, 0.327982, 0.077723], "tracked": true, "track_id": 1} +{"t": 37.470224, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004007, -0.028714, 0.099419, 0.708729, -0.645434, 1.4007, 0.580081, 0.509062, -0.287683, 0.425511, -0.354891, 0.126382, 1.494983, -0.394364, 0.3165, 0.073744], "tracked": true, "track_id": 1} +{"t": 37.533372, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004075, -0.028714, 0.091992, 0.714203, -0.647279, 1.401338, 0.582439, 0.509447, -0.288276, 0.419072, -0.355232, 0.124236, 1.494988, -0.395204, 0.305919, 0.07173], "tracked": true, "track_id": 1} +{"t": 37.603076, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003674, -0.028714, 0.074907, 0.725228, -0.649445, 1.401799, 0.585848, 0.509877, -0.28897, 0.417358, -0.351817, 0.108253, 1.494991, -0.394028, 0.313269, 0.067989], "tracked": true, "track_id": 1} +{"t": 37.665523, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003338, -0.028714, 0.058688, 0.735708, -0.651041, 1.402133, 0.588995, 0.510188, -0.28948, 0.415082, -0.351356, 0.101047, 1.494994, -0.394636, 0.318146, 0.066507], "tracked": true, "track_id": 1} +{"t": 37.729197, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003497, -0.028714, 0.056147, 0.737972, -0.652062, 1.402373, 0.590141, 0.509984, -0.289753, 0.41346, -0.349239, 0.091543, 1.494995, -0.393136, 0.322499, 0.064281], "tracked": true, "track_id": 1} +{"t": 37.76417, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003623, -0.028714, 0.050258, 0.742279, -0.652629, 1.402467, 0.591784, 0.509889, -0.289908, 0.412454, -0.347345, 0.086597, 1.494996, -0.391752, 0.319512, 0.062436], "tracked": true, "track_id": 1} +{"t": 37.82693, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00335, -0.028714, 0.045895, 0.74466, -0.653105, 1.402615, 0.592297, 0.509993, -0.290061, 0.411241, -0.349517, 0.087887, 1.494997, -0.393871, 0.325408, 0.063586], "tracked": true, "track_id": 1} +{"t": 37.895601, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003408, -0.028714, 0.036822, 0.750976, -0.65383, 1.402722, 0.594466, 0.509739, -0.290241, 0.412462, -0.346782, 0.080718, 1.494998, -0.39189, 0.328138, 0.061834], "tracked": true, "track_id": 1} +{"t": 37.960677, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003453, -0.028714, 0.03403, 0.753077, -0.654419, 1.402799, 0.595327, 0.509801, -0.290423, 0.420396, -0.339314, 0.066822, 1.494999, -0.385968, 0.334309, 0.058554], "tracked": true, "track_id": 1} +{"t": 38.02992, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003746, -0.028714, 0.020318, 0.763089, -0.654645, 1.402855, 0.598766, 0.510186, -0.290539, 0.427472, -0.333739, 0.058434, 1.494999, -0.38082, 0.338797, 0.056674], "tracked": true, "track_id": 1} +{"t": 38.094094, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004387, -0.028714, 0.011378, 0.770607, -0.654712, 1.402895, 0.601904, 0.510583, -0.290611, 0.431728, -0.329236, 0.05399, 1.494999, -0.375992, 0.335326, 0.054913], "tracked": true, "track_id": 1} +{"t": 38.155865, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005028, -0.028714, -0.000977, 0.780511, -0.655013, 1.399676, 0.605628, 0.510364, -0.290671, 0.428871, -0.33002, 0.056211, 1.494999, -0.375657, 0.331472, 0.055062], "tracked": true, "track_id": 1} +{"t": 38.191995, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005333, -0.028714, -0.009401, 0.787034, -0.655295, 1.394587, 0.607822, 0.50983, -0.290684, 0.429071, -0.329804, 0.058256, 1.495, -0.374904, 0.327812, 0.055185], "tracked": true, "track_id": 1} +{"t": 38.225778, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005797, -0.028714, -0.014343, 0.791474, -0.656083, 1.386299, 0.609705, 0.508213, -0.290704, 0.427338, -0.329453, 0.057155, 1.495, -0.373971, 0.326041, 0.05463], "tracked": true, "track_id": 1} +{"t": 38.290649, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006263, -0.028714, -0.013219, 0.791468, -0.656393, 1.377829, 0.610341, 0.506207, -0.290533, 0.431613, -0.328203, 0.056807, 1.495, -0.371245, 0.331666, 0.055263], "tracked": true, "track_id": 1} +{"t": 38.328072, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006353, -0.028714, -0.007747, 0.78751, -0.655598, 1.37668, 0.609285, 0.505735, -0.290238, 0.438669, -0.325204, 0.054402, 1.495, -0.367769, 0.336249, 0.055155], "tracked": true, "track_id": 1} +{"t": 38.387104, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006763, -0.028714, -0.023313, 0.799498, -0.657557, 1.361477, 0.613081, 0.502721, -0.29042, 0.429818, -0.331222, 0.064372, 1.495, -0.372218, 0.331019, 0.057403], "tracked": true, "track_id": 1} +{"t": 38.455182, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007065, -0.028714, -0.027673, 0.802909, -0.657086, 1.358405, 0.61438, 0.502389, -0.290238, 0.433578, -0.328531, 0.064238, 1.495, -0.369354, 0.32606, 0.056716], "tracked": true, "track_id": 1} +{"t": 38.519013, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007533, -0.028714, -0.024378, 0.801766, -0.657371, 1.357607, 0.614687, 0.502098, -0.290284, 0.437677, -0.324063, 0.058637, 1.493791, -0.364473, 0.322447, 0.054596], "tracked": true, "track_id": 1} +{"t": 38.552774, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007506, -0.028714, -0.013419, 0.793771, -0.655804, 1.364416, 0.612318, 0.503134, -0.289958, 0.443577, -0.321663, 0.055304, 1.493972, -0.361893, 0.329469, 0.054534], "tracked": true, "track_id": 1} +{"t": 38.59025, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007799, -0.028714, -0.020226, 0.7993, -0.656224, 1.362406, 0.614245, 0.503199, -0.290091, 0.440588, -0.32047, 0.050631, 1.494126, -0.361108, 0.326687, 0.052796], "tracked": true, "track_id": 1} +{"t": 38.653947, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007362, -0.028714, -0.013941, 0.793697, -0.654841, 1.371832, 0.612146, 0.50499, -0.289918, 0.443555, -0.31835, 0.043423, 1.494369, -0.360177, 0.334857, 0.051744], "tracked": true, "track_id": 1} +{"t": 38.717623, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00743, -0.028714, -0.002961, 0.786422, -0.655176, 1.376789, 0.610352, 0.505315, -0.290059, 0.440541, -0.318906, 0.04026, 1.494544, -0.361125, 0.338855, 0.051336], "tracked": true, "track_id": 1} +{"t": 38.752234, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007147, -0.028714, -0.005362, 0.787554, -0.655189, 1.38072, 0.610379, 0.506252, -0.290185, 0.439355, -0.318706, 0.037009, 1.494612, -0.361873, 0.340605, 0.050609], "tracked": true, "track_id": 1} +{"t": 38.816216, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007082, -0.028714, 0.000408, 0.783502, -0.654993, 1.386903, 0.609317, 0.507571, -0.2903, 0.440445, -0.314636, 0.025865, 1.49472, -0.359286, 0.342718, 0.047607], "tracked": true, "track_id": 1} +{"t": 38.886601, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006693, -0.028714, -0.001272, 0.78384, -0.65482, 1.39137, 0.608952, 0.508487, -0.290369, 0.437833, -0.316561, 0.027427, 1.494798, -0.361892, 0.342891, 0.048089], "tracked": true, "track_id": 1} +{"t": 38.951012, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006528, -0.028714, 0.003259, 0.78024, -0.654178, 1.394597, 0.607705, 0.509212, -0.290275, 0.436382, -0.316698, 0.025706, 1.494854, -0.362629, 0.343183, 0.047621], "tracked": true, "track_id": 1} +{"t": 39.016092, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006433, -0.028714, 0.015175, 0.771884, -0.653867, 1.396929, 0.60516, 0.509557, -0.290229, 0.439035, -0.314455, 0.020641, 1.494894, -0.360993, 0.34694, 0.046622], "tracked": true, "track_id": 1} +{"t": 39.081452, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006236, -0.028714, 0.010683, 0.77415, -0.652785, 1.398614, 0.605454, 0.509961, -0.289963, 0.437348, -0.315081, 0.021002, 1.494924, -0.362136, 0.344826, 0.046452], "tracked": true, "track_id": 1} +{"t": 39.142773, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005894, -0.028714, 0.008108, 0.775136, -0.652824, 1.399831, 0.605283, 0.509922, -0.289969, 0.437759, -0.314763, 0.019813, 1.494945, -0.362635, 0.344956, 0.04612], "tracked": true, "track_id": 1} +{"t": 39.179027, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005957, -0.028714, 0.010548, 0.773617, -0.652818, 1.400306, 0.604966, 0.510063, -0.289986, 0.439114, -0.313416, 0.016962, 1.494953, -0.361411, 0.346713, 0.045511], "tracked": true, "track_id": 1} +{"t": 39.242975, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00644, -0.028714, 0.016394, 0.770647, -0.65256, 1.401054, 0.604803, 0.510507, -0.289968, 0.438003, -0.31289, 0.015201, 1.494966, -0.360246, 0.347022, 0.045033], "tracked": true, "track_id": 1} +{"t": 39.312692, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006675, -0.028714, 0.02745, 0.763932, -0.653147, 1.401594, 0.603275, 0.510808, -0.29018, 0.436965, -0.308751, 0.005232, 1.494976, -0.357163, 0.341612, 0.041394], "tracked": true, "track_id": 1} +{"t": 39.346185, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007167, -0.028714, 0.043876, 0.754052, -0.653043, 1.401805, 0.600778, 0.51054, -0.290115, 0.43215, -0.314517, 0.019639, 1.494979, -0.360608, 0.335821, 0.044874], "tracked": true, "track_id": 1} +{"t": 39.408998, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007075, -0.028714, 0.044129, 0.753789, -0.653533, 1.402136, 0.60073, 0.510621, -0.290269, 0.441679, -0.313176, 0.024393, 1.494985, -0.358108, 0.339977, 0.046816], "tracked": true, "track_id": 1} +{"t": 39.445954, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006914, -0.028714, 0.05553, 0.745514, -0.651975, 1.402266, 0.597598, 0.510771, -0.289831, 0.44895, -0.311659, 0.028062, 1.494987, -0.355905, 0.33905, 0.047774], "tracked": true, "track_id": 1} +{"t": 39.508371, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007056, -0.028714, 0.062627, 0.74131, -0.652787, 1.40247, 0.596634, 0.510542, -0.29004, 0.453204, -0.309383, 0.026821, 1.494991, -0.353276, 0.338615, 0.047352], "tracked": true, "track_id": 1} +{"t": 39.571102, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006829, -0.028714, 0.073825, 0.73316, -0.651846, 1.402617, 0.593577, 0.510518, -0.28976, 0.464551, -0.307428, 0.030026, 1.494993, -0.349915, 0.345181, 0.049153], "tracked": true, "track_id": 1} +{"t": 39.606892, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007126, -0.028714, 0.068709, 0.737138, -0.65213, 1.401813, 0.595322, 0.51014, -0.289794, 0.460455, -0.30856, 0.030104, 1.494994, -0.350958, 0.343881, 0.049006], "tracked": true, "track_id": 1} +{"t": 39.671979, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007092, -0.028714, 0.074096, 0.733418, -0.651761, 1.402143, 0.594022, 0.510164, -0.289688, 0.464546, -0.304416, 0.027273, 1.494996, -0.347398, 0.333705, 0.046843], "tracked": true, "track_id": 1} +{"t": 39.707471, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007324, -0.028714, 0.066718, 0.738909, -0.652194, 1.402271, 0.596147, 0.510155, -0.289814, 0.463975, -0.302512, 0.024868, 1.494622, -0.345889, 0.327024, 0.045262], "tracked": true, "track_id": 1} +{"t": 39.770631, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008246, -0.028714, 0.057642, 0.746549, -0.651787, 1.402178, 0.599857, 0.510008, -0.289675, 0.458489, -0.297019, 0.013629, 1.48969, -0.341547, 0.308927, 0.039591], "tracked": true, "track_id": 1} +{"t": 39.836718, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008803, -0.028714, 0.052759, 0.750642, -0.651158, 1.402406, 0.601941, 0.510177, -0.289513, 0.452152, -0.293188, 0.004782, 1.483914, -0.339145, 0.291867, 0.034759], "tracked": true, "track_id": 1} +{"t": 39.872762, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008925, -0.028714, 0.047177, 0.754654, -0.651208, 1.402495, 0.603337, 0.510226, -0.289534, 0.45139, -0.292374, 0.006752, 1.477565, -0.338569, 0.28114, 0.033936], "tracked": true, "track_id": 1} +{"t": 39.935098, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009561, -0.028714, 0.04579, 0.756759, -0.650979, 1.402635, 0.604934, 0.510489, -0.289501, 0.450394, -0.287585, 0.006695, 1.457615, -0.334314, 0.251694, 0.03007], "tracked": true, "track_id": 1} +{"t": 39.968544, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009252, -0.028714, 0.039829, 0.760258, -0.651242, 1.40269, 0.605574, 0.510648, -0.289599, 0.449367, -0.288474, 0.008639, 1.457052, -0.335813, 0.248977, 0.030287], "tracked": true, "track_id": 1} +{"t": 40.036973, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009244, -0.028714, 0.026007, 0.769279, -0.650048, 1.402776, 0.60797, 0.510883, -0.289278, 0.447452, -0.288876, 0.017439, 1.442421, -0.336525, 0.227089, 0.030014], "tracked": true, "track_id": 1} +{"t": 40.101692, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009479, -0.028714, 0.022946, 0.771646, -0.649614, 1.402838, 0.608997, 0.511035, -0.289171, 0.445913, -0.286592, 0.019733, 1.427068, -0.334846, 0.204937, 0.027793], "tracked": true, "track_id": 1} +{"t": 40.16678, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009634, -0.028714, 0.017384, 0.775382, -0.648524, 1.402883, 0.610164, 0.511204, -0.288872, 0.442012, -0.286443, 0.028855, 1.406366, -0.33512, 0.174495, 0.026497], "tracked": true, "track_id": 1} +{"t": 40.201079, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00977, -0.028714, 0.029882, 0.767428, -0.649074, 1.402901, 0.608045, 0.511004, -0.289008, 0.440656, -0.288625, 0.045361, 1.387794, -0.336538, 0.148612, 0.027968], "tracked": true, "track_id": 1} +{"t": 40.235286, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009776, -0.028714, 0.01919, 0.774631, -0.648448, 1.402916, 0.609912, 0.511106, -0.288837, 0.439422, -0.287084, 0.044382, 1.380462, -0.335721, 0.137928, 0.026283], "tracked": true, "track_id": 1} +{"t": 40.302982, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009392, -0.028714, 0.005542, 0.783029, -0.647927, 1.402939, 0.611645, 0.511265, -0.288705, 0.435441, -0.288432, 0.053384, 1.364474, -0.338059, 0.11393, 0.025794], "tracked": true, "track_id": 1} +{"t": 40.365463, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00927, -0.028714, -0.01098, 0.794044, -0.64726, 1.402956, 0.614286, 0.511376, -0.288523, 0.432574, -0.287452, 0.059625, 1.344762, -0.338126, 0.085636, 0.023931], "tracked": true, "track_id": 1} +{"t": 40.427903, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009374, -0.028714, -0.017508, 0.798157, -0.645555, 1.402968, 0.615337, 0.511453, -0.288031, 0.435444, -0.282924, 0.057696, 1.331232, -0.334458, 0.069085, 0.0212], "tracked": true, "track_id": 1} +{"t": 40.466779, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009185, -0.028714, -0.019312, 0.799069, -0.645825, 1.402973, 0.615394, 0.511487, -0.288115, 0.436515, -0.28154, 0.059878, 1.321902, -0.333783, 0.057168, 0.020284], "tracked": true, "track_id": 1} +{"t": 40.528596, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009474, -0.028714, -0.020955, 0.80097, -0.646184, 1.40298, 0.616345, 0.511533, -0.288227, 0.438362, -0.280241, 0.070183, 1.30207, -0.331962, 0.031754, 0.019993], "tracked": true, "track_id": 1} +{"t": 40.596426, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010504, -0.028714, -0.023762, 0.804098, -0.643457, 1.402986, 0.618189, 0.511457, -0.287415, 0.436523, -0.275739, 0.074863, 1.27389, -0.327111, -0.006429, 0.016378], "tracked": true, "track_id": 1} +{"t": 40.659287, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011955, -0.028714, -0.022251, 0.805155, -0.641048, 1.40299, 0.620113, 0.511426, -0.286702, 0.432454, -0.272001, 0.076886, 1.252506, -0.322243, -0.036786, 0.013005], "tracked": true, "track_id": 1} +{"t": 40.692735, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012205, -0.028714, -0.02786, 0.809262, -0.639872, 1.402991, 0.621269, 0.511436, -0.286358, 0.430949, -0.273087, 0.088418, 1.236163, -0.32269, -0.058227, 0.013594], "tracked": true, "track_id": 1} +{"t": 40.727779, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012546, -0.028714, -0.027648, 0.809301, -0.638437, 1.402993, 0.621565, 0.511463, -0.285939, 0.430884, -0.27351, 0.100296, 1.218113, -0.322272, -0.080545, 0.01417], "tracked": true, "track_id": 1} +{"t": 40.763191, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012994, -0.028714, -0.025796, 0.808912, -0.638512, 1.402994, 0.622123, 0.511417, -0.285955, 0.431352, -0.273435, 0.107418, 1.207866, -0.321195, -0.093449, 0.014578], "tracked": true, "track_id": 1} +{"t": 40.825753, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.013878, -0.028714, -0.023966, 0.808793, -0.636931, 1.401434, 0.623089, 0.511146, -0.285455, 0.427492, -0.272131, 0.117741, 1.179687, -0.319095, -0.129508, 0.012901], "tracked": true, "track_id": 1} +{"t": 40.861467, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014065, -0.028714, -0.024069, 0.809263, -0.637031, 1.400784, 0.623481, 0.51102, -0.285468, 0.431059, -0.270467, 0.122568, 1.16835, -0.316909, -0.141519, 0.01275], "tracked": true, "track_id": 1} +{"t": 40.894835, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014249, -0.028714, -0.020022, 0.807007, -0.637676, 1.401116, 0.623299, 0.511066, -0.285664, 0.433171, -0.268598, 0.125232, 1.157616, -0.314889, -0.153377, 0.011984], "tracked": true, "track_id": 1} +{"t": 40.956753, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015029, -0.028714, -0.012318, 0.80327, -0.638158, 1.401639, 0.623545, 0.510943, -0.285789, 0.437343, -0.2615, 0.120575, 1.138299, -0.307667, -0.174184, 0.007894], "tracked": true, "track_id": 1} +{"t": 41.023296, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015807, -0.028714, -0.006441, 0.800555, -0.637934, 1.401774, 0.623932, 0.510833, -0.285709, 0.443749, -0.25248, 0.109068, 1.124557, -0.298548, -0.187302, 0.002795], "tracked": true, "track_id": 1} +{"t": 41.088362, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016438, -0.028714, 0.003521, 0.794711, -0.63773, 1.402114, 0.623337, 0.510855, -0.285652, 0.455729, -0.242911, 0.099143, 1.109931, -0.28753, -0.197798, -0.001496], "tracked": true, "track_id": 1} +{"t": 41.156898, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017248, -0.028714, 0.012358, 0.789049, -0.635153, 1.401367, 0.622631, 0.510202, -0.284809, 0.459966, -0.234295, 0.083974, 1.101538, -0.278915, -0.205407, -0.006952], "tracked": true, "track_id": 1} +{"t": 41.190631, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017696, -0.028714, 0.010337, 0.790326, -0.632426, 1.399187, 0.623126, 0.509881, -0.283964, 0.458199, -0.231425, 0.077571, 1.09804, -0.276556, -0.210384, -0.009486], "tracked": true, "track_id": 1} +{"t": 41.252299, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018306, -0.028714, 0.010728, 0.790032, -0.629083, 1.399752, 0.623407, 0.509828, -0.282975, 0.460504, -0.226729, 0.073105, 1.086368, -0.271594, -0.221984, -0.012316], "tracked": true, "track_id": 1} +{"t": 41.289878, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018539, -0.028714, 0.013817, 0.788039, -0.628275, 1.400239, 0.623134, 0.509986, -0.282757, 0.462611, -0.225577, 0.074111, 1.081726, -0.269773, -0.226004, -0.012546], "tracked": true, "track_id": 1} +{"t": 41.352, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018914, -0.028714, 0.022155, 0.782695, -0.627711, 1.400924, 0.622165, 0.509658, -0.282549, 0.467199, -0.22084, 0.068535, 1.073633, -0.264535, -0.232413, -0.015023], "tracked": true, "track_id": 1} +{"t": 41.414663, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018978, -0.028714, 0.024089, 0.781455, -0.627762, 1.401128, 0.621964, 0.509549, -0.282549, 0.469412, -0.218704, 0.066828, 1.068374, -0.262446, -0.237045, -0.016131], "tracked": true, "track_id": 1} +{"t": 41.450649, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019041, -0.028714, 0.027921, 0.778722, -0.62738, 1.400983, 0.621296, 0.509322, -0.282407, 0.470621, -0.218324, 0.070445, 1.059872, -0.261734, -0.244767, -0.016077], "tracked": true, "track_id": 1} +{"t": 41.516124, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019066, -0.028714, 0.036375, 0.772202, -0.625708, 1.400383, 0.619383, 0.508781, -0.281845, 0.476146, -0.21401, 0.066124, 1.050225, -0.257091, -0.251682, -0.018252], "tracked": true, "track_id": 1} +{"t": 41.55019, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019238, -0.028714, 0.040461, 0.769488, -0.625183, 1.400775, 0.618853, 0.508795, -0.281692, 0.479852, -0.211306, 0.06296, 1.045752, -0.253605, -0.2543, -0.019524], "tracked": true, "track_id": 1} +{"t": 41.586289, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019392, -0.028714, 0.041465, 0.768384, -0.623149, 1.401109, 0.618523, 0.509064, -0.281129, 0.482358, -0.209568, 0.062003, 1.04083, -0.251254, -0.2579, -0.020276], "tracked": true, "track_id": 1} +{"t": 41.649607, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019588, -0.028714, 0.030699, 0.77595, -0.621978, 1.400771, 0.620506, 0.509292, -0.280815, 0.481383, -0.208022, 0.060349, 1.03451, -0.250201, -0.264633, -0.021643], "tracked": true, "track_id": 1} +{"t": 41.715479, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018992, -0.028714, 0.022889, 0.780982, -0.623783, 1.40139, 0.62127, 0.509784, -0.28141, 0.486451, -0.20696, 0.061933, 1.0288, -0.249211, -0.267648, -0.021571], "tracked": true, "track_id": 1} +{"t": 41.779705, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018401, -0.028714, 0.008577, 0.789916, -0.62342, 1.401836, 0.622596, 0.510215, -0.281359, 0.491644, -0.205162, 0.061661, 1.022387, -0.247609, -0.271149, -0.022109], "tracked": true, "track_id": 1} +{"t": 41.843441, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018102, -0.028714, 0.007437, 0.790458, -0.624303, 1.402159, 0.622489, 0.510409, -0.281644, 0.490695, -0.203202, 0.054413, 1.024256, -0.24746, -0.270045, -0.024096], "tracked": true, "track_id": 1} +{"t": 41.878773, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017754, -0.028714, 0.005164, 0.791363, -0.624257, 1.402285, 0.622249, 0.51046, -0.281638, 0.491528, -0.203479, 0.055907, 1.022571, -0.248236, -0.271294, -0.02382], "tracked": true, "track_id": 1} +{"t": 41.945992, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016996, -0.028714, 0.007311, 0.788952, -0.62591, 1.402484, 0.620878, 0.510563, -0.282137, 0.496251, -0.201307, 0.04894, 1.027907, -0.246861, -0.263656, -0.024871], "tracked": true, "track_id": 1} +{"t": 42.013837, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016433, -0.028714, 0.014769, 0.783951, -0.629968, 1.400322, 0.619367, 0.509798, -0.283231, 0.500826, -0.202266, 0.053492, 1.027633, -0.247089, -0.261505, -0.023251], "tracked": true, "track_id": 1} +{"t": 42.078382, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016257, -0.028714, 0.016847, 0.783497, -0.634134, 1.396951, 0.6196, 0.509076, -0.284362, 0.506088, -0.202882, 0.059029, 1.024534, -0.245782, -0.261583, -0.021632], "tracked": true, "track_id": 1} +{"t": 42.144735, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015752, -0.028714, 0.015125, 0.785004, -0.638438, 1.389718, 0.619837, 0.507687, -0.285446, 0.511418, -0.203362, 0.062806, 1.023556, -0.245077, -0.259529, -0.020253], "tracked": true, "track_id": 1} +{"t": 42.210042, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015829, -0.028714, 0.011526, 0.788494, -0.641676, 1.379992, 0.621183, 0.505626, -0.286129, 0.514513, -0.202479, 0.060107, 1.027711, -0.242995, -0.253667, -0.02028], "tracked": true, "track_id": 1} +{"t": 42.272748, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015831, -0.028714, 0.005075, 0.79396, -0.645399, 1.368843, 0.622923, 0.503072, -0.28689, 0.515279, -0.204936, 0.068956, 1.02437, -0.244387, -0.256503, -0.018049], "tracked": true, "track_id": 1} +{"t": 42.307076, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015697, -0.028714, 0.004571, 0.794535, -0.64787, 1.361336, 0.623099, 0.50066, -0.287301, 0.514356, -0.206627, 0.073234, 1.024266, -0.246298, -0.257244, -0.016887], "tracked": true, "track_id": 1} +{"t": 42.372957, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015342, -0.028714, 0.000773, 0.797258, -0.651518, 1.349854, 0.623622, 0.497344, -0.287941, 0.511513, -0.211171, 0.08281, 1.027603, -0.251478, -0.255718, -0.013871], "tracked": true, "track_id": 1} +{"t": 42.441233, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015441, -0.028714, -0.00238, 0.800104, -0.654105, 1.339856, 0.624647, 0.494245, -0.288297, 0.509075, -0.212353, 0.080848, 1.037149, -0.253093, -0.247565, -0.013383], "tracked": true, "track_id": 1} +{"t": 42.504428, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015417, -0.028714, -0.014285, 0.808761, -0.655688, 1.33045, 0.626765, 0.492135, -0.288487, 0.508842, -0.212, 0.075124, 1.04725, -0.253072, -0.237293, -0.013724], "tracked": true, "track_id": 1} +{"t": 42.572117, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015591, -0.028714, -0.016913, 0.811248, -0.657393, 1.324114, 0.627742, 0.49013, -0.288726, 0.50528, -0.211742, 0.067845, 1.05789, -0.253883, -0.228295, -0.014688], "tracked": true, "track_id": 1} +{"t": 42.64237, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014486, -0.028714, -0.007466, 0.803077, -0.65859, 1.330479, 0.624434, 0.491898, -0.289309, 0.51231, -0.216103, 0.086035, 1.049482, -0.25644, -0.232576, -0.009898], "tracked": true, "track_id": 1} +{"t": 42.700099, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014105, -0.028714, -0.00399, 0.800198, -0.659548, 1.331092, 0.623329, 0.491957, -0.289598, 0.514788, -0.216194, 0.086948, 1.049774, -0.256338, -0.230841, -0.009402], "tracked": true, "track_id": 1} +{"t": 42.737325, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014461, -0.028714, -0.008666, 0.804175, -0.659424, 1.329462, 0.624767, 0.491898, -0.289554, 0.512485, -0.215384, 0.08253, 1.053065, -0.255921, -0.228926, -0.010451], "tracked": true, "track_id": 1} +{"t": 42.771276, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014939, -0.028714, -0.013732, 0.80875, -0.659623, 1.326944, 0.626511, 0.491498, -0.289561, 0.507348, -0.217228, 0.084709, 1.055203, -0.257928, -0.2298, -0.009925], "tracked": true, "track_id": 1} +{"t": 42.831624, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015294, -0.028714, -0.005294, 0.803731, -0.660359, 1.328778, 0.625932, 0.491495, -0.289777, 0.50432, -0.220222, 0.095042, 1.048976, -0.26039, -0.238084, -0.007969], "tracked": true, "track_id": 1} +{"t": 42.871287, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015565, -0.028714, 0.002417, 0.798857, -0.66001, 1.332836, 0.62509, 0.492303, -0.28978, 0.505456, -0.219414, 0.094446, 1.047515, -0.25877, -0.239036, -0.008268], "tracked": true, "track_id": 1} +{"t": 42.933038, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016309, -0.028714, 0.007189, 0.796585, -0.658005, 1.34114, 0.625474, 0.494754, -0.28951, 0.50292, -0.21938, 0.096467, 1.042518, -0.257993, -0.245628, -0.008536], "tracked": true, "track_id": 1} +{"t": 42.998951, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017004, -0.028714, 0.017689, 0.790004, -0.655299, 1.352148, 0.624581, 0.497372, -0.289057, 0.500061, -0.218656, 0.096614, 1.036538, -0.256985, -0.253127, -0.009472], "tracked": true, "track_id": 1} +{"t": 43.062864, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017207, -0.028714, 0.038274, 0.776192, -0.654187, 1.365366, 0.621109, 0.49968, -0.289031, 0.5017, -0.214352, 0.086082, 1.035547, -0.252998, -0.253397, -0.012606], "tracked": true, "track_id": 1} +{"t": 43.097851, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017527, -0.028714, 0.044129, 0.772411, -0.652729, 1.371011, 0.620463, 0.501022, -0.288778, 0.500294, -0.21343, 0.082965, 1.036261, -0.252167, -0.253566, -0.013545], "tracked": true, "track_id": 1} +{"t": 43.131194, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017792, -0.028714, 0.059109, 0.762683, -0.651977, 1.375809, 0.617962, 0.502143, -0.288703, 0.501137, -0.210344, 0.071963, 1.04294, -0.249139, -0.246151, -0.015811], "tracked": true, "track_id": 1} +{"t": 43.165398, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018093, -0.028714, 0.065575, 0.758078, -0.649687, 1.379888, 0.616893, 0.502926, -0.288132, 0.493365, -0.211361, 0.069005, 1.046377, -0.251549, -0.246812, -0.016768], "tracked": true, "track_id": 1} +{"t": 43.23112, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018517, -0.028714, 0.086573, 0.743645, -0.64592, 1.386301, 0.612891, 0.504913, -0.287284, 0.487987, -0.211632, 0.06688, 1.047861, -0.252654, -0.248426, -0.017603], "tracked": true, "track_id": 1} +{"t": 43.295629, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018917, -0.028714, 0.102267, 0.732795, -0.64221, 1.390935, 0.60982, 0.506661, -0.286421, 0.486053, -0.207436, 0.05261, 1.052518, -0.24964, -0.244923, -0.021343], "tracked": true, "track_id": 1} +{"t": 43.358559, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019048, -0.028714, 0.118081, 0.721887, -0.640046, 1.394283, 0.606457, 0.507829, -0.285937, 0.485932, -0.205511, 0.048084, 1.051257, -0.248237, -0.24636, -0.022862], "tracked": true, "track_id": 1} +{"t": 43.391955, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01905, -0.028714, 0.127982, 0.715681, -0.640583, 1.395591, 0.604513, 0.508335, -0.286162, 0.488076, -0.205072, 0.047707, 1.052103, -0.24721, -0.244399, -0.022716], "tracked": true, "track_id": 1} +{"t": 43.428858, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019081, -0.028714, 0.134513, 0.711465, -0.640614, 1.396702, 0.603245, 0.508589, -0.286204, 0.491233, -0.203482, 0.044756, 1.05249, -0.244894, -0.242273, -0.023306], "tracked": true, "track_id": 1} +{"t": 43.495337, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019233, -0.028714, 0.130752, 0.713125, -0.637435, 1.39845, 0.603736, 0.509303, -0.285362, 0.482452, -0.208229, 0.051142, 1.05657, -0.250437, -0.242735, -0.021488], "tracked": true, "track_id": 1} +{"t": 43.557564, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019373, -0.028714, 0.130839, 0.712957, -0.636631, 1.399712, 0.603857, 0.509252, -0.285119, 0.479605, -0.209983, 0.052711, 1.061041, -0.252238, -0.239749, -0.020637], "tracked": true, "track_id": 1} +{"t": 43.595337, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019588, -0.028714, 0.125685, 0.715967, -0.634774, 1.400206, 0.604917, 0.508823, -0.284517, 0.476628, -0.2108, 0.053094, 1.062378, -0.253269, -0.240007, -0.020558], "tracked": true, "track_id": 1} +{"t": 43.658855, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019663, -0.028714, 0.122007, 0.719343, -0.637506, 1.400981, 0.606528, 0.508484, -0.285276, 0.478443, -0.214157, 0.066564, 1.056864, -0.254924, -0.244767, -0.017218], "tracked": true, "track_id": 1} +{"t": 43.724524, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020081, -0.028714, 0.110471, 0.728315, -0.639755, 1.397332, 0.610119, 0.50713, -0.28576, 0.474174, -0.218204, 0.076426, 1.05669, -0.25806, -0.247228, -0.014639], "tracked": true, "track_id": 1} +{"t": 43.789505, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019763, -0.028714, 0.093788, 0.739983, -0.642796, 1.393093, 0.613424, 0.506322, -0.286549, 0.475528, -0.221165, 0.083876, 1.059457, -0.260429, -0.243786, -0.011998], "tracked": true, "track_id": 1} +{"t": 43.856902, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019498, -0.028714, 0.08242, 0.748084, -0.645781, 1.388934, 0.615784, 0.505418, -0.287309, 0.478875, -0.222813, 0.090895, 1.057856, -0.261129, -0.243704, -0.009923], "tracked": true, "track_id": 1} +{"t": 43.92215, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01978, -0.028714, 0.07181, 0.75635, -0.648065, 1.381654, 0.618736, 0.503719, -0.287759, 0.477877, -0.225599, 0.099603, 1.056112, -0.262708, -0.246059, -0.00767], "tracked": true, "track_id": 1} +{"t": 43.985489, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019931, -0.028714, 0.063702, 0.762731, -0.650656, 1.373846, 0.620993, 0.501689, -0.288255, 0.47891, -0.227637, 0.107888, 1.052496, -0.263434, -0.249018, -0.00562], "tracked": true, "track_id": 1} +{"t": 44.019757, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019807, -0.028714, 0.059749, 0.765567, -0.652459, 1.368087, 0.621761, 0.499948, -0.288558, 0.480963, -0.228547, 0.11251, 1.050186, -0.263661, -0.250295, -0.004427], "tracked": true, "track_id": 1} +{"t": 44.08505, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.0201, -0.028714, 0.052756, 0.771249, -0.655113, 1.356483, 0.623859, 0.496197, -0.288848, 0.478247, -0.231468, 0.120337, 1.048869, -0.265825, -0.253059, -0.002486], "tracked": true, "track_id": 1} +{"t": 44.154593, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020843, -0.028714, 0.049959, 0.774463, -0.656247, 1.348772, 0.625766, 0.493527, -0.288833, 0.47287, -0.232814, 0.1212, 1.051381, -0.266622, -0.253276, -0.002261], "tracked": true, "track_id": 1} +{"t": 44.21826, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021526, -0.028714, 0.044237, 0.779834, -0.657875, 1.34084, 0.628177, 0.49097, -0.288977, 0.467588, -0.23286, 0.118354, 1.053712, -0.266624, -0.253597, -0.00314], "tracked": true, "track_id": 1} +{"t": 44.284975, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.022056, -0.028714, 0.038878, 0.784972, -0.661115, 1.329636, 0.630407, 0.486534, -0.289351, 0.46648, -0.230103, 0.110742, 1.054079, -0.26391, -0.253689, -0.005391], "tracked": true, "track_id": 1} +{"t": 44.349049, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.023076, -0.028714, 0.012529, 0.805803, -0.667232, 1.299147, 0.636291, 0.47273, -0.289345, 0.457576, -0.223807, 0.085069, 1.06332, -0.259709, -0.24864, -0.012282], "tracked": true, "track_id": 1} +{"t": 44.415429, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.023883, -0.028714, -3.4e-05, 0.816557, -0.67487, 1.272033, 0.639911, 0.457429, -0.289592, 0.443278, -0.224163, 0.073888, 1.071508, -0.261389, -0.246904, -0.015343], "tracked": true, "track_id": 1} +{"t": 44.449649, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.023866, -0.028714, -0.008909, 0.823038, -0.68159, 1.251353, 0.641402, 0.443184, -0.289706, 0.438741, -0.224429, 0.069866, 1.074548, -0.262655, -0.245945, -0.016401], "tracked": true, "track_id": 1} +{"t": 44.48324, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.024122, -0.028714, -0.008649, 0.823404, -0.686546, 1.237746, 0.641981, 0.433032, -0.289837, 0.434513, -0.22427, 0.066115, 1.076469, -0.262965, -0.24596, -0.017506], "tracked": true, "track_id": 1} +{"t": 44.546711, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.023979, -0.028714, -0.009861, 0.822962, -0.699056, 1.198482, 0.641367, 0.398708, -0.289029, 0.421042, -0.229361, 0.067048, 1.080988, -0.269162, -0.247231, -0.017398], "tracked": true, "track_id": 1} +{"t": 44.583009, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.023514, -0.028714, -0.006568, 0.817702, -0.708126, 1.167943, 0.638746, 0.365557, -0.287363, 0.412046, -0.235545, 0.074246, 1.082734, -0.275545, -0.249155, -0.015532], "tracked": true, "track_id": 1} +{"t": 44.644215, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.022525, -0.028714, 0.022568, 0.786281, -0.726067, 1.090829, 0.625571, 0.265831, -0.279604, 0.400432, -0.242943, 0.077638, 1.092317, -0.284322, -0.244295, -0.013899], "tracked": true, "track_id": 1} +{"t": 44.711636, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021877, -0.028714, 0.055662, 0.750671, -0.740662, 1.010741, 0.610369, 0.15823, -0.269831, 0.393608, -0.251068, 0.09374, 1.090447, -0.292255, -0.249045, -0.009784], "tracked": true, "track_id": 1} +{"t": 44.776447, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021514, -0.028714, 0.097279, 0.705094, -0.744425, 0.921762, 0.589811, 0.040544, -0.255554, 0.386943, -0.259028, 0.108883, 1.091032, -0.299248, -0.25116, -0.005607], "tracked": true, "track_id": 1} +{"t": 44.845927, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.022051, -0.028714, 0.151015, 0.652583, -0.735261, 0.852365, 0.565995, -0.059213, -0.239819, 0.384878, -0.258089, 0.104357, 1.095873, -0.29809, -0.247122, -0.00641], "tracked": true, "track_id": 1} +{"t": 44.90852, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.022454, -0.028714, 0.215128, 0.591679, -0.70688, 0.803947, 0.53395, -0.142722, -0.220555, 0.381102, -0.258604, 0.103663, 1.096329, -0.29824, -0.248322, -0.006771], "tracked": true, "track_id": 1} +{"t": 44.972599, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.023638, -0.028714, 0.276451, 0.535487, -0.672905, 0.782493, 0.502636, -0.209638, -0.201815, 0.375965, -0.253135, 0.083535, 1.105197, -0.292987, -0.241336, -0.011778], "tracked": true, "track_id": 1} +{"t": 45.008868, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.023952, -0.028714, 0.298566, 0.515653, -0.662911, 0.768295, 0.491915, -0.234066, -0.195683, 0.370506, -0.253544, 0.078293, 1.109925, -0.293196, -0.238614, -0.012964], "tracked": true, "track_id": 1} +{"t": 45.074353, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.02423, -0.028714, 0.342651, 0.472318, -0.624787, 0.7696, 0.464461, -0.273229, -0.17935, 0.360405, -0.254473, 0.065399, 1.123451, -0.294156, -0.228263, -0.015403], "tracked": true, "track_id": 1} +{"t": 45.139363, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.02381, -0.028714, 0.377376, 0.434734, -0.584693, 0.775447, 0.438084, -0.304323, -0.163493, 0.351836, -0.256751, 0.053882, 1.139223, -0.297102, -0.214492, -0.016991], "tracked": true, "track_id": 1} +{"t": 45.205177, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.023885, -0.028714, 0.400115, 0.411284, -0.563322, 0.775999, 0.423131, -0.327188, -0.154219, 0.340016, -0.260072, 0.045847, 1.150087, -0.29985, -0.207379, -0.018424], "tracked": true, "track_id": 1} +{"t": 45.275528, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.023512, -0.028714, 0.416387, 0.394061, -0.547682, 0.77032, 0.411205, -0.344129, -0.147404, 0.336783, -0.259753, 0.036736, 1.157566, -0.300627, -0.200585, -0.020216], "tracked": true, "track_id": 1} +{"t": 45.335675, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.023113, -0.028714, 0.428853, 0.378831, -0.527979, 0.782432, 0.400186, -0.353143, -0.140431, 0.335661, -0.258203, 0.025071, 1.167129, -0.30048, -0.190343, -0.022308], "tracked": true, "track_id": 1} +{"t": 45.401728, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.022597, -0.028714, 0.436931, 0.371131, -0.523048, 0.773072, 0.394135, -0.361203, -0.137927, 0.346018, -0.254081, 0.021446, 1.169006, -0.298053, -0.183996, -0.022544], "tracked": true, "track_id": 1} +{"t": 45.437137, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.022526, -0.028714, 0.434854, 0.373406, -0.529797, 0.76561, 0.396852, -0.364397, -0.139495, 0.34753, -0.254318, 0.024324, 1.167576, -0.298316, -0.185135, -0.021847], "tracked": true, "track_id": 1} +{"t": 45.499493, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.022061, -0.028714, 0.435317, 0.372668, -0.533781, 0.758939, 0.396742, -0.370463, -0.139874, 0.367064, -0.252328, 0.042271, 1.154683, -0.295767, -0.191208, -0.017362], "tracked": true, "track_id": 1} +{"t": 45.532848, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021761, -0.028714, 0.434164, 0.372723, -0.53494, 0.756968, 0.396946, -0.372886, -0.139898, 0.375939, -0.252017, 0.051786, 1.148787, -0.29514, -0.193962, -0.014924], "tracked": true, "track_id": 1} +{"t": 45.569314, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021046, -0.028714, 0.427505, 0.373081, -0.529828, 0.774736, 0.39721, -0.373164, -0.138358, 0.384767, -0.253727, 0.06953, 1.134631, -0.296679, -0.205075, -0.011157], "tracked": true, "track_id": 1} +{"t": 45.635596, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020086, -0.028714, 0.421873, 0.374178, -0.52921, 0.777697, 0.397686, -0.373847, -0.138087, 0.395194, -0.258196, 0.099564, 1.112727, -0.300536, -0.22332, -0.004709], "tracked": true, "track_id": 1} +{"t": 45.703045, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018766, -0.028714, 0.413534, 0.373632, -0.522423, 0.785968, 0.396414, -0.377725, -0.135584, 0.400977, -0.268837, 0.142509, 1.088185, -0.309849, -0.245114, 0.005073], "tracked": true, "track_id": 1} +{"t": 45.766403, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018753, -0.028714, 0.40463, 0.378228, -0.524969, 0.800083, 0.400999, -0.378816, -0.13619, 0.402038, -0.273744, 0.158987, 1.086125, -0.313235, -0.247752, 0.009575], "tracked": true, "track_id": 1} +{"t": 45.827447, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018338, -0.028714, 0.389933, 0.384902, -0.525678, 0.821218, 0.406267, -0.378885, -0.136389, 0.4108, -0.2741, 0.169911, 1.079984, -0.313078, -0.250925, 0.012373], "tracked": true, "track_id": 1} +{"t": 45.863647, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018201, -0.028714, 0.384754, 0.386023, -0.520772, 0.839031, 0.40736, -0.375104, -0.135441, 0.412334, -0.275081, 0.17409, 1.079704, -0.313876, -0.250917, 0.013603], "tracked": true, "track_id": 1} +{"t": 45.897259, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018123, -0.028714, 0.378438, 0.39072, -0.526695, 0.835583, 0.410908, -0.377083, -0.136924, 0.413963, -0.274929, 0.173623, 1.082994, -0.31376, -0.247144, 0.013959], "tracked": true, "track_id": 1} +{"t": 45.96511, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017977, -0.028714, 0.367614, 0.397938, -0.534078, 0.83503, 0.41629, -0.379876, -0.138731, 0.414297, -0.275329, 0.169034, 1.095695, -0.314409, -0.234032, 0.014323], "tracked": true, "track_id": 1} +{"t": 46.027486, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017548, -0.028714, 0.361244, 0.399006, -0.528225, 0.857507, 0.416854, -0.376239, -0.137485, 0.419325, -0.273345, 0.16212, 1.105613, -0.313198, -0.221381, 0.013944], "tracked": true, "track_id": 1} +{"t": 46.093772, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017461, -0.028714, 0.360498, 0.396545, -0.503734, 0.921463, 0.415373, -0.337856, -0.135299, 0.426791, -0.268091, 0.146369, 1.119577, -0.308567, -0.202194, 0.011819], "tracked": true, "track_id": 1} +{"t": 46.12923, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017387, -0.028714, 0.364131, 0.392558, -0.484573, 0.957852, 0.412431, -0.308357, -0.133519, 0.429387, -0.267613, 0.144525, 1.12474, -0.307967, -0.195298, 0.012178], "tracked": true, "track_id": 1} +{"t": 46.190612, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017526, -0.028714, 0.37173, 0.388962, -0.457205, 1.02609, 0.409905, -0.246908, -0.133502, 0.424423, -0.271687, 0.14652, 1.136449, -0.311302, -0.184781, 0.01414], "tracked": true, "track_id": 1} +{"t": 46.25738, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017636, -0.028714, 0.378069, 0.382476, -0.4269, 1.076204, 0.405409, -0.201179, -0.130567, 0.417865, -0.275387, 0.147225, 1.145341, -0.314603, -0.178103, 0.01522], "tracked": true, "track_id": 1} +{"t": 46.29287, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017589, -0.028714, 0.380423, 0.379749, -0.419911, 1.086074, 0.403357, -0.195373, -0.12927, 0.417627, -0.274388, 0.137821, 1.157159, -0.314124, -0.164036, 0.014293], "tracked": true, "track_id": 1} +{"t": 46.326791, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017628, -0.028714, 0.383207, 0.376337, -0.40954, 1.098186, 0.400946, -0.185563, -0.127502, 0.418472, -0.274321, 0.138067, 1.158282, -0.313905, -0.162608, 0.014552], "tracked": true, "track_id": 1} +{"t": 46.390214, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017694, -0.028714, 0.37761, 0.37688, -0.406263, 1.10283, 0.401973, -0.191734, -0.125732, 0.420703, -0.269995, 0.123363, 1.167011, -0.310536, -0.151221, 0.011716], "tracked": true, "track_id": 1} +{"t": 46.423833, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017844, -0.028714, 0.383674, 0.371459, -0.379705, 1.136219, 0.397984, -0.149537, -0.123436, 0.418657, -0.268211, 0.115504, 1.169997, -0.309382, -0.14891, 0.009706], "tracked": true, "track_id": 1} +{"t": 46.488116, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018287, -0.028714, 0.388609, 0.367271, -0.377895, 1.130997, 0.395723, -0.159334, -0.121624, 0.416469, -0.261861, 0.091316, 1.180504, -0.304589, -0.137498, 0.004084], "tracked": true, "track_id": 1} +{"t": 46.556045, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018804, -0.028714, 0.385587, 0.370588, -0.390842, 1.117898, 0.399335, -0.178799, -0.122887, 0.414839, -0.257897, 0.077189, 1.186196, -0.301169, -0.13162, 0.000697], "tracked": true, "track_id": 1} +{"t": 46.622298, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018145, -0.028714, 0.383038, 0.368252, -0.396901, 1.087976, 0.396523, -0.212037, -0.120324, 0.409645, -0.261779, 0.071179, 1.203389, -0.30532, -0.11247, 0.001433], "tracked": true, "track_id": 1} +{"t": 46.687192, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018184, -0.028714, 0.382155, 0.367979, -0.405094, 1.06703, 0.396601, -0.234737, -0.119766, 0.397815, -0.262898, 0.059839, 1.210253, -0.307399, -0.110125, -0.001596], "tracked": true, "track_id": 1} +{"t": 46.7219, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018421, -0.028714, 0.382287, 0.368118, -0.406518, 1.066109, 0.397226, -0.237681, -0.1198, 0.393889, -0.263598, 0.060083, 1.208504, -0.307937, -0.114409, -0.002084], "tracked": true, "track_id": 1} +{"t": 46.78497, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018668, -0.028714, 0.398406, 0.34958, -0.37274, 1.063549, 0.382894, -0.235649, -0.110131, 0.370389, -0.267886, 0.042206, 1.220265, -0.311792, -0.110849, -0.006877], "tracked": true, "track_id": 1} +{"t": 46.852407, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019017, -0.028714, 0.404532, 0.341286, -0.342853, 1.090149, 0.377494, -0.204595, -0.1054, 0.365393, -0.266575, 0.03425, 1.222553, -0.311045, -0.110767, -0.009206], "tracked": true, "track_id": 1} +{"t": 46.920535, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019126, -0.028714, 0.406958, 0.341333, -0.349388, 1.084676, 0.377679, -0.211874, -0.106371, 0.365196, -0.265466, 0.035307, 1.216308, -0.310407, -0.118893, -0.009957], "tracked": true, "track_id": 1} +{"t": 46.985401, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019108, -0.028714, 0.40317, 0.343703, -0.354474, 1.081881, 0.379906, -0.218561, -0.106993, 0.369899, -0.26385, 0.04329, 1.202487, -0.309208, -0.133673, -0.009541], "tracked": true, "track_id": 1} +{"t": 47.050471, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018928, -0.028714, 0.4002, 0.344613, -0.35413, 1.083165, 0.380641, -0.219373, -0.106785, 0.381786, -0.25687, 0.036616, 1.198613, -0.30374, -0.132892, -0.011402], "tracked": true, "track_id": 1} +{"t": 47.118555, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018748, -0.028714, 0.407199, 0.336662, -0.336794, 1.088587, 0.373762, -0.210948, -0.102788, 0.368644, -0.267304, 0.048408, 1.202846, -0.311306, -0.133433, -0.008005], "tracked": true, "track_id": 1} +{"t": 47.183539, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018667, -0.028714, 0.409868, 0.33451, -0.326467, 1.104071, 0.371929, -0.193096, -0.102084, 0.380997, -0.266535, 0.060462, 1.199376, -0.31002, -0.132048, -0.004278], "tracked": true, "track_id": 1} +{"t": 47.274151, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018571, -0.028714, 0.414772, 0.33064, -0.320226, 1.105757, 0.368423, -0.189486, -0.100721, 0.390139, -0.267308, 0.075019, 1.193242, -0.310038, -0.135371, -0.000431], "tracked": true, "track_id": 1} +{"t": 47.335139, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018491, -0.028714, 0.416148, 0.329726, -0.321449, 1.101523, 0.36747, -0.193768, -0.10052, 0.393335, -0.269119, 0.087444, 1.185281, -0.311194, -0.143401, 0.002174], "tracked": true, "track_id": 1} +{"t": 47.395611, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01833, -0.028714, 0.418173, 0.329397, -0.327029, 1.092826, 0.366575, -0.202132, -0.101068, 0.398933, -0.269047, 0.095457, 1.178923, -0.310825, -0.148345, 0.003884], "tracked": true, "track_id": 1} +{"t": 47.45075, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018417, -0.028714, 0.420861, 0.327834, -0.321039, 1.100909, 0.365243, -0.191606, -0.100682, 0.401645, -0.270267, 0.10292, 1.177055, -0.311242, -0.14942, 0.005939], "tracked": true, "track_id": 1} +{"t": 47.511298, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018532, -0.028714, 0.422684, 0.326856, -0.318608, 1.103726, 0.36454, -0.18777, -0.100469, 0.402262, -0.272139, 0.109742, 1.176479, -0.312323, -0.149966, 0.007874], "tracked": true, "track_id": 1} +{"t": 47.571272, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018684, -0.028714, 0.425983, 0.324683, -0.313683, 1.107058, 0.362754, -0.182298, -0.099736, 0.404132, -0.273651, 0.118275, 1.172881, -0.312874, -0.153443, 0.009929], "tracked": true, "track_id": 1} +{"t": 47.63133, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018912, -0.028714, 0.430367, 0.321045, -0.298801, 1.121964, 0.359834, -0.161368, -0.098095, 0.406317, -0.2732, 0.119314, 1.17371, -0.311876, -0.151466, 0.010493], "tracked": true, "track_id": 1} +{"t": 47.696024, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019173, -0.028714, 0.434814, 0.317183, -0.285111, 1.13344, 0.356774, -0.144581, -0.096263, 0.408087, -0.273114, 0.122674, 1.171557, -0.311101, -0.153258, 0.011247], "tracked": true, "track_id": 1} +{"t": 47.755416, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019354, -0.028714, 0.441169, 0.309946, -0.257674, 1.153932, 0.350512, -0.113847, -0.09221, 0.409734, -0.272612, 0.121499, 1.174963, -0.310217, -0.148355, 0.011542], "tracked": true, "track_id": 1} +{"t": 47.820421, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019267, -0.028714, 0.444245, 0.306353, -0.244603, 1.164268, 0.347171, -0.09918, -0.090283, 0.410954, -0.273489, 0.121829, 1.180662, -0.310875, -0.14076, 0.012632], "tracked": true, "track_id": 1} +{"t": 47.87583, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019498, -0.028714, 0.449933, 0.301013, -0.224388, 1.180119, 0.342375, -0.074597, -0.087551, 0.411573, -0.272874, 0.117484, 1.187726, -0.309951, -0.131693, 0.012539], "tracked": true, "track_id": 1} +{"t": 47.935277, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019657, -0.028714, 0.452891, 0.298778, -0.212529, 1.193763, 0.34049, -0.055139, -0.086607, 0.409227, -0.273635, 0.112602, 1.19768, -0.310524, -0.120394, 0.01258], "tracked": true, "track_id": 1} +{"t": 47.995567, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019728, -0.028714, 0.457114, 0.294236, -0.199334, 1.199902, 0.336291, -0.044425, -0.084126, 0.406772, -0.27684, 0.115244, 1.20589, -0.312903, -0.111358, 0.014539], "tracked": true, "track_id": 1} +{"t": 48.055445, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019654, -0.028714, 0.465043, 0.285386, -0.181612, 1.195497, 0.326648, -0.043643, -0.079016, 0.392238, -0.282166, 0.11017, 1.215031, -0.317592, -0.106799, 0.013642], "tracked": true, "track_id": 1} +{"t": 48.117421, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019897, -0.028714, 0.467098, 0.283245, -0.175237, 1.198932, 0.325357, -0.03823, -0.077849, 0.391947, -0.279725, 0.10106, 1.220515, -0.315702, -0.100161, 0.011831], "tracked": true, "track_id": 1} +{"t": 48.177898, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019885, -0.028714, 0.472041, 0.278418, -0.173458, 1.183664, 0.320124, -0.053857, -0.075283, 0.373032, -0.286382, 0.095339, 1.227581, -0.320824, -0.099915, 0.01018], "tracked": true, "track_id": 1} +{"t": 48.236149, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019899, -0.028714, 0.476633, 0.271859, -0.1645, 1.171855, 0.313869, -0.065344, -0.071146, 0.355811, -0.291859, 0.087318, 1.235863, -0.324957, -0.097265, 0.008167], "tracked": true, "track_id": 1} +{"t": 48.297171, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019902, -0.028714, 0.480135, 0.267686, -0.158927, 1.165062, 0.309701, -0.071507, -0.068702, 0.34119, -0.294434, 0.073762, 1.24433, -0.327098, -0.093164, 0.004716], "tracked": true, "track_id": 1} +{"t": 48.356071, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019679, -0.028714, 0.482572, 0.264657, -0.161185, 1.148656, 0.306234, -0.089832, -0.06697, 0.323621, -0.299938, 0.062863, 1.252922, -0.33103, -0.089935, 0.001933], "tracked": true, "track_id": 1} +{"t": 48.419364, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019446, -0.028714, 0.484424, 0.261623, -0.157685, 1.14255, 0.302991, -0.096488, -0.065071, 0.312233, -0.299575, 0.040878, 1.265419, -0.33138, -0.07893, -0.003095], "tracked": true, "track_id": 1} +{"t": 48.477558, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019223, -0.028714, 0.485636, 0.25932, -0.152034, 1.143361, 0.30055, -0.095026, -0.0636, 0.303588, -0.298336, 0.021655, 1.274604, -0.331167, -0.071054, -0.007719], "tracked": true, "track_id": 1} +{"t": 48.536394, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018996, -0.028714, 0.482644, 0.257966, -0.145199, 1.146724, 0.300543, -0.093842, -0.061744, 0.313375, -0.289036, 0.003031, 1.280412, -0.325635, -0.059173, -0.011644], "tracked": true, "track_id": 1} +{"t": 48.595371, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018747, -0.028714, 0.480585, 0.259339, -0.14891, 1.146025, 0.301906, -0.096921, -0.062433, 0.322902, -0.281435, -0.01023, 1.28419, -0.32115, -0.050008, -0.014346], "tracked": true, "track_id": 1} +{"t": 48.657743, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018597, -0.028714, 0.479827, 0.259423, -0.151802, 1.141277, 0.302102, -0.103826, -0.062381, 0.32894, -0.276286, -0.018737, 1.285858, -0.318244, -0.045319, -0.016235], "tracked": true, "track_id": 1} +{"t": 48.715555, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018588, -0.028714, 0.480988, 0.257046, -0.147361, 1.138846, 0.300119, -0.10624, -0.06076, 0.333425, -0.272078, -0.025666, 1.287132, -0.315707, -0.041846, -0.017819], "tracked": true, "track_id": 1} +{"t": 48.778073, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01873, -0.028714, 0.483275, 0.255597, -0.148677, 1.131257, 0.298523, -0.113786, -0.06016, 0.335611, -0.270819, -0.025115, 1.286456, -0.314908, -0.042009, -0.017678], "tracked": true, "track_id": 1} +{"t": 48.836292, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019029, -0.028714, 0.486399, 0.253281, -0.146751, 1.125478, 0.296208, -0.118279, -0.059007, 0.336821, -0.270984, -0.018894, 1.281927, -0.314763, -0.047604, -0.01658], "tracked": true, "track_id": 1} +{"t": 48.895427, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019098, -0.028714, 0.489248, 0.249434, -0.141248, 1.118187, 0.292385, -0.124722, -0.056546, 0.338016, -0.273936, -0.004756, 1.27564, -0.316838, -0.055397, -0.01344], "tracked": true, "track_id": 1} +{"t": 48.955532, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019351, -0.028714, 0.49165, 0.246664, -0.136971, 1.113654, 0.289988, -0.128254, -0.054826, 0.338492, -0.278193, 0.012286, 1.270412, -0.319442, -0.062119, -0.009307], "tracked": true, "track_id": 1} +{"t": 49.022735, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019653, -0.028714, 0.497393, 0.242953, -0.134657, 1.101334, 0.284196, -0.136743, -0.053036, 0.317041, -0.293761, 0.031739, 1.269346, -0.328603, -0.072428, -0.004933], "tracked": true, "track_id": 1} +{"t": 49.075909, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020264, -0.028714, 0.500728, 0.240447, -0.127778, 1.102987, 0.282157, -0.131558, -0.05169, 0.318939, -0.295155, 0.045409, 1.261558, -0.328805, -0.08173, -0.002128], "tracked": true, "track_id": 1} +{"t": 49.135864, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020639, -0.028714, 0.503971, 0.238086, -0.122899, 1.101695, 0.27953, -0.12997, -0.050463, 0.302279, -0.309852, 0.072637, 1.253731, -0.33761, -0.098023, 0.00375], "tracked": true, "track_id": 1} +{"t": 49.195335, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020903, -0.028714, 0.505666, 0.236626, -0.117635, 1.105071, 0.278392, -0.124377, -0.049646, 0.293742, -0.318708, 0.093117, 1.246464, -0.343193, -0.110617, 0.008128], "tracked": true, "track_id": 1} +{"t": 49.258897, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020955, -0.028714, 0.507289, 0.234192, -0.111001, 1.10599, 0.276026, -0.121851, -0.048025, 0.285349, -0.328274, 0.114064, 1.240052, -0.349459, -0.121996, 0.012801], "tracked": true, "track_id": 1} +{"t": 49.315516, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021033, -0.028714, 0.509322, 0.230963, -0.098799, 1.112713, 0.272789, -0.111274, -0.045818, 0.282138, -0.332933, 0.123946, 1.240959, -0.35266, -0.122631, 0.015625], "tracked": true, "track_id": 1} +{"t": 49.379357, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021008, -0.028714, 0.510742, 0.228811, -0.093111, 1.113149, 0.270452, -0.109455, -0.044384, 0.280667, -0.335727, 0.131063, 1.240185, -0.354794, -0.124575, 0.017463], "tracked": true, "track_id": 1} +{"t": 49.439464, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020982, -0.028714, 0.512919, 0.225542, -0.082853, 1.116077, 0.266615, -0.103332, -0.042167, 0.279708, -0.338615, 0.138866, 1.239595, -0.356968, -0.12603, 0.019569], "tracked": true, "track_id": 1} +{"t": 49.499686, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021109, -0.028714, 0.515421, 0.221162, -0.066491, 1.123796, 0.262019, -0.090274, -0.039062, 0.279702, -0.339548, 0.143874, 1.237225, -0.357602, -0.129219, 0.020625], "tracked": true, "track_id": 1} +{"t": 49.560774, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021259, -0.028714, 0.517058, 0.219728, -0.066039, 1.1181, 0.260269, -0.095636, -0.038227, 0.27751, -0.3426, 0.154192, 1.231006, -0.359504, -0.1377, 0.022551], "tracked": true, "track_id": 1} +{"t": 49.626322, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021331, -0.028714, 0.518727, 0.218318, -0.060717, 1.12113, 0.258216, -0.089832, -0.037421, 0.277078, -0.344788, 0.162529, 1.227323, -0.360989, -0.142523, 0.024372], "tracked": true, "track_id": 1} +{"t": 49.68392, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021509, -0.028714, 0.520384, 0.216364, -0.05456, 1.122742, 0.256031, -0.085767, -0.036142, 0.275172, -0.347463, 0.169999, 1.225219, -0.36256, -0.145997, 0.026115], "tracked": true, "track_id": 1} +{"t": 49.743436, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021768, -0.028714, 0.521812, 0.214909, -0.048907, 1.125786, 0.254585, -0.080104, -0.035219, 0.274845, -0.348006, 0.173759, 1.223041, -0.362627, -0.148921, 0.026839], "tracked": true, "track_id": 1} +{"t": 49.799178, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021708, -0.028714, 0.52322, 0.212554, -0.041981, 1.126683, 0.251618, -0.077168, -0.033566, 0.277262, -0.34761, 0.175206, 1.223728, -0.362613, -0.147304, 0.027476], "tracked": true, "track_id": 1} +{"t": 49.859466, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.02177, -0.028714, 0.523679, 0.212518, -0.045399, 1.120754, 0.251514, -0.084264, -0.033643, 0.275659, -0.348544, 0.17759, 1.22138, -0.363163, -0.150856, 0.027713], "tracked": true, "track_id": 1} +{"t": 49.919384, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021611, -0.028714, 0.523186, 0.212445, -0.045788, 1.120041, 0.251638, -0.086114, -0.033516, 0.278468, -0.345572, 0.170305, 1.224639, -0.36157, -0.145873, 0.026221], "tracked": true, "track_id": 1} +{"t": 49.982673, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021607, -0.028714, 0.52365, 0.212156, -0.045439, 1.119545, 0.251128, -0.086327, -0.033386, 0.275672, -0.346842, 0.168259, 1.228837, -0.362371, -0.141958, 0.026131], "tracked": true, "track_id": 1} +{"t": 50.042822, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021565, -0.028714, 0.524761, 0.210047, -0.041915, 1.115448, 0.248578, -0.090031, -0.031865, 0.276587, -0.345487, 0.165379, 1.2291, -0.361616, -0.141396, 0.025358], "tracked": true, "track_id": 1} +{"t": 50.102016, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021537, -0.028714, 0.525863, 0.208497, -0.040021, 1.111178, 0.246405, -0.093897, -0.030803, 0.273741, -0.346035, 0.1614, 1.232658, -0.361947, -0.138247, 0.024599], "tracked": true, "track_id": 1} +{"t": 50.162365, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021476, -0.028714, 0.526725, 0.207321, -0.036809, 1.111174, 0.244639, -0.09276, -0.030006, 0.275053, -0.345034, 0.158592, 1.235286, -0.361461, -0.134566, 0.024254], "tracked": true, "track_id": 1} +{"t": 50.226128, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021373, -0.028714, 0.526207, 0.207943, -0.039789, 1.10921, 0.245384, -0.096121, -0.030443, 0.285376, -0.338726, 0.151738, 1.236301, -0.357419, -0.12899, 0.022967], "tracked": true, "track_id": 1} +{"t": 50.281003, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021195, -0.028714, 0.527104, 0.206094, -0.034635, 1.109258, 0.242771, -0.094812, -0.029099, 0.285532, -0.338334, 0.148859, 1.238809, -0.357522, -0.12592, 0.022522], "tracked": true, "track_id": 1} +{"t": 50.338988, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021056, -0.028714, 0.527723, 0.205051, -0.031731, 1.109365, 0.241107, -0.093856, -0.02837, 0.284919, -0.338854, 0.14924, 1.238632, -0.358137, -0.12649, 0.022559], "tracked": true, "track_id": 1} +{"t": 50.399114, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020925, -0.028714, 0.528595, 0.203814, -0.028029, 1.109789, 0.239002, -0.092031, -0.027519, 0.28259, -0.340546, 0.149419, 1.240949, -0.359441, -0.124638, 0.022854], "tracked": true, "track_id": 1} +{"t": 50.459287, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.02072, -0.028714, 0.528929, 0.20249, -0.023594, 1.111224, 0.237263, -0.089797, -0.026507, 0.281365, -0.341059, 0.145947, 1.245645, -0.360107, -0.119309, 0.02253], "tracked": true, "track_id": 1} +{"t": 50.519079, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.02064, -0.028714, 0.52999, 0.2004, -0.017616, 1.111194, 0.234417, -0.088122, -0.024968, 0.281101, -0.340337, 0.143055, 1.246167, -0.359788, -0.118843, 0.02174], "tracked": true, "track_id": 1} +{"t": 50.583728, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020695, -0.028714, 0.530822, 0.198904, -0.012477, 1.112648, 0.232628, -0.08493, -0.023873, 0.275464, -0.343431, 0.14218, 1.251202, -0.361524, -0.114826, 0.022008], "tracked": true, "track_id": 1} +{"t": 50.641089, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020669, -0.028714, 0.531755, 0.198503, -0.013115, 1.109307, 0.231164, -0.087606, -0.023711, 0.274414, -0.344113, 0.140566, 1.255174, -0.362022, -0.110295, 0.022125], "tracked": true, "track_id": 1} +{"t": 50.700136, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020727, -0.028714, 0.531814, 0.19747, -0.009376, 1.110839, 0.230652, -0.085672, -0.022864, 0.270567, -0.345682, 0.137527, 1.260412, -0.362827, -0.105253, 0.02189], "tracked": true, "track_id": 1} +{"t": 50.76099, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020632, -0.028714, 0.531949, 0.196591, -0.005874, 1.112746, 0.229711, -0.083102, -0.022171, 0.267905, -0.346996, 0.133889, 1.266766, -0.363741, -0.098252, 0.021736], "tracked": true, "track_id": 1} +{"t": 50.822445, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020406, -0.028714, 0.531904, 0.195709, -0.001682, 1.11594, 0.228613, -0.07916, -0.021453, 0.270931, -0.344523, 0.126428, 1.272535, -0.36259, -0.089586, 0.020674], "tracked": true, "track_id": 1} +{"t": 50.880051, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020103, -0.028714, 0.531526, 0.194725, 0.003496, 1.120435, 0.227608, -0.074053, -0.020598, 0.273067, -0.343123, 0.121773, 1.276204, -0.362237, -0.084029, 0.020032], "tracked": true, "track_id": 1} +{"t": 50.939522, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019987, -0.028714, 0.530795, 0.194664, 0.00936, 1.130454, 0.228102, -0.06216, -0.020427, 0.273659, -0.342447, 0.117384, 1.281029, -0.362015, -0.07759, 0.019582], "tracked": true, "track_id": 1} +{"t": 51.004557, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019727, -0.028714, 0.530262, 0.192376, 0.022105, 1.141449, 0.226493, -0.048593, -0.018452, 0.274689, -0.341879, 0.11236, 1.287262, -0.362098, -0.06907, 0.019218], "tracked": true, "track_id": 1} +{"t": 51.063118, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01945, -0.028714, 0.529143, 0.192748, 0.02423, 1.147257, 0.227175, -0.042793, -0.018585, 0.272524, -0.343619, 0.111187, 1.290957, -0.36357, -0.065243, 0.019374], "tracked": true, "track_id": 1} +{"t": 51.12313, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019363, -0.028714, 0.527588, 0.193467, 0.027057, 1.155657, 0.228966, -0.034083, -0.018893, 0.273638, -0.342405, 0.107724, 1.292869, -0.362963, -0.062354, 0.018733], "tracked": true, "track_id": 1} +{"t": 51.184785, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019078, -0.028714, 0.526598, 0.19291, 0.033136, 1.163614, 0.228847, -0.025125, -0.018276, 0.274325, -0.342137, 0.10476, 1.296075, -0.363262, -0.057927, 0.01844], "tracked": true, "track_id": 1} +{"t": 51.243991, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018907, -0.028714, 0.524767, 0.193985, 0.034235, 1.170681, 0.230799, -0.018424, -0.018828, 0.27398, -0.341943, 0.101396, 1.29893, -0.363387, -0.05439, 0.017912], "tracked": true, "track_id": 1} +{"t": 51.303654, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018625, -0.028714, 0.523864, 0.192702, 0.041636, 1.177348, 0.230091, -0.010985, -0.017624, 0.274171, -0.342349, 0.100648, 1.300533, -0.364101, -0.052264, 0.01797], "tracked": true, "track_id": 1} +{"t": 51.363175, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018328, -0.028714, 0.523584, 0.191359, 0.047911, 1.181871, 0.228731, -0.005521, -0.016493, 0.277747, -0.341052, 0.09914, 1.302314, -0.363841, -0.048417, 0.01803], "tracked": true, "track_id": 1} +{"t": 51.424101, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018018, -0.028714, 0.523453, 0.192621, 0.045635, 1.184414, 0.22892, -0.002468, -0.017561, 0.279063, -0.341249, 0.09847, 1.304992, -0.364513, -0.044363, 0.018363], "tracked": true, "track_id": 1} +{"t": 51.485399, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017931, -0.028714, 0.523816, 0.193708, 0.039172, 1.178814, 0.22911, -0.009453, -0.018549, 0.275961, -0.343349, 0.099986, 1.30513, -0.365874, -0.045536, 0.018655], "tracked": true, "track_id": 1} diff --git a/Camera_Recorder/DataG1/test2.jsonl b/Camera_Recorder/DataG1/test2.jsonl new file mode 100644 index 0000000..34935c4 --- /dev/null +++ b/Camera_Recorder/DataG1/test2.jsonl @@ -0,0 +1,1019 @@ +{"meta": {"format": "g1_camera_pose_v1", "created_unix": 1773226859.2869601, "motors": 29, "source": "0", "model": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/Models/yolo11n-pose.pt", "record_hz": 30.0, "home_pose": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/DataG1/arm_home.jsonl", "raw_pose_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/RawPose/test2.pose.jsonl", "config_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/camera_recorder_config.json", "joint_config_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/joint.json", "pose_mapping_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/pose_mapping.json", "notes": "Lower body fixed to home pose; upper body derived heuristically from 2D YOLO keypoints."}} +{"t": 12.315318, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007087, -0.028714, 0.29039, 0.215968, -0.005213, 0.979195, 0.157569, 0.061683, -0.040902, 0.331926, -0.233479, 0.07574, 0.947192, -0.203318, -0.014683, 0.015557], "tracked": true, "track_id": 1} +{"t": 12.351944, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006344, -0.028714, 0.321728, 0.219946, -0.041863, 0.958681, 0.170139, -0.002038, -0.043352, 0.390066, -0.248897, 0.15898, 0.89983, -0.234848, -0.119995, 0.026273], "tracked": true, "track_id": 1} +{"t": 12.397872, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005061, -0.028714, 0.344673, 0.229854, -0.092311, 0.9192, 0.186783, -0.062891, -0.050235, 0.448526, -0.265593, 0.245594, 0.852247, -0.268694, -0.225795, 0.037918], "tracked": true, "track_id": 1} +{"t": 12.450891, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004139, -0.028714, 0.383378, 0.239887, -0.15484, 0.875747, 0.207799, -0.152465, -0.056917, 0.474067, -0.274043, 0.286334, 0.831626, -0.285424, -0.272489, 0.043797], "tracked": true, "track_id": 1} +{"t": 12.513353, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003326, -0.028714, 0.409898, 0.24741, -0.200104, 0.844682, 0.223554, -0.217572, -0.061719, 0.492503, -0.279769, 0.314279, 0.820023, -0.297654, -0.305583, 0.047689], "tracked": true, "track_id": 1} +{"t": 12.551525, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003297, -0.028714, 0.420815, 0.250847, -0.219201, 0.834647, 0.230501, -0.242805, -0.064037, 0.500298, -0.281192, 0.323662, 0.814427, -0.300809, -0.318644, 0.048742], "tracked": true, "track_id": 1} +{"t": 12.613247, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003696, -0.028714, 0.438859, 0.2541, -0.24148, 0.834254, 0.240665, -0.278372, -0.065941, 0.513365, -0.281408, 0.333474, 0.806741, -0.30278, -0.338775, 0.048996], "tracked": true, "track_id": 1} +{"t": 12.681415, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003308, -0.028714, 0.451019, 0.2564, -0.258904, 0.823024, 0.246696, -0.307225, -0.067294, 0.521011, -0.284319, 0.346386, 0.803279, -0.308839, -0.353192, 0.050909], "tracked": true, "track_id": 1} +{"t": 12.715591, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003067, -0.028714, 0.45572, 0.258177, -0.268627, 0.813168, 0.249434, -0.319324, -0.068572, 0.524892, -0.284885, 0.35032, 0.802266, -0.310546, -0.358573, 0.051363], "tracked": true, "track_id": 1} +{"t": 12.776047, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003085, -0.028714, 0.463887, 0.259841, -0.280075, 0.808675, 0.253572, -0.336619, -0.069678, 0.530777, -0.285076, 0.354614, 0.801405, -0.31186, -0.366881, 0.05154], "tracked": true, "track_id": 1} +{"t": 12.847715, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002782, -0.028714, 0.469463, 0.260492, -0.287303, 0.801282, 0.255565, -0.350045, -0.070049, 0.534298, -0.286483, 0.360577, 0.800591, -0.314901, -0.373069, 0.052485], "tracked": true, "track_id": 1} +{"t": 12.911498, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002777, -0.028714, 0.472731, 0.263379, -0.298762, 0.791334, 0.25957, -0.36009, -0.072106, 0.537372, -0.286197, 0.361672, 0.800434, -0.315367, -0.377311, 0.052252], "tracked": true, "track_id": 1} +{"t": 12.97922, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003043, -0.028714, 0.319023, 0.224225, -0.054016, 0.9449, 0.17419, -0.005801, -0.046434, 0.539186, -0.285521, 0.361098, 0.80023, -0.314922, -0.380489, 0.051668], "tracked": true, "track_id": 1} +{"t": 13.043426, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003345, -0.028714, 0.364214, 0.238001, -0.132292, 0.897451, 0.202228, -0.11141, -0.055652, 0.540933, -0.284465, 0.359479, 0.799983, -0.313687, -0.38274, 0.050898], "tracked": true, "track_id": 1} +{"t": 13.110803, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003064, -0.028714, 0.394249, 0.249256, -0.191321, 0.856325, 0.223356, -0.188099, -0.062989, 0.542317, -0.285201, 0.362554, 0.796832, -0.315022, -0.385073, 0.051497], "tracked": true, "track_id": 1} +{"t": 13.172604, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003721, -0.028714, 0.419146, 0.255917, -0.230674, 0.837852, 0.238261, -0.242207, -0.06749, 0.54391, -0.283048, 0.358139, 0.795159, -0.311574, -0.386451, 0.050019], "tracked": true, "track_id": 1} +{"t": 13.236121, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003692, -0.028714, 0.435117, 0.261974, -0.262175, 0.816207, 0.2496, -0.282468, -0.071492, 0.544774, -0.283095, 0.358949, 0.794002, -0.311663, -0.38755, 0.050113], "tracked": true, "track_id": 1} +{"t": 13.272566, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004051, -0.028714, 0.29039, 0.215968, -0.005213, 0.979195, 0.157569, 0.061683, -0.040902, 0.545364, -0.281963, 0.356378, 0.794232, -0.309801, -0.38776, 0.049329], "tracked": true, "track_id": 1} +{"t": 13.337144, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004293, -0.028714, 0.317493, 0.226798, -0.059821, 0.942215, 0.177346, -0.005726, -0.048152, 0.545358, -0.281407, 0.354998, 0.794038, -0.309085, -0.388408, 0.048839], "tracked": true, "track_id": 1} +{"t": 13.372587, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00429, -0.028714, 0.339904, 0.236471, -0.107008, 0.912071, 0.194896, -0.063075, -0.054533, 0.545416, -0.281916, 0.356708, 0.791725, -0.309523, -0.389136, 0.049247], "tracked": true, "track_id": 1} +{"t": 13.437544, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005215, -0.028714, 0.29039, 0.215968, -0.005213, 0.979195, 0.157569, 0.061683, -0.040902, 0.545682, -0.280272, 0.353214, 0.78914, -0.306032, -0.389959, 0.048111], "tracked": true, "track_id": 1} +{"t": 13.503671, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005613, -0.028714, 0.3164, 0.22802, -0.062027, 0.945516, 0.179424, -0.005817, -0.048789, 0.54509, -0.280634, 0.354609, 0.78445, -0.305726, -0.391234, 0.048355], "tracked": true, "track_id": 1} +{"t": 13.570282, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006137, -0.028714, 0.29039, 0.215968, -0.005213, 0.979195, 0.157569, 0.061683, -0.040902, 0.543527, -0.281295, 0.356169, 0.781653, -0.305806, -0.392212, 0.048686], "tracked": true, "track_id": 1} +{"t": 13.635112, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006317, -0.028714, 0.29039, 0.215968, -0.005213, 0.979195, 0.157569, 0.061683, -0.040902, 0.541691, -0.283066, 0.360408, 0.777495, -0.307628, -0.393253, 0.049797], "tracked": true, "track_id": 1} +{"t": 13.671372, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006278, -0.028714, 0.29039, 0.215968, -0.005213, 0.979195, 0.157569, 0.061683, -0.040902, 0.540634, -0.284708, 0.364455, 0.7746, -0.309437, -0.393806, 0.050915], "tracked": true, "track_id": 1} +{"t": 13.732188, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006297, -0.028714, 0.315683, 0.228287, -0.062224, 0.94537, 0.179774, -0.005813, -0.048847, 0.539096, -0.287263, 0.370907, 0.768902, -0.311972, -0.394704, 0.052695], "tracked": true, "track_id": 1} +{"t": 13.79644, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006142, -0.028714, 0.355761, 0.248088, -0.153269, 0.888615, 0.214899, -0.111812, -0.061769, 0.534333, -0.293527, 0.384993, 0.759642, -0.318932, -0.395402, 0.056747], "tracked": true, "track_id": 1} +{"t": 13.832463, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006057, -0.028714, 0.370889, 0.256627, -0.190589, 0.864524, 0.2293, -0.153, -0.067361, 0.531352, -0.297123, 0.392728, 0.755683, -0.322948, -0.395606, 0.058995], "tracked": true, "track_id": 1} +{"t": 13.896988, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006434, -0.028714, 0.395876, 0.268165, -0.24441, 0.839495, 0.251473, -0.218074, -0.074685, 0.52616, -0.303109, 0.405759, 0.74435, -0.328425, -0.395267, 0.062872], "tracked": true, "track_id": 1} +{"t": 13.931903, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006636, -0.028714, 0.405367, 0.273169, -0.26655, 0.829504, 0.260702, -0.243538, -0.077868, 0.522335, -0.307267, 0.414169, 0.737532, -0.332312, -0.394431, 0.065455], "tracked": true, "track_id": 1} +{"t": 13.967547, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006573, -0.028714, 0.412563, 0.277906, -0.286297, 0.817417, 0.268621, -0.265212, -0.080842, 0.517566, -0.312617, 0.424599, 0.732033, -0.337874, -0.39358, 0.068634], "tracked": true, "track_id": 1} +{"t": 14.029347, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00702, -0.028714, 0.420338, 0.286799, -0.316901, 0.809945, 0.28441, -0.29887, -0.085444, 0.50094, -0.329354, 0.453355, 0.712806, -0.353148, -0.386025, 0.078079], "tracked": true, "track_id": 1} +{"t": 14.100112, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006359, -0.028714, 0.422007, 0.294262, -0.340052, 0.797467, 0.295441, -0.323606, -0.08902, 0.478826, -0.359697, 0.490696, 0.743749, -0.379983, -0.333116, 0.095978], "tracked": true, "track_id": 1} +{"t": 14.16251, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006081, -0.028714, 0.424684, 0.297661, -0.352159, 0.796158, 0.302138, -0.341306, -0.090267, 0.454465, -0.395154, 0.498242, 0.847006, -0.408568, -0.188196, 0.117141], "tracked": true, "track_id": 1} +{"t": 14.226047, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005985, -0.028714, 0.427119, 0.298672, -0.356372, 0.803137, 0.306108, -0.352428, -0.090052, 0.430523, -0.429217, 0.505157, 0.948732, -0.434979, -0.051238, 0.137078], "tracked": true, "track_id": 1} +{"t": 14.260933, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005646, -0.028714, 0.428692, 0.298163, -0.356895, 0.803064, 0.306168, -0.357481, -0.089545, 0.418698, -0.4462, 0.506557, 1.003037, -0.448303, 0.018729, 0.146636], "tracked": true, "track_id": 1} +{"t": 14.324966, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005205, -0.028714, 0.429462, 0.297092, -0.354655, 0.809371, 0.306803, -0.364279, -0.087998, 0.386858, -0.485745, 0.520717, 1.100138, -0.47706, 0.13982, 0.166629], "tracked": true, "track_id": 1} +{"t": 14.394234, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004774, -0.028714, 0.430227, 0.295236, -0.349866, 0.817267, 0.306215, -0.36807, -0.086094, 0.353082, -0.526462, 0.544612, 1.180553, -0.505062, 0.234526, 0.186037], "tracked": true, "track_id": 1} +{"t": 14.459632, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004637, -0.028714, 0.429526, 0.293314, -0.339659, 0.841159, 0.306158, -0.362824, -0.083777, 0.322188, -0.562356, 0.56914, 1.244661, -0.528567, 0.305562, 0.202537], "tracked": true, "track_id": 1} +{"t": 14.52626, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004776, -0.028714, 0.429717, 0.289689, -0.322912, 0.870699, 0.304988, -0.351597, -0.080319, 0.299081, -0.589538, 0.589958, 1.291694, -0.545986, 0.357402, 0.215436], "tracked": true, "track_id": 1} +{"t": 14.589145, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004222, -0.028714, 0.429532, 0.286684, -0.315116, 0.876994, 0.302459, -0.353666, -0.077756, 0.286511, -0.60997, 0.611032, 1.32831, -0.560477, 0.395228, 0.226579], "tracked": true, "track_id": 1} +{"t": 14.659609, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003873, -0.028714, 0.431092, 0.284077, -0.310161, 0.879328, 0.299964, -0.356023, -0.075991, 0.276365, -0.6256, 0.626967, 1.356342, -0.571318, 0.423035, 0.234901], "tracked": true, "track_id": 1} +{"t": 14.724064, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003712, -0.028714, 0.433081, 0.284612, -0.315052, 0.870776, 0.299716, -0.359909, -0.076921, 0.262022, -0.641335, 0.639267, 1.377856, -0.580938, 0.443842, 0.241238], "tracked": true, "track_id": 1} +{"t": 14.786062, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004187, -0.028714, 0.43257, 0.28603, -0.314072, 0.889862, 0.302195, -0.352513, -0.0776, 0.247511, -0.653763, 0.646429, 1.401912, -0.587305, 0.459977, 0.245454], "tracked": true, "track_id": 1} +{"t": 14.821149, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004064, -0.028714, 0.433057, 0.287163, -0.319799, 0.880204, 0.302627, -0.356974, -0.078701, 0.243828, -0.658359, 0.650423, 1.414281, -0.590289, 0.466337, 0.24746], "tracked": true, "track_id": 1} +{"t": 14.884883, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003795, -0.028714, 0.430841, 0.28812, -0.321749, 0.879412, 0.303424, -0.35959, -0.078933, 0.236453, -0.666184, 0.655335, 1.434951, -0.595197, 0.476269, 0.250203], "tracked": true, "track_id": 1} +{"t": 14.91836, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003924, -0.028714, 0.428274, 0.286743, -0.308179, 0.903843, 0.303537, -0.344419, -0.076925, 0.225809, -0.673447, 0.656814, 1.443269, -0.598278, 0.479962, 0.251121], "tracked": true, "track_id": 1} +{"t": 14.95469, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004073, -0.028714, 0.426339, 0.286368, -0.29932, 0.923908, 0.304195, -0.332068, -0.075933, 0.217075, -0.678746, 0.656366, 1.450691, -0.600336, 0.483071, 0.251395], "tracked": true, "track_id": 1} +{"t": 14.98837, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004235, -0.028714, 0.425823, 0.287693, -0.304434, 0.917974, 0.305653, -0.337069, -0.076784, 0.204242, -0.685413, 0.652617, 1.456744, -0.60237, 0.485543, 0.250616], "tracked": true, "track_id": 1} +{"t": 15.051322, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004606, -0.028714, 0.423682, 0.289679, -0.308441, 0.918929, 0.308474, -0.340073, -0.07757, 0.182173, -0.695617, 0.643235, 1.46736, -0.604864, 0.489121, 0.248324], "tracked": true, "track_id": 1} +{"t": 15.118683, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005225, -0.028714, 0.422555, 0.29258, -0.312959, 0.924699, 0.312182, -0.337079, -0.07929, 0.161873, -0.706024, 0.639197, 1.474587, -0.607414, 0.491243, 0.247414], "tracked": true, "track_id": 1} +{"t": 15.181849, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005805, -0.028714, 0.422002, 0.295044, -0.317228, 0.928586, 0.315335, -0.334824, -0.08084, 0.146024, -0.712381, 0.631721, 1.480251, -0.608084, 0.492258, 0.245348], "tracked": true, "track_id": 1} +{"t": 15.249397, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006182, -0.028714, 0.420368, 0.299464, -0.33081, 0.918374, 0.319571, -0.342758, -0.083798, 0.131461, -0.717111, 0.621065, 1.484344, -0.607954, 0.49211, 0.242194], "tracked": true, "track_id": 1} +{"t": 15.28331, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006598, -0.028714, 0.42007, 0.301316, -0.335295, 0.918913, 0.321833, -0.343554, -0.085013, 0.127459, -0.718576, 0.620708, 1.485942, -0.607848, 0.491589, 0.242021], "tracked": true, "track_id": 1} +{"t": 15.348374, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007341, -0.028714, 0.419236, 0.303542, -0.33808, 0.926387, 0.325213, -0.340874, -0.086182, 0.117099, -0.721595, 0.61563, 1.488456, -0.607147, 0.489725, 0.240284], "tracked": true, "track_id": 1} +{"t": 15.385186, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007737, -0.028714, 0.418786, 0.303901, -0.33556, 0.93521, 0.326453, -0.335731, -0.086113, 0.110928, -0.723958, 0.614086, 1.489438, -0.607089, 0.488083, 0.239615], "tracked": true, "track_id": 1} +{"t": 15.449152, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008568, -0.028714, 0.417764, 0.306611, -0.338456, 0.943742, 0.330361, -0.331124, -0.087567, 0.100326, -0.726288, 0.607707, 1.490981, -0.605702, 0.484566, 0.237279], "tracked": true, "track_id": 1} +{"t": 15.509098, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009321, -0.028714, 0.41814, 0.30631, -0.331563, 0.959329, 0.331776, -0.31984, -0.087015, 0.090622, -0.728035, 0.600404, 1.492096, -0.604152, 0.482024, 0.234799], "tracked": true, "track_id": 1} +{"t": 15.545279, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009497, -0.028714, 0.417444, 0.307881, -0.336274, 0.956052, 0.333371, -0.322933, -0.087996, 0.087317, -0.728868, 0.597952, 1.492532, -0.603845, 0.481502, 0.23401], "tracked": true, "track_id": 1} +{"t": 15.610107, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010216, -0.028714, 0.419154, 0.30584, -0.321706, 0.980407, 0.333255, -0.301942, -0.086456, 0.079438, -0.733097, 0.599253, 1.493217, -0.604341, 0.482407, 0.23451], "tracked": true, "track_id": 1} +{"t": 15.678004, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010241, -0.028714, 0.420933, 0.304318, -0.323965, 0.967118, 0.331906, -0.312448, -0.085747, 0.04069, -0.755864, 0.58701, 1.483744, -0.608882, 0.486237, 0.23141], "tracked": true, "track_id": 1} +{"t": 15.742378, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010425, -0.028714, 0.41836, 0.299746, -0.293927, 1.003891, 0.329818, -0.281304, -0.080983, 0.00796, -0.781468, 0.59483, 1.462647, -0.616691, 0.490673, 0.23429], "tracked": true, "track_id": 1} +{"t": 15.812346, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010374, -0.028714, 0.414509, 0.29946, -0.286297, 1.014641, 0.33029, -0.275543, -0.079492, -0.038428, -0.817652, 0.602733, 1.430183, -0.626586, 0.493188, 0.236943], "tracked": true, "track_id": 1} +{"t": 15.873952, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010678, -0.028714, 0.40859, 0.302415, -0.284924, 1.02436, 0.333964, -0.270608, -0.079733, -0.093452, -0.860513, 0.61343, 1.392642, -0.637042, 0.493108, 0.240079], "tracked": true, "track_id": 1} +{"t": 15.907711, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010789, -0.028714, 0.406657, 0.303312, -0.283958, 1.028875, 0.33516, -0.268269, -0.079755, -0.114603, -0.877702, 0.619882, 1.375753, -0.641565, 0.492374, 0.241881], "tracked": true, "track_id": 1} +{"t": 15.975049, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011243, -0.028714, 0.409403, 0.303974, -0.295704, 1.007964, 0.33613, -0.285207, -0.080995, -0.199618, -0.944899, 0.637861, 1.314548, -0.654819, 0.479406, 0.245474], "tracked": true, "track_id": 1} +{"t": 16.037487, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011796, -0.028714, 0.409979, 0.306735, -0.310112, 0.987854, 0.33911, -0.300881, -0.083184, -0.255699, -0.989002, 0.651963, 1.270948, -0.663663, 0.469468, 0.248322], "tracked": true, "track_id": 1} +{"t": 16.104484, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012277, -0.028714, 0.412105, 0.306804, -0.314418, 0.981175, 0.33983, -0.306617, -0.083701, -0.288819, -1.014854, 0.6619, 1.241845, -0.669136, 0.46291, 0.250388], "tracked": true, "track_id": 1} +{"t": 16.170634, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012323, -0.028714, 0.412102, 0.306364, -0.313619, 0.980903, 0.339665, -0.307788, -0.083313, -0.331608, -1.048633, 0.66855, 1.213808, -0.675233, 0.456331, 0.251483], "tracked": true, "track_id": 1} +{"t": 16.205046, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012171, -0.028714, 0.411729, 0.307706, -0.31994, 0.972917, 0.34031, -0.313712, -0.084398, -0.346085, -1.06023, 0.669581, 1.205893, -0.677433, 0.455462, 0.251673], "tracked": true, "track_id": 1} +{"t": 16.239884, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012272, -0.028714, 0.411639, 0.309558, -0.32769, 0.963626, 0.341791, -0.320021, -0.085852, -0.346091, -1.059768, 0.668313, 1.20973, -0.677612, 0.458966, 0.251758], "tracked": true, "track_id": 1} +{"t": 16.273219, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012174, -0.028714, 0.408189, 0.310922, -0.325809, 0.971438, 0.343053, -0.315903, -0.085837, -0.334184, -1.050394, 0.665884, 1.218421, -0.676434, 0.463077, 0.251581], "tracked": true, "track_id": 1} +{"t": 16.334632, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011917, -0.028714, 0.403148, 0.31163, -0.316647, 0.99061, 0.343814, -0.303024, -0.084826, -0.312231, -1.031894, 0.656717, 1.239543, -0.673295, 0.471571, 0.249995], "tracked": true, "track_id": 1} +{"t": 16.400817, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01118, -0.028714, 0.400464, 0.307764, -0.296654, 1.012176, 0.340146, -0.286116, -0.081156, -0.275711, -1.003037, 0.645831, 1.264188, -0.668341, 0.478838, 0.247743], "tracked": true, "track_id": 1} +{"t": 16.46721, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010522, -0.028714, 0.397881, 0.308104, -0.298391, 1.008446, 0.339416, -0.291439, -0.080971, -0.239415, -0.974117, 0.634792, 1.287809, -0.662906, 0.484688, 0.245261], "tracked": true, "track_id": 1} +{"t": 16.536416, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010177, -0.028714, 0.397266, 0.304082, -0.279409, 1.028221, 0.336128, -0.274277, -0.077632, -0.200702, -0.942264, 0.6223, 1.31807, -0.65591, 0.489569, 0.242225], "tracked": true, "track_id": 1} +{"t": 16.60002, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009958, -0.028714, 0.401196, 0.302859, -0.285821, 1.010659, 0.334122, -0.285289, -0.078078, -0.178261, -0.919456, 0.602827, 1.346385, -0.649118, 0.492626, 0.236898], "tracked": true, "track_id": 1} +{"t": 16.666867, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009849, -0.028714, 0.401314, 0.299187, -0.270095, 1.026352, 0.331459, -0.272399, -0.075138, -0.153725, -0.893209, 0.579123, 1.375854, -0.640468, 0.493629, 0.230057], "tracked": true, "track_id": 1} +{"t": 16.700318, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009897, -0.028714, 0.402078, 0.297982, -0.264781, 1.033318, 0.330637, -0.266326, -0.074369, -0.145804, -0.884093, 0.570279, 1.386784, -0.637286, 0.494062, 0.227512], "tracked": true, "track_id": 1} +{"t": 16.762398, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010082, -0.028714, 0.402983, 0.296706, -0.258218, 1.04265, 0.330045, -0.258164, -0.073505, -0.145963, -0.88072, 0.561849, 1.398935, -0.635286, 0.49515, 0.225175], "tracked": true, "track_id": 1} +{"t": 16.799229, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010216, -0.028714, 0.401464, 0.297636, -0.259088, 1.043354, 0.331205, -0.258885, -0.073667, -0.157113, -0.887937, 0.559548, 1.397417, -0.636232, 0.496102, 0.224623], "tracked": true, "track_id": 1} +{"t": 16.862883, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010898, -0.028714, 0.399613, 0.299285, -0.258098, 1.04973, 0.334061, -0.254425, -0.073959, -0.196001, -0.915909, 0.560397, 1.386957, -0.640724, 0.497779, 0.225092], "tracked": true, "track_id": 1} +{"t": 16.924936, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011722, -0.028714, 0.394431, 0.303562, -0.259898, 1.057796, 0.339335, -0.249759, -0.075098, -0.254763, -0.959976, 0.563671, 1.365082, -0.647553, 0.498855, 0.226195], "tracked": true, "track_id": 1} +{"t": 16.96098, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012208, -0.028714, 0.392566, 0.305711, -0.259747, 1.065257, 0.342029, -0.243377, -0.075888, -0.279655, -0.978118, 0.564551, 1.356279, -0.650099, 0.499289, 0.226511], "tracked": true, "track_id": 1} +{"t": 17.026495, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012975, -0.028714, 0.388849, 0.309201, -0.261014, 1.072612, 0.34642, -0.238339, -0.076919, -0.329209, -1.012733, 0.559867, 1.344418, -0.653758, 0.500125, 0.225243], "tracked": true, "track_id": 1} +{"t": 17.060722, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.013369, -0.028714, 0.388272, 0.309847, -0.259569, 1.076862, 0.347759, -0.234516, -0.076994, -0.352167, -1.028164, 0.556109, 1.338862, -0.654961, 0.500462, 0.224181], "tracked": true, "track_id": 1} +{"t": 17.096054, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.013772, -0.028714, 0.38674, 0.31245, -0.264619, 1.076607, 0.350504, -0.235725, -0.078321, -0.374035, -1.042216, 0.550801, 1.33482, -0.655624, 0.500753, 0.222658], "tracked": true, "track_id": 1} +{"t": 17.159974, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014465, -0.028714, 0.382182, 0.315527, -0.26426, 1.082428, 0.354432, -0.232187, -0.078678, -0.424385, -1.075769, 0.539336, 1.325905, -0.65732, 0.501193, 0.219344], "tracked": true, "track_id": 1} +{"t": 17.227525, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015187, -0.028714, 0.380959, 0.319081, -0.273583, 1.077729, 0.358425, -0.237706, -0.080699, -0.478711, -1.113193, 0.529437, 1.315079, -0.659428, 0.50153, 0.216476], "tracked": true, "track_id": 1} +{"t": 17.289089, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015912, -0.028714, 0.37865, 0.323107, -0.282478, 1.073674, 0.362789, -0.242671, -0.082666, -0.529897, -1.149298, 0.522412, 1.306595, -0.661702, 0.501736, 0.214437], "tracked": true, "track_id": 1} +{"t": 17.35413, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016334, -0.028714, 0.373731, 0.329183, -0.29776, 1.062211, 0.368051, -0.255447, -0.08549, -0.578343, -1.184163, 0.515423, 1.299604, -0.663851, 0.501828, 0.212393], "tracked": true, "track_id": 1} +{"t": 17.388942, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016705, -0.028714, 0.372409, 0.331615, -0.302629, 1.06148, 0.370507, -0.256895, -0.086733, -0.598651, -1.198194, 0.512269, 1.297751, -0.664468, 0.501785, 0.21146], "tracked": true, "track_id": 1} +{"t": 17.454076, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017141, -0.028714, 0.3708, 0.335365, -0.314941, 1.050055, 0.374014, -0.267825, -0.088926, -0.631854, -1.220367, 0.503685, 1.295653, -0.664812, 0.501612, 0.208913], "tracked": true, "track_id": 1} +{"t": 17.52342, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017534, -0.028714, 0.369001, 0.338138, -0.320745, 1.047461, 0.376763, -0.270814, -0.090242, -0.657467, -1.236844, 0.495757, 1.295409, -0.664659, 0.501314, 0.206542], "tracked": true, "track_id": 1} +{"t": 17.587062, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017775, -0.028714, 0.373124, 0.335115, -0.315711, 1.049876, 0.374949, -0.267397, -0.089208, -0.666472, -1.24222, 0.492763, 1.295923, -0.664574, 0.50123, 0.20565], "tracked": true, "track_id": 1} +{"t": 17.653743, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017552, -0.028714, 0.376614, 0.330385, -0.303168, 1.058907, 0.371097, -0.257535, -0.086808, -0.646679, -1.226062, 0.490565, 1.301801, -0.662855, 0.501134, 0.204991], "tracked": true, "track_id": 1} +{"t": 17.689173, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01734, -0.028714, 0.379749, 0.326786, -0.294792, 1.063936, 0.367964, -0.251281, -0.085162, -0.624024, -1.207924, 0.488992, 1.307488, -0.660821, 0.501049, 0.204518], "tracked": true, "track_id": 1} +{"t": 17.750658, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016578, -0.028714, 0.382714, 0.322782, -0.288266, 1.065039, 0.363507, -0.249306, -0.083501, -0.573305, -1.169123, 0.487894, 1.319947, -0.65702, 0.500859, 0.20417], "tracked": true, "track_id": 1} +{"t": 17.817593, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015691, -0.028714, 0.383869, 0.320562, -0.286928, 1.061713, 0.36016, -0.252281, -0.082719, -0.522158, -1.130849, 0.487881, 1.333705, -0.653397, 0.500472, 0.204116], "tracked": true, "track_id": 1} +{"t": 17.881312, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015318, -0.028714, 0.385158, 0.321222, -0.293928, 1.055166, 0.35975, -0.258003, -0.084029, -0.477456, -1.097354, 0.49083, 1.348953, -0.650148, 0.49952, 0.204859], "tracked": true, "track_id": 1} +{"t": 17.950311, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015017, -0.028714, 0.387745, 0.32065, -0.298392, 1.048227, 0.358478, -0.26263, -0.084737, -0.431678, -1.061148, 0.488896, 1.368128, -0.645177, 0.497482, 0.204023], "tracked": true, "track_id": 1} +{"t": 17.985234, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01494, -0.028714, 0.390119, 0.318981, -0.295159, 1.051266, 0.356907, -0.258883, -0.084276, -0.408729, -1.0422, 0.486127, 1.378678, -0.642006, 0.496108, 0.203029], "tracked": true, "track_id": 1} +{"t": 18.046146, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014687, -0.028714, 0.393693, 0.31735, -0.296295, 1.048334, 0.354827, -0.260486, -0.084401, -0.36559, -1.005377, 0.476131, 1.397334, -0.634987, 0.493768, 0.199783], "tracked": true, "track_id": 1} +{"t": 18.083202, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014563, -0.028714, 0.394771, 0.316512, -0.295724, 1.047644, 0.353886, -0.260844, -0.084186, -0.350036, -0.990953, 0.469245, 1.405091, -0.631725, 0.492588, 0.197604], "tracked": true, "track_id": 1} +{"t": 18.146977, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014611, -0.028714, 0.398912, 0.313546, -0.287651, 1.056643, 0.351423, -0.250257, -0.083196, -0.330905, -0.97183, 0.458914, 1.416546, -0.626975, 0.490585, 0.194304], "tracked": true, "track_id": 1} +{"t": 18.211804, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014678, -0.028714, 0.40153, 0.311052, -0.281996, 1.05965, 0.349544, -0.246389, -0.082038, -0.330922, -0.970421, 0.456328, 1.419532, -0.626425, 0.489947, 0.19346], "tracked": true, "track_id": 1} +{"t": 18.246998, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014761, -0.028714, 0.402295, 0.308435, -0.270601, 1.069504, 0.34788, -0.235646, -0.080091, -0.333778, -0.972452, 0.456832, 1.420137, -0.626814, 0.489688, 0.193574], "tracked": true, "track_id": 1} +{"t": 18.308737, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014974, -0.028714, 0.4023, 0.307362, -0.262435, 1.079827, 0.347644, -0.224997, -0.079081, -0.34724, -0.984533, 0.462719, 1.411771, -0.629744, 0.491366, 0.195525], "tracked": true, "track_id": 1} +{"t": 18.381344, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015058, -0.028714, 0.398717, 0.310079, -0.266643, 1.079158, 0.350131, -0.22759, -0.07998, -0.364471, -1.002153, 0.474387, 1.39728, -0.634657, 0.493842, 0.19928], "tracked": true, "track_id": 1} +{"t": 18.441191, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015103, -0.028714, 0.396614, 0.309848, -0.260861, 1.085575, 0.350372, -0.222131, -0.078993, -0.374222, -1.013271, 0.484022, 1.385304, -0.638254, 0.495869, 0.202379], "tracked": true, "track_id": 1} +{"t": 18.475422, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01526, -0.028714, 0.396831, 0.309181, -0.255276, 1.093111, 0.35024, -0.213916, -0.078424, -0.378196, -1.01803, 0.489691, 1.380136, -0.639924, 0.496705, 0.204155], "tracked": true, "track_id": 1} +{"t": 18.511693, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015301, -0.028714, 0.396098, 0.309742, -0.255225, 1.095018, 0.350808, -0.212461, -0.078599, -0.37906, -1.020809, 0.495723, 1.375096, -0.641497, 0.4975, 0.206034], "tracked": true, "track_id": 1} +{"t": 18.572686, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01545, -0.028714, 0.395438, 0.311083, -0.259525, 1.092138, 0.352116, -0.216134, -0.079384, -0.382568, -1.02765, 0.508079, 1.36577, -0.644755, 0.498796, 0.209837], "tracked": true, "track_id": 1} +{"t": 18.636865, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015437, -0.028714, 0.393431, 0.312415, -0.261521, 1.091803, 0.35324, -0.217735, -0.079762, -0.382269, -1.030262, 0.515801, 1.361501, -0.646686, 0.499612, 0.212215], "tracked": true, "track_id": 1} +{"t": 18.673573, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015366, -0.028714, 0.39294, 0.31311, -0.263932, 1.090198, 0.353628, -0.219748, -0.080208, -0.376637, -1.027468, 0.519638, 1.360321, -0.647107, 0.499981, 0.213392], "tracked": true, "track_id": 1} +{"t": 18.707932, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015342, -0.028714, 0.392913, 0.312266, -0.260842, 1.091848, 0.353026, -0.218109, -0.079513, -0.375897, -1.028099, 0.522787, 1.358938, -0.647847, 0.500266, 0.214355], "tracked": true, "track_id": 1} +{"t": 18.772569, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015295, -0.028714, 0.391108, 0.311829, -0.256446, 1.094892, 0.352864, -0.215905, -0.078508, -0.368665, -1.023741, 0.525978, 1.360197, -0.64789, 0.500515, 0.215326], "tracked": true, "track_id": 1} +{"t": 18.841375, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015111, -0.028714, 0.389822, 0.313913, -0.265004, 1.086851, 0.35404, -0.224583, -0.079891, -0.347534, -1.006295, 0.521694, 1.369551, -0.644621, 0.500032, 0.214003], "tracked": true, "track_id": 1} +{"t": 18.901322, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015136, -0.028714, 0.39217, 0.311381, -0.25471, 1.098307, 0.352083, -0.211092, -0.078627, -0.32388, -0.985117, 0.514241, 1.383973, -0.639764, 0.49843, 0.211601], "tracked": true, "track_id": 1} +{"t": 18.938004, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015048, -0.028714, 0.392965, 0.311623, -0.257943, 1.095201, 0.351968, -0.214124, -0.079181, -0.312354, -0.974767, 0.509768, 1.391463, -0.637328, 0.497449, 0.210158], "tracked": true, "track_id": 1} +{"t": 19.001411, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014788, -0.028714, 0.393685, 0.31257, -0.267292, 1.083616, 0.351977, -0.225751, -0.080411, -0.288997, -0.952769, 0.496897, 1.405276, -0.631602, 0.495643, 0.206136], "tracked": true, "track_id": 1} +{"t": 19.066188, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014722, -0.028714, 0.392623, 0.314472, -0.274259, 1.078219, 0.353256, -0.231945, -0.081651, -0.276598, -0.939202, 0.485657, 1.41512, -0.627375, 0.494078, 0.202626], "tracked": true, "track_id": 1} +{"t": 19.102554, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014877, -0.028714, 0.392875, 0.314587, -0.273182, 1.08123, 0.353628, -0.228831, -0.081741, -0.274828, -0.936714, 0.484056, 1.4184, -0.626477, 0.493434, 0.202071], "tracked": true, "track_id": 1} +{"t": 19.136161, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015022, -0.028714, 0.392179, 0.316132, -0.277038, 1.080168, 0.355044, -0.230367, -0.082674, -0.278431, -0.938833, 0.483662, 1.419584, -0.626592, 0.493042, 0.201903], "tracked": true, "track_id": 1} +{"t": 19.197806, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015106, -0.028714, 0.391968, 0.313519, -0.265511, 1.088216, 0.35351, -0.222083, -0.080367, -0.290867, -0.949462, 0.487155, 1.414461, -0.628961, 0.493873, 0.20304], "tracked": true, "track_id": 1} +{"t": 19.234827, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015116, -0.028714, 0.391363, 0.313008, -0.262324, 1.090637, 0.353268, -0.219938, -0.07971, -0.29965, -0.95725, 0.489846, 1.409506, -0.630744, 0.494625, 0.203929], "tracked": true, "track_id": 1} +{"t": 19.299282, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015369, -0.028714, 0.390382, 0.314315, -0.267444, 1.084095, 0.354769, -0.227237, -0.080262, -0.331157, -0.983399, 0.496011, 1.395989, -0.635658, 0.496102, 0.205935], "tracked": true, "track_id": 1} +{"t": 19.365406, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015608, -0.028714, 0.386595, 0.319224, -0.278351, 1.080371, 0.358916, -0.232786, -0.082744, -0.364089, -1.010846, 0.50227, 1.38072, -0.640675, 0.497577, 0.207969], "tracked": true, "track_id": 1} +{"t": 19.431225, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015817, -0.028714, 0.385262, 0.318807, -0.269183, 1.093308, 0.359216, -0.219729, -0.081755, -0.396737, -1.040445, 0.514784, 1.360785, -0.647051, 0.4989, 0.211823], "tracked": true, "track_id": 1} +{"t": 19.497568, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015939, -0.028714, 0.385008, 0.319624, -0.271242, 1.09261, 0.360053, -0.220469, -0.082263, -0.419738, -1.064378, 0.532328, 1.339636, -0.653596, 0.499433, 0.217052], "tracked": true, "track_id": 1} +{"t": 19.562791, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015997, -0.028714, 0.384371, 0.319156, -0.260483, 1.108482, 0.359934, -0.201359, -0.081597, -0.432279, -1.080797, 0.551787, 1.318765, -0.659407, 0.498795, 0.222692], "tracked": true, "track_id": 1} +{"t": 19.62757, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015956, -0.028714, 0.38398, 0.318264, -0.242533, 1.137828, 0.359295, -0.167598, -0.080731, -0.428454, -1.083727, 0.569256, 1.302036, -0.66312, 0.497327, 0.227638], "tracked": true, "track_id": 1} +{"t": 19.662769, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015959, -0.028714, 0.383911, 0.317637, -0.232961, 1.152491, 0.358895, -0.150253, -0.080183, -0.426536, -1.084627, 0.576483, 1.295506, -0.664592, 0.496731, 0.229686], "tracked": true, "track_id": 1} +{"t": 19.699073, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015845, -0.028714, 0.384111, 0.317002, -0.225074, 1.164954, 0.358226, -0.13536, -0.07981, -0.419014, -1.081065, 0.582545, 1.29104, -0.665343, 0.496188, 0.231398], "tracked": true, "track_id": 1} +{"t": 19.758257, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015707, -0.028714, 0.382431, 0.315463, -0.209153, 1.184218, 0.357097, -0.113523, -0.077982, -0.414098, -1.081004, 0.592878, 1.281659, -0.667388, 0.495075, 0.234291], "tracked": true, "track_id": 1} +{"t": 19.793169, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015664, -0.028714, 0.381621, 0.315167, -0.204412, 1.190347, 0.356894, -0.106886, -0.077455, -0.412102, -1.080858, 0.596761, 1.278541, -0.668143, 0.494789, 0.235396], "tracked": true, "track_id": 1} +{"t": 19.857266, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015601, -0.028714, 0.37933, 0.314207, -0.191435, 1.205012, 0.356344, -0.090224, -0.075816, -0.4149, -1.084713, 0.600943, 1.275351, -0.669581, 0.495046, 0.23666], "tracked": true, "track_id": 1} +{"t": 19.925087, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015544, -0.028714, 0.376385, 0.319152, -0.215846, 1.17911, 0.359778, -0.122082, -0.078832, -0.423989, -1.092176, 0.601079, 1.274275, -0.670734, 0.495787, 0.236797], "tracked": true, "track_id": 1} +{"t": 19.990923, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015252, -0.028714, 0.37628, 0.319083, -0.227616, 1.158105, 0.359177, -0.147679, -0.078947, -0.433631, -1.097764, 0.59251, 1.278545, -0.670292, 0.49721, 0.234462], "tracked": true, "track_id": 1} +{"t": 20.024297, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015239, -0.028714, 0.376109, 0.320986, -0.240447, 1.14282, 0.36044, -0.164839, -0.080478, -0.437775, -1.099058, 0.586489, 1.283812, -0.669414, 0.497989, 0.232793], "tracked": true, "track_id": 1} +{"t": 20.092552, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015011, -0.028714, 0.378146, 0.318506, -0.242989, 1.130405, 0.358128, -0.179198, -0.079349, -0.426705, -1.087956, 0.577421, 1.29462, -0.666591, 0.499191, 0.230283], "tracked": true, "track_id": 1} +{"t": 20.157212, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014877, -0.028714, 0.381121, 0.317403, -0.25179, 1.1135, 0.356811, -0.196675, -0.079653, -0.409828, -1.071579, 0.567107, 1.30993, -0.66262, 0.499979, 0.227353], "tracked": true, "track_id": 1} +{"t": 20.221131, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014687, -0.028714, 0.385202, 0.314555, -0.253265, 1.104266, 0.354054, -0.205476, -0.078936, -0.382282, -1.046455, 0.555123, 1.327791, -0.657008, 0.500261, 0.223865], "tracked": true, "track_id": 1} +{"t": 20.285057, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014608, -0.028714, 0.387558, 0.312108, -0.249045, 1.105047, 0.352007, -0.204364, -0.07784, -0.353298, -1.019532, 0.542217, 1.348474, -0.650647, 0.499598, 0.219983], "tracked": true, "track_id": 1} +{"t": 20.354485, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014599, -0.028714, 0.392109, 0.308793, -0.245735, 1.10295, 0.349186, -0.205144, -0.076765, -0.333827, -0.999787, 0.529391, 1.364799, -0.645299, 0.498774, 0.216102], "tracked": true, "track_id": 1} +{"t": 20.419056, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01489, -0.028714, 0.396717, 0.304331, -0.232259, 1.113195, 0.346193, -0.19171, -0.074557, -0.321721, -0.985711, 0.518926, 1.378019, -0.640866, 0.497756, 0.212891], "tracked": true, "track_id": 1} +{"t": 20.483859, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01501, -0.028714, 0.398251, 0.301967, -0.224511, 1.118076, 0.34469, -0.185533, -0.073086, -0.315963, -0.979483, 0.514996, 1.38335, -0.639125, 0.497794, 0.21174], "tracked": true, "track_id": 1} +{"t": 20.520176, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015021, -0.028714, 0.398841, 0.301316, -0.221732, 1.121318, 0.344212, -0.181794, -0.072757, -0.314052, -0.978597, 0.516658, 1.383002, -0.639336, 0.498184, 0.21228], "tracked": true, "track_id": 1} +{"t": 20.58225, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015249, -0.028714, 0.400305, 0.299455, -0.212213, 1.131795, 0.343263, -0.169164, -0.071608, -0.320648, -0.985294, 0.522733, 1.377693, -0.641345, 0.499083, 0.214185], "tracked": true, "track_id": 1} +{"t": 20.650242, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015405, -0.028714, 0.400036, 0.301939, -0.222612, 1.123579, 0.345274, -0.178237, -0.073481, -0.340965, -1.003378, 0.530128, 1.366663, -0.64532, 0.49997, 0.216476], "tracked": true, "track_id": 1} +{"t": 20.715917, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015554, -0.028714, 0.400419, 0.302741, -0.225986, 1.122033, 0.346092, -0.18029, -0.074205, -0.364116, -1.023191, 0.536015, 1.354976, -0.649197, 0.500649, 0.218296], "tracked": true, "track_id": 1} +{"t": 20.784047, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015923, -0.028714, 0.400716, 0.304616, -0.22844, 1.1271, 0.348088, -0.174736, -0.075653, -0.389182, -1.045272, 0.545823, 1.339051, -0.653779, 0.5009, 0.221213], "tracked": true, "track_id": 1} +{"t": 20.848494, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016097, -0.028714, 0.400468, 0.305095, -0.228026, 1.129544, 0.348817, -0.172248, -0.075856, -0.405573, -1.06278, 0.560975, 1.319565, -0.65882, 0.499892, 0.225538], "tracked": true, "track_id": 1} +{"t": 20.910421, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01626, -0.028714, 0.397522, 0.305022, -0.200038, 1.173201, 0.349475, -0.118964, -0.074589, -0.406473, -1.068671, 0.578137, 1.301684, -0.662551, 0.4977, 0.230299], "tracked": true, "track_id": 1} +{"t": 20.946475, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01642, -0.028714, 0.396579, 0.304571, -0.18725, 1.191365, 0.349627, -0.096538, -0.07376, -0.407487, -1.071579, 0.586087, 1.292939, -0.664179, 0.496347, 0.23246], "tracked": true, "track_id": 1} +{"t": 21.009763, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016521, -0.028714, 0.400591, 0.304208, -0.205219, 1.162186, 0.349016, -0.128516, -0.074865, -0.455032, -1.11316, 0.600687, 1.26056, -0.671395, 0.490046, 0.235931], "tracked": true, "track_id": 1} +{"t": 21.077667, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016323, -0.028714, 0.404677, 0.304905, -0.230565, 1.123974, 0.34844, -0.168859, -0.077046, -0.495233, -1.14922, 0.61464, 1.227694, -0.677935, 0.481674, 0.23894], "tracked": true, "track_id": 1} +{"t": 21.141369, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01593, -0.028714, 0.404137, 0.306447, -0.248305, 1.097389, 0.348755, -0.198485, -0.078391, -0.523784, -1.175325, 0.624455, 1.202711, -0.682766, 0.474851, 0.240935], "tracked": true, "track_id": 1} +{"t": 21.17534, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015875, -0.028714, 0.404561, 0.306226, -0.252508, 1.089192, 0.348443, -0.207877, -0.078399, -0.539766, -1.189267, 0.628428, 1.193069, -0.685023, 0.4728, 0.241836], "tracked": true, "track_id": 1} +{"t": 21.210996, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015748, -0.028714, 0.40329, 0.308064, -0.261845, 1.078275, 0.3496, -0.220066, -0.079552, -0.547595, -1.196466, 0.630853, 1.186835, -0.686396, 0.471517, 0.242381], "tracked": true, "track_id": 1} +{"t": 21.244518, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.0157, -0.028714, 0.398937, 0.310212, -0.259715, 1.087049, 0.35145, -0.213836, -0.07974, -0.535786, -1.187271, 0.630102, 1.192738, -0.685509, 0.473794, 0.242458], "tracked": true, "track_id": 1} +{"t": 21.307142, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015635, -0.028714, 0.394211, 0.310485, -0.238376, 1.120611, 0.352109, -0.17717, -0.078257, -0.498455, -1.158499, 0.629923, 1.207891, -0.682399, 0.478032, 0.242959], "tracked": true, "track_id": 1} +{"t": 21.376995, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015446, -0.028714, 0.388566, 0.311917, -0.229512, 1.136606, 0.353337, -0.163357, -0.077456, -0.470693, -1.13628, 0.625756, 1.22452, -0.679521, 0.482691, 0.242343], "tracked": true, "track_id": 1} +{"t": 21.439523, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015393, -0.028714, 0.386524, 0.314099, -0.23779, 1.130227, 0.354969, -0.173532, -0.07856, -0.461054, -1.125693, 0.615243, 1.239817, -0.6768, 0.487163, 0.239835], "tracked": true, "track_id": 1} +{"t": 21.505617, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015184, -0.028714, 0.385783, 0.31483, -0.245361, 1.119874, 0.355159, -0.186843, -0.079047, -0.442873, -1.108529, 0.604038, 1.257504, -0.673099, 0.491009, 0.237042], "tracked": true, "track_id": 1} +{"t": 21.571732, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014837, -0.028714, 0.383634, 0.317383, -0.25934, 1.103138, 0.356422, -0.206314, -0.080613, -0.416214, -1.085081, 0.592873, 1.277417, -0.66852, 0.494087, 0.234161], "tracked": true, "track_id": 1} +{"t": 21.638143, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014625, -0.028714, 0.385888, 0.313651, -0.249869, 1.107971, 0.353265, -0.201187, -0.078498, -0.381604, -1.053526, 0.577334, 1.303568, -0.661538, 0.496165, 0.229862], "tracked": true, "track_id": 1} +{"t": 21.701214, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014439, -0.028714, 0.38827, 0.311001, -0.24627, 1.106854, 0.350848, -0.202207, -0.077306, -0.348465, -1.022875, 0.561469, 1.328938, -0.654374, 0.497136, 0.225323], "tracked": true, "track_id": 1} +{"t": 21.765661, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014286, -0.028714, 0.389189, 0.310877, -0.251005, 1.099533, 0.350352, -0.210218, -0.077651, -0.324877, -1.000479, 0.54852, 1.349205, -0.648892, 0.497514, 0.221564], "tracked": true, "track_id": 1} +{"t": 21.801324, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014248, -0.028714, 0.390342, 0.309531, -0.247221, 1.102407, 0.349238, -0.206813, -0.076983, -0.314227, -0.990337, 0.542836, 1.358153, -0.646367, 0.497529, 0.219894], "tracked": true, "track_id": 1} +{"t": 21.83583, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01413, -0.028714, 0.390833, 0.307453, -0.239948, 1.10704, 0.347557, -0.201688, -0.075514, -0.304415, -0.981202, 0.537515, 1.3658, -0.644152, 0.497566, 0.218334], "tracked": true, "track_id": 1} +{"t": 21.898502, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014221, -0.028714, 0.389458, 0.311636, -0.25447, 1.098259, 0.350717, -0.212006, -0.078437, -0.293106, -0.970161, 0.531798, 1.376788, -0.641371, 0.497651, 0.216664], "tracked": true, "track_id": 1} +{"t": 21.936442, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014285, -0.028714, 0.389962, 0.311033, -0.253418, 1.097927, 0.350392, -0.212352, -0.078082, -0.289776, -0.967167, 0.53111, 1.379986, -0.640757, 0.497838, 0.216486], "tracked": true, "track_id": 1} +{"t": 21.99813, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014622, -0.028714, 0.392056, 0.309232, -0.244304, 1.109179, 0.349631, -0.199043, -0.077141, -0.294968, -0.971238, 0.533942, 1.380015, -0.641682, 0.498524, 0.217408], "tracked": true, "track_id": 1} +{"t": 22.066016, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014651, -0.028714, 0.390316, 0.312628, -0.257366, 1.097953, 0.352169, -0.21188, -0.079305, -0.30882, -0.983862, 0.539416, 1.373476, -0.644753, 0.499456, 0.21914], "tracked": true, "track_id": 1} +{"t": 22.129636, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015014, -0.028714, 0.389058, 0.313904, -0.256904, 1.102359, 0.353912, -0.208163, -0.079655, -0.328943, -1.001635, 0.548239, 1.359924, -0.648762, 0.500187, 0.221831], "tracked": true, "track_id": 1} +{"t": 22.194319, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015328, -0.028714, 0.387437, 0.317561, -0.265214, 1.101551, 0.357175, -0.209834, -0.081881, -0.350759, -1.021144, 0.557851, 1.344711, -0.65313, 0.500526, 0.224702], "tracked": true, "track_id": 1} +{"t": 22.230961, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015527, -0.028714, 0.384087, 0.322898, -0.279392, 1.094224, 0.361421, -0.218753, -0.084885, -0.364307, -1.032051, 0.560297, 1.338324, -0.654962, 0.500708, 0.225445], "tracked": true, "track_id": 1} +{"t": 22.293857, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015835, -0.028714, 0.381327, 0.325763, -0.281069, 1.100256, 0.364228, -0.213967, -0.086004, -0.39095, -1.055477, 0.570217, 1.321558, -0.659763, 0.500343, 0.228315], "tracked": true, "track_id": 1} +{"t": 22.328304, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015919, -0.028714, 0.380162, 0.32767, -0.285482, 1.099404, 0.365788, -0.2156, -0.087088, -0.399705, -1.063957, 0.575801, 1.313006, -0.661876, 0.499767, 0.229882], "tracked": true, "track_id": 1} +{"t": 22.364851, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016196, -0.028714, 0.378768, 0.330236, -0.29202, 1.096302, 0.36817, -0.219581, -0.088491, -0.412981, -1.076064, 0.583243, 1.302135, -0.664551, 0.498676, 0.231928], "tracked": true, "track_id": 1} +{"t": 22.429703, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01634, -0.028714, 0.378667, 0.329849, -0.286597, 1.104672, 0.36824, -0.210799, -0.088044, -0.426374, -1.089892, 0.594836, 1.285237, -0.668335, 0.496552, 0.23506], "tracked": true, "track_id": 1} +{"t": 22.494214, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01641, -0.028714, 0.381407, 0.330296, -0.297008, 1.090434, 0.368334, -0.223921, -0.08939, -0.454237, -1.11544, 0.607863, 1.259217, -0.673504, 0.490913, 0.238155], "tracked": true, "track_id": 1} +{"t": 22.557556, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016458, -0.028714, 0.388634, 0.325521, -0.297509, 1.076274, 0.364403, -0.234839, -0.088111, -0.48873, -1.146062, 0.620706, 1.230205, -0.679046, 0.483587, 0.240974], "tracked": true, "track_id": 1} +{"t": 22.624717, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016149, -0.028714, 0.392474, 0.323027, -0.301772, 1.061459, 0.361686, -0.247644, -0.08769, -0.50676, -1.163345, 0.629074, 1.2112, -0.682682, 0.478607, 0.242785], "tracked": true, "track_id": 1} +{"t": 22.691558, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016109, -0.028714, 0.392785, 0.323331, -0.303128, 1.061092, 0.361799, -0.247553, -0.088101, -0.508121, -1.165365, 0.631523, 1.207796, -0.683469, 0.478534, 0.243495], "tracked": true, "track_id": 1} +{"t": 22.757469, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015846, -0.028714, 0.393062, 0.32225, -0.300261, 1.062213, 0.360466, -0.246014, -0.087459, -0.498021, -1.158457, 0.632278, 1.209637, -0.683129, 0.479377, 0.243828], "tracked": true, "track_id": 1} +{"t": 22.821198, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01561, -0.028714, 0.390926, 0.31966, -0.284652, 1.077062, 0.358584, -0.232089, -0.084688, -0.479349, -1.14329, 0.627633, 1.223332, -0.681031, 0.483514, 0.243002], "tracked": true, "track_id": 1} +{"t": 22.855497, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015489, -0.028714, 0.38849, 0.320421, -0.283697, 1.079178, 0.359133, -0.231457, -0.08449, -0.472038, -1.136822, 0.623892, 1.230751, -0.679846, 0.485601, 0.242175], "tracked": true, "track_id": 1} +{"t": 22.922471, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015146, -0.028714, 0.38491, 0.321584, -0.284672, 1.07757, 0.35964, -0.23468, -0.084356, -0.456219, -1.121789, 0.612132, 1.250189, -0.676437, 0.489892, 0.239277], "tracked": true, "track_id": 1} +{"t": 22.985032, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015001, -0.028714, 0.387075, 0.319119, -0.279694, 1.079419, 0.357489, -0.232127, -0.083225, -0.425869, -1.096352, 0.605017, 1.270494, -0.672113, 0.493196, 0.237616], "tracked": true, "track_id": 1} +{"t": 23.054405, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014586, -0.028714, 0.387331, 0.317068, -0.273982, 1.082084, 0.355281, -0.229375, -0.081905, -0.387315, -1.063868, 0.593779, 1.294499, -0.66606, 0.495742, 0.234644], "tracked": true, "track_id": 1} +{"t": 23.120917, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014282, -0.028714, 0.389025, 0.313949, -0.265815, 1.086477, 0.352393, -0.224459, -0.080146, -0.348961, -1.030584, 0.580614, 1.320011, -0.659121, 0.497222, 0.230965], "tracked": true, "track_id": 1} +{"t": 23.181346, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.013943, -0.028714, 0.391329, 0.311122, -0.259551, 1.089841, 0.349524, -0.220167, -0.078864, -0.302873, -0.991507, 0.567231, 1.348651, -0.650811, 0.497351, 0.227046], "tracked": true, "track_id": 1} +{"t": 23.217415, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.013972, -0.028714, 0.395313, 0.311186, -0.272071, 1.068317, 0.349, -0.237178, -0.080323, -0.296451, -0.982933, 0.557601, 1.358669, -0.647799, 0.497139, 0.224186], "tracked": true, "track_id": 1} +{"t": 23.25145, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014098, -0.028714, 0.399916, 0.309894, -0.278798, 1.053671, 0.34763, -0.248681, -0.080798, -0.288231, -0.973495, 0.550014, 1.367461, -0.644852, 0.497031, 0.22194], "tracked": true, "track_id": 1} +{"t": 23.31571, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014183, -0.028714, 0.405526, 0.309389, -0.2923, 1.030587, 0.346584, -0.26737, -0.082326, -0.272351, -0.954079, 0.530995, 1.385914, -0.638238, 0.495876, 0.216195], "tracked": true, "track_id": 1} +{"t": 23.382028, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014077, -0.028714, 0.410984, 0.305802, -0.293253, 1.017904, 0.343008, -0.277293, -0.081309, -0.25531, -0.934988, 0.513659, 1.401815, -0.632103, 0.494662, 0.210938], "tracked": true, "track_id": 1} +{"t": 23.44928, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.013918, -0.028714, 0.414878, 0.305381, -0.303432, 0.998407, 0.341704, -0.291761, -0.082412, -0.239775, -0.919361, 0.502221, 1.414378, -0.627614, 0.493677, 0.207445], "tracked": true, "track_id": 1} +{"t": 23.484133, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014047, -0.028714, 0.417639, 0.303088, -0.299144, 0.999918, 0.339918, -0.290025, -0.081378, -0.234812, -0.913777, 0.498295, 1.418723, -0.625817, 0.493386, 0.206252], "tracked": true, "track_id": 1} +{"t": 23.544763, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01403, -0.028714, 0.419057, 0.305061, -0.312077, 0.983712, 0.340998, -0.302532, -0.083546, -0.231906, -0.908749, 0.490683, 1.424709, -0.623706, 0.492857, 0.203944], "tracked": true, "track_id": 1} +{"t": 23.608988, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014094, -0.028714, 0.42048, 0.307365, -0.325401, 0.967421, 0.342446, -0.314223, -0.085937, -0.234725, -0.910569, 0.49045, 1.425892, -0.624008, 0.493032, 0.203899], "tracked": true, "track_id": 1} +{"t": 23.644854, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014119, -0.028714, 0.420756, 0.307962, -0.328915, 0.963129, 0.34287, -0.317631, -0.086525, -0.239807, -0.915736, 0.494266, 1.42417, -0.625602, 0.493439, 0.205074], "tracked": true, "track_id": 1} +{"t": 23.710949, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014085, -0.028714, 0.41608, 0.307276, -0.306856, 1.002657, 0.343231, -0.284531, -0.084364, -0.227066, -0.910372, 0.505717, 1.425089, -0.626738, 0.494254, 0.208549], "tracked": true, "track_id": 1} +{"t": 23.779351, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.013902, -0.028714, 0.40982, 0.306627, -0.285611, 1.035663, 0.343466, -0.256862, -0.081732, -0.223931, -0.913023, 0.517956, 1.418879, -0.629713, 0.495851, 0.212357], "tracked": true, "track_id": 1} +{"t": 23.843681, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.013745, -0.028714, 0.404021, 0.305656, -0.267586, 1.059301, 0.343431, -0.237474, -0.078965, -0.233413, -0.925677, 0.531675, 1.407481, -0.634659, 0.49746, 0.216602], "tracked": true, "track_id": 1} +{"t": 23.909276, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.013542, -0.028714, 0.399164, 0.306231, -0.261035, 1.06995, 0.344155, -0.231314, -0.077844, -0.248722, -0.942902, 0.545409, 1.391311, -0.640356, 0.498782, 0.220815], "tracked": true, "track_id": 1} +{"t": 23.973505, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.013426, -0.028714, 0.393878, 0.307288, -0.252194, 1.085867, 0.345364, -0.218773, -0.076883, -0.269166, -0.962685, 0.555947, 1.373478, -0.645682, 0.499593, 0.22402], "tracked": true, "track_id": 1} +{"t": 24.036756, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.013166, -0.028714, 0.388929, 0.308724, -0.249551, 1.091829, 0.346462, -0.216126, -0.076451, -0.295461, -0.986784, 0.564742, 1.356375, -0.651373, 0.500038, 0.226665], "tracked": true, "track_id": 1} +{"t": 24.07309, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.013012, -0.028714, 0.388016, 0.308118, -0.245348, 1.0965, 0.345896, -0.212186, -0.07573, -0.299943, -0.992262, 0.569481, 1.348771, -0.6533, 0.499939, 0.228046], "tracked": true, "track_id": 1} +{"t": 24.106809, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.013006, -0.028714, 0.386816, 0.308329, -0.2413, 1.104002, 0.346199, -0.205021, -0.075476, -0.305139, -0.998343, 0.575643, 1.339771, -0.655367, 0.499436, 0.229792], "tracked": true, "track_id": 1} +{"t": 24.140869, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012864, -0.028714, 0.386041, 0.306222, -0.231344, 1.111567, 0.344628, -0.197411, -0.073543, -0.311076, -1.005093, 0.581018, 1.331371, -0.657525, 0.498914, 0.231305], "tracked": true, "track_id": 1} +{"t": 24.20615, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012663, -0.028714, 0.383457, 0.308953, -0.240023, 1.105694, 0.346383, -0.205683, -0.075014, -0.315067, -1.012626, 0.59334, 1.31349, -0.661023, 0.496532, 0.234618], "tracked": true, "track_id": 1} +{"t": 24.269368, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012344, -0.028714, 0.38124, 0.310224, -0.244902, 1.10032, 0.34687, -0.213049, -0.075486, -0.315667, -1.016669, 0.602091, 1.300178, -0.663484, 0.494534, 0.23693], "tracked": true, "track_id": 1} +{"t": 24.337953, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012276, -0.028714, 0.381278, 0.308808, -0.239748, 1.103771, 0.345813, -0.209938, -0.074377, -0.318572, -1.020959, 0.607843, 1.291857, -0.665225, 0.493654, 0.238507], "tracked": true, "track_id": 1} +{"t": 24.371636, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012189, -0.028714, 0.37946, 0.309583, -0.240757, 1.102849, 0.346355, -0.211997, -0.074405, -0.321927, -1.024229, 0.609158, 1.289178, -0.66606, 0.493606, 0.238888], "tracked": true, "track_id": 1} +{"t": 24.435375, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012079, -0.028714, 0.379884, 0.309319, -0.24152, 1.101574, 0.345931, -0.213535, -0.074428, -0.321951, -1.024505, 0.608681, 1.290509, -0.666245, 0.494567, 0.238873], "tracked": true, "track_id": 1} +{"t": 24.503227, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012009, -0.028714, 0.379895, 0.311468, -0.253612, 1.088746, 0.347238, -0.226592, -0.076278, -0.330004, -1.029744, 0.604755, 1.293279, -0.666497, 0.495909, 0.237894], "tracked": true, "track_id": 1} +{"t": 24.565502, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011904, -0.028714, 0.381591, 0.310309, -0.256169, 1.080136, 0.34606, -0.23437, -0.076013, -0.336109, -1.033123, 0.59955, 1.298516, -0.666281, 0.497291, 0.236544], "tracked": true, "track_id": 1} +{"t": 24.632691, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011818, -0.028714, 0.3842, 0.307598, -0.250789, 1.081775, 0.343752, -0.231786, -0.074768, -0.321051, -1.020197, 0.594594, 1.311208, -0.663633, 0.498643, 0.235263], "tracked": true, "track_id": 1} +{"t": 24.699836, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011652, -0.028714, 0.386898, 0.305082, -0.247682, 1.080231, 0.341382, -0.232468, -0.073765, -0.297147, -1.000305, 0.588432, 1.326221, -0.659649, 0.499672, 0.233585], "tracked": true, "track_id": 1} +{"t": 24.765115, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011547, -0.028714, 0.391572, 0.299075, -0.228083, 1.095749, 0.336476, -0.213379, -0.070496, -0.270664, -0.977226, 0.579279, 1.3457, -0.654376, 0.500026, 0.230939], "tracked": true, "track_id": 1} +{"t": 24.79848, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011439, -0.028714, 0.391863, 0.299905, -0.234798, 1.087392, 0.336781, -0.221787, -0.071372, -0.259963, -0.967381, 0.57369, 1.355059, -0.65189, 0.499993, 0.229291], "tracked": true, "track_id": 1} +{"t": 24.833796, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011396, -0.028714, 0.39284, 0.298776, -0.230969, 1.091262, 0.335806, -0.21745, -0.070813, -0.245254, -0.953651, 0.566032, 1.365443, -0.648207, 0.499777, 0.22701], "tracked": true, "track_id": 1} +{"t": 24.89592, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011599, -0.028714, 0.399207, 0.296357, -0.235047, 1.078504, 0.33348, -0.226197, -0.070869, -0.227337, -0.934183, 0.551096, 1.383156, -0.641912, 0.498934, 0.222507], "tracked": true, "track_id": 1} +{"t": 24.930721, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011662, -0.028714, 0.403425, 0.296272, -0.24627, 1.059541, 0.332775, -0.241259, -0.072201, -0.225116, -0.929257, 0.542708, 1.389311, -0.639554, 0.498541, 0.219989], "tracked": true, "track_id": 1} +{"t": 24.994086, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01194, -0.028714, 0.410009, 0.297283, -0.266838, 1.029326, 0.332843, -0.265071, -0.075138, -0.219626, -0.918994, 0.527978, 1.399411, -0.634904, 0.497926, 0.215576], "tracked": true, "track_id": 1} +{"t": 25.061254, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012067, -0.028714, 0.412652, 0.300188, -0.286809, 1.004472, 0.334647, -0.284928, -0.078416, -0.21209, -0.908235, 0.514907, 1.407811, -0.6306, 0.497414, 0.211665], "tracked": true, "track_id": 1} +{"t": 25.126959, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012136, -0.028714, 0.416262, 0.300049, -0.296722, 0.986216, 0.334031, -0.298997, -0.079493, -0.209377, -0.904092, 0.509601, 1.411324, -0.628925, 0.497457, 0.21011], "tracked": true, "track_id": 1} +{"t": 25.196557, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012523, -0.028714, 0.42012, 0.29951, -0.301251, 0.979735, 0.333765, -0.304264, -0.080136, -0.212431, -0.905211, 0.509373, 1.413708, -0.628648, 0.497292, 0.210021], "tracked": true, "track_id": 1} +{"t": 25.258915, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012339, -0.028714, 0.415044, 0.298792, -0.282783, 1.010551, 0.333903, -0.279566, -0.077932, -0.198161, -0.898041, 0.517769, 1.416661, -0.629005, 0.497611, 0.212532], "tracked": true, "track_id": 1} +{"t": 25.327413, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012192, -0.028714, 0.408298, 0.299709, -0.271234, 1.031233, 0.335395, -0.264922, -0.07645, -0.200209, -0.904546, 0.530471, 1.411179, -0.632656, 0.49854, 0.21639], "tracked": true, "track_id": 1} +{"t": 25.388686, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012163, -0.028714, 0.403197, 0.301335, -0.266513, 1.043291, 0.337306, -0.257373, -0.076049, -0.20473, -0.913588, 0.545873, 1.400003, -0.637079, 0.499593, 0.221057], "tracked": true, "track_id": 1} +{"t": 25.453735, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012049, -0.028714, 0.39853, 0.302471, -0.259398, 1.058003, 0.338594, -0.246087, -0.075431, -0.217578, -0.927812, 0.557561, 1.386012, -0.641804, 0.500303, 0.224587], "tracked": true, "track_id": 1} +{"t": 25.489066, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01208, -0.028714, 0.396472, 0.303995, -0.260743, 1.060572, 0.340002, -0.245119, -0.075953, -0.230535, -0.939361, 0.562499, 1.377652, -0.644593, 0.500513, 0.226067], "tracked": true, "track_id": 1} +{"t": 25.523514, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012026, -0.028714, 0.394311, 0.305104, -0.260732, 1.063606, 0.34096, -0.243625, -0.076145, -0.242028, -0.950148, 0.567899, 1.36824, -0.647404, 0.500458, 0.227648], "tracked": true, "track_id": 1} +{"t": 25.587096, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01203, -0.028714, 0.389344, 0.309194, -0.266309, 1.066397, 0.344386, -0.243861, -0.077755, -0.26527, -0.971181, 0.577366, 1.3512, -0.652501, 0.500207, 0.2304], "tracked": true, "track_id": 1} +{"t": 25.623108, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011942, -0.028714, 0.387373, 0.30991, -0.265272, 1.069564, 0.34496, -0.241926, -0.077703, -0.271837, -0.978446, 0.583337, 1.343204, -0.654837, 0.49978, 0.2321], "tracked": true, "track_id": 1} +{"t": 25.687678, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011883, -0.028714, 0.383818, 0.312509, -0.268633, 1.070922, 0.347046, -0.242489, -0.078617, -0.286184, -0.993752, 0.596273, 1.323134, -0.659516, 0.497454, 0.235601], "tracked": true, "track_id": 1} +{"t": 25.753524, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011895, -0.028714, 0.381791, 0.312426, -0.262648, 1.079314, 0.347304, -0.235204, -0.07781, -0.290857, -1.001166, 0.608412, 1.30778, -0.662737, 0.495133, 0.238868], "tracked": true, "track_id": 1} +{"t": 25.817545, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011666, -0.028714, 0.383081, 0.312763, -0.272469, 1.062139, 0.34689, -0.250372, -0.078715, -0.309635, -1.019494, 0.61924, 1.28753, -0.667345, 0.491138, 0.241531], "tracked": true, "track_id": 1} +{"t": 25.883702, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011188, -0.028714, 0.385826, 0.311224, -0.280509, 1.041059, 0.344553, -0.268065, -0.078767, -0.328278, -1.037386, 0.627771, 1.267032, -0.671687, 0.486286, 0.243405], "tracked": true, "track_id": 1} +{"t": 25.918869, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010983, -0.028714, 0.383222, 0.312365, -0.280847, 1.043216, 0.345221, -0.267675, -0.078918, -0.323466, -1.034476, 0.628428, 1.267465, -0.671693, 0.486738, 0.243658], "tracked": true, "track_id": 1} +{"t": 25.981413, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010788, -0.028714, 0.380765, 0.313049, -0.279613, 1.046575, 0.345618, -0.266236, -0.078743, -0.320479, -1.033174, 0.629637, 1.267478, -0.672089, 0.487549, 0.244119], "tracked": true, "track_id": 1} +{"t": 26.050091, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010682, -0.028714, 0.379825, 0.311288, -0.265499, 1.065772, 0.34437, -0.24768, -0.077017, -0.313659, -1.027374, 0.626361, 1.275392, -0.670989, 0.489934, 0.243467], "tracked": true, "track_id": 1} +{"t": 26.116636, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010506, -0.028714, 0.380247, 0.309788, -0.260011, 1.071448, 0.34298, -0.242699, -0.076054, -0.302564, -1.017452, 0.620081, 1.286468, -0.668781, 0.492455, 0.24195], "tracked": true, "track_id": 1} +{"t": 26.184148, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01041, -0.028714, 0.382996, 0.307016, -0.251991, 1.07923, 0.340598, -0.234159, -0.074812, -0.28708, -1.003883, 0.613586, 1.299014, -0.665794, 0.494701, 0.240333], "tracked": true, "track_id": 1} +{"t": 26.246037, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010171, -0.028714, 0.385694, 0.305757, -0.254089, 1.073783, 0.338912, -0.238208, -0.0749, -0.263604, -0.985734, 0.610203, 1.31392, -0.66267, 0.496645, 0.239592], "tracked": true, "track_id": 1} +{"t": 26.310637, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009992, -0.028714, 0.387981, 0.303756, -0.252112, 1.072157, 0.336901, -0.239302, -0.074175, -0.235176, -0.963126, 0.605004, 1.332526, -0.658223, 0.498203, 0.238267], "tracked": true, "track_id": 1} +{"t": 26.345814, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009851, -0.028714, 0.388553, 0.302316, -0.247177, 1.076284, 0.335576, -0.235047, -0.07328, -0.218073, -0.949497, 0.601396, 1.34203, -0.655375, 0.498824, 0.237287], "tracked": true, "track_id": 1} +{"t": 26.409023, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00975, -0.028714, 0.393712, 0.303601, -0.267888, 1.044515, 0.335337, -0.25936, -0.076193, -0.197163, -0.930069, 0.589925, 1.36049, -0.65016, 0.499505, 0.234002], "tracked": true, "track_id": 1} +{"t": 26.477113, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01007, -0.028714, 0.401674, 0.30384, -0.287736, 1.011224, 0.334745, -0.283235, -0.07891, -0.186274, -0.915918, 0.575674, 1.379109, -0.644816, 0.4991, 0.229758], "tracked": true, "track_id": 1} +{"t": 26.54293, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010424, -0.028714, 0.40844, 0.302426, -0.296423, 0.994071, 0.333298, -0.295893, -0.07981, -0.172029, -0.898611, 0.559862, 1.398007, -0.638417, 0.497974, 0.22496], "tracked": true, "track_id": 1} +{"t": 26.611655, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010676, -0.028714, 0.412119, 0.304, -0.310627, 0.975445, 0.334255, -0.30931, -0.082234, -0.160673, -0.882324, 0.540139, 1.413947, -0.631634, 0.496633, 0.218984], "tracked": true, "track_id": 1} +{"t": 26.674925, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010869, -0.028714, 0.415555, 0.30424, -0.318992, 0.962326, 0.334194, -0.318567, -0.083484, -0.147513, -0.866661, 0.525529, 1.42939, -0.625794, 0.494858, 0.214455], "tracked": true, "track_id": 1} +{"t": 26.738014, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011109, -0.028714, 0.418205, 0.303773, -0.321687, 0.9583, 0.333912, -0.321803, -0.083854, -0.136149, -0.853969, 0.51568, 1.441533, -0.62125, 0.493397, 0.211367], "tracked": true, "track_id": 1} +{"t": 26.772968, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011253, -0.028714, 0.418191, 0.304107, -0.322736, 0.95793, 0.334488, -0.322618, -0.084056, -0.133544, -0.850341, 0.512164, 1.445687, -0.619749, 0.49288, 0.210265], "tracked": true, "track_id": 1} +{"t": 26.836814, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011568, -0.028714, 0.418446, 0.306274, -0.330558, 0.951831, 0.33662, -0.326994, -0.085785, -0.139434, -0.850806, 0.504023, 1.449871, -0.618113, 0.492082, 0.207766], "tracked": true, "track_id": 1} +{"t": 26.87051, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01164, -0.028714, 0.419028, 0.306217, -0.331865, 0.948893, 0.336637, -0.32909, -0.085895, -0.1451, -0.853627, 0.500779, 1.449888, -0.61806, 0.492029, 0.206805], "tracked": true, "track_id": 1} +{"t": 26.906301, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01177, -0.028714, 0.419777, 0.305598, -0.330361, 0.950278, 0.336367, -0.328269, -0.08556, -0.150926, -0.856992, 0.499039, 1.448911, -0.618301, 0.492199, 0.206316], "tracked": true, "track_id": 1} +{"t": 26.940357, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011797, -0.028714, 0.420673, 0.305551, -0.332045, 0.947284, 0.336212, -0.33019, -0.085804, -0.15689, -0.861747, 0.500057, 1.44678, -0.619408, 0.49262, 0.20667], "tracked": true, "track_id": 1} +{"t": 27.003269, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011506, -0.028714, 0.413153, 0.304075, -0.307129, 0.984807, 0.335989, -0.301824, -0.082184, -0.151469, -0.862806, 0.512073, 1.446179, -0.622074, 0.493354, 0.2103], "tracked": true, "track_id": 1} +{"t": 27.038491, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011411, -0.028714, 0.410683, 0.303321, -0.296484, 1.001266, 0.335753, -0.288653, -0.080774, -0.153341, -0.867248, 0.519728, 1.442392, -0.624415, 0.494207, 0.212663], "tracked": true, "track_id": 1} +{"t": 27.101585, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011157, -0.028714, 0.406851, 0.299391, -0.270283, 1.031214, 0.333321, -0.263488, -0.076358, -0.160853, -0.879622, 0.536381, 1.430053, -0.630073, 0.496161, 0.217817], "tracked": true, "track_id": 1} +{"t": 27.168714, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010982, -0.028714, 0.400145, 0.302138, -0.270465, 1.036424, 0.335862, -0.263485, -0.076412, -0.186236, -0.904818, 0.551753, 1.409369, -0.637582, 0.497866, 0.222561], "tracked": true, "track_id": 1} +{"t": 27.202816, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011013, -0.028714, 0.398246, 0.301923, -0.264285, 1.045679, 0.336109, -0.256162, -0.075551, -0.202551, -0.919513, 0.558436, 1.397838, -0.641298, 0.498444, 0.224602], "tracked": true, "track_id": 1} +{"t": 27.23644, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011083, -0.028714, 0.395887, 0.302734, -0.261312, 1.052827, 0.337165, -0.251047, -0.075346, -0.220989, -0.935435, 0.564172, 1.387303, -0.644938, 0.498954, 0.226356], "tracked": true, "track_id": 1} +{"t": 27.300143, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011015, -0.028714, 0.389752, 0.30612, -0.263595, 1.057088, 0.340143, -0.251082, -0.076012, -0.244162, -0.9581, 0.578324, 1.363892, -0.65135, 0.498689, 0.230483], "tracked": true, "track_id": 1} +{"t": 27.335295, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010964, -0.028714, 0.388162, 0.306267, -0.259949, 1.063477, 0.340384, -0.245963, -0.075609, -0.250557, -0.965762, 0.586419, 1.352, -0.654107, 0.497847, 0.232754], "tracked": true, "track_id": 1} +{"t": 27.397532, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010985, -0.028714, 0.388695, 0.305531, -0.25747, 1.065589, 0.339921, -0.243577, -0.075192, -0.274609, -0.989328, 0.603128, 1.322146, -0.6605, 0.49367, 0.237122], "tracked": true, "track_id": 1} +{"t": 27.466371, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010563, -0.028714, 0.387815, 0.306055, -0.265458, 1.050764, 0.339565, -0.258256, -0.075623, -0.304512, -1.017365, 0.616929, 1.291068, -0.667236, 0.487787, 0.240413], "tracked": true, "track_id": 1} +{"t": 27.529229, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010245, -0.028714, 0.387577, 0.305878, -0.270653, 1.038602, 0.338865, -0.269925, -0.075625, -0.325812, -1.037702, 0.628645, 1.264518, -0.67228, 0.481427, 0.243027], "tracked": true, "track_id": 1} +{"t": 27.594884, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009951, -0.028714, 0.385757, 0.306761, -0.276494, 1.027325, 0.339123, -0.280783, -0.075924, -0.345918, -1.056533, 0.638599, 1.241644, -0.676681, 0.475332, 0.245158], "tracked": true, "track_id": 1} +{"t": 27.630494, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009769, -0.028714, 0.385487, 0.306702, -0.278127, 1.023388, 0.338757, -0.284567, -0.07591, -0.350264, -1.061448, 0.643122, 1.232374, -0.678222, 0.472328, 0.246096], "tracked": true, "track_id": 1} +{"t": 27.697062, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009407, -0.028714, 0.38325, 0.306803, -0.278966, 1.018672, 0.33839, -0.289941, -0.075454, -0.35964, -1.071606, 0.651422, 1.215549, -0.681174, 0.466551, 0.247782], "tracked": true, "track_id": 1} +{"t": 27.762609, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009389, -0.028714, 0.385692, 0.30572, -0.282433, 1.007741, 0.337274, -0.297937, -0.075428, -0.355421, -1.070053, 0.657809, 1.207173, -0.68196, 0.463235, 0.249227], "tracked": true, "track_id": 1} +{"t": 27.828029, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009693, -0.028714, 0.390381, 0.305442, -0.290472, 0.994445, 0.337027, -0.306719, -0.076645, -0.341066, -1.05976, 0.663109, 1.205196, -0.681106, 0.461874, 0.250608], "tracked": true, "track_id": 1} +{"t": 27.893473, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010076, -0.028714, 0.39388, 0.303121, -0.287776, 0.992005, 0.335765, -0.30794, -0.075692, -0.333134, -1.054063, 0.668334, 1.201024, -0.680715, 0.45957, 0.251843], "tracked": true, "track_id": 1} +{"t": 27.957862, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01017, -0.028714, 0.39671, 0.301692, -0.288099, 0.98745, 0.334573, -0.310694, -0.075427, -0.324908, -1.048327, 0.67128, 1.1998, -0.680301, 0.458662, 0.252591], "tracked": true, "track_id": 1} +{"t": 27.992072, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010225, -0.028714, 0.39895, 0.300528, -0.288142, 0.984052, 0.333534, -0.312579, -0.075194, -0.320809, -1.045404, 0.672781, 1.198695, -0.680041, 0.457815, 0.252922], "tracked": true, "track_id": 1} +{"t": 28.059676, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010337, -0.028714, 0.401185, 0.297697, -0.280234, 0.989874, 0.331532, -0.307426, -0.073541, -0.311309, -1.038259, 0.67396, 1.200655, -0.679139, 0.458287, 0.25333], "tracked": true, "track_id": 1} +{"t": 28.120858, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010118, -0.028714, 0.401945, 0.297918, -0.2849, 0.981584, 0.331105, -0.313403, -0.074132, -0.310953, -1.038384, 0.67256, 1.204119, -0.679369, 0.460508, 0.253209], "tracked": true, "track_id": 1} +{"t": 28.189677, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009465, -0.028714, 0.396166, 0.298632, -0.278736, 0.99266, 0.331117, -0.307001, -0.073156, -0.322536, -1.048408, 0.670673, 1.202025, -0.681212, 0.460988, 0.252717], "tracked": true, "track_id": 1} +{"t": 28.25371, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009191, -0.028714, 0.390886, 0.298951, -0.26537, 1.017048, 0.331539, -0.287702, -0.071748, -0.309272, -1.037449, 0.663733, 1.218053, -0.679173, 0.467402, 0.251514], "tracked": true, "track_id": 1} +{"t": 28.321663, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009084, -0.028714, 0.389398, 0.29797, -0.257789, 1.026976, 0.33092, -0.280278, -0.070488, -0.31622, -1.042305, 0.660658, 1.219829, -0.679617, 0.469383, 0.250869], "tracked": true, "track_id": 1} +{"t": 28.356066, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009069, -0.028714, 0.387576, 0.298322, -0.251766, 1.039343, 0.331385, -0.269351, -0.070145, -0.307288, -1.03456, 0.656705, 1.228779, -0.677999, 0.47242, 0.250103], "tracked": true, "track_id": 1} +{"t": 28.420075, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008909, -0.028714, 0.38388, 0.297684, -0.239815, 1.055713, 0.33114, -0.255745, -0.068409, -0.295659, -1.024137, 0.649086, 1.243571, -0.675668, 0.47758, 0.248536], "tracked": true, "track_id": 1} +{"t": 28.456965, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008907, -0.028714, 0.383835, 0.296599, -0.234365, 1.061496, 0.330437, -0.250472, -0.067495, -0.291265, -1.019957, 0.645919, 1.249281, -0.674636, 0.479586, 0.247867], "tracked": true, "track_id": 1} +{"t": 28.520358, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00905, -0.028714, 0.38326, 0.295368, -0.220448, 1.082527, 0.330015, -0.229289, -0.066171, -0.282153, -1.010376, 0.637578, 1.264391, -0.67188, 0.484213, 0.246019], "tracked": true, "track_id": 1} +{"t": 28.58309, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009309, -0.028714, 0.383773, 0.294985, -0.213225, 1.096017, 0.330249, -0.215408, -0.065861, -0.274252, -1.001262, 0.629026, 1.279126, -0.66896, 0.48824, 0.24403], "tracked": true, "track_id": 1} +{"t": 28.619728, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009397, -0.028714, 0.384026, 0.294155, -0.208077, 1.10227, 0.329851, -0.20887, -0.065201, -0.270063, -0.996457, 0.624355, 1.286244, -0.66741, 0.489996, 0.242886], "tracked": true, "track_id": 1} +{"t": 28.683306, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009391, -0.028714, 0.383813, 0.292673, -0.199391, 1.111738, 0.328891, -0.199301, -0.063898, -0.259202, -0.985486, 0.615358, 1.300606, -0.664302, 0.49303, 0.240636], "tracked": true, "track_id": 1} +{"t": 28.750785, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009587, -0.028714, 0.384535, 0.29298, -0.200266, 1.112718, 0.329414, -0.198361, -0.064278, -0.24839, -0.974992, 0.609264, 1.314152, -0.661461, 0.495455, 0.23916], "tracked": true, "track_id": 1} +{"t": 28.812813, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009734, -0.028714, 0.386915, 0.288956, -0.184378, 1.125839, 0.326701, -0.182568, -0.06167, -0.234826, -0.96294, 0.604465, 1.327944, -0.658566, 0.497333, 0.237995], "tracked": true, "track_id": 1} +{"t": 28.882334, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010042, -0.028714, 0.391036, 0.28663, -0.178092, 1.132084, 0.325175, -0.173694, -0.060981, -0.214967, -0.945916, 0.600115, 1.342499, -0.654529, 0.498728, 0.236898], "tracked": true, "track_id": 1} +{"t": 28.948453, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010113, -0.028714, 0.393556, 0.285211, -0.175175, 1.134712, 0.323997, -0.169767, -0.060636, -0.195314, -0.929743, 0.596021, 1.35636, -0.65089, 0.499717, 0.235823], "tracked": true, "track_id": 1} +{"t": 29.011221, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010301, -0.028714, 0.395513, 0.283118, -0.164548, 1.146545, 0.322708, -0.154858, -0.059459, -0.173396, -0.911694, 0.592068, 1.369734, -0.646628, 0.500358, 0.234744], "tracked": true, "track_id": 1} +{"t": 29.047248, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010357, -0.028714, 0.397083, 0.282535, -0.164763, 1.145725, 0.322182, -0.155159, -0.059483, -0.163039, -0.903446, 0.590749, 1.376819, -0.644765, 0.500504, 0.234375], "tracked": true, "track_id": 1} +{"t": 29.110468, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010544, -0.028714, 0.401698, 0.280489, -0.160865, 1.149542, 0.320396, -0.148259, -0.059239, -0.145415, -0.887232, 0.583089, 1.391218, -0.64009, 0.500379, 0.232106], "tracked": true, "track_id": 1} +{"t": 29.177142, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010574, -0.028714, 0.402656, 0.281894, -0.169394, 1.142651, 0.321263, -0.156031, -0.060731, -0.130697, -0.871794, 0.570629, 1.406685, -0.63488, 0.499525, 0.22833], "tracked": true, "track_id": 1} +{"t": 29.241369, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010415, -0.028714, 0.401157, 0.28326, -0.177076, 1.133037, 0.322109, -0.167723, -0.061463, -0.125352, -0.863708, 0.55848, 1.418985, -0.631477, 0.498391, 0.224608], "tracked": true, "track_id": 1} +{"t": 29.311392, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010467, -0.028714, 0.404343, 0.286739, -0.204975, 1.09966, 0.323948, -0.200269, -0.065413, -0.134044, -0.866098, 0.548034, 1.424214, -0.630194, 0.497726, 0.221449], "tracked": true, "track_id": 1} +{"t": 29.372733, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010368, -0.028714, 0.403047, 0.287226, -0.20268, 1.10612, 0.324316, -0.194866, -0.065445, -0.138109, -0.868288, 0.545454, 1.428748, -0.630351, 0.497212, 0.220623], "tracked": true, "track_id": 1} +{"t": 29.406574, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010414, -0.028714, 0.402929, 0.287471, -0.200639, 1.111587, 0.324611, -0.189213, -0.065584, -0.141477, -0.869955, 0.543623, 1.430055, -0.63033, 0.497024, 0.220059], "tracked": true, "track_id": 1} +{"t": 29.475134, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010501, -0.028714, 0.402981, 0.288844, -0.202642, 1.115766, 0.325721, -0.185199, -0.066697, -0.148361, -0.876143, 0.547248, 1.427527, -0.63211, 0.497559, 0.221196], "tracked": true, "track_id": 1} +{"t": 29.537931, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01063, -0.028714, 0.404105, 0.288765, -0.202141, 1.118378, 0.325753, -0.182238, -0.066937, -0.153098, -0.881581, 0.553412, 1.423096, -0.634124, 0.498329, 0.223109], "tracked": true, "track_id": 1} +{"t": 29.605849, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010673, -0.028714, 0.402222, 0.29267, -0.21596, 1.109216, 0.328775, -0.193618, -0.069514, -0.157989, -0.888211, 0.561926, 1.416885, -0.636854, 0.499186, 0.225725], "tracked": true, "track_id": 1} +{"t": 29.670838, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010659, -0.028714, 0.401816, 0.291888, -0.212742, 1.110758, 0.328308, -0.192331, -0.068736, -0.157944, -0.890382, 0.567808, 1.411538, -0.638355, 0.499932, 0.227553], "tracked": true, "track_id": 1} +{"t": 29.740293, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010755, -0.028714, 0.401093, 0.292006, -0.211045, 1.113243, 0.328713, -0.190136, -0.068523, -0.153524, -0.889112, 0.573924, 1.40815, -0.639058, 0.500507, 0.229427], "tracked": true, "track_id": 1} +{"t": 29.804144, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010927, -0.028714, 0.402651, 0.290664, -0.205721, 1.1187, 0.327928, -0.183404, -0.067838, -0.154059, -0.891019, 0.579279, 1.403929, -0.64015, 0.500968, 0.231062], "tracked": true, "track_id": 1} +{"t": 29.865808, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011157, -0.028714, 0.404914, 0.289658, -0.201798, 1.124202, 0.327354, -0.176103, -0.067638, -0.157818, -0.894913, 0.583958, 1.399063, -0.641435, 0.501336, 0.232487], "tracked": true, "track_id": 1} +{"t": 29.901948, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011063, -0.028714, 0.405105, 0.286989, -0.192908, 1.127609, 0.325344, -0.172164, -0.065538, -0.16083, -0.897751, 0.58493, 1.396083, -0.642275, 0.501497, 0.232793], "tracked": true, "track_id": 1} +{"t": 29.966636, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010971, -0.028714, 0.404714, 0.285955, -0.189855, 1.127702, 0.324535, -0.172461, -0.064601, -0.164675, -0.90152, 0.586779, 1.391873, -0.643448, 0.50174, 0.233369], "tracked": true, "track_id": 1} +{"t": 30.033458, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01083, -0.028714, 0.405862, 0.282243, -0.178422, 1.131952, 0.321541, -0.166772, -0.061982, -0.175675, -0.910295, 0.587308, 1.388124, -0.645358, 0.501895, 0.233545], "tracked": true, "track_id": 1} +{"t": 30.066845, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010992, -0.028714, 0.408283, 0.281837, -0.184798, 1.120286, 0.321148, -0.178197, -0.062364, -0.188141, -0.919034, 0.586651, 1.383154, -0.646608, 0.501969, 0.233361], "tracked": true, "track_id": 1} +{"t": 30.132155, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010825, -0.028714, 0.407895, 0.277669, -0.165674, 1.134505, 0.318095, -0.161944, -0.058864, -0.185517, -0.917549, 0.586848, 1.382824, -0.64662, 0.502077, 0.233433], "tracked": true, "track_id": 1} +{"t": 30.168312, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010668, -0.028714, 0.406545, 0.277083, -0.163162, 1.134603, 0.317613, -0.162803, -0.058013, -0.185414, -0.918077, 0.587455, 1.38235, -0.647032, 0.502122, 0.233618], "tracked": true, "track_id": 1} +{"t": 30.230995, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010575, -0.028714, 0.406483, 0.273852, -0.148841, 1.144819, 0.315278, -0.150881, -0.05536, -0.183578, -0.917025, 0.5877, 1.381818, -0.64702, 0.502197, 0.233699], "tracked": true, "track_id": 1} +{"t": 30.295821, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010652, -0.028714, 0.40591, 0.273555, -0.144829, 1.149793, 0.315361, -0.145591, -0.054871, -0.184915, -0.918258, 0.588954, 1.381207, -0.647385, 0.502238, 0.234074], "tracked": true, "track_id": 1} +{"t": 30.330395, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010601, -0.028714, 0.404739, 0.274669, -0.149085, 1.145913, 0.3162, -0.150898, -0.055429, -0.187848, -0.920646, 0.58914, 1.380401, -0.647922, 0.502258, 0.234131], "tracked": true, "track_id": 1} +{"t": 30.39538, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01067, -0.028714, 0.404512, 0.274555, -0.145236, 1.151995, 0.316321, -0.143862, -0.055217, -0.189877, -0.922234, 0.589857, 1.379047, -0.648267, 0.502298, 0.234347], "tracked": true, "track_id": 1} +{"t": 30.461493, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010652, -0.028714, 0.403981, 0.275154, -0.144447, 1.155995, 0.316778, -0.13957, -0.055546, -0.194555, -0.925813, 0.589942, 1.377279, -0.648962, 0.502328, 0.234376], "tracked": true, "track_id": 1} +{"t": 30.495623, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010573, -0.028714, 0.403167, 0.276186, -0.148547, 1.152728, 0.317439, -0.143976, -0.056176, -0.197029, -0.928206, 0.590899, 1.375269, -0.649656, 0.502332, 0.234658], "tracked": true, "track_id": 1} +{"t": 30.55719, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010669, -0.028714, 0.401307, 0.277769, -0.14933, 1.156113, 0.318998, -0.141097, -0.056782, -0.200776, -0.931823, 0.593915, 1.370363, -0.650704, 0.502274, 0.235538], "tracked": true, "track_id": 1} +{"t": 30.592895, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010813, -0.028714, 0.400301, 0.279474, -0.153142, 1.155724, 0.320604, -0.142198, -0.05776, -0.203864, -0.934551, 0.5962, 1.366245, -0.651403, 0.502118, 0.236189], "tracked": true, "track_id": 1} +{"t": 30.657758, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01098, -0.028714, 0.396956, 0.284491, -0.165926, 1.151661, 0.324806, -0.148869, -0.060648, -0.204764, -0.935554, 0.598463, 1.361151, -0.651761, 0.501921, 0.236829], "tracked": true, "track_id": 1} +{"t": 30.724934, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011069, -0.028714, 0.395905, 0.285614, -0.166034, 1.155338, 0.325924, -0.14517, -0.061163, -0.209, -0.939075, 0.60015, 1.356512, -0.652563, 0.501764, 0.237305], "tracked": true, "track_id": 1} +{"t": 30.758543, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01093, -0.028714, 0.395116, 0.28673, -0.17316, 1.14664, 0.326504, -0.15549, -0.06191, -0.210414, -0.940604, 0.600488, 1.354661, -0.653056, 0.501694, 0.237395], "tracked": true, "track_id": 1} +{"t": 30.823319, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010965, -0.028714, 0.394627, 0.288316, -0.178538, 1.144039, 0.327725, -0.158929, -0.063042, -0.210255, -0.940848, 0.601811, 1.353028, -0.653288, 0.501644, 0.237778], "tracked": true, "track_id": 1} +{"t": 30.857596, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010974, -0.028714, 0.394118, 0.290419, -0.18695, 1.138231, 0.329226, -0.165858, -0.06461, -0.209813, -0.940834, 0.602789, 1.352531, -0.653445, 0.501633, 0.238064], "tracked": true, "track_id": 1} +{"t": 30.890986, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010965, -0.028714, 0.394057, 0.291503, -0.190485, 1.137371, 0.329944, -0.167005, -0.0655, -0.205354, -0.937788, 0.603548, 1.353243, -0.653033, 0.501642, 0.238288], "tracked": true, "track_id": 1} +{"t": 30.957136, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010941, -0.028714, 0.396168, 0.289059, -0.180398, 1.147355, 0.327936, -0.154082, -0.064222, -0.195179, -0.930425, 0.603945, 1.359176, -0.651783, 0.501841, 0.238431], "tracked": true, "track_id": 1} +{"t": 31.022741, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010917, -0.028714, 0.396166, 0.291393, -0.189847, 1.142137, 0.32945, -0.16033, -0.066185, -0.179499, -0.918618, 0.603248, 1.36733, -0.649465, 0.501997, 0.238246], "tracked": true, "track_id": 1} +{"t": 31.085174, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010815, -0.028714, 0.399843, 0.288868, -0.189813, 1.135523, 0.326923, -0.166134, -0.065416, -0.1657, -0.907893, 0.601052, 1.374472, -0.647174, 0.502095, 0.237613], "tracked": true, "track_id": 1} +{"t": 31.118632, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010781, -0.028714, 0.399586, 0.288363, -0.187935, 1.136169, 0.326567, -0.165612, -0.064932, -0.158383, -0.902561, 0.600999, 1.378018, -0.646169, 0.502128, 0.237602], "tracked": true, "track_id": 1} +{"t": 31.154258, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010893, -0.028714, 0.399579, 0.287689, -0.184403, 1.138882, 0.326366, -0.162495, -0.064301, -0.15336, -0.898422, 0.600613, 1.382009, -0.645155, 0.502097, 0.237485], "tracked": true, "track_id": 1} +{"t": 31.18819, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010956, -0.028714, 0.399628, 0.288507, -0.188639, 1.135007, 0.327045, -0.166957, -0.064963, -0.147868, -0.893801, 0.599518, 1.387299, -0.643971, 0.501934, 0.237141], "tracked": true, "track_id": 1} +{"t": 31.253643, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011139, -0.028714, 0.398214, 0.289979, -0.192388, 1.132376, 0.328644, -0.170701, -0.065577, -0.144881, -0.88929, 0.594701, 1.397466, -0.642035, 0.50127, 0.235637], "tracked": true, "track_id": 1} +{"t": 31.318395, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011526, -0.028714, 0.397773, 0.287522, -0.178293, 1.143622, 0.327899, -0.157707, -0.06313, -0.152883, -0.89193, 0.58851, 1.40204, -0.641035, 0.500854, 0.233762], "tracked": true, "track_id": 1} +{"t": 31.381879, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012555, -0.028714, 0.401935, 0.293391, -0.212985, 1.108399, 0.333328, -0.19191, -0.068862, -0.191014, -0.915858, 0.582772, 1.393776, -0.643139, 0.501054, 0.232101], "tracked": true, "track_id": 1} +{"t": 31.449494, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.013153, -0.028714, 0.398125, 0.297241, -0.215552, 1.115686, 0.337681, -0.186717, -0.070296, -0.221174, -0.935761, 0.579547, 1.393433, -0.645355, 0.50042, 0.231069], "tracked": true, "track_id": 1} +{"t": 31.483533, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.013546, -0.028714, 0.397709, 0.297959, -0.214863, 1.119045, 0.339051, -0.183638, -0.070496, -0.239231, -0.947692, 0.577619, 1.392228, -0.646569, 0.500129, 0.230464], "tracked": true, "track_id": 1} +{"t": 31.54868, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014443, -0.028714, 0.394189, 0.303452, -0.223596, 1.122172, 0.345016, -0.182762, -0.073179, -0.287446, -0.981912, 0.576379, 1.381056, -0.650777, 0.500385, 0.230133], "tracked": true, "track_id": 1} +{"t": 31.584728, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015143, -0.028714, 0.393355, 0.305344, -0.224947, 1.125617, 0.347825, -0.179579, -0.073992, -0.32698, -1.010578, 0.575478, 1.370087, -0.653967, 0.500662, 0.229904], "tracked": true, "track_id": 1} +{"t": 31.64695, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016692, -0.028714, 0.389465, 0.311254, -0.229844, 1.134172, 0.355298, -0.172233, -0.076393, -0.414099, -1.07256, 0.568749, 1.349341, -0.659358, 0.501028, 0.227973], "tracked": true, "track_id": 1} +{"t": 31.709118, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018358, -0.028714, 0.38227, 0.319503, -0.234364, 1.147479, 0.364602, -0.160629, -0.079239, -0.51245, -1.147234, 0.571995, 1.316055, -0.667302, 0.500961, 0.228919], "tracked": true, "track_id": 1} +{"t": 31.745645, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01934, -0.028714, 0.386967, 0.31871, -0.240275, 1.13765, 0.365641, -0.169358, -0.079837, -0.588023, -1.189199, 0.578405, 1.288999, -0.673402, 0.499554, 0.23062], "tracked": true, "track_id": 1} +{"t": 31.811071, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020535, -0.028714, 0.378162, 0.329399, -0.256115, 1.140507, 0.375602, -0.170866, -0.084298, -0.659759, -1.249358, 0.589563, 1.252717, -0.680772, 0.496302, 0.233477], "tracked": true, "track_id": 1} +{"t": 31.84453, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021179, -0.028714, 0.376182, 0.331463, -0.258401, 1.140291, 0.378392, -0.172306, -0.084782, -0.70075, -1.276004, 0.596446, 1.231264, -0.684693, 0.493259, 0.235104], "tracked": true, "track_id": 1} +{"t": 31.883149, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.021714, -0.028714, 0.371395, 0.334734, -0.258393, 1.14462, 0.381759, -0.16979, -0.085109, -0.738218, -1.298653, 0.602735, 1.211958, -0.688259, 0.490406, 0.23658], "tracked": true, "track_id": 1} +{"t": 31.942856, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.022633, -0.028714, 0.364979, 0.341019, -0.268259, 1.140637, 0.387944, -0.17754, -0.086998, -0.805795, -1.33427, 0.617737, 1.170751, -0.69492, 0.480982, 0.239761], "tracked": true, "track_id": 1} +{"t": 32.011122, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.023742, -0.028714, 0.360421, 0.348301, -0.281873, 1.138329, 0.395044, -0.182552, -0.090347, -0.878182, -1.360002, 0.627143, 1.138282, -0.700354, 0.475199, 0.241771], "tracked": true, "track_id": 1} +{"t": 32.074201, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.024649, -0.028714, 0.357898, 0.352283, -0.290944, 1.132262, 0.399515, -0.190601, -0.091962, -0.930172, -1.378594, 0.639361, 1.107941, -0.705019, 0.466722, 0.244257], "tracked": true, "track_id": 1} +{"t": 32.137778, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.02551, -0.028714, 0.359167, 0.354169, -0.298061, 1.128183, 0.402457, -0.194712, -0.093518, -0.970035, -1.392027, 0.652467, 1.078504, -0.70884, 0.455641, 0.246663], "tracked": true, "track_id": 1} +{"t": 32.173173, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.025631, -0.028714, 0.357776, 0.356372, -0.306468, 1.119029, 0.404201, -0.204771, -0.094676, -0.990869, -1.397273, 0.656979, 1.066301, -0.71058, 0.451517, 0.247451], "tracked": true, "track_id": 1} +{"t": 32.207889, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.025897, -0.028714, 0.357846, 0.356927, -0.309104, 1.115882, 0.405103, -0.208255, -0.094996, -1.010863, -1.401732, 0.661859, 1.053829, -0.712165, 0.44674, 0.248262], "tracked": true, "track_id": 1} +{"t": 32.272679, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.026241, -0.028714, 0.355991, 0.361101, -0.324464, 1.101056, 0.408573, -0.224185, -0.097431, -1.04395, -1.408744, 0.669388, 1.033815, -0.714724, 0.439134, 0.249482], "tracked": true, "track_id": 1} +{"t": 32.307367, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.026509, -0.028714, 0.357413, 0.360664, -0.325143, 1.09983, 0.408798, -0.225083, -0.097513, -1.059998, -1.411482, 0.671156, 1.027563, -0.715661, 0.437795, 0.249827], "tracked": true, "track_id": 1} +{"t": 32.369909, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.026968, -0.028714, 0.356177, 0.36585, -0.345044, 1.081091, 0.413119, -0.243432, -0.100968, -1.103211, -1.415788, 0.676882, 1.006965, -0.717829, 0.429912, 0.25048], "tracked": true, "track_id": 1} +{"t": 32.437455, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.027405, -0.028714, 0.355162, 0.370452, -0.360906, 1.06883, 0.416992, -0.255614, -0.104041, -1.138353, -1.4189, 0.680772, 0.990961, -0.719385, 0.423905, 0.25084], "tracked": true, "track_id": 1} +{"t": 32.502743, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.027647, -0.028714, 0.354137, 0.373706, -0.372471, 1.0587, 0.419608, -0.265688, -0.106126, -1.159324, -1.421147, 0.679912, 0.987243, -0.720113, 0.425047, 0.250736], "tracked": true, "track_id": 1} +{"t": 32.567981, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.027872, -0.028714, 0.354134, 0.376491, -0.382212, 1.053368, 0.421889, -0.271053, -0.108289, -1.155168, -1.422772, 0.674832, 0.998215, -0.719577, 0.432725, 0.250245], "tracked": true, "track_id": 1} +{"t": 32.604811, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.027962, -0.028714, 0.353177, 0.378775, -0.38737, 1.053128, 0.423561, -0.271887, -0.109697, -1.148292, -1.423406, 0.672809, 1.003795, -0.719161, 0.43592, 0.250068], "tracked": true, "track_id": 1} +{"t": 32.665307, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.027662, -0.028714, 0.351274, 0.3811, -0.39449, 1.047466, 0.424565, -0.277836, -0.111014, -1.119212, -1.424403, 0.667372, 1.020892, -0.71774, 0.443764, 0.249494], "tracked": true, "track_id": 1} +{"t": 32.735759, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.027196, -0.028714, 0.353536, 0.377915, -0.388065, 1.051857, 0.421633, -0.273321, -0.109714, -1.072924, -1.425124, 0.660047, 1.046261, -0.715199, 0.453477, 0.24861], "tracked": true, "track_id": 1} +{"t": 32.801075, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.026693, -0.028714, 0.357576, 0.371975, -0.373945, 1.061235, 0.416749, -0.263052, -0.106904, -1.027068, -1.425644, 0.651578, 1.074543, -0.712341, 0.463351, 0.247409], "tracked": true, "track_id": 1} +{"t": 32.866939, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.026189, -0.028714, 0.357559, 0.369602, -0.364779, 1.070051, 0.414286, -0.254637, -0.105308, -0.989087, -1.426021, 0.642693, 1.103202, -0.70966, 0.472438, 0.245984], "tracked": true, "track_id": 1} +{"t": 32.932564, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.025233, -0.028714, 0.362452, 0.361842, -0.347913, 1.07778, 0.407232, -0.244874, -0.101623, -0.917802, -1.397889, 0.635316, 1.139568, -0.705192, 0.480272, 0.244838], "tracked": true, "track_id": 1} +{"t": 32.994045, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.023957, -0.028714, 0.366919, 0.354194, -0.335121, 1.077754, 0.399586, -0.243466, -0.098045, -0.849064, -1.365302, 0.629871, 1.173812, -0.701304, 0.486338, 0.24403], "tracked": true, "track_id": 1} +{"t": 33.030092, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.023336, -0.028714, 0.372138, 0.346785, -0.319449, 1.082692, 0.39308, -0.236036, -0.094407, -0.81352, -1.345628, 0.626928, 1.190751, -0.699016, 0.48875, 0.24348], "tracked": true, "track_id": 1} +{"t": 33.093629, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.022151, -0.028714, 0.37723, 0.334352, -0.288516, 1.092817, 0.382258, -0.223318, -0.086972, -0.761442, -1.318336, 0.622329, 1.220664, -0.695984, 0.492403, 0.242604], "tracked": true, "track_id": 1} +{"t": 33.161065, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020722, -0.028714, 0.380747, 0.322963, -0.262713, 1.095459, 0.37168, -0.219335, -0.079903, -0.714257, -1.292817, 0.619831, 1.24514, -0.693868, 0.494988, 0.242207], "tracked": true, "track_id": 1} +{"t": 33.228373, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019578, -0.028714, 0.384338, 0.312766, -0.238911, 1.099268, 0.362387, -0.213772, -0.07363, -0.677204, -1.271924, 0.616996, 1.265055, -0.691963, 0.496713, 0.241599], "tracked": true, "track_id": 1} +{"t": 33.296218, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018862, -0.028714, 0.388227, 0.303632, -0.214638, 1.108482, 0.354559, -0.201921, -0.06804, -0.654604, -1.259927, 0.61509, 1.278089, -0.690848, 0.498008, 0.241208], "tracked": true, "track_id": 1} +{"t": 33.361877, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018039, -0.028714, 0.387623, 0.295322, -0.187102, 1.119451, 0.347526, -0.190132, -0.061482, -0.638159, -1.251212, 0.611556, 1.288565, -0.689877, 0.498844, 0.240278], "tracked": true, "track_id": 1} +{"t": 33.422199, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017306, -0.028714, 0.384746, 0.289447, -0.163682, 1.130462, 0.342504, -0.179249, -0.056016, -0.627103, -1.246165, 0.60966, 1.29637, -0.689554, 0.499404, 0.239793], "tracked": true, "track_id": 1} +{"t": 33.457245, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017077, -0.028714, 0.385385, 0.286948, -0.154947, 1.136183, 0.340345, -0.172368, -0.054347, -0.615215, -1.238418, 0.610066, 1.300189, -0.688992, 0.499698, 0.239951], "tracked": true, "track_id": 1} +{"t": 33.520502, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016794, -0.028714, 0.386696, 0.282518, -0.139753, 1.14551, 0.336739, -0.160975, -0.051367, -0.600033, -1.229578, 0.612753, 1.303254, -0.688822, 0.500329, 0.240824], "tracked": true, "track_id": 1} +{"t": 33.593761, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016311, -0.028714, 0.386045, 0.279407, -0.129647, 1.149163, 0.333808, -0.157324, -0.048872, -0.58066, -1.217764, 0.616111, 1.304207, -0.688644, 0.500899, 0.241886], "tracked": true, "track_id": 1} +{"t": 33.656187, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016061, -0.028714, 0.387692, 0.276795, -0.121672, 1.154765, 0.331395, -0.149945, -0.047491, -0.555508, -1.201176, 0.621599, 1.304633, -0.688064, 0.501307, 0.243554], "tracked": true, "track_id": 1} +{"t": 33.722838, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015683, -0.028714, 0.389684, 0.276413, -0.123119, 1.155694, 0.330155, -0.147946, -0.048178, -0.521378, -1.178197, 0.62883, 1.301708, -0.687051, 0.501168, 0.245662], "tracked": true, "track_id": 1} +{"t": 33.785814, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015198, -0.028714, 0.391568, 0.276047, -0.123113, 1.159544, 0.328697, -0.142423, -0.048898, -0.481777, -1.150858, 0.635157, 1.303508, -0.685299, 0.501159, 0.247522], "tracked": true, "track_id": 1} +{"t": 33.853731, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014942, -0.028714, 0.394996, 0.273913, -0.117399, 1.166247, 0.326275, -0.132294, -0.048542, -0.443851, -1.124386, 0.642083, 1.304222, -0.68336, 0.50085, 0.249519], "tracked": true, "track_id": 1} +{"t": 33.918357, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014814, -0.028714, 0.394261, 0.276142, -0.123703, 1.165547, 0.327631, -0.133583, -0.050227, -0.406431, -1.098246, 0.649599, 1.307446, -0.681281, 0.500705, 0.25171], "tracked": true, "track_id": 1} +{"t": 33.952472, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014883, -0.028714, 0.394175, 0.277807, -0.129788, 1.162636, 0.328909, -0.137195, -0.051545, -0.391285, -1.087536, 0.653476, 1.305375, -0.680372, 0.500043, 0.252764], "tracked": true, "track_id": 1} +{"t": 34.020358, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015061, -0.028714, 0.395283, 0.28019, -0.139629, 1.15832, 0.330739, -0.141818, -0.053835, -0.359842, -1.064657, 0.659752, 1.302228, -0.677865, 0.4986, 0.254421], "tracked": true, "track_id": 1} +{"t": 34.081174, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015079, -0.028714, 0.397216, 0.28146, -0.149983, 1.149133, 0.331367, -0.151641, -0.055596, -0.339395, -1.050026, 0.664193, 1.296913, -0.676435, 0.496883, 0.255503], "tracked": true, "track_id": 1} +{"t": 34.14906, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015106, -0.028714, 0.39754, 0.285748, -0.170942, 1.132166, 0.334253, -0.170637, -0.059277, -0.313093, -1.030075, 0.666199, 1.292401, -0.673495, 0.494724, 0.255811], "tracked": true, "track_id": 1} +{"t": 34.213012, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015178, -0.028714, 0.400002, 0.288992, -0.18931, 1.118453, 0.336211, -0.184775, -0.062832, -0.279733, -1.003649, 0.663463, 1.303144, -0.668558, 0.495619, 0.255123], "tracked": true, "track_id": 1} +{"t": 34.282197, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015197, -0.028714, 0.408058, 0.288688, -0.211775, 1.083164, 0.334583, -0.215773, -0.065387, -0.2443, -0.975209, 0.660296, 1.297771, -0.662655, 0.492068, 0.253727], "tracked": true, "track_id": 1} +{"t": 34.349641, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014982, -0.028714, 0.41462, 0.292092, -0.245824, 1.036731, 0.335146, -0.252375, -0.070617, -0.213189, -0.950196, 0.653123, 1.31132, -0.657289, 0.493909, 0.251858], "tracked": true, "track_id": 1} +{"t": 34.409619, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014938, -0.028714, 0.421252, 0.292117, -0.26249, 1.012452, 0.333709, -0.272218, -0.072925, -0.189196, -0.930206, 0.64612, 1.32714, -0.652613, 0.495952, 0.250065], "tracked": true, "track_id": 1} +{"t": 34.445986, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015113, -0.028714, 0.423469, 0.294389, -0.276454, 0.99685, 0.33519, -0.283959, -0.075497, -0.18365, -0.92453, 0.643798, 1.323144, -0.650921, 0.494892, 0.249244], "tracked": true, "track_id": 1} +{"t": 34.509516, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015635, -0.028714, 0.425612, 0.298968, -0.298967, 0.974477, 0.339057, -0.301611, -0.079811, -0.178936, -0.917274, 0.644503, 1.289686, -0.648, 0.479546, 0.247445], "tracked": true, "track_id": 1} +{"t": 34.543771, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015987, -0.028714, 0.42726, 0.299844, -0.305224, 0.967725, 0.340105, -0.30709, -0.080935, -0.180334, -0.915895, 0.651374, 1.255361, -0.646723, 0.455373, 0.246307], "tracked": true, "track_id": 1} +{"t": 34.579981, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016192, -0.028714, 0.42859, 0.300076, -0.308966, 0.962745, 0.340459, -0.311295, -0.081486, -0.180254, -0.913815, 0.658831, 1.221914, -0.645469, 0.429721, 0.245146], "tracked": true, "track_id": 1} +{"t": 34.642012, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016611, -0.028714, 0.43214, 0.298844, -0.310372, 0.958623, 0.339805, -0.314684, -0.081456, -0.166432, -0.897945, 0.6587, 1.184937, -0.639533, 0.400658, 0.241309], "tracked": true, "track_id": 1} +{"t": 34.675984, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017101, -0.028714, 0.431642, 0.300226, -0.313773, 0.957255, 0.341953, -0.316656, -0.082199, -0.15868, -0.884822, 0.669377, 1.129156, -0.633349, 0.337718, 0.236222], "tracked": true, "track_id": 1} +{"t": 34.712796, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01776, -0.028714, 0.432108, 0.303348, -0.324348, 0.950009, 0.345433, -0.321745, -0.084644, -0.151945, -0.870463, 0.68202, 1.063098, -0.625955, 0.260693, 0.229872], "tracked": true, "track_id": 1} +{"t": 34.773576, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019417, -0.028714, 0.423689, 0.314008, -0.341776, 0.953316, 0.35748, -0.323598, -0.089528, -0.13784, -0.83249, 0.689383, 0.983247, -0.604971, 0.096321, 0.210551], "tracked": true, "track_id": 1} +{"t": 34.837137, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020448, -0.028714, 0.416817, 0.32234, -0.35521, 0.956878, 0.366357, -0.324401, -0.093374, -0.102034, -0.779925, 0.676503, 0.936962, -0.58002, -0.033067, 0.189849], "tracked": true, "track_id": 1} +{"t": 34.873002, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.02059, -0.028714, 0.414859, 0.325372, -0.362427, 0.954023, 0.369061, -0.327196, -0.095131, -0.074557, -0.747212, 0.661401, 0.925442, -0.56537, -0.086986, 0.178359], "tracked": true, "track_id": 1} +{"t": 34.906864, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.020475, -0.028714, 0.416381, 0.325756, -0.367743, 0.946112, 0.368905, -0.331691, -0.096107, -0.036147, -0.712728, 0.652143, 0.900466, -0.55119, -0.129009, 0.170143], "tracked": true, "track_id": 1} +{"t": 34.972829, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019912, -0.028714, 0.418947, 0.326101, -0.376515, 0.932321, 0.367609, -0.33935, -0.097686, 0.039173, -0.649125, 0.632914, 0.858119, -0.524748, -0.195743, 0.155764], "tracked": true, "track_id": 1} +{"t": 35.008116, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.019509, -0.028714, 0.42194, 0.322651, -0.370855, 0.932196, 0.363864, -0.338862, -0.096085, 0.074553, -0.620617, 0.623285, 0.84059, -0.512654, -0.222216, 0.149471], "tracked": true, "track_id": 1} +{"t": 35.072677, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.018572, -0.028714, 0.312525, 0.230356, -0.060207, 0.967522, 0.185951, -0.000622, -0.048932, 0.141952, -0.567455, 0.600889, 0.814107, -0.488892, -0.265871, 0.137178], "tracked": true, "track_id": 1} +{"t": 35.138497, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.017617, -0.028714, 0.29039, 0.215968, -0.005213, 0.979195, 0.157569, 0.061683, -0.040902, 0.195585, -0.526624, 0.583692, 0.793821, -0.470588, -0.297657, 0.127965], "tracked": true, "track_id": 1} +{"t": 35.202062, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.016707, -0.028714, 0.329791, 0.242551, -0.10625, 0.956981, 0.209149, -0.054007, -0.055496, 0.232292, -0.499761, 0.574971, 0.778887, -0.459506, -0.320242, 0.122447], "tracked": true, "track_id": 1} +{"t": 35.267144, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015914, -0.028714, 0.357766, 0.260535, -0.175471, 0.941823, 0.245419, -0.137576, -0.064931, 0.25378, -0.485666, 0.575146, 0.764577, -0.45519, -0.334347, 0.120655], "tracked": true, "track_id": 1} +{"t": 35.301153, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015665, -0.028714, 0.369577, 0.266702, -0.200108, 0.938899, 0.258932, -0.168312, -0.068159, 0.261314, -0.479574, 0.573446, 0.764314, -0.452993, -0.341831, 0.119177], "tracked": true, "track_id": 1} +{"t": 35.335159, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015199, -0.028714, 0.375329, 0.276458, -0.231976, 0.925086, 0.273781, -0.200148, -0.073371, 0.262133, -0.48064, 0.579065, 0.759119, -0.455357, -0.345381, 0.120365], "tracked": true, "track_id": 1} +{"t": 35.399152, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.01546, -0.028714, 0.389531, 0.287464, -0.270638, 0.919757, 0.295412, -0.242814, -0.079165, 0.26116, -0.484449, 0.590712, 0.736148, -0.458908, -0.341414, 0.124309], "tracked": true, "track_id": 1} +{"t": 35.435846, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.015491, -0.028714, 0.395006, 0.291845, -0.286198, 0.917066, 0.303774, -0.259887, -0.08151, 0.259972, -0.489481, 0.599393, 0.730975, -0.462699, -0.330054, 0.128348], "tracked": true, "track_id": 1} +{"t": 35.498467, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.014188, -0.028714, 0.404419, 0.290415, -0.286143, 0.928241, 0.308147, -0.277181, -0.079233, 0.252858, -0.509897, 0.607066, 0.772021, -0.478269, -0.251754, 0.14084], "tracked": true, "track_id": 1} +{"t": 35.565849, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.012673, -0.028714, 0.411405, 0.28966, -0.290743, 0.927039, 0.310145, -0.295562, -0.078183, 0.246536, -0.534479, 0.590488, 0.883396, -0.49664, -0.093114, 0.156701], "tracked": true, "track_id": 1} +{"t": 35.600118, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.011722, -0.028714, 0.415021, 0.287429, -0.287801, 0.929018, 0.308562, -0.300976, -0.07661, 0.247619, -0.546523, 0.58548, 0.95354, -0.506343, -0.009472, 0.166162], "tracked": true, "track_id": 1} +{"t": 35.663533, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.010184, -0.028714, 0.422976, 0.281991, -0.280038, 0.930488, 0.303984, -0.309648, -0.073193, 0.242419, -0.572413, 0.585741, 1.062103, -0.525376, 0.121962, 0.18342], "tracked": true, "track_id": 1} +{"t": 35.729392, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008843, -0.028714, 0.429117, 0.274477, -0.258482, 0.950648, 0.297612, -0.301212, -0.067956, 0.231782, -0.600215, 0.597074, 1.147156, -0.544426, 0.22129, 0.199737], "tracked": true, "track_id": 1} +{"t": 35.763381, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008234, -0.028714, 0.430947, 0.271698, -0.249903, 0.959361, 0.295212, -0.297455, -0.065924, 0.227898, -0.611717, 0.603531, 1.179557, -0.552435, 0.259743, 0.206663], "tracked": true, "track_id": 1} +{"t": 35.826264, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007319, -0.028714, 0.434023, 0.266898, -0.232398, 0.979741, 0.291182, -0.284997, -0.062403, 0.219969, -0.632798, 0.619073, 1.230809, -0.566672, 0.320567, 0.219185], "tracked": true, "track_id": 1} +{"t": 35.861354, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006879, -0.028714, 0.434471, 0.266261, -0.230146, 0.984241, 0.290478, -0.283849, -0.061891, 0.216602, -0.642051, 0.62674, 1.253144, -0.572956, 0.345282, 0.22467], "tracked": true, "track_id": 1} +{"t": 35.925461, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006428, -0.028714, 0.436104, 0.267127, -0.236758, 0.978722, 0.290893, -0.291902, -0.062783, 0.203974, -0.661295, 0.640962, 1.282854, -0.584352, 0.382836, 0.233762], "tracked": true, "track_id": 1} +{"t": 35.996002, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006287, -0.028714, 0.435032, 0.268704, -0.238241, 0.985705, 0.292934, -0.289888, -0.063483, 0.183525, -0.682468, 0.651372, 1.307679, -0.594936, 0.41238, 0.240686], "tracked": true, "track_id": 1} +{"t": 36.057612, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006059, -0.028714, 0.431613, 0.265605, -0.205356, 1.033508, 0.292001, -0.244551, -0.059737, 0.160055, -0.703487, 0.657551, 1.329968, -0.604519, 0.435587, 0.245537], "tracked": true, "track_id": 1} +{"t": 36.123729, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005872, -0.028714, 0.427804, 0.264668, -0.184568, 1.067411, 0.292472, -0.213214, -0.057719, 0.141484, -0.719273, 0.660417, 1.34721, -0.611471, 0.452692, 0.248616], "tracked": true, "track_id": 1} +{"t": 36.160542, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005743, -0.028714, 0.425812, 0.264139, -0.17541, 1.081303, 0.292541, -0.200609, -0.056674, 0.131096, -0.727391, 0.660884, 1.352448, -0.61474, 0.459232, 0.249608], "tracked": true, "track_id": 1} +{"t": 36.221031, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005716, -0.028714, 0.423205, 0.262512, -0.155739, 1.108701, 0.29239, -0.173559, -0.054424, 0.100574, -0.748897, 0.660167, 1.355229, -0.621735, 0.469087, 0.250685], "tracked": true, "track_id": 1} +{"t": 36.254891, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005651, -0.028714, 0.421567, 0.264569, -0.162453, 1.105636, 0.294148, -0.179444, -0.055629, 0.08175, -0.761809, 0.658823, 1.353233, -0.625463, 0.472577, 0.250746], "tracked": true, "track_id": 1} +{"t": 36.289205, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005714, -0.028714, 0.421384, 0.264481, -0.158842, 1.112582, 0.294401, -0.172853, -0.055429, 0.062657, -0.77457, 0.657184, 1.35148, -0.628817, 0.475735, 0.250677], "tracked": true, "track_id": 1} +{"t": 36.353297, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005669, -0.028714, 0.420532, 0.264346, -0.154189, 1.121296, 0.294608, -0.165472, -0.055025, 0.043717, -0.788126, 0.658697, 1.342881, -0.633205, 0.477904, 0.251405], "tracked": true, "track_id": 1} +{"t": 36.421158, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005635, -0.028714, 0.421061, 0.267191, -0.172647, 1.098208, 0.296436, -0.187784, -0.057537, 0.029471, -0.79832, 0.660467, 1.332916, -0.636475, 0.477962, 0.251934], "tracked": true, "track_id": 1} +{"t": 36.454622, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005496, -0.028714, 0.422074, 0.268805, -0.188326, 1.074144, 0.296986, -0.209991, -0.059246, 0.024115, -0.802366, 0.661566, 1.326237, -0.637913, 0.476669, 0.252088], "tracked": true, "track_id": 1} +{"t": 36.488084, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005418, -0.028714, 0.423621, 0.270553, -0.204081, 1.050497, 0.297605, -0.230559, -0.061191, 0.020448, -0.804947, 0.662214, 1.320169, -0.638809, 0.475255, 0.252094], "tracked": true, "track_id": 1} +{"t": 36.550611, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005342, -0.028714, 0.4254, 0.27071, -0.216534, 1.028007, 0.297142, -0.253348, -0.061875, 0.014331, -0.809316, 0.663783, 1.3102, -0.640301, 0.472853, 0.252241], "tracked": true, "track_id": 1} +{"t": 36.58583, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005304, -0.028714, 0.424152, 0.270057, -0.208848, 1.040593, 0.296969, -0.242983, -0.060969, 0.015335, -0.808887, 0.664346, 1.310124, -0.640454, 0.473367, 0.252474], "tracked": true, "track_id": 1} +{"t": 36.649979, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005463, -0.028714, 0.421041, 0.27087, -0.198431, 1.064577, 0.298673, -0.222447, -0.06059, 0.010665, -0.811845, 0.663811, 1.312378, -0.641193, 0.475814, 0.252636], "tracked": true, "track_id": 1} +{"t": 36.720559, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005544, -0.028714, 0.419899, 0.269472, -0.183084, 1.087967, 0.298255, -0.199866, -0.059028, 0.003831, -0.81537, 0.659037, 1.321364, -0.641636, 0.480368, 0.251828], "tracked": true, "track_id": 1} +{"t": 36.783508, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005576, -0.028714, 0.419874, 0.269889, -0.181247, 1.09622, 0.298654, -0.193258, -0.059351, 0.013006, -0.80877, 0.656837, 1.334824, -0.639932, 0.484588, 0.251732], "tracked": true, "track_id": 1} +{"t": 36.851921, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005705, -0.028714, 0.421143, 0.266096, -0.16392, 1.111928, 0.296122, -0.176084, -0.0565, 0.032963, -0.794298, 0.653542, 1.351494, -0.635649, 0.48836, 0.251256], "tracked": true, "track_id": 1} +{"t": 36.914505, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005852, -0.028714, 0.423406, 0.266887, -0.178612, 1.088508, 0.2964, -0.199517, -0.057758, 0.049146, -0.782306, 0.650173, 1.368437, -0.631946, 0.491764, 0.25071], "tracked": true, "track_id": 1} +{"t": 36.983338, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006484, -0.028714, 0.427393, 0.270005, -0.2036, 1.056714, 0.298876, -0.229261, -0.061219, 0.055664, -0.775626, 0.646507, 1.390649, -0.628935, 0.494541, 0.249995], "tracked": true, "track_id": 1} +{"t": 37.047997, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006916, -0.028714, 0.427521, 0.274259, -0.216909, 1.054551, 0.302701, -0.233541, -0.064574, 0.065686, -0.767838, 0.646318, 1.419607, -0.626106, 0.494273, 0.249904], "tracked": true, "track_id": 1} +{"t": 37.109402, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007346, -0.028714, 0.430128, 0.27246, -0.206385, 1.069693, 0.301806, -0.217028, -0.063637, 0.077877, -0.757807, 0.64353, 1.440528, -0.62217, 0.494045, 0.249055], "tracked": true, "track_id": 1} +{"t": 37.144931, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007297, -0.028714, 0.430056, 0.272928, -0.211295, 1.062422, 0.302038, -0.225053, -0.064033, 0.080793, -0.754796, 0.640398, 1.448699, -0.620985, 0.493899, 0.248114], "tracked": true, "track_id": 1} +{"t": 37.179787, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007334, -0.028714, 0.429949, 0.273786, -0.214345, 1.061517, 0.302735, -0.226841, -0.064696, 0.084128, -0.751726, 0.638204, 1.455644, -0.619776, 0.494054, 0.247489], "tracked": true, "track_id": 1} +{"t": 37.246266, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007487, -0.028714, 0.430775, 0.274993, -0.216236, 1.066621, 0.30368, -0.222103, -0.065872, 0.089959, -0.746975, 0.63637, 1.466565, -0.617961, 0.49467, 0.24703], "tracked": true, "track_id": 1} +{"t": 37.309686, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007813, -0.028714, 0.433514, 0.276991, -0.235624, 1.036162, 0.305003, -0.248002, -0.068189, 0.078371, -0.752931, 0.632644, 1.462007, -0.618913, 0.496541, 0.246179], "tracked": true, "track_id": 1} +{"t": 37.372911, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007677, -0.028714, 0.429189, 0.275206, -0.218396, 1.057148, 0.304614, -0.230215, -0.065446, 0.06399, -0.762681, 0.6314, 1.451737, -0.621824, 0.498168, 0.246026], "tracked": true, "track_id": 1} +{"t": 37.409209, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007627, -0.028714, 0.427915, 0.272908, -0.205419, 1.069315, 0.303305, -0.218434, -0.06317, 0.058359, -0.766825, 0.631921, 1.444774, -0.623184, 0.498682, 0.246246], "tracked": true, "track_id": 1} +{"t": 37.473691, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007413, -0.028714, 0.423854, 0.271095, -0.185541, 1.094413, 0.302614, -0.193964, -0.060522, 0.054679, -0.77034, 0.633548, 1.432535, -0.624809, 0.499217, 0.246795], "tracked": true, "track_id": 1} +{"t": 37.508004, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007227, -0.028714, 0.421354, 0.271311, -0.181946, 1.100241, 0.302929, -0.189668, -0.060026, 0.051389, -0.773279, 0.634541, 1.42534, -0.62604, 0.49915, 0.247078], "tracked": true, "track_id": 1} +{"t": 37.542907, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007135, -0.028714, 0.418693, 0.272356, -0.181099, 1.10447, 0.304021, -0.187148, -0.060106, 0.045708, -0.77781, 0.635991, 1.417567, -0.627598, 0.498924, 0.247475], "tracked": true, "track_id": 1} +{"t": 37.609223, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006945, -0.028714, 0.41556, 0.270485, -0.165837, 1.120519, 0.303089, -0.171399, -0.057676, 0.039748, -0.783141, 0.63892, 1.404045, -0.629715, 0.498136, 0.248233], "tracked": true, "track_id": 1} +{"t": 37.671298, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006818, -0.028714, 0.413807, 0.268755, -0.153661, 1.132989, 0.302058, -0.158695, -0.055756, 0.037461, -0.785513, 0.640669, 1.396569, -0.630815, 0.497939, 0.248722], "tracked": true, "track_id": 1} +{"t": 37.705095, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006825, -0.028714, 0.413308, 0.26825, -0.150382, 1.136125, 0.301868, -0.155742, -0.055177, 0.037365, -0.785981, 0.641879, 1.394641, -0.631125, 0.498015, 0.249088], "tracked": true, "track_id": 1} +{"t": 37.769922, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006884, -0.028714, 0.413115, 0.269463, -0.155906, 1.132116, 0.302881, -0.16111, -0.0561, 0.037561, -0.785995, 0.642387, 1.396261, -0.631196, 0.498797, 0.249339], "tracked": true, "track_id": 1} +{"t": 37.838853, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006866, -0.028714, 0.414731, 0.269487, -0.159937, 1.127507, 0.302507, -0.166018, -0.056644, 0.049257, -0.779075, 0.644729, 1.403596, -0.629666, 0.499554, 0.250127], "tracked": true, "track_id": 1} +{"t": 37.902552, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006969, -0.028714, 0.420462, 0.267018, -0.163047, 1.115784, 0.299659, -0.175718, -0.056291, 0.067187, -0.767347, 0.645575, 1.415769, -0.626232, 0.500306, 0.250475], "tracked": true, "track_id": 1} +{"t": 37.936105, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007241, -0.028714, 0.423355, 0.267105, -0.169898, 1.106067, 0.299603, -0.184885, -0.057108, 0.074717, -0.761883, 0.645661, 1.42151, -0.624228, 0.500617, 0.25054], "tracked": true, "track_id": 1} +{"t": 38.001429, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007676, -0.028714, 0.429323, 0.267746, -0.187587, 1.080356, 0.299414, -0.208545, -0.059217, 0.079151, -0.757443, 0.644081, 1.433289, -0.62216, 0.500847, 0.250106], "tracked": true, "track_id": 1} +{"t": 38.035196, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00756, -0.028714, 0.43087, 0.267787, -0.195563, 1.065615, 0.298778, -0.222189, -0.05978, 0.080698, -0.755896, 0.642025, 1.438483, -0.621647, 0.500878, 0.249505], "tracked": true, "track_id": 1} +{"t": 38.09966, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007597, -0.028714, 0.435395, 0.265394, -0.198695, 1.051866, 0.295999, -0.234378, -0.059108, 0.084206, -0.752037, 0.638112, 1.448691, -0.61998, 0.500721, 0.248334], "tracked": true, "track_id": 1} +{"t": 38.135877, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007575, -0.028714, 0.435534, 0.26524, -0.201031, 1.046393, 0.295852, -0.240117, -0.059045, 0.086827, -0.749972, 0.637136, 1.453277, -0.61928, 0.500625, 0.248034], "tracked": true, "track_id": 1} +{"t": 38.199786, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007596, -0.028714, 0.437588, 0.265941, -0.209811, 1.034611, 0.295826, -0.25074, -0.060238, 0.087683, -0.749121, 0.636563, 1.458248, -0.618966, 0.500648, 0.247868], "tracked": true, "track_id": 1} +{"t": 38.267007, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007562, -0.028714, 0.439723, 0.262586, -0.200836, 1.038171, 0.292905, -0.246996, -0.058088, 0.092648, -0.746563, 0.638226, 1.457294, -0.618494, 0.501092, 0.248416], "tracked": true, "track_id": 1} +{"t": 38.329552, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007302, -0.028714, 0.438986, 0.264092, -0.202333, 1.043707, 0.293571, -0.241303, -0.059273, 0.095298, -0.74657, 0.641651, 1.456024, -0.619357, 0.50137, 0.249459], "tracked": true, "track_id": 1} +{"t": 38.392668, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007166, -0.028714, 0.436581, 0.267491, -0.205678, 1.052815, 0.296218, -0.232021, -0.06147, 0.091166, -0.751349, 0.646586, 1.452088, -0.62166, 0.501644, 0.250947], "tracked": true, "track_id": 1} +{"t": 38.43067, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00707, -0.028714, 0.435611, 0.268388, -0.204212, 1.06076, 0.296888, -0.224774, -0.061986, 0.089863, -0.753079, 0.648484, 1.448842, -0.622581, 0.501732, 0.251516], "tracked": true, "track_id": 1} +{"t": 38.495919, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006498, -0.028714, 0.431165, 0.265007, -0.179774, 1.086794, 0.294538, -0.19908, -0.058157, 0.090939, -0.753779, 0.64942, 1.439014, -0.623755, 0.501432, 0.251753], "tracked": true, "track_id": 1} +{"t": 38.52934, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006273, -0.028714, 0.430004, 0.263003, -0.168329, 1.097772, 0.293017, -0.18779, -0.056267, 0.092157, -0.753458, 0.649588, 1.435436, -0.624014, 0.501321, 0.251787], "tracked": true, "track_id": 1} +{"t": 38.594488, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005902, -0.028714, 0.427025, 0.260849, -0.153551, 1.112425, 0.291539, -0.173508, -0.053787, 0.095096, -0.752566, 0.650553, 1.430417, -0.624418, 0.501184, 0.252053], "tracked": true, "track_id": 1} +{"t": 38.658331, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005666, -0.028714, 0.42726, 0.258915, -0.146628, 1.11739, 0.289672, -0.168711, -0.052378, 0.098208, -0.751989, 0.653476, 1.427247, -0.62497, 0.501089, 0.252901], "tracked": true, "track_id": 1} +{"t": 38.695172, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005808, -0.028714, 0.42833, 0.260252, -0.152374, 1.115048, 0.290608, -0.171257, -0.053735, 0.098805, -0.751937, 0.655159, 1.428751, -0.624974, 0.501269, 0.253419], "tracked": true, "track_id": 1} +{"t": 38.758085, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005744, -0.028714, 0.430366, 0.260795, -0.160942, 1.104534, 0.29027, -0.182244, -0.054819, 0.102058, -0.750895, 0.65777, 1.432726, -0.625103, 0.501569, 0.254226], "tracked": true, "track_id": 1} +{"t": 38.821106, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005799, -0.028714, 0.431302, 0.260106, -0.164633, 1.094517, 0.289697, -0.193029, -0.054495, 0.112022, -0.744346, 0.657745, 1.438692, -0.622938, 0.501772, 0.254245], "tracked": true, "track_id": 1} +{"t": 38.856829, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005909, -0.028714, 0.432034, 0.260552, -0.170807, 1.084938, 0.290051, -0.202863, -0.055025, 0.117168, -0.740589, 0.657077, 1.441038, -0.621481, 0.501866, 0.254061], "tracked": true, "track_id": 1} +{"t": 38.922093, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006103, -0.028714, 0.433326, 0.261412, -0.181797, 1.068047, 0.290719, -0.219962, -0.056022, 0.125262, -0.734207, 0.654813, 1.447656, -0.618855, 0.501981, 0.25341], "tracked": true, "track_id": 1} +{"t": 38.956652, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006211, -0.028714, 0.434596, 0.259563, -0.177241, 1.0686, 0.289368, -0.219097, -0.054795, 0.127544, -0.732199, 0.653909, 1.451188, -0.617941, 0.501975, 0.253144], "tracked": true, "track_id": 1} +{"t": 38.99205, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006261, -0.028714, 0.435502, 0.258911, -0.178233, 1.063961, 0.288788, -0.223666, -0.05449, 0.126868, -0.732043, 0.652578, 1.454027, -0.617673, 0.501931, 0.252747], "tracked": true, "track_id": 1} +{"t": 39.056489, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006266, -0.028714, 0.437053, 0.256693, -0.175877, 1.058348, 0.286864, -0.229105, -0.053086, 0.126318, -0.73117, 0.649286, 1.459794, -0.617007, 0.501746, 0.251754], "tracked": true, "track_id": 1} +{"t": 39.123453, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006531, -0.028714, 0.438437, 0.257288, -0.180552, 1.053444, 0.28748, -0.233753, -0.053853, 0.123315, -0.732027, 0.647713, 1.461308, -0.616717, 0.501784, 0.251297], "tracked": true, "track_id": 1} +{"t": 39.185922, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006719, -0.028714, 0.438338, 0.259072, -0.178315, 1.067304, 0.289138, -0.218287, -0.055217, 0.12438, -0.731595, 0.649631, 1.465444, -0.616525, 0.501486, 0.251822], "tracked": true, "track_id": 1} +{"t": 39.250162, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006811, -0.028714, 0.43784, 0.260618, -0.182003, 1.067758, 0.290541, -0.218179, -0.056316, 0.123822, -0.732153, 0.650766, 1.465086, -0.616709, 0.501401, 0.252144], "tracked": true, "track_id": 1} +{"t": 39.285422, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006852, -0.028714, 0.437593, 0.26094, -0.184694, 1.063613, 0.290928, -0.222876, -0.056493, 0.124098, -0.731786, 0.650422, 1.461011, -0.616498, 0.501497, 0.252056], "tracked": true, "track_id": 1} +{"t": 39.318771, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006854, -0.028714, 0.437247, 0.261565, -0.189148, 1.057183, 0.291456, -0.229684, -0.056913, 0.125231, -0.730848, 0.649823, 1.457568, -0.616124, 0.501564, 0.251888], "tracked": true, "track_id": 1} +{"t": 39.383684, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006656, -0.028714, 0.43676, 0.263517, -0.202608, 1.037876, 0.292428, -0.247852, -0.058497, 0.121973, -0.732588, 0.647618, 1.452682, -0.616729, 0.50176, 0.251266], "tracked": true, "track_id": 1} +{"t": 39.419341, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006549, -0.028714, 0.436522, 0.265323, -0.213023, 1.024077, 0.293457, -0.259878, -0.059989, 0.122634, -0.73223, 0.647213, 1.450985, -0.616734, 0.501826, 0.251155], "tracked": true, "track_id": 1} +{"t": 39.482342, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006854, -0.028714, 0.437719, 0.263781, -0.207433, 1.029236, 0.292796, -0.255612, -0.058902, 0.121099, -0.732624, 0.647149, 1.450391, -0.61641, 0.50199, 0.251157], "tracked": true, "track_id": 1} +{"t": 39.549407, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007012, -0.028714, 0.437566, 0.265252, -0.213426, 1.024642, 0.294196, -0.260655, -0.060005, 0.121331, -0.732166, 0.647091, 1.450711, -0.616026, 0.502102, 0.251155], "tracked": true, "track_id": 1} +{"t": 39.614658, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006977, -0.028714, 0.438265, 0.26387, -0.210833, 1.023645, 0.29299, -0.261946, -0.059074, 0.12319, -0.730972, 0.646912, 1.453755, -0.615673, 0.502141, 0.251108], "tracked": true, "track_id": 1} +{"t": 39.649195, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007127, -0.028714, 0.438678, 0.263762, -0.210469, 1.024286, 0.293149, -0.26146, -0.059031, 0.122575, -0.731024, 0.646805, 1.456162, -0.61545, 0.502063, 0.251066], "tracked": true, "track_id": 1} +{"t": 39.684213, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006927, -0.028714, 0.437466, 0.266985, -0.22444, 1.008317, 0.295182, -0.274275, -0.061464, 0.121223, -0.731741, 0.645338, 1.459274, -0.615791, 0.50187, 0.250609], "tracked": true, "track_id": 1} +{"t": 39.748205, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007038, -0.028714, 0.436405, 0.269051, -0.225463, 1.018099, 0.297092, -0.266288, -0.062809, 0.120729, -0.73154, 0.644887, 1.466945, -0.615463, 0.500965, 0.250358], "tracked": true, "track_id": 1} +{"t": 39.809087, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007049, -0.028714, 0.433399, 0.272221, -0.226212, 1.032597, 0.300064, -0.254668, -0.064549, 0.122285, -0.731164, 0.6474, 1.47473, -0.615548, 0.499453, 0.2509], "tracked": true, "track_id": 1} +{"t": 39.844918, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007157, -0.028714, 0.433266, 0.273295, -0.22552, 1.040731, 0.30108, -0.246967, -0.065352, 0.125936, -0.729016, 0.648823, 1.477771, -0.614791, 0.498741, 0.251225], "tracked": true, "track_id": 1} +{"t": 39.908953, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006901, -0.028714, 0.430391, 0.273579, -0.221563, 1.048291, 0.30146, -0.241775, -0.064867, 0.128821, -0.727889, 0.649878, 1.482552, -0.614897, 0.497908, 0.251426], "tracked": true, "track_id": 1} +{"t": 39.981982, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006753, -0.028714, 0.430826, 0.272139, -0.214293, 1.057325, 0.300062, -0.232978, -0.063879, 0.12937, -0.727963, 0.650437, 1.486006, -0.615197, 0.497579, 0.251548], "tracked": true, "track_id": 1} +{"t": 40.04249, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006944, -0.028714, 0.436006, 0.267047, -0.200262, 1.064147, 0.295514, -0.223219, -0.061028, 0.122199, -0.731127, 0.647138, 1.484593, -0.615554, 0.497988, 0.250631], "tracked": true, "track_id": 1} +{"t": 40.07599, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006883, -0.028714, 0.437224, 0.265283, -0.191523, 1.073957, 0.293851, -0.21184, -0.059945, 0.119097, -0.73327, 0.647207, 1.486154, -0.616332, 0.49789, 0.250639], "tracked": true, "track_id": 1} +{"t": 40.112641, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006773, -0.028714, 0.440898, 0.260724, -0.183142, 1.070264, 0.289309, -0.213919, -0.057208, 0.118917, -0.733156, 0.645691, 1.48282, -0.616317, 0.498507, 0.250273], "tracked": true, "track_id": 1} +{"t": 40.173239, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006615, -0.028714, 0.446647, 0.254149, -0.17211, 1.06332, 0.282611, -0.218344, -0.053385, 0.112628, -0.737029, 0.643746, 1.47622, -0.61758, 0.499462, 0.249826], "tracked": true, "track_id": 1} +{"t": 40.237034, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006458, -0.028714, 0.449518, 0.252265, -0.173237, 1.054501, 0.28007, -0.226147, -0.052696, 0.113059, -0.737333, 0.644213, 1.469029, -0.618032, 0.500277, 0.25007], "tracked": true, "track_id": 1} +{"t": 40.273244, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006459, -0.028714, 0.451925, 0.25033, -0.170623, 1.05186, 0.277926, -0.227627, -0.051734, 0.114578, -0.736408, 0.644268, 1.465716, -0.617765, 0.500593, 0.250128], "tracked": true, "track_id": 1} +{"t": 40.3387, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006343, -0.028714, 0.45382, 0.247457, -0.165376, 1.049127, 0.275132, -0.229659, -0.049925, 0.118591, -0.734296, 0.644815, 1.462374, -0.617364, 0.501084, 0.250353], "tracked": true, "track_id": 1} +{"t": 40.407857, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005933, -0.028714, 0.452424, 0.243932, -0.147041, 1.064758, 0.272341, -0.212176, -0.046818, 0.122735, -0.732354, 0.644555, 1.462784, -0.617339, 0.501398, 0.250317], "tracked": true, "track_id": 1} +{"t": 40.473974, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005921, -0.028714, 0.452038, 0.239742, -0.122452, 1.0887, 0.269688, -0.184208, -0.043242, 0.130977, -0.727162, 0.644691, 1.466228, -0.615656, 0.50153, 0.250374], "tracked": true, "track_id": 1} +{"t": 40.537444, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006088, -0.028714, 0.452536, 0.239601, -0.120577, 1.092571, 0.269876, -0.180296, -0.043202, 0.13851, -0.722704, 0.646778, 1.472235, -0.614123, 0.501064, 0.250927], "tracked": true, "track_id": 1} +{"t": 40.602091, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006017, -0.028714, 0.449292, 0.241681, -0.118326, 1.105468, 0.272223, -0.168454, -0.044087, 0.149935, -0.716904, 0.650859, 1.478552, -0.612625, 0.500091, 0.252001], "tracked": true, "track_id": 1} +{"t": 40.665536, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005869, -0.028714, 0.446505, 0.244384, -0.121036, 1.112871, 0.274628, -0.162611, -0.045648, 0.158452, -0.71195, 0.651773, 1.483117, -0.611181, 0.499041, 0.252132], "tracked": true, "track_id": 1} +{"t": 40.701844, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005799, -0.028714, 0.445414, 0.245317, -0.123274, 1.112885, 0.275457, -0.163715, -0.046162, 0.163216, -0.708753, 0.650997, 1.484899, -0.610048, 0.498634, 0.251851], "tracked": true, "track_id": 1} +{"t": 40.735242, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005734, -0.028714, 0.444842, 0.245455, -0.122005, 1.115886, 0.275603, -0.160912, -0.046155, 0.166735, -0.706566, 0.650869, 1.486414, -0.609349, 0.498349, 0.251776], "tracked": true, "track_id": 1} +{"t": 40.801495, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005432, -0.028714, 0.442594, 0.2451, -0.120255, 1.115933, 0.275396, -0.162845, -0.045388, 0.171507, -0.703312, 0.648835, 1.488797, -0.608445, 0.497966, 0.251127], "tracked": true, "track_id": 1} +{"t": 40.836343, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005214, -0.028714, 0.441133, 0.245671, -0.122375, 1.113941, 0.275729, -0.166259, -0.045565, 0.173729, -0.702454, 0.649345, 1.489727, -0.608537, 0.49783, 0.25126], "tracked": true, "track_id": 1} +{"t": 40.898262, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005328, -0.028714, 0.441771, 0.245802, -0.119891, 1.120155, 0.27591, -0.158865, -0.045801, 0.170944, -0.704289, 0.650271, 1.49119, -0.609149, 0.497815, 0.25153], "tracked": true, "track_id": 1} +{"t": 40.93169, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005259, -0.028714, 0.442382, 0.245131, -0.118347, 1.120604, 0.275109, -0.158108, -0.045446, 0.166279, -0.707441, 0.650486, 1.491762, -0.610381, 0.497834, 0.251596], "tracked": true, "track_id": 1} +{"t": 40.967607, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005218, -0.028714, 0.443122, 0.244716, -0.115078, 1.125638, 0.2745, -0.151684, -0.045324, 0.162356, -0.710122, 0.650821, 1.492248, -0.611423, 0.497912, 0.251704], "tracked": true, "track_id": 1} +{"t": 41.0288, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005168, -0.028714, 0.446365, 0.240303, -0.109812, 1.115694, 0.270311, -0.161146, -0.042539, 0.146949, -0.718919, 0.647309, 1.490644, -0.614014, 0.498247, 0.250715], "tracked": true, "track_id": 1} +{"t": 41.064124, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005124, -0.028714, 0.447723, 0.240202, -0.117424, 1.101114, 0.269672, -0.175964, -0.042841, 0.137212, -0.724364, 0.644395, 1.487276, -0.615474, 0.498632, 0.249908], "tracked": true, "track_id": 1} +{"t": 41.131265, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005079, -0.028714, 0.451965, 0.237521, -0.120526, 1.08495, 0.266214, -0.191383, -0.041737, 0.124709, -0.731621, 0.641437, 1.479955, -0.617582, 0.499492, 0.249151], "tracked": true, "track_id": 1} +{"t": 41.193933, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004899, -0.028714, 0.45413, 0.234753, -0.120571, 1.072139, 0.263158, -0.204151, -0.040082, 0.113856, -0.738974, 0.640948, 1.470593, -0.620164, 0.500266, 0.249108], "tracked": true, "track_id": 1} +{"t": 41.262124, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004715, -0.028714, 0.453528, 0.236168, -0.131588, 1.057002, 0.263925, -0.220383, -0.0412, 0.10796, -0.743494, 0.641711, 1.461108, -0.622026, 0.500839, 0.249408], "tracked": true, "track_id": 1} +{"t": 41.295616, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004548, -0.028714, 0.453196, 0.236549, -0.135914, 1.050048, 0.263914, -0.227737, -0.041511, 0.105034, -0.745971, 0.642318, 1.457108, -0.62314, 0.50106, 0.249615], "tracked": true, "track_id": 1} +{"t": 41.359386, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004334, -0.028714, 0.452618, 0.237037, -0.142521, 1.038532, 0.263963, -0.239856, -0.04187, 0.101818, -0.748949, 0.643642, 1.448255, -0.624593, 0.501248, 0.250029], "tracked": true, "track_id": 1} +{"t": 41.394663, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004217, -0.028714, 0.452601, 0.237294, -0.146046, 1.032602, 0.263866, -0.245761, -0.042135, 0.099621, -0.750835, 0.644254, 1.443895, -0.62543, 0.501276, 0.250213], "tracked": true, "track_id": 1} +{"t": 41.459017, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004055, -0.028714, 0.451817, 0.23649, -0.144263, 1.031469, 0.263232, -0.247867, -0.041335, 0.099595, -0.751349, 0.644931, 1.43668, -0.625951, 0.501194, 0.250401], "tracked": true, "track_id": 1} +{"t": 41.520477, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003824, -0.028714, 0.449496, 0.237652, -0.144754, 1.03532, 0.264264, -0.245447, -0.041796, 0.096074, -0.754867, 0.64697, 1.434595, -0.627623, 0.501358, 0.251022], "tracked": true, "track_id": 1} +{"t": 41.557761, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003705, -0.028714, 0.449472, 0.237356, -0.14578, 1.031553, 0.2638, -0.249255, -0.0416, 0.094742, -0.755709, 0.646227, 1.431961, -0.627957, 0.501339, 0.250801], "tracked": true, "track_id": 1} +{"t": 41.620929, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003613, -0.028714, 0.448971, 0.236688, -0.144191, 1.030828, 0.263327, -0.250583, -0.040959, 0.093595, -0.756624, 0.646256, 1.427343, -0.628383, 0.50123, 0.250796], "tracked": true, "track_id": 1} +{"t": 41.690735, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003412, -0.028714, 0.447962, 0.237086, -0.147104, 1.025683, 0.263463, -0.255907, -0.04112, 0.091841, -0.758256, 0.646472, 1.424868, -0.629193, 0.501261, 0.250863], "tracked": true, "track_id": 1} +{"t": 41.755498, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003325, -0.028714, 0.448449, 0.236028, -0.144053, 1.027187, 0.26239, -0.254497, -0.040407, 0.092349, -0.757882, 0.645868, 1.424981, -0.629153, 0.501406, 0.250704], "tracked": true, "track_id": 1} +{"t": 41.824196, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003393, -0.028714, 0.449298, 0.234703, -0.137952, 1.033797, 0.261375, -0.247744, -0.039495, 0.091949, -0.757949, 0.645593, 1.427992, -0.629065, 0.501664, 0.250657], "tracked": true, "track_id": 1} +{"t": 41.888173, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003231, -0.028714, 0.451169, 0.232783, -0.134707, 1.032204, 0.259008, -0.248478, -0.038445, 0.091125, -0.758079, 0.643426, 1.431604, -0.629067, 0.501861, 0.250045], "tracked": true, "track_id": 1} +{"t": 41.949833, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003521, -0.028714, 0.452867, 0.232131, -0.132362, 1.034884, 0.258656, -0.244962, -0.038215, 0.089203, -0.75833, 0.642112, 1.437503, -0.628554, 0.501928, 0.249668], "tracked": true, "track_id": 1} +{"t": 41.985556, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003645, -0.028714, 0.453193, 0.231805, -0.130569, 1.036977, 0.258626, -0.242762, -0.037975, 0.085948, -0.759919, 0.641187, 1.44135, -0.628693, 0.501781, 0.249377], "tracked": true, "track_id": 1} +{"t": 42.048876, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003815, -0.028714, 0.454247, 0.231173, -0.128536, 1.038489, 0.258225, -0.240705, -0.037646, 0.079579, -0.763239, 0.639557, 1.447904, -0.629145, 0.501455, 0.248854], "tracked": true, "track_id": 1} +{"t": 42.082348, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003919, -0.028714, 0.455198, 0.230107, -0.12512, 1.040368, 0.257406, -0.238299, -0.036956, 0.078555, -0.763366, 0.638658, 1.451379, -0.628902, 0.501259, 0.248564], "tracked": true, "track_id": 1} +{"t": 42.117323, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003985, -0.028714, 0.455424, 0.231016, -0.129126, 1.03725, 0.258092, -0.241282, -0.037744, 0.075999, -0.76448, 0.637403, 1.454202, -0.628938, 0.501049, 0.248168], "tracked": true, "track_id": 1} +{"t": 42.150943, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00413, -0.028714, 0.456888, 0.229071, -0.12218, 1.041809, 0.256572, -0.235691, -0.036432, 0.073999, -0.765443, 0.637257, 1.457011, -0.628969, 0.500817, 0.248095], "tracked": true, "track_id": 1} +{"t": 42.215069, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00437, -0.028714, 0.457544, 0.229302, -0.121158, 1.045642, 0.257075, -0.231392, -0.036693, 0.071298, -0.766226, 0.635929, 1.462283, -0.628639, 0.500327, 0.24764], "tracked": true, "track_id": 1} +{"t": 42.250758, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004385, -0.028714, 0.458427, 0.22846, -0.119395, 1.045456, 0.256199, -0.231139, -0.036208, 0.070112, -0.766617, 0.634916, 1.463971, -0.628584, 0.500194, 0.247325], "tracked": true, "track_id": 1} +{"t": 42.285625, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00467, -0.028714, 0.459259, 0.227968, -0.115141, 1.051703, 0.25625, -0.223959, -0.035895, 0.067468, -0.767607, 0.634434, 1.465735, -0.62837, 0.499956, 0.247152], "tracked": true, "track_id": 1} +{"t": 42.348025, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004835, -0.028714, 0.461326, 0.226471, -0.110929, 1.053566, 0.254802, -0.220596, -0.035096, 0.068579, -0.766308, 0.633794, 1.466903, -0.627691, 0.500036, 0.246974], "tracked": true, "track_id": 1} +{"t": 42.412893, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00511, -0.028714, 0.462447, 0.226344, -0.109854, 1.055719, 0.254953, -0.217658, -0.035164, 0.065066, -0.768297, 0.634225, 1.465751, -0.627918, 0.500204, 0.247123], "tracked": true, "track_id": 1} +{"t": 42.478201, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005351, -0.028714, 0.464556, 0.22494, -0.105154, 1.059081, 0.253732, -0.21275, -0.034423, 0.064366, -0.768967, 0.635941, 1.459685, -0.628027, 0.500758, 0.2477], "tracked": true, "track_id": 1} +{"t": 42.511692, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005364, -0.028714, 0.46445, 0.224738, -0.104101, 1.060064, 0.253685, -0.211898, -0.034224, 0.066734, -0.767702, 0.636829, 1.456632, -0.627786, 0.501007, 0.247994], "tracked": true, "track_id": 1} +{"t": 42.548512, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005343, -0.028714, 0.464365, 0.225801, -0.108582, 1.056957, 0.254387, -0.215301, -0.035098, 0.066894, -0.76801, 0.637815, 1.451864, -0.62805, 0.50118, 0.248306], "tracked": true, "track_id": 1} +{"t": 42.582197, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005226, -0.028714, 0.462771, 0.227534, -0.114989, 1.051972, 0.255888, -0.22139, -0.036186, 0.066846, -0.768436, 0.638195, 1.447664, -0.628402, 0.501323, 0.248437], "tracked": true, "track_id": 1} +{"t": 42.641729, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00501, -0.028714, 0.45995, 0.230493, -0.115993, 1.064581, 0.258441, -0.209595, -0.038023, 0.066941, -0.770391, 0.642544, 1.445838, -0.629874, 0.501612, 0.249754], "tracked": true, "track_id": 1} +{"t": 42.676865, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005015, -0.028714, 0.458948, 0.232404, -0.118824, 1.068818, 0.260123, -0.205754, -0.039358, 0.064879, -0.772398, 0.644269, 1.445534, -0.630666, 0.501694, 0.250272], "tracked": true, "track_id": 1} +{"t": 42.740834, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004828, -0.028714, 0.455362, 0.232945, -0.110396, 1.083938, 0.261366, -0.189865, -0.038956, 0.067853, -0.771756, 0.646999, 1.441853, -0.631133, 0.501801, 0.251089], "tracked": true, "track_id": 1} +{"t": 42.810481, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00478, -0.028714, 0.452576, 0.238261, -0.124739, 1.08272, 0.265816, -0.193699, -0.042673, 0.070369, -0.771232, 0.649984, 1.442912, -0.631472, 0.501944, 0.251985], "tracked": true, "track_id": 1} +{"t": 42.844587, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004897, -0.028714, 0.450921, 0.2403, -0.126327, 1.088836, 0.26804, -0.188079, -0.043875, 0.076382, -0.767569, 0.651551, 1.443551, -0.630431, 0.502016, 0.252455], "tracked": true, "track_id": 1} +{"t": 42.90905, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004999, -0.028714, 0.448345, 0.244372, -0.140125, 1.080119, 0.271913, -0.198793, -0.046533, 0.086375, -0.761124, 0.652636, 1.442883, -0.628511, 0.502033, 0.252777], "tracked": true, "track_id": 1} +{"t": 42.973225, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00527, -0.028714, 0.444711, 0.248214, -0.140282, 1.096167, 0.276318, -0.183302, -0.048604, 0.102481, -0.75117, 0.655778, 1.45023, -0.625402, 0.502015, 0.253699], "tracked": true, "track_id": 1} +{"t": 43.037077, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005525, -0.028714, 0.443548, 0.251613, -0.151431, 1.090354, 0.279606, -0.190013, -0.051006, 0.116704, -0.741396, 0.655707, 1.456439, -0.621909, 0.501954, 0.25367], "tracked": true, "track_id": 1} +{"t": 43.105186, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005388, -0.028714, 0.443495, 0.254045, -0.171901, 1.060147, 0.280959, -0.220065, -0.053098, 0.126325, -0.734399, 0.652929, 1.458874, -0.619595, 0.502055, 0.252866], "tracked": true, "track_id": 1} +{"t": 43.170358, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005715, -0.028714, 0.444407, 0.253518, -0.171728, 1.059008, 0.28112, -0.222187, -0.05277, 0.132227, -0.729128, 0.650759, 1.464484, -0.61717, 0.5019, 0.252207], "tracked": true, "track_id": 1} +{"t": 43.204708, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005678, -0.028714, 0.444575, 0.252287, -0.169489, 1.05724, 0.280168, -0.224475, -0.051812, 0.137361, -0.725405, 0.649377, 1.46718, -0.615834, 0.501865, 0.251797], "tracked": true, "track_id": 1} +{"t": 43.241995, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005725, -0.028714, 0.444651, 0.252701, -0.172459, 1.05367, 0.280541, -0.228497, -0.05216, 0.138511, -0.724002, 0.64788, 1.46939, -0.615152, 0.501761, 0.251343], "tracked": true, "track_id": 1} +{"t": 43.305847, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005812, -0.028714, 0.440804, 0.254015, -0.160781, 1.079198, 0.282798, -0.202562, -0.052116, 0.14628, -0.718759, 0.648012, 1.476496, -0.613237, 0.50081, 0.251257], "tracked": true, "track_id": 1} +{"t": 43.365578, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00607, -0.028714, 0.436823, 0.260024, -0.17508, 1.07889, 0.288556, -0.2063, -0.055833, 0.151843, -0.715687, 0.651392, 1.481631, -0.612126, 0.499316, 0.252056], "tracked": true, "track_id": 1} +{"t": 43.401053, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006259, -0.028714, 0.43578, 0.263476, -0.186987, 1.072205, 0.291619, -0.214095, -0.058316, 0.152876, -0.715009, 0.652661, 1.483637, -0.611736, 0.498676, 0.252346], "tracked": true, "track_id": 1} +{"t": 43.468317, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006646, -0.028714, 0.435043, 0.266019, -0.192013, 1.074928, 0.294465, -0.212241, -0.060036, 0.158357, -0.711331, 0.654353, 1.48679, -0.610013, 0.498017, 0.252757], "tracked": true, "track_id": 1} +{"t": 43.533162, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006952, -0.028714, 0.431645, 0.271033, -0.200184, 1.081521, 0.299445, -0.207634, -0.063042, 0.162492, -0.708393, 0.655379, 1.489068, -0.60859, 0.497212, 0.252954], "tracked": true, "track_id": 1} +{"t": 43.568143, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00703, -0.028714, 0.430539, 0.271614, -0.198856, 1.085876, 0.300326, -0.203744, -0.06316, 0.162625, -0.708154, 0.655513, 1.489958, -0.608406, 0.496942, 0.252958], "tracked": true, "track_id": 1} +{"t": 43.601741, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00724, -0.028714, 0.430686, 0.273104, -0.202295, 1.087254, 0.30179, -0.20241, -0.064345, 0.160988, -0.708775, 0.655706, 1.490714, -0.608323, 0.496536, 0.252961], "tracked": true, "track_id": 1} +{"t": 43.66729, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007373, -0.028714, 0.430024, 0.27456, -0.202164, 1.094742, 0.303271, -0.194809, -0.0653, 0.163956, -0.706563, 0.655635, 1.491904, -0.607304, 0.496032, 0.252875], "tracked": true, "track_id": 1} +{"t": 43.728945, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007492, -0.028714, 0.429369, 0.277134, -0.211212, 1.089877, 0.305459, -0.200668, -0.067196, 0.166905, -0.704236, 0.654853, 1.492763, -0.606208, 0.496099, 0.252653], "tracked": true, "track_id": 1} +{"t": 43.792794, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007682, -0.028714, 0.427463, 0.279628, -0.213791, 1.095303, 0.308059, -0.195781, -0.068593, 0.169783, -0.702245, 0.655465, 1.493384, -0.605236, 0.495663, 0.252776], "tracked": true, "track_id": 1} +{"t": 43.828965, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00762, -0.028714, 0.425175, 0.281826, -0.221614, 1.088127, 0.309935, -0.204547, -0.069748, 0.168838, -0.702896, 0.655451, 1.493626, -0.605567, 0.495431, 0.252742], "tracked": true, "track_id": 1} +{"t": 43.894973, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007792, -0.028714, 0.424045, 0.28468, -0.226812, 1.091886, 0.312526, -0.201392, -0.07169, 0.169079, -0.702416, 0.655472, 1.494007, -0.605136, 0.495352, 0.252738], "tracked": true, "track_id": 1} +{"t": 43.929738, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007864, -0.028714, 0.423586, 0.285137, -0.221764, 1.103311, 0.313119, -0.188491, -0.071891, 0.170435, -0.701547, 0.655823, 1.494156, -0.604734, 0.495216, 0.252823], "tracked": true, "track_id": 1} +{"t": 43.96459, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007818, -0.028714, 0.422314, 0.287792, -0.23303, 1.093251, 0.315093, -0.199738, -0.073734, 0.169, -0.702467, 0.655763, 1.494283, -0.605133, 0.495028, 0.252781], "tracked": true, "track_id": 1} +{"t": 44.026821, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007618, -0.028714, 0.41925, 0.29209, -0.251201, 1.075219, 0.318227, -0.219706, -0.076469, 0.165443, -0.704951, 0.655638, 1.494482, -0.606323, 0.494726, 0.252705], "tracked": true, "track_id": 1} +{"t": 44.093477, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007184, -0.028714, 0.413061, 0.300457, -0.284178, 1.038009, 0.324146, -0.253802, -0.081711, 0.160708, -0.708247, 0.654317, 1.494626, -0.608019, 0.494713, 0.252315], "tracked": true, "track_id": 1} +{"t": 44.157267, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006655, -0.028714, 0.403101, 0.312585, -0.323682, 0.991881, 0.332878, -0.288155, -0.088839, 0.153887, -0.713095, 0.652979, 1.49473, -0.610364, 0.494874, 0.251942], "tracked": true, "track_id": 1} +{"t": 44.222517, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006557, -0.028714, 0.395013, 0.323279, -0.35528, 0.960552, 0.341163, -0.311593, -0.095069, 0.149302, -0.715988, 0.652491, 1.494805, -0.611474, 0.494824, 0.251792], "tracked": true, "track_id": 1} +{"t": 44.25735, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006667, -0.028714, 0.392444, 0.327564, -0.368187, 0.950155, 0.344715, -0.320514, -0.097699, 0.14699, -0.717388, 0.652979, 1.494834, -0.611847, 0.494701, 0.251919], "tracked": true, "track_id": 1} +{"t": 44.291168, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006716, -0.028714, 0.389808, 0.332269, -0.382882, 0.928075, 0.348407, -0.330682, -0.100692, 0.143012, -0.718348, 0.649015, 1.494859, -0.611615, 0.494177, 0.250685], "tracked": true, "track_id": 1} +{"t": 44.325119, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006773, -0.028714, 0.386198, 0.338241, -0.399142, 0.905468, 0.35305, -0.339119, -0.104371, 0.140405, -0.718873, 0.646245, 1.49488, -0.611379, 0.493905, 0.249835], "tracked": true, "track_id": 1} +{"t": 44.389524, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006826, -0.028714, 0.377569, 0.351335, -0.430904, 0.862383, 0.363019, -0.350896, -0.112174, 0.13052, -0.723087, 0.641026, 1.494913, -0.611994, 0.492621, 0.248132], "tracked": true, "track_id": 1} +{"t": 44.453617, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006789, -0.028714, 0.36785, 0.36249, -0.454528, 0.834298, 0.371476, -0.35977, -0.117962, 0.125058, -0.724531, 0.635586, 1.494937, -0.611809, 0.491266, 0.246355], "tracked": true, "track_id": 1} +{"t": 44.522592, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006396, -0.028714, 0.354982, 0.374396, -0.475124, 0.810002, 0.379757, -0.364579, -0.123391, 0.116652, -0.728462, 0.629758, 1.494955, -0.612839, 0.489713, 0.244438], "tracked": true, "track_id": 1} +{"t": 44.585666, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006094, -0.028714, 0.340652, 0.38748, -0.495159, 0.789771, 0.388805, -0.366541, -0.129027, 0.108641, -0.732508, 0.625124, 1.494967, -0.613924, 0.48881, 0.242957], "tracked": true, "track_id": 1} +{"t": 44.652599, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005806, -0.028714, 0.329917, 0.3966, -0.508588, 0.77646, 0.395005, -0.368375, -0.132737, 0.100945, -0.736606, 0.621206, 1.494976, -0.615063, 0.487926, 0.241689], "tracked": true, "track_id": 1} +{"t": 44.689171, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005737, -0.028714, 0.32668, 0.399607, -0.513472, 0.771104, 0.397121, -0.36916, -0.134071, 0.097792, -0.738249, 0.619747, 1.49498, -0.615471, 0.487632, 0.241221], "tracked": true, "track_id": 1} +{"t": 44.751361, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005223, -0.028714, 0.31742, 0.405994, -0.521179, 0.762623, 0.400882, -0.369831, -0.13625, 0.094655, -0.739473, 0.614505, 1.494985, -0.615944, 0.48769, 0.239687], "tracked": true, "track_id": 1} +{"t": 44.817381, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004905, -0.028714, 0.313787, 0.408961, -0.52604, 0.754644, 0.402573, -0.370047, -0.137651, 0.095089, -0.738661, 0.611608, 1.49499, -0.615792, 0.487075, 0.238755], "tracked": true, "track_id": 1} +{"t": 44.882338, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00468, -0.028714, 0.310795, 0.410603, -0.52805, 0.751861, 0.403473, -0.371203, -0.138091, 0.100602, -0.734577, 0.609174, 1.494992, -0.61459, 0.487006, 0.23803], "tracked": true, "track_id": 1} +{"t": 44.949393, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004532, -0.028714, 0.309883, 0.410995, -0.528904, 0.749219, 0.4036, -0.37198, -0.138241, 0.105075, -0.731361, 0.607565, 1.494995, -0.61366, 0.487193, 0.237581], "tracked": true, "track_id": 1} +{"t": 45.015677, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004553, -0.028714, 0.309915, 0.411041, -0.529541, 0.748231, 0.403745, -0.372936, -0.138303, 0.108161, -0.728788, 0.606087, 1.494996, -0.612678, 0.487382, 0.237171], "tracked": true, "track_id": 1} +{"t": 45.077805, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004638, -0.028714, 0.309585, 0.411207, -0.529803, 0.748698, 0.404067, -0.373948, -0.138248, 0.106937, -0.727524, 0.600704, 1.494997, -0.611497, 0.487439, 0.235595], "tracked": true, "track_id": 1} +{"t": 45.116751, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004735, -0.028714, 0.310077, 0.411267, -0.530443, 0.747991, 0.404292, -0.374142, -0.138411, 0.104142, -0.726833, 0.593962, 1.494998, -0.610295, 0.487682, 0.233644], "tracked": true, "track_id": 1} +{"t": 45.179203, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00499, -0.028714, 0.31095, 0.411192, -0.530939, 0.748077, 0.404711, -0.374832, -0.138467, 0.080009, -0.739533, 0.584621, 1.493464, -0.612247, 0.488983, 0.231067], "tracked": true, "track_id": 1} +{"t": 45.246085, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005254, -0.028714, 0.311149, 0.411895, -0.532497, 0.747684, 0.405667, -0.375141, -0.138884, 0.045721, -0.762216, 0.582433, 1.483339, -0.617564, 0.491364, 0.230734], "tracked": true, "track_id": 1} +{"t": 45.311173, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005499, -0.028714, 0.311914, 0.411913, -0.533098, 0.748647, 0.406108, -0.375815, -0.138973, 0.008474, -0.790574, 0.589181, 1.464355, -0.625313, 0.494166, 0.233085], "tracked": true, "track_id": 1} +{"t": 45.38014, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005644, -0.028714, 0.311594, 0.41204, -0.532886, 0.750615, 0.406468, -0.376565, -0.138813, -0.015677, -0.810431, 0.597651, 1.449864, -0.631421, 0.496369, 0.235865], "tracked": true, "track_id": 1} +{"t": 45.444833, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00587, -0.028714, 0.311864, 0.412339, -0.533668, 0.752305, 0.407069, -0.377238, -0.138955, -0.024961, -0.818649, 0.603802, 1.442638, -0.634322, 0.497887, 0.237872], "tracked": true, "track_id": 1} +{"t": 45.511568, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006083, -0.028714, 0.314123, 0.410917, -0.532453, 0.754161, 0.406459, -0.378094, -0.138486, -0.022755, -0.817678, 0.607344, 1.446258, -0.634576, 0.498154, 0.238949], "tracked": true, "track_id": 1} +{"t": 45.574001, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00673, -0.028714, 0.319454, 0.40948, -0.5338, 0.753025, 0.406513, -0.378444, -0.138836, -0.022022, -0.815067, 0.6068, 1.457566, -0.633026, 0.496359, 0.238554], "tracked": true, "track_id": 1} +{"t": 45.638608, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007319, -0.028714, 0.324669, 0.407673, -0.534154, 0.752317, 0.406207, -0.378868, -0.138885, -0.013717, -0.805729, 0.602183, 1.467954, -0.629134, 0.493294, 0.236796], "tracked": true, "track_id": 1} +{"t": 45.673594, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007496, -0.028714, 0.326972, 0.406817, -0.534316, 0.751358, 0.405874, -0.378881, -0.138931, -0.009951, -0.801107, 0.598811, 1.472011, -0.627139, 0.490954, 0.235498], "tracked": true, "track_id": 1} +{"t": 45.708877, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007733, -0.028714, 0.328578, 0.406283, -0.534401, 0.751822, 0.4059, -0.379187, -0.138916, -0.009081, -0.797614, 0.593378, 1.475459, -0.625029, 0.488484, 0.233577], "tracked": true, "track_id": 1} +{"t": 45.771625, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008175, -0.028714, 0.334663, 0.40299, -0.532286, 0.752505, 0.404236, -0.37999, -0.138188, -0.004219, -0.785822, 0.574579, 1.480882, -0.61847, 0.483904, 0.227449], "tracked": true, "track_id": 1} +{"t": 45.805469, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008399, -0.028714, 0.338039, 0.401119, -0.531035, 0.752992, 0.403223, -0.38044, -0.137762, 0.000627, -0.777968, 0.564071, 1.483, -0.614524, 0.482121, 0.224126], "tracked": true, "track_id": 1} +{"t": 45.869951, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008587, -0.028714, 0.340475, 0.400158, -0.531066, 0.752066, 0.402836, -0.380494, -0.137764, 0.010573, -0.762981, 0.543346, 1.48633, -0.607279, 0.479764, 0.217722], "tracked": true, "track_id": 1} +{"t": 45.937937, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008662, -0.028714, 0.340025, 0.400617, -0.531558, 0.752187, 0.403326, -0.380506, -0.137907, 0.012896, -0.759365, 0.53882, 1.488736, -0.605562, 0.47849, 0.216224], "tracked": true, "track_id": 1} +{"t": 46.001331, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008736, -0.028714, 0.33978, 0.401103, -0.532427, 0.752429, 0.403821, -0.380565, -0.138155, 0.013349, -0.757941, 0.536424, 1.490474, -0.604769, 0.47812, 0.215471], "tracked": true, "track_id": 1} +{"t": 46.034742, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008861, -0.028714, 0.340836, 0.400962, -0.533082, 0.751934, 0.403913, -0.380556, -0.138349, 0.013068, -0.758985, 0.539238, 1.491153, -0.60535, 0.479112, 0.216428], "tracked": true, "track_id": 1} +{"t": 46.068093, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008831, -0.028714, 0.33909, 0.402395, -0.534699, 0.751169, 0.404892, -0.380175, -0.138874, 0.012609, -0.759716, 0.539815, 1.49173, -0.605746, 0.480109, 0.216729], "tracked": true, "track_id": 1} +{"t": 46.10426, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008847, -0.028714, 0.337719, 0.403327, -0.535473, 0.752043, 0.405607, -0.380268, -0.13909, 0.008625, -0.763467, 0.542274, 1.49222, -0.607119, 0.481203, 0.217595], "tracked": true, "track_id": 1} +{"t": 46.167557, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008916, -0.028714, 0.334283, 0.40639, -0.539042, 0.751541, 0.407911, -0.379782, -0.140203, -0.00314, -0.773941, 0.548226, 1.492095, -0.610675, 0.483422, 0.219635], "tracked": true, "track_id": 1} +{"t": 46.233839, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008737, -0.028714, 0.328329, 0.410195, -0.541956, 0.752156, 0.410288, -0.37934, -0.141118, -0.009514, -0.781491, 0.554805, 1.489298, -0.61396, 0.485996, 0.221907], "tracked": true, "track_id": 1} +{"t": 46.297148, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008669, -0.028714, 0.324649, 0.413301, -0.5455, 0.750435, 0.412346, -0.378449, -0.142276, -0.018207, -0.791167, 0.563604, 1.485253, -0.617879, 0.48813, 0.224774], "tracked": true, "track_id": 1} +{"t": 46.365746, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008297, -0.028714, 0.319888, 0.41539, -0.545936, 0.751646, 0.413178, -0.378305, -0.142424, -0.027954, -0.802497, 0.572532, 1.474926, -0.622637, 0.491087, 0.227786], "tracked": true, "track_id": 1} +{"t": 46.431602, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008051, -0.028714, 0.316977, 0.417299, -0.547707, 0.749736, 0.414087, -0.377406, -0.143062, -0.036312, -0.812618, 0.581748, 1.464131, -0.626942, 0.493683, 0.230836], "tracked": true, "track_id": 1} +{"t": 46.49558, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00786, -0.028714, 0.31394, 0.419487, -0.549859, 0.747749, 0.415263, -0.376438, -0.143822, -0.041925, -0.819675, 0.58852, 1.457277, -0.630021, 0.495435, 0.233057], "tracked": true, "track_id": 1} +{"t": 46.532222, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00773, -0.028714, 0.312597, 0.420357, -0.550658, 0.746701, 0.415639, -0.37595, -0.14412, -0.041915, -0.82105, 0.591332, 1.455048, -0.631013, 0.496138, 0.233976], "tracked": true, "track_id": 1} +{"t": 46.5929, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007547, -0.028714, 0.310934, 0.421526, -0.551895, 0.74477, 0.416132, -0.375139, -0.14459, -0.044283, -0.824939, 0.595952, 1.450513, -0.632969, 0.497282, 0.235484], "tracked": true, "track_id": 1} +{"t": 46.661246, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007302, -0.028714, 0.309938, 0.421637, -0.551498, 0.744062, 0.415802, -0.374808, -0.144516, -0.040163, -0.823048, 0.597293, 1.453208, -0.633095, 0.497382, 0.235892], "tracked": true, "track_id": 1} +{"t": 46.727182, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007306, -0.028714, 0.314302, 0.419028, -0.549958, 0.741167, 0.413977, -0.374426, -0.144114, -0.029796, -0.815612, 0.597008, 1.45799, -0.631275, 0.497249, 0.23579], "tracked": true, "track_id": 1} +{"t": 46.79669, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007641, -0.028714, 0.323651, 0.41281, -0.544711, 0.742715, 0.410089, -0.37596, -0.14237, -0.0195, -0.808471, 0.599805, 1.46611, -0.629422, 0.496218, 0.236478], "tracked": true, "track_id": 1} +{"t": 46.860169, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007963, -0.028714, 0.330953, 0.409188, -0.543386, 0.739671, 0.407982, -0.375957, -0.141981, -0.011863, -0.80264, 0.600724, 1.471103, -0.627659, 0.49571, 0.236682], "tracked": true, "track_id": 1} +{"t": 46.92461, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008084, -0.028714, 0.334036, 0.407153, -0.541697, 0.739842, 0.406768, -0.376412, -0.141424, -0.008934, -0.799544, 0.598878, 1.474906, -0.626452, 0.495127, 0.236063], "tracked": true, "track_id": 1} +{"t": 46.989632, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008127, -0.028714, 0.333712, 0.406793, -0.540495, 0.74238, 0.406675, -0.377111, -0.140979, -0.00912, -0.798172, 0.595348, 1.478572, -0.62551, 0.494295, 0.234916], "tracked": true, "track_id": 1} +{"t": 47.054693, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008196, -0.028714, 0.330592, 0.410365, -0.545544, 0.739155, 0.409321, -0.375688, -0.14265, -0.009509, -0.796952, 0.591789, 1.480334, -0.624585, 0.493923, 0.233821], "tracked": true, "track_id": 1} +{"t": 47.090078, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008386, -0.028714, 0.329583, 0.412036, -0.548237, 0.738811, 0.410827, -0.375477, -0.14347, -0.010489, -0.7967, 0.590533, 1.481475, -0.624061, 0.493593, 0.233408], "tracked": true, "track_id": 1} +{"t": 47.124395, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008331, -0.028714, 0.326222, 0.414418, -0.550308, 0.738741, 0.412397, -0.375048, -0.144135, -0.012583, -0.797381, 0.588213, 1.482964, -0.623929, 0.493061, 0.232656], "tracked": true, "track_id": 1} +{"t": 47.158554, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008364, -0.028714, 0.323312, 0.416734, -0.552626, 0.739179, 0.414062, -0.374849, -0.144843, -0.011987, -0.796212, 0.586571, 1.484769, -0.623319, 0.492468, 0.232096], "tracked": true, "track_id": 1} +{"t": 47.221274, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008465, -0.028714, 0.317721, 0.42169, -0.558102, 0.738472, 0.417635, -0.373912, -0.146576, -0.015185, -0.7971, 0.583904, 1.487276, -0.622931, 0.49134, 0.231164], "tracked": true, "track_id": 1} +{"t": 47.286281, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008389, -0.028714, 0.31251, 0.425325, -0.561035, 0.738462, 0.419991, -0.373257, -0.147524, -0.016245, -0.796583, 0.580255, 1.489419, -0.622311, 0.490455, 0.229975], "tracked": true, "track_id": 1} +{"t": 47.349915, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008335, -0.028714, 0.307346, 0.429043, -0.564134, 0.73848, 0.422396, -0.372609, -0.148521, -0.012175, -0.791213, 0.573554, 1.490968, -0.619957, 0.488658, 0.227769], "tracked": true, "track_id": 1} +{"t": 47.385115, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008353, -0.028714, 0.303935, 0.431346, -0.565737, 0.740045, 0.423936, -0.372732, -0.148976, -0.00648, -0.786905, 0.573059, 1.491573, -0.618698, 0.487703, 0.227499], "tracked": true, "track_id": 1} +{"t": 47.45213, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008323, -0.028714, 0.301919, 0.432515, -0.566404, 0.741152, 0.424702, -0.372876, -0.149153, 0.004126, -0.776658, 0.566053, 1.492524, -0.614881, 0.48441, 0.225008], "tracked": true, "track_id": 1} +{"t": 47.52061, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00839, -0.028714, 0.305784, 0.430089, -0.564863, 0.739644, 0.423234, -0.37284, -0.148705, 0.015495, -0.763924, 0.553537, 1.493211, -0.609512, 0.482102, 0.221025], "tracked": true, "track_id": 1} +{"t": 47.581511, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008328, -0.028714, 0.310851, 0.425326, -0.559311, 0.741602, 0.419927, -0.374104, -0.146906, 0.023152, -0.755352, 0.544392, 1.493707, -0.605969, 0.480768, 0.218161], "tracked": true, "track_id": 1} +{"t": 47.614946, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008389, -0.028714, 0.314009, 0.422884, -0.556962, 0.742799, 0.418364, -0.37485, -0.146118, 0.025245, -0.753392, 0.543564, 1.493901, -0.605223, 0.480207, 0.217844], "tracked": true, "track_id": 1} +{"t": 47.65237, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.0084, -0.028714, 0.318432, 0.419249, -0.553066, 0.743616, 0.415839, -0.375614, -0.144872, 0.026664, -0.753506, 0.546689, 1.494066, -0.605703, 0.480347, 0.218781], "tracked": true, "track_id": 1} +{"t": 47.713544, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008683, -0.028714, 0.325116, 0.415376, -0.550737, 0.742625, 0.413608, -0.376158, -0.144116, 0.016938, -0.762146, 0.55341, 1.494325, -0.608629, 0.481771, 0.220944], "tracked": true, "track_id": 1} +{"t": 47.78015, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008577, -0.028714, 0.331052, 0.410956, -0.5467, 0.740468, 0.410267, -0.376252, -0.142917, 0.012739, -0.770447, 0.566964, 1.493691, -0.613071, 0.484389, 0.225273], "tracked": true, "track_id": 1} +{"t": 47.814086, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008516, -0.028714, 0.33419, 0.409007, -0.545415, 0.737862, 0.408721, -0.375824, -0.142595, 0.009477, -0.775682, 0.574341, 1.491319, -0.615674, 0.485965, 0.227649], "tracked": true, "track_id": 1} +{"t": 47.848155, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008222, -0.028714, 0.337635, 0.405424, -0.540787, 0.737083, 0.405586, -0.376025, -0.141207, 0.005631, -0.781362, 0.580167, 1.486237, -0.618493, 0.487887, 0.229613], "tracked": true, "track_id": 1} +{"t": 47.909407, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007844, -0.028714, 0.341392, 0.401853, -0.536677, 0.734259, 0.402337, -0.375624, -0.140051, -0.002097, -0.792482, 0.592427, 1.473015, -0.623842, 0.49156, 0.233699], "tracked": true, "track_id": 1} +{"t": 47.946798, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007492, -0.028714, 0.342893, 0.399217, -0.532399, 0.734741, 0.399843, -0.375961, -0.138748, -0.004665, -0.797283, 0.598063, 1.466349, -0.626456, 0.493126, 0.235562], "tracked": true, "track_id": 1} +{"t": 48.009255, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007193, -0.028714, 0.346101, 0.396228, -0.528957, 0.732627, 0.397109, -0.375719, -0.137768, -0.011149, -0.80628, 0.607699, 1.453324, -0.630683, 0.49567, 0.238728], "tracked": true, "track_id": 1} +{"t": 48.077852, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006899, -0.028714, 0.347665, 0.394134, -0.52604, 0.732283, 0.395093, -0.375821, -0.136897, -0.011992, -0.810689, 0.615904, 1.442839, -0.633537, 0.497534, 0.241385], "tracked": true, "track_id": 1} +{"t": 48.142044, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006735, -0.028714, 0.350108, 0.392429, -0.524622, 0.729395, 0.393489, -0.375211, -0.136559, -0.016258, -0.815988, 0.620818, 1.434782, -0.63588, 0.498885, 0.243007], "tracked": true, "track_id": 1} +{"t": 48.207728, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006443, -0.028714, 0.352194, 0.390094, -0.521516, 0.728267, 0.391223, -0.37513, -0.135656, -0.019246, -0.820071, 0.624181, 1.428973, -0.637839, 0.499863, 0.244124], "tracked": true, "track_id": 1} +{"t": 48.244956, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00645, -0.028714, 0.353342, 0.388801, -0.519612, 0.729973, 0.390291, -0.375777, -0.135012, -0.019429, -0.820828, 0.625854, 1.426515, -0.638299, 0.500246, 0.244666], "tracked": true, "track_id": 1} +{"t": 48.278345, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006463, -0.028714, 0.353356, 0.389181, -0.520528, 0.728762, 0.390585, -0.37539, -0.135332, -0.020518, -0.822045, 0.627083, 1.42371, -0.638786, 0.500566, 0.24507], "tracked": true, "track_id": 1} +{"t": 48.33839, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006233, -0.028714, 0.354109, 0.387846, -0.518385, 0.72857, 0.389187, -0.375448, -0.134694, -0.017845, -0.821115, 0.628128, 1.420659, -0.639079, 0.501073, 0.245443], "tracked": true, "track_id": 1} +{"t": 48.37289, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00616, -0.028714, 0.353579, 0.38768, -0.517575, 0.729531, 0.388994, -0.375687, -0.134424, -0.018466, -0.821923, 0.628638, 1.419638, -0.639467, 0.501275, 0.24562], "tracked": true, "track_id": 1} +{"t": 48.438439, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006169, -0.028714, 0.355011, 0.386579, -0.516359, 0.729571, 0.388159, -0.375902, -0.134039, -0.018558, -0.82195, 0.628468, 1.418683, -0.639466, 0.501582, 0.24561], "tracked": true, "track_id": 1} +{"t": 48.50619, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00622, -0.028714, 0.358867, 0.383525, -0.512834, 0.731167, 0.385852, -0.376836, -0.13288, -0.012142, -0.817635, 0.629205, 1.420105, -0.638475, 0.501797, 0.245855], "tracked": true, "track_id": 1} +{"t": 48.573772, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006093, -0.028714, 0.360241, 0.3804, -0.506883, 0.737767, 0.3834, -0.378654, -0.130892, -0.002134, -0.810896, 0.629022, 1.421673, -0.636972, 0.501965, 0.245823], "tracked": true, "track_id": 1} +{"t": 48.637823, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005517, -0.028714, 0.362619, 0.370098, -0.481583, 0.76651, 0.375125, -0.377313, -0.123626, 0.009384, -0.80461, 0.630274, 1.42223, -0.636369, 0.502071, 0.246205], "tracked": true, "track_id": 1} +{"t": 48.702238, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005549, -0.028714, 0.369422, 0.360568, -0.462423, 0.7907, 0.36796, -0.376719, -0.118068, 0.022444, -0.796019, 0.631569, 1.427844, -0.634278, 0.502097, 0.246589], "tracked": true, "track_id": 1} +{"t": 48.766758, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005287, -0.028714, 0.375201, 0.353054, -0.449053, 0.80216, 0.361614, -0.377608, -0.11402, 0.034158, -0.788467, 0.63147, 1.425742, -0.632668, 0.502046, 0.246553], "tracked": true, "track_id": 1} +{"t": 48.801404, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00472, -0.028714, 0.375971, 0.353401, -0.451987, 0.787512, 0.360591, -0.376629, -0.115011, 0.032418, -0.790083, 0.629361, 1.423271, -0.633583, 0.502031, 0.245931], "tracked": true, "track_id": 1} +{"t": 48.869892, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003899, -0.028714, 0.378025, 0.353704, -0.45673, 0.764423, 0.358825, -0.375205, -0.116592, 0.034366, -0.787703, 0.621687, 1.426285, -0.633064, 0.502106, 0.243684], "tracked": true, "track_id": 1} +{"t": 48.939274, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003808, -0.028714, 0.380296, 0.35301, -0.458297, 0.758184, 0.357878, -0.376543, -0.116878, 0.042916, -0.782349, 0.622595, 1.426926, -0.631942, 0.502165, 0.243958], "tracked": true, "track_id": 1} +{"t": 49.000157, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003627, -0.028714, 0.384214, 0.351427, -0.458637, 0.750471, 0.355813, -0.376326, -0.117006, 0.064276, -0.769203, 0.625027, 1.431862, -0.628839, 0.502217, 0.244681], "tracked": true, "track_id": 1} +{"t": 49.066987, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003887, -0.028714, 0.387383, 0.355391, -0.470831, 0.728249, 0.358509, -0.371682, -0.1212, 0.073529, -0.7638, 0.628957, 1.434564, -0.627529, 0.502249, 0.245841], "tracked": true, "track_id": 1} +{"t": 49.130566, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004415, -0.028714, 0.382965, 0.359032, -0.476043, 0.735452, 0.362719, -0.374662, -0.122343, 0.087464, -0.755727, 0.635332, 1.440059, -0.625246, 0.502288, 0.247721], "tracked": true, "track_id": 1} +{"t": 49.195739, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00481, -0.028714, 0.380541, 0.360379, -0.477324, 0.742056, 0.364838, -0.377402, -0.122362, 0.103459, -0.745619, 0.638683, 1.44429, -0.622015, 0.502322, 0.248711], "tracked": true, "track_id": 1} +{"t": 49.232082, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005008, -0.028714, 0.379663, 0.360825, -0.47772, 0.746552, 0.365694, -0.378807, -0.122294, 0.112322, -0.740048, 0.640314, 1.445794, -0.620158, 0.502319, 0.24919], "tracked": true, "track_id": 1} +{"t": 49.296904, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005338, -0.028714, 0.379746, 0.360816, -0.477863, 0.750427, 0.366401, -0.380654, -0.122095, 0.122579, -0.733812, 0.643544, 1.445531, -0.618149, 0.50224, 0.25013], "tracked": true, "track_id": 1} +{"t": 49.36283, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005748, -0.028714, 0.378758, 0.361462, -0.478231, 0.755271, 0.367845, -0.382184, -0.122003, 0.124711, -0.731887, 0.644565, 1.4481, -0.617174, 0.502271, 0.250434], "tracked": true, "track_id": 1} +{"t": 49.426357, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006346, -0.028714, 0.378062, 0.366581, -0.489392, 0.74367, 0.372599, -0.379804, -0.125597, 0.121201, -0.732988, 0.644863, 1.452295, -0.616762, 0.502158, 0.250507], "tracked": true, "track_id": 1} +{"t": 49.4962, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006422, -0.028714, 0.384781, 0.366907, -0.495465, 0.722647, 0.371891, -0.374284, -0.128105, 0.121933, -0.731078, 0.64145, 1.456961, -0.615684, 0.502051, 0.249489], "tracked": true, "track_id": 1} +{"t": 49.560306, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006267, -0.028714, 0.392719, 0.365265, -0.497804, 0.703438, 0.369016, -0.369063, -0.129475, 0.124674, -0.729252, 0.640649, 1.462122, -0.615274, 0.501877, 0.249231], "tracked": true, "track_id": 1} +{"t": 49.593942, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006009, -0.028714, 0.394367, 0.360676, -0.488594, 0.715257, 0.365154, -0.371945, -0.126389, 0.130301, -0.726249, 0.641087, 1.466326, -0.614723, 0.501717, 0.249339], "tracked": true, "track_id": 1} +{"t": 49.659712, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00569, -0.028714, 0.395876, 0.354115, -0.47457, 0.734032, 0.359923, -0.376443, -0.121677, 0.138126, -0.721869, 0.641462, 1.474283, -0.613795, 0.50124, 0.249387], "tracked": true, "track_id": 1} +{"t": 49.721918, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00529, -0.028714, 0.397115, 0.35184, -0.47069, 0.729128, 0.357371, -0.376866, -0.120481, 0.129621, -0.725544, 0.634575, 1.480032, -0.614668, 0.500109, 0.247213], "tracked": true, "track_id": 1} +{"t": 49.789515, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005202, -0.028714, 0.400002, 0.351496, -0.472446, 0.718798, 0.356432, -0.375229, -0.121211, 0.119325, -0.729692, 0.627428, 1.484186, -0.615166, 0.498861, 0.244948], "tracked": true, "track_id": 1} +{"t": 49.853886, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005479, -0.028714, 0.40536, 0.349626, -0.472254, 0.711821, 0.354709, -0.374787, -0.121212, 0.11059, -0.733916, 0.625228, 1.487187, -0.615779, 0.497956, 0.244183], "tracked": true, "track_id": 1} +{"t": 49.923453, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006298, -0.028714, 0.406407, 0.342464, -0.449069, 0.767225, 0.351584, -0.369344, -0.115105, 0.119598, -0.726883, 0.626228, 1.489355, -0.612404, 0.498088, 0.244494], "tracked": true, "track_id": 1} +{"t": 49.957476, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006692, -0.028714, 0.409778, 0.34056, -0.447824, 0.767468, 0.350454, -0.372182, -0.114368, 0.121901, -0.724299, 0.625304, 1.490202, -0.610887, 0.498184, 0.244235], "tracked": true, "track_id": 1} +{"t": 50.019412, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007171, -0.028714, 0.412582, 0.332824, -0.424038, 0.814023, 0.345805, -0.363163, -0.108551, 0.131273, -0.718157, 0.627545, 1.491533, -0.608387, 0.49812, 0.244886], "tracked": true, "track_id": 1} +{"t": 50.085938, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007332, -0.028714, 0.413367, 0.327625, -0.407351, 0.846541, 0.342566, -0.357487, -0.104384, 0.138783, -0.713593, 0.629259, 1.492495, -0.60682, 0.497801, 0.245348], "tracked": true, "track_id": 1} +{"t": 50.151266, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007246, -0.028714, 0.412531, 0.324173, -0.395523, 0.869212, 0.340286, -0.354503, -0.101296, 0.147832, -0.708716, 0.631267, 1.49319, -0.605512, 0.497753, 0.245933], "tracked": true, "track_id": 1} +{"t": 50.219207, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007133, -0.028714, 0.411948, 0.322068, -0.389508, 0.879899, 0.338785, -0.355257, -0.099428, 0.153266, -0.70558, 0.631634, 1.493692, -0.604672, 0.497683, 0.246031], "tracked": true, "track_id": 1} +{"t": 50.25341, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007034, -0.028714, 0.411204, 0.321827, -0.388924, 0.881613, 0.338569, -0.356834, -0.09905, 0.155489, -0.704167, 0.631204, 1.493889, -0.604294, 0.497503, 0.245881], "tracked": true, "track_id": 1} +{"t": 50.317718, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006453, -0.028714, 0.413345, 0.321266, -0.392964, 0.863096, 0.336415, -0.361742, -0.099597, 0.15869, -0.703643, 0.632389, 1.494197, -0.605192, 0.497813, 0.24627], "tracked": true, "track_id": 1} +{"t": 50.352894, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005791, -0.028714, 0.411216, 0.32264, -0.397636, 0.847203, 0.336334, -0.365426, -0.100489, 0.158413, -0.705464, 0.633563, 1.494317, -0.606996, 0.498113, 0.246655], "tracked": true, "track_id": 1} +{"t": 50.413651, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004515, -0.028714, 0.403076, 0.327081, -0.406655, 0.822788, 0.338106, -0.370988, -0.102415, 0.158426, -0.70864, 0.635753, 1.491917, -0.610348, 0.498962, 0.24741], "tracked": true, "track_id": 1} +{"t": 50.478597, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003364, -0.028714, 0.391585, 0.332014, -0.412403, 0.810486, 0.340883, -0.375392, -0.10353, 0.154942, -0.713089, 0.635971, 1.490822, -0.613641, 0.499364, 0.247527], "tracked": true, "track_id": 1} +{"t": 50.513597, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002997, -0.028714, 0.386686, 0.334545, -0.415688, 0.806759, 0.342592, -0.377199, -0.10426, 0.156645, -0.712706, 0.636092, 1.491449, -0.614111, 0.49947, 0.247576], "tracked": true, "track_id": 1} +{"t": 50.578106, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00248, -0.028714, 0.378192, 0.338605, -0.419999, 0.803756, 0.345536, -0.380153, -0.105142, 0.15629, -0.714356, 0.637436, 1.492036, -0.615645, 0.499656, 0.247996], "tracked": true, "track_id": 1} +{"t": 50.647106, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002266, -0.028714, 0.37482, 0.340825, -0.423986, 0.80143, 0.34718, -0.382372, -0.106024, 0.158974, -0.713595, 0.639034, 1.492859, -0.615929, 0.499736, 0.248476], "tracked": true, "track_id": 1} +{"t": 50.71386, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002149, -0.028714, 0.371222, 0.343337, -0.427947, 0.799167, 0.349193, -0.38394, -0.106984, 0.164393, -0.711246, 0.641448, 1.493453, -0.615601, 0.499949, 0.249214], "tracked": true, "track_id": 1} +{"t": 50.779386, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001871, -0.028714, 0.366045, 0.346134, -0.430983, 0.796744, 0.351212, -0.384948, -0.107746, 0.172047, -0.707479, 0.642947, 1.493452, -0.614908, 0.500338, 0.249706], "tracked": true, "track_id": 1} +{"t": 50.842124, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00161, -0.028714, 0.365805, 0.346917, -0.433702, 0.787912, 0.351294, -0.385018, -0.108536, 0.182775, -0.701919, 0.644808, 1.493844, -0.613532, 0.500705, 0.250301], "tracked": true, "track_id": 1} +{"t": 50.905204, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001603, -0.028714, 0.371681, 0.344981, -0.434849, 0.776753, 0.349142, -0.38471, -0.108914, 0.190105, -0.697637, 0.645603, 1.494165, -0.612088, 0.500751, 0.250541], "tracked": true, "track_id": 1} +{"t": 50.941905, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001422, -0.028714, 0.37578, 0.341864, -0.431086, 0.773208, 0.345993, -0.384866, -0.107787, 0.19289, -0.696135, 0.645359, 1.493041, -0.61182, 0.500963, 0.250497], "tracked": true, "track_id": 1} +{"t": 50.975542, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001373, -0.028714, 0.378057, 0.339606, -0.427599, 0.773456, 0.344047, -0.385289, -0.106706, 0.186991, -0.697144, 0.637501, 1.493335, -0.611361, 0.50075, 0.248158], "tracked": true, "track_id": 1} +{"t": 51.04019, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001584, -0.028714, 0.380604, 0.337287, -0.42382, 0.776177, 0.342606, -0.386061, -0.105493, 0.178422, -0.697231, 0.623722, 1.493797, -0.609529, 0.500234, 0.244038], "tracked": true, "track_id": 1} +{"t": 51.079285, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001813, -0.028714, 0.381064, 0.334695, -0.415867, 0.790462, 0.341325, -0.384682, -0.103334, 0.177456, -0.697966, 0.625395, 1.493977, -0.609632, 0.499937, 0.244491], "tracked": true, "track_id": 1} +{"t": 51.139244, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002551, -0.028714, 0.382374, 0.330933, -0.403496, 0.816027, 0.340221, -0.381372, -0.100129, 0.166559, -0.704977, 0.62994, 1.494261, -0.61139, 0.498752, 0.245673], "tracked": true, "track_id": 1} +{"t": 51.205769, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003067, -0.028714, 0.3841, 0.327312, -0.393041, 0.833526, 0.338658, -0.379224, -0.097334, 0.159255, -0.709484, 0.632541, 1.494466, -0.612404, 0.497889, 0.246325], "tracked": true, "track_id": 1} +{"t": 51.269361, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003182, -0.028714, 0.381576, 0.326172, -0.386269, 0.845485, 0.338543, -0.378424, -0.095447, 0.15207, -0.714568, 0.63496, 1.494614, -0.614181, 0.496902, 0.246907], "tracked": true, "track_id": 1} +{"t": 51.302878, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003177, -0.028714, 0.380547, 0.325518, -0.383194, 0.849666, 0.338268, -0.378279, -0.094562, 0.150552, -0.716109, 0.636712, 1.494672, -0.614908, 0.496583, 0.247381], "tracked": true, "track_id": 1} +{"t": 51.338986, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003107, -0.028714, 0.377234, 0.325958, -0.380675, 0.854231, 0.338872, -0.378164, -0.093836, 0.149558, -0.717228, 0.6378, 1.494721, -0.615523, 0.496455, 0.247684], "tracked": true, "track_id": 1} +{"t": 51.37326, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00308, -0.028714, 0.374543, 0.326985, -0.380585, 0.856958, 0.339873, -0.378373, -0.093782, 0.149937, -0.717279, 0.638623, 1.494763, -0.615682, 0.49624, 0.247898], "tracked": true, "track_id": 1} +{"t": 51.436662, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003106, -0.028714, 0.369166, 0.329563, -0.381568, 0.861849, 0.342346, -0.378667, -0.094033, 0.151007, -0.717212, 0.640551, 1.494829, -0.61587, 0.496236, 0.248465], "tracked": true, "track_id": 1} +{"t": 51.501321, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003451, -0.028714, 0.365028, 0.332726, -0.384568, 0.866759, 0.345671, -0.378529, -0.094933, 0.147746, -0.719343, 0.642688, 1.494876, -0.616298, 0.495781, 0.249034], "tracked": true, "track_id": 1} +{"t": 51.566918, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003659, -0.028714, 0.359822, 0.336874, -0.389437, 0.870424, 0.349423, -0.378647, -0.09635, 0.148892, -0.718089, 0.642098, 1.494911, -0.615528, 0.496235, 0.24892], "tracked": true, "track_id": 1} +{"t": 51.634002, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003742, -0.028714, 0.353087, 0.34054, -0.391024, 0.875991, 0.352675, -0.378239, -0.09687, 0.145286, -0.720388, 0.642382, 1.494935, -0.616217, 0.496479, 0.249035], "tracked": true, "track_id": 1} +{"t": 51.702994, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003818, -0.028714, 0.349137, 0.342769, -0.392009, 0.880439, 0.354713, -0.377707, -0.097229, 0.141262, -0.72249, 0.64144, 1.494953, -0.616677, 0.496376, 0.248745], "tracked": true, "track_id": 1} +{"t": 51.769226, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004272, -0.028714, 0.350061, 0.3447, -0.397625, 0.879528, 0.356873, -0.378077, -0.098832, 0.13929, -0.722962, 0.641937, 1.494966, -0.616176, 0.495638, 0.248794], "tracked": true, "track_id": 1} +{"t": 51.832358, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004625, -0.028714, 0.350981, 0.346147, -0.402018, 0.879264, 0.358495, -0.378207, -0.100108, 0.137504, -0.72226, 0.638973, 1.494976, -0.615018, 0.494745, 0.247806], "tracked": true, "track_id": 1} +{"t": 51.894499, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004783, -0.028714, 0.353168, 0.344675, -0.399817, 0.881584, 0.357651, -0.377348, -0.099573, 0.13486, -0.722171, 0.635435, 1.494982, -0.614247, 0.49316, 0.246558], "tracked": true, "track_id": 1} +{"t": 51.930236, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004855, -0.028714, 0.354762, 0.343624, -0.398421, 0.882695, 0.356947, -0.376846, -0.099228, 0.135684, -0.721024, 0.63455, 1.494985, -0.6136, 0.492077, 0.246156], "tracked": true, "track_id": 1} +{"t": 51.993028, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005291, -0.028714, 0.358177, 0.343053, -0.39908, 0.886996, 0.357109, -0.374995, -0.099663, 0.137108, -0.717765, 0.631268, 1.494989, -0.611352, 0.48975, 0.244887], "tracked": true, "track_id": 1} +{"t": 52.02719, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005382, -0.028714, 0.35991, 0.342359, -0.398737, 0.888296, 0.356653, -0.374357, -0.099646, 0.137967, -0.716025, 0.628866, 1.494991, -0.610297, 0.488664, 0.244038], "tracked": true, "track_id": 1} +{"t": 52.064816, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005592, -0.028714, 0.360738, 0.34255, -0.399635, 0.888934, 0.357124, -0.374083, -0.099946, 0.137149, -0.715456, 0.627278, 1.494992, -0.609561, 0.487808, 0.243459], "tracked": true, "track_id": 1} +{"t": 52.128381, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005846, -0.028714, 0.362337, 0.343143, -0.402813, 0.887346, 0.357877, -0.374481, -0.100828, 0.139671, -0.713201, 0.627056, 1.494994, -0.608364, 0.487236, 0.243319], "tracked": true, "track_id": 1} +{"t": 52.19484, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006136, -0.028714, 0.362425, 0.344897, -0.407017, 0.887965, 0.359628, -0.374231, -0.102098, 0.132078, -0.718154, 0.62874, 1.494996, -0.609755, 0.487354, 0.24383], "tracked": true, "track_id": 1} +{"t": 52.259265, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006349, -0.028714, 0.362022, 0.34805, -0.415735, 0.881014, 0.362204, -0.37616, -0.10441, 0.127309, -0.723029, 0.634068, 1.494997, -0.611781, 0.489474, 0.245674], "tracked": true, "track_id": 1} +{"t": 52.323947, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006275, -0.028714, 0.360738, 0.349461, -0.418814, 0.878246, 0.363132, -0.377241, -0.105174, 0.114708, -0.733681, 0.639126, 1.489031, -0.615979, 0.49237, 0.24754], "tracked": true, "track_id": 1} +{"t": 52.357807, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006134, -0.028714, 0.358706, 0.350402, -0.419498, 0.877794, 0.363669, -0.377672, -0.105318, 0.108447, -0.739057, 0.641246, 1.483085, -0.618181, 0.493835, 0.248355], "tracked": true, "track_id": 1} +{"t": 52.392547, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005821, -0.028714, 0.359855, 0.347316, -0.412676, 0.879944, 0.360867, -0.376903, -0.103413, 0.098264, -0.745356, 0.637448, 1.476128, -0.620021, 0.495105, 0.247404], "tracked": true, "track_id": 1} +{"t": 52.45609, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005135, -0.028714, 0.359119, 0.343534, -0.402322, 0.885032, 0.357074, -0.375465, -0.100556, 0.078996, -0.758207, 0.632295, 1.462073, -0.624058, 0.497118, 0.246152], "tracked": true, "track_id": 1} +{"t": 52.491056, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004914, -0.028714, 0.358362, 0.343124, -0.401015, 0.884255, 0.356445, -0.375861, -0.100119, 0.0655, -0.767155, 0.629879, 1.453969, -0.626466, 0.497893, 0.245543], "tracked": true, "track_id": 1} +{"t": 52.55344, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004711, -0.028714, 0.357028, 0.343245, -0.400105, 0.886237, 0.356263, -0.375496, -0.099899, 0.037267, -0.785867, 0.626073, 1.437461, -0.63111, 0.499008, 0.244569], "tracked": true, "track_id": 1} +{"t": 52.622622, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004458, -0.028714, 0.358084, 0.341273, -0.396036, 0.889212, 0.354336, -0.374424, -0.098843, 0.0155, -0.800539, 0.623216, 1.423016, -0.634833, 0.499648, 0.243812], "tracked": true, "track_id": 1} +{"t": 52.657277, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00434, -0.028714, 0.357392, 0.34133, -0.395658, 0.88973, 0.354216, -0.374393, -0.098735, 0.007191, -0.806571, 0.623256, 1.416946, -0.636558, 0.499851, 0.243851], "tracked": true, "track_id": 1} +{"t": 52.719723, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004216, -0.028714, 0.356184, 0.341978, -0.396461, 0.889613, 0.354523, -0.374661, -0.098937, -0.012742, -0.820851, 0.623458, 1.402824, -0.64022, 0.499797, 0.243903], "tracked": true, "track_id": 1} +{"t": 52.78727, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004165, -0.028714, 0.354778, 0.342636, -0.396572, 0.891348, 0.355004, -0.374327, -0.099013, -0.029042, -0.832785, 0.624578, 1.39178, -0.643306, 0.499696, 0.244219], "tracked": true, "track_id": 1} +{"t": 52.850273, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004048, -0.028714, 0.353539, 0.343086, -0.396662, 0.891722, 0.355198, -0.37437, -0.099034, -0.041096, -0.842056, 0.626222, 1.382524, -0.645895, 0.499426, 0.244667], "tracked": true, "track_id": 1} +{"t": 52.917289, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003779, -0.028714, 0.352497, 0.342468, -0.394332, 0.892362, 0.354361, -0.37424, -0.098366, -0.046497, -0.846651, 0.627112, 1.376051, -0.647511, 0.499131, 0.24489], "tracked": true, "track_id": 1} +{"t": 52.981911, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003619, -0.028714, 0.352326, 0.342465, -0.395199, 0.887788, 0.354059, -0.375681, -0.098432, -0.053944, -0.852126, 0.626776, 1.370975, -0.648928, 0.498997, 0.244774], "tracked": true, "track_id": 1} +{"t": 53.051008, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003588, -0.028714, 0.351218, 0.343639, -0.397583, 0.885373, 0.354885, -0.376469, -0.09903, -0.054703, -0.852629, 0.626771, 1.368169, -0.649157, 0.498857, 0.244755], "tracked": true, "track_id": 1} +{"t": 53.085379, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003623, -0.028714, 0.352093, 0.341749, -0.391015, 0.89624, 0.353609, -0.371515, -0.097746, -0.050706, -0.850474, 0.629024, 1.369248, -0.649037, 0.498987, 0.245434], "tracked": true, "track_id": 1} +{"t": 53.147746, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003495, -0.028714, 0.353075, 0.343705, -0.399866, 0.88196, 0.354565, -0.375406, -0.099841, -0.054328, -0.852719, 0.627277, 1.368295, -0.649473, 0.499153, 0.244942], "tracked": true, "track_id": 1} +{"t": 53.217401, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003302, -0.028714, 0.346788, 0.352861, -0.413131, 0.878706, 0.360786, -0.363537, -0.105294, -0.049731, -0.850686, 0.629789, 1.367913, -0.649697, 0.499018, 0.245663], "tracked": true, "track_id": 1} +{"t": 53.279664, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003739, -0.028714, 0.34283, 0.365593, -0.37628, 0.998161, 0.370409, -0.213734, -0.114037, -0.030373, -0.837872, 0.63472, 1.376029, -0.646913, 0.49956, 0.247184], "tracked": true, "track_id": 1} +{"t": 53.346225, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00414, -0.028714, 0.325844, 0.39958, -0.362671, 1.110504, 0.39421, -0.021673, -0.135141, -0.009578, -0.823779, 0.638341, 1.386263, -0.643588, 0.50018, 0.24833], "tracked": true, "track_id": 1} +{"t": 53.412636, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00392, -0.028714, 0.264077, 0.479573, -0.431605, 1.191671, 0.441988, 0.116756, -0.173511, 0.005101, -0.814156, 0.638831, 1.394235, -0.641747, 0.500678, 0.24854], "tracked": true, "track_id": 1} +{"t": 53.480242, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003996, -0.028714, 0.201426, 0.539022, -0.453751, 1.250315, 0.473954, 0.212267, -0.192509, 0.020306, -0.803782, 0.63974, 1.402808, -0.639263, 0.501115, 0.248864], "tracked": true, "track_id": 1} +{"t": 53.545022, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003459, -0.028714, 0.144614, 0.545328, -0.350073, 1.292685, 0.469493, 0.276333, -0.17039, 0.025484, -0.800563, 0.637779, 1.407876, -0.639036, 0.501444, 0.24833], "tracked": true, "track_id": 1} +{"t": 53.608783, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001867, -0.028714, 0.090289, 0.534656, -0.215955, 1.323298, 0.451966, 0.318852, -0.136502, 0.025716, -0.802316, 0.634149, 1.410266, -0.641208, 0.501669, 0.247292], "tracked": true, "track_id": 1} +{"t": 53.643184, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001312, -0.028714, 0.065106, 0.535193, -0.168361, 1.335253, 0.44719, 0.336092, -0.124757, 0.025955, -0.802702, 0.63256, 1.410808, -0.64187, 0.501739, 0.246834], "tracked": true, "track_id": 1} +{"t": 53.705962, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000409, -0.028714, 0.021321, 0.534172, -0.080493, 1.354053, 0.437214, 0.362301, -0.10234, 0.025932, -0.803675, 0.630138, 1.411956, -0.643048, 0.501866, 0.246138], "tracked": true, "track_id": 1} +{"t": 53.774529, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 7.1e-05, -0.028714, 0.000754, 0.524198, -0.01012, 1.367636, 0.427122, 0.382282, -0.084254, 0.027409, -0.802757, 0.628537, 1.412877, -0.643109, 0.501946, 0.245678], "tracked": true, "track_id": 1} +{"t": 53.840854, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000385, -0.028714, -0.015322, 0.514124, 0.049115, 1.377449, 0.417487, 0.395233, -0.068525, 0.028811, -0.802571, 0.628193, 1.414077, -0.64368, 0.502022, 0.245586], "tracked": true, "track_id": 1} +{"t": 53.90904, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000597, -0.028714, -0.027544, 0.50694, 0.093882, 1.38454, 0.410456, 0.40502, -0.056637, 0.031637, -0.801109, 0.628411, 1.41778, -0.643684, 0.502131, 0.245665], "tracked": true, "track_id": 1} +{"t": 53.969867, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001091, -0.028714, -0.032574, 0.491803, 0.143777, 1.389662, 0.399634, 0.410275, -0.042649, 0.034558, -0.799882, 0.627923, 1.420375, -0.644017, 0.502206, 0.245531], "tracked": true, "track_id": 1} +{"t": 54.033496, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000977, -0.028714, -0.030156, 0.479299, 0.176297, 1.393364, 0.392615, 0.415352, -0.033748, 0.041262, -0.795252, 0.628608, 1.425639, -0.642822, 0.502241, 0.245737], "tracked": true, "track_id": 1} +{"t": 54.069596, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.00096, -0.028714, -0.029688, 0.475338, 0.187176, 1.394809, 0.390348, 0.41746, -0.030824, 0.043626, -0.793721, 0.629005, 1.426875, -0.642487, 0.502268, 0.245857], "tracked": true, "track_id": 1} +{"t": 54.135287, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000882, -0.028714, -0.027981, 0.472041, 0.194815, 1.397082, 0.389016, 0.421588, -0.029117, 0.050641, -0.789126, 0.630154, 1.427766, -0.641396, 0.502281, 0.246197], "tracked": true, "track_id": 1} +{"t": 54.17045, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000928, -0.028714, -0.024964, 0.469077, 0.197517, 1.39797, 0.387933, 0.42315, -0.028526, 0.053472, -0.78743, 0.630656, 1.427234, -0.641108, 0.502255, 0.246341], "tracked": true, "track_id": 1} +{"t": 54.204006, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000703, -0.028714, -0.025578, 0.471233, 0.194697, 1.398724, 0.389461, 0.425107, -0.029611, 0.0553, -0.78609, 0.631681, 1.428194, -0.640607, 0.502278, 0.246646], "tracked": true, "track_id": 1} +{"t": 54.266854, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000482, -0.028714, -0.028218, 0.470917, 0.202741, 1.399911, 0.388876, 0.427287, -0.02753, 0.054658, -0.786549, 0.63299, 1.42888, -0.640626, 0.502312, 0.247035], "tracked": true, "track_id": 1} +{"t": 54.333692, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000751, -0.028714, -0.016959, 0.453558, 0.228671, 1.400768, 0.380068, 0.427756, -0.019965, 0.056476, -0.78609, 0.63377, 1.430352, -0.641014, 0.502336, 0.247268], "tracked": true, "track_id": 1} +{"t": 54.397234, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.001036, -0.028714, -0.000203, 0.42879, 0.264984, 1.401387, 0.367449, 0.427042, -0.009192, 0.058459, -0.785192, 0.633534, 1.432291, -0.641161, 0.502356, 0.247201], "tracked": true, "track_id": 1} +{"t": 54.467305, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000739, -0.028714, 0.005266, 0.423087, 0.27287, 1.401835, 0.36534, 0.428214, -0.007026, 0.057605, -0.785612, 0.634715, 1.433087, -0.641032, 0.502371, 0.24755], "tracked": true, "track_id": 1} +{"t": 54.500895, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000459, -0.028714, 0.004866, 0.425412, 0.26894, 1.40201, 0.367045, 0.428798, -0.008258, 0.059394, -0.784073, 0.635386, 1.434315, -0.640335, 0.502371, 0.247748], "tracked": true, "track_id": 1} +{"t": 54.563597, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000104, -0.028714, 0.004162, 0.432242, 0.2551, 1.402284, 0.371901, 0.430622, -0.012567, 0.063696, -0.780605, 0.637034, 1.436672, -0.638861, 0.502366, 0.248232], "tracked": true, "track_id": 1} +{"t": 54.631702, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000138, -0.028714, -0.004942, 0.442145, 0.244596, 1.402483, 0.376283, 0.430684, -0.015664, 0.065504, -0.779175, 0.636685, 1.437656, -0.638402, 0.502373, 0.24813], "tracked": true, "track_id": 1} +{"t": 54.69413, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000243, -0.028714, -0.012681, 0.450766, 0.235866, 1.402626, 0.380158, 0.431215, -0.018301, 0.064019, -0.779854, 0.636316, 1.438078, -0.638387, 0.502371, 0.248021], "tracked": true, "track_id": 1} +{"t": 54.761543, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000464, -0.028714, -0.01954, 0.46072, 0.222762, 1.40273, 0.385175, 0.432318, -0.0223, 0.063548, -0.779763, 0.636411, 1.440297, -0.638066, 0.502311, 0.248041], "tracked": true, "track_id": 1} +{"t": 54.829906, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000485, -0.028714, -0.033156, 0.469568, 0.224064, 1.402805, 0.387412, 0.431577, -0.02182, 0.056752, -0.784063, 0.635479, 1.441564, -0.638997, 0.502189, 0.247751], "tracked": true, "track_id": 1} +{"t": 54.89461, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00072, -0.028714, -0.035501, 0.472164, 0.222833, 1.402859, 0.388707, 0.431903, -0.022225, 0.058369, -0.782777, 0.636342, 1.443299, -0.638461, 0.502146, 0.247999], "tracked": true, "track_id": 1} +{"t": 54.928039, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000577, -0.028714, -0.036555, 0.473436, 0.220051, 1.40288, 0.389233, 0.431441, -0.022982, 0.05751, -0.783236, 0.635221, 1.444848, -0.638617, 0.502049, 0.247657], "tracked": true, "track_id": 1} +{"t": 54.991243, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000357, -0.028714, -0.014809, 0.459106, 0.217931, 1.402913, 0.384922, 0.43157, -0.023623, 0.064099, -0.778533, 0.633484, 1.448019, -0.637442, 0.501995, 0.247139], "tracked": true, "track_id": 1} +{"t": 55.062039, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001334, -0.028714, 0.008815, 0.512191, 0.030816, 1.402937, 0.426757, 0.436189, -0.07926, 0.075952, -0.769467, 0.635821, 1.45284, -0.633782, 0.501915, 0.247816], "tracked": true, "track_id": 1} +{"t": 55.12587, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001812, -0.028714, 0.035347, 0.563273, -0.154426, 1.402955, 0.46718, 0.44941, -0.135472, 0.088734, -0.759963, 0.635837, 1.458411, -0.630372, 0.501779, 0.247803], "tracked": true, "track_id": 1} +{"t": 55.190821, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001809, -0.028714, 0.078873, 0.560116, -0.219435, 1.402967, 0.472901, 0.455225, -0.155352, 0.095244, -0.754919, 0.634125, 1.462815, -0.628753, 0.50157, 0.247272], "tracked": true, "track_id": 1} +{"t": 55.258198, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001564, -0.028714, 0.111514, 0.544386, -0.292804, 1.327888, 0.467867, 0.32114, -0.159404, 0.094013, -0.753927, 0.627724, 1.460699, -0.628035, 0.501706, 0.245407], "tracked": true, "track_id": 1} +{"t": 55.326041, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00164, -0.028714, 0.137467, 0.531897, -0.382444, 1.152248, 0.464007, 0.140284, -0.162127, 0.090715, -0.756142, 0.628197, 1.458628, -0.628668, 0.501805, 0.245559], "tracked": true, "track_id": 1} +{"t": 55.38634, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001615, -0.028714, 0.170734, 0.507649, -0.430698, 1.035462, 0.451989, 0.00071, -0.158074, 0.084459, -0.75814, 0.621873, 1.459182, -0.628405, 0.501645, 0.243678], "tracked": true, "track_id": 1} +{"t": 55.450216, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001971, -0.028714, 0.203805, 0.484085, -0.460759, 0.952002, 0.440063, -0.101856, -0.153509, 0.080908, -0.758006, 0.616863, 1.460875, -0.627188, 0.501415, 0.242175], "tracked": true, "track_id": 1} +{"t": 55.485845, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002475, -0.028714, 0.219726, 0.473943, -0.473041, 0.919912, 0.435394, -0.142511, -0.151807, 0.077761, -0.758305, 0.614723, 1.462879, -0.626247, 0.50108, 0.241501], "tracked": true, "track_id": 1} +{"t": 55.550541, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003398, -0.028714, 0.244095, 0.453227, -0.479321, 0.896109, 0.425094, -0.210688, -0.144742, 0.082842, -0.755299, 0.621442, 1.470796, -0.624895, 0.50018, 0.24336], "tracked": true, "track_id": 1} +{"t": 55.584609, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003799, -0.028714, 0.254615, 0.444885, -0.482348, 0.884562, 0.420969, -0.237325, -0.14215, 0.084212, -0.754351, 0.623869, 1.474427, -0.624339, 0.499625, 0.244001], "tracked": true, "track_id": 1} +{"t": 55.621357, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003946, -0.028714, 0.263764, 0.43634, -0.481722, 0.875619, 0.416143, -0.259973, -0.139005, 0.084947, -0.753403, 0.623664, 1.477513, -0.623808, 0.499078, 0.24387], "tracked": true, "track_id": 1} +{"t": 55.68381, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004494, -0.028714, 0.283413, 0.420578, -0.480181, 0.861471, 0.407368, -0.295519, -0.133906, 0.088641, -0.749733, 0.623933, 1.482366, -0.621904, 0.497725, 0.243772], "tracked": true, "track_id": 1} +{"t": 55.749624, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005022, -0.028714, 0.299403, 0.408004, -0.477622, 0.853137, 0.400377, -0.321081, -0.129811, 0.094128, -0.743963, 0.621568, 1.485872, -0.619011, 0.496069, 0.24286], "tracked": true, "track_id": 1} +{"t": 55.81373, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005693, -0.028714, 0.310725, 0.399485, -0.476092, 0.849727, 0.396264, -0.339268, -0.126984, 0.09719, -0.739341, 0.618669, 1.488405, -0.61618, 0.494552, 0.241809], "tracked": true, "track_id": 1} +{"t": 55.881722, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006311, -0.028714, 0.322542, 0.391667, -0.474677, 0.845818, 0.392195, -0.352445, -0.124845, 0.101548, -0.733818, 0.615232, 1.490235, -0.613048, 0.493083, 0.240606], "tracked": true, "track_id": 1} +{"t": 55.916815, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006404, -0.028714, 0.326538, 0.38858, -0.473707, 0.843151, 0.390346, -0.357733, -0.123869, 0.103809, -0.731339, 0.613289, 1.49095, -0.611864, 0.492292, 0.239931], "tracked": true, "track_id": 1} +{"t": 55.980468, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006643, -0.028714, 0.330973, 0.385533, -0.474672, 0.837577, 0.388937, -0.366162, -0.123051, 0.106376, -0.727403, 0.608806, 1.492074, -0.609671, 0.491043, 0.238449], "tracked": true, "track_id": 1} +{"t": 56.046857, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006896, -0.028714, 0.335369, 0.382345, -0.473773, 0.837217, 0.387344, -0.371948, -0.12203, 0.112855, -0.721323, 0.605366, 1.492886, -0.606876, 0.489981, 0.237299], "tracked": true, "track_id": 1} +{"t": 56.109542, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007109, -0.028714, 0.338692, 0.381378, -0.477149, 0.831528, 0.387125, -0.376445, -0.122435, 0.115188, -0.719182, 0.604979, 1.493472, -0.60583, 0.489623, 0.237138], "tracked": true, "track_id": 1} +{"t": 56.177588, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007461, -0.028714, 0.344241, 0.377942, -0.475108, 0.833979, 0.385289, -0.379098, -0.121488, 0.115455, -0.718788, 0.606142, 1.493896, -0.605356, 0.490084, 0.23754], "tracked": true, "track_id": 1} +{"t": 56.243498, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007502, -0.028714, 0.347763, 0.375526, -0.473878, 0.833199, 0.38363, -0.381256, -0.120844, 0.109995, -0.723323, 0.608765, 1.494203, -0.607116, 0.491006, 0.238432], "tracked": true, "track_id": 1} +{"t": 56.308838, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007557, -0.028714, 0.352287, 0.373482, -0.474745, 0.8272, 0.382099, -0.38316, -0.12085, 0.100926, -0.731409, 0.614336, 1.49205, -0.610327, 0.492765, 0.240301], "tracked": true, "track_id": 1} +{"t": 56.344887, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007544, -0.028714, 0.355044, 0.37148, -0.472961, 0.826285, 0.380525, -0.383818, -0.12024, 0.095769, -0.736544, 0.618592, 1.486511, -0.612529, 0.494101, 0.241727], "tracked": true, "track_id": 1} +{"t": 56.406974, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007102, -0.028714, 0.361493, 0.362165, -0.455552, 0.834063, 0.372806, -0.383143, -0.115208, 0.061526, -0.758894, 0.612004, 1.464422, -0.618357, 0.496344, 0.240083], "tracked": true, "track_id": 1} +{"t": 56.473716, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006747, -0.028714, 0.362419, 0.355595, -0.436425, 0.854353, 0.367719, -0.376913, -0.110397, 0.027481, -0.783638, 0.612837, 1.438428, -0.625388, 0.497412, 0.240467], "tracked": true, "track_id": 1} +{"t": 56.537791, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006466, -0.028714, 0.35721, 0.35238, -0.418582, 0.880086, 0.365553, -0.370122, -0.106036, -0.004758, -0.80785, 0.615764, 1.41506, -0.632178, 0.497722, 0.241369], "tracked": true, "track_id": 1} +{"t": 56.571921, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006409, -0.028714, 0.354809, 0.350927, -0.409549, 0.893729, 0.364702, -0.365513, -0.103982, -0.016735, -0.817295, 0.618718, 1.403602, -0.635019, 0.497353, 0.242189], "tracked": true, "track_id": 1} +{"t": 56.607831, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006324, -0.028714, 0.352914, 0.349663, -0.402653, 0.903102, 0.363878, -0.362861, -0.1023, -0.027544, -0.825901, 0.621482, 1.39233, -0.637618, 0.496683, 0.242915], "tracked": true, "track_id": 1} +{"t": 56.673997, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006163, -0.028714, 0.34977, 0.34774, -0.391763, 0.918226, 0.362587, -0.358483, -0.09967, -0.041969, -0.837822, 0.626535, 1.373978, -0.641492, 0.495275, 0.244217], "tracked": true, "track_id": 1} +{"t": 56.738587, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006224, -0.028714, 0.352192, 0.347065, -0.394517, 0.911372, 0.362094, -0.362277, -0.099984, -0.059604, -0.849418, 0.624976, 1.358807, -0.643818, 0.494172, 0.243614], "tracked": true, "track_id": 1} +{"t": 56.802199, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006034, -0.028714, 0.349737, 0.345501, -0.385802, 0.923336, 0.360908, -0.358388, -0.097929, -0.070104, -0.857274, 0.624624, 1.35599, -0.64596, 0.49524, 0.24365], "tracked": true, "track_id": 1} +{"t": 56.8671, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005896, -0.028714, 0.350127, 0.341028, -0.368192, 0.946858, 0.357655, -0.345191, -0.094475, -0.069292, -0.8564, 0.622821, 1.359419, -0.645934, 0.49658, 0.243295], "tracked": true, "track_id": 1} +{"t": 56.903101, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005967, -0.028714, 0.353779, 0.341578, -0.376556, 0.933445, 0.3578, -0.350662, -0.096219, -0.067433, -0.854165, 0.620774, 1.36003, -0.645123, 0.496936, 0.24274], "tracked": true, "track_id": 1} +{"t": 56.967645, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005535, -0.028714, 0.355525, 0.33408, -0.352053, 0.957801, 0.351813, -0.335615, -0.09098, -0.043398, -0.838251, 0.620934, 1.370767, -0.642216, 0.498084, 0.242937], "tracked": true, "track_id": 1} +{"t": 57.037274, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005286, -0.028714, 0.358709, 0.327573, -0.332595, 0.977088, 0.34667, -0.322842, -0.086926, -0.021419, -0.822915, 0.619479, 1.38324, -0.638844, 0.499196, 0.242654], "tracked": true, "track_id": 1} +{"t": 57.100816, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005415, -0.028714, 0.365724, 0.322007, -0.320905, 0.987557, 0.342385, -0.313566, -0.084701, -0.001787, -0.807408, 0.61493, 1.39637, -0.634292, 0.500077, 0.241431], "tracked": true, "track_id": 1} +{"t": 57.162443, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005578, -0.028714, 0.370692, 0.318085, -0.313194, 0.993014, 0.339512, -0.308526, -0.083091, 0.009367, -0.79757, 0.610093, 1.406121, -0.63106, 0.500722, 0.240093], "tracked": true, "track_id": 1} +{"t": 57.256237, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005902, -0.028714, 0.375293, 0.316315, -0.312155, 0.994571, 0.338347, -0.306926, -0.082995, 0.012089, -0.793948, 0.60725, 1.409174, -0.629359, 0.500976, 0.23929], "tracked": true, "track_id": 1} +{"t": 57.292874, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006254, -0.028714, 0.380783, 0.313775, -0.311215, 0.993054, 0.336647, -0.308138, -0.08256, 0.019266, -0.786493, 0.60244, 1.41448, -0.626388, 0.501376, 0.237927], "tracked": true, "track_id": 1} +{"t": 57.332108, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006339, -0.028714, 0.383631, 0.31402, -0.319221, 0.980152, 0.336632, -0.317338, -0.083712, 0.021247, -0.783843, 0.599475, 1.418038, -0.625276, 0.501663, 0.237093], "tracked": true, "track_id": 1} +{"t": 57.396309, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006292, -0.028714, 0.385198, 0.314168, -0.325034, 0.969451, 0.336452, -0.324938, -0.084428, 0.024343, -0.781061, 0.597453, 1.42091, -0.624419, 0.501872, 0.236525], "tracked": true, "track_id": 1} +{"t": 57.465849, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006443, -0.028714, 0.387735, 0.31345, -0.32651, 0.966847, 0.335934, -0.32687, -0.08461, 0.025641, -0.779297, 0.595991, 1.422711, -0.623602, 0.502023, 0.236115], "tracked": true, "track_id": 1} +{"t": 57.527388, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006283, -0.028714, 0.384807, 0.310633, -0.306912, 0.990535, 0.334154, -0.307599, -0.081365, 0.037962, -0.772174, 0.598612, 1.426238, -0.622291, 0.502129, 0.2369], "tracked": true, "track_id": 1} +{"t": 57.595042, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006393, -0.028714, 0.385674, 0.310285, -0.307544, 0.989936, 0.334064, -0.309438, -0.08131, 0.038875, -0.771197, 0.598388, 1.426521, -0.621898, 0.502205, 0.236844], "tracked": true, "track_id": 1} +{"t": 57.628403, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006363, -0.028714, 0.38643, 0.310132, -0.309125, 0.987238, 0.333794, -0.31179, -0.081468, 0.040249, -0.770066, 0.597694, 1.426842, -0.621562, 0.502235, 0.236644], "tracked": true, "track_id": 1} +{"t": 57.662269, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006326, -0.028714, 0.387287, 0.310061, -0.311654, 0.982293, 0.333548, -0.315471, -0.081731, 0.041287, -0.769531, 0.598013, 1.426234, -0.621533, 0.502243, 0.236739], "tracked": true, "track_id": 1} +{"t": 57.724932, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006293, -0.028714, 0.388352, 0.311601, -0.320897, 0.970826, 0.334357, -0.323422, -0.08341, 0.046736, -0.766381, 0.599424, 1.426841, -0.620943, 0.502272, 0.237157], "tracked": true, "track_id": 1} +{"t": 57.761376, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006079, -0.028714, 0.385637, 0.309975, -0.30932, 0.984439, 0.333223, -0.31376, -0.081268, 0.050174, -0.765371, 0.601933, 1.428689, -0.621331, 0.502292, 0.237898], "tracked": true, "track_id": 1} +{"t": 57.823683, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006113, -0.028714, 0.385674, 0.309367, -0.30525, 0.991384, 0.332887, -0.308544, -0.080753, 0.052702, -0.764294, 0.603976, 1.429906, -0.621287, 0.502319, 0.238502], "tracked": true, "track_id": 1} +{"t": 57.889426, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005886, -0.028714, 0.383841, 0.310161, -0.307302, 0.988903, 0.333222, -0.311673, -0.080947, 0.056653, -0.76319, 0.607105, 1.431286, -0.62175, 0.502343, 0.239426], "tracked": true, "track_id": 1} +{"t": 57.954404, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006008, -0.028714, 0.385764, 0.312672, -0.321499, 0.971346, 0.334875, -0.323177, -0.083619, 0.054411, -0.76422, 0.606469, 1.431065, -0.621786, 0.502364, 0.239242], "tracked": true, "track_id": 1} +{"t": 57.987998, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005903, -0.028714, 0.384447, 0.310533, -0.309127, 0.986196, 0.333432, -0.311868, -0.081458, 0.058429, -0.762505, 0.608673, 1.432663, -0.621759, 0.502371, 0.239891], "tracked": true, "track_id": 1} +{"t": 58.02248, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005888, -0.028714, 0.386919, 0.310574, -0.315032, 0.975668, 0.333015, -0.318441, -0.082336, 0.058855, -0.762227, 0.608631, 1.432004, -0.621706, 0.502367, 0.239878], "tracked": true, "track_id": 1} +{"t": 58.087591, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005957, -0.028714, 0.389151, 0.310493, -0.31958, 0.968837, 0.332757, -0.323735, -0.082982, 0.057872, -0.762186, 0.607062, 1.432402, -0.621393, 0.50238, 0.239418], "tracked": true, "track_id": 1} +{"t": 58.15063, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005978, -0.028714, 0.391198, 0.309899, -0.321635, 0.964655, 0.332082, -0.32691, -0.083171, 0.057188, -0.761915, 0.605121, 1.43366, -0.621029, 0.502382, 0.238848], "tracked": true, "track_id": 1} +{"t": 58.185531, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005967, -0.028714, 0.392028, 0.311156, -0.328504, 0.955751, 0.332766, -0.332139, -0.084508, 0.055582, -0.763009, 0.605086, 1.434228, -0.621342, 0.502373, 0.238836], "tracked": true, "track_id": 1} +{"t": 58.251579, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005576, -0.028714, 0.390839, 0.307613, -0.313373, 0.970163, 0.329763, -0.321701, -0.081422, 0.058648, -0.762085, 0.606042, 1.436878, -0.621766, 0.50235, 0.239114], "tracked": true, "track_id": 1} +{"t": 58.284998, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.0057, -0.028714, 0.392092, 0.307601, -0.31482, 0.969529, 0.329813, -0.32243, -0.081752, 0.058301, -0.761903, 0.605598, 1.436663, -0.621483, 0.502359, 0.238985], "tracked": true, "track_id": 1} +{"t": 58.321077, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005665, -0.028714, 0.390872, 0.309363, -0.318957, 0.969419, 0.33112, -0.323463, -0.082834, 0.065053, -0.759535, 0.611471, 1.439441, -0.62163, 0.502341, 0.24071], "tracked": true, "track_id": 1} +{"t": 58.384013, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005503, -0.028714, 0.391497, 0.309012, -0.320842, 0.964402, 0.330453, -0.32745, -0.082867, 0.061502, -0.761159, 0.608365, 1.43881, -0.621904, 0.502348, 0.239797], "tracked": true, "track_id": 1} +{"t": 58.417895, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005428, -0.028714, 0.392257, 0.308589, -0.321535, 0.961627, 0.329885, -0.329368, -0.08282, 0.058668, -0.762756, 0.607021, 1.438899, -0.622266, 0.50233, 0.2394], "tracked": true, "track_id": 1} +{"t": 58.452409, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.0052, -0.028714, 0.391526, 0.308843, -0.323604, 0.956232, 0.329702, -0.333055, -0.082947, 0.054722, -0.765121, 0.604758, 1.437742, -0.622907, 0.502338, 0.238735], "tracked": true, "track_id": 1} +{"t": 58.513797, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005152, -0.028714, 0.392872, 0.308089, -0.323949, 0.953293, 0.32887, -0.334941, -0.082802, 0.053634, -0.765403, 0.603222, 1.437271, -0.622859, 0.502349, 0.238285], "tracked": true, "track_id": 1} +{"t": 58.578103, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005145, -0.028714, 0.392973, 0.306768, -0.319131, 0.957921, 0.327968, -0.3322, -0.081743, 0.053546, -0.764867, 0.60151, 1.436615, -0.622495, 0.502365, 0.237783], "tracked": true, "track_id": 1} +{"t": 58.613523, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005159, -0.028714, 0.393094, 0.306493, -0.317865, 0.960216, 0.327797, -0.33086, -0.081546, 0.056421, -0.76288, 0.601485, 1.437479, -0.621929, 0.502366, 0.237776], "tracked": true, "track_id": 1} +{"t": 58.678062, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005172, -0.028714, 0.394009, 0.305443, -0.315343, 0.961953, 0.32697, -0.329611, -0.080967, 0.055676, -0.763024, 0.600587, 1.437802, -0.62184, 0.50236, 0.237511], "tracked": true, "track_id": 1} +{"t": 58.746774, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005348, -0.028714, 0.394114, 0.307246, -0.321872, 0.956163, 0.328534, -0.333429, -0.082388, 0.054005, -0.763522, 0.599847, 1.437708, -0.621635, 0.502356, 0.237293], "tracked": true, "track_id": 1} +{"t": 58.81212, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005593, -0.028714, 0.39462, 0.309941, -0.330753, 0.951707, 0.330752, -0.33627, -0.084629, 0.057634, -0.762754, 0.606015, 1.438983, -0.621888, 0.502339, 0.239105], "tracked": true, "track_id": 1} +{"t": 58.880085, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005598, -0.028714, 0.395582, 0.308217, -0.325604, 0.956275, 0.329448, -0.333231, -0.083512, 0.056157, -0.763134, 0.604316, 1.43768, -0.621771, 0.502358, 0.238608], "tracked": true, "track_id": 1} +{"t": 58.942269, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005671, -0.028714, 0.396008, 0.306755, -0.318868, 0.965109, 0.328561, -0.326655, -0.082391, 0.057333, -0.76185, 0.603396, 1.438602, -0.621197, 0.502348, 0.238336], "tracked": true, "track_id": 1} +{"t": 59.006353, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005673, -0.028714, 0.396949, 0.305331, -0.31425, 0.969541, 0.327445, -0.322971, -0.081514, 0.059246, -0.76043, 0.603058, 1.438892, -0.620759, 0.502354, 0.238237], "tracked": true, "track_id": 1} +{"t": 59.041629, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005681, -0.028714, 0.39438, 0.308466, -0.321556, 0.966161, 0.329968, -0.326136, -0.083249, 0.062618, -0.760347, 0.60931, 1.440811, -0.621571, 0.502322, 0.240072], "tracked": true, "track_id": 1} +{"t": 59.0756, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005833, -0.028714, 0.392755, 0.312197, -0.33181, 0.960088, 0.333047, -0.330438, -0.085702, 0.066022, -0.75974, 0.614953, 1.442359, -0.621935, 0.502304, 0.241729], "tracked": true, "track_id": 1} +{"t": 59.110121, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005708, -0.028714, 0.392851, 0.310909, -0.328259, 0.961555, 0.331915, -0.329729, -0.084751, 0.065437, -0.759667, 0.612911, 1.441226, -0.621826, 0.502321, 0.241131], "tracked": true, "track_id": 1} +{"t": 59.176644, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005385, -0.028714, 0.390443, 0.306718, -0.307309, 0.982406, 0.328842, -0.313745, -0.080678, 0.06602, -0.759697, 0.612262, 1.441722, -0.622219, 0.502318, 0.240939], "tracked": true, "track_id": 1} +{"t": 59.239347, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005075, -0.028714, 0.388977, 0.304175, -0.296282, 0.992625, 0.326721, -0.307277, -0.078281, 0.065283, -0.760772, 0.612149, 1.442991, -0.622955, 0.502275, 0.240901], "tracked": true, "track_id": 1} +{"t": 59.305326, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004987, -0.028714, 0.38847, 0.305846, -0.302792, 0.987539, 0.32775, -0.312079, -0.079567, 0.069339, -0.759759, 0.616344, 1.444425, -0.623306, 0.502272, 0.242134], "tracked": true, "track_id": 1} +{"t": 59.369635, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005135, -0.028714, 0.385739, 0.310873, -0.316656, 0.979332, 0.331834, -0.319188, -0.082716, 0.075579, -0.758541, 0.625618, 1.446192, -0.624002, 0.502273, 0.244862], "tracked": true, "track_id": 1} +{"t": 59.40303, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005203, -0.028714, 0.38768, 0.309461, -0.314445, 0.979789, 0.330717, -0.318572, -0.082146, 0.07406, -0.758555, 0.623188, 1.445247, -0.623594, 0.50229, 0.244149], "tracked": true, "track_id": 1} +{"t": 59.47173, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004946, -0.028714, 0.389586, 0.304295, -0.297066, 0.993694, 0.3264, -0.306181, -0.078655, 0.073582, -0.758462, 0.620562, 1.445987, -0.623586, 0.502264, 0.243373], "tracked": true, "track_id": 1} +{"t": 59.537543, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004932, -0.028714, 0.390345, 0.30574, -0.305297, 0.984299, 0.327209, -0.313468, -0.080123, 0.074899, -0.758198, 0.622302, 1.447454, -0.623783, 0.502216, 0.243879], "tracked": true, "track_id": 1} +{"t": 59.602128, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004727, -0.028714, 0.389811, 0.308061, -0.316241, 0.969855, 0.328437, -0.32349, -0.082031, 0.078782, -0.758167, 0.628454, 1.448353, -0.624912, 0.502219, 0.245689], "tracked": true, "track_id": 1} +{"t": 59.668111, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004928, -0.028714, 0.389116, 0.309181, -0.316934, 0.975338, 0.329743, -0.320721, -0.082597, 0.079344, -0.759307, 0.633931, 1.4485, -0.625693, 0.502223, 0.2473], "tracked": true, "track_id": 1} +{"t": 59.735235, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004766, -0.028714, 0.388555, 0.30958, -0.318869, 0.973104, 0.329769, -0.323067, -0.08286, 0.080974, -0.759764, 0.637413, 1.448839, -0.626537, 0.50223, 0.248325], "tracked": true, "track_id": 1} +{"t": 59.798586, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004802, -0.028714, 0.391178, 0.30877, -0.319917, 0.970963, 0.328855, -0.324089, -0.083034, 0.072774, -0.765809, 0.639083, 1.447207, -0.628404, 0.502214, 0.248814], "tracked": true, "track_id": 1} +{"t": 59.832398, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004681, -0.028714, 0.392042, 0.308899, -0.323618, 0.963124, 0.328534, -0.328767, -0.083511, 0.069225, -0.768714, 0.639828, 1.44684, -0.629483, 0.502191, 0.249031], "tracked": true, "track_id": 1} +{"t": 59.897873, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004517, -0.028714, 0.395062, 0.304488, -0.311952, 0.971069, 0.324669, -0.322298, -0.080926, 0.063665, -0.773128, 0.640741, 1.446183, -0.63106, 0.502158, 0.249295], "tracked": true, "track_id": 1} +{"t": 59.961574, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004076, -0.028714, 0.40175, 0.295163, -0.29069, 0.977304, 0.316025, -0.315784, -0.075524, 0.049593, -0.781479, 0.634334, 1.443486, -0.632899, 0.502116, 0.247405], "tracked": true, "track_id": 1} +{"t": 60.031007, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00381, -0.028714, 0.407553, 0.288607, -0.278051, 0.977423, 0.309783, -0.31404, -0.072034, 0.030999, -0.791443, 0.624422, 1.438779, -0.634317, 0.502119, 0.24449], "tracked": true, "track_id": 1} +{"t": 60.093565, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003525, -0.028714, 0.413336, 0.283588, -0.271731, 0.970639, 0.304438, -0.316987, -0.06979, 0.017119, -0.799225, 0.617471, 1.434979, -0.635636, 0.502134, 0.242448], "tracked": true, "track_id": 1} +{"t": 60.164029, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003268, -0.028714, 0.416262, 0.28087, -0.268489, 0.966401, 0.301408, -0.318843, -0.068594, 0.005004, -0.806051, 0.611339, 1.432262, -0.636754, 0.502119, 0.240642], "tracked": true, "track_id": 1} +{"t": 60.227875, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003267, -0.028714, 0.41996, 0.277749, -0.261246, 0.971326, 0.298431, -0.313853, -0.067116, -0.003268, -0.81035, 0.607217, 1.430075, -0.637222, 0.502126, 0.239431], "tracked": true, "track_id": 1} +{"t": 60.296162, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003193, -0.028714, 0.420295, 0.278142, -0.264568, 0.966645, 0.298519, -0.317465, -0.067621, -0.009477, -0.813577, 0.603662, 1.428592, -0.637596, 0.502125, 0.238385], "tracked": true, "track_id": 1} +{"t": 60.357828, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003491, -0.028714, 0.422041, 0.278394, -0.265194, 0.970378, 0.298971, -0.314385, -0.068208, -0.011953, -0.815958, 0.607394, 1.428614, -0.638343, 0.502088, 0.239478], "tracked": true, "track_id": 1} +{"t": 60.420829, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003942, -0.028714, 0.422469, 0.282636, -0.278504, 0.965284, 0.302755, -0.31813, -0.071633, -0.005946, -0.814038, 0.616816, 1.431397, -0.638731, 0.502003, 0.242238], "tracked": true, "track_id": 1} +{"t": 60.45684, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004002, -0.028714, 0.42274, 0.283368, -0.280715, 0.965491, 0.30333, -0.318029, -0.072297, -0.001926, -0.812396, 0.620578, 1.433158, -0.638832, 0.501956, 0.243338], "tracked": true, "track_id": 1} +{"t": 60.521771, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003677, -0.028714, 0.423063, 0.281325, -0.275457, 0.967002, 0.301161, -0.317039, -0.07088, -0.001045, -0.812524, 0.620694, 1.43262, -0.639324, 0.501999, 0.243378], "tracked": true, "track_id": 1} +{"t": 60.555782, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003887, -0.028714, 0.423903, 0.281293, -0.272992, 0.974566, 0.30141, -0.310644, -0.07099, 0.002243, -0.81093, 0.624031, 1.434294, -0.639161, 0.501945, 0.244352], "tracked": true, "track_id": 1} +{"t": 60.590703, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003598, -0.028714, 0.424217, 0.279016, -0.26738, 0.974712, 0.29915, -0.310581, -0.069348, -0.00087, -0.812234, 0.619788, 1.432952, -0.639233, 0.50198, 0.243109], "tracked": true, "track_id": 1} +{"t": 60.659235, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003255, -0.028714, 0.426483, 0.27416, -0.255259, 0.977326, 0.294495, -0.307847, -0.066141, -0.007809, -0.8157, 0.61367, 1.429828, -0.639599, 0.502051, 0.241319], "tracked": true, "track_id": 1} +{"t": 60.721607, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003546, -0.028714, 0.426363, 0.276388, -0.260068, 0.980156, 0.296703, -0.305894, -0.06781, -0.000169, -0.812493, 0.621638, 1.433402, -0.639655, 0.501952, 0.243649], "tracked": true, "track_id": 1} +{"t": 60.786121, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003186, -0.028714, 0.428259, 0.27354, -0.256248, 0.974137, 0.293436, -0.309812, -0.066175, -0.007907, -0.816355, 0.614922, 1.429923, -0.640038, 0.502035, 0.241685], "tracked": true, "track_id": 1} +{"t": 60.849996, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002865, -0.028714, 0.428148, 0.270122, -0.245712, 0.978272, 0.290462, -0.306741, -0.063477, -0.012154, -0.818108, 0.609478, 1.427436, -0.640073, 0.502101, 0.240092], "tracked": true, "track_id": 1} +{"t": 60.886933, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002574, -0.028714, 0.427169, 0.270313, -0.248035, 0.971837, 0.290195, -0.311623, -0.063522, -0.01403, -0.819541, 0.60803, 1.426707, -0.640578, 0.50212, 0.239669], "tracked": true, "track_id": 1} +{"t": 60.951189, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002522, -0.028714, 0.427084, 0.271553, -0.254407, 0.96303, 0.290935, -0.31799, -0.064564, -0.018931, -0.822081, 0.605084, 1.425295, -0.640794, 0.502141, 0.238805], "tracked": true, "track_id": 1} +{"t": 60.984623, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002541, -0.028714, 0.427415, 0.271314, -0.254007, 0.963126, 0.290731, -0.317955, -0.064451, -0.019756, -0.822145, 0.603746, 1.425072, -0.64059, 0.502146, 0.238412], "tracked": true, "track_id": 1} +{"t": 61.020272, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002547, -0.028714, 0.428113, 0.27127, -0.255164, 0.960956, 0.290518, -0.319351, -0.064609, -0.019932, -0.822079, 0.603254, 1.424573, -0.640505, 0.502168, 0.238271], "tracked": true, "track_id": 1} +{"t": 61.082867, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002558, -0.028714, 0.426955, 0.272412, -0.257909, 0.959732, 0.291637, -0.32081, -0.065225, -0.023101, -0.823702, 0.601575, 1.424156, -0.640609, 0.502155, 0.237775], "tracked": true, "track_id": 1} +{"t": 61.149565, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002538, -0.028714, 0.427161, 0.273623, -0.263357, 0.953668, 0.292335, -0.32483, -0.066302, -0.024057, -0.823942, 0.600233, 1.423784, -0.640495, 0.502162, 0.237381], "tracked": true, "track_id": 1} +{"t": 61.213147, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002243, -0.028714, 0.425018, 0.275956, -0.271776, 0.942801, 0.293801, -0.332315, -0.0678, -0.022233, -0.822789, 0.598871, 1.424395, -0.640424, 0.502158, 0.23698], "tracked": true, "track_id": 1} +{"t": 61.247168, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002257, -0.028714, 0.425244, 0.276712, -0.274887, 0.940152, 0.294281, -0.334054, -0.068488, -0.023431, -0.823491, 0.598546, 1.424693, -0.640513, 0.502129, 0.236881], "tracked": true, "track_id": 1} +{"t": 61.315708, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002268, -0.028714, 0.425577, 0.276132, -0.27338, 0.94098, 0.293836, -0.333661, -0.068096, -0.023013, -0.822768, 0.597434, 1.425147, -0.64017, 0.502115, 0.236552], "tracked": true, "track_id": 1} +{"t": 61.380901, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002643, -0.028714, 0.424308, 0.278601, -0.276663, 0.94775, 0.296691, -0.329713, -0.069577, -0.016144, -0.819323, 0.603694, 1.427975, -0.6398, 0.502054, 0.238385], "tracked": true, "track_id": 1} +{"t": 61.446339, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002755, -0.028714, 0.423568, 0.277339, -0.268136, 0.960475, 0.296313, -0.320683, -0.06825, -0.018262, -0.819831, 0.601626, 1.428579, -0.639463, 0.501991, 0.237769], "tracked": true, "track_id": 1} +{"t": 61.509295, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003108, -0.028714, 0.423706, 0.280997, -0.278824, 0.957986, 0.299513, -0.322641, -0.071138, -0.007753, -0.815337, 0.612011, 1.432325, -0.639492, 0.501923, 0.240814], "tracked": true, "track_id": 1} +{"t": 61.58021, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003105, -0.028714, 0.422785, 0.282007, -0.281872, 0.955271, 0.300431, -0.325099, -0.071713, -0.009582, -0.815535, 0.60898, 1.432468, -0.639106, 0.501887, 0.239918], "tracked": true, "track_id": 1} +{"t": 61.644339, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003088, -0.028714, 0.422842, 0.281852, -0.280744, 0.958121, 0.300281, -0.323332, -0.071612, -0.011515, -0.815823, 0.605894, 1.432852, -0.638741, 0.50183, 0.239003], "tracked": true, "track_id": 1} +{"t": 61.70755, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003227, -0.028714, 0.422613, 0.28193, -0.276944, 0.968717, 0.300713, -0.315406, -0.07153, -0.005473, -0.812304, 0.608752, 1.434657, -0.638129, 0.501815, 0.239842], "tracked": true, "track_id": 1} +{"t": 61.744044, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003276, -0.028714, 0.421606, 0.283947, -0.282573, 0.96615, 0.302429, -0.317713, -0.072884, 0.001547, -0.808867, 0.613217, 1.437034, -0.637886, 0.501771, 0.241149], "tracked": true, "track_id": 1} +{"t": 61.805211, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003501, -0.028714, 0.422082, 0.286325, -0.291183, 0.959208, 0.304413, -0.321795, -0.074883, 0.010277, -0.804737, 0.620209, 1.439988, -0.637623, 0.501714, 0.243198], "tracked": true, "track_id": 1} +{"t": 61.838562, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003638, -0.028714, 0.422608, 0.286257, -0.289499, 0.964518, 0.304546, -0.317827, -0.074906, 0.013947, -0.802983, 0.623324, 1.440688, -0.637474, 0.501733, 0.244116], "tracked": true, "track_id": 1} +{"t": 61.873292, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003592, -0.028714, 0.423301, 0.285688, -0.289639, 0.961346, 0.303878, -0.320019, -0.074661, 0.016432, -0.802168, 0.625686, 1.441293, -0.637704, 0.501736, 0.244812], "tracked": true, "track_id": 1} +{"t": 61.93724, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003516, -0.028714, 0.423878, 0.28417, -0.286017, 0.96166, 0.302526, -0.31998, -0.073601, 0.015768, -0.802314, 0.624416, 1.442285, -0.637659, 0.501643, 0.244426], "tracked": true, "track_id": 1} +{"t": 62.005586, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003385, -0.028714, 0.423552, 0.284078, -0.287309, 0.956828, 0.302261, -0.323594, -0.073509, 0.013096, -0.803754, 0.622442, 1.443095, -0.637867, 0.501514, 0.243829], "tracked": true, "track_id": 1} +{"t": 62.039617, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003275, -0.028714, 0.424066, 0.281621, -0.280048, 0.959928, 0.300231, -0.321308, -0.071672, 0.009028, -0.805635, 0.619045, 1.442078, -0.637969, 0.501518, 0.24283], "tracked": true, "track_id": 1} +{"t": 62.103115, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002961, -0.028714, 0.425472, 0.278862, -0.275911, 0.953625, 0.297271, -0.325191, -0.069947, 0.006203, -0.806382, 0.613711, 1.440327, -0.637813, 0.501601, 0.241272], "tracked": true, "track_id": 1} +{"t": 62.138294, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003044, -0.028714, 0.425024, 0.279299, -0.276129, 0.955437, 0.297881, -0.324233, -0.070137, 0.011455, -0.803882, 0.61752, 1.442239, -0.637648, 0.501553, 0.242386], "tracked": true, "track_id": 1} +{"t": 62.201732, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003237, -0.028714, 0.422589, 0.283047, -0.286207, 0.948444, 0.301416, -0.329448, -0.072419, 0.015785, -0.802253, 0.622794, 1.446175, -0.637771, 0.501264, 0.243899], "tracked": true, "track_id": 1} +{"t": 62.265652, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003725, -0.028714, 0.422962, 0.285693, -0.292564, 0.950354, 0.304228, -0.328042, -0.074473, 0.019632, -0.800089, 0.627263, 1.448314, -0.637222, 0.501146, 0.245198], "tracked": true, "track_id": 1} +{"t": 62.301157, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003755, -0.028714, 0.422894, 0.285484, -0.291228, 0.952698, 0.304185, -0.326626, -0.074265, 0.022658, -0.798645, 0.629323, 1.44935, -0.637128, 0.501129, 0.245802], "tracked": true, "track_id": 1} +{"t": 62.366944, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004058, -0.028714, 0.423302, 0.286992, -0.295768, 0.951582, 0.305793, -0.327537, -0.075481, 0.024367, -0.797675, 0.631809, 1.45044, -0.636843, 0.501076, 0.246526], "tracked": true, "track_id": 1} +{"t": 62.436977, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004286, -0.028714, 0.423861, 0.288767, -0.302448, 0.946338, 0.307363, -0.330929, -0.077002, 0.023845, -0.798356, 0.634184, 1.45137, -0.63706, 0.500967, 0.247211], "tracked": true, "track_id": 1} +{"t": 62.498209, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004411, -0.028714, 0.423266, 0.288633, -0.30045, 0.949372, 0.30772, -0.329151, -0.076647, 0.025556, -0.797403, 0.635655, 1.452578, -0.636869, 0.500891, 0.247633], "tracked": true, "track_id": 1} +{"t": 62.562371, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004398, -0.028714, 0.42235, 0.28934, -0.302011, 0.947824, 0.308402, -0.330189, -0.076971, 0.028301, -0.795944, 0.636818, 1.452996, -0.636696, 0.50093, 0.24798], "tracked": true, "track_id": 1} +{"t": 62.600331, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004446, -0.028714, 0.42069, 0.291431, -0.307621, 0.943191, 0.310309, -0.333562, -0.07818, 0.027439, -0.796546, 0.637137, 1.452829, -0.636834, 0.500928, 0.248074], "tracked": true, "track_id": 1} +{"t": 62.664177, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00465, -0.028714, 0.418973, 0.292879, -0.306829, 0.953264, 0.312162, -0.327432, -0.078748, 0.028372, -0.795525, 0.637435, 1.45538, -0.636319, 0.500642, 0.248124], "tracked": true, "track_id": 1} +{"t": 62.730597, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004502, -0.028714, 0.417979, 0.2929, -0.307671, 0.948561, 0.312086, -0.330832, -0.078551, 0.032698, -0.792662, 0.636897, 1.456809, -0.635711, 0.500615, 0.247962], "tracked": true, "track_id": 1} +{"t": 62.795788, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004414, -0.028714, 0.416218, 0.293505, -0.308005, 0.948609, 0.312721, -0.331426, -0.078572, 0.034912, -0.791294, 0.636836, 1.457589, -0.635473, 0.500597, 0.247942], "tracked": true, "track_id": 1} +{"t": 62.86304, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004555, -0.028714, 0.416334, 0.294726, -0.310583, 0.951495, 0.313834, -0.329775, -0.079546, 0.043563, -0.785287, 0.637387, 1.46058, -0.633729, 0.500508, 0.248093], "tracked": true, "track_id": 1} +{"t": 62.925687, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004581, -0.028714, 0.416421, 0.295151, -0.311955, 0.950894, 0.314164, -0.330039, -0.079915, 0.050169, -0.780522, 0.636794, 1.461919, -0.632338, 0.500557, 0.247925], "tracked": true, "track_id": 1} +{"t": 62.95936, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004528, -0.028714, 0.416318, 0.295166, -0.312269, 0.950263, 0.314083, -0.330639, -0.079929, 0.055501, -0.777128, 0.637083, 1.46292, -0.631524, 0.500605, 0.248016], "tracked": true, "track_id": 1} +{"t": 62.994527, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004652, -0.028714, 0.417435, 0.294597, -0.309676, 0.955774, 0.313712, -0.326376, -0.079723, 0.059702, -0.774221, 0.637665, 1.464811, -0.630615, 0.500503, 0.248174], "tracked": true, "track_id": 1} +{"t": 63.057784, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004579, -0.028714, 0.416344, 0.296612, -0.317192, 0.946473, 0.315151, -0.332675, -0.081111, 0.067044, -0.769481, 0.637882, 1.466416, -0.629446, 0.500543, 0.248243], "tracked": true, "track_id": 1} +{"t": 63.124452, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00472, -0.028714, 0.41701, 0.295906, -0.312143, 0.95751, 0.314829, -0.324895, -0.080643, 0.071335, -0.766187, 0.637669, 1.468694, -0.628299, 0.500396, 0.248161], "tracked": true, "track_id": 1} +{"t": 63.160424, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004784, -0.028714, 0.416296, 0.298037, -0.319545, 0.949614, 0.316566, -0.329938, -0.08216, 0.070781, -0.76634, 0.63746, 1.46869, -0.628233, 0.50038, 0.248097], "tracked": true, "track_id": 1} +{"t": 63.221939, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004655, -0.028714, 0.417782, 0.29577, -0.31466, 0.950197, 0.314405, -0.329349, -0.080801, 0.06328, -0.768364, 0.62793, 1.466403, -0.627624, 0.500425, 0.2453], "tracked": true, "track_id": 1} +{"t": 63.289917, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004675, -0.028714, 0.416647, 0.297735, -0.321327, 0.942653, 0.316035, -0.334561, -0.08208, 0.059246, -0.771015, 0.628006, 1.467334, -0.628346, 0.50015, 0.245287], "tracked": true, "track_id": 1} +{"t": 63.354072, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005039, -0.028714, 0.417627, 0.298335, -0.322107, 0.946967, 0.31703, -0.331783, -0.082673, 0.05849, -0.771017, 0.62889, 1.469121, -0.627955, 0.499863, 0.245509], "tracked": true, "track_id": 1} +{"t": 63.422922, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005162, -0.028714, 0.417128, 0.297911, -0.31683, 0.957994, 0.317137, -0.324346, -0.082093, 0.062289, -0.768646, 0.630231, 1.470678, -0.627315, 0.499791, 0.245894], "tracked": true, "track_id": 1} +{"t": 63.45958, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005306, -0.028714, 0.417444, 0.29818, -0.316818, 0.960794, 0.317572, -0.322488, -0.082332, 0.06316, -0.767904, 0.630699, 1.471538, -0.626967, 0.499699, 0.24602], "tracked": true, "track_id": 1} +{"t": 63.520745, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005221, -0.028714, 0.417094, 0.299823, -0.3248, 0.948424, 0.318561, -0.330417, -0.083643, 0.067181, -0.765326, 0.630713, 1.474096, -0.626368, 0.499467, 0.245993], "tracked": true, "track_id": 1} +{"t": 63.585917, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005213, -0.028714, 0.415461, 0.301128, -0.327935, 0.94578, 0.319793, -0.332987, -0.08423, 0.065236, -0.76675, 0.630999, 1.473463, -0.626828, 0.499481, 0.246079], "tracked": true, "track_id": 1} +{"t": 63.649959, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004923, -0.028714, 0.417006, 0.296418, -0.316483, 0.946692, 0.315627, -0.332357, -0.080944, 0.053188, -0.770866, 0.61757, 1.470069, -0.626431, 0.499537, 0.242137], "tracked": true, "track_id": 1} +{"t": 63.717852, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004534, -0.028714, 0.415708, 0.295111, -0.313711, 0.942217, 0.314163, -0.335821, -0.079675, 0.048345, -0.773459, 0.613234, 1.468849, -0.62705, 0.499542, 0.240862], "tracked": true, "track_id": 1} +{"t": 63.783174, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004426, -0.028714, 0.415504, 0.295209, -0.315792, 0.935971, 0.314051, -0.339815, -0.079766, 0.033302, -0.780445, 0.602912, 1.464812, -0.627491, 0.49958, 0.237832], "tracked": true, "track_id": 1} +{"t": 63.852639, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004239, -0.028714, 0.41619, 0.294419, -0.316199, 0.929928, 0.312948, -0.343302, -0.079429, 0.018699, -0.78832, 0.595335, 1.461174, -0.628598, 0.499579, 0.235603], "tracked": true, "track_id": 1} +{"t": 63.915304, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004056, -0.028714, 0.414912, 0.295625, -0.320742, 0.921579, 0.313653, -0.347961, -0.080157, 0.007795, -0.794385, 0.589865, 1.458061, -0.629539, 0.499636, 0.234002], "tracked": true, "track_id": 1} +{"t": 63.949347, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004067, -0.028714, 0.414946, 0.295609, -0.321104, 0.920284, 0.313662, -0.348832, -0.080149, 0.00394, -0.796204, 0.587527, 1.457269, -0.629643, 0.49961, 0.23331], "tracked": true, "track_id": 1} +{"t": 64.016162, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00402, -0.028714, 0.415227, 0.293608, -0.314412, 0.926105, 0.312162, -0.345649, -0.078597, 0.000855, -0.797267, 0.5843, 1.456518, -0.629542, 0.499607, 0.232361], "tracked": true, "track_id": 1} +{"t": 64.080916, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004118, -0.028714, 0.416932, 0.29201, -0.309498, 0.932561, 0.310904, -0.341245, -0.077727, -0.003311, -0.799027, 0.581774, 1.456162, -0.629488, 0.4995, 0.231604], "tracked": true, "track_id": 1} +{"t": 64.149112, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003979, -0.028714, 0.416786, 0.290314, -0.30375, 0.936801, 0.309497, -0.338814, -0.076355, -0.00565, -0.800282, 0.579919, 1.455485, -0.62973, 0.49951, 0.23106], "tracked": true, "track_id": 1} +{"t": 64.21219, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003953, -0.028714, 0.416381, 0.291285, -0.307584, 0.931791, 0.310184, -0.342085, -0.077055, -0.008705, -0.801653, 0.577667, 1.455532, -0.629762, 0.499384, 0.230381], "tracked": true, "track_id": 1} +{"t": 64.280554, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004, -0.028714, 0.418338, 0.290037, -0.30582, 0.931724, 0.30897, -0.341793, -0.076574, -0.009313, -0.802221, 0.578357, 1.454677, -0.629965, 0.499488, 0.230598], "tracked": true, "track_id": 1} +{"t": 64.34499, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004045, -0.028714, 0.419042, 0.289212, -0.302873, 0.93618, 0.308355, -0.338983, -0.076075, -0.009854, -0.802708, 0.578968, 1.454417, -0.630129, 0.499511, 0.23078], "tracked": true, "track_id": 1} +{"t": 64.405568, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004102, -0.028714, 0.420878, 0.286975, -0.29712, 0.939626, 0.306522, -0.336359, -0.074726, -0.009885, -0.803374, 0.58124, 1.455431, -0.630555, 0.499348, 0.231427], "tracked": true, "track_id": 1} +{"t": 64.441429, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004134, -0.028714, 0.421713, 0.286343, -0.295689, 0.94081, 0.305959, -0.335403, -0.07443, -0.008282, -0.802339, 0.581699, 1.4557, -0.630341, 0.49937, 0.231565], "tracked": true, "track_id": 1} +{"t": 64.475038, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004034, -0.028714, 0.42227, 0.28563, -0.294612, 0.939946, 0.305113, -0.335836, -0.074056, -0.006607, -0.801367, 0.581664, 1.455775, -0.630249, 0.499423, 0.231562], "tracked": true, "track_id": 1} +{"t": 64.541083, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00428, -0.028714, 0.424066, 0.286507, -0.297598, 0.941512, 0.305792, -0.333894, -0.075188, 0.003743, -0.796576, 0.589759, 1.457393, -0.629856, 0.499573, 0.233962], "tracked": true, "track_id": 1} +{"t": 64.577012, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00453, -0.028714, 0.4248, 0.287719, -0.300957, 0.942539, 0.306985, -0.333093, -0.076281, 0.011614, -0.793217, 0.597151, 1.459157, -0.629728, 0.499609, 0.236141], "tracked": true, "track_id": 1} +{"t": 64.638252, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004816, -0.028714, 0.424819, 0.289514, -0.305198, 0.943866, 0.308837, -0.332354, -0.077625, 0.027952, -0.78564, 0.609173, 1.462343, -0.629099, 0.499752, 0.239696], "tracked": true, "track_id": 1} +{"t": 64.706473, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005263, -0.028714, 0.425784, 0.291765, -0.31015, 0.947358, 0.311109, -0.32881, -0.079545, 0.038214, -0.780718, 0.617934, 1.464901, -0.628457, 0.499764, 0.242274], "tracked": true, "track_id": 1} +{"t": 64.769645, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005411, -0.028714, 0.427766, 0.292163, -0.313025, 0.946847, 0.311177, -0.328873, -0.080382, 0.0473, -0.776415, 0.624347, 1.467965, -0.628035, 0.49965, 0.244145], "tracked": true, "track_id": 1} +{"t": 64.8352, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005472, -0.028714, 0.42615, 0.293533, -0.31468, 0.949492, 0.312646, -0.327876, -0.080999, 0.051597, -0.774741, 0.628479, 1.469657, -0.628135, 0.499553, 0.245348], "tracked": true, "track_id": 1} +{"t": 64.870606, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005567, -0.028714, 0.425022, 0.295413, -0.31999, 0.945428, 0.314406, -0.330857, -0.082171, 0.051915, -0.774931, 0.630334, 1.470503, -0.628334, 0.499431, 0.245877], "tracked": true, "track_id": 1} +{"t": 64.905328, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005297, -0.028714, 0.424727, 0.29424, -0.317831, 0.942367, 0.313089, -0.332979, -0.081259, 0.044496, -0.777989, 0.622938, 1.468756, -0.628449, 0.499412, 0.2437], "tracked": true, "track_id": 1} +{"t": 64.969228, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005612, -0.028714, 0.426213, 0.294798, -0.319239, 0.945144, 0.313796, -0.330482, -0.081999, 0.050084, -0.775028, 0.627462, 1.472185, -0.627856, 0.499076, 0.244986], "tracked": true, "track_id": 1} +{"t": 65.003236, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005276, -0.028714, 0.425052, 0.294369, -0.319068, 0.939947, 0.313048, -0.334036, -0.081484, 0.045271, -0.776832, 0.62122, 1.470273, -0.627934, 0.499186, 0.243165], "tracked": true, "track_id": 1} +{"t": 65.067256, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004813, -0.028714, 0.420771, 0.293568, -0.314016, 0.940012, 0.312516, -0.33567, -0.079785, 0.029078, -0.78455, 0.608523, 1.465899, -0.628693, 0.499235, 0.239437], "tracked": true, "track_id": 1} +{"t": 65.134032, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.0043, -0.028714, 0.416325, 0.294204, -0.314316, 0.934204, 0.312844, -0.340357, -0.079261, 0.016276, -0.79063, 0.597578, 1.463796, -0.62931, 0.499052, 0.236194], "tracked": true, "track_id": 1} +{"t": 65.200106, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003952, -0.028714, 0.412648, 0.294102, -0.311741, 0.933267, 0.312853, -0.342262, -0.078254, 0.001139, -0.799303, 0.589911, 1.459457, -0.630723, 0.499151, 0.233952], "tracked": true, "track_id": 1} +{"t": 65.233886, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003625, -0.028714, 0.410113, 0.295094, -0.313824, 0.929399, 0.313349, -0.345069, -0.0785, -0.007827, -0.804969, 0.586034, 1.457742, -0.63187, 0.499071, 0.232801], "tracked": true, "track_id": 1} +{"t": 65.301584, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003095, -0.028714, 0.405961, 0.296912, -0.318032, 0.920934, 0.314299, -0.350255, -0.07906, -0.016842, -0.810075, 0.579643, 1.458744, -0.632804, 0.498471, 0.230843], "tracked": true, "track_id": 1} +{"t": 65.364235, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002606, -0.028714, 0.403146, 0.295822, -0.313219, 0.922327, 0.313114, -0.350666, -0.07759, -0.013336, -0.805915, 0.572333, 1.46144, -0.631458, 0.498137, 0.228649], "tracked": true, "track_id": 1} +{"t": 65.430439, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00291, -0.028714, 0.401509, 0.298749, -0.319312, 0.922693, 0.316087, -0.351214, -0.079311, -0.008794, -0.800514, 0.568152, 1.462996, -0.62921, 0.49806, 0.22741], "tracked": true, "track_id": 1} +{"t": 65.493969, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002931, -0.028714, 0.402887, 0.299112, -0.323442, 0.914291, 0.316085, -0.355007, -0.08003, -0.007827, -0.799183, 0.566426, 1.460929, -0.628694, 0.498441, 0.226952], "tracked": true, "track_id": 1} +{"t": 65.528972, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003325, -0.028714, 0.406509, 0.296072, -0.311853, 0.931335, 0.314102, -0.341601, -0.078374, 0.002013, -0.793593, 0.572232, 1.462593, -0.627612, 0.498592, 0.228679], "tracked": true, "track_id": 1} +{"t": 65.563182, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003899, -0.028714, 0.411113, 0.292857, -0.300524, 0.946925, 0.312123, -0.328412, -0.076766, 0.007743, -0.790835, 0.579149, 1.462934, -0.627174, 0.498778, 0.230738], "tracked": true, "track_id": 1} +{"t": 65.629136, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005103, -0.028714, 0.420469, 0.28927, -0.293223, 0.956453, 0.310043, -0.318424, -0.075924, -0.001558, -0.797316, 0.586476, 1.462516, -0.628098, 0.498451, 0.23285], "tracked": true, "track_id": 1} +{"t": 65.692672, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006217, -0.028714, 0.429142, 0.283972, -0.280384, 0.967627, 0.306696, -0.308106, -0.073496, -0.025861, -0.811465, 0.585522, 1.46195, -0.629712, 0.497328, 0.232423], "tracked": true, "track_id": 1} +{"t": 65.758595, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.007554, -0.028714, 0.438004, 0.28145, -0.27897, 0.966336, 0.30551, -0.306134, -0.073338, -0.047425, -0.823081, 0.584322, 1.461454, -0.630375, 0.49629, 0.231934], "tracked": true, "track_id": 1} +{"t": 65.822186, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008362, -0.028714, 0.441978, 0.278649, -0.259959, 0.998845, 0.304458, -0.275238, -0.071785, -0.054624, -0.828222, 0.590342, 1.463854, -0.631421, 0.495332, 0.233579], "tracked": true, "track_id": 1} +{"t": 65.860647, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008692, -0.028714, 0.443028, 0.278911, -0.256469, 1.010634, 0.305164, -0.264517, -0.072161, -0.049485, -0.82475, 0.592996, 1.464959, -0.630594, 0.495403, 0.234369], "tracked": true, "track_id": 1} +{"t": 65.92511, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009438, -0.028714, 0.445014, 0.278333, -0.2511, 1.022736, 0.306037, -0.254269, -0.071921, -0.038831, -0.817136, 0.597596, 1.466972, -0.628499, 0.495595, 0.235747], "tracked": true, "track_id": 1} +{"t": 65.993582, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009796, -0.028714, 0.442489, 0.2805, -0.252146, 1.030595, 0.309119, -0.249971, -0.072791, -0.027853, -0.809805, 0.60094, 1.469008, -0.626774, 0.495788, 0.236756], "tracked": true, "track_id": 1} +{"t": 66.056267, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009642, -0.028714, 0.434853, 0.285677, -0.259278, 1.034896, 0.314237, -0.250538, -0.074814, -0.016379, -0.803707, 0.604998, 1.467145, -0.626185, 0.496732, 0.238073], "tracked": true, "track_id": 1} +{"t": 66.121081, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.009438, -0.028714, 0.428004, 0.291473, -0.267392, 1.042871, 0.319384, -0.247431, -0.077606, -0.005431, -0.797115, 0.606483, 1.468793, -0.625078, 0.496994, 0.238544], "tracked": true, "track_id": 1} +{"t": 66.187134, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008845, -0.028714, 0.420663, 0.296197, -0.274751, 1.045716, 0.322936, -0.249114, -0.079551, 0.00449, -0.791089, 0.605263, 1.471853, -0.624237, 0.496915, 0.238175], "tracked": true, "track_id": 1} +{"t": 66.252259, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.008114, -0.028714, 0.406754, 0.303303, -0.285236, 1.041299, 0.328638, -0.259591, -0.081265, 0.010322, -0.786164, 0.598262, 1.473571, -0.623025, 0.496892, 0.236113], "tracked": true, "track_id": 1} +{"t": 66.287144, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00746, -0.028714, 0.397342, 0.303674, -0.272732, 1.054779, 0.328933, -0.250494, -0.078777, 0.015195, -0.783547, 0.596624, 1.476712, -0.623026, 0.496457, 0.235574], "tracked": true, "track_id": 1} +{"t": 66.352677, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.006978, -0.028714, 0.388511, 0.299136, -0.236067, 1.086917, 0.326485, -0.217263, -0.072337, 0.03232, -0.774191, 0.598, 1.477955, -0.620699, 0.496912, 0.236038], "tracked": true, "track_id": 1} +{"t": 66.420073, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.005846, -0.028714, 0.381728, 0.289392, -0.197123, 1.105063, 0.318849, -0.202919, -0.062758, 0.046772, -0.76712, 0.599311, 1.475647, -0.620867, 0.49796, 0.236561], "tracked": true, "track_id": 1} +{"t": 66.483234, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.004536, -0.028714, 0.375931, 0.285945, -0.188789, 1.099165, 0.314867, -0.21345, -0.05893, 0.049177, -0.76695, 0.595966, 1.47015, -0.62246, 0.498902, 0.2357], "tracked": true, "track_id": 1} +{"t": 66.550578, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.003593, -0.028714, 0.370921, 0.285436, -0.188157, 1.093473, 0.313409, -0.222813, -0.05752, 0.06002, -0.760394, 0.592857, 1.467297, -0.621778, 0.49969, 0.234889], "tracked": true, "track_id": 1} +{"t": 66.618135, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002654, -0.028714, 0.362231, 0.290961, -0.202839, 1.081817, 0.316297, -0.238235, -0.059823, 0.066857, -0.757057, 0.591357, 1.467434, -0.622119, 0.499975, 0.234485], "tracked": true, "track_id": 1} +{"t": 66.651674, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002257, -0.028714, 0.35552, 0.297174, -0.218224, 1.072544, 0.320308, -0.249357, -0.062894, 0.068827, -0.755798, 0.589533, 1.469651, -0.622123, 0.499789, 0.233924], "tracked": true, "track_id": 1} +{"t": 66.718302, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001756, -0.028714, 0.343833, 0.307194, -0.23879, 1.065107, 0.327042, -0.261458, -0.067361, 0.069372, -0.755632, 0.587656, 1.473707, -0.622566, 0.499268, 0.233304], "tracked": true, "track_id": 1} +{"t": 66.781531, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001629, -0.028714, 0.329975, 0.318396, -0.257036, 1.061002, 0.33511, -0.270819, -0.071503, 0.066168, -0.758354, 0.588669, 1.475437, -0.623644, 0.498943, 0.233559], "tracked": true, "track_id": 1} +{"t": 66.846545, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001963, -0.028714, 0.32023, 0.325748, -0.261016, 1.072919, 0.341198, -0.26412, -0.07355, 0.062408, -0.760151, 0.588369, 1.473971, -0.623656, 0.499103, 0.233492], "tracked": true, "track_id": 1} +{"t": 66.911466, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002164, -0.028714, 0.306123, 0.336657, -0.275147, 1.071028, 0.349191, -0.271176, -0.076783, 0.06232, -0.759101, 0.586319, 1.473146, -0.622843, 0.499284, 0.232913], "tracked": true, "track_id": 1} +{"t": 66.945134, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.002299, -0.028714, 0.297996, 0.344669, -0.288561, 1.067397, 0.354803, -0.276982, -0.07997, 0.060245, -0.760486, 0.587005, 1.472618, -0.623129, 0.499308, 0.233117], "tracked": true, "track_id": 1} +{"t": 66.981066, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.00226, -0.028714, 0.290442, 0.351261, -0.299886, 1.061821, 0.359161, -0.283893, -0.082397, 0.061647, -0.759807, 0.587515, 1.472114, -0.623093, 0.499454, 0.233286], "tracked": true, "track_id": 1} +{"t": 67.045943, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001922, -0.028714, 0.276031, 0.361973, -0.318994, 1.043181, 0.365671, -0.301507, -0.085715, 0.058967, -0.762211, 0.587116, 1.470008, -0.624173, 0.499689, 0.2332], "tracked": true, "track_id": 1} +{"t": 67.107756, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001258, -0.028714, 0.264938, 0.366513, -0.322068, 1.038872, 0.367586, -0.308677, -0.085682, 0.055902, -0.764398, 0.583483, 1.467345, -0.625176, 0.499964, 0.232167], "tracked": true, "track_id": 1} +{"t": 67.145837, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001096, -0.028714, 0.264226, 0.366335, -0.322682, 1.035927, 0.367337, -0.311524, -0.08549, 0.053634, -0.765555, 0.581404, 1.466626, -0.625405, 0.499996, 0.23156], "tracked": true, "track_id": 1} +{"t": 67.209987, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000782, -0.028714, 0.268218, 0.362482, -0.322443, 1.024082, 0.364514, -0.31929, -0.084405, 0.054127, -0.765601, 0.580704, 1.466224, -0.62578, 0.500088, 0.231366], "tracked": true, "track_id": 1} +{"t": 67.276953, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000422, -0.028714, 0.278445, 0.351914, -0.30888, 1.0195, 0.356948, -0.320755, -0.080224, 0.060853, -0.761955, 0.581346, 1.466468, -0.625441, 0.500291, 0.231582], "tracked": true, "track_id": 1} +{"t": 67.342039, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000249, -0.028714, 0.28507, 0.346316, -0.30272, 1.019186, 0.353038, -0.319925, -0.078521, 0.066709, -0.760656, 0.587882, 1.464249, -0.626302, 0.500686, 0.233555], "tracked": true, "track_id": 1} +{"t": 67.410051, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 4.6e-05, -0.028714, 0.293063, 0.339592, -0.293974, 1.021026, 0.348121, -0.316766, -0.076361, 0.070689, -0.759845, 0.592068, 1.46284, -0.626995, 0.500954, 0.234822], "tracked": true, "track_id": 1} +{"t": 67.474391, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000115, -0.028714, 0.306601, 0.329967, -0.282624, 1.021642, 0.341292, -0.312811, -0.07354, 0.07697, -0.758001, 0.599158, 1.460738, -0.627406, 0.501275, 0.236949], "tracked": true, "track_id": 1} +{"t": 67.536707, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000165, -0.028714, 0.316622, 0.322149, -0.27225, 1.021994, 0.335762, -0.309915, -0.070867, 0.079668, -0.758495, 0.605928, 1.458404, -0.628434, 0.50152, 0.238972], "tracked": true, "track_id": 1} +{"t": 67.571592, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000234, -0.028714, 0.32301, 0.315361, -0.257631, 1.028488, 0.330944, -0.302416, -0.067548, 0.082461, -0.757551, 0.608943, 1.457906, -0.628502, 0.501619, 0.239872], "tracked": true, "track_id": 1} +{"t": 67.634988, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000391, -0.028714, 0.33441, 0.3055, -0.240042, 1.034134, 0.323839, -0.2943, -0.063436, 0.083759, -0.757656, 0.612598, 1.457907, -0.628829, 0.501686, 0.240956], "tracked": true, "track_id": 1} +{"t": 67.668337, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000591, -0.028714, 0.340423, 0.300971, -0.232096, 1.037149, 0.32068, -0.289781, -0.061689, 0.083671, -0.758018, 0.61455, 1.45755, -0.628921, 0.501725, 0.241535], "tracked": true, "track_id": 1} +{"t": 67.703887, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000743, -0.028714, 0.346559, 0.295599, -0.221208, 1.041694, 0.316782, -0.283627, -0.059292, 0.082851, -0.758918, 0.61636, 1.457032, -0.629209, 0.50176, 0.242072], "tracked": true, "track_id": 1} +{"t": 67.738936, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000821, -0.028714, 0.351029, 0.293057, -0.2179, 1.043711, 0.314828, -0.280469, -0.058731, 0.082674, -0.759619, 0.618422, 1.456422, -0.629584, 0.501806, 0.242684], "tracked": true, "track_id": 1} +{"t": 67.80346, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001056, -0.028714, 0.358142, 0.286466, -0.202202, 1.053684, 0.31025, -0.268867, -0.055631, 0.08264, -0.759865, 0.620364, 1.456722, -0.629587, 0.501796, 0.243254], "tracked": true, "track_id": 1} +{"t": 67.838035, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001153, -0.028714, 0.358855, 0.285447, -0.199392, 1.055399, 0.309795, -0.267331, -0.055005, 0.081903, -0.760668, 0.621736, 1.455485, -0.629867, 0.501861, 0.243666], "tracked": true, "track_id": 1} +{"t": 67.900931, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001528, -0.028714, 0.361725, 0.283188, -0.193003, 1.060981, 0.308863, -0.261411, -0.0539, 0.081258, -0.761511, 0.624917, 1.453136, -0.630006, 0.50198, 0.244617], "tracked": true, "track_id": 1} +{"t": 67.963034, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001575, -0.028714, 0.365735, 0.279358, -0.183299, 1.067952, 0.305974, -0.253346, -0.0521, 0.081879, -0.761377, 0.625948, 1.452259, -0.630047, 0.502036, 0.244928], "tracked": true, "track_id": 1} +{"t": 68.000345, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001566, -0.028714, 0.365551, 0.278682, -0.180032, 1.071111, 0.305592, -0.250525, -0.051508, 0.081908, -0.761173, 0.625369, 1.451726, -0.629929, 0.50207, 0.244762], "tracked": true, "track_id": 1} +{"t": 68.065898, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001268, -0.028714, 0.365764, 0.277212, -0.176085, 1.073652, 0.304071, -0.248307, -0.050637, 0.080313, -0.762257, 0.623688, 1.449233, -0.630425, 0.502156, 0.244279], "tracked": true, "track_id": 1} +{"t": 68.134525, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000782, -0.028714, 0.369513, 0.271711, -0.163893, 1.077335, 0.29889, -0.243267, -0.04771, 0.07563, -0.765663, 0.621596, 1.447006, -0.631738, 0.502202, 0.24367], "tracked": true, "track_id": 1} +{"t": 68.196271, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000884, -0.028714, 0.375106, 0.267397, -0.155095, 1.08106, 0.295383, -0.237192, -0.045917, 0.065325, -0.772628, 0.621857, 1.44167, -0.633462, 0.50225, 0.243753], "tracked": true, "track_id": 1} +{"t": 68.262639, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001048, -0.028714, 0.380162, 0.262662, -0.14326, 1.087046, 0.291776, -0.22877, -0.043536, 0.055372, -0.779185, 0.621942, 1.436789, -0.634949, 0.502294, 0.243783], "tracked": true, "track_id": 1} +{"t": 68.296312, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001164, -0.028714, 0.382425, 0.261873, -0.143786, 1.085063, 0.291134, -0.229882, -0.043546, 0.04931, -0.783084, 0.621776, 1.434019, -0.635754, 0.502307, 0.243736], "tracked": true, "track_id": 1} +{"t": 68.358905, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001521, -0.028714, 0.387257, 0.259238, -0.140602, 1.083522, 0.289283, -0.229391, -0.042674, 0.04766, -0.784615, 0.625051, 1.429643, -0.63615, 0.502253, 0.244692], "tracked": true, "track_id": 1} +{"t": 68.393004, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001565, -0.028714, 0.390317, 0.257172, -0.137686, 1.082823, 0.287424, -0.228741, -0.041901, 0.04649, -0.785488, 0.625509, 1.428545, -0.636392, 0.502265, 0.244829], "tracked": true, "track_id": 1} +{"t": 68.427523, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001493, -0.028714, 0.391072, 0.256699, -0.138059, 1.081077, 0.286854, -0.230248, -0.041814, 0.044439, -0.787106, 0.625692, 1.426683, -0.636936, 0.502251, 0.244881], "tracked": true, "track_id": 1} +{"t": 68.462085, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.001401, -0.028714, 0.390715, 0.257734, -0.142424, 1.077796, 0.287449, -0.233742, -0.042641, 0.044688, -0.78767, 0.627265, 1.426568, -0.637448, 0.50227, 0.245346], "tracked": true, "track_id": 1} +{"t": 68.523036, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000792, -0.028714, 0.385102, 0.260542, -0.148005, 1.075305, 0.289035, -0.238787, -0.043623, 0.050126, -0.785224, 0.627546, 1.428768, -0.637727, 0.502292, 0.245431], "tracked": true, "track_id": 1} +{"t": 68.558948, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000559, -0.028714, 0.38356, 0.260824, -0.148533, 1.0742, 0.289021, -0.240626, -0.043538, 0.053449, -0.783595, 0.62811, 1.430929, -0.637719, 0.502301, 0.245598], "tracked": true, "track_id": 1} +{"t": 68.622144, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000277, -0.028714, 0.380301, 0.26039, -0.144, 1.076602, 0.28869, -0.239754, -0.042318, 0.059204, -0.780487, 0.628935, 1.434618, -0.637428, 0.502293, 0.24584], "tracked": true, "track_id": 1} +{"t": 68.65572, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -1.3e-05, -0.028714, 0.379246, 0.260108, -0.1436, 1.07531, 0.288091, -0.241538, -0.041968, 0.060697, -0.779794, 0.628279, 1.434953, -0.637569, 0.502311, 0.245649], "tracked": true, "track_id": 1} +{"t": 68.691766, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000269, -0.028714, 0.377518, 0.261839, -0.149513, 1.070763, 0.289006, -0.246593, -0.043046, 0.063601, -0.778103, 0.627737, 1.437005, -0.637413, 0.502302, 0.245489], "tracked": true, "track_id": 1} +{"t": 68.758689, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.00041, -0.028714, 0.374738, 0.263816, -0.154357, 1.067447, 0.29049, -0.251062, -0.043886, 0.066563, -0.776923, 0.629378, 1.439335, -0.637546, 0.502303, 0.245971], "tracked": true, "track_id": 1} +{"t": 68.82088, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000473, -0.028714, 0.375259, 0.262027, -0.150244, 1.066946, 0.289117, -0.251462, -0.042624, 0.063189, -0.78038, 0.632224, 1.436809, -0.638938, 0.502331, 0.246812], "tracked": true, "track_id": 1} +{"t": 68.857082, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000482, -0.028714, 0.378257, 0.259527, -0.146699, 1.06506, 0.286896, -0.252039, -0.041506, 0.061935, -0.781507, 0.63293, 1.434944, -0.639348, 0.502323, 0.247019], "tracked": true, "track_id": 1} +{"t": 68.891403, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -0.000366, -0.028714, 0.381927, 0.257683, -0.145958, 1.061525, 0.28523, -0.253855, -0.041051, 0.061225, -0.782349, 0.634595, 1.432975, -0.639646, 0.502297, 0.247505], "tracked": true, "track_id": 1} +{"t": 68.951921, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, -5.1e-05, -0.028714, 0.387956, 0.253823, -0.140234, 1.06008, 0.282204, -0.252644, -0.039526, 0.050614, -0.789934, 0.637065, 1.427186, -0.64147, 0.502236, 0.248224], "tracked": true, "track_id": 1} +{"t": 68.987012, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000119, -0.028714, 0.390554, 0.251615, -0.134879, 1.062319, 0.280607, -0.249277, -0.038391, 0.044898, -0.793676, 0.637385, 1.424654, -0.64221, 0.502222, 0.248316], "tracked": true, "track_id": 1} +{"t": 69.050879, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000233, -0.028714, 0.391645, 0.250222, -0.131662, 1.062472, 0.279768, -0.248755, -0.037513, 0.029967, -0.80426, 0.63843, 1.418498, -0.644743, 0.50213, 0.248611], "tracked": true, "track_id": 1} +{"t": 69.119001, "q": [-0.311241, -0.013468, 0.015079, 0.627765, -0.326538, 0.021099, -0.318545, 0.030262, -0.015253, 0.61747, -0.33662, -0.020978, 0.002692, 0.000255, -0.028714, 0.397717, 0.243714, -0.117637, 1.063854, 0.27418, -0.244587, -0.033933, 0.020365, -0.810886, 0.638279, 1.415929, -0.646289, 0.502168, 0.248572], "tracked": true, "track_id": 1} diff --git a/Camera_Recorder/Models/yolo11n-pose.pt b/Camera_Recorder/Models/yolo11n-pose.pt new file mode 100644 index 0000000..f8e7370 Binary files /dev/null and b/Camera_Recorder/Models/yolo11n-pose.pt differ diff --git a/Camera_Recorder/README.md b/Camera_Recorder/README.md new file mode 100644 index 0000000..79862fa --- /dev/null +++ b/Camera_Recorder/README.md @@ -0,0 +1,118 @@ +# Camera Recorder + +This recorder uses YOLO pose tracking from a camera or video source, then writes: + +- `DataG1/.jsonl`: replay-compatible G1 dataset with 29 joints +- `RawPose/.pose.jsonl`: raw 2D pose keypoints and diagnostics +- `Models/yolo11n-pose.pt`: local bundled YOLO pose model +- `camera_recorder_config.json`: recorder defaults, runtime settings, and file locations +- `joint.json`: robot joint counts, waist indices, and joint limits +- `pose_mapping.json`: camera pose-to-joint mapping rules and gains + +The generated G1 dataset is designed to work with the existing replay scripts in this project. Lower body joints stay at `arm_home.jsonl`, and the upper body is estimated from the visible 2D pose. + +## Record From Camera + +```bash +cd /home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder +python3 g1_camera_pose_recorder.py --source ask --output hands_up_cam +``` + +Recorder defaults also come from `camera_recorder_config.json`. Right now the default output is `test_take`, and the default home pose is the local `DataG1/arm_home.jsonl`, so you can simply run: + +```bash +cd /home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder +python3 g1_camera_pose_recorder.py +``` + +The recorder asks for an `Enter` confirmation before it starts writing files. Use `--no-prompt` to skip that. + +You can also use explicit aliases like `--output-file` and `--home-file`. + +By default, the recorder now looks for `Models/yolo11n-pose.pt` first. + +All operational defaults are now loaded from `camera_recorder_config.json`. CLI flags still work, but they override the JSON values for that run only. The mapper-specific data is split into `joint.json` and `pose_mapping.json`, which are referenced from `camera_recorder_config.json`. + +Use a different config file: + +```bash +python3 g1_camera_pose_recorder.py --config /path/to/camera_recorder_config.json --source 0 --output test_take +``` + +Fixed camera index: + +```bash +python3 g1_camera_pose_recorder.py --source 0 --output hands_up_cam +``` + +Record for a fixed duration: + +```bash +python3 g1_camera_pose_recorder.py --source 0 --output hands_up_cam --seconds 12 +``` + +Skip the start confirmation prompt: + +```bash +python3 g1_camera_pose_recorder.py --no-prompt +``` + +Use a custom YOLO model or custom home pose: + +```bash +python3 g1_camera_pose_recorder.py \ + --source 0 \ + --output wave_cam \ + --model /home/zedx/Robotics_workspace/AI/YOLO/yolo11n-pose.pt \ + --home-pose /home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Manual_Recorder/DataG1/arm_home.jsonl +``` + +## Replay The Recorded Dataset + +Because the file is saved under `Camera_Recorder/DataG1`, pass the full path to replay: + +```bash +python3 /home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/g1_camera_pose_replay.py \ + enp3s0 \ + --input /home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/DataG1/hands_up_cam.jsonl \ + --home arm_home.jsonl +``` + +`g1_camera_pose_replay.py` also reads replay defaults from `camera_recorder_config.json`, so from inside `Camera_Recorder` you can run: + +```bash +python3 g1_camera_pose_replay.py +``` + +Replay scripts also accept explicit aliases like `--iface`, `--input-file`, and `--home-file`. + +Safer camera-aware replay: + +```bash +python3 /home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/g1_camera_pose_replay_v2.py \ + enp3s0 \ + --input /home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/DataG1/hands_up_cam.jsonl \ + --home arm_home.jsonl \ + --speed 0.35 +``` + +`g1_camera_pose_replay_v2.py` also reads replay defaults from `camera_recorder_config.json`. Right now those defaults are: + +- `iface = enp3s0` +- `input = test_take.jsonl` +- `home = arm_home.jsonl` + +So you can run: + +```bash +cd /home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder +python3 g1_camera_pose_replay_v2.py +``` + +## Notes + +- `q` or `Esc` stops recording. +- `Ctrl+C` cleanly cancels camera selection or the start prompt, and stops recording if it is already running. +- Any joint that is not captured in a frame falls back to the `arm_home.jsonl` pose for that joint. +- The mapping is heuristic because a single 2D camera cannot recover full 3D shoulder and wrist orientation. +- On this machine, the default `python3` does not currently have `ultralytics`; run the recorder in the same Python environment you already use for `/home/zedx/Robotics_workspace/AI/YOLO/YOLO_Test_3.py`. diff --git a/Camera_Recorder/RawPose/test2(1).pose.jsonl b/Camera_Recorder/RawPose/test2(1).pose.jsonl new file mode 100644 index 0000000..829361d --- /dev/null +++ b/Camera_Recorder/RawPose/test2(1).pose.jsonl @@ -0,0 +1,665 @@ +{"meta": {"format": "g1_camera_pose_raw_v1", "created_unix": 1773399405.583534, "source": "0", "model": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/Models/yolo11n-pose.pt", "kpt_conf": 0.35, "dataset_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/DataG1/test2(1).jsonl", "config_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/camera_recorder_config.json", "joint_config_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/joint.json", "pose_mapping_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/pose_mapping.json"}} +{"t": 13.604933, "tracked": true, "track_id": 1, "bbox": [71.9974365234375, 0.263671875, 595.4737548828125, 479.7512512207031], "det_conf": 0.9048348665237427, "mean_kpt_conf": 0.8011464327573776, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9407082136625535, "right_lift": -0.9984531442604945, "left_bend": 0.4223161730034328, "right_bend": 0.03845663670173785}, "keypoints": {"0": [209.34556579589844, 105.94989013671875, 0.9987816214561462], "1": [238.80435180664062, 60.84797668457031, 0.9993963241577148], "2": [178.169189453125, 78.40481567382812, 0.9844629764556885], "3": [312.8030090332031, 53.824371337890625, 0.9929514527320862], "4": [163.70364379882812, 88.41340637207031, 0.2022184431552887], "5": [452.1146240234375, 198.06201171875, 0.9909668564796448], "6": [153.72503662109375, 233.06192016601562, 0.9838892221450806], "7": [532.46435546875, 420.8860168457031, 0.6545669436454773], "8": [142.31259155273438, 438.0055847167969, 0.5362507104873657], "9": [466.4815979003906, 465.07806396484375, 0.47903499007225037], "10": [140.06710815429688, 450.599609375, 0.3911632299423218], "11": [445.7187805175781, 480.0, 0.02219521626830101], "12": [246.1415557861328, 480.0, 0.021711867302656174], "13": [500.13153076171875, 372.04510498046875, 0.0004755299014504999], "14": [219.37213134765625, 394.8873596191406, 0.000620228354819119], "15": [416.94207763671875, 408.88739013671875, 0.00013023632345721126], "16": [204.36077880859375, 451.5367431640625, 0.00018410659686196595]}} +{"t": 13.718573, "tracked": true, "track_id": 1, "bbox": [83.57274627685547, 0.4183048605918884, 593.6865844726562, 477.6854553222656], "det_conf": 0.9295564889907837, "mean_kpt_conf": 0.8668804131448269, "diagnostics": {"tracked": true, "visible_keypoints": 8, "torso_ready": true, "left_ready": true, "right_ready": false, "left_lift": -0.9396729213266036, "right_lift": null, "left_bend": 0.3779237118807526, "right_bend": null}, "keypoints": {"0": [220.397705078125, 100.522705078125, 0.9976117610931396], "1": [252.31741333007812, 59.51190185546875, 0.998981773853302], "2": [190.1839599609375, 74.0606689453125, 0.9728788733482361], "3": [327.3288269042969, 59.294708251953125, 0.9903792142868042], "4": [173.34869384765625, 87.62387084960938, 0.19160906970500946], "5": [456.1285095214844, 203.08766174316406, 0.9888342022895813], "6": [157.79519653320312, 233.27313232421875, 0.9645888805389404], "7": [531.3306884765625, 409.66693115234375, 0.6164953708648682], "8": [143.3426513671875, 426.9769287109375, 0.2896340489387512], "9": [478.6783447265625, 457.037109375, 0.4052732288837433], "10": [160.17889404296875, 419.2421875, 0.2198849618434906], "11": [439.3955078125, 470.06121826171875, 0.030970050022006035], "12": [241.21878051757812, 480.0, 0.02205149456858635], "13": [490.92034912109375, 385.0393981933594, 0.0007705523166805506], "14": [235.11489868164062, 409.92132568359375, 0.0007139276713132858], "15": [424.1572570800781, 413.23150634765625, 0.00021150124666746706], "16": [243.52023315429688, 454.134765625, 0.00022773454838898033]}} +{"t": 13.753928, "tracked": true, "track_id": 1, "bbox": [58.63742446899414, 0.5507873892784119, 610.2422485351562, 478.451416015625], "det_conf": 0.9033997654914856, "mean_kpt_conf": 0.7814500982111151, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9029972020779414, "right_lift": -0.9804533339598946, "left_bend": 0.49211291258234946, "right_bend": 0.5381161740508503}, "keypoints": {"0": [256.9350891113281, 92.62725830078125, 0.999077320098877], "1": [287.2392272949219, 53.5838623046875, 0.9993189573287964], "2": [224.20468139648438, 65.63217163085938, 0.9928998947143555], "3": [347.17218017578125, 58.28010559082031, 0.9884331822395325], "4": [196.39837646484375, 83.38308715820312, 0.45281264185905457], "5": [458.48089599609375, 199.99505615234375, 0.9910330176353455], "6": [174.74749755859375, 224.05503845214844, 0.9879896640777588], "7": [553.16455078125, 398.9937438964844, 0.6487877368927002], "8": [138.30459594726562, 405.65728759765625, 0.5942717790603638], "9": [491.8171081542969, 430.0697021484375, 0.4800943434238434], "10": [113.31756591796875, 397.4381103515625, 0.4612325429916382], "11": [427.2611083984375, 480.0, 0.0387377068400383], "12": [242.0203857421875, 480.0, 0.04216950759291649], "13": [463.08551025390625, 388.1342468261719, 0.0007474870653823018], "14": [220.7864532470703, 399.55535888671875, 0.0009703388204798102], "15": [393.5284118652344, 426.9022216796875, 0.00018040588474832475], "16": [216.80752563476562, 450.05364990234375, 0.00023965600121300668]}} +{"t": 13.791661, "tracked": true, "track_id": 1, "bbox": [192.1775665283203, 105.27180480957031, 621.4469604492188, 480.0], "det_conf": 0.9357643723487854, "mean_kpt_conf": 0.9333022074265913, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5915210489459497, "right_lift": -0.9304845082914309, "left_bend": 0.49228459063944063, "right_bend": 0.885364766567499}, "keypoints": {"0": [348.61566162109375, 146.6578369140625, 0.9989721775054932], "1": [371.19647216796875, 118.6956787109375, 0.9975455403327942], "2": [323.21533203125, 119.62312316894531, 0.9956701993942261], "3": [401.5484313964844, 124.55345153808594, 0.9026978611946106], "4": [288.322265625, 126.34103393554688, 0.8439915180206299], "5": [452.6725769042969, 233.49227905273438, 0.9927563071250916], "6": [251.35159301757812, 252.81378173828125, 0.9927107095718384], "7": [587.9013671875, 332.7006530761719, 0.895922064781189], "8": [194.74888610839844, 396.58514404296875, 0.8602866530418396], "9": [625.1890869140625, 284.37548828125, 0.9168519973754883], "10": [210.5835418701172, 379.07525634765625, 0.8689192533493042], "11": [435.70281982421875, 473.4945068359375, 0.10611135512590408], "12": [303.5313720703125, 480.0, 0.10085773468017578], "13": [475.48480224609375, 387.4920654296875, 0.0015777436783537269], "14": [288.9314270019531, 393.5068054199219, 0.0015532588586211205], "15": [474.7771911621094, 408.8298034667969, 0.00020125231822021306], "16": [287.3251953125, 407.15802001953125, 0.00019796626293100417]}} +{"t": 13.844667, "tracked": true, "track_id": 1, "bbox": [164.39315795898438, 43.350563049316406, 634.0233154296875, 480.0], "det_conf": 0.937834620475769, "mean_kpt_conf": 0.9258458451791243, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.49753816147934343, "right_lift": -0.9375359904880873, "left_bend": 0.5903721849991982, "right_bend": 0.8665014166623125}, "keypoints": {"0": [347.73846435546875, 147.68075561523438, 0.9989100694656372], "1": [369.68719482421875, 118.41555786132812, 0.9969090819358826], "2": [322.24407958984375, 120.1888427734375, 0.9959795475006104], "3": [398.7236328125, 121.5673828125, 0.8826020956039429], "4": [286.948974609375, 124.70657348632812, 0.8636384010314941], "5": [454.6243896484375, 237.3522186279297, 0.9934114813804626], "6": [245.62339782714844, 254.16964721679688, 0.9928756952285767], "7": [609.374267578125, 326.11199951171875, 0.8669127225875854], "8": [191.38864135742188, 400.3287353515625, 0.8173719048500061], "9": [640.0, 199.23233032226562, 0.9255699515342712], "10": [211.26126098632812, 380.0269470214844, 0.8501233458518982], "11": [434.9736328125, 480.0, 0.09575539082288742], "12": [304.2108154296875, 480.0, 0.09028209745883942], "13": [460.6168212890625, 404.4547424316406, 0.0017436177004128695], "14": [310.62628173828125, 401.9080505371094, 0.0017173871165141463], "15": [455.22564697265625, 407.7802429199219, 0.0002163675962947309], "16": [335.71722412109375, 405.284912109375, 0.0002111347421305254]}} +{"t": 13.903225, "tracked": true, "track_id": 1, "bbox": [155.00584411621094, 19.02727508544922, 639.6364135742188, 477.316650390625], "det_conf": 0.9384297728538513, "mean_kpt_conf": 0.9281882643699646, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5326740484533194, "right_lift": -0.9408229030612504, "left_bend": 0.619595549278392, "right_bend": 0.8781884872023236}, "keypoints": {"0": [346.83013916015625, 148.08139038085938, 0.9990057349205017], "1": [368.1739501953125, 118.07466125488281, 0.9970269799232483], "2": [320.882568359375, 121.18310546875, 0.9963825941085815], "3": [397.5672607421875, 119.58203125, 0.8831466436386108], "4": [285.92254638671875, 125.57638549804688, 0.8684637546539307], "5": [457.5937805175781, 235.97463989257812, 0.9937044978141785], "6": [245.08718872070312, 251.240966796875, 0.9939380884170532], "7": [609.6943969726562, 331.7067565917969, 0.8591588735580444], "8": [191.62765502929688, 399.6510009765625, 0.8393012881278992], "9": [636.1260986328125, 191.27163696289062, 0.9203445315361023], "10": [210.42845153808594, 378.5760192871094, 0.85959792137146], "11": [438.3528137207031, 480.0, 0.09484413266181946], "12": [305.42669677734375, 480.0, 0.09700778871774673], "13": [460.1741027832031, 404.698486328125, 0.0016491853166371584], "14": [307.027587890625, 400.07861328125, 0.001765102264471352], "15": [452.9046630859375, 404.03076171875, 0.00020432702149264514], "16": [333.7625427246094, 404.3792724609375, 0.0002113657828886062]}} +{"t": 13.962286, "tracked": true, "track_id": 1, "bbox": [152.01805114746094, 11.659425735473633, 640.0, 471.6221008300781], "det_conf": 0.9403791427612305, "mean_kpt_conf": 0.9190144701437517, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.46914235341573546, "right_lift": -0.9442920217696636, "left_bend": 0.6407339578607925, "right_bend": 0.9291179470625393}, "keypoints": {"0": [345.57080078125, 147.97113037109375, 0.9989062547683716], "1": [367.99371337890625, 118.05825805664062, 0.996707022190094], "2": [319.54107666015625, 120.68234252929688, 0.9961234927177429], "3": [398.1249694824219, 120.60009765625, 0.8878327012062073], "4": [284.43011474609375, 125.58953857421875, 0.856349766254425], "5": [462.2229309082031, 236.39859008789062, 0.9936449527740479], "6": [244.67507934570312, 252.7906036376953, 0.9929221868515015], "7": [626.3743286132812, 323.6009521484375, 0.8363826870918274], "8": [193.43572998046875, 399.80859375, 0.7926218509674072], "9": [633.7971801757812, 163.01480102539062, 0.9192730188369751], "10": [208.36471557617188, 375.892578125, 0.8383952379226685], "11": [440.9605712890625, 480.0, 0.07457798719406128], "12": [309.2794189453125, 480.0, 0.07324075698852539], "13": [452.6663818359375, 402.589111328125, 0.001672657672315836], "14": [328.2987976074219, 392.698486328125, 0.0017611912917345762], "15": [432.6175537109375, 404.9732666015625, 0.0002209452650276944], "16": [365.95654296875, 397.3351745605469, 0.00022800351143814623]}} +{"t": 14.022398, "tracked": true, "track_id": 1, "bbox": [151.27012634277344, 10.663291931152344, 640.0, 470.5210876464844], "det_conf": 0.9394795298576355, "mean_kpt_conf": 0.9169192205775868, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4754345243860853, "right_lift": -0.9383339782601142, "left_bend": 0.6500595140748928, "right_bend": 0.911370204711068}, "keypoints": {"0": [344.9773254394531, 148.3715362548828, 0.9989890456199646], "1": [366.9018249511719, 116.89694213867188, 0.9967597126960754], "2": [317.9151611328125, 120.94869995117188, 0.9965415596961975], "3": [397.06085205078125, 117.06196594238281, 0.8781195878982544], "4": [282.0830078125, 125.32952880859375, 0.8692872524261475], "5": [462.27313232421875, 235.02581787109375, 0.9931519031524658], "6": [242.86024475097656, 251.8935546875, 0.9930511713027954], "7": [627.0518188476562, 324.0754089355469, 0.8136964440345764], "8": [188.1386260986328, 400.41156005859375, 0.7874523401260376], "9": [631.126953125, 154.53700256347656, 0.9161942601203918], "10": [204.39300537109375, 378.186279296875, 0.8428681492805481], "11": [439.18719482421875, 480.0, 0.06032439321279526], "12": [308.1831970214844, 480.0, 0.06272932887077332], "13": [442.32830810546875, 401.13421630859375, 0.0015619604382663965], "14": [327.84320068359375, 390.9715881347656, 0.0017165092285722494], "15": [421.9152526855469, 404.6180725097656, 0.0002106300526065752], "16": [372.96826171875, 401.01593017578125, 0.00022265569714363664]}} +{"t": 14.086413, "tracked": true, "track_id": 1, "bbox": [152.49090576171875, 11.872570037841797, 640.0, 470.20367431640625], "det_conf": 0.9365342855453491, "mean_kpt_conf": 0.9204809665679932, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.442557584842854, "right_lift": -0.9377180147585543, "left_bend": 0.6578032555986342, "right_bend": 0.8997028945346945}, "keypoints": {"0": [344.2071533203125, 147.8239288330078, 0.9989885687828064], "1": [365.799072265625, 117.10932922363281, 0.9966211318969727], "2": [317.43194580078125, 121.30767822265625, 0.9967859983444214], "3": [395.155029296875, 117.66232299804688, 0.8655670881271362], "4": [281.43994140625, 126.41830444335938, 0.8752602338790894], "5": [457.36981201171875, 229.80364990234375, 0.9930452704429626], "6": [243.4432373046875, 250.29739379882812, 0.9928891658782959], "7": [628.4100341796875, 314.2151184082031, 0.8352929949760437], "8": [188.8150634765625, 397.7533874511719, 0.8022652864456177], "9": [622.3984985351562, 153.14337158203125, 0.9201673269271851], "10": [205.5946044921875, 376.5689697265625, 0.8484075665473938], "11": [438.8095703125, 480.0, 0.07061517983675003], "12": [309.156005859375, 480.0, 0.07083112001419067], "13": [455.3302307128906, 401.4091796875, 0.001605013501830399], "14": [331.3166198730469, 391.2006530761719, 0.0017127685714513063], "15": [449.8017578125, 402.63623046875, 0.00022202650143299252], "16": [373.33087158203125, 394.30560302734375, 0.00022922089556232095]}} +{"t": 14.14322, "tracked": true, "track_id": 1, "bbox": [153.12815856933594, 13.370609283447266, 640.0, 470.968994140625], "det_conf": 0.9391558766365051, "mean_kpt_conf": 0.915019078688188, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4597926532310193, "right_lift": -0.9344798992480693, "left_bend": 0.66555531030629, "right_bend": 0.9193721459765756}, "keypoints": {"0": [342.87213134765625, 148.5425567626953, 0.9989103078842163], "1": [365.0362243652344, 117.47215270996094, 0.9967066645622253], "2": [315.8870849609375, 121.68011474609375, 0.9963674545288086], "3": [395.4413757324219, 118.42691040039062, 0.8858581185340881], "4": [280.58905029296875, 127.07334899902344, 0.8581664562225342], "5": [459.1544189453125, 232.95420837402344, 0.9923920035362244], "6": [244.3437042236328, 250.83682250976562, 0.9921697974205017], "7": [629.7902221679688, 321.3041687011719, 0.8110595941543579], "8": [187.96759033203125, 398.8143310546875, 0.7744739055633545], "9": [622.627197265625, 152.24920654296875, 0.918188750743866], "10": [203.8448028564453, 376.44708251953125, 0.8409168124198914], "11": [440.165283203125, 480.0, 0.053554438054561615], "12": [312.0979309082031, 480.0, 0.05445585399866104], "13": [449.45416259765625, 393.96337890625, 0.001593007822521031], "14": [338.2395935058594, 381.75115966796875, 0.0017278058221563697], "15": [439.80633544921875, 399.16009521484375, 0.00023526141012553126], "16": [386.0191650390625, 390.99884033203125, 0.00024955449043773115]}} +{"t": 14.204161, "tracked": true, "track_id": 1, "bbox": [154.7338409423828, 14.623494148254395, 640.0, 472.0725402832031], "det_conf": 0.9413512945175171, "mean_kpt_conf": 0.9156671654094349, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.474811993114851, "right_lift": -0.9342682179367607, "left_bend": 0.6800463995463535, "right_bend": 0.9318346057047728}, "keypoints": {"0": [341.7195739746094, 148.42832946777344, 0.9989457726478577], "1": [363.8448181152344, 117.34356689453125, 0.9970845580101013], "2": [314.78863525390625, 122.15707397460938, 0.996193528175354], "3": [394.6979064941406, 118.86689758300781, 0.9071928262710571], "4": [280.29205322265625, 129.0800323486328, 0.8447585701942444], "5": [461.82025146484375, 233.77381896972656, 0.992798924446106], "6": [241.54832458496094, 253.43118286132812, 0.9925270080566406], "7": [630.7860717773438, 324.93182373046875, 0.814348578453064], "8": [183.85678100585938, 404.5914611816406, 0.7702538967132568], "9": [618.5339965820312, 152.36981201171875, 0.9207862019538879], "10": [202.25372314453125, 376.4346008300781, 0.8374489545822144], "11": [438.04742431640625, 480.0, 0.05607186630368233], "12": [307.2430114746094, 480.0, 0.057095035910606384], "13": [437.963134765625, 401.1627197265625, 0.001608886057510972], "14": [327.4572448730469, 389.852783203125, 0.0017145829042419791], "15": [423.1805114746094, 412.8969421386719, 0.00021559372544288635], "16": [376.3818054199219, 406.2107238769531, 0.00022734685626346618]}} +{"t": 14.263261, "tracked": true, "track_id": 1, "bbox": [155.21051025390625, 15.957170486450195, 640.0, 473.2569274902344], "det_conf": 0.9393250942230225, "mean_kpt_conf": 0.9192825880917636, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4219930713072848, "right_lift": -0.9304304638226881, "left_bend": 0.6560382364975413, "right_bend": 0.9588205855379863}, "keypoints": {"0": [340.138427734375, 147.46044921875, 0.9988823533058167], "1": [362.85565185546875, 117.38656616210938, 0.9970719814300537], "2": [314.1153869628906, 121.33285522460938, 0.9959627985954285], "3": [394.0240173339844, 119.69107055664062, 0.90866619348526], "4": [280.62957763671875, 127.93173217773438, 0.8322038054466248], "5": [452.85028076171875, 229.1339111328125, 0.9923402070999146], "6": [245.4687042236328, 252.75909423828125, 0.9918528199195862], "7": [626.2825927734375, 309.86114501953125, 0.8422096967697144], "8": [186.96238708496094, 401.3013610839844, 0.7807507514953613], "9": [617.5401611328125, 149.80255126953125, 0.9278753995895386], "10": [204.03582763671875, 370.385986328125, 0.8442924618721008], "11": [434.0218200683594, 480.0, 0.07026645541191101], "12": [308.7084045410156, 480.0, 0.06723281741142273], "13": [452.0929870605469, 403.8563232421875, 0.0017480171518400311], "14": [335.2715759277344, 394.38006591796875, 0.001775133772753179], "15": [456.9270935058594, 410.52728271484375, 0.0002365375985391438], "16": [378.7156066894531, 398.9812316894531, 0.0002416204079054296]}} +{"t": 14.324425, "tracked": true, "track_id": 1, "bbox": [156.09808349609375, 17.268739700317383, 640.0, 474.34088134765625], "det_conf": 0.9380337595939636, "mean_kpt_conf": 0.9153934771364386, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.44998703061915174, "right_lift": -0.9268824111812476, "left_bend": 0.6662700516687586, "right_bend": 0.9267476080051341}, "keypoints": {"0": [340.2481689453125, 147.73651123046875, 0.9988547563552856], "1": [362.8172912597656, 117.22305297851562, 0.9970096349716187], "2": [314.1234130859375, 121.49754333496094, 0.9958686828613281], "3": [394.2209167480469, 119.0841064453125, 0.9112429022789001], "4": [281.029052734375, 127.90509033203125, 0.831664502620697], "5": [455.1062316894531, 232.09280395507812, 0.9921194314956665], "6": [244.30319213867188, 251.72251892089844, 0.99156254529953], "7": [626.3756103515625, 318.39288330078125, 0.8241059184074402], "8": [184.3151397705078, 399.8551940917969, 0.7637057304382324], "9": [617.215576171875, 153.81967163085938, 0.925273597240448], "10": [202.7425994873047, 373.7630615234375, 0.8379205465316772], "11": [430.471923828125, 480.0, 0.05624016746878624], "12": [304.66925048828125, 480.0, 0.05466402322053909], "13": [444.2523193359375, 396.3126220703125, 0.0016917426837608218], "14": [334.96453857421875, 385.1631774902344, 0.0017558259423822165], "15": [442.8659362792969, 405.0910949707031, 0.0002423067344352603], "16": [383.2569580078125, 396.24713134765625, 0.0002520134439691901]}} +{"t": 14.382552, "tracked": true, "track_id": 1, "bbox": [156.69569396972656, 18.99666404724121, 640.0, 475.2835693359375], "det_conf": 0.9379733204841614, "mean_kpt_conf": 0.9200606617060575, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4528689759628118, "right_lift": -0.9292042178600824, "left_bend": 0.6638846193727894, "right_bend": 0.9438637790687454}, "keypoints": {"0": [340.7423400878906, 147.3839569091797, 0.9989446997642517], "1": [363.07958984375, 117.09738159179688, 0.9971268773078918], "2": [314.8092041015625, 121.10696411132812, 0.9961428046226501], "3": [394.53704833984375, 118.91403198242188, 0.9122846722602844], "4": [281.61370849609375, 127.10858154296875, 0.8368328213691711], "5": [458.784912109375, 233.15997314453125, 0.9929694533348083], "6": [244.27403259277344, 251.47959899902344, 0.9930306077003479], "7": [627.4573974609375, 318.8357238769531, 0.8288035988807678], "8": [186.35914611816406, 397.0954284667969, 0.797222912311554], "9": [620.0397338867188, 153.662109375, 0.9210477471351624], "10": [201.30320739746094, 372.9869384765625, 0.8462610840797424], "11": [435.5113220214844, 480.0, 0.06959235668182373], "12": [306.291748046875, 480.0, 0.0716014951467514], "13": [446.7719421386719, 404.2025146484375, 0.0016606806311756372], "14": [328.5552978515625, 392.32110595703125, 0.0018181257182732224], "15": [439.1673278808594, 406.35455322265625, 0.0002221715694759041], "16": [371.7119445800781, 397.5624694824219, 0.0002391748275840655]}} +{"t": 14.445544, "tracked": true, "track_id": 1, "bbox": [157.34950256347656, 19.138566970825195, 640.0, 476.2974853515625], "det_conf": 0.9359602332115173, "mean_kpt_conf": 0.9213215654546564, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4725729894459647, "right_lift": -0.9255544824066367, "left_bend": 0.6655333059850101, "right_bend": 0.8772834314682074}, "keypoints": {"0": [341.94488525390625, 147.54214477539062, 0.998957633972168], "1": [364.71734619140625, 117.60310363769531, 0.997296154499054], "2": [315.8943176269531, 121.11149597167969, 0.9960218071937561], "3": [396.87396240234375, 120.66925048828125, 0.9257209897041321], "4": [283.1053161621094, 127.67951965332031, 0.8272519111633301], "5": [463.58526611328125, 237.3917999267578, 0.9929013848304749], "6": [245.57164001464844, 248.99041748046875, 0.993427038192749], "7": [627.89208984375, 325.4976806640625, 0.8164093494415283], "8": [187.7372589111328, 390.3713684082031, 0.8140203356742859], "9": [623.1503295898438, 155.1595458984375, 0.9182471036911011], "10": [205.27719116210938, 372.420654296875, 0.8542835116386414], "11": [434.1898193359375, 480.0, 0.06685168296098709], "12": [303.4618225097656, 480.0, 0.07464087009429932], "13": [433.8355712890625, 406.5270690917969, 0.0015134001150727272], "14": [317.900390625, 390.61773681640625, 0.0017959567485377192], "15": [415.571533203125, 411.8468017578125, 0.0001991536992136389], "16": [359.0804443359375, 403.59478759765625, 0.00022770956275053322]}} +{"t": 14.50276, "tracked": true, "track_id": 1, "bbox": [159.9248809814453, 18.718433380126953, 640.0, 477.0750427246094], "det_conf": 0.9389748573303223, "mean_kpt_conf": 0.9268863146955316, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4800520434621335, "right_lift": -0.925800678431487, "left_bend": 0.6483294325283238, "right_bend": 0.8794274514542515}, "keypoints": {"0": [343.3187561035156, 146.57546997070312, 0.9989903569221497], "1": [366.54547119140625, 117.6690673828125, 0.9974014759063721], "2": [317.61712646484375, 120.26620483398438, 0.9960747957229614], "3": [398.33245849609375, 122.0770263671875, 0.9290973544120789], "4": [284.7354736328125, 127.08258056640625, 0.8325064182281494], "5": [461.29461669921875, 236.58834838867188, 0.9932748079299927], "6": [246.9197540283203, 247.1053466796875, 0.9942163228988647], "7": [623.8448486328125, 325.54071044921875, 0.8340871334075928], "8": [188.706298828125, 389.67767333984375, 0.8411585688591003], "9": [629.5345458984375, 161.74876403808594, 0.9185948371887207], "10": [204.98812866210938, 372.76641845703125, 0.8603473901748657], "11": [431.9480285644531, 480.0, 0.08377739787101746], "12": [302.2765197753906, 480.0, 0.0958704873919487], "13": [429.1474304199219, 413.7936706542969, 0.0015145628713071346], "14": [306.9827880859375, 397.94622802734375, 0.0018112158868461847], "15": [416.3819580078125, 417.18963623046875, 0.00018565930076874793], "16": [344.7279357910156, 407.52923583984375, 0.00021256646141409874]}} +{"t": 14.563187, "tracked": true, "track_id": 1, "bbox": [162.45936584472656, 20.506465911865234, 640.0, 477.268798828125], "det_conf": 0.9413586854934692, "mean_kpt_conf": 0.9253839633681558, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.48208497823671864, "right_lift": -0.9376166673056844, "left_bend": 0.6590117929752911, "right_bend": 0.9104832777090736}, "keypoints": {"0": [346.7119140625, 147.26922607421875, 0.9990247488021851], "1": [369.34808349609375, 118.27651977539062, 0.99693763256073], "2": [321.00042724609375, 120.51496887207031, 0.9964663982391357], "3": [399.331298828125, 121.8948974609375, 0.8979662656784058], "4": [286.39276123046875, 126.08418273925781, 0.8600332736968994], "5": [464.27850341796875, 235.47247314453125, 0.9938435554504395], "6": [246.8805389404297, 248.11019897460938, 0.9941685199737549], "7": [627.2401123046875, 325.1416320800781, 0.8329724073410034], "8": [192.33355712890625, 395.21533203125, 0.8311015367507935], "9": [627.821044921875, 158.3347625732422, 0.9179559350013733], "10": [209.55259704589844, 371.90936279296875, 0.8587533235549927], "11": [438.33782958984375, 480.0, 0.0823628306388855], "12": [307.8827819824219, 480.0, 0.09096872806549072], "13": [432.3391418457031, 412.27581787109375, 0.0015974362613633275], "14": [316.83905029296875, 397.5889892578125, 0.0018502497114241123], "15": [408.066162109375, 419.03570556640625, 0.00018750202434603125], "16": [353.7993469238281, 407.8795471191406, 0.0002063917781924829]}} +{"t": 14.623119, "tracked": true, "track_id": 1, "bbox": [164.42227172851562, 21.797754287719727, 640.0, 477.2922058105469], "det_conf": 0.9403405785560608, "mean_kpt_conf": 0.9240508242086931, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4682870388509354, "right_lift": -0.9342871340022098, "left_bend": 0.6480498201677148, "right_bend": 0.9641759062742483}, "keypoints": {"0": [349.3116760253906, 147.46188354492188, 0.9989618062973022], "1": [371.45819091796875, 118.52999877929688, 0.9968804121017456], "2": [324.1193542480469, 120.80928039550781, 0.9962595701217651], "3": [400.8299255371094, 121.71820068359375, 0.8996649980545044], "4": [290.3944091796875, 126.0980224609375, 0.8524159789085388], "5": [461.31292724609375, 235.83004760742188, 0.9929550290107727], "6": [253.39492797851562, 249.78262329101562, 0.9937834739685059], "7": [625.3046264648438, 322.74407958984375, 0.8276025056838989], "8": [197.9032745361328, 395.2020263671875, 0.8263059258460999], "9": [628.9808349609375, 157.4658966064453, 0.9186539649963379], "10": [213.16470336914062, 365.6778869628906, 0.8610754013061523], "11": [437.2654724121094, 480.0, 0.08473891764879227], "12": [311.9703674316406, 480.0, 0.09361832588911057], "13": [434.7723388671875, 416.3447265625, 0.0017283197958022356], "14": [320.0467834472656, 402.3544616699219, 0.0019817103166133165], "15": [423.12933349609375, 418.89154052734375, 0.00020816059259232134], "16": [356.5205078125, 406.8449401855469, 0.0002279315667692572]}} +{"t": 14.693277, "tracked": true, "track_id": 1, "bbox": [166.25099182128906, 23.261962890625, 640.0, 477.3086242675781], "det_conf": 0.9415654540061951, "mean_kpt_conf": 0.9251962087371133, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4495909072784216, "right_lift": -0.9233916312118874, "left_bend": 0.6264830547377778, "right_bend": 0.9361802121185847}, "keypoints": {"0": [351.69476318359375, 147.18316650390625, 0.9989182949066162], "1": [374.15594482421875, 118.47869873046875, 0.997000515460968], "2": [325.95355224609375, 120.55838012695312, 0.9961114525794983], "3": [404.2054443359375, 122.65742492675781, 0.9041231870651245], "4": [291.44989013671875, 126.75010681152344, 0.8504132628440857], "5": [462.435546875, 236.09503173828125, 0.9925537705421448], "6": [254.91671752929688, 251.44203186035156, 0.9936379790306091], "7": [623.7393188476562, 317.2839050292969, 0.8297090530395508], "8": [195.31521606445312, 394.8162841796875, 0.8297030329704285], "9": [635.0380249023438, 153.67332458496094, 0.9184543490409851], "10": [217.39114379882812, 362.16180419921875, 0.8665333986282349], "11": [443.2907409667969, 480.0, 0.09014402329921722], "12": [316.7693786621094, 480.0, 0.09908965229988098], "13": [448.6249694824219, 414.8739318847656, 0.0017678794683888555], "14": [324.5959777832031, 403.4133605957031, 0.0020356846507638693], "15": [440.8491516113281, 413.7052917480469, 0.00021446177561301738], "16": [354.53082275390625, 403.5243225097656, 0.00023684336338192225]}} +{"t": 14.748441, "tracked": true, "track_id": 1, "bbox": [168.05421447753906, 24.379512786865234, 640.0, 477.40777587890625], "det_conf": 0.9427547454833984, "mean_kpt_conf": 0.9261141148480502, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4712389975200369, "right_lift": -0.9283160483400856, "left_bend": 0.6460935747464449, "right_bend": 0.9257904708388301}, "keypoints": {"0": [353.51226806640625, 147.35040283203125, 0.9989991784095764], "1": [375.70574951171875, 118.58123779296875, 0.9970883727073669], "2": [328.05084228515625, 120.39321899414062, 0.9963703155517578], "3": [405.2730712890625, 122.60493469238281, 0.9015381932258606], "4": [293.33978271484375, 125.93853759765625, 0.8518558740615845], "5": [466.52471923828125, 237.20899963378906, 0.9927675724029541], "6": [256.1752624511719, 250.5610809326172, 0.9940430521965027], "7": [627.5967407226562, 323.2667541503906, 0.8270392417907715], "8": [197.93002319335938, 395.9918212890625, 0.8378388285636902], "9": [632.9066162109375, 155.96942138671875, 0.9183333516120911], "10": [219.7180938720703, 365.0868225097656, 0.8713812828063965], "11": [450.3704833984375, 480.0, 0.08480080962181091], "12": [321.76409912109375, 480.0, 0.09577931463718414], "13": [453.0862121582031, 413.482177734375, 0.0016904739895835519], "14": [325.0122375488281, 399.84088134765625, 0.0019860193133354187], "15": [445.03424072265625, 415.271728515625, 0.00020542406127788126], "16": [356.2378234863281, 403.10186767578125, 0.00023063224216457456]}} +{"t": 14.80733, "tracked": true, "track_id": 1, "bbox": [169.7149200439453, 25.796354293823242, 640.0, 477.5898742675781], "det_conf": 0.9403917789459229, "mean_kpt_conf": 0.9263694936578925, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4891810911555409, "right_lift": -0.931485650658414, "left_bend": 0.6506070857782721, "right_bend": 0.9315329672568197}, "keypoints": {"0": [355.68115234375, 146.94866943359375, 0.9990297555923462], "1": [377.2332458496094, 117.89157104492188, 0.9969283938407898], "2": [330.17352294921875, 120.13418579101562, 0.996601939201355], "3": [406.2035827636719, 121.04638671875, 0.8850148320198059], "4": [294.93609619140625, 125.28382873535156, 0.8669272065162659], "5": [468.05303955078125, 237.0544891357422, 0.9930405616760254], "6": [255.88079833984375, 251.1390380859375, 0.9943526983261108], "7": [626.834228515625, 326.1101379394531, 0.8244219422340393], "8": [198.04354858398438, 399.23638916015625, 0.8406190276145935], "9": [633.2798461914062, 156.59024047851562, 0.9167051911354065], "10": [225.12078857421875, 358.5688781738281, 0.8764228820800781], "11": [450.67529296875, 480.0, 0.09068845957517624], "12": [320.5753173828125, 480.0, 0.10320819169282913], "13": [453.964599609375, 417.6964111328125, 0.0017187896883115172], "14": [322.89678955078125, 406.00958251953125, 0.0020392790902405977], "15": [443.2107849121094, 416.1277770996094, 0.00019345650798641145], "16": [350.9025573730469, 406.4819641113281, 0.00021607485541608185]}} +{"t": 14.867299, "tracked": true, "track_id": 1, "bbox": [171.03616333007812, 26.50850486755371, 640.0, 477.9161376953125], "det_conf": 0.9329550862312317, "mean_kpt_conf": 0.9233557310971346, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5255225469632662, "right_lift": -0.9361230182795038, "left_bend": 0.64852770352057, "right_bend": 0.900607217603644}, "keypoints": {"0": [358.24517822265625, 147.60739135742188, 0.9989981055259705], "1": [379.45953369140625, 118.23391723632812, 0.9966816306114197], "2": [332.2684326171875, 120.42417907714844, 0.9964576363563538], "3": [408.082275390625, 120.84385681152344, 0.8775774836540222], "4": [296.25177001953125, 125.04855346679688, 0.8767834305763245], "5": [473.3974914550781, 241.3406219482422, 0.9935663342475891], "6": [254.4294891357422, 251.75677490234375, 0.9946891069412231], "7": [621.4150390625, 332.7703552246094, 0.8094459176063538], "8": [199.6939239501953, 397.4582214355469, 0.8373130559921265], "9": [636.29150390625, 161.64602661132812, 0.90749591588974], "10": [226.67926025390625, 363.5091247558594, 0.8679044246673584], "11": [450.4565734863281, 480.0, 0.09283196181058884], "12": [317.9495544433594, 480.0, 0.10908005386590958], "13": [438.7288818359375, 420.59765625, 0.0017245477065443993], "14": [315.8145446777344, 409.5450744628906, 0.0020964324939996004], "15": [405.8206481933594, 417.5244140625, 0.00018731939780991524], "16": [345.29425048828125, 414.0202941894531, 0.00021078455029055476]}} +{"t": 14.927452, "tracked": true, "track_id": 1, "bbox": [172.87889099121094, 27.21250343322754, 640.0, 478.3454284667969], "det_conf": 0.939204752445221, "mean_kpt_conf": 0.9282328215512362, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4979232695390118, "right_lift": -0.928839109144134, "left_bend": 0.647548193213649, "right_bend": 0.8744728595971131}, "keypoints": {"0": [360.0099792480469, 146.84994506835938, 0.9990409016609192], "1": [381.63299560546875, 118.68589782714844, 0.9967838525772095], "2": [334.1528625488281, 119.78152465820312, 0.9966830611228943], "3": [409.71832275390625, 123.0718994140625, 0.8762698173522949], "4": [297.4296875, 125.0057373046875, 0.8742769956588745], "5": [470.17071533203125, 239.54385375976562, 0.9929490089416504], "6": [260.12139892578125, 246.61654663085938, 0.9943676590919495], "7": [623.9603271484375, 327.8436279296875, 0.8247615098953247], "8": [204.08319091796875, 387.1099853515625, 0.8566105365753174], "9": [633.476806640625, 162.9993438720703, 0.9159929156303406], "10": [231.0958251953125, 359.4680480957031, 0.8828247785568237], "11": [450.19866943359375, 480.0, 0.10374046862125397], "12": [321.47998046875, 480.0, 0.12316542863845825], "13": [440.2411804199219, 424.47064208984375, 0.0017246505012735724], "14": [312.75604248046875, 408.3797607421875, 0.0020983335562050343], "15": [424.2544860839844, 423.3351745605469, 0.00018330047896597534], "16": [338.8311767578125, 412.04803466796875, 0.00020652168313972652]}} +{"t": 14.993319, "tracked": true, "track_id": 1, "bbox": [174.31886291503906, 26.89393424987793, 640.0, 478.8150634765625], "det_conf": 0.9249054789543152, "mean_kpt_conf": 0.9276716438206759, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5030166514291977, "right_lift": -0.9344479209230983, "left_bend": 0.6250791879947392, "right_bend": 0.8983284613840707}, "keypoints": {"0": [361.44287109375, 147.3136444091797, 0.9989905953407288], "1": [383.48834228515625, 119.08041381835938, 0.9965633749961853], "2": [335.770263671875, 119.66526794433594, 0.996504545211792], "3": [411.8515625, 123.38565063476562, 0.8685174584388733], "4": [299.3601379394531, 124.08316040039062, 0.8821923136711121], "5": [471.1049499511719, 240.15089416503906, 0.9932466745376587], "6": [258.95379638671875, 249.3842010498047, 0.9946413040161133], "7": [617.9033203125, 325.5888366699219, 0.8235546946525574], "8": [204.39434814453125, 392.55462646484375, 0.8567376732826233], "9": [640.0, 161.84678649902344, 0.9116773009300232], "10": [232.6892852783203, 357.81427001953125, 0.8817621469497681], "11": [448.53546142578125, 480.0, 0.10297843813896179], "12": [318.9312744140625, 480.0, 0.12213592231273651], "13": [441.0257568359375, 419.1700439453125, 0.0017406049882993102], "14": [314.8153991699219, 407.9515075683594, 0.002155657159164548], "15": [411.8780212402344, 419.72149658203125, 0.00019041349878534675], "16": [337.085693359375, 412.67919921875, 0.00021541556634474546]}} +{"t": 15.047179, "tracked": true, "track_id": 1, "bbox": [176.0142822265625, 26.82505226135254, 640.0, 479.25927734375], "det_conf": 0.929408609867096, "mean_kpt_conf": 0.9252804951234297, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.49999188908233333, "right_lift": -0.9287956181735265, "left_bend": 0.6284510003374849, "right_bend": 0.9160104675575957}, "keypoints": {"0": [363.21929931640625, 147.94052124023438, 0.9989734888076782], "1": [385.14276123046875, 118.78445434570312, 0.9967048764228821], "2": [337.72479248046875, 119.687744140625, 0.9963885545730591], "3": [414.2470397949219, 121.38446044921875, 0.8735577464103699], "4": [301.7210693359375, 122.58340454101562, 0.8732631802558899], "5": [473.33123779296875, 240.82080078125, 0.9926713705062866], "6": [262.0303039550781, 252.12417602539062, 0.9944553971290588], "7": [620.106689453125, 325.559814453125, 0.8135417699813843], "8": [204.42483520507812, 396.4976501464844, 0.8470985889434814], "9": [640.0, 160.6462860107422, 0.9111705422401428], "10": [232.0124969482422, 359.714599609375, 0.8802599310874939], "11": [454.9374694824219, 480.0, 0.095888152718544], "12": [324.8636779785156, 480.0, 0.11284451186656952], "13": [453.2633361816406, 420.8070068359375, 0.0017160173738375306], "14": [321.234130859375, 411.13983154296875, 0.002097104908898473], "15": [430.4665832519531, 415.9423522949219, 0.00019335767137818038], "16": [342.024658203125, 409.72430419921875, 0.00021838193060830235]}} +{"t": 15.106963, "tracked": true, "track_id": 1, "bbox": [177.29856872558594, 27.257278442382812, 640.0, 479.3631896972656], "det_conf": 0.9336007237434387, "mean_kpt_conf": 0.925829903645949, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5093182553064086, "right_lift": -0.9320548879368051, "left_bend": 0.6269835016169084, "right_bend": 0.9450239317019082}, "keypoints": {"0": [364.8516540527344, 147.8106689453125, 0.9989370703697205], "1": [386.7617492675781, 119.23703002929688, 0.9965903759002686], "2": [339.650390625, 119.92599487304688, 0.9962151646614075], "3": [415.4053955078125, 122.64532470703125, 0.8758809566497803], "4": [304.0762939453125, 123.54074096679688, 0.8680295348167419], "5": [473.54205322265625, 239.6434326171875, 0.9923073649406433], "6": [266.14666748046875, 250.42681884765625, 0.9942757487297058], "7": [617.9595947265625, 325.11444091796875, 0.8166756629943848], "8": [210.45437622070312, 393.6943359375, 0.852047324180603], "9": [640.0, 163.4053955078125, 0.9119988083839417], "10": [230.27224731445312, 360.89141845703125, 0.881170928478241], "11": [455.29681396484375, 480.0, 0.09784085303544998], "12": [327.7593688964844, 480.0, 0.11614195257425308], "13": [450.6599426269531, 416.7341003417969, 0.0018569272942841053], "14": [321.0666198730469, 406.3498229980469, 0.002269674791023135], "15": [429.4925231933594, 418.560791015625, 0.00020407662668731064], "16": [343.15667724609375, 411.6036682128906, 0.0002312979631824419]}} +{"t": 15.167377, "tracked": true, "track_id": 1, "bbox": [177.82666015625, 27.758649826049805, 640.0, 479.32177734375], "det_conf": 0.9320366978645325, "mean_kpt_conf": 0.9279408509081061, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5169892439419592, "right_lift": -0.9305756255685897, "left_bend": 0.6313585026410196, "right_bend": 0.9649450233464808}, "keypoints": {"0": [365.7001647949219, 147.43466186523438, 0.9989515542984009], "1": [388.00701904296875, 119.27001953125, 0.9967791438102722], "2": [340.5198974609375, 119.65191650390625, 0.9962418079376221], "3": [417.223388671875, 123.72378540039062, 0.8878392577171326], "4": [305.1253662109375, 124.03515625, 0.8647446632385254], "5": [475.47265625, 240.90097045898438, 0.9924471378326416], "6": [266.262939453125, 251.849365234375, 0.9947822690010071], "7": [617.9474487304688, 326.9507751464844, 0.8188750743865967], "8": [209.8646697998047, 395.2060852050781, 0.8636763691902161], "9": [639.0277099609375, 166.52699279785156, 0.909024715423584], "10": [228.300537109375, 360.2174072265625, 0.8839873671531677], "11": [456.5245361328125, 480.0, 0.10529109090566635], "12": [326.77166748046875, 480.0, 0.12775462865829468], "13": [455.80462646484375, 420.52423095703125, 0.0017536358209326863], "14": [318.015380859375, 410.2022705078125, 0.0022079001646488905], "15": [433.75164794921875, 419.41278076171875, 0.00019536037871148437], "16": [335.2137756347656, 411.4206848144531, 0.0002271633129566908]}} +{"t": 15.227511, "tracked": true, "track_id": 1, "bbox": [177.9178466796875, 28.07050132751465, 640.0, 479.3665771484375], "det_conf": 0.9301591515541077, "mean_kpt_conf": 0.9241708246144381, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5235799484994423, "right_lift": -0.9290762383747095, "left_bend": 0.6325086804093796, "right_bend": 0.9474492416977817}, "keypoints": {"0": [366.72698974609375, 147.01397705078125, 0.998916745185852], "1": [388.6986083984375, 118.35110473632812, 0.9965846538543701], "2": [341.1252746582031, 118.96023559570312, 0.9961382746696472], "3": [417.68182373046875, 122.4178466796875, 0.8822461366653442], "4": [305.3193664550781, 123.27793884277344, 0.8711216449737549], "5": [476.730712890625, 244.2130584716797, 0.9926471710205078], "6": [265.7766418457031, 252.66123962402344, 0.994507372379303], "7": [617.320068359375, 330.61187744140625, 0.8034887909889221], "8": [209.32614135742188, 394.45220947265625, 0.8454613089561462], "9": [640.0, 163.33218383789062, 0.9073286056518555], "10": [230.91683959960938, 358.7565612792969, 0.8774383664131165], "11": [452.487548828125, 480.0, 0.09684155136346817], "12": [323.5694274902344, 480.0, 0.11618781834840775], "13": [445.33203125, 419.72711181640625, 0.0018499045399948955], "14": [319.1958923339844, 409.2364196777344, 0.002311243675649166], "15": [414.0094299316406, 416.1871032714844, 0.00020507963199634105], "16": [339.11920166015625, 411.95806884765625, 0.00023572662030346692]}} +{"t": 15.288, "tracked": true, "track_id": 1, "bbox": [176.9530792236328, 28.523252487182617, 639.7085571289062, 479.5572509765625], "det_conf": 0.9382388591766357, "mean_kpt_conf": 0.9262888323176991, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5329112161005096, "right_lift": -0.9286074824043195, "left_bend": 0.6319926876243657, "right_bend": 0.9631318362723456}, "keypoints": {"0": [366.4319152832031, 147.25392150878906, 0.9989515542984009], "1": [388.2362060546875, 118.55621337890625, 0.9966552257537842], "2": [340.74407958984375, 119.35588073730469, 0.9963705539703369], "3": [416.77130126953125, 122.64152526855469, 0.8726224899291992], "4": [304.5527648925781, 123.93194580078125, 0.8771291375160217], "5": [473.46221923828125, 241.89642333984375, 0.9922623634338379], "6": [265.2681579589844, 253.26583862304688, 0.9943261742591858], "7": [615.3359375, 331.24725341796875, 0.8142971396446228], "8": [207.10589599609375, 398.8201904296875, 0.8479881882667542], "9": [639.270751953125, 170.01170349121094, 0.9121657013893127], "10": [231.2276153564453, 354.24053955078125, 0.8864086270332336], "11": [455.67218017578125, 480.0, 0.0907500833272934], "12": [326.74798583984375, 480.0, 0.10609689354896545], "13": [462.5443115234375, 412.3521728515625, 0.0018330728635191917], "14": [325.69989013671875, 404.466796875, 0.002242085989564657], "15": [443.47332763671875, 413.1395568847656, 0.0002115839597536251], "16": [343.65789794921875, 408.1609802246094, 0.00024007704632822424]}} +{"t": 15.347503, "tracked": true, "track_id": 1, "bbox": [175.6524658203125, 28.580711364746094, 639.3778686523438, 479.92010498046875], "det_conf": 0.9376750588417053, "mean_kpt_conf": 0.9270031343806874, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5701878078508048, "right_lift": -0.9245506041946389, "left_bend": 0.650214097737776, "right_bend": 0.9260968283113632}, "keypoints": {"0": [366.08172607421875, 147.4677734375, 0.9990414977073669], "1": [387.9427490234375, 118.55267333984375, 0.9968633651733398], "2": [340.40936279296875, 119.17881774902344, 0.9964882135391235], "3": [416.7705078125, 122.23895263671875, 0.8787785172462463], "4": [304.43316650390625, 122.84776306152344, 0.8724117279052734], "5": [475.89508056640625, 244.22335815429688, 0.9925922155380249], "6": [266.361572265625, 249.2710418701172, 0.9948247671127319], "7": [616.0013427734375, 341.466796875, 0.8045228123664856], "8": [205.88787841796875, 395.9962158203125, 0.8616792559623718], "9": [638.6737060546875, 174.32296752929688, 0.9092198014259338], "10": [232.2991943359375, 359.2435302734375, 0.8906123042106628], "11": [454.4248962402344, 480.0, 0.0875360295176506], "12": [325.5733642578125, 480.0, 0.11004376411437988], "13": [444.51519775390625, 418.74957275390625, 0.0016407397342845798], "14": [313.1623840332031, 405.8174133300781, 0.002118359785526991], "15": [419.02557373046875, 418.59375, 0.000178382673766464], "16": [329.09429931640625, 412.8071594238281, 0.00021007929171901196]}} +{"t": 15.407473, "tracked": true, "track_id": 1, "bbox": [174.73939514160156, 28.698040008544922, 639.3829345703125, 480.0], "det_conf": 0.9362767338752747, "mean_kpt_conf": 0.930784133347598, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5460668956216321, "right_lift": -0.9207437245067788, "left_bend": 0.6315655834236373, "right_bend": 0.8997755649026482}, "keypoints": {"0": [364.76409912109375, 146.8745574951172, 0.9990811347961426], "1": [386.67578125, 118.67584228515625, 0.9968584775924683], "2": [339.610107421875, 118.55453491210938, 0.9967717528343201], "3": [415.0022888183594, 123.19581604003906, 0.8709028959274292], "4": [303.05853271484375, 122.16729736328125, 0.887068510055542], "5": [472.91015625, 245.19271850585938, 0.9932234287261963], "6": [259.4173583984375, 250.22747802734375, 0.9950828552246094], "7": [613.9237670898438, 337.10992431640625, 0.8246150612831116], "8": [198.797119140625, 393.2830810546875, 0.8677114844322205], "9": [640.0, 179.865234375, 0.914185106754303], "10": [229.9304962158203, 357.4749755859375, 0.8931247591972351], "11": [446.29425048828125, 480.0, 0.10197988152503967], "12": [313.501220703125, 480.0, 0.12326360493898392], "13": [446.4615783691406, 420.78668212890625, 0.001647594035603106], "14": [303.7601013183594, 409.58319091796875, 0.002058310667052865], "15": [423.1702880859375, 419.21942138671875, 0.00017347217362839729], "16": [318.87103271484375, 413.0100402832031, 0.00019719610281754285]}} +{"t": 15.467956, "tracked": true, "track_id": 1, "bbox": [172.77218627929688, 28.851694107055664, 638.481689453125, 480.0], "det_conf": 0.9432073831558228, "mean_kpt_conf": 0.9264953244816173, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5301327961555151, "right_lift": -0.9220977342906457, "left_bend": 0.6256120513618165, "right_bend": 0.9053459512472539}, "keypoints": {"0": [363.6273193359375, 147.2268524169922, 0.9990091323852539], "1": [385.646240234375, 118.49383544921875, 0.996494710445404], "2": [338.1968688964844, 118.41571044921875, 0.9967517852783203], "3": [413.51470947265625, 122.07498168945312, 0.8492183089256287], "4": [301.0074462890625, 121.06352233886719, 0.895046055316925], "5": [468.0205383300781, 242.32162475585938, 0.9923703670501709], "6": [259.9134216308594, 250.84078979492188, 0.9943459630012512], "7": [612.395263671875, 332.5875244140625, 0.8149255514144897], "8": [199.37799072265625, 395.09344482421875, 0.8491913676261902], "9": [637.1266479492188, 183.26622009277344, 0.9141069054603577], "10": [229.20530700683594, 359.29742431640625, 0.8899884223937988], "11": [448.9325256347656, 480.0, 0.08861899375915527], "12": [320.3896789550781, 480.0, 0.10341208428144455], "13": [456.78118896484375, 414.00250244140625, 0.0017344953957945108], "14": [323.9017333984375, 405.142822265625, 0.0021058334968984127], "15": [438.5497741699219, 414.7640380859375, 0.0001964780385605991], "16": [343.2251892089844, 407.3618469238281, 0.00021920866856817156]}} +{"t": 15.527919, "tracked": true, "track_id": 1, "bbox": [171.3935546875, 28.270938873291016, 639.0859375, 480.0], "det_conf": 0.9448081851005554, "mean_kpt_conf": 0.9265277331525629, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5160265481274422, "right_lift": -0.9259043280457199, "left_bend": 0.6176276629526494, "right_bend": 0.9440631563046961}, "keypoints": {"0": [362.12359619140625, 146.86085510253906, 0.9989995360374451], "1": [384.5732727050781, 118.61009216308594, 0.9964798092842102], "2": [336.95654296875, 118.14627075195312, 0.9966927766799927], "3": [411.9649658203125, 123.20352172851562, 0.8505123257637024], "4": [299.8490295410156, 121.5057373046875, 0.8941883444786072], "5": [462.83502197265625, 241.46945190429688, 0.9927583932876587], "6": [258.5146179199219, 252.79966735839844, 0.9940075874328613], "7": [612.90185546875, 331.8744812011719, 0.833844006061554], "8": [197.78875732421875, 401.641845703125, 0.8358688354492188], "9": [638.2236938476562, 186.68389892578125, 0.9201025366783142], "10": [220.4519805908203, 365.7415771484375, 0.8783509135246277], "11": [441.4085388183594, 480.0, 0.08845502883195877], "12": [315.47137451171875, 480.0, 0.09502994269132614], "13": [452.45208740234375, 414.29534912109375, 0.0017536793602630496], "14": [322.06231689453125, 405.99163818359375, 0.0019385075429454446], "15": [441.743408203125, 416.8314208984375, 0.00020032933389302343], "16": [343.87432861328125, 406.3333740234375, 0.00020902015967294574]}} +{"t": 15.588186, "tracked": true, "track_id": 1, "bbox": [169.41537475585938, 28.382274627685547, 637.24755859375, 480.0], "det_conf": 0.9463619589805603, "mean_kpt_conf": 0.9273081584410234, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5501544830344579, "right_lift": -0.9295611428060264, "left_bend": 0.6255787753213313, "right_bend": 0.9596242653582063}, "keypoints": {"0": [361.9466552734375, 146.5667724609375, 0.9989903569221497], "1": [384.0669250488281, 118.07780456542969, 0.996466875076294], "2": [336.5881042480469, 118.13629150390625, 0.9966884255409241], "3": [411.836181640625, 122.16677856445312, 0.8531699776649475], "4": [299.4300231933594, 121.5142822265625, 0.8953365683555603], "5": [465.6266174316406, 243.2339630126953, 0.9930830001831055], "6": [256.1283874511719, 252.3462677001953, 0.9944249391555786], "7": [608.558349609375, 337.39996337890625, 0.8327639102935791], "8": [198.74053955078125, 397.04425048828125, 0.8431342244148254], "9": [635.8225708007812, 194.11497497558594, 0.9155818819999695], "10": [219.271728515625, 359.8537902832031, 0.8807495832443237], "11": [444.38446044921875, 480.0, 0.10182546079158783], "12": [314.4543151855469, 480.0, 0.11115071922540665], "13": [461.9670104980469, 416.6953125, 0.0018411558121442795], "14": [323.379638671875, 409.6355285644531, 0.0020998818799853325], "15": [447.09991455078125, 413.8150634765625, 0.00020441196102183312], "16": [346.9966735839844, 407.97698974609375, 0.00021847004245501012]}} +{"t": 15.647926, "tracked": true, "track_id": 1, "bbox": [167.88937377929688, 27.95712661743164, 636.06689453125, 480.0], "det_conf": 0.9472275972366333, "mean_kpt_conf": 0.9259644963524558, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5423525764432414, "right_lift": -0.9304786019077164, "left_bend": 0.6173736861860016, "right_bend": 0.9979936540512299}, "keypoints": {"0": [361.52215576171875, 146.80282592773438, 0.9989885687828064], "1": [383.71136474609375, 117.94927978515625, 0.996320366859436], "2": [336.2674255371094, 117.88510131835938, 0.9967340230941772], "3": [411.2037048339844, 121.39459228515625, 0.8377151489257812], "4": [298.7841796875, 120.45915222167969, 0.8973500728607178], "5": [462.01910400390625, 242.27587890625, 0.9928678274154663], "6": [256.6960754394531, 252.93316650390625, 0.9941046833992004], "7": [606.7881469726562, 335.7303466796875, 0.8377641439437866], "8": [199.10101318359375, 399.21820068359375, 0.8378702402114868], "9": [636.0406494140625, 194.68202209472656, 0.9175668358802795], "10": [213.33274841308594, 362.39190673828125, 0.8783275485038757], "11": [442.2158508300781, 480.0, 0.09633587300777435], "12": [313.94415283203125, 480.0, 0.10170263051986694], "13": [466.3992004394531, 411.6742858886719, 0.001866410835646093], "14": [323.20465087890625, 405.446044921875, 0.0020448442082852125], "15": [459.89105224609375, 407.53948974609375, 0.00021310767624527216], "16": [346.2363586425781, 400.95269775390625, 0.0002205464115832001]}} +{"t": 15.708984, "tracked": true, "track_id": 1, "bbox": [166.4515838623047, 27.59327507019043, 636.4048461914062, 480.0], "det_conf": 0.9392623901367188, "mean_kpt_conf": 0.9235676852139559, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5265462265615846, "right_lift": -0.9401358716081589, "left_bend": 0.5969167022939633, "right_bend": 0.8035350324693313}, "keypoints": {"0": [360.3399353027344, 145.74221801757812, 0.9988082647323608], "1": [383.0980529785156, 117.81967163085938, 0.9961639642715454], "2": [335.40484619140625, 117.35845947265625, 0.9959354400634766], "3": [411.3004150390625, 122.40003967285156, 0.8698183298110962], "4": [299.2583312988281, 120.9554443359375, 0.8776941895484924], "5": [460.5495910644531, 242.8656005859375, 0.9933620691299438], "6": [259.33026123046875, 252.89682006835938, 0.9936633110046387], "7": [601.6384887695312, 330.2503356933594, 0.8505069613456726], "8": [208.75778198242188, 392.4068603515625, 0.8252364993095398], "9": [635.5296630859375, 197.55499267578125, 0.9138829112052917], "10": [204.7472686767578, 377.8844909667969, 0.8441725969314575], "11": [432.5765075683594, 480.0, 0.1267736852169037], "12": [307.73895263671875, 480.0, 0.12579168379306793], "13": [450.9642333984375, 421.5548095703125, 0.0021207742393016815], "14": [316.7559509277344, 414.0963439941406, 0.0021669124253094196], "15": [436.35723876953125, 409.6168212890625, 0.00023604510352015495], "16": [341.8338623046875, 403.572998046875, 0.00023434218019247055]}} +{"t": 15.767919, "tracked": true, "track_id": 1, "bbox": [166.6918487548828, 27.62240982055664, 635.43310546875, 479.94915771484375], "det_conf": 0.9361142516136169, "mean_kpt_conf": 0.9224238341504877, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5074084100986023, "right_lift": -0.9496306551456366, "left_bend": 0.5925519826753917, "right_bend": 0.45331323952098646}, "keypoints": {"0": [359.9091796875, 145.27667236328125, 0.9987758994102478], "1": [382.8627014160156, 117.37992858886719, 0.9960349202156067], "2": [335.22467041015625, 116.34785461425781, 0.9957633018493652], "3": [411.066162109375, 121.76383972167969, 0.8627601265907288], "4": [298.5018615722656, 118.91346740722656, 0.8659126162528992], "5": [460.511474609375, 241.65890502929688, 0.9932358860969543], "6": [260.22479248046875, 250.64688110351562, 0.9927940368652344], "7": [603.7665405273438, 326.01348876953125, 0.8630566596984863], "8": [215.46522521972656, 386.28485107421875, 0.8193523287773132], "9": [634.89892578125, 199.57003784179688, 0.9200310111045837], "10": [206.7606658935547, 384.7720947265625, 0.8389453887939453], "11": [437.9441833496094, 480.0, 0.1313515454530716], "12": [312.4600830078125, 480.0, 0.12336133420467377], "13": [463.75579833984375, 418.471435546875, 0.002179326256737113], "14": [323.7447814941406, 409.5355529785156, 0.0021103655453771353], "15": [456.82830810546875, 407.35296630859375, 0.0002452438639011234], "16": [354.292724609375, 398.81573486328125, 0.00023580262495670468]}} +{"t": 15.827722, "tracked": true, "track_id": 1, "bbox": [166.4818115234375, 27.05938720703125, 636.191162109375, 479.42559814453125], "det_conf": 0.9277299046516418, "mean_kpt_conf": 0.925421953201294, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5126960268328259, "right_lift": -0.9459045327952367, "left_bend": 0.5895233336284275, "right_bend": 0.04266247324325227}, "keypoints": {"0": [359.31451416015625, 144.93507385253906, 0.9987508058547974], "1": [382.20660400390625, 117.67146301269531, 0.9962307810783386], "2": [334.65069580078125, 116.7664794921875, 0.9954540729522705], "3": [410.9327392578125, 122.52410888671875, 0.8861731290817261], "4": [298.99285888671875, 119.95782470703125, 0.8480759859085083], "5": [461.4064636230469, 242.1918487548828, 0.9933971166610718], "6": [262.70404052734375, 244.28878784179688, 0.9929469227790833], "7": [602.2304077148438, 326.2850036621094, 0.8704578876495361], "8": [219.05908203125, 371.53363037109375, 0.8416691422462463], "9": [635.028564453125, 201.52651977539062, 0.919431209564209], "10": [209.0184783935547, 391.574462890625, 0.837054431438446], "11": [432.514892578125, 480.0, 0.1597832590341568], "12": [308.0622863769531, 480.0, 0.1565861701965332], "13": [448.6630554199219, 428.2613525390625, 0.002121945144608617], "14": [310.10009765625, 413.91583251953125, 0.00213094730861485], "15": [440.02081298828125, 413.8840637207031, 0.00022738327970728278], "16": [340.5648193359375, 406.1438903808594, 0.00022536281903740019]}} +{"t": 15.888282, "tracked": true, "track_id": 1, "bbox": [162.68023681640625, 27.081745147705078, 635.7052001953125, 479.26885986328125], "det_conf": 0.9369422793388367, "mean_kpt_conf": 0.9237139875238592, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5071860284877523, "right_lift": -0.9348419928106007, "left_bend": 0.5918236242172769, "right_bend": 0.3037361259185525}, "keypoints": {"0": [358.8756103515625, 145.44985961914062, 0.9988189339637756], "1": [382.1446838378906, 117.62789916992188, 0.9962651133537292], "2": [333.9201354980469, 116.64407348632812, 0.9956877827644348], "3": [410.7062683105469, 122.86785888671875, 0.8721225261688232], "4": [297.572998046875, 120.39886474609375, 0.8532755970954895], "5": [458.871826171875, 242.4100341796875, 0.9933454990386963], "6": [260.3173828125, 250.6275634765625, 0.992591142654419], "7": [603.920166015625, 327.7701721191406, 0.8741595149040222], "8": [208.63400268554688, 386.703857421875, 0.8245325088500977], "9": [635.6583251953125, 199.98446655273438, 0.9241052865982056], "10": [187.46151733398438, 392.1913146972656, 0.8359499573707581], "11": [430.6544494628906, 480.0, 0.12606923282146454], "12": [306.10003662109375, 480.0, 0.11554320901632309], "13": [456.193603515625, 418.3919677734375, 0.001961351605132222], "14": [312.92547607421875, 407.5710754394531, 0.0018328407313674688], "15": [450.7736511230469, 409.4468078613281, 0.000220873233047314], "16": [337.216552734375, 400.23834228515625, 0.00020765130466315895]}} +{"t": 15.94669, "tracked": true, "track_id": 1, "bbox": [161.58811950683594, 26.86852264404297, 637.5176391601562, 479.7713928222656], "det_conf": 0.9396728277206421, "mean_kpt_conf": 0.9219846400347623, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5281395606233316, "right_lift": -0.9476859180910744, "left_bend": 0.5927634226935763, "right_bend": 0.3440199473311442}, "keypoints": {"0": [358.5830993652344, 144.12979125976562, 0.9987647533416748], "1": [382.0119323730469, 116.99015808105469, 0.9960007071495056], "2": [333.7991943359375, 115.83674621582031, 0.9956527948379517], "3": [409.7601623535156, 123.10722351074219, 0.8629595637321472], "4": [297.462646484375, 120.1669921875, 0.8628790974617004], "5": [454.2122802734375, 239.64126586914062, 0.9935626983642578], "6": [260.41973876953125, 249.1917266845703, 0.9923499226570129], "7": [599.5926513671875, 330.0616149902344, 0.8805408477783203], "8": [211.94635009765625, 393.1044006347656, 0.8135815262794495], "9": [634.40380859375, 201.7797393798828, 0.9239591956138611], "10": [192.79183959960938, 396.29656982421875, 0.8215799331665039], "11": [429.1199645996094, 480.0, 0.1299629807472229], "12": [308.22509765625, 480.0, 0.11367762088775635], "13": [457.23358154296875, 417.15240478515625, 0.002165453974157572], "14": [320.9492492675781, 407.31390380859375, 0.0019273124635219574], "15": [458.1246337890625, 409.4767761230469, 0.0002448373707011342], "16": [350.9408874511719, 399.6250915527344, 0.00022215778881218284]}} +{"t": 16.007692, "tracked": true, "track_id": 1, "bbox": [159.6131134033203, 26.862590789794922, 637.0573120117188, 479.77850341796875], "det_conf": 0.9298450946807861, "mean_kpt_conf": 0.9194162108681418, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5080617543175997, "right_lift": -0.9418069034422247, "left_bend": 0.5878099399002248, "right_bend": 0.12483787672064749}, "keypoints": {"0": [357.9132995605469, 144.5513153076172, 0.9987478256225586], "1": [380.7547302246094, 117.54351806640625, 0.9959359169006348], "2": [333.46795654296875, 116.30451965332031, 0.9954308271408081], "3": [408.3060607910156, 123.33645629882812, 0.8528013825416565], "4": [297.25152587890625, 120.06936645507812, 0.848054051399231], "5": [453.20159912109375, 239.81549072265625, 0.9940868616104126], "6": [260.9989929199219, 247.62188720703125, 0.9907394647598267], "7": [600.738525390625, 326.8421630859375, 0.9011577367782593], "8": [211.22354125976562, 387.0782470703125, 0.7986344695091248], "9": [632.3865966796875, 206.45535278320312, 0.9319184422492981], "10": [192.983154296875, 407.25567626953125, 0.8060713410377502], "11": [429.12579345703125, 480.0, 0.14455918967723846], "12": [307.60882568359375, 480.0, 0.11166847497224808], "13": [468.8533020019531, 417.4526062011719, 0.002188256708905101], "14": [323.9341735839844, 406.10595703125, 0.0017317653400823474], "15": [474.20208740234375, 407.05322265625, 0.00024736658087931573], "16": [348.3476867675781, 396.45037841796875, 0.0002068099711323157]}} +{"t": 16.067915, "tracked": true, "track_id": 1, "bbox": [158.97923278808594, 27.12677001953125, 638.043212890625, 480.0], "det_conf": 0.9329751133918762, "mean_kpt_conf": 0.9228920990770514, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4810596695593666, "right_lift": -0.9355860523286724, "left_bend": 0.5623598331511973, "right_bend": 0.11455529816750387}, "keypoints": {"0": [357.3282470703125, 144.5701904296875, 0.9987655878067017], "1": [380.3141784667969, 117.688720703125, 0.9960340857505798], "2": [332.8050842285156, 116.31596374511719, 0.9956001043319702], "3": [408.10302734375, 123.47000122070312, 0.8559704422950745], "4": [296.24993896484375, 120.06411743164062, 0.8583347201347351], "5": [452.02105712890625, 239.4064483642578, 0.9937677383422852], "6": [259.0850830078125, 250.2432861328125, 0.9917317032814026], "7": [598.24755859375, 319.6444396972656, 0.8980273604393005], "8": [207.92364501953125, 385.8028869628906, 0.8152714967727661], "9": [633.2384033203125, 208.8690185546875, 0.9292389750480652], "10": [189.51148986816406, 406.7632751464844, 0.8190708756446838], "11": [431.440673828125, 480.0, 0.16300517320632935], "12": [309.4404602050781, 480.0, 0.1334608644247055], "13": [473.6513366699219, 425.8352355957031, 0.002141245175153017], "14": [329.9183349609375, 417.63824462890625, 0.001787089160643518], "15": [480.2547607421875, 412.63330078125, 0.00022754700330551714], "16": [357.33233642578125, 403.00726318359375, 0.00019784661708399653]}} +{"t": 16.127708, "tracked": true, "track_id": 1, "bbox": [160.8865203857422, 26.431787490844727, 637.3656616210938, 479.59698486328125], "det_conf": 0.9426533579826355, "mean_kpt_conf": 0.9183039340105924, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.48955862504621234, "right_lift": -0.9463601035127976, "left_bend": 0.5567877256159599, "right_bend": 0.1165395246793101}, "keypoints": {"0": [356.90234375, 144.66314697265625, 0.9986257553100586], "1": [380.1107177734375, 117.25445556640625, 0.9960162043571472], "2": [332.0922546386719, 116.3760986328125, 0.9949613809585571], "3": [408.6094970703125, 122.66305541992188, 0.8730306029319763], "4": [296.14306640625, 120.45071411132812, 0.8434652090072632], "5": [453.4777526855469, 239.61712646484375, 0.9931976795196533], "6": [259.9085693359375, 250.8407745361328, 0.9909325838088989], "7": [597.4680786132812, 320.458984375, 0.8873277306556702], "8": [213.50308227539062, 386.75665283203125, 0.7969328761100769], "9": [636.3743896484375, 208.03944396972656, 0.9254835844039917], "10": [194.78121948242188, 409.20465087890625, 0.8013696670532227], "11": [428.2391662597656, 480.0, 0.1463143676519394], "12": [306.60687255859375, 480.0, 0.12081878632307053], "13": [460.8597717285156, 421.9185485839844, 0.002221327042207122], "14": [320.709716796875, 414.4591369628906, 0.0018613154534250498], "15": [461.4405517578125, 412.6488037109375, 0.00024975204723887146], "16": [350.4742126464844, 406.0665283203125, 0.00021839546388946474]}} +{"t": 16.187084, "tracked": true, "track_id": 1, "bbox": [163.9270477294922, 26.74281883239746, 635.8623657226562, 478.27789306640625], "det_conf": 0.9356887936592102, "mean_kpt_conf": 0.9218564358624545, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5157677218395574, "right_lift": -0.9442494407992424, "left_bend": 0.5688416143412124, "right_bend": 0.20656676995230785}, "keypoints": {"0": [356.8931884765625, 143.940673828125, 0.9986029267311096], "1": [379.8638000488281, 117.270263671875, 0.9962455630302429], "2": [332.3795166015625, 116.34869384765625, 0.9945729374885559], "3": [408.6494445800781, 123.43753051757812, 0.8980404138565063], "4": [297.2893371582031, 121.1353759765625, 0.8368290662765503], "5": [458.2479248046875, 241.81346130371094, 0.9938370585441589], "6": [259.25677490234375, 250.24021911621094, 0.9922616481781006], "7": [595.193603515625, 324.25750732421875, 0.8825806975364685], "8": [214.41876220703125, 378.83770751953125, 0.8094260096549988], "9": [632.2891235351562, 214.39393615722656, 0.9214235544204712], "10": [200.4073944091797, 388.1453857421875, 0.8166009187698364], "11": [433.339599609375, 480.0, 0.18061654269695282], "12": [309.7862548828125, 480.0, 0.15886715054512024], "13": [456.81439208984375, 430.40716552734375, 0.002458547241985798], "14": [325.79779052734375, 423.20697021484375, 0.0022081334609538317], "15": [443.6999816894531, 418.7884521484375, 0.00025183759862557054], "16": [358.8829345703125, 413.49847412109375, 0.00023334422439802438]}} +{"t": 16.247302, "tracked": true, "track_id": 1, "bbox": [165.81561279296875, 27.079273223876953, 634.59619140625, 478.4565124511719], "det_conf": 0.9322466254234314, "mean_kpt_conf": 0.926416429606351, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.51746983441809, "right_lift": -0.9516312747227269, "left_bend": 0.5824303975754653, "right_bend": 0.2351511208337837}, "keypoints": {"0": [355.9464416503906, 143.63812255859375, 0.9987461566925049], "1": [378.82080078125, 116.85308837890625, 0.9965968728065491], "2": [331.79150390625, 116.10633850097656, 0.995084822177887], "3": [407.90093994140625, 123.09555053710938, 0.8995946049690247], "4": [297.25250244140625, 120.99014282226562, 0.8336145877838135], "5": [457.93804931640625, 239.83494567871094, 0.9940822720527649], "6": [260.14617919921875, 250.16192626953125, 0.9927020072937012], "7": [599.5472412109375, 325.47052001953125, 0.8947463631629944], "8": [216.76068115234375, 384.5411376953125, 0.8295807242393494], "9": [632.2266845703125, 213.8978271484375, 0.9265608787536621], "10": [205.4420166015625, 391.01806640625, 0.8292714357376099], "11": [437.3285827636719, 480.0, 0.17633339762687683], "12": [311.5224609375, 480.0, 0.15387938916683197], "13": [475.48052978515625, 424.4501953125, 0.0022751549258828163], "14": [324.1759033203125, 417.2603759765625, 0.0020592128857970238], "15": [475.0513916015625, 414.058837890625, 0.00023851735750213265], "16": [350.4521179199219, 406.6055603027344, 0.0002231068501714617]}} +{"t": 16.311077, "tracked": true, "track_id": 1, "bbox": [168.6497344970703, 26.80699348449707, 635.1893920898438, 478.65411376953125], "det_conf": 0.9289197325706482, "mean_kpt_conf": 0.9232410084117543, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5149822012674117, "right_lift": -0.9627404532350378, "left_bend": 0.5898512300581684, "right_bend": 0.0855861472821162}, "keypoints": {"0": [355.2518005371094, 143.48301696777344, 0.9986152648925781], "1": [378.41412353515625, 117.13005065917969, 0.9963112473487854], "2": [331.260009765625, 116.1534423828125, 0.9946368336677551], "3": [407.8693542480469, 124.19978332519531, 0.9089339971542358], "4": [297.8169860839844, 121.624755859375, 0.8259961605072021], "5": [460.08636474609375, 241.77694702148438, 0.9933810234069824], "6": [261.4273986816406, 248.09390258789062, 0.9930275082588196], "7": [599.0530395507812, 325.26422119140625, 0.8685033321380615], "8": [223.90945434570312, 381.6605529785156, 0.8357856273651123], "9": [633.4256591796875, 195.380615234375, 0.9162467122077942], "10": [216.2939453125, 394.2873229980469, 0.8242133855819702], "11": [432.2278747558594, 480.0, 0.15207281708717346], "12": [308.2037353515625, 480.0, 0.1497526317834854], "13": [447.89569091796875, 422.3735046386719, 0.0022598933428525925], "14": [311.80816650390625, 410.66790771484375, 0.002311623189598322], "15": [435.2033386230469, 414.2686462402344, 0.00025602863752283156], "16": [344.32086181640625, 407.10455322265625, 0.00026056799106299877]}} +{"t": 16.37095, "tracked": true, "track_id": 1, "bbox": [167.28843688964844, 27.506423950195312, 636.7498168945312, 478.8589782714844], "det_conf": 0.936063289642334, "mean_kpt_conf": 0.9257370125163685, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5390354168094631, "right_lift": -0.9526203300276689, "left_bend": 0.614690791174504, "right_bend": 0.5018997394004833}, "keypoints": {"0": [354.66278076171875, 143.5482177734375, 0.9987861514091492], "1": [378.1961364746094, 116.70208740234375, 0.996644139289856], "2": [330.54364013671875, 116.22894287109375, 0.9954299926757812], "3": [407.56756591796875, 123.4454345703125, 0.9108193516731262], "4": [296.51580810546875, 121.99342346191406, 0.8547204732894897], "5": [461.7962951660156, 240.64842224121094, 0.9944151639938354], "6": [252.14645385742188, 252.84388732910156, 0.994257926940918], "7": [601.8766479492188, 330.2955627441406, 0.8717862367630005], "8": [206.43222045898438, 396.01861572265625, 0.8302887082099915], "9": [628.965576171875, 202.5634307861328, 0.9153757691383362], "10": [197.52574157714844, 393.1161804199219, 0.8205832242965698], "11": [429.3367614746094, 480.0, 0.14880919456481934], "12": [299.55810546875, 480.0, 0.14296948909759521], "13": [446.4931335449219, 425.654296875, 0.0020935474894940853], "14": [308.4925842285156, 418.4804992675781, 0.002064730040729046], "15": [425.52301025390625, 422.130859375, 0.0002231383405160159], "16": [340.14373779296875, 415.3619079589844, 0.00022005489154253155]}} +{"t": 16.431527, "tracked": true, "track_id": 1, "bbox": [166.88116455078125, 28.6533203125, 637.3430786132812, 478.12640380859375], "det_conf": 0.9421559572219849, "mean_kpt_conf": 0.9248861291191794, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5155132717323236, "right_lift": -0.9432068830291884, "left_bend": 0.6280948393906183, "right_bend": 0.7463478524431262}, "keypoints": {"0": [353.9952392578125, 143.85687255859375, 0.9988349080085754], "1": [377.2091979980469, 116.85671997070312, 0.9966094493865967], "2": [329.94482421875, 116.6246337890625, 0.9957519769668579], "3": [405.82940673828125, 123.38029479980469, 0.8989039659500122], "4": [295.66778564453125, 122.33833312988281, 0.8548965454101562], "5": [458.72979736328125, 238.29132080078125, 0.9938614368438721], "6": [254.16123962402344, 252.27294921875, 0.9936289191246033], "7": [609.8738403320312, 329.221923828125, 0.8682676553726196], "8": [202.76641845703125, 398.1943359375, 0.8179762363433838], "9": [628.60302734375, 195.52847290039062, 0.9212526679039001], "10": [194.32435607910156, 381.07904052734375, 0.8337636590003967], "11": [434.3874206542969, 480.0, 0.12086771428585052], "12": [308.0771789550781, 480.0, 0.11325886845588684], "13": [458.0575256347656, 416.4817199707031, 0.0020788356196135283], "14": [323.9124755859375, 407.86358642578125, 0.002011774806305766], "15": [452.0095520019531, 415.76568603515625, 0.00023503472039010376], "16": [357.1962890625, 403.6409606933594, 0.00022964066010899842]}} +{"t": 16.493904, "tracked": true, "track_id": 1, "bbox": [166.46707153320312, 29.708480834960938, 637.6467895507812, 477.8980407714844], "det_conf": 0.9408953785896301, "mean_kpt_conf": 0.9228510098023848, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5084953072723716, "right_lift": -0.9419337733599948, "left_bend": 0.6312014629323818, "right_bend": 0.8248362510324555}, "keypoints": {"0": [353.75030517578125, 144.0226287841797, 0.9988422989845276], "1": [376.8330078125, 117.05503845214844, 0.9964907765388489], "2": [329.2774658203125, 116.69435119628906, 0.9958450198173523], "3": [405.4073486328125, 124.42483520507812, 0.8959739208221436], "4": [294.5445861816406, 123.37896728515625, 0.8633173704147339], "5": [461.8204345703125, 241.28089904785156, 0.9936884045600891], "6": [252.1513214111328, 253.70578002929688, 0.9937441945075989], "7": [611.1932373046875, 329.49188232421875, 0.8469988703727722], "8": [200.74752807617188, 397.896240234375, 0.814194917678833], "9": [628.578857421875, 186.814453125, 0.9160287976264954], "10": [197.18394470214844, 380.998046875, 0.8362365365028381], "11": [432.97381591796875, 480.0, 0.09768684208393097], "12": [305.2560119628906, 480.0, 0.09723568707704544], "13": [444.84271240234375, 408.24334716796875, 0.001990612130612135], "14": [319.5389404296875, 398.4886779785156, 0.002059881342574954], "15": [423.8026123046875, 412.5653991699219, 0.00023583185975439847], "16": [352.70660400390625, 401.72796630859375, 0.00024046283215284348]}} +{"t": 16.551409, "tracked": true, "track_id": 1, "bbox": [165.94288635253906, 29.781185150146484, 637.9718627929688, 478.9530944824219], "det_conf": 0.940422773361206, "mean_kpt_conf": 0.9202994108200073, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.49456439685282527, "right_lift": -0.9372983311739536, "left_bend": 0.640743296883124, "right_bend": 0.8528082542031822}, "keypoints": {"0": [352.76885986328125, 144.22769165039062, 0.9988030195236206], "1": [376.3612060546875, 116.74980163574219, 0.9967047572135925], "2": [328.1628112792969, 116.75978088378906, 0.9956099390983582], "3": [406.0050354003906, 123.73007202148438, 0.9106607437133789], "4": [293.6593017578125, 123.32745361328125, 0.8462374806404114], "5": [462.16241455078125, 242.14479064941406, 0.9935761094093323], "6": [251.1943359375, 254.13734436035156, 0.9931460618972778], "7": [616.8026733398438, 330.13922119140625, 0.8474054336547852], "8": [198.08387756347656, 396.9675598144531, 0.7916011214256287], "9": [627.8867797851562, 182.97393798828125, 0.9210155010223389], "10": [196.1175537109375, 378.5596923828125, 0.8285333514213562], "11": [432.3798828125, 480.0, 0.09324625879526138], "12": [304.1087646484375, 480.0, 0.0882234126329422], "13": [450.288818359375, 410.3300476074219, 0.0019734108354896307], "14": [326.3092346191406, 398.9773254394531, 0.0019590810406953096], "15": [437.53076171875, 410.70867919921875, 0.00024125924392137676], "16": [365.8312072753906, 398.4111633300781, 0.0002418089279672131]}} +{"t": 16.611577, "tracked": true, "track_id": 1, "bbox": [165.9678192138672, 29.504819869995117, 637.2490234375, 479.8833923339844], "det_conf": 0.9408943057060242, "mean_kpt_conf": 0.9259905490008268, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.49661726896311653, "right_lift": -0.9298084642633625, "left_bend": 0.6264172791822266, "right_bend": 0.8412596529300892}, "keypoints": {"0": [351.8726806640625, 144.20648193359375, 0.9988793730735779], "1": [374.87188720703125, 116.650146484375, 0.9969733953475952], "2": [327.4814147949219, 117.085205078125, 0.9957559704780579], "3": [405.1236267089844, 123.2469482421875, 0.9180425405502319], "4": [294.3748779296875, 123.69955444335938, 0.8426628112792969], "5": [463.14837646484375, 242.49180603027344, 0.9935524463653564], "6": [253.0567169189453, 252.81619262695312, 0.9939694404602051], "7": [613.5484619140625, 328.544677734375, 0.8484114408493042], "8": [198.68325805664062, 390.1827392578125, 0.8284239768981934], "9": [631.432861328125, 183.33509826660156, 0.918671190738678], "10": [196.6356658935547, 373.45391845703125, 0.8505534529685974], "11": [433.69891357421875, 480.0, 0.09994088113307953], "12": [304.2472839355469, 480.0, 0.10240337252616882], "13": [456.70684814453125, 407.7432861328125, 0.0018832486821338534], "14": [320.9733581542969, 397.04913330078125, 0.002060845959931612], "15": [442.7263488769531, 406.4939270019531, 0.0002329387643840164], "16": [352.10577392578125, 397.9037780761719, 0.0002503659634385258]}} +{"t": 16.673674, "tracked": true, "track_id": 1, "bbox": [166.07687377929688, 29.194528579711914, 634.3206787109375, 480.0], "det_conf": 0.9459378719329834, "mean_kpt_conf": 0.9307757616043091, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5404988259928515, "right_lift": -0.944098563381078, "left_bend": 0.5822696648482799, "right_bend": 0.8021969669558836}, "keypoints": {"0": [349.6856994628906, 143.14418029785156, 0.9988142251968384], "1": [373.2929382324219, 116.45335388183594, 0.9970453381538391], "2": [325.80548095703125, 116.09263610839844, 0.9952810406684875], "3": [403.44488525390625, 123.94438171386719, 0.9204389452934265], "4": [292.90185546875, 122.70135498046875, 0.8439961075782776], "5": [455.76177978515625, 237.53762817382812, 0.9934311509132385], "6": [251.13401794433594, 253.1800994873047, 0.9942114949226379], "7": [595.4418334960938, 327.271240234375, 0.874985933303833], "8": [201.43377685546875, 395.5129699707031, 0.8511031270027161], "9": [628.9427490234375, 223.60647583007812, 0.9184591770172119], "10": [198.29164123535156, 384.80670166015625, 0.8507668375968933], "11": [430.2249450683594, 480.0, 0.13331551849842072], "12": [301.5525817871094, 480.0, 0.1347530335187912], "13": [455.9382629394531, 411.7027893066406, 0.002001655986532569], "14": [306.8189697265625, 409.5596923828125, 0.00209296983666718], "15": [445.0235595703125, 419.06109619140625, 0.0002229133533546701], "16": [331.5274658203125, 412.99835205078125, 0.00023137140669859946]}} +{"t": 16.731341, "tracked": true, "track_id": 1, "bbox": [165.00201416015625, 28.64235496520996, 633.9962768554688, 480.0], "det_conf": 0.9411562085151672, "mean_kpt_conf": 0.9271775917573408, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6048139165781126, "right_lift": -0.9351018793403865, "left_bend": 0.6018287787320938, "right_bend": 0.8875915721785655}, "keypoints": {"0": [349.1944274902344, 142.80728149414062, 0.9988897442817688], "1": [372.280517578125, 116.36798095703125, 0.9974730610847473], "2": [324.7666931152344, 116.56477355957031, 0.9954374432563782], "3": [403.55303955078125, 124.36019897460938, 0.9330419898033142], "4": [291.4894714355469, 124.99462890625, 0.8426796793937683], "5": [463.1216735839844, 238.4848175048828, 0.9931811690330505], "6": [248.55673217773438, 255.30545043945312, 0.9948533177375793], "7": [587.4205932617188, 332.88568115234375, 0.8548402190208435], "8": [197.55728149414062, 389.87799072265625, 0.8659470081329346], "9": [607.5960693359375, 273.9118347167969, 0.8799883723258972], "10": [197.6243896484375, 382.5104675292969, 0.8426215052604675], "11": [432.7747497558594, 480.0, 0.14316968619823456], "12": [296.0362243652344, 480.0, 0.16078750789165497], "13": [449.8767395019531, 417.35369873046875, 0.001619504764676094], "14": [285.16766357421875, 419.3720703125, 0.0018845065496861935], "15": [417.156005859375, 427.44427490234375, 0.00018049740174319595], "16": [294.181640625, 424.4307861328125, 0.0002016914659179747]}} +{"t": 16.794001, "tracked": true, "track_id": 1, "bbox": [163.6466522216797, 28.989639282226562, 634.7831420898438, 480.0], "det_conf": 0.942372739315033, "mean_kpt_conf": 0.9360452944582159, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5499230519292146, "right_lift": -0.934657910739175, "left_bend": 0.499743158770734, "right_bend": 0.5694534966714491}, "keypoints": {"0": [347.60107421875, 143.48854064941406, 0.9989230036735535], "1": [371.1060791015625, 116.84153747558594, 0.9974350333213806], "2": [323.4559326171875, 116.58718872070312, 0.9955356121063232], "3": [401.7980041503906, 123.78237915039062, 0.9260873198509216], "4": [290.3070068359375, 123.16244506835938, 0.8494723439216614], "5": [452.788330078125, 234.08616638183594, 0.9933637380599976], "6": [251.6634979248047, 252.91372680664062, 0.9946229457855225], "7": [587.1713256835938, 322.56671142578125, 0.8878136873245239], "8": [200.36672973632812, 387.7615966796875, 0.8778181076049805], "9": [621.2479858398438, 270.9023742675781, 0.9110298752784729], "10": [195.3323974609375, 384.4510498046875, 0.8643965721130371], "11": [426.39361572265625, 479.8408508300781, 0.16026026010513306], "12": [297.3914489746094, 480.0, 0.16821281611919403], "13": [452.44476318359375, 416.5658264160156, 0.0017663545440882444], "14": [290.7271728515625, 419.5274658203125, 0.0019033171702176332], "15": [439.2259521484375, 427.46014404296875, 0.0001835309958551079], "16": [301.0578918457031, 421.9656982421875, 0.00019321279251016676]}} +{"t": 16.851608, "tracked": true, "track_id": 1, "bbox": [160.95372009277344, 27.80889892578125, 635.8727416992188, 480.0], "det_conf": 0.9432500004768372, "mean_kpt_conf": 0.9214444593949751, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": false, "left_lift": -0.5638432282497865, "right_lift": null, "left_bend": 0.39237924831623094, "right_bend": null}, "keypoints": {"0": [348.4402160644531, 142.4180908203125, 0.998855710029602], "1": [370.8572998046875, 116.88484191894531, 0.9971123933792114], "2": [324.1044921875, 116.59979248046875, 0.9960470795631409], "3": [400.62213134765625, 126.00308227539062, 0.8946146965026855], "4": [289.1045227050781, 125.70768737792969, 0.8767830729484558], "5": [453.8984375, 234.63890075683594, 0.9914200305938721], "6": [247.58334350585938, 256.3697814941406, 0.9932603240013123], "7": [581.5205688476562, 321.7686462402344, 0.8540233969688416], "8": [190.9623565673828, 394.3620910644531, 0.8570560812950134], "9": [620.8739013671875, 292.8541259765625, 0.8537936806678772], "10": [191.4406280517578, 398.2598571777344, 0.8229225873947144], "11": [434.00274658203125, 469.4712219238281, 0.15663085877895355], "12": [299.240966796875, 480.0, 0.16984668374061584], "13": [464.01702880859375, 422.1127014160156, 0.00215104129165411], "14": [283.293212890625, 429.8674011230469, 0.002386764157563448], "15": [449.144775390625, 439.7142028808594, 0.00024212546122726053], "16": [281.786376953125, 437.2427978515625, 0.0002539628476370126]}} +{"t": 16.911543, "tracked": true, "track_id": 1, "bbox": [162.32350158691406, 27.284812927246094, 634.3470458984375, 480.0], "det_conf": 0.9454576373100281, "mean_kpt_conf": 0.9043732827359979, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": false, "left_lift": -0.567194757446436, "right_lift": null, "left_bend": 0.2752334012262795, "right_bend": null}, "keypoints": {"0": [348.1457824707031, 142.28955078125, 0.9987947940826416], "1": [370.069580078125, 116.86187744140625, 0.9967323541641235], "2": [323.535400390625, 116.47201538085938, 0.9962844848632812], "3": [398.84039306640625, 126.23173522949219, 0.8646458387374878], "4": [287.9247741699219, 125.90003967285156, 0.8821404576301575], "5": [450.2650146484375, 233.8498992919922, 0.9894431829452515], "6": [251.13792419433594, 257.065185546875, 0.9908560514450073], "7": [584.6624755859375, 326.4082336425781, 0.8168618083000183], "8": [193.94345092773438, 395.1597900390625, 0.8123929500579834], "9": [603.4950561523438, 321.3665771484375, 0.8101701736450195], "10": [197.2750701904297, 391.66748046875, 0.7897840142250061], "11": [431.2820739746094, 474.71441650390625, 0.12167757749557495], "12": [301.45867919921875, 480.0, 0.12726467847824097], "13": [472.030029296875, 421.6957702636719, 0.0018854414811357856], "14": [301.5279235839844, 428.814697265625, 0.002095631556585431], "15": [456.63690185546875, 442.6061706542969, 0.00025624866248108447], "16": [290.9083557128906, 433.000244140625, 0.00026724700001068413]}} +{"t": 16.973571, "tracked": true, "track_id": 1, "bbox": [164.15579223632812, 26.680923461914062, 631.7994384765625, 480.0], "det_conf": 0.9460915923118591, "mean_kpt_conf": 0.9040440700270913, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": false, "right_ready": true, "left_lift": null, "right_lift": -0.9206132110448242, "left_bend": null, "right_bend": 0.6183687754734624}, "keypoints": {"0": [348.86944580078125, 142.01199340820312, 0.998918890953064], "1": [371.0381164550781, 116.91679382324219, 0.9968817234039307], "2": [324.0457763671875, 116.34573364257812, 0.996931791305542], "3": [399.6590881347656, 127.31184387207031, 0.8582648038864136], "4": [287.47698974609375, 126.70100402832031, 0.8858746886253357], "5": [450.4308166503906, 234.34083557128906, 0.9885409474372864], "6": [251.31826782226562, 252.96194458007812, 0.9899448156356812], "7": [589.7940673828125, 334.8324279785156, 0.8117018342018127], "8": [193.2010955810547, 389.98309326171875, 0.8134457468986511], "9": [584.9945068359375, 335.73150634765625, 0.8084180355072021], "10": [199.07534790039062, 390.1551513671875, 0.7955614924430847], "11": [424.3341064453125, 476.4129638671875, 0.10765139013528824], "12": [292.6312255859375, 480.0, 0.11255530267953873], "13": [475.0124206542969, 420.2140808105469, 0.001711985212750733], "14": [292.78204345703125, 421.1964416503906, 0.0019238769309595227], "15": [470.21533203125, 447.20928955078125, 0.0002498737594578415], "16": [277.6665954589844, 430.6505126953125, 0.0002618550497572869]}} +{"t": 17.031813, "tracked": true, "track_id": 1, "bbox": [165.22181701660156, 26.690631866455078, 635.0639038085938, 480.0], "det_conf": 0.9448282122612, "mean_kpt_conf": 0.9036491892554543, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": false, "left_lift": -0.5760678520845843, "right_lift": null, "left_bend": 0.18187583612933853, "right_bend": null}, "keypoints": {"0": [348.7813720703125, 141.66546630859375, 0.9988561868667603], "1": [371.17669677734375, 117.28567504882812, 0.9969935417175293], "2": [324.3258056640625, 116.26679992675781, 0.9966973066329956], "3": [399.8844299316406, 128.66148376464844, 0.8733713626861572], "4": [288.61981201171875, 127.13633728027344, 0.8843522071838379], "5": [448.9243469238281, 232.44573974609375, 0.9882636070251465], "6": [253.7408905029297, 254.14862060546875, 0.9902410507202148], "7": [586.622802734375, 329.4893798828125, 0.8164216876029968], "8": [197.08026123046875, 389.2754821777344, 0.8175686001777649], "9": [595.2221069335938, 350.67974853515625, 0.7889702916145325], "10": [198.59690856933594, 386.9054870605469, 0.7884052395820618], "11": [430.8462829589844, 471.196044921875, 0.12107883393764496], "12": [301.25286865234375, 480.0, 0.12664952874183655], "13": [488.7752380371094, 417.00091552734375, 0.0019150039879605174], "14": [305.50201416015625, 422.4615783691406, 0.0021817507222294807], "15": [487.2882080078125, 447.20379638671875, 0.00028885225765407085], "16": [291.11553955078125, 431.31915283203125, 0.00030844740103930235]}} +{"t": 17.091831, "tracked": true, "track_id": 1, "bbox": [166.0448455810547, 26.760351181030273, 635.84912109375, 480.0], "det_conf": 0.9450452327728271, "mean_kpt_conf": 0.9113494157791138, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.580867226131349, "right_lift": -0.913143275915385, "left_bend": 0.04109647680103944, "right_bend": 0.4448471050366074}, "keypoints": {"0": [348.955810546875, 142.41989135742188, 0.9988468885421753], "1": [371.7532653808594, 117.5980224609375, 0.997011661529541], "2": [324.5125732421875, 116.74020385742188, 0.9966219663619995], "3": [400.76593017578125, 128.13839721679688, 0.8741742968559265], "4": [289.60198974609375, 126.43768310546875, 0.8895621299743652], "5": [442.41900634765625, 232.7725830078125, 0.988494336605072], "6": [255.39756774902344, 250.9625244140625, 0.9901644587516785], "7": [580.9553833007812, 331.6318054199219, 0.8388894200325012], "8": [194.515869140625, 387.3423767089844, 0.8291916251182556], "9": [611.5252685546875, 360.0479736328125, 0.8161230683326721], "10": [202.0565643310547, 392.42559814453125, 0.8057637214660645], "11": [419.0097351074219, 466.7856750488281, 0.11888191103935242], "12": [295.00701904296875, 477.0093994140625, 0.12140781432390213], "13": [480.7350769042969, 413.39447021484375, 0.001955298474058509], "14": [302.9166259765625, 419.4676513671875, 0.002181117655709386], "15": [489.8443603515625, 442.2374572753906, 0.000293215416604653], "16": [290.7530212402344, 430.7076110839844, 0.00030656938906759024]}} +{"t": 17.151097, "tracked": true, "track_id": 1, "bbox": [166.85321044921875, 27.60395622253418, 636.482177734375, 479.99407958984375], "det_conf": 0.9435950517654419, "mean_kpt_conf": 0.9013234647837552, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6258860356909273, "right_lift": -0.9241802020549331, "left_bend": 0.021902671024977526, "right_bend": 0.8211129911317749}, "keypoints": {"0": [349.99627685546875, 142.37020874023438, 0.9988516569137573], "1": [372.5185546875, 117.40861511230469, 0.9970620274543762], "2": [325.23291015625, 116.49725341796875, 0.9965987801551819], "3": [401.3051452636719, 128.47048950195312, 0.8709209561347961], "4": [289.9471435546875, 126.89335632324219, 0.8895265460014343], "5": [445.6114501953125, 235.47830200195312, 0.9882742166519165], "6": [255.5989227294922, 254.57505798339844, 0.9899203777313232], "7": [576.10498046875, 340.20013427734375, 0.8223254084587097], "8": [198.14427185058594, 393.59197998046875, 0.8125185966491699], "9": [612.2735595703125, 373.56353759765625, 0.7692369222640991], "10": [196.99130249023438, 386.8783874511719, 0.779322624206543], "11": [427.8644714355469, 468.79034423828125, 0.1060975193977356], "12": [301.1200256347656, 480.0, 0.10786566883325577], "13": [497.7019958496094, 409.6716003417969, 0.0017885613488033414], "14": [310.44378662109375, 419.17926025390625, 0.0020175366662442684], "15": [501.6271667480469, 440.1728820800781, 0.00028961224597878754], "16": [296.68994140625, 431.94207763671875, 0.00030580253223888576]}} +{"t": 17.210943, "tracked": true, "track_id": 1, "bbox": [167.97119140625, 27.28992462158203, 636.4414672851562, 479.82562255859375], "det_conf": 0.943213164806366, "mean_kpt_conf": 0.8997908939014782, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": false, "left_lift": -0.6382980374745842, "right_lift": null, "left_bend": 0.10007849730345773, "right_bend": null}, "keypoints": {"0": [350.65655517578125, 142.10154724121094, 0.9988804459571838], "1": [372.75238037109375, 117.03363037109375, 0.9972231388092041], "2": [326.20367431640625, 116.72662353515625, 0.9966525435447693], "3": [401.4533386230469, 127.729248046875, 0.881857693195343], "4": [291.88665771484375, 127.43572998046875, 0.8812679648399353], "5": [447.4599914550781, 234.6663818359375, 0.9876410365104675], "6": [257.7740478515625, 251.11080932617188, 0.9893814325332642], "7": [579.532958984375, 344.1793518066406, 0.818181574344635], "8": [197.53477478027344, 387.9779968261719, 0.8125178217887878], "9": [608.1505737304688, 389.4114990234375, 0.7572240233421326], "10": [197.4790496826172, 386.4120178222656, 0.7768721580505371], "11": [425.1346740722656, 466.5484924316406, 0.09304971247911453], "12": [298.5658264160156, 475.7843322753906, 0.09594827145338058], "13": [494.354736328125, 404.68182373046875, 0.0016870268154889345], "14": [305.3263244628906, 411.61846923828125, 0.0019340531434863806], "15": [501.7001953125, 441.2342529296875, 0.0002932942588813603], "16": [291.6120910644531, 431.8555908203125, 0.00031411793315783143]}} +{"t": 17.271126, "tracked": true, "track_id": 1, "bbox": [169.74484252929688, 26.34494972229004, 636.0267333984375, 479.6500244140625], "det_conf": 0.9419822096824646, "mean_kpt_conf": 0.8898829330097545, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.643567967785212, "right_lift": -0.919339930143915, "left_bend": 0.057773924293038764, "right_bend": 0.5762298352253272}, "keypoints": {"0": [351.2527160644531, 142.10887145996094, 0.9988439083099365], "1": [373.9794921875, 117.68217468261719, 0.9971629977226257], "2": [327.1002197265625, 116.32638549804688, 0.996703565120697], "3": [402.6468200683594, 129.67274475097656, 0.8787758350372314], "4": [292.56842041015625, 126.83154296875, 0.8825905323028564], "5": [445.0401611328125, 238.07949829101562, 0.9867319464683533], "6": [257.19024658203125, 250.27699279785156, 0.9883049726486206], "7": [578.9693603515625, 350.6922302246094, 0.7976675033569336], "8": [196.86807250976562, 391.2214050292969, 0.7882357239723206], "9": [609.2838745117188, 387.4114074707031, 0.7312427163124084], "10": [205.03781127929688, 392.5810546875, 0.7424525618553162], "11": [418.8801574707031, 470.51190185546875, 0.07831477373838425], "12": [293.2176513671875, 478.1649475097656, 0.07984667271375656], "13": [491.0476989746094, 403.34149169921875, 0.0015624549705535173], "14": [301.9548645019531, 406.7944641113281, 0.0017809090204536915], "15": [505.6660461425781, 436.6956787109375, 0.00031117189791984856], "16": [290.486083984375, 424.32464599609375, 0.00033096387051045895]}} +{"t": 17.330934, "tracked": true, "track_id": 1, "bbox": [170.2551727294922, 26.5155086517334, 636.9110717773438, 479.4447021484375], "det_conf": 0.9431734085083008, "mean_kpt_conf": 0.8998461040583524, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6674929570733128, "right_lift": -0.9248267440961785, "left_bend": 0.07400878120587924, "right_bend": 0.9027292756744938}, "keypoints": {"0": [352.9901428222656, 143.00550842285156, 0.9989386200904846], "1": [375.1478271484375, 117.72174072265625, 0.997166097164154], "2": [328.60528564453125, 117.09490966796875, 0.9968591928482056], "3": [403.5276184082031, 128.12405395507812, 0.8654524087905884], "4": [294.10693359375, 126.78459167480469, 0.882976770401001], "5": [447.08038330078125, 235.94578552246094, 0.987621009349823], "6": [261.0067443847656, 248.03952026367188, 0.9891836643218994], "7": [579.0407104492188, 354.2384033203125, 0.8196128606796265], "8": [202.6339874267578, 389.9593505859375, 0.8234795331954956], "9": [608.9871826171875, 397.31842041015625, 0.7466841340065002], "10": [213.25868225097656, 377.23724365234375, 0.7903328537940979], "11": [423.3375244140625, 469.57843017578125, 0.08510486781597137], "12": [297.48553466796875, 477.1307373046875, 0.08877958357334137], "13": [502.19622802734375, 401.3319396972656, 0.0015445123426616192], "14": [305.528564453125, 406.1728515625, 0.001847051433287561], "15": [516.5934448242188, 439.05548095703125, 0.00028612453024834394], "16": [286.801513671875, 428.4611511230469, 0.0003129599499516189]}} +{"t": 17.391378, "tracked": true, "track_id": 1, "bbox": [169.7264404296875, 26.877090454101562, 637.3194580078125, 479.35565185546875], "det_conf": 0.9414581656455994, "mean_kpt_conf": 0.8983084234324369, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6615182101061354, "right_lift": -0.9159776244789294, "left_bend": 0.05283467427171525, "right_bend": 0.7531945089765787}, "keypoints": {"0": [354.3418884277344, 143.27737426757812, 0.9988583326339722], "1": [376.88775634765625, 117.8123779296875, 0.9970253109931946], "2": [329.76336669921875, 117.34193420410156, 0.9968355298042297], "3": [405.609375, 127.34138488769531, 0.8640406727790833], "4": [295.20928955078125, 126.09434509277344, 0.8957009315490723], "5": [444.9696044921875, 234.571044921875, 0.986748993396759], "6": [259.99664306640625, 247.48785400390625, 0.9895015358924866], "7": [574.2149047851562, 348.5793151855469, 0.8070024251937866], "8": [198.4002227783203, 388.1080322265625, 0.8201568722724915], "9": [611.8603515625, 394.94500732421875, 0.737511396408081], "10": [216.7811279296875, 380.7115173339844, 0.7880106568336487], "11": [421.0539245605469, 469.00018310546875, 0.08683105558156967], "12": [297.4837646484375, 478.19573974609375, 0.0927562490105629], "13": [501.3315734863281, 403.317626953125, 0.0015993264969438314], "14": [317.04156494140625, 410.72601318359375, 0.001970955403521657], "15": [516.274658203125, 437.2260437011719, 0.0003051440289709717], "16": [306.1053771972656, 430.11065673828125, 0.0003406957257539034]}} +{"t": 17.45151, "tracked": true, "track_id": 1, "bbox": [169.6402130126953, 26.4400691986084, 637.1209716796875, 479.2237548828125], "det_conf": 0.9453219175338745, "mean_kpt_conf": 0.916778255592693, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6592412747051993, "right_lift": -0.9113064629074953, "left_bend": 0.033715446650857454, "right_bend": 0.8494773565085814}, "keypoints": {"0": [355.99993896484375, 143.04867553710938, 0.9989110231399536], "1": [378.0048828125, 117.99783325195312, 0.9969745874404907], "2": [331.3968505859375, 117.34550476074219, 0.9967922568321228], "3": [405.9868469238281, 128.29629516601562, 0.8586600422859192], "4": [296.56231689453125, 126.95761108398438, 0.8992997407913208], "5": [445.5115661621094, 235.05996704101562, 0.9884454011917114], "6": [261.32830810546875, 250.2462158203125, 0.9912341237068176], "7": [572.687744140625, 346.5592041015625, 0.8436208367347717], "8": [197.4215087890625, 391.69537353515625, 0.8563774824142456], "9": [608.7666625976562, 385.67236328125, 0.8070769906044006], "10": [219.65541076660156, 373.9510803222656, 0.8471683263778687], "11": [425.9223937988281, 469.6165771484375, 0.10295135527849197], "12": [303.0735778808594, 479.9686279296875, 0.11068490892648697], "13": [500.3619689941406, 404.3702697753906, 0.0017504601273685694], "14": [319.6927185058594, 413.38128662109375, 0.0021355370990931988], "15": [511.7541809082031, 438.0649108886719, 0.0002806954726111144], "16": [305.05645751953125, 430.720947265625, 0.00031178686185739934]}} +{"t": 17.511904, "tracked": true, "track_id": 1, "bbox": [168.77398681640625, 27.659067153930664, 636.1366577148438, 479.2239990234375], "det_conf": 0.9461491703987122, "mean_kpt_conf": 0.9155271811918779, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6695120958170742, "right_lift": -0.915509413253564, "left_bend": 0.006877145842291394, "right_bend": 0.9130710765882479}, "keypoints": {"0": [357.4851379394531, 142.79269409179688, 0.9989400506019592], "1": [379.52166748046875, 118.15225219726562, 0.9969207048416138], "2": [333.308349609375, 116.44232177734375, 0.9968559741973877], "3": [406.24334716796875, 128.88558959960938, 0.8369699120521545], "4": [297.06085205078125, 125.30203247070312, 0.9078318476676941], "5": [445.85174560546875, 233.33944702148438, 0.9886534810066223], "6": [257.7889404296875, 252.37112426757812, 0.991376519203186], "7": [570.12548828125, 345.35162353515625, 0.8479339480400085], "8": [191.9247589111328, 402.2587585449219, 0.8510631918907166], "9": [609.8046875, 382.70068359375, 0.8091516494750977], "10": [215.99838256835938, 372.9187316894531, 0.8451017141342163], "11": [432.646484375, 464.90380859375, 0.0959320068359375], "12": [306.5163879394531, 477.35992431640625, 0.10082481056451797], "13": [501.0248107910156, 397.5626220703125, 0.0017868884606286883], "14": [311.7138671875, 410.0721435546875, 0.0020421824883669615], "15": [511.05474853515625, 439.1224365234375, 0.0002768472477328032], "16": [295.1432800292969, 430.1636657714844, 0.0002912148192990571]}} +{"t": 17.573544, "tracked": true, "track_id": 1, "bbox": [168.8158416748047, 29.847427368164062, 635.6588745117188, 479.207275390625], "det_conf": 0.9490050673484802, "mean_kpt_conf": 0.9179159727963534, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6580789574299349, "right_lift": -0.9172956058946582, "left_bend": 0.07462675270875503, "right_bend": 0.8910480961349}, "keypoints": {"0": [359.05694580078125, 144.80789184570312, 0.9989950060844421], "1": [380.9875183105469, 120.1181640625, 0.9965692758560181], "2": [334.9165954589844, 118.35263061523438, 0.9972690939903259], "3": [407.1082763671875, 130.49383544921875, 0.8030299544334412], "4": [297.98077392578125, 126.3636474609375, 0.9236263036727905], "5": [447.9774169921875, 235.76828002929688, 0.9894008040428162], "6": [255.79302978515625, 252.89923095703125, 0.9923805594444275], "7": [577.5167846679688, 348.9859619140625, 0.8444722890853882], "8": [189.912109375, 404.66021728515625, 0.8626493811607361], "9": [615.20947265625, 368.7924499511719, 0.8254364728927612], "10": [219.40028381347656, 373.1236267089844, 0.8632465600967407], "11": [434.2859191894531, 467.8033447265625, 0.09680985659360886], "12": [306.90936279296875, 479.988525390625, 0.1051344946026802], "13": [504.41143798828125, 401.0887756347656, 0.0017334281001240015], "14": [321.667236328125, 411.6183166503906, 0.0020863099489361048], "15": [511.1671447753906, 439.1195373535156, 0.00025033470592461526], "16": [308.74444580078125, 429.4162902832031, 0.0002709163527470082]}} +{"t": 17.630834, "tracked": true, "track_id": 1, "bbox": [169.26795959472656, 30.406522750854492, 633.0564575195312, 479.34381103515625], "det_conf": 0.9486876130104065, "mean_kpt_conf": 0.908188131722537, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6638390256515372, "right_lift": -0.9182026138470161, "left_bend": 0.24109397259237783, "right_bend": 0.8508937022596459}, "keypoints": {"0": [360.41546630859375, 144.66213989257812, 0.9989466071128845], "1": [381.8528137207031, 119.83882141113281, 0.9960475564002991], "2": [335.80010986328125, 118.39566040039062, 0.9974448680877686], "3": [407.52471923828125, 129.703125, 0.7652009725570679], "4": [296.9053955078125, 126.41908264160156, 0.929119884967804], "5": [450.8602294921875, 238.88853454589844, 0.9886780381202698], "6": [251.65875244140625, 252.46778869628906, 0.9913551211357117], "7": [578.0781860351562, 351.8114013671875, 0.8175360560417175], "8": [188.11856079101562, 399.7567138671875, 0.8373203277587891], "9": [596.6034545898438, 351.2280578613281, 0.818903386592865], "10": [223.05970764160156, 370.618408203125, 0.8495166301727295], "11": [430.59307861328125, 470.1242370605469, 0.09934082627296448], "12": [298.91046142578125, 480.0, 0.10654643923044205], "13": [497.74981689453125, 411.0521545410156, 0.0018336994107812643], "14": [315.37200927734375, 417.4541931152344, 0.0021582236513495445], "15": [500.4403076171875, 440.2982177734375, 0.0002571866207290441], "16": [306.7658996582031, 430.4247741699219, 0.00027098326245322824]}} +{"t": 17.697125, "tracked": true, "track_id": 1, "bbox": [169.5113525390625, 30.599510192871094, 632.4270629882812, 479.5155944824219], "det_conf": 0.9465305209159851, "mean_kpt_conf": 0.9138360565358942, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6521945196550228, "right_lift": -0.9087217306996649, "left_bend": 0.5836753659178336, "right_bend": 0.8227088864444975}, "keypoints": {"0": [361.3185729980469, 144.38082885742188, 0.9989967942237854], "1": [382.57781982421875, 119.57682800292969, 0.9959968328475952], "2": [336.85894775390625, 118.06846618652344, 0.9975475668907166], "3": [408.4154968261719, 128.76397705078125, 0.7551437616348267], "4": [297.4869384765625, 125.19186401367188, 0.9278048872947693], "5": [452.9314270019531, 237.76345825195312, 0.9893619418144226], "6": [253.91848754882812, 250.3217010498047, 0.9920917749404907], "7": [581.7301635742188, 348.5762634277344, 0.8274595737457275], "8": [187.72715759277344, 394.426025390625, 0.8569494485855103], "9": [583.9051513671875, 344.0459899902344, 0.8383126854896545], "10": [229.96609497070312, 366.55670166015625, 0.8725313544273376], "11": [435.6179504394531, 471.1533203125, 0.12247676402330399], "12": [303.625244140625, 480.0, 0.1342674195766449], "13": [499.4119873046875, 421.7874755859375, 0.0019257584353908896], "14": [319.3229064941406, 424.8836975097656, 0.00231357803568244], "15": [502.9957580566406, 443.2261962890625, 0.00023889449948910624], "16": [306.69537353515625, 428.95233154296875, 0.0002559298009146005]}} +{"t": 17.750458, "tracked": true, "track_id": 1, "bbox": [168.26675415039062, 31.579572677612305, 617.3980712890625, 479.65753173828125], "det_conf": 0.9485676884651184, "mean_kpt_conf": 0.9304944168437611, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7580100901887871, "right_lift": -0.9308076443754275, "left_bend": 0.7889928235507827, "right_bend": 0.9205506737893623}, "keypoints": {"0": [360.951904296875, 145.25025939941406, 0.9988479614257812], "1": [383.1505432128906, 119.70252990722656, 0.996321439743042], "2": [337.072998046875, 118.56353759765625, 0.9965270161628723], "3": [410.08990478515625, 127.04620361328125, 0.8626623153686523], "4": [299.788330078125, 124.9710693359375, 0.8887757062911987], "5": [460.5941467285156, 233.73251342773438, 0.9898054599761963], "6": [254.98721313476562, 252.3681640625, 0.9952071309089661], "7": [565.154541015625, 355.24835205078125, 0.8327340483665466], "8": [196.26724243164062, 401.9046630859375, 0.9005097150802612], "9": [522.8814697265625, 346.7953796386719, 0.8661413192749023], "10": [225.0777587890625, 361.86932373046875, 0.9079064726829529], "11": [440.895751953125, 476.13018798828125, 0.14160118997097015], "12": [306.6933898925781, 480.0, 0.1763060986995697], "13": [476.10888671875, 416.6811828613281, 0.002078187884762883], "14": [306.491943359375, 419.16204833984375, 0.0027526700869202614], "15": [453.10955810546875, 450.23541259765625, 0.00024077965645119548], "16": [296.7081604003906, 431.7447509765625, 0.0002926074666902423]}} +{"t": 17.811542, "tracked": true, "track_id": 1, "bbox": [169.0231170654297, 31.602697372436523, 620.3200073242188, 479.68328857421875], "det_conf": 0.9480076432228088, "mean_kpt_conf": 0.9173408259044994, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.641650870136555, "right_lift": -0.9097741203030852, "left_bend": 0.8623402044413878, "right_bend": 0.834877217596509}, "keypoints": {"0": [362.2324523925781, 143.73118591308594, 0.9989198446273804], "1": [383.55499267578125, 119.35963439941406, 0.99587482213974], "2": [338.2172546386719, 117.58963012695312, 0.9972350001335144], "3": [409.2615661621094, 129.22230529785156, 0.7822281122207642], "4": [299.53143310546875, 125.45222473144531, 0.9181637763977051], "5": [456.33428955078125, 238.11534118652344, 0.9890590310096741], "6": [253.50167846679688, 251.51522827148438, 0.9921356439590454], "7": [582.5206909179688, 343.6798095703125, 0.8215866088867188], "8": [188.17428588867188, 394.6919250488281, 0.8537712097167969], "9": [570.4003295898438, 318.0461730957031, 0.8615948557853699], "10": [229.718505859375, 364.7821044921875, 0.8801801800727844], "11": [432.87615966796875, 475.0203857421875, 0.11714176833629608], "12": [300.5325622558594, 480.0, 0.13162727653980255], "13": [477.3271484375, 421.7745666503906, 0.002125644823536277], "14": [310.4308166503906, 422.3878173828125, 0.002531282138079405], "15": [469.1899719238281, 449.35870361328125, 0.00025706354063004255], "16": [303.5844421386719, 432.742431640625, 0.00027537127607502043]}} +{"t": 17.870589, "tracked": true, "track_id": 1, "bbox": [169.58518981933594, 31.550674438476562, 629.4508056640625, 479.66949462890625], "det_conf": 0.94818115234375, "mean_kpt_conf": 0.9334886561740529, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5978730346886144, "right_lift": -0.9112808602531898, "left_bend": 0.5016631508979311, "right_bend": 0.859134768179464}, "keypoints": {"0": [363.52716064453125, 145.15879821777344, 0.9989514350891113], "1": [384.6011047363281, 119.94963073730469, 0.9959967136383057], "2": [339.2396240234375, 118.12599182128906, 0.9969244599342346], "3": [410.0696716308594, 128.83258056640625, 0.77927166223526], "4": [300.6392822265625, 124.71014404296875, 0.921724796295166], "5": [454.54345703125, 238.92677307128906, 0.9916805624961853], "6": [254.37525939941406, 254.72589111328125, 0.9933869242668152], "7": [583.75390625, 335.2994384765625, 0.8792049884796143], "8": [188.14553833007812, 401.292236328125, 0.8833858966827393], "9": [615.5593872070312, 292.1884460449219, 0.9148771166801453], "10": [233.22654724121094, 363.02392578125, 0.9129706621170044], "11": [438.4660339355469, 468.5013427734375, 0.130239337682724], "12": [307.2294006347656, 479.6783752441406, 0.13728933036327362], "13": [484.2909851074219, 407.73876953125, 0.0022974046878516674], "14": [309.8102722167969, 414.49505615234375, 0.002551555633544922], "15": [478.9538879394531, 431.0364990234375, 0.00024042869335971773], "16": [299.509033203125, 423.2499694824219, 0.00024418692919425666]}} +{"t": 17.936377, "tracked": true, "track_id": 1, "bbox": [170.85537719726562, 31.966962814331055, 633.5614013671875, 479.56903076171875], "det_conf": 0.9457272291183472, "mean_kpt_conf": 0.926935613155365, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5717630106416406, "right_lift": -0.9074680611458394, "left_bend": 0.5516771954430609, "right_bend": 0.8385475981183103}, "keypoints": {"0": [364.7642822265625, 145.29037475585938, 0.9989904761314392], "1": [385.4786376953125, 119.85675048828125, 0.995818555355072], "2": [340.489990234375, 118.23973083496094, 0.9972617626190186], "3": [410.2375793457031, 127.80702209472656, 0.7487310171127319], "4": [301.216796875, 123.945556640625, 0.9295114874839783], "5": [455.651611328125, 238.05538940429688, 0.9914592504501343], "6": [253.70770263671875, 254.008544921875, 0.9929428696632385], "7": [591.0174560546875, 332.3940124511719, 0.8650099039077759], "8": [185.624267578125, 401.06982421875, 0.8657673597335815], "9": [615.5599975585938, 281.10400390625, 0.9082107543945312], "10": [234.47225952148438, 365.45404052734375, 0.9025883078575134], "11": [441.0343017578125, 472.86956787109375, 0.12135245651006699], "12": [310.195556640625, 480.0, 0.12595628201961517], "13": [484.4662780761719, 413.2677917480469, 0.0022277378011494875], "14": [320.11163330078125, 418.0424499511719, 0.002433962654322386], "15": [480.1956787109375, 434.69122314453125, 0.00024070873041637242], "16": [316.2819519042969, 424.7100830078125, 0.00024000887060537934]}} +{"t": 17.995606, "tracked": true, "track_id": 1, "bbox": [171.7325897216797, 33.47834396362305, 634.0773315429688, 479.6291809082031], "det_conf": 0.9458391070365906, "mean_kpt_conf": 0.9374170411716808, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5740463736961833, "right_lift": -0.9080233290491189, "left_bend": 0.5909644999448028, "right_bend": 0.8243238459160345}, "keypoints": {"0": [364.91668701171875, 146.85537719726562, 0.9990988969802856], "1": [386.1026916503906, 120.56320190429688, 0.9965863227844238], "2": [340.3348388671875, 119.3580322265625, 0.9972468614578247], "3": [411.9854736328125, 126.81439208984375, 0.8152682185173035], "4": [301.78802490234375, 123.897705078125, 0.9190811514854431], "5": [458.3055114746094, 239.71578979492188, 0.9927250146865845], "6": [255.34873962402344, 252.3368682861328, 0.9945014715194702], "7": [592.1531982421875, 333.55145263671875, 0.8799871802330017], "8": [191.66168212890625, 390.380859375, 0.8863208889961243], "9": [612.903076171875, 272.1047668457031, 0.9217484593391418], "10": [229.5992889404297, 365.163818359375, 0.9090229868888855], "11": [438.31988525390625, 478.76470947265625, 0.1325192153453827], "12": [306.1249084472656, 480.0, 0.13961251080036163], "13": [485.0513916015625, 411.32977294921875, 0.0016487137181684375], "14": [312.3326721191406, 412.7509460449219, 0.0018222322687506676], "15": [485.16748046875, 421.9088134765625, 0.00017157547699753195], "16": [314.3531494140625, 413.4718017578125, 0.00017649000801611692]}} +{"t": 18.054106, "tracked": true, "track_id": 1, "bbox": [172.3036346435547, 33.76122283935547, 635.2869262695312, 479.9048767089844], "det_conf": 0.9426493048667908, "mean_kpt_conf": 0.9318867271596735, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5709421681732673, "right_lift": -0.9187692137953528, "left_bend": 0.6192110788334125, "right_bend": 0.8853701704626072}, "keypoints": {"0": [365.52435302734375, 146.9620361328125, 0.9990321397781372], "1": [386.5464782714844, 120.0997314453125, 0.9962616562843323], "2": [341.1598815917969, 119.23678588867188, 0.9970532655715942], "3": [412.14996337890625, 125.94729614257812, 0.8104842305183411], "4": [303.6759033203125, 123.52560424804688, 0.9146143794059753], "5": [458.8675842285156, 241.90707397460938, 0.9924620985984802], "6": [257.94921875, 253.85610961914062, 0.9939854741096497], "7": [596.2155151367188, 337.423095703125, 0.8617228269577026], "8": [196.11056518554688, 397.7673645019531, 0.861430823802948], "9": [619.32666015625, 240.09593200683594, 0.9237099289894104], "10": [229.4998779296875, 363.054443359375, 0.8999971747398376], "11": [439.18255615234375, 478.6890869140625, 0.1021435335278511], "12": [310.635009765625, 480.0, 0.10546969622373581], "13": [483.4828796386719, 403.1216125488281, 0.0017739098984748125], "14": [325.4893493652344, 402.3726806640625, 0.0019393684342503548], "15": [483.1362609863281, 412.7830810546875, 0.00020107088494114578], "16": [335.962158203125, 405.4688415527344, 0.00020625407341867685]}} +{"t": 18.11658, "tracked": true, "track_id": 1, "bbox": [173.7132110595703, 34.11265182495117, 637.021728515625, 480.0], "det_conf": 0.9382922649383545, "mean_kpt_conf": 0.9364737001332369, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5727030911384258, "right_lift": -0.9174912436267987, "left_bend": 0.5982083215004318, "right_bend": 0.8734589933467811}, "keypoints": {"0": [366.21728515625, 145.8726806640625, 0.9990179538726807], "1": [387.39739990234375, 120.27005004882812, 0.9964702129364014], "2": [342.28741455078125, 118.67832946777344, 0.9968751668930054], "3": [413.06591796875, 127.26202392578125, 0.8367727398872375], "4": [305.33935546875, 123.56745910644531, 0.9102537035942078], "5": [459.3893737792969, 240.373046875, 0.9925635457038879], "6": [259.73858642578125, 252.4429931640625, 0.9948581457138062], "7": [590.2642822265625, 331.804931640625, 0.8678014874458313], "8": [198.85511779785156, 392.8809814453125, 0.8863118290901184], "9": [617.303955078125, 244.7843017578125, 0.917561411857605], "10": [229.9580078125, 363.07037353515625, 0.9027245044708252], "11": [438.9827880859375, 480.0, 0.13596950471401215], "12": [310.31109619140625, 480.0, 0.15074847638607025], "13": [470.42694091796875, 415.1308288574219, 0.0018040488939732313], "14": [308.73944091796875, 414.5023193359375, 0.0020619865972548723], "15": [465.7007141113281, 422.371337890625, 0.00019010021060239524], "16": [314.53033447265625, 413.90911865234375, 0.0002011372271226719]}} +{"t": 18.174306, "tracked": true, "track_id": 1, "bbox": [175.25006103515625, 33.96889114379883, 637.0720825195312, 480.0], "det_conf": 0.9412341117858887, "mean_kpt_conf": 0.9324087446386163, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5661289037225322, "right_lift": -0.9188436836952086, "left_bend": 0.6205393691781993, "right_bend": 0.8904063801304721}, "keypoints": {"0": [368.62359619140625, 146.51666259765625, 0.9990699887275696], "1": [389.64031982421875, 120.12745666503906, 0.9960982799530029], "2": [344.19281005859375, 118.76129150390625, 0.9972562193870544], "3": [414.3988342285156, 126.23213195800781, 0.785491943359375], "4": [305.8747863769531, 122.69682312011719, 0.9215366244316101], "5": [458.8608093261719, 240.08006286621094, 0.9925435781478882], "6": [261.13214111328125, 251.299560546875, 0.9943687319755554], "7": [596.90087890625, 334.8840026855469, 0.8649247288703918], "8": [198.0370635986328, 398.211181640625, 0.874626636505127], "9": [621.40234375, 226.89764404296875, 0.9242631793022156], "10": [233.930908203125, 359.67828369140625, 0.9063162803649902], "11": [443.0158996582031, 480.0, 0.11263947933912277], "12": [316.2149963378906, 480.0, 0.11965688318014145], "13": [481.4647216796875, 409.7584228515625, 0.0017667145002633333], "14": [324.5659484863281, 407.0177307128906, 0.0019577257335186005], "15": [484.8755187988281, 416.7125244140625, 0.00019213386985938996], "16": [332.945068359375, 406.7663269042969, 0.00019720230193343014]}} +{"t": 18.237031, "tracked": true, "track_id": 1, "bbox": [176.74806213378906, 33.35657501220703, 638.212646484375, 480.0], "det_conf": 0.9381507039070129, "mean_kpt_conf": 0.9359666217457164, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5529032045666541, "right_lift": -0.9082768346440332, "left_bend": 0.6116850355154018, "right_bend": 0.9123321373607467}, "keypoints": {"0": [369.33050537109375, 146.33541870117188, 0.9990119934082031], "1": [390.88385009765625, 119.87216186523438, 0.9967431426048279], "2": [345.26666259765625, 118.81443786621094, 0.9966827034950256], "3": [417.945068359375, 126.18698120117188, 0.861247718334198], "4": [309.7563171386719, 123.34268188476562, 0.8924281597137451], "5": [465.2854919433594, 241.29608154296875, 0.991873562335968], "6": [266.6959228515625, 251.19482421875, 0.9948574304580688], "7": [600.47802734375, 331.00360107421875, 0.8493984341621399], "8": [200.59085083007812, 394.7083435058594, 0.8860426545143127], "9": [630.3854370117188, 206.07595825195312, 0.9192458987236023], "10": [234.7682342529297, 354.7086181640625, 0.9081011414527893], "11": [445.7349853515625, 480.0, 0.11116711050271988], "12": [318.47650146484375, 480.0, 0.1308310180902481], "13": [471.3771667480469, 412.1488037109375, 0.0017126323655247688], "14": [313.26171875, 407.1609191894531, 0.0020962709095329046], "15": [470.25079345703125, 416.8610534667969, 0.00019569540745578706], "16": [318.1142883300781, 408.53997802734375, 0.00021991375251673162]}} +{"t": 18.296254, "tracked": true, "track_id": 1, "bbox": [178.08413696289062, 33.40785217285156, 639.7514038085938, 480.0], "det_conf": 0.9363600611686707, "mean_kpt_conf": 0.9329385974190452, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5197980680923279, "right_lift": -0.9097563204544726, "left_bend": 0.6115195583337816, "right_bend": 0.9105481983805261}, "keypoints": {"0": [370.8681335449219, 146.4761962890625, 0.998927652835846], "1": [393.0848693847656, 119.56671142578125, 0.9966069459915161], "2": [346.4850769042969, 118.90286254882812, 0.9964982271194458], "3": [420.994384765625, 125.40699768066406, 0.8707241415977478], "4": [311.029541015625, 123.40409851074219, 0.8896212577819824], "5": [467.6922607421875, 240.63516235351562, 0.9918609261512756], "6": [267.554931640625, 252.09661865234375, 0.9945593476295471], "7": [607.8335571289062, 325.90509033203125, 0.8396394848823547], "8": [202.2650604248047, 395.1748352050781, 0.8685082793235779], "9": [634.4913330078125, 191.8285369873047, 0.9185307621955872], "10": [235.74472045898438, 356.154296875, 0.8968475461006165], "11": [443.6433410644531, 480.0, 0.1071871966123581], "12": [317.4913024902344, 480.0, 0.1225845068693161], "13": [468.0389404296875, 413.1703186035156, 0.0017847279086709023], "14": [323.1743469238281, 407.4919738769531, 0.0021525146439671516], "15": [464.15277099609375, 414.006103515625, 0.0002109626802848652], "16": [335.1846618652344, 405.43560791015625, 0.0002355624019401148]}} +{"t": 18.354258, "tracked": true, "track_id": 1, "bbox": [179.52735900878906, 33.56575393676758, 640.0, 480.0], "det_conf": 0.9325060248374939, "mean_kpt_conf": 0.9323150515556335, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.537002750165219, "right_lift": -0.9135255532886488, "left_bend": 0.6332474584964463, "right_bend": 0.9207125619657197}, "keypoints": {"0": [371.9196472167969, 145.9293975830078, 0.9989597797393799], "1": [393.85595703125, 119.579345703125, 0.9967424273490906], "2": [347.55596923828125, 118.79721069335938, 0.9964480400085449], "3": [421.4451904296875, 126.91845703125, 0.880357027053833], "4": [312.24774169921875, 124.8511962890625, 0.8790186047554016], "5": [472.21124267578125, 243.41978454589844, 0.9920686483383179], "6": [268.8666687011719, 251.9477996826172, 0.9946727156639099], "7": [611.7360229492188, 332.23785400390625, 0.835013210773468], "8": [204.48501586914062, 396.5323181152344, 0.8702523708343506], "9": [634.0699462890625, 182.71405029296875, 0.9174097180366516], "10": [235.877685546875, 356.7459716796875, 0.894523024559021], "11": [447.5519714355469, 480.0, 0.10367604345083237], "12": [319.6947021484375, 480.0, 0.12157265096902847], "13": [461.1834716796875, 416.26666259765625, 0.0017308315727859735], "14": [315.17962646484375, 406.6580810546875, 0.002108506392687559], "15": [453.3623352050781, 419.41644287109375, 0.0002010348398471251], "16": [326.9595947265625, 409.4228210449219, 0.0002271174016641453]}} +{"t": 18.414203, "tracked": true, "track_id": 1, "bbox": [180.78741455078125, 33.94511795043945, 640.0, 479.96197509765625], "det_conf": 0.9342371821403503, "mean_kpt_conf": 0.934046284718947, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5077926338496223, "right_lift": -0.9130981715433706, "left_bend": 0.6141617346107376, "right_bend": 0.9242742741993725}, "keypoints": {"0": [371.4711608886719, 146.4288330078125, 0.9989145994186401], "1": [393.75189208984375, 120.15179443359375, 0.996826171875], "2": [347.54815673828125, 119.30122375488281, 0.9962397813796997], "3": [422.1004943847656, 127.11131286621094, 0.8920087218284607], "4": [313.27227783203125, 124.90066528320312, 0.8731890320777893], "5": [471.1778564453125, 241.0472412109375, 0.9918398857116699], "6": [270.24664306640625, 253.05335998535156, 0.9947657585144043], "7": [609.97998046875, 322.8631286621094, 0.8413820266723633], "8": [207.0447235107422, 394.588623046875, 0.8763866424560547], "9": [634.4143676757812, 183.83193969726562, 0.9172881245613098], "10": [236.58204650878906, 356.3629150390625, 0.8956683874130249], "11": [446.48858642578125, 480.0, 0.11431770026683807], "12": [319.27923583984375, 480.0, 0.13418006896972656], "13": [465.266357421875, 415.66455078125, 0.0017907371511682868], "14": [316.1998291015625, 408.8152160644531, 0.002204424934461713], "15": [458.70263671875, 419.194580078125, 0.00021172783453948796], "16": [326.00543212890625, 409.2983093261719, 0.00024172065604943782]}} +{"t": 18.476728, "tracked": true, "track_id": 1, "bbox": [182.90919494628906, 33.95980453491211, 640.0, 480.0], "det_conf": 0.9372624754905701, "mean_kpt_conf": 0.9310687455264005, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5358239817529767, "right_lift": -0.9221377588393269, "left_bend": 0.6384617341847437, "right_bend": 0.9524825553646177}, "keypoints": {"0": [371.5641174316406, 146.36517333984375, 0.9988960027694702], "1": [394.0125427246094, 119.5223388671875, 0.9969852566719055], "2": [347.2705078125, 119.56654357910156, 0.9959354400634766], "3": [423.4219055175781, 126.5472412109375, 0.9113110303878784], "4": [313.7132873535156, 126.28024291992188, 0.8557461500167847], "5": [477.6562194824219, 243.23028564453125, 0.9921736717224121], "6": [271.74530029296875, 253.99806213378906, 0.9948956370353699], "7": [617.26611328125, 331.8287658691406, 0.8266788721084595], "8": [211.62791442871094, 397.29608154296875, 0.867352306842804], "9": [636.9169921875, 182.09495544433594, 0.9141685366630554], "10": [235.73013305664062, 357.67437744140625, 0.8876132965087891], "11": [449.44732666015625, 480.0, 0.10476156324148178], "12": [321.1187744140625, 480.0, 0.1258336752653122], "13": [456.71685791015625, 415.1789245605469, 0.0018141113687306643], "14": [315.9922790527344, 406.2413024902344, 0.0022885806392878294], "15": [441.2890930175781, 418.7554931640625, 0.0002116999530699104], "16": [330.7075500488281, 410.3083190917969, 0.00024906150065362453]}} +{"t": 18.535291, "tracked": true, "track_id": 1, "bbox": [185.4033203125, 33.91140365600586, 639.64404296875, 480.0], "det_conf": 0.9396787285804749, "mean_kpt_conf": 0.929701339114796, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5319279669276186, "right_lift": -0.9294393717643652, "left_bend": 0.6468181029132817, "right_bend": 0.9531132467535377}, "keypoints": {"0": [371.06561279296875, 146.27951049804688, 0.9988250136375427], "1": [393.89044189453125, 119.44345092773438, 0.9968720078468323], "2": [347.0210266113281, 119.58074951171875, 0.9955881834030151], "3": [424.06353759765625, 126.35723876953125, 0.9155743718147278], "4": [314.3958740234375, 126.11898803710938, 0.8450180292129517], "5": [479.8189697265625, 241.10763549804688, 0.9922400712966919], "6": [273.197998046875, 253.65090942382812, 0.9947732090950012], "7": [618.3779296875, 328.146240234375, 0.825347900390625], "8": [216.39596557617188, 396.73394775390625, 0.8635348677635193], "9": [633.2176513671875, 179.69566345214844, 0.9130759835243225], "10": [239.9237518310547, 356.13336181640625, 0.8858650922775269], "11": [453.4867248535156, 480.0, 0.10508476942777634], "12": [325.8797912597656, 480.0, 0.12530946731567383], "13": [461.612060546875, 412.10272216796875, 0.001881278702057898], "14": [330.06201171875, 404.00775146484375, 0.0024124241899698973], "15": [438.9925231933594, 418.6289978027344, 0.0002239822206320241], "16": [347.6600646972656, 409.78070068359375, 0.0002686669467948377]}} +{"t": 18.595832, "tracked": true, "track_id": 1, "bbox": [188.11050415039062, 34.02438735961914, 637.3502197265625, 480.0], "det_conf": 0.9422329664230347, "mean_kpt_conf": 0.9277601512995634, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4943670424536449, "right_lift": -0.9211005768522613, "left_bend": 0.6351659809888053, "right_bend": 0.9872832999144574}, "keypoints": {"0": [369.7720642089844, 146.75668334960938, 0.9987209439277649], "1": [393.182373046875, 119.62112426757812, 0.9970830082893372], "2": [346.31280517578125, 119.89678955078125, 0.9948456287384033], "3": [425.10968017578125, 125.75138854980469, 0.9337959885597229], "4": [315.4638977050781, 125.74429321289062, 0.8127973079681396], "5": [478.82305908203125, 239.4024658203125, 0.9916114211082458], "6": [277.15301513671875, 255.3549041748047, 0.9943618774414062], "7": [618.0559692382812, 318.5878601074219, 0.8284759521484375], "8": [219.12908935546875, 392.63330078125, 0.8573753237724304], "9": [630.6529541015625, 182.7486572265625, 0.9152060151100159], "10": [236.01646423339844, 356.74822998046875, 0.8810881972312927], "11": [451.6163024902344, 480.0, 0.11438461393117905], "12": [326.4884033203125, 480.0, 0.13329942524433136], "13": [461.657958984375, 414.831298828125, 0.0019976042676717043], "14": [330.9506530761719, 408.3015441894531, 0.0024958683643490076], "15": [443.3399353027344, 418.5387878417969, 0.00024072942323982716], "16": [346.7347412109375, 408.4920349121094, 0.0002870841708499938]}} +{"t": 18.657394, "tracked": true, "track_id": 1, "bbox": [191.92645263671875, 34.62257385253906, 631.53466796875, 480.0], "det_conf": 0.9442124366760254, "mean_kpt_conf": 0.9279009157961066, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5859950528387777, "right_lift": -0.9314036765832313, "left_bend": 0.6923535281477733, "right_bend": 0.9921550749356419}, "keypoints": {"0": [369.9068908691406, 145.84413146972656, 0.998715877532959], "1": [393.2019348144531, 119.11013793945312, 0.997342050075531], "2": [346.7422790527344, 120.0687255859375, 0.9944597482681274], "3": [426.1636047363281, 125.61088562011719, 0.9475329518318176], "4": [317.3698425292969, 127.21563720703125, 0.7880328297615051], "5": [482.6561584472656, 237.85203552246094, 0.9912978410720825], "6": [279.9681396484375, 253.38601684570312, 0.9950563907623291], "7": [607.964599609375, 328.4713134765625, 0.8267064094543457], "8": [226.26446533203125, 390.8076171875, 0.8811445236206055], "9": [610.4974365234375, 212.36349487304688, 0.9032073616981506], "10": [238.87356567382812, 360.74920654296875, 0.883414089679718], "11": [454.0281066894531, 480.0, 0.1372925341129303], "12": [326.7431945800781, 480.0, 0.1731012910604477], "13": [456.696533203125, 420.7248229980469, 0.002035200595855713], "14": [316.5467529296875, 415.2211608886719, 0.0027241960633546114], "15": [434.1937561035156, 428.15936279296875, 0.00023300785687752068], "16": [329.32611083984375, 420.356689453125, 0.0002950772177428007]}} +{"t": 18.71505, "tracked": true, "track_id": 1, "bbox": [196.43756103515625, 34.772552490234375, 632.1557006835938, 480.0], "det_conf": 0.9430538415908813, "mean_kpt_conf": 0.9256213307380676, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5949909634271355, "right_lift": -0.9409496068594185, "left_bend": 0.6827661401885006, "right_bend": 0.972903815380503}, "keypoints": {"0": [370.124755859375, 146.03379821777344, 0.9987335801124573], "1": [393.7225341796875, 118.9180908203125, 0.9975695013999939], "2": [347.084228515625, 120.42355346679688, 0.9940037131309509], "3": [428.11529541015625, 125.38453674316406, 0.9537632465362549], "4": [319.0890808105469, 128.01837158203125, 0.7569538950920105], "5": [486.624267578125, 236.86032104492188, 0.9917535781860352], "6": [283.1471862792969, 254.95062255859375, 0.9948741793632507], "7": [611.0745849609375, 328.989013671875, 0.8378221392631531], "8": [232.15908813476562, 396.6658935546875, 0.8785320520401001], "9": [618.523681640625, 211.0515899658203, 0.9035996198654175], "10": [240.71348571777344, 364.541015625, 0.8742291331291199], "11": [457.6579895019531, 480.0, 0.14350785315036774], "12": [329.0103759765625, 480.0, 0.17455948889255524], "13": [460.3424987792969, 422.19586181640625, 0.0019877799786627293], "14": [312.645263671875, 418.5678405761719, 0.0025798978749662638], "15": [435.1683044433594, 432.78863525390625, 0.0002205228665843606], "16": [319.42333984375, 427.3150634765625, 0.00027449941262602806]}} +{"t": 18.777107, "tracked": true, "track_id": 1, "bbox": [200.4855499267578, 35.32353973388672, 633.5426635742188, 480.0], "det_conf": 0.9420535564422607, "mean_kpt_conf": 0.921567131172527, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5612748419911018, "right_lift": -0.9449526466166054, "left_bend": 0.6744332169644489, "right_bend": 0.9208339801194245}, "keypoints": {"0": [371.2917175292969, 146.96383666992188, 0.998606264591217], "1": [394.56512451171875, 118.82980346679688, 0.9974007606506348], "2": [347.9696960449219, 121.25177001953125, 0.9933294057846069], "3": [429.4888610839844, 123.11215209960938, 0.9541902542114258], "4": [320.3430480957031, 127.82943725585938, 0.7368148565292358], "5": [486.8213806152344, 235.93304443359375, 0.9910792708396912], "6": [289.4785461425781, 256.7346496582031, 0.9943974018096924], "7": [614.2704467773438, 322.3653869628906, 0.8290602564811707], "8": [242.01858520507812, 393.7958984375, 0.8664352893829346], "9": [619.9957275390625, 202.9990997314453, 0.9062920212745667], "10": [244.4176025390625, 365.51953125, 0.8696326613426208], "11": [460.9239501953125, 480.0, 0.15529198944568634], "12": [337.2690124511719, 480.0, 0.18590104579925537], "13": [461.80157470703125, 429.462890625, 0.0022432736586779356], "14": [327.9621276855469, 426.4366149902344, 0.0028769865166395903], "15": [440.72479248046875, 431.1640625, 0.0002404403785476461], "16": [341.3965148925781, 427.06292724609375, 0.00029883382376283407]}} +{"t": 18.835025, "tracked": true, "track_id": 1, "bbox": [205.58975219726562, 35.85746383666992, 634.7774047851562, 480.0], "det_conf": 0.9377331137657166, "mean_kpt_conf": 0.9242283593524586, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.522188155389178, "right_lift": -0.947327541859138, "left_bend": 0.664811715180299, "right_bend": 0.9387788232820035}, "keypoints": {"0": [371.827392578125, 146.9844207763672, 0.9986447691917419], "1": [395.6581726074219, 119.74006652832031, 0.997528612613678], "2": [349.05206298828125, 121.64216613769531, 0.9932292699813843], "3": [430.97552490234375, 125.79844665527344, 0.9558245539665222], "4": [321.9627685546875, 129.29373168945312, 0.7219924926757812], "5": [488.94378662109375, 232.64749145507812, 0.9917090535163879], "6": [291.17236328125, 259.03240966796875, 0.9945153594017029], "7": [621.7314453125, 313.9533996582031, 0.8503962755203247], "8": [242.98513793945312, 401.5671691894531, 0.872636079788208], "9": [625.6027221679688, 191.65359497070312, 0.9144417643547058], "10": [248.195556640625, 362.8224182128906, 0.8755937218666077], "11": [470.7770080566406, 480.0, 0.162068173289299], "12": [346.114501953125, 480.0, 0.18655085563659668], "13": [477.6353454589844, 424.2334289550781, 0.002271879930049181], "14": [338.8335266113281, 423.161865234375, 0.002837760141119361], "15": [458.8480224609375, 432.7667236328125, 0.0002406431158306077], "16": [347.2832946777344, 424.3866271972656, 0.0002958947734441608]}} +{"t": 18.894243, "tracked": true, "track_id": 1, "bbox": [208.83045959472656, 36.49601745605469, 635.303955078125, 479.90728759765625], "det_conf": 0.9396623373031616, "mean_kpt_conf": 0.9306491017341614, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5296422656037914, "right_lift": -0.943819222420283, "left_bend": 0.660357241247156, "right_bend": 0.9466019085002119}, "keypoints": {"0": [372.0781555175781, 147.1358642578125, 0.9987309575080872], "1": [395.6824035644531, 120.48805236816406, 0.9977031350135803], "2": [349.8022155761719, 121.90798950195312, 0.993624210357666], "3": [430.56634521484375, 126.29763793945312, 0.9569298624992371], "4": [322.5872497558594, 128.72653198242188, 0.7259575724601746], "5": [484.90728759765625, 231.67300415039062, 0.9915999174118042], "6": [293.1244812011719, 257.2474060058594, 0.99518883228302], "7": [615.2398071289062, 313.05462646484375, 0.8671130537986755], "8": [244.41854858398438, 396.3543701171875, 0.9001479148864746], "9": [621.0130004882812, 207.0376434326172, 0.9176056981086731], "10": [250.59556579589844, 360.16094970703125, 0.8925389647483826], "11": [469.801025390625, 480.0, 0.2249261438846588], "12": [345.6838684082031, 480.0, 0.26611563563346863], "13": [479.30731201171875, 441.4431457519531, 0.0023333269637078047], "14": [325.3747863769531, 440.470703125, 0.002967246575281024], "15": [474.10943603515625, 443.41107177734375, 0.0002164255565730855], "16": [327.1455383300781, 432.9047546386719, 0.0002683888887986541]}} +{"t": 18.956959, "tracked": true, "track_id": 1, "bbox": [210.70843505859375, 36.835296630859375, 636.4393920898438, 479.8140869140625], "det_conf": 0.9411135315895081, "mean_kpt_conf": 0.9328316179188815, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5610779155445668, "right_lift": -0.9429690900128843, "left_bend": 0.6812758522024136, "right_bend": 0.9962972716053997}, "keypoints": {"0": [373.31689453125, 146.76515197753906, 0.9987710118293762], "1": [396.21429443359375, 120.64932250976562, 0.9976391792297363], "2": [351.1910400390625, 121.9920654296875, 0.9940908551216125], "3": [430.014404296875, 126.77890014648438, 0.9529524445533752], "4": [323.8305969238281, 128.9693603515625, 0.7478628158569336], "5": [487.0196533203125, 231.742919921875, 0.9920299053192139], "6": [291.8127746582031, 255.63034057617188, 0.9955471754074097], "7": [613.7841186523438, 317.6669616699219, 0.8674189448356628], "8": [242.201904296875, 396.1658935546875, 0.9065101146697998], "9": [616.5345458984375, 212.68295288085938, 0.9130618572235107], "10": [253.3367156982422, 363.4148864746094, 0.8952634930610657], "11": [476.538818359375, 480.0, 0.22643177211284637], "12": [350.41290283203125, 480.0, 0.2709801197052002], "13": [492.34710693359375, 439.62176513671875, 0.0022431036923080683], "14": [336.9915466308594, 438.5958557128906, 0.0029480892699211836], "15": [482.6481018066406, 443.29925537109375, 0.00021051841031294316], "16": [338.7239685058594, 433.6147155761719, 0.0002678812015801668]}} +{"t": 19.014223, "tracked": true, "track_id": 1, "bbox": [211.69236755371094, 37.69462966918945, 635.9864501953125, 480.0], "det_conf": 0.9460461139678955, "mean_kpt_conf": 0.9330574490807273, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5966366482683726, "right_lift": -0.9369273938945354, "left_bend": 0.6852171940388921, "right_bend": 0.9983490516294887}, "keypoints": {"0": [374.41082763671875, 147.26174926757812, 0.9987431168556213], "1": [397.224853515625, 121.06393432617188, 0.9977098703384399], "2": [352.38507080078125, 122.986328125, 0.9939397573471069], "3": [431.34552001953125, 127.51205444335938, 0.9556642770767212], "4": [325.7750244140625, 130.9344482421875, 0.7516773343086243], "5": [488.168701171875, 231.68719482421875, 0.991581380367279], "6": [290.86370849609375, 257.0317077636719, 0.9955845475196838], "7": [609.7335815429688, 322.0660400390625, 0.8634588718414307], "8": [237.43997192382812, 400.23834228515625, 0.9062577486038208], "9": [615.3466796875, 224.42953491210938, 0.9110658764839172], "10": [252.5972900390625, 360.24261474609375, 0.8979491591453552], "11": [474.3996887207031, 480.0, 0.20142985880374908], "12": [346.5511474609375, 480.0, 0.24542555212974548], "13": [491.5546569824219, 427.131591796875, 0.0023228595964610577], "14": [329.13201904296875, 429.62774658203125, 0.0030825738795101643], "15": [481.0533447265625, 439.39453125, 0.00023464670812245458], "16": [328.2484436035156, 433.38238525390625, 0.00030066908220760524]}} +{"t": 19.076685, "tracked": true, "track_id": 1, "bbox": [211.761474609375, 39.149776458740234, 635.023193359375, 479.8424072265625], "det_conf": 0.9504758715629578, "mean_kpt_conf": 0.9328732598911632, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6150086142477248, "right_lift": -0.9261576483513094, "left_bend": 0.720099281869836, "right_bend": 0.9422165402284828}, "keypoints": {"0": [376.68817138671875, 147.4295654296875, 0.9987961053848267], "1": [399.2258605957031, 120.79182434082031, 0.9977884292602539], "2": [353.94677734375, 122.80233764648438, 0.9943268895149231], "3": [433.1220703125, 126.90669250488281, 0.9538017511367798], "4": [325.9783630371094, 130.65646362304688, 0.7619289755821228], "5": [492.03839111328125, 233.0289306640625, 0.9911410808563232], "6": [290.114501953125, 255.7047119140625, 0.9954215884208679], "7": [611.4231567382812, 326.1434020996094, 0.8530564904212952], "8": [233.42218017578125, 394.92755126953125, 0.9048143625259399], "9": [608.8838500976562, 238.80271911621094, 0.9076564311981201], "10": [256.6750183105469, 358.508544921875, 0.9028737545013428], "11": [477.486328125, 480.0, 0.17778629064559937], "12": [346.94219970703125, 480.0, 0.22240720689296722], "13": [492.8450927734375, 421.891357421875, 0.002172651467844844], "14": [329.5960998535156, 423.5491027832031, 0.0029628202319145203], "15": [477.0081481933594, 438.7964782714844, 0.00023635316756553948], "16": [327.5315246582031, 432.90478515625, 0.00030869897454977036]}} +{"t": 19.134627, "tracked": true, "track_id": 1, "bbox": [211.2484893798828, 39.53852462768555, 634.1328125, 480.0], "det_conf": 0.9514989852905273, "mean_kpt_conf": 0.9330693212422457, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6701101257958635, "right_lift": -0.9293897517441401, "left_bend": 0.7640206203699217, "right_bend": 0.9084915459273577}, "keypoints": {"0": [378.97900390625, 146.9049072265625, 0.9987842440605164], "1": [401.60400390625, 121.06466674804688, 0.9978116154670715], "2": [356.1903991699219, 123.03176879882812, 0.9943183064460754], "3": [435.3520812988281, 129.14593505859375, 0.9550484418869019], "4": [327.92022705078125, 132.8399658203125, 0.7658362984657288], "5": [495.5723876953125, 233.44281005859375, 0.9908877611160278], "6": [290.18572998046875, 255.51560974121094, 0.9956194758415222], "7": [607.6640625, 334.63861083984375, 0.8495405316352844], "8": [233.33172607421875, 398.6734313964844, 0.9097391963005066], "9": [600.1182250976562, 255.5216522216797, 0.9011532068252563], "10": [263.47369384765625, 360.275634765625, 0.905023455619812], "11": [483.2194519042969, 480.0, 0.16773957014083862], "12": [350.3121337890625, 480.0, 0.21675533056259155], "13": [496.59661865234375, 414.03314208984375, 0.0022104450035840273], "14": [329.2566223144531, 416.60943603515625, 0.0031031451653689146], "15": [478.52886962890625, 438.84698486328125, 0.00024687647237442434], "16": [327.3874816894531, 433.456787109375, 0.0003313588385935873]}} +{"t": 19.196372, "tracked": true, "track_id": 1, "bbox": [211.84165954589844, 40.22141647338867, 633.9560546875, 480.0], "det_conf": 0.940339207649231, "mean_kpt_conf": 0.9274823719804938, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6598926484844689, "right_lift": -0.9285036486599156, "left_bend": 0.7244446322150446, "right_bend": 0.8160063445690852}, "keypoints": {"0": [381.1634826660156, 146.1982421875, 0.998636782169342], "1": [403.0442199707031, 121.48970031738281, 0.9975184202194214], "2": [358.48138427734375, 123.14472961425781, 0.9939569234848022], "3": [435.99774169921875, 130.851318359375, 0.9517925977706909], "4": [330.19464111328125, 133.9742431640625, 0.7787190675735474], "5": [498.52740478515625, 235.59954833984375, 0.9907132387161255], "6": [291.92510986328125, 254.93521118164062, 0.9954370856285095], "7": [606.286376953125, 330.24041748046875, 0.826974630355835], "8": [237.34164428710938, 391.422607421875, 0.9017342329025269], "9": [607.5293579101562, 250.3754119873047, 0.8794445395469666], "10": [273.33099365234375, 366.14398193359375, 0.8873785734176636], "11": [487.2876892089844, 475.20538330078125, 0.18190231919288635], "12": [355.4513244628906, 480.0, 0.2390841543674469], "13": [492.67547607421875, 415.4388122558594, 0.002491633640602231], "14": [338.1983642578125, 417.6439208984375, 0.0036356220953166485], "15": [462.30108642578125, 436.5441589355469, 0.0002870852767955512], "16": [339.42236328125, 434.4190368652344, 0.0003948241355828941]}} +{"t": 19.257293, "tracked": true, "track_id": 1, "bbox": [212.56541442871094, 41.37150955200195, 632.89306640625, 480.0], "det_conf": 0.9434237480163574, "mean_kpt_conf": 0.9310841397805647, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7195598535788865, "right_lift": -0.9342581255240267, "left_bend": 0.7566178015766715, "right_bend": 0.8107435265798575}, "keypoints": {"0": [385.29815673828125, 147.5696563720703, 0.9986674785614014], "1": [406.8579406738281, 122.37152099609375, 0.9974961876869202], "2": [362.18475341796875, 124.61604309082031, 0.9946359992027283], "3": [439.5663146972656, 130.88009643554688, 0.9458475112915039], "4": [332.9215393066406, 135.3800048828125, 0.813249945640564], "5": [501.59246826171875, 235.0652313232422, 0.9901918172836304], "6": [291.0325622558594, 255.6495819091797, 0.9958423972129822], "7": [601.1097412109375, 338.1837463378906, 0.8219424486160278], "8": [238.45608520507812, 393.39593505859375, 0.9123619794845581], "9": [600.9609985351562, 288.93646240234375, 0.8694663643836975], "10": [286.9085998535156, 359.41558837890625, 0.9022234082221985], "11": [487.12408447265625, 470.4151611328125, 0.20121169090270996], "12": [350.8902587890625, 480.0, 0.2726779878139496], "13": [502.850830078125, 407.07464599609375, 0.0034420681186020374], "14": [332.34326171875, 414.8455505371094, 0.005339972674846649], "15": [471.67083740234375, 440.8481750488281, 0.00043792283395305276], "16": [329.0001525878906, 442.7754211425781, 0.0006223397213034332]}} +{"t": 19.318077, "tracked": true, "track_id": 1, "bbox": [213.6889190673828, 42.39327621459961, 633.79150390625, 480.0], "det_conf": 0.9389970302581787, "mean_kpt_conf": 0.9306352842937816, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7270764660946567, "right_lift": -0.9362237300162048, "left_bend": 0.7485314146084434, "right_bend": 0.8218028050021752}, "keypoints": {"0": [388.5391845703125, 148.9061279296875, 0.9986522793769836], "1": [409.87969970703125, 123.46076965332031, 0.9972923398017883], "2": [365.2325134277344, 125.72093200683594, 0.9946586489677429], "3": [441.8576354980469, 131.06231689453125, 0.936665415763855], "4": [335.21160888671875, 135.481689453125, 0.8258587121963501], "5": [503.24951171875, 235.1595001220703, 0.9901358485221863], "6": [291.7342529296875, 256.0963439941406, 0.9958747029304504], "7": [600.566162109375, 338.2196960449219, 0.8096703290939331], "8": [238.58798217773438, 397.6904296875, 0.9075167775154114], "9": [602.7540283203125, 272.482177734375, 0.8736146092414856], "10": [296.97906494140625, 353.125732421875, 0.9070484638214111], "11": [491.447509765625, 468.9866943359375, 0.20698077976703644], "12": [356.643798828125, 480.0, 0.2823714315891266], "13": [500.6282653808594, 410.87493896484375, 0.003984290640801191], "14": [345.066162109375, 419.7540283203125, 0.006251470651477575], "15": [465.051025390625, 447.04132080078125, 0.00047260141582228243], "16": [348.3083801269531, 451.1910400390625, 0.0006740090320818126]}} +{"t": 19.375297, "tracked": true, "track_id": 1, "bbox": [217.36236572265625, 43.83304977416992, 634.6682739257812, 479.80316162109375], "det_conf": 0.9404376745223999, "mean_kpt_conf": 0.9275650598786094, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7379314123946014, "right_lift": -0.9395809694837434, "left_bend": 0.7938909296922493, "right_bend": 0.8134923441886799}, "keypoints": {"0": [391.39593505859375, 151.928466796875, 0.9986901879310608], "1": [412.3765869140625, 125.611083984375, 0.9971010088920593], "2": [367.63751220703125, 128.03445434570312, 0.9950543642044067], "3": [444.19195556640625, 131.1173858642578, 0.9232106804847717], "4": [336.49554443359375, 135.8912353515625, 0.8373806476593018], "5": [507.1510925292969, 237.2249755859375, 0.9898993372917175], "6": [292.3492736816406, 256.7719421386719, 0.9956852197647095], "7": [603.1328125, 342.174560546875, 0.7914140224456787], "8": [240.8848419189453, 398.02587890625, 0.9026771783828735], "9": [596.7102661132812, 273.526123046875, 0.8650234937667847], "10": [305.530517578125, 350.3476867675781, 0.9070795178413391], "11": [491.7698974609375, 471.726318359375, 0.1909792721271515], "12": [354.8259582519531, 480.0, 0.2646104395389557], "13": [502.24505615234375, 415.56781005859375, 0.003460046136751771], "14": [346.84063720703125, 423.64642333984375, 0.005575939547270536], "15": [459.4703063964844, 448.7041931152344, 0.0004020411579404026], "16": [346.9160461425781, 453.34320068359375, 0.000577337690629065]}} +{"t": 19.43433, "tracked": true, "track_id": 1, "bbox": [220.14007568359375, 44.52212142944336, 638.5386352539062, 479.2846374511719], "det_conf": 0.9400140047073364, "mean_kpt_conf": 0.924810452894731, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.686639839998382, "right_lift": -0.9461633666425632, "left_bend": 0.7197132973583297, "right_bend": 0.843479496996201}, "keypoints": {"0": [393.1711120605469, 151.8831787109375, 0.9985042810440063], "1": [415.21075439453125, 126.64834594726562, 0.9971753358840942], "2": [370.33172607421875, 127.93148803710938, 0.9937068819999695], "3": [447.4851989746094, 134.46412658691406, 0.9390721917152405], "4": [341.1240234375, 136.78311157226562, 0.8051689863204956], "5": [506.7774658203125, 237.0574493408203, 0.988944947719574], "6": [303.15264892578125, 257.6629333496094, 0.9945825934410095], "7": [609.8082275390625, 334.36865234375, 0.804901123046875], "8": [255.89761352539062, 395.79217529296875, 0.8864781260490417], "9": [613.8936157226562, 273.1239013671875, 0.8705627918243408], "10": [307.7440185546875, 347.54583740234375, 0.8938177227973938], "11": [495.34906005859375, 463.5891418457031, 0.143318310379982], "12": [365.15020751953125, 473.7264404296875, 0.19630880653858185], "13": [499.07073974609375, 404.72021484375, 0.002707128878682852], "14": [347.1805419921875, 412.00006103515625, 0.0039961859583854675], "15": [468.2442321777344, 436.6501159667969, 0.00032527762232348323], "16": [353.22314453125, 435.76580810546875, 0.0004412095877341926]}} +{"t": 19.497196, "tracked": true, "track_id": 1, "bbox": [223.74046325683594, 45.62294006347656, 639.7501831054688, 479.59173583984375], "det_conf": 0.9419477581977844, "mean_kpt_conf": 0.921918971972032, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.702619830604214, "right_lift": -0.9399609494814267, "left_bend": 0.7150367489275481, "right_bend": 0.8280220383849264}, "keypoints": {"0": [395.4188232421875, 152.55963134765625, 0.9984613656997681], "1": [417.4148254394531, 127.185546875, 0.997307538986206], "2": [372.51739501953125, 129.16864013671875, 0.9933712482452393], "3": [450.71435546875, 135.205810546875, 0.9462488889694214], "4": [344.0670166015625, 138.96826171875, 0.7945132851600647], "5": [510.93896484375, 239.28880310058594, 0.9885991811752319], "6": [305.3948059082031, 259.1749572753906, 0.9945181012153625], "7": [610.6973266601562, 337.79302978515625, 0.7961106300354004], "8": [256.50677490234375, 393.8226623535156, 0.8841594457626343], "9": [616.1070556640625, 285.7193603515625, 0.8602081537246704], "10": [312.1450500488281, 348.62445068359375, 0.8876108527183533], "11": [494.8385009765625, 465.1737060546875, 0.14235365390777588], "12": [363.392822265625, 474.84088134765625, 0.19743990898132324], "13": [496.2363586425781, 405.99639892578125, 0.0025547563564032316], "14": [342.52294921875, 414.2864074707031, 0.0038344229105859995], "15": [463.62109375, 436.2939453125, 0.00031615738407708704], "16": [347.6063537597656, 438.6025695800781, 0.00043505284702405334]}} +{"t": 19.554396, "tracked": true, "track_id": 1, "bbox": [227.4904327392578, 46.26289367675781, 640.0, 479.8339538574219], "det_conf": 0.9421574473381042, "mean_kpt_conf": 0.920987150885842, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7270826243993413, "right_lift": -0.941435138433814, "left_bend": 0.7722690881553871, "right_bend": 0.8214261537743334}, "keypoints": {"0": [397.95428466796875, 152.60964965820312, 0.998462438583374], "1": [419.5701904296875, 127.06369018554688, 0.9973093271255493], "2": [375.0384216308594, 129.61007690429688, 0.9935257434844971], "3": [452.7713317871094, 134.81809997558594, 0.947746217250824], "4": [347.0499267578125, 139.7428436279297, 0.7937005162239075], "5": [516.2677001953125, 238.8625946044922, 0.988634467124939], "6": [306.985107421875, 257.5527038574219, 0.9946040511131287], "7": [615.7953491210938, 344.26617431640625, 0.7884730100631714], "8": [257.98968505859375, 394.3463439941406, 0.8853789567947388], "9": [613.6551513671875, 292.46929931640625, 0.8547859787940979], "10": [316.47845458984375, 348.40167236328125, 0.8882379531860352], "11": [498.3834533691406, 464.87042236328125, 0.13154543936252594], "12": [364.7390441894531, 473.84857177734375, 0.18571828305721283], "13": [502.1070556640625, 400.23492431640625, 0.0025625790003687143], "14": [345.108642578125, 407.50946044921875, 0.003970693331211805], "15": [465.5192565917969, 435.80133056640625, 0.000337100587785244], "16": [348.3468933105469, 438.36053466796875, 0.00047627181629650295]}} +{"t": 19.62025, "tracked": true, "track_id": 1, "bbox": [231.04225158691406, 46.504390716552734, 640.0, 480.0], "det_conf": 0.9419465065002441, "mean_kpt_conf": 0.9218427593057806, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7265385352021201, "right_lift": -0.9397707929669573, "left_bend": 0.8340708976160738, "right_bend": 0.8172875341767334}, "keypoints": {"0": [400.7994384765625, 152.92471313476562, 0.9985184073448181], "1": [422.9941101074219, 127.994384765625, 0.9973689317703247], "2": [378.0864562988281, 129.47918701171875, 0.9937684535980225], "3": [456.369384765625, 136.68849182128906, 0.9487447142601013], "4": [349.5089111328125, 139.32843017578125, 0.7933790683746338], "5": [520.7986450195312, 239.53509521484375, 0.988902747631073], "6": [308.4637756347656, 258.4601135253906, 0.9951180219650269], "7": [617.5750732421875, 341.8625183105469, 0.7860405445098877], "8": [258.8807678222656, 394.7852783203125, 0.8947761654853821], "9": [604.47314453125, 287.43878173828125, 0.8503034114837646], "10": [319.40753173828125, 348.96795654296875, 0.8933498859405518], "11": [506.62200927734375, 473.27886962890625, 0.14466889202594757], "12": [370.8334655761719, 480.0, 0.20903025567531586], "13": [508.50701904296875, 407.32574462890625, 0.002474559936672449], "14": [351.90380859375, 413.0550231933594, 0.003965664654970169], "15": [466.5247497558594, 442.6866760253906, 0.0003229862777516246], "16": [353.10162353515625, 440.5057678222656, 0.0004698028787970543]}} +{"t": 19.681125, "tracked": true, "track_id": 1, "bbox": [234.1153106689453, 47.26266860961914, 640.0, 480.0], "det_conf": 0.9430099129676819, "mean_kpt_conf": 0.923276809128848, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7139530532760845, "right_lift": -0.9355257843076386, "left_bend": 0.8458141779062583, "right_bend": 0.811350040557641}, "keypoints": {"0": [403.8622131347656, 152.57066345214844, 0.9984503984451294], "1": [426.37493896484375, 128.52500915527344, 0.9972490668296814], "2": [381.4932861328125, 129.35986328125, 0.9938563704490662], "3": [459.2518615722656, 138.35015869140625, 0.9469705820083618], "4": [352.7944030761719, 139.63829040527344, 0.8091202974319458], "5": [519.8355712890625, 237.8518524169922, 0.988372266292572], "6": [311.1597595214844, 258.790283203125, 0.9950922727584839], "7": [617.04052734375, 336.96697998046875, 0.7926658391952515], "8": [260.275146484375, 393.5467834472656, 0.8979530930519104], "9": [607.0148315429688, 303.5264587402344, 0.8435143828392029], "10": [321.11431884765625, 350.3804931640625, 0.8928003311157227], "11": [506.51568603515625, 471.0328369140625, 0.16041076183319092], "12": [372.6348876953125, 480.0, 0.2278234213590622], "13": [515.5375366210938, 409.8116455078125, 0.002572164637967944], "14": [359.305419921875, 417.8349914550781, 0.004110116511583328], "15": [476.960693359375, 448.55084228515625, 0.0003350806946400553], "16": [358.1448974609375, 444.26385498046875, 0.00048519513802602887]}} +{"t": 19.740418, "tracked": true, "track_id": 1, "bbox": [238.22572326660156, 47.76888656616211, 640.0, 480.0], "det_conf": 0.9443234205245972, "mean_kpt_conf": 0.9258276495066556, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7382001949185565, "right_lift": -0.9316414021426009, "left_bend": 0.9917178469000355, "right_bend": 0.7888848261284248}, "keypoints": {"0": [407.68511962890625, 153.32643127441406, 0.9984885454177856], "1": [429.9074401855469, 129.3397979736328, 0.9973751306533813], "2": [385.70343017578125, 130.25399780273438, 0.9937537312507629], "3": [462.6650085449219, 138.404541015625, 0.9480134844779968], "4": [357.523681640625, 139.74789428710938, 0.7982476949691772], "5": [522.8037109375, 236.0941162109375, 0.9884775280952454], "6": [316.4129943847656, 255.76336669921875, 0.9950740933418274], "7": [615.7782592773438, 337.8369140625, 0.8147897124290466], "8": [265.02069091796875, 387.5244140625, 0.9091091156005859], "9": [607.931640625, 328.78839111328125, 0.8426213264465332], "10": [327.12591552734375, 350.66162109375, 0.8981537818908691], "11": [509.69598388671875, 472.7792663574219, 0.1813555508852005], "12": [375.91082763671875, 480.0, 0.2531777322292328], "13": [519.49169921875, 410.0920715332031, 0.002667664783075452], "14": [355.93695068359375, 418.88739013671875, 0.004209055099636316], "15": [483.5727233886719, 454.3478088378906, 0.00035276616108603776], "16": [351.0500793457031, 450.4525146484375, 0.0005056987283751369]}} +{"t": 19.799376, "tracked": true, "track_id": 1, "bbox": [241.88467407226562, 47.88788986206055, 640.0, 480.0], "det_conf": 0.9471067786216736, "mean_kpt_conf": 0.924298719926314, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.724853460068282, "right_lift": -0.9404717279525456, "left_bend": 0.9949461247174906, "right_bend": 0.8099543914926816}, "keypoints": {"0": [411.7970886230469, 152.56753540039062, 0.9984235763549805], "1": [434.2807922363281, 129.38504028320312, 0.9970793724060059], "2": [389.72747802734375, 129.30035400390625, 0.9939756989479065], "3": [465.6216735839844, 139.927978515625, 0.9410003423690796], "4": [360.0396728515625, 139.62112426757812, 0.8143054842948914], "5": [524.008056640625, 234.4654083251953, 0.9875420928001404], "6": [318.3727722167969, 257.9069519042969, 0.995000422000885], "7": [618.5196533203125, 333.9090881347656, 0.7983344793319702], "8": [268.65374755859375, 395.4862365722656, 0.9034633040428162], "9": [597.1906127929688, 312.16888427734375, 0.8417097926139832], "10": [328.8328552246094, 351.887451171875, 0.8964513540267944], "11": [513.7932739257812, 469.2467346191406, 0.1680820882320404], "12": [381.0704040527344, 480.0, 0.23795439302921295], "13": [521.6134033203125, 408.37030029296875, 0.002762333955615759], "14": [364.1879577636719, 416.62506103515625, 0.004359022248536348], "15": [483.57470703125, 457.42486572265625, 0.0003610048443078995], "16": [359.3009033203125, 447.84912109375, 0.0005177455022931099]}} +{"t": 19.857835, "tracked": true, "track_id": 1, "bbox": [244.88682556152344, 47.31053161621094, 640.0, 480.0], "det_conf": 0.9484648108482361, "mean_kpt_conf": 0.8922445286404003, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6676684644982306, "right_lift": -0.9383521922000386, "left_bend": 0.9781414972994341, "right_bend": 0.8133831751171237}, "keypoints": {"0": [415.3948974609375, 151.63699340820312, 0.9983168840408325], "1": [437.0596923828125, 129.14541625976562, 0.997101366519928], "2": [393.3951416015625, 129.41049194335938, 0.9941932559013367], "3": [468.28570556640625, 140.08889770507812, 0.9404963850975037], "4": [364.38299560546875, 141.12161254882812, 0.8125987648963928], "5": [528.0906982421875, 234.38861083984375, 0.9827940464019775], "6": [327.535400390625, 260.8242492675781, 0.993730902671814], "7": [626.806640625, 322.9220886230469, 0.6906249523162842], "8": [279.6088562011719, 390.9211120605469, 0.8584054112434387], "9": [598.681640625, 300.9856872558594, 0.7203128337860107], "10": [328.8606262207031, 354.89324951171875, 0.8261150121688843], "11": [523.9345092773438, 471.233154296875, 0.13585881888866425], "12": [394.39044189453125, 480.0, 0.20983682572841644], "13": [529.9097290039062, 414.5538330078125, 0.002573832403868437], "14": [377.1109924316406, 421.9070739746094, 0.0042793480679392815], "15": [500.3938903808594, 449.9423522949219, 0.00044276658445596695], "16": [381.4610900878906, 438.51776123046875, 0.0006554651772603393]}} +{"t": 19.920248, "tracked": true, "track_id": 1, "bbox": [248.9962921142578, 47.4510383605957, 640.0, 480.0], "det_conf": 0.9502460956573486, "mean_kpt_conf": 0.890889660878615, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6966278033941474, "right_lift": -0.9393780640685547, "left_bend": 0.8272093415691092, "right_bend": 0.8062181741271}, "keypoints": {"0": [419.75274658203125, 151.43328857421875, 0.9983452558517456], "1": [441.561279296875, 129.18875122070312, 0.9971967935562134], "2": [397.76080322265625, 129.0074462890625, 0.9944427609443665], "3": [472.54449462890625, 140.73318481445312, 0.9428539872169495], "4": [368.37542724609375, 140.84877014160156, 0.8207218647003174], "5": [530.5696411132812, 235.9862518310547, 0.982613742351532], "6": [331.95257568359375, 260.7734069824219, 0.9939053654670715], "7": [626.9570922851562, 329.57855224609375, 0.688854455947876], "8": [284.414306640625, 391.0113830566406, 0.8611173033714294], "9": [599.4971313476562, 323.2112731933594, 0.6990244388580322], "10": [331.8319091796875, 357.7269592285156, 0.820710301399231], "11": [526.2987060546875, 470.26055908203125, 0.13494905829429626], "12": [396.79913330078125, 480.0, 0.2089148908853531], "13": [538.128662109375, 413.27581787109375, 0.0025419003795832396], "14": [377.6929626464844, 420.48370361328125, 0.004251683130860329], "15": [513.25439453125, 448.3114013671875, 0.00046080397441983223], "16": [379.1026611328125, 435.58642578125, 0.0006864700699225068]}} +{"t": 19.979279, "tracked": true, "track_id": 1, "bbox": [252.62197875976562, 47.12023162841797, 640.0, 480.0], "det_conf": 0.9495132565498352, "mean_kpt_conf": 0.8887153213674371, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6982276379502322, "right_lift": -0.9421718812816345, "left_bend": 0.9637709578892518, "right_bend": 0.7991609449797389}, "keypoints": {"0": [424.8408508300781, 151.6685791015625, 0.9982737302780151], "1": [445.9941711425781, 128.30967712402344, 0.9968181848526001], "2": [401.7135925292969, 128.66958618164062, 0.9945789575576782], "3": [476.00482177734375, 137.7038116455078, 0.9263472557067871], "4": [369.97808837890625, 139.20297241210938, 0.840668261051178], "5": [533.846923828125, 236.21380615234375, 0.9822655916213989], "6": [331.6392822265625, 261.5373840332031, 0.9935798645019531], "7": [626.2740478515625, 326.36236572265625, 0.6711280345916748], "8": [284.8692626953125, 393.02484130859375, 0.8470503091812134], "9": [601.0030517578125, 295.3702087402344, 0.707466185092926], "10": [337.35455322265625, 357.2640380859375, 0.8176921606063843], "11": [531.7341918945312, 472.69525146484375, 0.13087478280067444], "12": [400.6850280761719, 480.0, 0.20005793869495392], "13": [540.08837890625, 418.5834045410156, 0.002402560319751501], "14": [383.31524658203125, 426.76788330078125, 0.0039061233401298523], "15": [510.0371398925781, 443.8404541015625, 0.00041133761988021433], "16": [388.44000244140625, 436.2784423828125, 0.0005937893874943256]}} +{"t": 20.039148, "tracked": true, "track_id": 1, "bbox": [254.98583984375, 46.570472717285156, 640.0, 480.0], "det_conf": 0.9498517513275146, "mean_kpt_conf": 0.9015387838537042, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7042619003511084, "right_lift": -0.9397242182087641, "left_bend": 0.8965248072754949, "right_bend": 0.7953108561647193}, "keypoints": {"0": [427.879638671875, 150.50619506835938, 0.9982554316520691], "1": [449.41839599609375, 126.7518310546875, 0.9966573715209961], "2": [404.6824035644531, 127.03602600097656, 0.9943552017211914], "3": [479.3600769042969, 135.46543884277344, 0.9252507090568542], "4": [372.90106201171875, 136.5625457763672, 0.839317798614502], "5": [533.5390014648438, 235.1121063232422, 0.9834749698638916], "6": [334.68609619140625, 257.7618713378906, 0.9939159750938416], "7": [626.0738525390625, 326.9068298339844, 0.7095192074775696], "8": [286.33404541015625, 390.646240234375, 0.862101674079895], "9": [604.309814453125, 283.45361328125, 0.7671990394592285], "10": [337.9284973144531, 356.93359375, 0.846879243850708], "11": [529.9136962890625, 473.5682373046875, 0.13824543356895447], "12": [401.9922180175781, 480.0, 0.2067064642906189], "13": [537.115966796875, 417.882568359375, 0.0025613433681428432], "14": [389.3544616699219, 424.0638427734375, 0.004056951496750116], "15": [512.2174072265625, 441.33758544921875, 0.00040569790871813893], "16": [400.9851989746094, 434.31024169921875, 0.0005762875662185252]}} +{"t": 20.098156, "tracked": true, "track_id": 1, "bbox": [256.8546142578125, 46.53055953979492, 639.5493774414062, 479.98822021484375], "det_conf": 0.9489128589630127, "mean_kpt_conf": 0.9004958109422163, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6677256435474852, "right_lift": -0.9334264917343085, "left_bend": 0.8890406503916756, "right_bend": 0.7845568343854834}, "keypoints": {"0": [429.69158935546875, 150.20455932617188, 0.9982433319091797], "1": [451.2666931152344, 127.1475830078125, 0.9965762495994568], "2": [406.49346923828125, 127.1199951171875, 0.9947258830070496], "3": [480.8696594238281, 136.47540283203125, 0.9197326898574829], "4": [374.4031982421875, 136.9794921875, 0.8542842268943787], "5": [531.794189453125, 233.21456909179688, 0.9829431772232056], "6": [336.3148498535156, 257.5373229980469, 0.9938430786132812], "7": [627.5494384765625, 319.10601806640625, 0.7110181450843811], "8": [286.28778076171875, 387.69525146484375, 0.8643209338188171], "9": [609.8082885742188, 285.9293518066406, 0.7496311068534851], "10": [339.4397277832031, 356.7655029296875, 0.8401350975036621], "11": [529.3218994140625, 474.0216369628906, 0.15202993154525757], "12": [402.8338623046875, 480.0, 0.22383172810077667], "13": [545.9290161132812, 422.49359130859375, 0.0023999300319701433], "14": [396.34259033203125, 429.9691467285156, 0.00383735285140574], "15": [525.4229125976562, 441.5180358886719, 0.0003844604652840644], "16": [403.61590576171875, 433.1938781738281, 0.0005466067232191563]}} +{"t": 20.160911, "tracked": true, "track_id": 1, "bbox": [257.8520812988281, 46.51371765136719, 639.0556030273438, 479.7710876464844], "det_conf": 0.9502228498458862, "mean_kpt_conf": 0.9074392914772034, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7280720540704027, "right_lift": -0.9341236987880681, "left_bend": 0.9281213707265054, "right_bend": 0.7878244504886678}, "keypoints": {"0": [430.4591979980469, 150.49362182617188, 0.9982808828353882], "1": [452.6045227050781, 126.70193481445312, 0.9967970252037048], "2": [407.4883117675781, 126.82757568359375, 0.994295060634613], "3": [483.38067626953125, 135.4359130859375, 0.9319224953651428], "4": [376.1900939941406, 135.90402221679688, 0.8354510068893433], "5": [535.0941772460938, 236.2937469482422, 0.9843852519989014], "6": [336.9576416015625, 256.6854553222656, 0.9943578839302063], "7": [625.053466796875, 331.8397521972656, 0.7330121397972107], "8": [286.31500244140625, 389.21539306640625, 0.8748120069503784], "9": [605.0325317382812, 297.6285400390625, 0.780741274356842], "10": [338.9277648925781, 357.7330017089844, 0.8577771782875061], "11": [527.0301513671875, 476.6590881347656, 0.14797692000865936], "12": [398.93194580078125, 480.0, 0.21871040761470795], "13": [538.8404541015625, 419.3884582519531, 0.0024972243700176477], "14": [387.4892883300781, 425.1863098144531, 0.003947712481021881], "15": [517.4765014648438, 439.72607421875, 0.00039294653106480837], "16": [397.9170837402344, 432.7342529296875, 0.0005589299253188074]}} +{"t": 20.220661, "tracked": true, "track_id": 1, "bbox": [257.8096618652344, 46.41630935668945, 638.7150268554688, 479.57196044921875], "det_conf": 0.9505401253700256, "mean_kpt_conf": 0.8964971791614186, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7283244667268823, "right_lift": -0.9353675528722657, "left_bend": 0.9385421484236737, "right_bend": 0.7998643898940502}, "keypoints": {"0": [431.1656494140625, 149.74777221679688, 0.9982372522354126], "1": [453.1911926269531, 126.41168212890625, 0.9967753291130066], "2": [408.010009765625, 126.60324096679688, 0.9944753050804138], "3": [483.8841552734375, 136.34239196777344, 0.9324164986610413], "4": [376.4413146972656, 137.1810302734375, 0.8394175171852112], "5": [537.7483520507812, 237.25074768066406, 0.9830014705657959], "6": [336.29559326171875, 258.2250061035156, 0.9940670728683472], "7": [627.9676513671875, 333.1436462402344, 0.689197838306427], "8": [285.9538269042969, 391.363525390625, 0.8578749299049377], "9": [602.704833984375, 293.01373291015625, 0.7408864498138428], "10": [338.62066650390625, 356.8162841796875, 0.8351193070411682], "11": [529.4834594726562, 475.38958740234375, 0.135984867811203], "12": [399.6756286621094, 480.0, 0.2063162624835968], "13": [540.6197509765625, 419.58990478515625, 0.002488116268068552], "14": [389.2648010253906, 424.96221923828125, 0.0040467181243002415], "15": [515.9235229492188, 440.6737365722656, 0.00041712902020663023], "16": [399.6549987792969, 433.13763427734375, 0.0006062123575247824]}} +{"t": 20.277919, "tracked": true, "track_id": 1, "bbox": [257.2503662109375, 46.36906814575195, 638.5095825195312, 479.454345703125], "det_conf": 0.9509609341621399, "mean_kpt_conf": 0.900511692870747, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7215879060611077, "right_lift": -0.9345962111726356, "left_bend": 0.9085468550244992, "right_bend": 0.7930638429851635}, "keypoints": {"0": [430.97442626953125, 149.75344848632812, 0.9982699155807495], "1": [452.6685791015625, 126.21054077148438, 0.9966447353363037], "2": [407.851806640625, 126.6405029296875, 0.9947366118431091], "3": [482.84674072265625, 134.9855194091797, 0.9248210787773132], "4": [376.1615905761719, 136.2644805908203, 0.8502547144889832], "5": [534.038330078125, 236.24798583984375, 0.9836899638175964], "6": [335.62255859375, 256.9530029296875, 0.9942048192024231], "7": [624.66943359375, 330.71014404296875, 0.7091848254203796], "8": [285.5281982421875, 388.5712890625, 0.8643355965614319], "9": [605.1317749023438, 292.94189453125, 0.750012993812561], "10": [336.3162536621094, 356.940673828125, 0.8394733667373657], "11": [524.724853515625, 476.8592834472656, 0.15196776390075684], "12": [396.4530944824219, 480.0, 0.22424952685832977], "13": [542.9234008789062, 424.22216796875, 0.0024743550457060337], "14": [391.0736083984375, 430.3670349121094, 0.003958799410611391], "15": [523.4138793945312, 438.79278564453125, 0.00039897114038467407], "16": [403.08551025390625, 433.16802978515625, 0.0005684986826963723]}} +{"t": 20.339707, "tracked": true, "track_id": 1, "bbox": [256.0267028808594, 45.718013763427734, 638.349609375, 479.228271484375], "det_conf": 0.9492188692092896, "mean_kpt_conf": 0.898931622505188, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7268136523096208, "right_lift": -0.9275802209955414, "left_bend": 0.9987414917738505, "right_bend": 0.7930623541444263}, "keypoints": {"0": [431.0225830078125, 150.31105041503906, 0.9983136653900146], "1": [452.5216979980469, 126.53305053710938, 0.996839165687561], "2": [407.50384521484375, 127.17982482910156, 0.9948053956031799], "3": [482.73004150390625, 135.44842529296875, 0.9266542196273804], "4": [375.436767578125, 137.42135620117188, 0.8494349122047424], "5": [535.5635986328125, 235.9128875732422, 0.9827824234962463], "6": [335.8489990234375, 257.876953125, 0.9939325451850891], "7": [625.6273193359375, 331.218994140625, 0.7025390267372131], "8": [283.349365234375, 388.21551513671875, 0.8631612062454224], "9": [603.7514038085938, 307.8856201171875, 0.7391096353530884], "10": [336.11212158203125, 356.7477111816406, 0.8406756520271301], "11": [527.8385009765625, 475.047607421875, 0.14088666439056396], "12": [398.22515869140625, 480.0, 0.21083909273147583], "13": [544.6414184570312, 420.40423583984375, 0.002367569599300623], "14": [387.5929260253906, 428.0616149902344, 0.0038103540427982807], "15": [522.6647338867188, 442.7708740234375, 0.000393001944757998], "16": [393.8184509277344, 437.2615966796875, 0.000562911038286984]}} +{"t": 20.398221, "tracked": true, "track_id": 1, "bbox": [254.378662109375, 45.97441482543945, 638.2809448242188, 479.1835021972656], "det_conf": 0.9503995776176453, "mean_kpt_conf": 0.9019265120679681, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7164374202515471, "right_lift": -0.9344481592027336, "left_bend": 0.8891948994652602, "right_bend": 0.7991683484207167}, "keypoints": {"0": [431.0880126953125, 150.13723754882812, 0.9983850717544556], "1": [452.35791015625, 126.35397338867188, 0.9966159462928772], "2": [407.59197998046875, 126.76205444335938, 0.9951909780502319], "3": [481.85711669921875, 135.38052368164062, 0.916924238204956], "4": [375.04327392578125, 136.80105590820312, 0.856734573841095], "5": [533.58056640625, 239.86961364746094, 0.9838610887527466], "6": [335.0571594238281, 257.80157470703125, 0.9939810633659363], "7": [627.60595703125, 336.4268798828125, 0.7070063948631287], "8": [284.92462158203125, 389.35552978515625, 0.8605668544769287], "9": [605.415771484375, 287.2672424316406, 0.7662246227264404], "10": [333.6750183105469, 357.7093811035156, 0.8457008004188538], "11": [521.2549438476562, 476.18212890625, 0.1407165676355362], "12": [392.6291198730469, 480.0, 0.20619656145572662], "13": [542.6493530273438, 422.89739990234375, 0.002533300779759884], "14": [387.6783447265625, 426.35113525390625, 0.00400648033246398], "15": [526.19580078125, 438.20440673828125, 0.000404695572797209], "16": [398.64129638671875, 432.20013427734375, 0.0005694417632184923]}} +{"t": 20.457853, "tracked": true, "track_id": 1, "bbox": [252.50953674316406, 45.81175231933594, 638.3338623046875, 479.36480712890625], "det_conf": 0.9480423927307129, "mean_kpt_conf": 0.9116507389328696, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.719289131576719, "right_lift": -0.9330364357981807, "left_bend": 0.8166276660816593, "right_bend": 0.8172463957266838}, "keypoints": {"0": [429.7475891113281, 149.80227661132812, 0.9983249306678772], "1": [451.5200500488281, 126.27731323242188, 0.996688187122345], "2": [406.56085205078125, 126.34585571289062, 0.9943986535072327], "3": [481.5682067871094, 135.6287384033203, 0.9243048429489136], "4": [374.8546142578125, 136.15794372558594, 0.8450180888175964], "5": [532.9749755859375, 236.70164489746094, 0.9853873252868652], "6": [335.43426513671875, 256.9736328125, 0.9943988919258118], "7": [623.4175415039062, 330.343994140625, 0.7523284554481506], "8": [284.5375061035156, 388.9661865234375, 0.8788445591926575], "9": [615.8787231445312, 291.54986572265625, 0.7952257394790649], "10": [331.5738525390625, 354.770263671875, 0.8632384538650513], "11": [524.627197265625, 473.6216735839844, 0.15911953151226044], "12": [396.9176025390625, 480.0, 0.2289441078901291], "13": [536.8598022460938, 419.4983215332031, 0.0025682332925498486], "14": [383.9755859375, 426.63824462890625, 0.00395168736577034], "15": [514.027099609375, 440.1705627441406, 0.0003693581966217607], "16": [392.08258056640625, 435.955078125, 0.0005109154153615236]}} +{"t": 20.521304, "tracked": true, "track_id": 1, "bbox": [250.29429626464844, 45.730628967285156, 638.409423828125, 479.3471984863281], "det_conf": 0.9489248991012573, "mean_kpt_conf": 0.9164340170946988, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7089511937535273, "right_lift": -0.932414525764933, "left_bend": 0.8313693241514744, "right_bend": 0.8348068041975737}, "keypoints": {"0": [428.4976501464844, 148.98178100585938, 0.9984027743339539], "1": [449.801513671875, 126.19419860839844, 0.9967982172966003], "2": [405.5263366699219, 125.93875122070312, 0.9944359064102173], "3": [478.93756103515625, 136.77940368652344, 0.9233465194702148], "4": [373.7652282714844, 137.08815002441406, 0.8488019704818726], "5": [530.10400390625, 235.84849548339844, 0.9863690137863159], "6": [333.92578125, 259.8045349121094, 0.9946120977401733], "7": [621.176513671875, 327.3979797363281, 0.7792462706565857], "8": [282.371826171875, 392.81756591796875, 0.8858367204666138], "9": [615.2924194335938, 304.64068603515625, 0.8047163486480713], "10": [328.42047119140625, 355.42205810546875, 0.8682083487510681], "11": [521.4985961914062, 474.0142517089844, 0.16174983978271484], "12": [394.05499267578125, 480.0, 0.2275017946958542], "13": [531.7528076171875, 415.780517578125, 0.0024771811440587044], "14": [375.2768249511719, 425.90350341796875, 0.0036661585327237844], "15": [507.89910888671875, 441.2775573730469, 0.0003511289833113551], "16": [378.4854431152344, 435.91326904296875, 0.0004702195874415338]}} +{"t": 20.57822, "tracked": true, "track_id": 1, "bbox": [247.46685791015625, 45.31722640991211, 638.4662475585938, 479.58502197265625], "det_conf": 0.947953462600708, "mean_kpt_conf": 0.8955716219815341, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6936541546734006, "right_lift": -0.9358405402773597, "left_bend": 0.9323173132237725, "right_bend": 0.8668324385552333}, "keypoints": {"0": [427.5052185058594, 147.5614013671875, 0.9982855916023254], "1": [448.75665283203125, 125.37628173828125, 0.996483564376831], "2": [404.7463684082031, 124.68492126464844, 0.994852602481842], "3": [477.1827087402344, 138.0609130859375, 0.904668927192688], "4": [372.142578125, 137.57553100585938, 0.8636066913604736], "5": [531.031982421875, 234.72703552246094, 0.9814060926437378], "6": [329.6782531738281, 262.7599792480469, 0.9926972985267639], "7": [626.3590087890625, 326.526611328125, 0.7008617520332336], "8": [276.8360290527344, 403.07940673828125, 0.8467536568641663], "9": [614.3609619140625, 308.6696472167969, 0.7340756058692932], "10": [327.39862060546875, 351.81622314453125, 0.83759605884552], "11": [525.5238647460938, 468.49481201171875, 0.11408565938472748], "12": [395.34454345703125, 480.0, 0.16996538639068604], "13": [532.0211181640625, 412.9989013671875, 0.002756075467914343], "14": [377.1132507324219, 425.36883544921875, 0.004259249661117792], "15": [501.8614196777344, 456.525146484375, 0.00044461744255386293], "16": [377.67413330078125, 447.385498046875, 0.0006031934753991663]}} +{"t": 20.640482, "tracked": true, "track_id": 1, "bbox": [244.7875213623047, 46.10758972167969, 638.1736450195312, 479.632568359375], "det_conf": 0.9483209252357483, "mean_kpt_conf": 0.9215335304086859, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8022802789036237, "right_lift": -0.9383339625281988, "left_bend": 0.8870157160677712, "right_bend": 0.8355696750964935}, "keypoints": {"0": [425.4459228515625, 148.61981201171875, 0.9985677003860474], "1": [446.6885986328125, 125.32928466796875, 0.9968344569206238], "2": [402.2356262207031, 125.6182861328125, 0.9953653812408447], "3": [475.25262451171875, 136.3601837158203, 0.9146835803985596], "4": [369.89544677734375, 137.16946411132812, 0.8619517087936401], "5": [530.8828125, 235.851318359375, 0.9868925213813782], "6": [323.2632141113281, 254.2433624267578, 0.9953398704528809], "7": [617.4011840820312, 352.1295166015625, 0.774324893951416], "8": [268.488037109375, 402.9067077636719, 0.9048954844474792], "9": [606.1962890625, 313.8475341796875, 0.814487636089325], "10": [329.01348876953125, 351.8018798828125, 0.8935256004333496], "11": [518.7701416015625, 472.5623779296875, 0.15072980523109436], "12": [383.4905090332031, 480.0, 0.22046411037445068], "13": [535.9230346679688, 404.9602966308594, 0.0028273409698158503], "14": [362.361328125, 412.7396240234375, 0.004563857801258564], "15": [504.93505859375, 453.3328552246094, 0.00040560399065725505], "16": [354.168212890625, 449.8399963378906, 0.0005787364789284766]}} +{"t": 20.698214, "tracked": true, "track_id": 1, "bbox": [242.69960021972656, 45.61275100708008, 638.0045776367188, 479.8639221191406], "det_conf": 0.9457468390464783, "mean_kpt_conf": 0.9287679249590094, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7784720278952131, "right_lift": -0.9385107119008442, "left_bend": 0.7623855455645934, "right_bend": 0.8237169604413247}, "keypoints": {"0": [422.5115051269531, 148.928955078125, 0.9984972476959229], "1": [444.0633239746094, 125.81434631347656, 0.9967905879020691], "2": [399.65985107421875, 125.89773559570312, 0.9948176741600037], "3": [473.183349609375, 136.48187255859375, 0.9204931855201721], "4": [368.0267333984375, 136.73512268066406, 0.8545792698860168], "5": [525.7994384765625, 236.10711669921875, 0.9882414937019348], "6": [321.44384765625, 254.2210693359375, 0.9953851103782654], "7": [612.3922119140625, 343.5028076171875, 0.8130845427513123], "8": [269.5981750488281, 395.15576171875, 0.9104312658309937], "9": [614.4891357421875, 312.6765441894531, 0.8444177508354187], "10": [326.9921569824219, 350.19842529296875, 0.8997090458869934], "11": [510.1920166015625, 474.06304931640625, 0.1869126558303833], "12": [377.2632751464844, 480.0, 0.25687718391418457], "13": [527.9842529296875, 407.9076843261719, 0.0031154025346040726], "14": [359.8514709472656, 417.3013000488281, 0.004763513803482056], "15": [499.1058044433594, 450.19879150390625, 0.00041824072832241654], "16": [357.97320556640625, 449.0821533203125, 0.0005732837598770857]}} +{"t": 20.75835, "tracked": true, "track_id": 1, "bbox": [240.33511352539062, 44.272483825683594, 637.9326782226562, 479.8525390625], "det_conf": 0.944495439529419, "mean_kpt_conf": 0.9301420775326815, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7763591448141037, "right_lift": -0.9294356558775952, "left_bend": 0.8446502353784451, "right_bend": 0.8321571397595066}, "keypoints": {"0": [418.40057373046875, 147.32493591308594, 0.99854576587677], "1": [440.41717529296875, 124.56622314453125, 0.9971108436584473], "2": [395.34173583984375, 125.09188842773438, 0.9946990013122559], "3": [470.91082763671875, 137.184326171875, 0.9356732368469238], "4": [364.83489990234375, 138.3441162109375, 0.8376888632774353], "5": [525.522216796875, 236.7881317138672, 0.9889606833457947], "6": [319.5826110839844, 254.1455535888672, 0.9954333901405334], "7": [615.4083251953125, 347.505126953125, 0.8186183571815491], "8": [263.24200439453125, 396.0621032714844, 0.9096590876579285], "9": [607.9989624023438, 309.76934814453125, 0.8532759547233582], "10": [322.26324462890625, 349.72479248046875, 0.901897668838501], "11": [509.6220703125, 475.79559326171875, 0.18417786061763763], "12": [376.7348327636719, 480.0, 0.2503231465816498], "13": [530.455810546875, 408.7767639160156, 0.0030318854842334986], "14": [367.9835205078125, 415.9232177734375, 0.004672293085604906], "15": [501.562255859375, 452.0997009277344, 0.00040321488631889224], "16": [365.5736083984375, 449.3492431640625, 0.0005656742723658681]}} +{"t": 20.820162, "tracked": true, "track_id": 1, "bbox": [236.96939086914062, 43.99516677856445, 637.7395629882812, 480.0], "det_conf": 0.9435583353042603, "mean_kpt_conf": 0.9231602116064592, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7388809496266731, "right_lift": -0.9343090081024715, "left_bend": 0.9152370621965051, "right_bend": 0.8368965100399784}, "keypoints": {"0": [413.3172607421875, 147.14163208007812, 0.9984741806983948], "1": [435.9718322753906, 124.50149536132812, 0.9970906972885132], "2": [390.43267822265625, 124.17790222167969, 0.9944901466369629], "3": [466.4908752441406, 137.11026000976562, 0.9365201592445374], "4": [359.392333984375, 136.5389862060547, 0.8287240862846375], "5": [521.5771484375, 233.89056396484375, 0.9875078797340393], "6": [316.8287048339844, 253.51287841796875, 0.9946658611297607], "7": [618.89892578125, 340.60675048828125, 0.8023661375045776], "8": [263.17425537109375, 394.1436767578125, 0.8964160084724426], "9": [606.4503173828125, 316.2868347167969, 0.8332078456878662], "10": [315.54241943359375, 350.576904296875, 0.8852993249893188], "11": [508.83905029296875, 473.88525390625, 0.15027378499507904], "12": [376.4451904296875, 480.0, 0.20639890432357788], "13": [524.1868896484375, 406.2303771972656, 0.00236500077880919], "14": [361.3855285644531, 412.35943603515625, 0.003567356616258621], "15": [495.91864013671875, 451.4447021484375, 0.0003305766440462321], "16": [358.0039367675781, 441.85760498046875, 0.0004564653499983251]}} +{"t": 20.878386, "tracked": true, "track_id": 1, "bbox": [232.48777770996094, 43.57075119018555, 637.825927734375, 480.0], "det_conf": 0.9424470663070679, "mean_kpt_conf": 0.9226940003308383, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7217311284221573, "right_lift": -0.9335732071862902, "left_bend": 0.8124506596646993, "right_bend": 0.8738965302644405}, "keypoints": {"0": [408.7381896972656, 147.44677734375, 0.9985089898109436], "1": [431.4932556152344, 123.55545043945312, 0.9972579479217529], "2": [385.8716735839844, 124.07122802734375, 0.9944930076599121], "3": [463.0304260253906, 134.32662963867188, 0.9389612078666687], "4": [355.48907470703125, 135.33204650878906, 0.8265578746795654], "5": [517.777587890625, 232.94764709472656, 0.9875668287277222], "6": [312.33319091796875, 257.005126953125, 0.9948033690452576], "7": [616.9461669921875, 336.3509826660156, 0.7965443730354309], "8": [256.688720703125, 401.9552001953125, 0.8881194591522217], "9": [609.5236206054688, 294.44183349609375, 0.8423242568969727], "10": [307.10992431640625, 349.1920166015625, 0.8844966888427734], "11": [506.9619445800781, 470.6448669433594, 0.14866650104522705], "12": [373.93231201171875, 480.0, 0.20189647376537323], "13": [526.4618530273438, 406.4751281738281, 0.0026010852307081223], "14": [360.67083740234375, 415.7524719238281, 0.003842808771878481], "15": [502.7813720703125, 446.7388916015625, 0.00035418046172708273], "16": [358.9421081542969, 440.7867431640625, 0.00048289462574757636]}} +{"t": 20.941981, "tracked": true, "track_id": 1, "bbox": [226.52191162109375, 42.915260314941406, 638.2154541015625, 480.0], "det_conf": 0.9419850707054138, "mean_kpt_conf": 0.9283178611235186, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.700471004142714, "right_lift": -0.937927232625164, "left_bend": 0.756849586985016, "right_bend": 0.8699080342108177}, "keypoints": {"0": [402.7105407714844, 146.40927124023438, 0.9986129999160767], "1": [425.6722717285156, 121.57037353515625, 0.9974141120910645], "2": [378.70013427734375, 122.97793579101562, 0.994621753692627], "3": [457.86590576171875, 132.05723571777344, 0.9411373734474182], "4": [347.8851013183594, 135.1221160888672, 0.822349488735199], "5": [513.2774047851562, 231.8234405517578, 0.9886168837547302], "6": [308.7983093261719, 254.61483764648438, 0.9946768283843994], "7": [620.06640625, 336.6358337402344, 0.8195165395736694], "8": [255.23895263671875, 399.4537353515625, 0.892420768737793], "9": [618.529296875, 286.8417663574219, 0.869446337223053], "10": [299.3826904296875, 353.2764587402344, 0.8926833868026733], "11": [500.8636474609375, 468.0680847167969, 0.1363896131515503], "12": [369.1817626953125, 479.2073974609375, 0.1816771924495697], "13": [517.2576904296875, 400.7062072753906, 0.0023738760501146317], "14": [353.8352966308594, 408.0242004394531, 0.0034149836283177137], "15": [496.622802734375, 440.1949157714844, 0.0003080424794461578], "16": [354.93670654296875, 436.2347412109375, 0.00041245747706852853]}} +{"t": 20.998573, "tracked": true, "track_id": 1, "bbox": [220.1423797607422, 40.90418243408203, 638.301513671875, 480.0], "det_conf": 0.9413989186286926, "mean_kpt_conf": 0.9207372936335477, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6617847880677569, "right_lift": -0.9471465965590252, "left_bend": 0.6891632947792025, "right_bend": 0.8908673351399312}, "keypoints": {"0": [395.98846435546875, 143.1911163330078, 0.9984985589981079], "1": [417.68841552734375, 119.82301330566406, 0.9969711303710938], "2": [373.0894775390625, 120.96678161621094, 0.9947195053100586], "3": [448.18572998046875, 132.63465881347656, 0.9255295395851135], "4": [343.11810302734375, 135.47274780273438, 0.8374267816543579], "5": [505.2113037109375, 231.54563903808594, 0.9866478443145752], "6": [301.4729919433594, 258.4976806640625, 0.9936285614967346], "7": [615.8005981445312, 329.167236328125, 0.7950042486190796], "8": [251.92555236816406, 404.78363037109375, 0.8780904412269592], "9": [621.48583984375, 285.3138427734375, 0.8418138027191162], "10": [295.4130859375, 349.8279113769531, 0.8797798156738281], "11": [493.11572265625, 467.1589660644531, 0.1292317807674408], "12": [362.2297668457031, 479.9271240234375, 0.1767759919166565], "13": [509.13916015625, 406.5494384765625, 0.0028387235943228006], "14": [350.9633483886719, 417.597412109375, 0.00422329967841506], "15": [485.52911376953125, 452.87554931640625, 0.000376223586499691], "16": [354.5567321777344, 448.9564208984375, 0.0005030964966863394]}} +{"t": 21.061056, "tracked": true, "track_id": 1, "bbox": [211.85836791992188, 39.769813537597656, 634.4773559570312, 479.5774841308594], "det_conf": 0.9388795495033264, "mean_kpt_conf": 0.9351931376890703, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7005106254781486, "right_lift": -0.9327255044443319, "left_bend": 0.7557418195374326, "right_bend": 0.8669930829017357}, "keypoints": {"0": [388.0789794921875, 144.4775390625, 0.9987761378288269], "1": [409.41705322265625, 119.23910522460938, 0.9973410964012146], "2": [364.5166320800781, 121.4744873046875, 0.9949536919593811], "3": [440.56561279296875, 128.395751953125, 0.9314337372779846], "4": [334.67559814453125, 132.85284423828125, 0.8144904375076294], "5": [499.6632080078125, 231.79315185546875, 0.9909046292304993], "6": [294.23291015625, 250.7811279296875, 0.9952579140663147], "7": [608.745849609375, 338.8686218261719, 0.8391940593719482], "8": [236.27694702148438, 400.6949462890625, 0.9029303789138794], "9": [606.060791015625, 240.62515258789062, 0.9066669940948486], "10": [289.4196472167969, 347.6958312988281, 0.9151754379272461], "11": [486.78594970703125, 471.7346496582031, 0.18060661852359772], "12": [356.4119567871094, 480.0, 0.22938190400600433], "13": [500.58319091796875, 406.27520751953125, 0.0037226122803986073], "14": [349.97149658203125, 409.431640625, 0.005340762436389923], "15": [475.98065185546875, 448.0994567871094, 0.0004230480990372598], "16": [350.36187744140625, 447.57623291015625, 0.0005664339405484498]}} +{"t": 21.119985, "tracked": true, "track_id": 1, "bbox": [204.19764709472656, 38.10500717163086, 626.5372314453125, 480.0], "det_conf": 0.9489871263504028, "mean_kpt_conf": 0.9369264245033264, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7070313883949287, "right_lift": -0.9372144310393088, "left_bend": 0.8561768150271372, "right_bend": 0.8668324782850889}, "keypoints": {"0": [381.1921081542969, 143.44927978515625, 0.9987602233886719], "1": [404.3277587890625, 118.55014038085938, 0.9973729848861694], "2": [357.9226379394531, 119.077880859375, 0.9952322840690613], "3": [435.59454345703125, 127.90525817871094, 0.9362916946411133], "4": [326.7860107421875, 128.79153442382812, 0.8323884010314941], "5": [491.4193115234375, 227.46688842773438, 0.9905913472175598], "6": [284.5234069824219, 249.0480194091797, 0.9955867528915405], "7": [600.9172973632812, 336.9415283203125, 0.8441534042358398], "8": [229.02737426757812, 398.18389892578125, 0.9093911647796631], "9": [584.4583129882812, 289.4588928222656, 0.8928171992301941], "10": [275.11773681640625, 351.087158203125, 0.9136052131652832], "11": [475.1805419921875, 472.4405822753906, 0.1886126846075058], "12": [342.7901611328125, 480.0, 0.24314211308956146], "13": [493.2920227050781, 408.97369384765625, 0.0034525555092841387], "14": [336.6992492675781, 413.6040344238281, 0.004972238093614578], "15": [466.6564636230469, 458.0091552734375, 0.00040780979907140136], "16": [335.18072509765625, 447.89129638671875, 0.0005456696380861104]}} +{"t": 21.179773, "tracked": true, "track_id": 1, "bbox": [193.0568084716797, 36.69731903076172, 621.765869140625, 480.0], "det_conf": 0.9454547762870789, "mean_kpt_conf": 0.9423709999431263, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6874447134581894, "right_lift": -0.9301063164620181, "left_bend": 0.7094567321758886, "right_bend": 0.8712614150197022}, "keypoints": {"0": [373.08526611328125, 142.89024353027344, 0.9988952875137329], "1": [395.96112060546875, 117.32733154296875, 0.997593104839325], "2": [349.9386901855469, 117.66064453125, 0.9953625202178955], "3": [427.5142517089844, 126.02740478515625, 0.9335074424743652], "4": [319.6168212890625, 126.08737182617188, 0.8245575428009033], "5": [478.82183837890625, 230.6723175048828, 0.990638256072998], "6": [279.9107666015625, 246.75308227539062, 0.9954168796539307], "7": [589.0360107421875, 334.9993896484375, 0.8666645884513855], "8": [221.75665283203125, 394.0194091796875, 0.9197329878807068], "9": [596.7577514648438, 257.9906311035156, 0.9168901443481445], "10": [265.3432312011719, 350.0071105957031, 0.9268222451210022], "11": [463.830078125, 477.90301513671875, 0.16476725041866302], "12": [333.7887268066406, 480.0, 0.2118137627840042], "13": [490.20989990234375, 407.89617919921875, 0.0025238380767405033], "14": [318.8094787597656, 410.1809997558594, 0.0035319251473993063], "15": [482.6216125488281, 446.15802001953125, 0.00028174405451864004], "16": [316.20111083984375, 440.84796142578125, 0.0003661170194391161]}} +{"t": 21.247407, "tracked": true, "track_id": 1, "bbox": [181.77171325683594, 32.96282958984375, 610.5838623046875, 480.0], "det_conf": 0.93918377161026, "mean_kpt_conf": 0.9396307143298063, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6621303262604538, "right_lift": -0.9304000821728792, "left_bend": 0.9579418242939494, "right_bend": 0.8783239881463832}, "keypoints": {"0": [366.51995849609375, 140.82064819335938, 0.9990035891532898], "1": [387.42486572265625, 116.31449890136719, 0.9969154596328735], "2": [343.2733154296875, 116.32710266113281, 0.9965267777442932], "3": [414.966552734375, 126.15553283691406, 0.8723974823951721], "4": [309.3256530761719, 126.45399475097656, 0.8712612390518188], "5": [470.93212890625, 226.56271362304688, 0.9899349808692932], "6": [271.0926513671875, 248.75323486328125, 0.9943978786468506], "7": [593.115234375, 334.5188903808594, 0.8579375743865967], "8": [211.419921875, 400.2200927734375, 0.911741316318512], "9": [561.06103515625, 297.601806640625, 0.9107848405838013], "10": [262.1500244140625, 346.5827941894531, 0.9350367188453674], "11": [459.99957275390625, 469.6409912109375, 0.16169781982898712], "12": [330.9502258300781, 479.3129577636719, 0.20768104493618011], "13": [475.50341796875, 421.1499938964844, 0.003236280055716634], "14": [322.54925537109375, 423.57354736328125, 0.004461382981389761], "15": [456.0829772949219, 475.90765380859375, 0.0003098583547398448], "16": [311.58001708984375, 457.79583740234375, 0.0003842322330456227]}} +{"t": 21.305148, "tracked": true, "track_id": 1, "bbox": [169.50103759765625, 33.02863693237305, 625.41357421875, 480.0], "det_conf": 0.9329725503921509, "mean_kpt_conf": 0.9392193339087747, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5470604350560077, "right_lift": -0.9281215660240896, "left_bend": 0.6062124262769867, "right_bend": 0.8745147958609382}, "keypoints": {"0": [356.9957275390625, 140.66944885253906, 0.9988909363746643], "1": [378.71612548828125, 115.47958374023438, 0.9968072175979614], "2": [333.7898864746094, 114.87959289550781, 0.9959678649902344], "3": [406.67340087890625, 124.16139221191406, 0.8793089389801025], "4": [301.0770568847656, 122.07077026367188, 0.8666175007820129], "5": [452.3496398925781, 231.63551330566406, 0.9908966422080994], "6": [261.8133239746094, 246.8993377685547, 0.9939119815826416], "7": [591.3741455078125, 322.4913635253906, 0.8689371347427368], "8": [203.0895233154297, 393.3031921386719, 0.8885433673858643], "9": [617.1514892578125, 219.46681213378906, 0.9313490986824036], "10": [253.79367065429688, 341.6043395996094, 0.9201819896697998], "11": [440.15185546875, 476.03399658203125, 0.13139332830905914], "12": [317.8976135253906, 480.0, 0.1506558358669281], "13": [477.8632507324219, 410.9923095703125, 0.0020528847817331553], "14": [328.9102783203125, 410.90399169921875, 0.00255196332000196], "15": [487.2864074707031, 431.09283447265625, 0.0002133168891305104], "16": [338.41278076171875, 421.5262145996094, 0.0002465936995577067]}} +{"t": 21.364776, "tracked": true, "track_id": 1, "bbox": [160.79090881347656, 32.8956413269043, 629.744384765625, 480.0], "det_conf": 0.9298763275146484, "mean_kpt_conf": 0.93749554048885, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5315893743297541, "right_lift": -0.9226410798174302, "left_bend": 0.6231133890546182, "right_bend": 0.8611851320915855}, "keypoints": {"0": [348.2275695800781, 140.62020874023438, 0.9989713430404663], "1": [371.0960388183594, 116.46115112304688, 0.9964883327484131], "2": [326.0330505371094, 114.16416931152344, 0.9966551065444946], "3": [398.01739501953125, 126.30232238769531, 0.8541414737701416], "4": [292.7899169921875, 119.49740600585938, 0.8865343332290649], "5": [436.88238525390625, 234.5167999267578, 0.9917727112770081], "6": [251.3157958984375, 239.81790161132812, 0.9934322834014893], "7": [593.0071411132812, 332.502685546875, 0.8732696175575256], "8": [188.10601806640625, 391.03912353515625, 0.8703756928443909], "9": [614.719482421875, 208.76605224609375, 0.9371774792671204], "10": [245.06053161621094, 339.1624755859375, 0.9136325716972351], "11": [420.4052429199219, 477.99200439453125, 0.10424607247114182], "12": [302.9190673828125, 480.0, 0.11085882037878036], "13": [469.57373046875, 408.36273193359375, 0.001846185652539134], "14": [335.0090637207031, 397.93377685546875, 0.002141571370884776], "15": [503.4388122558594, 419.2713623046875, 0.00020556552044581622], "16": [361.7006530761719, 398.9818115234375, 0.0002239484601886943]}} +{"t": 21.423077, "tracked": true, "track_id": 1, "bbox": [147.3175506591797, 30.807085037231445, 632.1456909179688, 480.0], "det_conf": 0.9213034510612488, "mean_kpt_conf": 0.9390330477194353, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5663133617662305, "right_lift": -0.9219008699632486, "left_bend": 0.6138905719485048, "right_bend": 0.8149427033744683}, "keypoints": {"0": [339.71258544921875, 139.6694793701172, 0.999022364616394], "1": [363.0615539550781, 114.08963012695312, 0.9965769648551941], "2": [316.29052734375, 113.39126586914062, 0.9970172643661499], "3": [391.0558776855469, 121.281982421875, 0.841152012348175], "4": [282.08404541015625, 117.71295166015625, 0.8964068293571472], "5": [426.892333984375, 230.17547607421875, 0.9913892149925232], "6": [237.3393096923828, 232.15670776367188, 0.9933909177780151], "7": [579.3614501953125, 334.9393005371094, 0.881956934928894], "8": [173.4141845703125, 384.27001953125, 0.880396842956543], "9": [610.006103515625, 211.968505859375, 0.9380122423171997], "10": [232.83712768554688, 344.3465881347656, 0.9140419363975525], "11": [402.748046875, 480.0, 0.11111490428447723], "12": [281.925048828125, 480.0, 0.11956124007701874], "13": [455.9519348144531, 415.3581237792969, 0.0016562356613576412], "14": [312.0709533691406, 405.14068603515625, 0.001901202485896647], "15": [502.58843994140625, 423.0962219238281, 0.00018630639533512294], "16": [351.3880920410156, 410.95782470703125, 0.00019808558863587677]}} +{"t": 21.484084, "tracked": true, "track_id": 1, "bbox": [132.38247680664062, 30.01897430419922, 626.3712768554688, 480.0], "det_conf": 0.9127981662750244, "mean_kpt_conf": 0.9430452639406378, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5733745280924879, "right_lift": -0.9249076612878966, "left_bend": 0.647222144759056, "right_bend": 0.8586870403593735}, "keypoints": {"0": [332.4590759277344, 139.59075927734375, 0.999151349067688], "1": [355.579345703125, 113.4791259765625, 0.9969334602355957], "2": [309.25115966796875, 112.11016845703125, 0.9969956874847412], "3": [382.7745056152344, 119.69808959960938, 0.8367348909378052], "4": [273.32177734375, 114.73284912109375, 0.8830484747886658], "5": [421.30059814453125, 227.4678497314453, 0.9932859539985657], "6": [228.13223266601562, 233.94058227539062, 0.9936270713806152], "7": [574.6526489257812, 334.789794921875, 0.9117717146873474], "8": [164.3972930908203, 388.9910888671875, 0.8863610625267029], "9": [590.9506225585938, 225.55352783203125, 0.9516297578811646], "10": [220.78334045410156, 337.83087158203125, 0.9239584803581238], "11": [401.8783264160156, 480.0, 0.14661142230033875], "12": [277.0507507324219, 480.0, 0.13967810571193695], "13": [458.40264892578125, 416.92755126953125, 0.001801927457563579], "14": [302.4101867675781, 409.21185302734375, 0.001854968024417758], "15": [497.36505126953125, 433.54595947265625, 0.00016646456788294017], "16": [325.5960998535156, 416.2088623046875, 0.00016565402620472014]}} +{"t": 21.543439, "tracked": true, "track_id": 1, "bbox": [117.34306335449219, 26.935901641845703, 618.9168701171875, 480.0], "det_conf": 0.9117055535316467, "mean_kpt_conf": 0.9457137151197954, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6290041513795687, "right_lift": -0.9258640216798611, "left_bend": 0.6382935066786606, "right_bend": 0.8487200751751764}, "keypoints": {"0": [323.82733154296875, 136.78330993652344, 0.9991567134857178], "1": [346.9678649902344, 112.0838623046875, 0.9970170259475708], "2": [301.3062744140625, 110.59991455078125, 0.996981680393219], "3": [373.7044677734375, 119.84344482421875, 0.8493088483810425], "4": [266.6809997558594, 114.1690673828125, 0.8840724229812622], "5": [412.8893737792969, 224.8258819580078, 0.9942190647125244], "6": [217.6485595703125, 225.34129333496094, 0.9944027066230774], "7": [559.27197265625, 343.2655944824219, 0.9227721691131592], "8": [152.39279174804688, 385.23773193359375, 0.9010730385780334], "9": [588.2494506835938, 227.76370239257812, 0.9461781978607178], "10": [207.23516845703125, 338.2842102050781, 0.9176689982414246], "11": [395.44281005859375, 480.0, 0.1619383692741394], "12": [268.59124755859375, 480.0, 0.15586338937282562], "13": [453.41595458984375, 413.282470703125, 0.0017215809784829617], "14": [287.0569763183594, 403.3384704589844, 0.0017628560308367014], "15": [496.1295166015625, 427.1160583496094, 0.00016268706531263888], "16": [314.1092529296875, 412.2792053222656, 0.00016121788939926773]}} +{"t": 21.603915, "tracked": true, "track_id": 1, "bbox": [104.75414276123047, 24.185791015625, 616.9288940429688, 480.0], "det_conf": 0.9031879901885986, "mean_kpt_conf": 0.9484234560619701, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6370987134741103, "right_lift": -0.9219764950933134, "left_bend": 0.6450610861842854, "right_bend": 0.8382199115642376}, "keypoints": {"0": [317.69146728515625, 135.35980224609375, 0.9992208480834961], "1": [341.5870666503906, 112.0601806640625, 0.9972090125083923], "2": [295.93310546875, 108.91836547851562, 0.997154712677002], "3": [368.4435729980469, 122.66490173339844, 0.8607973456382751], "4": [261.3515930175781, 113.15426635742188, 0.8806772828102112], "5": [406.87823486328125, 230.25912475585938, 0.9944936037063599], "6": [210.67276000976562, 222.00186157226562, 0.9946911931037903], "7": [553.8162231445312, 351.7123718261719, 0.9270192980766296], "8": [144.3887176513672, 379.8146057128906, 0.9104150533676147], "9": [583.4500122070312, 227.94403076171875, 0.9482414126396179], "10": [202.19773864746094, 334.49249267578125, 0.922738254070282], "11": [384.8663024902344, 480.0, 0.15911336243152618], "12": [255.8609619140625, 480.0, 0.15647856891155243], "13": [445.28265380859375, 414.8280029296875, 0.00158165511675179], "14": [269.159912109375, 398.3143310546875, 0.0016418993473052979], "15": [498.09130859375, 426.50238037109375, 0.00014819907664787024], "16": [298.47454833984375, 406.7516174316406, 0.00014812193694524467]}} +{"t": 21.664538, "tracked": true, "track_id": 1, "bbox": [98.83787536621094, 23.45711898803711, 621.2088623046875, 480.0], "det_conf": 0.911705732345581, "mean_kpt_conf": 0.9449084834619002, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6303049697920047, "right_lift": -0.9126652993856104, "left_bend": 0.6591306655893573, "right_bend": 0.8705624867372096}, "keypoints": {"0": [313.82049560546875, 135.7367401123047, 0.9990750551223755], "1": [338.4633483886719, 111.06427001953125, 0.9971919655799866], "2": [291.9126892089844, 107.36376953125, 0.9962002635002136], "3": [366.9256286621094, 120.14134216308594, 0.8849949836730957], "4": [256.9508056640625, 109.29425048828125, 0.850944995880127], "5": [407.5943908691406, 232.0250701904297, 0.9944736361503601], "6": [205.16070556640625, 230.90936279296875, 0.9948580265045166], "7": [552.5911865234375, 349.74578857421875, 0.9155049324035645], "8": [133.4530029296875, 391.03631591796875, 0.892221987247467], "9": [574.0162963867188, 233.34262084960938, 0.9472967386245728], "10": [196.42852783203125, 333.1728515625, 0.9212307333946228], "11": [393.5816650390625, 480.0, 0.1390082985162735], "12": [263.620849609375, 480.0, 0.13147632777690887], "13": [454.4394836425781, 405.6951904296875, 0.0016121078515425324], "14": [297.86846923828125, 394.8554992675781, 0.001701575005427003], "15": [488.00390625, 414.2590026855469, 0.00016628688899800181], "16": [324.8472595214844, 393.0427551269531, 0.00017475365893915296]}} +{"t": 21.727557, "tracked": true, "track_id": 1, "bbox": [95.51542663574219, 22.22690200805664, 620.4058837890625, 479.082275390625], "det_conf": 0.9151700735092163, "mean_kpt_conf": 0.9418089118870822, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6685306328891422, "right_lift": -0.9236110127300943, "left_bend": 0.6828026680712692, "right_bend": 0.8682031915867475}, "keypoints": {"0": [313.5147399902344, 135.75302124023438, 0.9990513920783997], "1": [338.00189208984375, 110.591796875, 0.9970858693122864], "2": [290.5150146484375, 107.78387451171875, 0.9963275790214539], "3": [366.291259765625, 120.13796997070312, 0.8762651681900024], "4": [254.23187255859375, 111.44137573242188, 0.8579351902008057], "5": [409.32049560546875, 233.9311065673828, 0.9943011999130249], "6": [200.8741455078125, 230.14051818847656, 0.9942235350608826], "7": [552.00634765625, 362.1976623535156, 0.9086769819259644], "8": [132.38623046875, 395.15765380859375, 0.8777979016304016], "9": [572.199951171875, 235.40615844726562, 0.9450011849403381], "10": [197.46263122558594, 332.89013671875, 0.9132320284843445], "11": [389.18853759765625, 480.0, 0.11407335847616196], "12": [254.9932098388672, 480.0, 0.10548894852399826], "13": [447.19427490234375, 395.857421875, 0.0016229052562266588], "14": [279.419189453125, 383.81463623046875, 0.001662677968852222], "15": [477.76666259765625, 408.66473388671875, 0.00017872947501018643], "16": [304.7156677246094, 391.0064392089844, 0.00018238971824757755]}} +{"t": 21.783463, "tracked": true, "track_id": 1, "bbox": [95.41819763183594, 21.871034622192383, 621.91650390625, 478.5064697265625], "det_conf": 0.915838897228241, "mean_kpt_conf": 0.9430197748270902, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.62889286504372, "right_lift": -0.9209580050350362, "left_bend": 0.6460345620469864, "right_bend": 0.8633152965628667}, "keypoints": {"0": [313.2569274902344, 136.4892120361328, 0.999077558517456], "1": [337.5035095214844, 112.10902404785156, 0.9968369007110596], "2": [290.9945983886719, 108.0987548828125, 0.9965081810951233], "3": [364.40692138671875, 121.49838256835938, 0.8466717004776001], "4": [254.08627319335938, 110.16914367675781, 0.8748124241828918], "5": [403.2315979003906, 232.1111297607422, 0.9946655035018921], "6": [200.49111938476562, 231.15284729003906, 0.9941694736480713], "7": [547.3126831054688, 348.654541015625, 0.9216200709342957], "8": [132.61920166015625, 391.5667724609375, 0.8822341561317444], "9": [572.691650390625, 235.87643432617188, 0.9492154717445374], "10": [199.33299255371094, 330.513427734375, 0.9174060821533203], "11": [387.42626953125, 480.0, 0.1432432383298874], "12": [256.371826171875, 480.0, 0.12620708346366882], "13": [449.98468017578125, 402.8372497558594, 0.0017395158065482974], "14": [287.1588134765625, 393.53216552734375, 0.001686136587522924], "15": [482.607666015625, 414.5497741699219, 0.0001772012619767338], "16": [311.4869384765625, 394.1416015625, 0.00017128876061178744]}} +{"t": 21.844677, "tracked": true, "track_id": 1, "bbox": [93.21116638183594, 21.86504364013672, 620.9658203125, 478.65203857421875], "det_conf": 0.9037311673164368, "mean_kpt_conf": 0.9468533776023171, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.648542430056158, "right_lift": -0.9184324970643787, "left_bend": 0.6079749103057885, "right_bend": 0.8535790083577719}, "keypoints": {"0": [315.9412841796875, 134.31936645507812, 0.9991645812988281], "1": [339.4732666015625, 110.54988098144531, 0.9968751668930054], "2": [293.18463134765625, 107.74314880371094, 0.9970888495445251], "3": [366.02325439453125, 120.66856384277344, 0.8309187293052673], "4": [256.9834899902344, 112.25401306152344, 0.8983572721481323], "5": [403.39544677734375, 227.94483947753906, 0.9946388602256775], "6": [204.62863159179688, 224.70443725585938, 0.9947012662887573], "7": [542.21044921875, 346.21856689453125, 0.928724467754364], "8": [137.13430786132812, 381.40936279296875, 0.9086896181106567], "9": [582.61865234375, 240.9313507080078, 0.9435627460479736], "10": [195.8168182373047, 331.568603515625, 0.9226655960083008], "11": [385.605224609375, 480.0, 0.14714258909225464], "12": [254.6813507080078, 480.0, 0.14059774577617645], "13": [456.358154296875, 395.7630615234375, 0.0015688901767134666], "14": [275.6829833984375, 387.59259033203125, 0.0016124277608469129], "15": [499.2137145996094, 404.7778015136719, 0.00016481631610076874], "16": [300.51641845703125, 391.9094543457031, 0.00016213793423958123]}} +{"t": 21.903195, "tracked": true, "track_id": 1, "bbox": [95.20457458496094, 21.29575538635254, 622.8085327148438, 478.2550354003906], "det_conf": 0.9042968153953552, "mean_kpt_conf": 0.9449594508517872, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6322853696937792, "right_lift": -0.9228436001718449, "left_bend": 0.6232946991158851, "right_bend": 0.8464713432318726}, "keypoints": {"0": [319.27679443359375, 132.4222412109375, 0.9990983009338379], "1": [342.81732177734375, 109.334228515625, 0.9967262744903564], "2": [297.0118713378906, 106.36515808105469, 0.9970121383666992], "3": [368.7148132324219, 120.65798950195312, 0.8427258133888245], "4": [261.93865966796875, 111.86447143554688, 0.8978374004364014], "5": [405.0719909667969, 226.86085510253906, 0.9939310550689697], "6": [210.14964294433594, 222.93020629882812, 0.9945037364959717], "7": [550.6521606445312, 345.67327880859375, 0.9148069024085999], "8": [142.95645141601562, 383.9189147949219, 0.8996999263763428], "9": [587.919189453125, 223.9750213623047, 0.9409253001213074], "10": [205.5568389892578, 331.92816162109375, 0.9172871112823486], "11": [386.08575439453125, 480.0, 0.1259717494249344], "12": [259.75177001953125, 480.0, 0.12539415061473846], "13": [448.28387451171875, 394.37347412109375, 0.0016849137609824538], "14": [283.1526184082031, 382.6436767578125, 0.0018063533352687955], "15": [494.5823669433594, 407.6037902832031, 0.00018805814033839852], "16": [314.46624755859375, 390.93316650390625, 0.00019175829947926104]}} +{"t": 21.964776, "tracked": true, "track_id": 1, "bbox": [100.31658935546875, 20.830608367919922, 623.8103637695312, 478.6214904785156], "det_conf": 0.9068262577056885, "mean_kpt_conf": 0.9428185441277244, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6216682888775651, "right_lift": -0.9250598100474275, "left_bend": 0.6238235576213587, "right_bend": 0.845110166040648}, "keypoints": {"0": [321.1440124511719, 132.45608520507812, 0.9990142583847046], "1": [345.2931823730469, 109.17819213867188, 0.9965733289718628], "2": [298.74407958984375, 105.60366821289062, 0.9966429471969604], "3": [372.09027099609375, 120.94541931152344, 0.8528180122375488], "4": [263.77508544921875, 110.77694702148438, 0.8907786011695862], "5": [407.10833740234375, 231.2453155517578, 0.9939547181129456], "6": [213.57589721679688, 227.51377868652344, 0.9944763779640198], "7": [552.2503662109375, 346.4405517578125, 0.9067280292510986], "8": [147.8457794189453, 387.60028076171875, 0.8878539800643921], "9": [589.16796875, 218.9527130126953, 0.9387202858924866], "10": [213.09661865234375, 333.24072265625, 0.9134434461593628], "11": [391.21417236328125, 480.0, 0.11851935088634491], "12": [267.3376770019531, 480.0, 0.11646305024623871], "13": [460.3212585449219, 396.2161865234375, 0.0016607834259048104], "14": [310.2113952636719, 384.86724853515625, 0.001827761996537447], "15": [503.5212097167969, 400.2052001953125, 0.00019394261471461505], "16": [347.1134948730469, 383.10418701171875, 0.00020456445054151118]}} +{"t": 22.022858, "tracked": true, "track_id": 1, "bbox": [100.96133422851562, 21.2804012298584, 623.4386596679688, 478.93304443359375], "det_conf": 0.9088746905326843, "mean_kpt_conf": 0.9439936876296997, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6331355803728088, "right_lift": -0.9296249848137513, "left_bend": 0.6328121554519354, "right_bend": 0.8373359646858592}, "keypoints": {"0": [323.02490234375, 133.1798858642578, 0.9990965127944946], "1": [346.839599609375, 109.19114685058594, 0.9968037605285645], "2": [299.7778625488281, 106.62930297851562, 0.9970515966415405], "3": [373.6788024902344, 120.01858520507812, 0.8496387004852295], "4": [263.8205871582031, 112.34091186523438, 0.8971370458602905], "5": [410.4664306640625, 230.04859924316406, 0.993519127368927], "6": [214.30209350585938, 226.4994354248047, 0.9946959614753723], "7": [554.1412963867188, 347.569091796875, 0.903048574924469], "8": [150.91619873046875, 386.4017333984375, 0.8996280431747437], "9": [589.6366577148438, 218.48977661132812, 0.9366586208343506], "10": [213.3376007080078, 335.6788330078125, 0.9166526198387146], "11": [391.306396484375, 480.0, 0.13007979094982147], "12": [263.9815368652344, 480.0, 0.13579991459846497], "13": [452.05792236328125, 405.5458068847656, 0.0016230868641287088], "14": [286.0544128417969, 393.57891845703125, 0.0018412048229947686], "15": [496.18353271484375, 411.8845520019531, 0.00017684999329503626], "16": [316.7995910644531, 397.1635437011719, 0.00018834578804671764]}} +{"t": 22.089116, "tracked": true, "track_id": 1, "bbox": [100.31400299072266, 22.81026268005371, 619.3952026367188, 479.4660949707031], "det_conf": 0.9071971774101257, "mean_kpt_conf": 0.9447096369483254, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6342627358921114, "right_lift": -0.9296503431535578, "left_bend": 0.618175701945814, "right_bend": 0.830802358698207}, "keypoints": {"0": [321.650634765625, 133.42953491210938, 0.9991577863693237], "1": [344.6486511230469, 110.52433776855469, 0.9965613484382629], "2": [299.560302734375, 107.14468383789062, 0.9972741007804871], "3": [369.8985595703125, 122.07188415527344, 0.8187193870544434], "4": [264.1128845214844, 112.34017944335938, 0.9066169261932373], "5": [406.2948303222656, 232.08352661132812, 0.9940624833106995], "6": [212.63217163085938, 225.99444580078125, 0.9948699474334717], "7": [549.448486328125, 349.5262451171875, 0.9138698577880859], "8": [149.96463012695312, 384.1163330078125, 0.9069055318832397], "9": [589.91748046875, 225.66506958007812, 0.941254734992981], "10": [211.0746612548828, 336.5009765625, 0.9225139021873474], "11": [387.9483642578125, 480.0, 0.13993382453918457], "12": [262.08148193359375, 480.0, 0.14258639514446259], "13": [454.7266845703125, 405.2386474609375, 0.0016473853029310703], "14": [290.3841857910156, 393.08416748046875, 0.0018339315429329872], "15": [500.71246337890625, 413.06463623046875, 0.00017037494399119169], "16": [323.1818542480469, 397.65655517578125, 0.00017728711827658117]}} +{"t": 22.124516, "tracked": true, "track_id": 1, "bbox": [101.43803405761719, 22.70273208618164, 617.0001220703125, 479.58807373046875], "det_conf": 0.9057109355926514, "mean_kpt_conf": 0.9380985823544589, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6287294898864239, "right_lift": -0.9337885468223482, "left_bend": 0.6180317159690302, "right_bend": 0.8152729185440594}, "keypoints": {"0": [321.87908935546875, 133.36669921875, 0.9991138577461243], "1": [344.5820617675781, 109.94270324707031, 0.995970606803894], "2": [299.4715576171875, 106.64845275878906, 0.9974697828292847], "3": [368.5442810058594, 120.09591674804688, 0.770153820514679], "4": [262.3536376953125, 110.51455688476562, 0.9235744476318359], "5": [403.63238525390625, 230.7611846923828, 0.9934635162353516], "6": [209.70033264160156, 224.69720458984375, 0.9942071437835693], "7": [548.0719604492188, 347.54437255859375, 0.9020000696182251], "8": [149.253662109375, 382.44012451171875, 0.8896389007568359], "9": [587.264892578125, 224.8161163330078, 0.9383399486541748], "10": [212.04380798339844, 337.1837158203125, 0.9151523113250732], "11": [384.8230895996094, 480.0, 0.12918199598789215], "12": [260.13507080078125, 480.0, 0.12977084517478943], "13": [443.78369140625, 406.44158935546875, 0.0017982808640226722], "14": [288.95672607421875, 394.3197021484375, 0.0019209518795832992], "15": [489.11700439453125, 415.36419677734375, 0.00019006432557944208], "16": [329.7303466796875, 399.95404052734375, 0.0001885817473521456]}} +{"t": 22.189963, "tracked": true, "track_id": 1, "bbox": [96.8902587890625, 21.21702766418457, 615.682861328125, 479.7974548339844], "det_conf": 0.9041754603385925, "mean_kpt_conf": 0.9463582851670005, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6283484739174962, "right_lift": -0.9284653331550654, "left_bend": 0.6091221211128355, "right_bend": 0.8458491629627285}, "keypoints": {"0": [318.35748291015625, 130.20074462890625, 0.9991509914398193], "1": [341.273681640625, 108.12055969238281, 0.9966757297515869], "2": [296.49554443359375, 104.65298461914062, 0.9972206354141235], "3": [366.5575866699219, 121.06185913085938, 0.8301209807395935], "4": [261.4417419433594, 111.51229858398438, 0.9031814336776733], "5": [404.7361755371094, 228.39364624023438, 0.9942102432250977], "6": [208.47955322265625, 224.54212951660156, 0.9948530793190002], "7": [546.5460205078125, 342.935791015625, 0.9210698008537292], "8": [145.84518432617188, 381.1141662597656, 0.9108480215072632], "9": [586.891357421875, 227.63986206054688, 0.9413755536079407], "10": [201.48590087890625, 333.67694091796875, 0.921234667301178], "11": [384.0859375, 480.0, 0.15409231185913086], "12": [255.4342498779297, 480.0, 0.15484662353992462], "13": [451.04718017578125, 401.96258544921875, 0.0017294990830123425], "14": [276.2767333984375, 391.38726806640625, 0.001876838388852775], "15": [493.2126159667969, 414.3805847167969, 0.0001765450433595106], "16": [303.052734375, 398.7429504394531, 0.00017996603855863214]}} +{"t": 22.258013, "tracked": true, "track_id": 1, "bbox": [92.12223815917969, 20.38176727294922, 615.25048828125, 479.9202575683594], "det_conf": 0.9027009606361389, "mean_kpt_conf": 0.9428369673815641, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6114795818915657, "right_lift": -0.9175985515540457, "left_bend": 0.6129204370146897, "right_bend": 0.8533808302414708}, "keypoints": {"0": [315.87530517578125, 129.9357147216797, 0.9991053938865662], "1": [339.08026123046875, 107.61402893066406, 0.996640682220459], "2": [293.2822265625, 104.13046264648438, 0.997194766998291], "3": [364.4436340332031, 121.64361572265625, 0.8361788988113403], "4": [257.59600830078125, 112.30294799804688, 0.904647171497345], "5": [399.5350646972656, 233.6182861328125, 0.9930431842803955], "6": [206.0118865966797, 226.58956909179688, 0.993901252746582], "7": [546.3829956054688, 347.1011962890625, 0.9025140404701233], "8": [138.89845275878906, 381.5125732421875, 0.8876703381538391], "9": [587.01123046875, 217.22509765625, 0.9422907829284668], "10": [200.26394653320312, 329.6803283691406, 0.9180201292037964], "11": [374.42059326171875, 480.0, 0.11199408769607544], "12": [249.72410583496094, 480.0, 0.1130027025938034], "13": [436.71820068359375, 399.5744323730469, 0.0017289937241002917], "14": [278.0825500488281, 386.00640869140625, 0.001869963831268251], "15": [487.0750732421875, 412.1667785644531, 0.00019259938562754542], "16": [315.18743896484375, 396.17181396484375, 0.00019637279910966754]}} +{"t": 22.320686, "tracked": true, "track_id": 1, "bbox": [93.26997375488281, 20.015596389770508, 619.4341430664062, 479.92022705078125], "det_conf": 0.8996949195861816, "mean_kpt_conf": 0.9408842867070978, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6127611241378564, "right_lift": -0.9061120766509441, "left_bend": 0.6485240900261122, "right_bend": 0.8585481386753057}, "keypoints": {"0": [315.5026550292969, 130.5557861328125, 0.9990518689155579], "1": [338.2202453613281, 106.62954711914062, 0.9967647790908813], "2": [293.14984130859375, 103.7314453125, 0.9966933727264404], "3": [364.5069580078125, 117.77688598632812, 0.8607401251792908], "4": [257.8782653808594, 109.40093994140625, 0.8832607269287109], "5": [404.66937255859375, 235.9369659423828, 0.993924081325531], "6": [203.58367919921875, 232.29800415039062, 0.9943349957466125], "7": [551.0748901367188, 349.4574279785156, 0.8959523439407349], "8": [130.2742156982422, 389.32086181640625, 0.8715800046920776], "9": [577.68603515625, 213.25418090820312, 0.9441245794296265], "10": [197.9794158935547, 333.4848937988281, 0.9133002758026123], "11": [379.2664794921875, 480.0, 0.11896724998950958], "12": [251.83004760742188, 480.0, 0.11303216218948364], "13": [439.41937255859375, 404.6159362792969, 0.0017984152073040605], "14": [292.2312316894531, 392.4862365722656, 0.0019190300954505801], "15": [471.3036193847656, 408.5291748046875, 0.000195636079297401], "16": [321.2392883300781, 392.8034973144531, 0.00020293724082875997]}} +{"t": 22.387698, "tracked": true, "track_id": 1, "bbox": [94.81015014648438, 19.624786376953125, 612.4722900390625, 480.0], "det_conf": 0.9152419567108154, "mean_kpt_conf": 0.9437903707677667, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.63480708309023, "right_lift": -0.9236129715687291, "left_bend": 0.6666160292872346, "right_bend": 0.8631869493570231}, "keypoints": {"0": [316.13763427734375, 130.95968627929688, 0.9991245865821838], "1": [339.25970458984375, 106.44023132324219, 0.9968084692955017], "2": [292.8960266113281, 104.12838745117188, 0.9970062375068665], "3": [365.4979553222656, 116.58018493652344, 0.8441383242607117], "4": [255.8184814453125, 109.62548828125, 0.893329918384552], "5": [407.3295593261719, 229.57667541503906, 0.9944724440574646], "6": [201.51129150390625, 230.54556274414062, 0.9947420358657837], "7": [551.8104858398438, 348.27862548828125, 0.9104697108268738], "8": [134.18600463867188, 392.7637634277344, 0.8862910866737366], "9": [572.4962158203125, 223.52615356445312, 0.9468603730201721], "10": [196.5495147705078, 334.9461975097656, 0.9184508919715881], "11": [385.9061584472656, 480.0, 0.14989341795444489], "12": [254.4008331298828, 480.0, 0.14091654121875763], "13": [444.0782470703125, 409.2071533203125, 0.0019343734020367265], "14": [286.32958984375, 400.08209228515625, 0.0020075631327927113], "15": [471.22412109375, 421.6431884765625, 0.0001870684209279716], "16": [312.0954895019531, 406.1487731933594, 0.00018882390577346087]}} +{"t": 22.451344, "tracked": true, "track_id": 1, "bbox": [95.75084686279297, 19.676639556884766, 616.2396240234375, 480.0], "det_conf": 0.9058203101158142, "mean_kpt_conf": 0.9442178065126593, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6508761412913616, "right_lift": -0.9234942999787111, "left_bend": 0.6831176393949299, "right_bend": 0.8724282632293071}, "keypoints": {"0": [315.46954345703125, 129.86097717285156, 0.9991224408149719], "1": [338.5304260253906, 106.25732421875, 0.9969769716262817], "2": [292.5684814453125, 103.44146728515625, 0.996895432472229], "3": [364.9791259765625, 118.871826171875, 0.8683234453201294], "4": [256.41473388671875, 110.99861145019531, 0.8815740346908569], "5": [408.98406982421875, 235.6807098388672, 0.9942347407341003], "6": [201.87364196777344, 231.72329711914062, 0.9948477745056152], "7": [552.3671264648438, 358.6082458496094, 0.9030225276947021], "8": [135.633056640625, 391.18853759765625, 0.8875791430473328], "9": [569.928466796875, 227.8022918701172, 0.9448720216751099], "10": [195.78524780273438, 332.1194763183594, 0.9189473390579224], "11": [383.4670104980469, 480.0, 0.1293305903673172], "12": [250.8953094482422, 480.0, 0.12648770213127136], "13": [441.61077880859375, 406.14654541015625, 0.0017374246381223202], "14": [280.3424072265625, 393.31109619140625, 0.0018925617914646864], "15": [470.29827880859375, 417.78912353515625, 0.00017862503591459244], "16": [307.8130798339844, 400.6743469238281, 0.00018860888667404652]}} +{"t": 22.516559, "tracked": true, "track_id": 1, "bbox": [96.02140808105469, 19.56161880493164, 606.0911865234375, 480.0], "det_conf": 0.9197685122489929, "mean_kpt_conf": 0.9444163333285939, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6528945249676658, "right_lift": -0.9176965717742535, "left_bend": 0.6770062234933745, "right_bend": 0.8590400742975566}, "keypoints": {"0": [314.7032470703125, 130.7691192626953, 0.9990752935409546], "1": [338.0633544921875, 106.9698486328125, 0.9968517422676086], "2": [291.7414245605469, 104.11724853515625, 0.9967689514160156], "3": [364.6366882324219, 118.81834411621094, 0.8635839819908142], "4": [255.66949462890625, 110.80612182617188, 0.8837814927101135], "5": [404.0423278808594, 233.50137329101562, 0.9939206838607788], "6": [202.6674041748047, 230.72789001464844, 0.9945634007453918], "7": [544.1339721679688, 354.2554931640625, 0.9063394069671631], "8": [134.1993408203125, 388.88482666015625, 0.8886813521385193], "9": [562.6627197265625, 235.92086791992188, 0.9449232220649719], "10": [196.26547241210938, 334.51397705078125, 0.9200901389122009], "11": [378.929931640625, 480.0, 0.14122268557548523], "12": [249.87142944335938, 480.0, 0.13641968369483948], "13": [441.0616455078125, 409.8695068359375, 0.0017998855328187346], "14": [284.7366027832031, 398.8968505859375, 0.0019378082361072302], "15": [471.83056640625, 422.1407470703125, 0.00018098269356414676], "16": [309.9627990722656, 405.70831298828125, 0.00018915475811809301]}} +{"t": 22.553133, "tracked": true, "track_id": 1, "bbox": [96.81089782714844, 19.849435806274414, 602.4954833984375, 479.8100280761719], "det_conf": 0.9246858954429626, "mean_kpt_conf": 0.9454568353566256, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6547516093584296, "right_lift": -0.9192140298755698, "left_bend": 0.6529677317477959, "right_bend": 0.8638705158076404}, "keypoints": {"0": [315.3522033691406, 129.99111938476562, 0.9991549253463745], "1": [338.1100769042969, 107.01296997070312, 0.9966458678245544], "2": [292.707275390625, 103.1373291015625, 0.9971106052398682], "3": [362.79522705078125, 119.27288818359375, 0.8179993033409119], "4": [255.25567626953125, 109.14225769042969, 0.9023271799087524], "5": [399.86370849609375, 230.74794006347656, 0.994424045085907], "6": [201.60092163085938, 229.96136474609375, 0.9948663711547852], "7": [537.9447021484375, 350.36090087890625, 0.9207198619842529], "8": [132.55126953125, 391.15521240234375, 0.9028520584106445], "9": [562.9160766601562, 245.2705535888672, 0.9467005133628845], "10": [196.81265258789062, 332.6651611328125, 0.9272244572639465], "11": [380.64801025390625, 480.0, 0.1629294604063034], "12": [251.60682678222656, 480.0, 0.15439361333847046], "13": [444.56512451171875, 411.0635681152344, 0.0017667111242190003], "14": [278.386962890625, 402.894287109375, 0.0018288114806637168], "15": [476.478271484375, 425.1465759277344, 0.0001651206985116005], "16": [293.9981994628906, 406.887451171875, 0.00016446811787318438]}} +{"t": 22.617179, "tracked": true, "track_id": 1, "bbox": [95.82506561279297, 20.49738311767578, 594.8654174804688, 479.6668395996094], "det_conf": 0.9344298839569092, "mean_kpt_conf": 0.9421402432701804, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6399576511429219, "right_lift": -0.924761278165822, "left_bend": 0.6625402423171084, "right_bend": 0.8504087255367249}, "keypoints": {"0": [315.7251281738281, 131.11959838867188, 0.9990884065628052], "1": [338.6873779296875, 107.31063842773438, 0.9964413046836853], "2": [293.297607421875, 103.92575073242188, 0.9971326589584351], "3": [363.585693359375, 117.71894836425781, 0.8170506954193115], "4": [255.80453491210938, 108.59654235839844, 0.9093725681304932], "5": [403.9577941894531, 227.56277465820312, 0.9936961531639099], "6": [198.99925231933594, 231.18954467773438, 0.9944883584976196], "7": [543.3662719726562, 343.66680908203125, 0.9064944386482239], "8": [133.89849853515625, 389.3895568847656, 0.8882235288619995], "9": [559.2942504882812, 257.9893493652344, 0.9411484599113464], "10": [196.74977111816406, 335.31756591796875, 0.9204061031341553], "11": [380.7380065917969, 480.0, 0.14512884616851807], "12": [249.12005615234375, 480.0, 0.13959118723869324], "13": [437.7445373535156, 405.6806335449219, 0.0019211473409086466], "14": [278.29986572265625, 400.5142822265625, 0.0020055959466844797], "15": [457.8282470703125, 431.1854248046875, 0.00019053011783398688], "16": [300.2225646972656, 412.6563720703125, 0.00018998242740053684]}} +{"t": 22.685439, "tracked": true, "track_id": 1, "bbox": [96.10658264160156, 20.856725692749023, 588.961181640625, 479.7193908691406], "det_conf": 0.9249618053436279, "mean_kpt_conf": 0.9470605687661604, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6512950697715876, "right_lift": -0.922668548975511, "left_bend": 0.8003146155805916, "right_bend": 0.8233609406237294}, "keypoints": {"0": [315.3640441894531, 130.59033203125, 0.9992364645004272], "1": [337.9640197753906, 107.47348022460938, 0.9964556694030762], "2": [293.08233642578125, 103.89691162109375, 0.9976111650466919], "3": [362.5154113769531, 118.60568237304688, 0.7933542132377625], "4": [254.45913696289062, 109.136962890625, 0.9137168526649475], "5": [406.5103759765625, 226.1134490966797, 0.9946448802947998], "6": [198.70782470703125, 228.80789184570312, 0.9954257607460022], "7": [546.6407470703125, 346.3865966796875, 0.9222208857536316], "8": [133.55374145507812, 384.7118225097656, 0.9158604741096497], "9": [529.3535766601562, 273.9197998046875, 0.9489523768424988], "10": [201.61782836914062, 336.1185302734375, 0.9401875138282776], "11": [387.4806213378906, 480.0, 0.20009727776050568], "12": [252.9611358642578, 480.0, 0.1973600834608078], "13": [452.12811279296875, 416.3382568359375, 0.0021857384126633406], "14": [290.17913818359375, 407.46490478515625, 0.002386339707300067], "15": [473.6348876953125, 444.42828369140625, 0.00018617408932186663], "16": [309.3614807128906, 418.52532958984375, 0.0001925784454215318]}} +{"t": 22.749526, "tracked": true, "track_id": 1, "bbox": [96.7754135131836, 20.506319046020508, 557.7271118164062, 479.9105529785156], "det_conf": 0.9266723394393921, "mean_kpt_conf": 0.952256825837222, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7278618009196712, "right_lift": -0.9199343342367946, "left_bend": 0.14327307490874344, "right_bend": 0.8190383634799222}, "keypoints": {"0": [313.0630187988281, 130.50057983398438, 0.999045193195343], "1": [336.69842529296875, 107.34481811523438, 0.9973987340927124], "2": [290.28961181640625, 104.83790588378906, 0.9966411590576172], "3": [364.3113098144531, 118.16224670410156, 0.8909408450126648], "4": [254.38900756835938, 112.26730346679688, 0.8954801559448242], "5": [407.6900939941406, 213.653564453125, 0.9934773445129395], "6": [199.50732421875, 230.30484008789062, 0.9959470629692078], "7": [519.5621337890625, 332.4001770019531, 0.9290534257888794], "8": [134.45059204101562, 382.94989013671875, 0.9367868900299072], "9": [535.2044677734375, 382.00103759765625, 0.9080780744552612], "10": [197.51199340820312, 339.8623046875, 0.9319761991500854], "11": [385.6138000488281, 464.86846923828125, 0.25035223364830017], "12": [246.26992797851562, 475.77838134765625, 0.270181804895401], "13": [444.9151611328125, 389.78857421875, 0.0033927373588085175], "14": [243.75393676757812, 401.28106689453125, 0.004000595770776272], "15": [447.8375244140625, 451.9578552246094, 0.0004122188547626138], "16": [237.0772705078125, 438.1572265625, 0.0004540072113741189]}} +{"t": 22.815969, "tracked": true, "track_id": 1, "bbox": [97.82011413574219, 20.7958984375, 567.6283569335938, 479.7992858886719], "det_conf": 0.9412335753440857, "mean_kpt_conf": 0.9458797899159518, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7531865995312154, "right_lift": -0.9275386538704594, "left_bend": 0.24114640400521292, "right_bend": 0.8149098722034616}, "keypoints": {"0": [312.17333984375, 130.45675659179688, 0.9991298317909241], "1": [335.6768493652344, 107.53558349609375, 0.9973690509796143], "2": [289.80804443359375, 104.54302978515625, 0.9971137046813965], "3": [362.42120361328125, 119.51353454589844, 0.8814230561256409], "4": [253.37428283691406, 112.40695190429688, 0.904492974281311], "5": [412.7989196777344, 218.7226104736328, 0.9942216277122498], "6": [195.6842041015625, 231.74313354492188, 0.9955229759216309], "7": [529.8795166015625, 352.77947998046875, 0.9245913028717041], "8": [132.81884765625, 387.7661437988281, 0.9203124046325684], "9": [526.4573974609375, 438.97613525390625, 0.8765502572059631], "10": [197.32833862304688, 343.0341491699219, 0.913950502872467], "11": [386.2416076660156, 466.82470703125, 0.18808163702487946], "12": [242.2314453125, 475.369384765625, 0.1904219537973404], "13": [457.6393127441406, 391.46380615234375, 0.002364120213314891], "14": [256.7336730957031, 400.205322265625, 0.0027044883463531733], "15": [451.03863525390625, 460.264892578125, 0.0003049814549740404], "16": [249.4608154296875, 439.57037353515625, 0.00032731707324273884]}} +{"t": 22.879446, "tracked": true, "track_id": 1, "bbox": [96.65095520019531, 18.1803035736084, 558.083740234375, 480.0], "det_conf": 0.9442766308784485, "mean_kpt_conf": 0.937227189540863, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7987649631712264, "right_lift": -0.9031487461524538, "left_bend": 0.2208151080638341, "right_bend": 0.8209062830900006}, "keypoints": {"0": [314.1543884277344, 130.41993713378906, 0.9990277290344238], "1": [335.3379821777344, 107.33442687988281, 0.9968495965003967], "2": [291.1352844238281, 105.18746948242188, 0.9972376823425293], "3": [359.96270751953125, 119.92404174804688, 0.8360697627067566], "4": [253.95089721679688, 115.27384948730469, 0.9236397743225098], "5": [410.5157470703125, 222.23538208007812, 0.9913272261619568], "6": [196.06356811523438, 235.65512084960938, 0.9942277669906616], "7": [513.05126953125, 358.36553955078125, 0.8920665979385376], "8": [122.1546630859375, 391.1324462890625, 0.9133715629577637], "9": [508.43438720703125, 454.1679992675781, 0.8454574942588806], "10": [198.48597717285156, 342.8064880371094, 0.9202238917350769], "11": [385.9344177246094, 461.8516845703125, 0.12800224125385284], "12": [243.0447235107422, 471.3141174316406, 0.14385072886943817], "13": [450.77581787109375, 388.56640625, 0.0023997335229068995], "14": [248.86581420898438, 401.7729187011719, 0.0030117935966700315], "15": [430.06207275390625, 468.77520751953125, 0.0003385702148079872], "16": [223.04885864257812, 455.00421142578125, 0.0003783831198234111]}} +{"t": 22.913123, "tracked": true, "track_id": 1, "bbox": [97.46215057373047, 19.90546226501465, 551.0023193359375, 479.5667419433594], "det_conf": 0.9392200112342834, "mean_kpt_conf": 0.9408748800104315, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8175984737555205, "right_lift": -0.920488142719824, "left_bend": 0.23549985788314717, "right_bend": 0.8090892074815785}, "keypoints": {"0": [311.9419250488281, 130.02500915527344, 0.9989926218986511], "1": [335.09466552734375, 106.55435180664062, 0.9973268508911133], "2": [289.69842529296875, 104.37686157226562, 0.9965381622314453], "3": [362.44195556640625, 117.63131713867188, 0.9006006717681885], "4": [254.78952026367188, 112.19189453125, 0.8885147571563721], "5": [412.6612548828125, 221.82215881347656, 0.9934050440788269], "6": [196.43487548828125, 229.60687255859375, 0.9950620532035828], "7": [514.363525390625, 366.2355651855469, 0.9097713828086853], "8": [130.2460479736328, 385.5194396972656, 0.9073833227157593], "9": [503.91717529296875, 448.5216979980469, 0.8583989143371582], "10": [195.53939819335938, 343.7086181640625, 0.9036298990249634], "11": [382.1142272949219, 464.86663818359375, 0.1490929126739502], "12": [239.45046997070312, 471.40814208984375, 0.15436828136444092], "13": [450.9920959472656, 383.9431457519531, 0.002378319390118122], "14": [255.458251953125, 391.2430114746094, 0.0027585234493017197], "15": [442.40057373046875, 451.1579284667969, 0.0003534350253175944], "16": [254.40480041503906, 435.74029541015625, 0.00038794384454376996]}} +{"t": 22.98113, "tracked": true, "track_id": 1, "bbox": [97.43531799316406, 18.401029586791992, 542.3368530273438, 480.0], "det_conf": 0.9430589079856873, "mean_kpt_conf": 0.9243619387800043, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8624532145313661, "right_lift": -0.9150930068599687, "left_bend": 0.15960332120551418, "right_bend": 0.830966318086171}, "keypoints": {"0": [312.9969787597656, 130.27041625976562, 0.9988448619842529], "1": [334.7902526855469, 106.42768859863281, 0.9967491626739502], "2": [289.3809509277344, 104.79035949707031, 0.9966952800750732], "3": [360.65032958984375, 118.86016845703125, 0.8527902960777283], "4": [252.40771484375, 115.0946044921875, 0.9123311042785645], "5": [409.0850830078125, 228.97525024414062, 0.9900615215301514], "6": [193.83843994140625, 235.53439331054688, 0.992833137512207], "7": [497.8140869140625, 380.1687927246094, 0.864949643611908], "8": [123.80369567871094, 394.4666748046875, 0.8792757391929626], "9": [500.3876037597656, 468.00421142578125, 0.7969672083854675], "10": [196.17208862304688, 342.28662109375, 0.886483371257782], "11": [378.65203857421875, 466.60699462890625, 0.09316140413284302], "12": [235.5635986328125, 473.68096923828125, 0.10202473402023315], "13": [446.08953857421875, 386.7594909667969, 0.0020474554039537907], "14": [243.9740753173828, 399.06982421875, 0.0024882927536964417], "15": [427.9241943359375, 457.89593505859375, 0.000344878964824602], "16": [229.55255126953125, 451.2255859375, 0.00037831446388736367]}} +{"t": 23.042982, "tracked": true, "track_id": 1, "bbox": [96.89059448242188, 18.09457778930664, 531.1822509765625, 480.0], "det_conf": 0.9335314631462097, "mean_kpt_conf": 0.9258290312506936, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9177550271040686, "right_lift": -0.9026647374709706, "left_bend": 0.08686056760590985, "right_bend": 0.7957679393858373}, "keypoints": {"0": [311.8236389160156, 130.14791870117188, 0.998954176902771], "1": [332.84564208984375, 105.87753295898438, 0.9969573020935059], "2": [288.6051025390625, 104.48265075683594, 0.9970153570175171], "3": [358.8056640625, 117.86927795410156, 0.8562307953834534], "4": [252.20855712890625, 114.04039001464844, 0.9154810905456543], "5": [410.4182434082031, 235.03152465820312, 0.9893901944160461], "6": [188.4371337890625, 234.03826904296875, 0.9948373436927795], "7": [478.89935302734375, 393.282470703125, 0.8401865363121033], "8": [112.98039245605469, 392.3117980957031, 0.9144017100334167], "9": [489.27777099609375, 469.3921203613281, 0.7715533375740051], "10": [197.85784912109375, 347.6578674316406, 0.909111499786377], "11": [378.6136169433594, 468.8394775390625, 0.11677605658769608], "12": [230.5443572998047, 473.44854736328125, 0.15194295346736908], "13": [441.55767822265625, 404.5516662597656, 0.0021329557057470083], "14": [232.32273864746094, 415.87811279296875, 0.0031639602966606617], "15": [412.4643859863281, 474.41961669921875, 0.00030830103787593544], "16": [211.97476196289062, 476.8234558105469, 0.00039057352114468813]}} +{"t": 23.076523, "tracked": true, "track_id": 1, "bbox": [97.31951141357422, 18.08808708190918, 528.361328125, 480.0], "det_conf": 0.938320517539978, "mean_kpt_conf": 0.9142083363099531, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9251470958522306, "right_lift": -0.9221090223390815, "left_bend": 0.10471163107012506, "right_bend": 0.8398162947357526}, "keypoints": {"0": [313.8547668457031, 130.3677520751953, 0.998819887638092], "1": [335.2045593261719, 106.18846130371094, 0.9965985417366028], "2": [289.6819763183594, 104.89128112792969, 0.9968113303184509], "3": [361.13104248046875, 118.37797546386719, 0.8430280685424805], "4": [251.933349609375, 115.26248168945312, 0.9224027991294861], "5": [410.5760498046875, 235.95675659179688, 0.989434540271759], "6": [191.6407928466797, 237.29055786132812, 0.993682861328125], "7": [477.2051086425781, 398.3388671875, 0.8246296048164368], "8": [123.98196411132812, 398.53106689453125, 0.8759801983833313], "9": [481.5627136230469, 470.38238525390625, 0.7382952570915222], "10": [196.10850524902344, 341.35748291015625, 0.8766086101531982], "11": [383.6893005371094, 469.33697509765625, 0.09542122483253479], "12": [238.04934692382812, 475.2723388671875, 0.11558713763952255], "13": [448.7267150878906, 396.93865966796875, 0.002185087651014328], "14": [244.18971252441406, 409.9536437988281, 0.0029075047932565212], "15": [422.46343994140625, 457.39501953125, 0.00036988689680583775], "16": [233.24691772460938, 459.09698486328125, 0.00043105072109028697]}} +{"t": 23.110492, "tracked": true, "track_id": 1, "bbox": [96.38397979736328, 18.65755271911621, 520.9630126953125, 480.0], "det_conf": 0.9355486035346985, "mean_kpt_conf": 0.9257454655387185, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9322870975358309, "right_lift": -0.8990814619226325, "left_bend": 0.12214153050985753, "right_bend": 0.797409438500064}, "keypoints": {"0": [312.123779296875, 130.12864685058594, 0.9989595413208008], "1": [333.1790771484375, 107.007080078125, 0.9970558881759644], "2": [289.967041015625, 104.77581787109375, 0.9970136880874634], "3": [358.60540771484375, 120.39134216308594, 0.8727287650108337], "4": [254.75143432617188, 114.56355285644531, 0.9109328985214233], "5": [410.0744934082031, 237.23822021484375, 0.9887996315956116], "6": [189.77102661132812, 232.1122589111328, 0.9952501058578491], "7": [473.28802490234375, 400.16339111328125, 0.825459897518158], "8": [111.90745544433594, 392.0224304199219, 0.9191464185714722], "9": [472.4278564453125, 463.3716125488281, 0.7654833793640137], "10": [199.46286010742188, 346.305419921875, 0.9123699069023132], "11": [378.8445129394531, 472.14862060546875, 0.1161753311753273], "12": [232.21945190429688, 474.49853515625, 0.16124406456947327], "13": [432.8759765625, 408.54327392578125, 0.0022821277379989624], "14": [228.61923217773438, 415.14630126953125, 0.0035346567165106535], "15": [405.6456298828125, 480.0, 0.000335542019456625], "16": [211.30526733398438, 478.2323913574219, 0.0004421992925927043]}} +{"t": 23.176428, "tracked": true, "track_id": 1, "bbox": [94.84818267822266, 18.917739868164062, 513.3988037109375, 479.9082336425781], "det_conf": 0.9380315542221069, "mean_kpt_conf": 0.9315454418008978, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9342494071811761, "right_lift": -0.8943900264702423, "left_bend": 0.11704337768643758, "right_bend": 0.7887916452826519}, "keypoints": {"0": [311.69097900390625, 129.8798370361328, 0.9989770650863647], "1": [333.0849609375, 107.21249389648438, 0.9970882534980774], "2": [289.50189208984375, 104.33421325683594, 0.9969770908355713], "3": [358.4001159667969, 121.61894226074219, 0.8745772242546082], "4": [253.8521270751953, 114.3934326171875, 0.9092845916748047], "5": [407.1292724609375, 239.02713012695312, 0.9891877770423889], "6": [189.34619140625, 230.52532958984375, 0.9952741861343384], "7": [469.7266845703125, 403.0155334472656, 0.8445971608161926], "8": [109.71119689941406, 389.7622375488281, 0.9260165691375732], "9": [469.53253173828125, 466.57244873046875, 0.79303377866745], "10": [201.29940795898438, 346.24810791015625, 0.9219861626625061], "11": [374.1611633300781, 473.62408447265625, 0.11631974577903748], "12": [228.62664794921875, 474.4967041015625, 0.15961185097694397], "13": [427.5640563964844, 409.2091369628906, 0.0021260168869048357], "14": [222.42990112304688, 413.46246337890625, 0.0032203560695052147], "15": [405.73907470703125, 479.5045471191406, 0.0003000019059982151], "16": [204.77517700195312, 475.5589599609375, 0.00038906533154658973]}} +{"t": 23.242147, "tracked": true, "track_id": 1, "bbox": [94.64945983886719, 18.7746639251709, 511.90283203125, 479.80487060546875], "det_conf": 0.9360846281051636, "mean_kpt_conf": 0.9254317012700167, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9428156926328584, "right_lift": -0.8948883707814234, "left_bend": 0.13230778185900977, "right_bend": 0.7851404524971509}, "keypoints": {"0": [313.1126403808594, 129.9846649169922, 0.9989309906959534], "1": [333.85833740234375, 106.57742309570312, 0.9969507455825806], "2": [290.3912658691406, 104.67645263671875, 0.9969794750213623], "3": [359.0401611328125, 119.95120239257812, 0.87022864818573], "4": [254.68850708007812, 114.98316955566406, 0.9105095267295837], "5": [409.0130310058594, 240.8157958984375, 0.9880422353744507], "6": [190.10003662109375, 230.94053649902344, 0.9950355291366577], "7": [468.08929443359375, 407.9193115234375, 0.816388726234436], "8": [111.10897827148438, 389.3312072753906, 0.9177954196929932], "9": [464.02166748046875, 461.45062255859375, 0.7732543349266052], "10": [201.84617614746094, 347.36749267578125, 0.9156330823898315], "11": [373.3214416503906, 477.1234130859375, 0.10181844979524612], "12": [227.88607788085938, 477.33050537109375, 0.14486229419708252], "13": [423.53411865234375, 407.6116027832031, 0.002165800193324685], "14": [222.29385375976562, 411.0893249511719, 0.003382294438779354], "15": [399.01873779296875, 475.051025390625, 0.0003375583910383284], "16": [208.77731323242188, 474.85894775390625, 0.0004467714752536267]}} +{"t": 23.276215, "tracked": true, "track_id": 1, "bbox": [93.90465545654297, 18.927127838134766, 512.4131469726562, 479.76593017578125], "det_conf": 0.9374570846557617, "mean_kpt_conf": 0.9250996708869934, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9432560693433893, "right_lift": -0.8965790151066703, "left_bend": 0.16511768935129692, "right_bend": 0.7839960275470923}, "keypoints": {"0": [313.312744140625, 129.75125122070312, 0.9989678859710693], "1": [333.8274841308594, 106.43154907226562, 0.9968420267105103], "2": [290.6274719238281, 104.27032470703125, 0.9971405267715454], "3": [358.3003234863281, 119.81492614746094, 0.8545876145362854], "4": [254.09957885742188, 114.29046630859375, 0.9164944887161255], "5": [409.2734375, 240.83575439453125, 0.9882920384407043], "6": [188.82550048828125, 231.07752990722656, 0.9949579834938049], "7": [468.64617919921875, 409.4879455566406, 0.817535936832428], "8": [109.724853515625, 391.20977783203125, 0.915532648563385], "9": [458.6580810546875, 464.3023376464844, 0.7787511944770813], "10": [202.34512329101562, 348.35186767578125, 0.916994035243988], "11": [375.2159423828125, 476.19476318359375, 0.0973673015832901], "12": [229.11709594726562, 476.38006591796875, 0.13702599704265594], "13": [422.3651123046875, 409.9071350097656, 0.0020366245880723], "14": [223.46499633789062, 413.00421142578125, 0.003106215037405491], "15": [395.2223205566406, 478.7088928222656, 0.00029902762616984546], "16": [209.79391479492188, 476.69744873046875, 0.0003870630171149969]}} +{"t": 23.311655, "tracked": true, "track_id": 1, "bbox": [93.66936492919922, 18.649436950683594, 513.8344116210938, 479.7926940917969], "det_conf": 0.9358947277069092, "mean_kpt_conf": 0.9199253754182295, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9459415177848383, "right_lift": -0.9000113912753444, "left_bend": 0.1754380785620181, "right_bend": 0.7896096572650501}, "keypoints": {"0": [313.1214599609375, 130.48721313476562, 0.9989534616470337], "1": [333.3754577636719, 106.31124877929688, 0.9966788291931152], "2": [290.1518249511719, 104.84248352050781, 0.9971960783004761], "3": [357.8464050292969, 118.132568359375, 0.8344086408615112], "4": [253.41018676757812, 113.97702026367188, 0.9195066690444946], "5": [408.5852355957031, 239.13723754882812, 0.987737774848938], "6": [187.95333862304688, 230.54241943359375, 0.9943591952323914], "7": [467.3262634277344, 410.4576110839844, 0.8055288195610046], "8": [108.80369567871094, 393.97686767578125, 0.9036242961883545], "9": [456.0910339355469, 460.50189208984375, 0.770298957824707], "10": [203.81552124023438, 347.0411682128906, 0.9108864068984985], "11": [374.2774658203125, 471.780029296875, 0.08704227954149246], "12": [228.22613525390625, 472.9151306152344, 0.11943574994802475], "13": [425.61138916015625, 403.8348083496094, 0.0021340600214898586], "14": [227.14181518554688, 408.4565124511719, 0.003188317408785224], "15": [398.08831787109375, 475.21820068359375, 0.0003284774429630488], "16": [213.33444213867188, 475.8660888671875, 0.0004166449944023043]}} +{"t": 23.375233, "tracked": true, "track_id": 1, "bbox": [93.41474151611328, 18.882116317749023, 515.8233642578125, 479.8457946777344], "det_conf": 0.9379257559776306, "mean_kpt_conf": 0.9250570047985424, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9344100890535139, "right_lift": -0.8993836918089293, "left_bend": 0.12730686705481037, "right_bend": 0.7877437345341498}, "keypoints": {"0": [312.836669921875, 130.30819702148438, 0.998977780342102], "1": [333.0121765136719, 106.87129211425781, 0.9967086315155029], "2": [289.5322570800781, 104.86077880859375, 0.9972326159477234], "3": [356.9706726074219, 120.157958984375, 0.8330333232879639], "4": [251.98092651367188, 115.23733520507812, 0.9233718514442444], "5": [406.5981750488281, 240.54884338378906, 0.9887909889221191], "6": [187.77557373046875, 233.52532958984375, 0.9946751594543457], "7": [468.960693359375, 404.1432189941406, 0.8299519419670105], "8": [110.46282958984375, 392.5833435058594, 0.9124860167503357], "9": [466.92352294921875, 461.10382080078125, 0.7852340936660767], "10": [202.90061950683594, 347.75567626953125, 0.9151646494865417], "11": [374.4728698730469, 477.3771667480469, 0.10313689708709717], "12": [228.93528747558594, 479.26690673828125, 0.13750673830509186], "13": [427.51422119140625, 410.0675964355469, 0.002002938650548458], "14": [226.29795837402344, 415.87725830078125, 0.00292509444989264], "15": [401.3897705078125, 475.65374755859375, 0.00029058108339086175], "16": [209.81820678710938, 475.518798828125, 0.0003616700123529881]}} +{"t": 23.438828, "tracked": true, "track_id": 1, "bbox": [92.34835815429688, 18.831449508666992, 524.41015625, 479.83880615234375], "det_conf": 0.9380776882171631, "mean_kpt_conf": 0.9301387776028026, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9212146361943278, "right_lift": -0.8988117638602778, "left_bend": 0.12089315869104761, "right_bend": 0.7950875526923094}, "keypoints": {"0": [309.8227233886719, 130.76214599609375, 0.9989967942237854], "1": [331.9507141113281, 107.47476196289062, 0.9970937967300415], "2": [287.1823425292969, 104.16883850097656, 0.9970324039459229], "3": [357.8343505859375, 121.64878845214844, 0.8647775053977966], "4": [250.7406768798828, 113.41041564941406, 0.9113985300064087], "5": [405.61859130859375, 237.9684295654297, 0.9887729287147522], "6": [188.8026580810547, 232.4209442138672, 0.9949213862419128], "7": [474.04925537109375, 400.0004577636719, 0.8395455479621887], "8": [109.1400146484375, 395.77032470703125, 0.9201629757881165], "9": [475.3183898925781, 464.0632019042969, 0.7967256307601929], "10": [201.37046813964844, 348.5368957519531, 0.9220990538597107], "11": [376.6575012207031, 471.44000244140625, 0.1040249839425087], "12": [231.9298553466797, 473.759521484375, 0.1410011351108551], "13": [431.23876953125, 405.27783203125, 0.0021381909027695656], "14": [228.2811279296875, 410.7688903808594, 0.003205836983397603], "15": [409.44378662109375, 480.0, 0.0003073197149205953], "16": [207.55967712402344, 475.4307861328125, 0.00039561555604450405]}} +{"t": 23.502851, "tracked": true, "track_id": 1, "bbox": [91.68240356445312, 19.33135986328125, 533.8897094726562, 479.7662048339844], "det_conf": 0.9390767216682434, "mean_kpt_conf": 0.9304808269847523, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9039782399354027, "right_lift": -0.9089737348423603, "left_bend": 0.06355350021772493, "right_bend": 0.792624682682554}, "keypoints": {"0": [309.29852294921875, 130.62362670898438, 0.9990237951278687], "1": [330.27484130859375, 107.11544799804688, 0.9969387054443359], "2": [286.24847412109375, 104.4927978515625, 0.9971605539321899], "3": [354.7398681640625, 120.39723205566406, 0.8374046087265015], "4": [248.95025634765625, 114.02861022949219, 0.9217082858085632], "5": [403.58990478515625, 234.81503295898438, 0.9900291562080383], "6": [186.15536499023438, 234.28475952148438, 0.9949138164520264], "7": [477.1043701171875, 390.2379150390625, 0.8602933883666992], "8": [111.97622680664062, 396.03680419921875, 0.920452892780304], "9": [495.6830139160156, 465.4551086425781, 0.799042284488678], "10": [200.69866943359375, 348.7900085449219, 0.9183216094970703], "11": [377.15484619140625, 468.0523681640625, 0.11885896325111389], "12": [231.52520751953125, 473.29840087890625, 0.15084123611450195], "13": [439.8220520019531, 395.6022033691406, 0.00246205716393888], "14": [229.65667724609375, 406.9368896484375, 0.0035216943360865116], "15": [418.46234130859375, 474.178466796875, 0.0003662812814582139], "16": [210.0118865966797, 473.10772705078125, 0.0004501535731833428]}} +{"t": 23.538784, "tracked": true, "track_id": 1, "bbox": [92.1785888671875, 19.52330207824707, 546.1837768554688, 479.7840270996094], "det_conf": 0.9222676157951355, "mean_kpt_conf": 0.9231497374447909, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8742608819663156, "right_lift": -0.9241852236428376, "left_bend": 0.0701336672555744, "right_bend": 0.8265757832966204}, "keypoints": {"0": [309.7820129394531, 130.54324340820312, 0.9987938404083252], "1": [331.2346496582031, 107.69490051269531, 0.9964926838874817], "2": [286.0790100097656, 105.32417297363281, 0.9965225458145142], "3": [355.8741455078125, 121.83749389648438, 0.8315057754516602], "4": [248.3026885986328, 116.678955078125, 0.9199972152709961], "5": [401.4246826171875, 231.26808166503906, 0.9909194707870483], "6": [187.44432067871094, 238.2070770263672, 0.9927409291267395], "7": [483.5727844238281, 379.2090148925781, 0.8804367780685425], "8": [121.176513671875, 398.5542297363281, 0.8774043917655945], "9": [509.07904052734375, 465.7696533203125, 0.7916932702064514], "10": [196.00912475585938, 343.52496337890625, 0.8781402111053467], "11": [377.0048522949219, 462.6449890136719, 0.10492228716611862], "12": [233.7582550048828, 471.98419189453125, 0.10808147490024567], "13": [456.6050109863281, 381.6161804199219, 0.0022071630228310823], "14": [248.008544921875, 398.69476318359375, 0.0025521148927509785], "15": [441.988037109375, 450.97589111328125, 0.0003678861539810896], "16": [237.37744140625, 450.12060546875, 0.0003874257381539792]}} +{"t": 23.605144, "tracked": true, "track_id": 1, "bbox": [91.25205993652344, 20.31747055053711, 560.7576293945312, 479.7402038574219], "det_conf": 0.9293733835220337, "mean_kpt_conf": 0.9290712909264998, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8336521051040464, "right_lift": -0.9195676930126683, "left_bend": 0.09358883496285593, "right_bend": 0.8205643669821268}, "keypoints": {"0": [309.0204162597656, 130.4127960205078, 0.9988538026809692], "1": [330.3804931640625, 107.19944763183594, 0.9964117407798767], "2": [285.523193359375, 104.85031127929688, 0.9966340661048889], "3": [354.74627685546875, 120.33659362792969, 0.8105745315551758], "4": [247.7015380859375, 115.0162353515625, 0.9235811829566956], "5": [400.77490234375, 225.8216552734375, 0.991637647151947], "6": [186.68545532226562, 237.95297241210938, 0.9927311539649963], "7": [492.73626708984375, 364.6324157714844, 0.8988409042358398], "8": [118.47109985351562, 397.59326171875, 0.8841915130615234], "9": [520.1524658203125, 456.1414794921875, 0.8306245803833008], "10": [198.0247039794922, 342.7855224609375, 0.8957030773162842], "11": [381.6206359863281, 458.04736328125, 0.11336962878704071], "12": [239.30809020996094, 470.38873291015625, 0.11110670864582062], "13": [465.96575927734375, 377.1437072753906, 0.002317846054211259], "14": [265.1944580078125, 397.2193603515625, 0.0026001748628914356], "15": [450.4400634765625, 453.1320495605469, 0.0003527760854922235], "16": [254.94406127929688, 450.8657531738281, 0.00036364170955494046]}} +{"t": 23.672905, "tracked": true, "track_id": 1, "bbox": [90.52488708496094, 21.531930923461914, 582.5235595703125, 479.7438049316406], "det_conf": 0.9195061922073364, "mean_kpt_conf": 0.9360209757631476, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7920020484651491, "right_lift": -0.9223672780172933, "left_bend": 0.08786655714766836, "right_bend": 0.8101261506457309}, "keypoints": {"0": [307.4874572753906, 130.5850830078125, 0.9989251494407654], "1": [328.51885986328125, 108.31782531738281, 0.9967155456542969], "2": [284.29656982421875, 106.14065551757812, 0.9965671300888062], "3": [352.8175048828125, 122.57081604003906, 0.8273219466209412], "4": [247.33041381835938, 117.72607421875, 0.9127565622329712], "5": [399.60723876953125, 223.17955017089844, 0.9929561614990234], "6": [187.9207763671875, 236.33251953125, 0.9932973980903625], "7": [502.45941162109375, 356.605712890625, 0.9200859069824219], "8": [121.61878967285156, 394.6357727050781, 0.9004902839660645], "9": [535.0780029296875, 438.112548828125, 0.8559828400611877], "10": [200.91439819335938, 342.9488220214844, 0.901131808757782], "11": [382.62835693359375, 457.06402587890625, 0.15295472741127014], "12": [240.92825317382812, 469.74456787109375, 0.1453530490398407], "13": [471.8083190917969, 371.95355224609375, 0.0029983415734022856], "14": [264.6339111328125, 390.6171569824219, 0.0033139530569314957], "15": [467.08221435546875, 448.6854553222656, 0.00045566217158921063], "16": [254.55084228515625, 444.86260986328125, 0.00046927318908274174]}} +{"t": 23.7351, "tracked": true, "track_id": 1, "bbox": [91.26374053955078, 26.17624855041504, 594.4391479492188, 478.98883056640625], "det_conf": 0.9153581261634827, "mean_kpt_conf": 0.9419613805684176, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7418108413904428, "right_lift": -0.9382350523358975, "left_bend": 0.11160556002048248, "right_bend": 0.811258382011596}, "keypoints": {"0": [305.2285461425781, 131.76461791992188, 0.9990637898445129], "1": [327.39599609375, 109.25321960449219, 0.9971644282341003], "2": [281.543212890625, 107.04676818847656, 0.9967658519744873], "3": [352.7333068847656, 122.89399719238281, 0.8546492457389832], "4": [243.86224365234375, 118.1080322265625, 0.9100137948989868], "5": [400.47998046875, 222.48011779785156, 0.994724452495575], "6": [185.95916748046875, 238.52987670898438, 0.9944499731063843], "7": [514.793212890625, 348.9305114746094, 0.9354994893074036], "8": [128.91326904296875, 393.2197265625, 0.8967867493629456], "9": [544.8292236328125, 423.1785888671875, 0.8851757645606995], "10": [197.1447296142578, 344.0390625, 0.8972816467285156], "11": [384.2793884277344, 459.84515380859375, 0.19552691280841827], "12": [242.66961669921875, 473.3123779296875, 0.1711585819721222], "13": [474.1529541015625, 373.71075439453125, 0.0031750332564115524], "14": [276.5544128417969, 391.0616455078125, 0.0031920750625431538], "15": [478.0176696777344, 443.12750244140625, 0.0004467999970074743], "16": [286.57086181640625, 436.29559326171875, 0.00043824102613143623]}} +{"t": 23.803511, "tracked": true, "track_id": 1, "bbox": [88.8951644897461, 25.29921531677246, 618.4097290039062, 479.5914001464844], "det_conf": 0.8766268491744995, "mean_kpt_conf": 0.9442471753467213, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7161934134051829, "right_lift": -0.9146992757610434, "left_bend": 0.05458464735284169, "right_bend": 0.8172828907009867}, "keypoints": {"0": [306.3099670410156, 131.9040069580078, 0.9990012049674988], "1": [326.0302734375, 108.63423156738281, 0.9967896342277527], "2": [282.3624267578125, 107.67460632324219, 0.9966842532157898], "3": [350.29583740234375, 121.32110595703125, 0.8118412494659424], "4": [244.91561889648438, 119.31375122070312, 0.9209949374198914], "5": [397.310791015625, 224.978515625, 0.9932767748832703], "6": [185.22084045410156, 245.51873779296875, 0.9940901398658752], "7": [507.82763671875, 338.3919372558594, 0.9257099032402039], "8": [116.94729614257812, 400.045654296875, 0.9073859453201294], "9": [550.7415771484375, 369.47454833984375, 0.9139673709869385], "10": [202.16444396972656, 344.12384033203125, 0.9269775152206421], "11": [388.46600341796875, 465.07550048828125, 0.15737439692020416], "12": [247.92706298828125, 480.0, 0.15105029940605164], "13": [469.74029541015625, 375.9842834472656, 0.002699411939829588], "14": [273.9306945800781, 399.10540771484375, 0.002944597043097019], "15": [467.2850646972656, 436.0274963378906, 0.0003367344324942678], "16": [271.2961730957031, 439.7048645019531, 0.0003437044215388596]}} +{"t": 23.837968, "tracked": true, "track_id": 1, "bbox": [88.78046417236328, 27.003156661987305, 633.478515625, 479.7495422363281], "det_conf": 0.8519816398620605, "mean_kpt_conf": 0.9124179699204185, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6511888402565138, "right_lift": -0.942524346703332, "left_bend": 0.22564430572082392, "right_bend": 0.8450285780745055}, "keypoints": {"0": [304.2833251953125, 134.55377197265625, 0.99905925989151], "1": [326.4699401855469, 110.85374450683594, 0.9967814683914185], "2": [279.4382019042969, 109.75567626953125, 0.9972527623176575], "3": [352.6533508300781, 122.58987426757812, 0.7666895389556885], "4": [239.03350830078125, 119.09445190429688, 0.9201073050498962], "5": [400.16009521484375, 224.5001678466797, 0.9939802885055542], "6": [182.43325805664062, 242.69863891601562, 0.9905577898025513], "7": [534.0204467773438, 339.3592529296875, 0.904114842414856], "8": [127.59593200683594, 397.38201904296875, 0.7896237969398499], "9": [569.51513671875, 339.3687438964844, 0.8621242642402649], "10": [191.58792114257812, 338.5691833496094, 0.8163063526153564], "11": [394.40667724609375, 469.41302490234375, 0.15760213136672974], "12": [251.1859588623047, 480.0, 0.11750451475381851], "13": [497.60845947265625, 388.8926696777344, 0.002319780644029379], "14": [303.7817687988281, 405.2655029296875, 0.0019813068211078644], "15": [515.4769287109375, 423.87384033203125, 0.00032771049882285297], "16": [326.51318359375, 420.8070373535156, 0.0002788448764476925]}} +{"t": 23.89958, "tracked": true, "track_id": 1, "bbox": [91.0390625, 28.62568473815918, 591.94873046875, 479.48291015625], "det_conf": 0.920549750328064, "mean_kpt_conf": 0.9419393322684548, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6885438784910535, "right_lift": -0.9388002197262979, "left_bend": 0.6982638778027802, "right_bend": 0.8231513587438447}, "keypoints": {"0": [303.78973388671875, 132.41629028320312, 0.9991044402122498], "1": [325.34130859375, 109.61860656738281, 0.9967074394226074], "2": [280.7776794433594, 107.1414794921875, 0.9970603585243225], "3": [349.9967041015625, 122.86587524414062, 0.8225196599960327], "4": [243.06285095214844, 116.6910400390625, 0.9076777696609497], "5": [398.8868408203125, 230.97802734375, 0.9940088987350464], "6": [183.96026611328125, 239.2742462158203, 0.994175374507904], "7": [526.4834594726562, 352.1260070800781, 0.914452075958252], "8": [125.57754516601562, 398.39105224609375, 0.8851331472396851], "9": [534.53271484375, 293.5736999511719, 0.934906005859375], "10": [196.96678161621094, 342.5789794921875, 0.9155874848365784], "11": [380.7067565917969, 475.2654113769531, 0.12665431201457977], "12": [240.36849975585938, 480.0, 0.11733946949243546], "13": [448.5001220703125, 386.89874267578125, 0.0018568123923614621], "14": [265.2677001953125, 388.912353515625, 0.0018878396367654204], "15": [459.8199462890625, 426.26043701171875, 0.00020401456276886165], "16": [283.4053955078125, 413.98272705078125, 0.000201140865101479]}} +{"t": 23.969472, "tracked": true, "track_id": 1, "bbox": [90.45953369140625, 29.17961311340332, 581.6644287109375, 479.36676025390625], "det_conf": 0.9330518245697021, "mean_kpt_conf": 0.9443242658268322, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6849825916386287, "right_lift": -0.9370524681126069, "left_bend": 0.6469424760537279, "right_bend": 0.841705888840655}, "keypoints": {"0": [303.13653564453125, 133.60647583007812, 0.999086856842041], "1": [325.19378662109375, 109.52828979492188, 0.9970207810401917], "2": [279.7284851074219, 107.77825927734375, 0.9967859983444214], "3": [351.3564147949219, 121.08682250976562, 0.8503039479255676], "4": [242.9621124267578, 116.28579711914062, 0.8969326019287109], "5": [397.9398498535156, 231.18914794921875, 0.9937707781791687], "6": [186.0289764404297, 240.47007751464844, 0.9944378137588501], "7": [525.404052734375, 351.0294189453125, 0.9128546118736267], "8": [126.38766479492188, 400.51837158203125, 0.8897835612297058], "9": [546.0934448242188, 282.4361877441406, 0.9372857213020325], "10": [197.4210662841797, 338.61883544921875, 0.9193042516708374], "11": [378.95068359375, 479.64117431640625, 0.12718698382377625], "12": [240.1442413330078, 480.0, 0.12188464403152466], "13": [444.2396240234375, 390.5566101074219, 0.0017757752211764455], "14": [258.9297790527344, 394.1202697753906, 0.0018591302214190364], "15": [459.8559265136719, 423.5962219238281, 0.00019468482059892267], "16": [275.6756896972656, 415.4425048828125, 0.0001969578443095088]}} +{"t": 24.033098, "tracked": true, "track_id": 1, "bbox": [90.33094024658203, 29.403966903686523, 586.5535278320312, 479.1768798828125], "det_conf": 0.9309737682342529, "mean_kpt_conf": 0.9366251284425909, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6879435720715528, "right_lift": -0.9418156387558352, "left_bend": 0.6986943481918941, "right_bend": 0.8346377501704221}, "keypoints": {"0": [302.2532958984375, 132.83389282226562, 0.9989492297172546], "1": [324.2621765136719, 109.78744506835938, 0.9964693784713745], "2": [279.7000732421875, 107.4249267578125, 0.9966148734092712], "3": [349.2327880859375, 122.85028076171875, 0.8463482856750488], "4": [243.86375427246094, 116.44781494140625, 0.8971322178840637], "5": [396.31201171875, 234.43760681152344, 0.9931261539459229], "6": [184.30606079101562, 237.7116241455078, 0.9936709403991699], "7": [527.126708984375, 358.43536376953125, 0.8880393505096436], "8": [125.81739807128906, 401.59332275390625, 0.8590180277824402], "9": [541.281494140625, 253.77955627441406, 0.9323537945747375], "10": [197.0426788330078, 340.559814453125, 0.9011541604995728], "11": [372.24249267578125, 477.06756591796875, 0.09032310545444489], "12": [236.42422485351562, 480.0, 0.08681482076644897], "13": [427.76361083984375, 380.52996826171875, 0.0018700786167755723], "14": [260.65802001953125, 376.69830322265625, 0.0019532828591763973], "15": [441.97900390625, 413.0440368652344, 0.00023710048117209226], "16": [290.10107421875, 401.174072265625, 0.00024001617566682398]}} +{"t": 24.100601, "tracked": true, "track_id": 1, "bbox": [90.59097290039062, 29.10252571105957, 579.4413452148438, 479.6437072753906], "det_conf": 0.9334386587142944, "mean_kpt_conf": 0.9317202838984403, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6527153375388158, "right_lift": -0.9388860346895485, "left_bend": 0.7200245052192313, "right_bend": 0.8300472271853573}, "keypoints": {"0": [301.9850158691406, 133.33767700195312, 0.9989493489265442], "1": [323.8269958496094, 109.45407104492188, 0.9960111379623413], "2": [278.41265869140625, 107.4888916015625, 0.9969704151153564], "3": [348.6724548339844, 121.41853332519531, 0.8163138628005981], "4": [240.82199096679688, 116.11054992675781, 0.9103236794471741], "5": [396.49603271484375, 235.6832275390625, 0.9926342368125916], "6": [184.02285766601562, 238.75733947753906, 0.993417501449585], "7": [532.021240234375, 352.44537353515625, 0.8662658929824829], "8": [125.71127319335938, 397.8028259277344, 0.846022367477417], "9": [534.4522705078125, 230.51780700683594, 0.9303309321403503], "10": [195.36024475097656, 340.84893798828125, 0.9016837477684021], "11": [373.7506408691406, 476.5079650878906, 0.084661103785038], "12": [239.4980010986328, 480.0, 0.08384416252374649], "13": [426.2788391113281, 387.1789245605469, 0.0018968568183481693], "14": [274.1695861816406, 380.101318359375, 0.002058160724118352], "15": [436.9913024902344, 410.53399658203125, 0.00023690819216426462], "16": [308.55426025390625, 397.33404541015625, 0.0002448789309710264]}} +{"t": 24.162928, "tracked": true, "track_id": 1, "bbox": [90.32119750976562, 29.129459381103516, 572.3109130859375, 479.36114501953125], "det_conf": 0.9350939393043518, "mean_kpt_conf": 0.9287284070795233, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6461911630077296, "right_lift": -0.9425626771070051, "left_bend": 0.731772534741681, "right_bend": 0.8408688973874617}, "keypoints": {"0": [301.9115295410156, 133.553955078125, 0.9989482760429382], "1": [323.5481262207031, 110.12760925292969, 0.9957756400108337], "2": [278.4331359863281, 107.78982543945312, 0.99708491563797], "3": [347.7900390625, 123.10296630859375, 0.8089675307273865], "4": [240.65554809570312, 117.18264770507812, 0.9147837162017822], "5": [397.78643798828125, 239.01478576660156, 0.9924089908599854], "6": [183.46798706054688, 241.3582000732422, 0.9936528205871582], "7": [534.666748046875, 354.9132080078125, 0.8478664755821228], "8": [126.92985534667969, 400.89727783203125, 0.8398838043212891], "9": [531.2127685546875, 219.7672576904297, 0.9263134002685547], "10": [195.07559204101562, 339.8761291503906, 0.9003269076347351], "11": [374.8616638183594, 479.9307556152344, 0.07547204941511154], "12": [240.8231201171875, 480.0, 0.07800078392028809], "13": [420.4689636230469, 388.5010681152344, 0.0018894631648436189], "14": [276.82794189453125, 379.082763671875, 0.0021300215739756823], "15": [426.46038818359375, 411.3004150390625, 0.00024307543935719877], "16": [315.6395568847656, 395.7490234375, 0.0002578539424575865]}} +{"t": 24.197273, "tracked": true, "track_id": 1, "bbox": [90.31451416015625, 29.489559173583984, 567.899658203125, 479.3472595214844], "det_conf": 0.9370613694190979, "mean_kpt_conf": 0.9270915334874933, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6355013379667824, "right_lift": -0.9360965244580131, "left_bend": 0.7202778285973042, "right_bend": 0.8360777052708064}, "keypoints": {"0": [302.00567626953125, 134.02255249023438, 0.9990135431289673], "1": [323.54534912109375, 110.28564453125, 0.9956437349319458], "2": [278.10400390625, 107.89460754394531, 0.9973639845848083], "3": [347.1284484863281, 122.8731689453125, 0.7769184112548828], "4": [239.58404541015625, 116.80511474609375, 0.9224982857704163], "5": [393.3861999511719, 239.06838989257812, 0.9918656945228577], "6": [185.28314208984375, 239.25994873046875, 0.9930682182312012], "7": [533.037353515625, 354.0127258300781, 0.8457461595535278], "8": [125.43438720703125, 398.53582763671875, 0.8384560942649841], "9": [532.5648193359375, 213.6097412109375, 0.9311505556106567], "10": [194.27432250976562, 340.9766845703125, 0.9062821865081787], "11": [369.4951171875, 480.0, 0.07182992994785309], "12": [239.99952697753906, 480.0, 0.07424460351467133], "13": [411.81842041015625, 393.7437744140625, 0.0018568910891190171], "14": [276.5306396484375, 382.2148132324219, 0.0020738323219120502], "15": [422.84466552734375, 419.0357360839844, 0.00022821230231784284], "16": [314.5064697265625, 403.070068359375, 0.00023765703372191638]}} +{"t": 24.233707, "tracked": true, "track_id": 1, "bbox": [89.88381958007812, 29.590604782104492, 565.6025390625, 479.02484130859375], "det_conf": 0.9365828037261963, "mean_kpt_conf": 0.9277116006070917, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6301910761649742, "right_lift": -0.9373093768412644, "left_bend": 0.733386629252648, "right_bend": 0.8407988173319273}, "keypoints": {"0": [300.75384521484375, 133.5804443359375, 0.9989443421363831], "1": [322.7388610839844, 110.20112609863281, 0.9958944320678711], "2": [277.7911071777344, 107.96163940429688, 0.9970535039901733], "3": [347.15899658203125, 123.03182983398438, 0.8222299814224243], "4": [241.01318359375, 117.15135192871094, 0.9076169729232788], "5": [394.87249755859375, 238.05882263183594, 0.991908073425293], "6": [184.43484497070312, 239.1243896484375, 0.9930081367492676], "7": [536.7998046875, 353.2529296875, 0.8448246717453003], "8": [124.44850158691406, 400.46160888671875, 0.8275038599967957], "9": [529.300048828125, 207.49009704589844, 0.9308218955993652], "10": [191.49954223632812, 342.28118896484375, 0.8950217366218567], "11": [365.11224365234375, 478.5574951171875, 0.07380085438489914], "12": [234.34584045410156, 480.0, 0.07524581998586655], "13": [402.3276062011719, 396.053955078125, 0.0019837324507534504], "14": [266.1911315917969, 382.8544921875, 0.0021515428088605404], "15": [414.7350158691406, 421.5895690917969, 0.00024399027461186051], "16": [306.9335632324219, 403.17742919921875, 0.0002513245271984488]}} +{"t": 24.29742, "tracked": true, "track_id": 1, "bbox": [89.8884048461914, 30.30776596069336, 563.8873901367188, 479.0958557128906], "det_conf": 0.9348651170730591, "mean_kpt_conf": 0.9261225028471514, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.611989279073361, "right_lift": -0.9344220935657892, "left_bend": 0.7383337632996363, "right_bend": 0.8341910577046887}, "keypoints": {"0": [301.6991271972656, 134.22463989257812, 0.9990272521972656], "1": [323.1669616699219, 110.17373657226562, 0.9956843852996826], "2": [277.82684326171875, 108.1083984375, 0.9974330067634583], "3": [346.9561767578125, 122.16452026367188, 0.7790406346321106], "4": [239.2900390625, 116.86788940429688, 0.9167396426200867], "5": [393.4478759765625, 238.2551727294922, 0.9913841485977173], "6": [186.95997619628906, 238.14015197753906, 0.9925918579101562], "7": [539.4615478515625, 351.24371337890625, 0.8407617807388306], "8": [126.69525146484375, 396.2474365234375, 0.8335637450218201], "9": [526.0099487304688, 202.47467041015625, 0.934045672416687], "10": [195.5808868408203, 339.88653564453125, 0.9070754051208496], "11": [367.43426513671875, 479.2954406738281, 0.0647946372628212], "12": [238.49794006347656, 480.0, 0.06708674877882004], "13": [408.6829833984375, 391.7595520019531, 0.0018208426190540195], "14": [272.10870361328125, 376.421142578125, 0.0020260349847376347], "15": [426.89739990234375, 414.5723876953125, 0.00023348974355030805], "16": [310.31317138671875, 394.6548156738281, 0.0002428393781883642]}} +{"t": 24.359915, "tracked": true, "track_id": 1, "bbox": [88.67620086669922, 29.77663803100586, 564.5250244140625, 479.40753173828125], "det_conf": 0.9316003918647766, "mean_kpt_conf": 0.9253274310718883, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6206739263939675, "right_lift": -0.9401584159620431, "left_bend": 0.7449139068869236, "right_bend": 0.832080285778924}, "keypoints": {"0": [301.20501708984375, 133.6314697265625, 0.9989965558052063], "1": [322.8235778808594, 109.57098388671875, 0.9957473874092102], "2": [277.60906982421875, 107.83392333984375, 0.9973376393318176], "3": [346.7316589355469, 121.47793579101562, 0.8025702834129333], "4": [239.56214904785156, 116.80987548828125, 0.9157980680465698], "5": [397.2308349609375, 237.73553466796875, 0.991933286190033], "6": [182.91197204589844, 238.73358154296875, 0.9931299090385437], "7": [542.7125244140625, 352.8997802734375, 0.8333593010902405], "8": [124.83340454101562, 398.9831237792969, 0.8241531848907471], "9": [527.5723876953125, 201.72613525390625, 0.9294773936271667], "10": [192.05758666992188, 342.8693542480469, 0.8960987329483032], "11": [368.4102783203125, 480.0, 0.06677217036485672], "12": [236.29550170898438, 480.0, 0.06969654560089111], "13": [401.0542907714844, 394.48748779296875, 0.001893441192805767], "14": [269.64825439453125, 379.7291564941406, 0.0021012662909924984], "15": [410.10498046875, 419.2312927246094, 0.00023756369773764163], "16": [315.5762634277344, 400.3262023925781, 0.0002475982764735818]}} +{"t": 24.396141, "tracked": true, "track_id": 1, "bbox": [88.8816146850586, 29.620981216430664, 564.5542602539062, 479.86065673828125], "det_conf": 0.9330341815948486, "mean_kpt_conf": 0.930386407808824, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6221665547143328, "right_lift": -0.9326079950925179, "left_bend": 0.7334484561136307, "right_bend": 0.835086570096334}, "keypoints": {"0": [300.66302490234375, 134.1028594970703, 0.9990656971931458], "1": [322.5097961425781, 110.6702880859375, 0.996155321598053], "2": [277.28009033203125, 108.11216735839844, 0.9973886609077454], "3": [347.1376953125, 123.65231323242188, 0.815865695476532], "4": [239.62049865722656, 117.09523010253906, 0.9081622958183289], "5": [396.0145263671875, 241.18850708007812, 0.9919346570968628], "6": [185.9510955810547, 238.03196716308594, 0.9936605095863342], "7": [539.607177734375, 355.30303955078125, 0.8414695262908936], "8": [124.64225769042969, 396.46514892578125, 0.8515490293502808], "9": [529.75537109375, 196.33123779296875, 0.9308488965034485], "10": [194.75790405273438, 339.3603515625, 0.9081501960754395], "11": [370.1776428222656, 480.0, 0.0767376646399498], "12": [238.18431091308594, 480.0, 0.08391723036766052], "13": [406.37567138671875, 403.91973876953125, 0.0017574579687789083], "14": [262.4167785644531, 386.0534362792969, 0.0020403903909027576], "15": [424.2958679199219, 420.44195556640625, 0.00021110355737619102], "16": [298.7217102050781, 399.7296142578125, 0.00022792047820985317]}} +{"t": 24.459418, "tracked": true, "track_id": 1, "bbox": [88.739990234375, 29.59812355041504, 564.4909057617188, 479.6134338378906], "det_conf": 0.9325315356254578, "mean_kpt_conf": 0.9228657484054565, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.592701618866567, "right_lift": -0.937442059080695, "left_bend": 0.7384906992091177, "right_bend": 0.8277430232563456}, "keypoints": {"0": [300.86572265625, 133.65419006347656, 0.9989632368087769], "1": [322.5105285644531, 110.62759399414062, 0.9953972697257996], "2": [277.3796691894531, 108.04582214355469, 0.9973596930503845], "3": [345.9687805175781, 124.43649291992188, 0.7850719094276428], "4": [238.99758911132812, 118.12033081054688, 0.9186660647392273], "5": [396.44873046875, 238.89151000976562, 0.9916921854019165], "6": [183.0277099609375, 239.10110473632812, 0.9924877882003784], "7": [545.5267333984375, 348.596435546875, 0.8289483785629272], "8": [123.8387451171875, 398.47955322265625, 0.8153184056282043], "9": [527.1869506835938, 189.58883666992188, 0.9311098456382751], "10": [195.41525268554688, 341.2997131347656, 0.8965084552764893], "11": [367.9427185058594, 475.40704345703125, 0.059350598603487015], "12": [236.78733825683594, 478.491455078125, 0.06098282337188721], "13": [401.18231201171875, 387.14837646484375, 0.0019380159210413694], "14": [273.9725646972656, 370.253662109375, 0.0021463148295879364], "15": [408.06341552734375, 415.1399230957031, 0.0002551151264924556], "16": [316.8253479003906, 392.6385498046875, 0.0002647621149662882]}} +{"t": 24.494168, "tracked": true, "track_id": 1, "bbox": [88.3415298461914, 30.07354736328125, 563.5767211914062, 479.36285400390625], "det_conf": 0.9357395172119141, "mean_kpt_conf": 0.922786913134835, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6067773158966401, "right_lift": -0.938460886850456, "left_bend": 0.7514125552735965, "right_bend": 0.843839994767197}, "keypoints": {"0": [300.63958740234375, 134.45892333984375, 0.9989848732948303], "1": [322.4093933105469, 110.71565246582031, 0.9956620335578918], "2": [276.9139404296875, 108.6534423828125, 0.9973102807998657], "3": [346.1268005371094, 123.48672485351562, 0.7943993210792542], "4": [238.4083251953125, 118.29754638671875, 0.9133539199829102], "5": [397.0221862792969, 237.1533966064453, 0.9913039207458496], "6": [183.77647399902344, 239.27940368652344, 0.9925063252449036], "7": [545.85400390625, 350.7663879394531, 0.8235370516777039], "8": [123.79061889648438, 402.2693786621094, 0.8144597411155701], "9": [523.8035888671875, 191.804931640625, 0.9307276010513306], "10": [194.9877471923828, 338.8665466308594, 0.898410975933075], "11": [370.72760009765625, 475.0401611328125, 0.05495165288448334], "12": [239.77381896972656, 478.47381591796875, 0.057815346866846085], "13": [395.97979736328125, 386.4119873046875, 0.001899286755360663], "14": [268.88824462890625, 370.12457275390625, 0.002103349892422557], "15": [404.4512023925781, 417.5821533203125, 0.0002481356787029654], "16": [312.2428283691406, 394.83453369140625, 0.0002584025205578655]}} +{"t": 24.561223, "tracked": true, "track_id": 1, "bbox": [88.01595306396484, 29.983882904052734, 561.9501342773438, 479.3354187011719], "det_conf": 0.9333691000938416, "mean_kpt_conf": 0.9216578060930426, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5946603899931069, "right_lift": -0.9393996170187019, "left_bend": 0.7496741146912871, "right_bend": 0.8358315134156189}, "keypoints": {"0": [300.3572692871094, 134.1107635498047, 0.9989190101623535], "1": [322.2572326660156, 111.47320556640625, 0.9952449202537537], "2": [276.8169250488281, 108.47590637207031, 0.9971945285797119], "3": [345.3057861328125, 125.7762451171875, 0.7848220467567444], "4": [237.9080810546875, 118.79046630859375, 0.916695773601532], "5": [396.0178527832031, 236.8959197998047, 0.9912707805633545], "6": [183.26834106445312, 238.29833984375, 0.9922358393669128], "7": [543.0228271484375, 345.6279296875, 0.822595477104187], "8": [124.97140502929688, 398.04241943359375, 0.8124092221260071], "9": [519.7496337890625, 189.02310180664062, 0.9296106100082397], "10": [197.24481201171875, 336.5315246582031, 0.8972376585006714], "11": [370.0802307128906, 470.98004150390625, 0.05861729010939598], "12": [240.39898681640625, 473.83502197265625, 0.06176239624619484], "13": [388.6473083496094, 386.2001953125, 0.0020652511157095432], "14": [270.26971435546875, 369.07562255859375, 0.0022799863945692778], "15": [390.2537841796875, 421.5351257324219, 0.00026176421670243144], "16": [314.6131591796875, 396.3869934082031, 0.00027097758720628917]}} +{"t": 24.626141, "tracked": true, "track_id": 1, "bbox": [88.03684997558594, 29.823213577270508, 559.9733276367188, 479.2801513671875], "det_conf": 0.9347255229949951, "mean_kpt_conf": 0.926474473693154, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5843079227835982, "right_lift": -0.9265104426303005, "left_bend": 0.7553646656872267, "right_bend": 0.8207798140337298}, "keypoints": {"0": [299.65618896484375, 133.67507934570312, 0.998939573764801], "1": [321.4426574707031, 111.47964477539062, 0.9956795573234558], "2": [276.3033447265625, 108.60897827148438, 0.997174859046936], "3": [344.96624755859375, 126.13525390625, 0.8125951886177063], "4": [238.26998901367188, 119.57691955566406, 0.9105406403541565], "5": [393.82733154296875, 236.2911376953125, 0.9906314611434937], "6": [184.9793243408203, 237.5369873046875, 0.9925881028175354], "7": [539.9466552734375, 341.4979248046875, 0.8248524069786072], "8": [121.49424743652344, 393.8601989746094, 0.8309078216552734], "9": [512.5225830078125, 189.257080078125, 0.9315396547317505], "10": [198.83932495117188, 338.4097595214844, 0.905769944190979], "11": [367.93438720703125, 473.5038757324219, 0.06465201824903488], "12": [240.11776733398438, 476.19677734375, 0.07140211015939713], "13": [386.0520935058594, 393.8046569824219, 0.0020354948937892914], "14": [268.26727294921875, 375.74493408203125, 0.002331396332010627], "15": [395.1170349121094, 427.11376953125, 0.00025352954980917275], "16": [311.50341796875, 401.141357421875, 0.00027161388425156474]}} +{"t": 24.661121, "tracked": true, "track_id": 1, "bbox": [88.3834228515625, 29.646142959594727, 560.0543823242188, 479.4060974121094], "det_conf": 0.9348998665809631, "mean_kpt_conf": 0.9240258390253241, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6025046900366586, "right_lift": -0.9356804990347575, "left_bend": 0.7621018822171534, "right_bend": 0.8270308562309404}, "keypoints": {"0": [299.8504943847656, 134.22921752929688, 0.998969316482544], "1": [321.81512451171875, 111.89448547363281, 0.9953923225402832], "2": [276.60186767578125, 108.39990234375, 0.9973160624504089], "3": [345.362060546875, 126.18363952636719, 0.7867214679718018], "4": [237.61558532714844, 117.97407531738281, 0.9147454500198364], "5": [396.9237976074219, 239.42117309570312, 0.9915252327919006], "6": [182.61996459960938, 237.92518615722656, 0.9928460717201233], "7": [538.35205078125, 346.1866760253906, 0.8250702619552612], "8": [123.69404602050781, 394.1844482421875, 0.8290457129478455], "9": [509.21844482421875, 183.10711669921875, 0.9288073182106018], "10": [198.32650756835938, 335.44622802734375, 0.9038450121879578], "11": [373.5039978027344, 478.6311340332031, 0.07224462926387787], "12": [241.44451904296875, 480.0, 0.07824037224054337], "13": [395.80999755859375, 401.27001953125, 0.002029320690780878], "14": [271.5105895996094, 381.8312072753906, 0.0023020808584988117], "15": [398.217041015625, 427.8529052734375, 0.00023959297686815262], "16": [314.0354919433594, 401.66412353515625, 0.0002533162187319249]}} +{"t": 24.695225, "tracked": true, "track_id": 1, "bbox": [87.27680206298828, 30.048126220703125, 559.3272094726562, 479.4512634277344], "det_conf": 0.9316023588180542, "mean_kpt_conf": 0.9244911562312733, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5824469899340601, "right_lift": -0.9350859321733482, "left_bend": 0.7715755309070571, "right_bend": 0.8286165958343493}, "keypoints": {"0": [299.260009765625, 133.8572998046875, 0.9989976286888123], "1": [320.790283203125, 112.3321533203125, 0.9952993392944336], "2": [276.1518859863281, 108.35409545898438, 0.997435986995697], "3": [343.45648193359375, 128.19232177734375, 0.7653747797012329], "4": [236.7121124267578, 119.41450500488281, 0.9190163016319275], "5": [395.9847717285156, 237.5501708984375, 0.9913846254348755], "6": [180.9440460205078, 240.2410430908203, 0.9924851059913635], "7": [538.6595458984375, 339.78131103515625, 0.8344894647598267], "8": [121.09930419921875, 398.13226318359375, 0.8318132758140564], "9": [501.73944091796875, 183.11911010742188, 0.933201789855957], "10": [199.74588012695312, 335.8133544921875, 0.909904420375824], "11": [374.7550048828125, 473.6385498046875, 0.0650019496679306], "12": [241.14004516601562, 477.1579895019531, 0.06869400292634964], "13": [401.90509033203125, 388.8117980957031, 0.00203109928406775], "14": [270.2087707519531, 371.4981689453125, 0.002259825821965933], "15": [401.92022705078125, 426.70989990234375, 0.00025062699569389224], "16": [304.73797607421875, 397.80218505859375, 0.0002604621695354581]}} +{"t": 24.757338, "tracked": true, "track_id": 1, "bbox": [88.2823486328125, 29.898099899291992, 560.2313842773438, 479.49169921875], "det_conf": 0.937490701675415, "mean_kpt_conf": 0.9205386421897195, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5539435668856985, "right_lift": -0.933084051954804, "left_bend": 0.7770896555067718, "right_bend": 0.8335498563820133}, "keypoints": {"0": [299.41326904296875, 134.56124877929688, 0.9989859461784363], "1": [320.97662353515625, 112.23675537109375, 0.995019793510437], "2": [276.056640625, 108.74227905273438, 0.9974910020828247], "3": [343.4381103515625, 126.61614990234375, 0.7502280473709106], "4": [236.3441925048828, 118.85893249511719, 0.921745240688324], "5": [395.5032043457031, 235.28167724609375, 0.9908547401428223], "6": [182.3621826171875, 240.19264221191406, 0.9919205904006958], "7": [543.1703491210938, 333.53265380859375, 0.8219191431999207], "8": [122.34158325195312, 395.9078063964844, 0.8159037232398987], "9": [497.70196533203125, 177.41758728027344, 0.9333110451698303], "10": [198.4722900390625, 334.34686279296875, 0.9085457921028137], "11": [374.61846923828125, 475.6508483886719, 0.06082621216773987], "12": [244.43096923828125, 479.6791687011719, 0.06412377953529358], "13": [396.28729248046875, 393.2438049316406, 0.0020262172911316156], "14": [282.1595458984375, 375.432861328125, 0.0022490709088742733], "15": [393.9494323730469, 433.29345703125, 0.00024778954684734344], "16": [323.16058349609375, 402.552001953125, 0.00025637526414357126]}} +{"t": 24.825166, "tracked": true, "track_id": 1, "bbox": [86.78837585449219, 30.405099868774414, 560.1142578125, 479.560302734375], "det_conf": 0.9345039129257202, "mean_kpt_conf": 0.922351441600106, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5313447675451922, "right_lift": -0.9307060708420916, "left_bend": 0.7734828938382687, "right_bend": 0.8408429161599349}, "keypoints": {"0": [299.1960144042969, 133.8087615966797, 0.9990139007568359], "1": [320.96246337890625, 112.80036926269531, 0.9950867295265198], "2": [276.1974182128906, 108.18682861328125, 0.9975317716598511], "3": [342.865234375, 129.22509765625, 0.739361584186554], "4": [235.93194580078125, 119.34559631347656, 0.9228072762489319], "5": [393.014404296875, 233.11732482910156, 0.991122841835022], "6": [182.4183349609375, 241.76820373535156, 0.992073118686676], "7": [542.7647705078125, 327.04229736328125, 0.8376296758651733], "8": [119.42108154296875, 402.06634521484375, 0.8255014419555664], "9": [495.72833251953125, 174.43763732910156, 0.9353197813034058], "10": [198.6761016845703, 335.80621337890625, 0.9104177355766296], "11": [376.9514465332031, 472.28582763671875, 0.06563761085271835], "12": [247.02041625976562, 477.7127990722656, 0.06776522099971771], "13": [398.13836669921875, 392.79974365234375, 0.002037661848589778], "14": [277.79718017578125, 375.9355773925781, 0.0021834049839526415], "15": [398.94525146484375, 434.94903564453125, 0.00024009947082959116], "16": [309.4507751464844, 399.03814697265625, 0.00024183405912481248]}} +{"t": 24.887196, "tracked": true, "track_id": 1, "bbox": [88.42007446289062, 30.28824806213379, 560.6159057617188, 479.7073974609375], "det_conf": 0.9390421509742737, "mean_kpt_conf": 0.9201001416553151, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.49218004165402834, "right_lift": -0.9364745777361487, "left_bend": 0.7712887636134144, "right_bend": 0.8307154631130941}, "keypoints": {"0": [299.1355285644531, 134.48934936523438, 0.9989802241325378], "1": [321.2257385253906, 113.38798522949219, 0.9946234226226807], "2": [275.965576171875, 108.55250549316406, 0.9975826740264893], "3": [342.7030944824219, 129.1568603515625, 0.7216220498085022], "4": [234.89845275878906, 119.02349853515625, 0.9300804138183594], "5": [392.83203125, 230.56419372558594, 0.9913005232810974], "6": [180.21798706054688, 242.31268310546875, 0.992119550704956], "7": [545.886962890625, 317.10198974609375, 0.8363766074180603], "8": [120.9827880859375, 400.4725036621094, 0.8207905292510986], "9": [493.954833984375, 169.20448303222656, 0.9332823753356934], "10": [196.40805053710938, 339.4020080566406, 0.9043431878089905], "11": [373.8504943847656, 477.24859619140625, 0.06857244670391083], "12": [243.9371795654297, 480.0, 0.07045955955982208], "13": [388.89447021484375, 396.5773010253906, 0.002000583801418543], "14": [277.1275634765625, 380.10546875, 0.0021223630756139755], "15": [381.8832702636719, 440.48687744140625, 0.00023704803606960922], "16": [313.0198974609375, 402.3046875, 0.00023462522949557751]}} +{"t": 24.955746, "tracked": true, "track_id": 1, "bbox": [88.84857177734375, 30.70772933959961, 560.6331787109375, 479.8160095214844], "det_conf": 0.9393914937973022, "mean_kpt_conf": 0.9194061485203829, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.47312096546199994, "right_lift": -0.9349674021461714, "left_bend": 0.771923194844529, "right_bend": 0.8326629879351576}, "keypoints": {"0": [297.2633056640625, 134.65823364257812, 0.9989147186279297], "1": [319.6050109863281, 114.03254699707031, 0.9946542978286743], "2": [274.63641357421875, 108.59686279296875, 0.9973911046981812], "3": [341.4300537109375, 130.85008239746094, 0.7454863786697388], "4": [234.31912231445312, 119.37680053710938, 0.9246476888656616], "5": [392.1712646484375, 232.76800537109375, 0.9909349083900452], "6": [179.0841827392578, 244.73855590820312, 0.9915412068367004], "7": [547.631591796875, 316.2546691894531, 0.8301125764846802], "8": [119.97320556640625, 400.53668212890625, 0.8031702637672424], "9": [492.750732421875, 171.08641052246094, 0.9347051978111267], "10": [197.21385192871094, 337.75994873046875, 0.9019092917442322], "11": [373.7627868652344, 473.36859130859375, 0.0625118687748909], "12": [243.99131774902344, 479.84454345703125, 0.06267783045768738], "13": [394.334228515625, 391.94500732421875, 0.0020852210000157356], "14": [286.23187255859375, 375.59112548828125, 0.0021953124087303877], "15": [387.55487060546875, 438.5229797363281, 0.0002566765761002898], "16": [324.7962646484375, 398.07171630859375, 0.0002555104438215494]}} +{"t": 25.021903, "tracked": true, "track_id": 1, "bbox": [88.28123474121094, 30.544818878173828, 561.2102661132812, 479.7917785644531], "det_conf": 0.9358466863632202, "mean_kpt_conf": 0.9195785522460938, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5016908355928629, "right_lift": -0.9371369666950168, "left_bend": 0.776145259803417, "right_bend": 0.8307506981967734}, "keypoints": {"0": [297.5788269042969, 134.70574951171875, 0.9989153146743774], "1": [319.7093505859375, 113.93022155761719, 0.994759738445282], "2": [274.612060546875, 108.93890380859375, 0.9973698854446411], "3": [341.72906494140625, 130.933349609375, 0.7528332471847534], "4": [234.23477172851562, 120.49520874023438, 0.9228278994560242], "5": [394.8613586425781, 234.07139587402344, 0.9909136295318604], "6": [178.10797119140625, 244.46932983398438, 0.9917317032814026], "7": [545.27392578125, 321.3043518066406, 0.8250336647033691], "8": [119.80368041992188, 401.0455322265625, 0.8066979646682739], "9": [491.06640625, 169.02333068847656, 0.9320868253707886], "10": [197.91148376464844, 337.54345703125, 0.9021942019462585], "11": [377.1241149902344, 472.0257263183594, 0.059719786047935486], "12": [244.78765869140625, 478.0219421386719, 0.06125069409608841], "13": [397.71844482421875, 388.10791015625, 0.002069304697215557], "14": [284.2286376953125, 371.6144714355469, 0.0022309208288788795], "15": [388.60321044921875, 435.5059814453125, 0.00025943436776287854], "16": [323.76287841796875, 398.2989196777344, 0.00026366757811047137]}} +{"t": 25.089485, "tracked": true, "track_id": 1, "bbox": [87.96382141113281, 30.325061798095703, 560.330322265625, 479.7377014160156], "det_conf": 0.9383792877197266, "mean_kpt_conf": 0.9211633584716103, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4737163964503014, "right_lift": -0.9394470796207739, "left_bend": 0.7750312132164032, "right_bend": 0.831852745624228}, "keypoints": {"0": [296.5422668457031, 134.12022399902344, 0.9989620447158813], "1": [318.8843688964844, 113.55349731445312, 0.994752049446106], "2": [273.71923828125, 108.19744873046875, 0.9974848031997681], "3": [340.486083984375, 130.45474243164062, 0.7397788763046265], "4": [233.09378051757812, 119.32437133789062, 0.9253700375556946], "5": [392.0140686035156, 229.8014373779297, 0.9910401701927185], "6": [178.69203186035156, 243.408935546875, 0.9919866323471069], "7": [547.6875610351562, 313.5382080078125, 0.8353486061096191], "8": [120.95820617675781, 401.67803955078125, 0.8190202116966248], "9": [491.1932678222656, 168.1116943359375, 0.9339553713798523], "10": [196.78372192382812, 338.74346923828125, 0.9050981402397156], "11": [376.10205078125, 475.1636047363281, 0.06313224136829376], "12": [245.82220458984375, 480.0, 0.06517645716667175], "13": [391.8536376953125, 390.4602355957031, 0.001988485688343644], "14": [280.8477783203125, 374.1360778808594, 0.0021297733765095472], "15": [384.6162109375, 440.4034423828125, 0.0002447325678076595], "16": [318.1159362792969, 399.0344543457031, 0.0002459712268318981]}} +{"t": 25.153002, "tracked": true, "track_id": 1, "bbox": [89.13510131835938, 30.500078201293945, 560.1642456054688, 479.7122802734375], "det_conf": 0.9402868151664734, "mean_kpt_conf": 0.9241146174344149, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4701442023457893, "right_lift": -0.9322711106063011, "left_bend": 0.7684587101532157, "right_bend": 0.8505277732333706}, "keypoints": {"0": [296.00439453125, 136.45816040039062, 0.9989469647407532], "1": [318.6979064941406, 114.54083251953125, 0.9952581524848938], "2": [273.2475280761719, 110.11758422851562, 0.9972902536392212], "3": [342.04595947265625, 129.0042266845703, 0.7799510955810547], "4": [234.37109375, 119.46002197265625, 0.9116610288619995], "5": [391.23974609375, 229.8305206298828, 0.9903723001480103], "6": [185.1505584716797, 243.34115600585938, 0.9919947385787964], "7": [547.0723876953125, 312.840576171875, 0.8306353688240051], "8": [124.94427490234375, 398.49517822265625, 0.8256615400314331], "9": [492.8846130371094, 166.1861114501953, 0.9339274168014526], "10": [195.65782165527344, 335.0772705078125, 0.9095619320869446], "11": [376.2027893066406, 476.3050842285156, 0.06766556948423386], "12": [249.720703125, 480.0, 0.07198898494243622], "13": [395.65185546875, 398.15704345703125, 0.00200246786698699], "14": [284.3330993652344, 381.4596862792969, 0.0022250746842473745], "15": [395.71221923828125, 440.16815185546875, 0.0002434613707009703], "16": [317.492919921875, 400.4308776855469, 0.00025395728880539536]}} +{"t": 25.21524, "tracked": true, "track_id": 1, "bbox": [89.51112365722656, 31.010032653808594, 559.6505737304688, 479.9844970703125], "det_conf": 0.9391865730285645, "mean_kpt_conf": 0.9258170236240734, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4695236648922958, "right_lift": -0.9294526267379767, "left_bend": 0.7662165079970754, "right_bend": 0.8379417305132791}, "keypoints": {"0": [295.99945068359375, 135.41830444335938, 0.9989635944366455], "1": [317.864990234375, 113.63259887695312, 0.9953569769859314], "2": [273.0701904296875, 110.102294921875, 0.9973238706588745], "3": [340.7576599121094, 128.03273010253906, 0.7829933166503906], "4": [234.54734802246094, 120.63723754882812, 0.9133455753326416], "5": [392.52020263671875, 227.27894592285156, 0.9908068776130676], "6": [183.94215393066406, 242.35621643066406, 0.9922926425933838], "7": [548.0123291015625, 309.96734619140625, 0.8374311327934265], "8": [122.31610107421875, 397.60711669921875, 0.8327158689498901], "9": [495.457275390625, 164.90895080566406, 0.9338106513023376], "10": [195.0774383544922, 338.3084716796875, 0.9089467525482178], "11": [377.5048828125, 474.50360107421875, 0.0712089091539383], "12": [249.84837341308594, 480.0, 0.07596097141504288], "13": [394.7291564941406, 396.10736083984375, 0.0020186055917292833], "14": [282.46722412109375, 380.8907470703125, 0.002247726311907172], "15": [391.3153076171875, 440.19390869140625, 0.0002425943239359185], "16": [315.2042236328125, 403.7630615234375, 0.0002532978542149067]}} +{"t": 25.251745, "tracked": true, "track_id": 1, "bbox": [89.40589904785156, 30.515840530395508, 560.10546875, 480.0], "det_conf": 0.9350573420524597, "mean_kpt_conf": 0.9281461455605247, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.49920979231146567, "right_lift": -0.9350846456723865, "left_bend": 0.7554396933844463, "right_bend": 0.823491714596028}, "keypoints": {"0": [295.1785583496094, 135.66064453125, 0.9989425539970398], "1": [317.54644775390625, 113.73770141601562, 0.9956873059272766], "2": [272.29815673828125, 110.46609497070312, 0.9971344470977783], "3": [341.7942810058594, 128.15908813476562, 0.8226761221885681], "4": [234.91761779785156, 121.00396728515625, 0.9016076326370239], "5": [395.90252685546875, 230.02725219726562, 0.9913944602012634], "6": [183.65728759765625, 240.16644287109375, 0.993039071559906], "7": [549.0787963867188, 318.27740478515625, 0.8348711729049683], "8": [124.54225158691406, 396.1307373046875, 0.8427983522415161], "9": [503.6922607421875, 160.32261657714844, 0.92888343334198], "10": [194.46255493164062, 342.5364990234375, 0.9025730490684509], "11": [377.1672058105469, 477.2922058105469, 0.07172193378210068], "12": [246.91563415527344, 480.0, 0.07959970086812973], "13": [392.5312805175781, 395.25115966796875, 0.0019266209565103054], "14": [273.47760009765625, 376.8466491699219, 0.0022452371194958687], "15": [388.633056640625, 432.0048828125, 0.00024308123101945966], "16": [309.04400634765625, 398.14886474609375, 0.00026476135826669633]}} +{"t": 25.316142, "tracked": true, "track_id": 1, "bbox": [89.05575561523438, 30.773569107055664, 561.5320434570312, 480.0], "det_conf": 0.932320237159729, "mean_kpt_conf": 0.93054645169865, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4955188996334727, "right_lift": -0.9281421188789077, "left_bend": 0.7446503955505973, "right_bend": 0.8290751530691369}, "keypoints": {"0": [294.9637451171875, 135.6697998046875, 0.999029278755188], "1": [316.79534912109375, 113.38848876953125, 0.99601811170578], "2": [271.8804931640625, 110.50767517089844, 0.9973330497741699], "3": [340.9475402832031, 127.49575805664062, 0.8146878480911255], "4": [234.4403839111328, 121.19525146484375, 0.9042725563049316], "5": [393.4931945800781, 229.75721740722656, 0.9912610650062561], "6": [185.04994201660156, 241.26361083984375, 0.9929308891296387], "7": [548.709228515625, 318.3051452636719, 0.8454688787460327], "8": [122.31668090820312, 397.68841552734375, 0.8507834076881409], "9": [510.068115234375, 167.0750732421875, 0.9337431192398071], "10": [194.26675415039062, 342.71710205078125, 0.9104827642440796], "11": [377.8957824707031, 475.013671875, 0.07343755662441254], "12": [248.16513061523438, 480.0, 0.08019905537366867], "13": [402.1712646484375, 395.2772216796875, 0.0018617052119225264], "14": [271.7298583984375, 379.183349609375, 0.002142430515959859], "15": [406.9951477050781, 431.967529296875, 0.00022656458895653486], "16": [298.65753173828125, 400.03570556640625, 0.00024400353140663356]}} +{"t": 25.350858, "tracked": true, "track_id": 1, "bbox": [89.50912475585938, 31.095033645629883, 561.214599609375, 480.0], "det_conf": 0.932971715927124, "mean_kpt_conf": 0.9338679584589872, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5099784338827285, "right_lift": -0.9340260568723708, "left_bend": 0.7379844280460279, "right_bend": 0.8414428340966501}, "keypoints": {"0": [294.1910095214844, 135.60284423828125, 0.9989954829216003], "1": [316.1282958984375, 113.13397216796875, 0.9963541030883789], "2": [271.022705078125, 111.21611022949219, 0.9970550537109375], "3": [341.36065673828125, 126.88348388671875, 0.8519472479820251], "4": [234.9019775390625, 122.642333984375, 0.8901445865631104], "5": [394.5831298828125, 229.7239990234375, 0.9917094111442566], "6": [185.74366760253906, 241.8431396484375, 0.993588924407959], "7": [548.5391235351562, 320.999755859375, 0.8531346917152405], "8": [126.26177978515625, 397.37750244140625, 0.8598004579544067], "9": [515.8251953125, 169.36904907226562, 0.9323853850364685], "10": [193.05238342285156, 340.270263671875, 0.9074321985244751], "11": [377.6129455566406, 480.0, 0.0885177031159401], "12": [247.49359130859375, 480.0, 0.09795179963111877], "13": [402.74786376953125, 402.806396484375, 0.0018778532976284623], "14": [269.61663818359375, 387.93865966796875, 0.0022017385344952345], "15": [410.923095703125, 431.98834228515625, 0.0002239837049273774], "16": [301.33856201171875, 403.7115173339844, 0.0002472118940204382]}} +{"t": 25.416725, "tracked": true, "track_id": 1, "bbox": [88.32152557373047, 31.433181762695312, 562.50537109375, 480.0], "det_conf": 0.9312758445739746, "mean_kpt_conf": 0.9336341186003252, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.49629443618397795, "right_lift": -0.9262879304675674, "left_bend": 0.7077229531521373, "right_bend": 0.8468878186700085}, "keypoints": {"0": [294.40234375, 135.04852294921875, 0.9990109205245972], "1": [315.8865051269531, 112.579833984375, 0.9964007139205933], "2": [270.8262939453125, 110.89361572265625, 0.9971280694007874], "3": [341.1799011230469, 127.15225219726562, 0.8555143475532532], "4": [235.23948669433594, 123.6116943359375, 0.8932421207427979], "5": [393.56317138671875, 234.02976989746094, 0.9915067553520203], "6": [187.78378295898438, 243.64389038085938, 0.9936740398406982], "7": [550.134521484375, 323.53631591796875, 0.8441029191017151], "8": [125.56869506835938, 396.58062744140625, 0.8595438599586487], "9": [528.583251953125, 162.76602172851562, 0.9311456084251404], "10": [190.46202087402344, 341.5408935546875, 0.9087059497833252], "11": [374.9173889160156, 480.0, 0.07816075533628464], "12": [247.25506591796875, 480.0, 0.08828545361757278], "13": [407.029052734375, 399.45458984375, 0.0017732734559103847], "14": [276.9513244628906, 383.7481994628906, 0.002177231479436159], "15": [418.93365478515625, 423.0955810546875, 0.00022516673197969794], "16": [308.8893127441406, 398.05584716796875, 0.0002574731770437211]}} +{"t": 25.480899, "tracked": true, "track_id": 1, "bbox": [87.73577880859375, 30.958335876464844, 564.98828125, 479.7826232910156], "det_conf": 0.9260773658752441, "mean_kpt_conf": 0.9311886971647089, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.46825918301441344, "right_lift": -0.933924317408581, "left_bend": 0.6743497204711123, "right_bend": 0.8428168923453246}, "keypoints": {"0": [294.4651794433594, 135.41238403320312, 0.9989879727363586], "1": [316.1071472167969, 112.9798583984375, 0.9961053729057312], "2": [270.8219909667969, 110.80882263183594, 0.997183620929718], "3": [340.642578125, 127.47796630859375, 0.8333411812782288], "4": [234.23294067382812, 122.93121337890625, 0.9028849005699158], "5": [388.8627624511719, 234.1275177001953, 0.9912075400352478], "6": [187.79518127441406, 244.46005249023438, 0.9931281805038452], "7": [551.9486083984375, 320.55487060546875, 0.8443334102630615], "8": [128.8890838623047, 398.35748291015625, 0.8490933775901794], "9": [542.450439453125, 163.53395080566406, 0.9331141710281372], "10": [193.27305603027344, 342.8570251464844, 0.9036959409713745], "11": [367.1318054199219, 476.84735107421875, 0.07685494422912598], "12": [242.45352172851562, 480.0, 0.08437579870223999], "13": [396.5971984863281, 399.13702392578125, 0.0018665252719074488], "14": [268.85894775390625, 384.2366027832031, 0.0022002134937793016], "15": [414.383056640625, 421.4271240234375, 0.00023138288815971464], "16": [301.83709716796875, 395.6584167480469, 0.00025321406428702176]}} +{"t": 25.515971, "tracked": true, "track_id": 1, "bbox": [88.3074951171875, 30.9423828125, 566.966552734375, 480.0], "det_conf": 0.9308906197547913, "mean_kpt_conf": 0.9292122992602262, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4778995793278318, "right_lift": -0.9315990951506677, "left_bend": 0.6792776861297954, "right_bend": 0.8463319436469114}, "keypoints": {"0": [294.065185546875, 135.8314971923828, 0.9989076852798462], "1": [315.6407775878906, 112.37796020507812, 0.9960414171218872], "2": [270.0357360839844, 111.21466064453125, 0.9969701766967773], "3": [341.0959167480469, 125.22618103027344, 0.8478399515151978], "4": [233.94874572753906, 122.67781066894531, 0.9014191031455994], "5": [391.7767333984375, 234.52670288085938, 0.9913432598114014], "6": [186.9248046875, 245.987060546875, 0.993405818939209], "7": [551.2328491210938, 321.2784729003906, 0.8317018151283264], "8": [128.50650024414062, 395.7100830078125, 0.8387840390205383], "9": [541.2630615234375, 168.00787353515625, 0.9267617464065552], "10": [189.6234588623047, 342.53466796875, 0.8981602787971497], "11": [373.7968444824219, 478.29193115234375, 0.07867700606584549], "12": [248.37313842773438, 480.0, 0.08660788089036942], "13": [409.57769775390625, 399.5232238769531, 0.0019108116393908858], "14": [290.6454772949219, 387.319091796875, 0.0023223182652145624], "15": [421.011962890625, 415.4038391113281, 0.00024528574431315064], "16": [331.91552734375, 394.44732666015625, 0.000278081075521186]}} +{"t": 25.550341, "tracked": true, "track_id": 1, "bbox": [88.23016357421875, 30.96673011779785, 570.62646484375, 480.0], "det_conf": 0.930742621421814, "mean_kpt_conf": 0.930684588172219, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4859983374706424, "right_lift": -0.9333908479141606, "left_bend": 0.6671623913261868, "right_bend": 0.8491120162389992}, "keypoints": {"0": [293.5603332519531, 136.2536163330078, 0.9989509582519531], "1": [315.6703796386719, 112.94070434570312, 0.9962913990020752], "2": [269.7689208984375, 111.239013671875, 0.9969856142997742], "3": [341.1868896484375, 126.26972961425781, 0.8529344797134399], "4": [233.73281860351562, 122.32315063476562, 0.8983879089355469], "5": [390.27362060546875, 234.5116424560547, 0.9913321733474731], "6": [186.45010375976562, 244.66888427734375, 0.9933607578277588], "7": [551.8057861328125, 324.33770751953125, 0.8376253247261047], "8": [127.04705810546875, 399.1749267578125, 0.842649519443512], "9": [549.0445556640625, 167.91934204101562, 0.9295992851257324], "10": [191.12039184570312, 341.86688232421875, 0.8994130492210388], "11": [370.9021911621094, 479.00457763671875, 0.07353805005550385], "12": [245.3785400390625, 480.0, 0.0812022015452385], "13": [401.3811340332031, 397.28558349609375, 0.001829006476327777], "14": [276.25604248046875, 384.10821533203125, 0.0021865135058760643], "15": [417.56988525390625, 418.1018371582031, 0.00023559854889754206], "16": [314.8389587402344, 395.5467834472656, 0.00026291474932804704]}} +{"t": 25.613885, "tracked": true, "track_id": 1, "bbox": [87.79688262939453, 30.971092224121094, 576.422607421875, 480.0], "det_conf": 0.9234899878501892, "mean_kpt_conf": 0.9320240291682157, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.487595812562487, "right_lift": -0.9325121244580423, "left_bend": 0.6613502589886353, "right_bend": 0.8607380149499674}, "keypoints": {"0": [293.7131652832031, 135.25213623046875, 0.9990009665489197], "1": [315.1968994140625, 112.519775390625, 0.9963138699531555], "2": [269.7727966308594, 110.72444152832031, 0.9970487952232361], "3": [339.9596862792969, 126.90664672851562, 0.8396157622337341], "4": [233.2343292236328, 123.00538635253906, 0.8987976908683777], "5": [389.3282470703125, 234.414794921875, 0.9919412136077881], "6": [187.09059143066406, 245.8003692626953, 0.9935187697410583], "7": [552.7364501953125, 325.6757507324219, 0.8526884913444519], "8": [126.44949340820312, 402.3844299316406, 0.8496307134628296], "9": [553.1118774414062, 171.6307373046875, 0.9319338798522949], "10": [189.81607055664062, 341.69720458984375, 0.9017741680145264], "11": [375.3203430175781, 479.55419921875, 0.07795400172472], "12": [249.95364379882812, 480.0, 0.08352570980787277], "13": [409.6611022949219, 395.38592529296875, 0.0017901445971801877], "14": [279.24322509765625, 383.259521484375, 0.0020827031694352627], "15": [429.91192626953125, 413.307373046875, 0.00022634005290456116], "16": [313.40435791015625, 390.33941650390625, 0.00024787982692942023]}} +{"t": 25.680883, "tracked": true, "track_id": 1, "bbox": [86.98289489746094, 30.980134963989258, 580.6058349609375, 480.0], "det_conf": 0.9201217889785767, "mean_kpt_conf": 0.9315524859861894, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.4766604734661011, "right_lift": -0.9239656643875931, "left_bend": 0.6373378616137487, "right_bend": 0.8482074114137079}, "keypoints": {"0": [294.4476013183594, 136.09347534179688, 0.9989684820175171], "1": [315.7501525878906, 112.47470092773438, 0.9963349103927612], "2": [270.342529296875, 111.28402709960938, 0.9969377517700195], "3": [340.8974609375, 124.95059204101562, 0.8388611078262329], "4": [233.97259521484375, 122.14045715332031, 0.8982951641082764], "5": [387.39910888671875, 233.9305419921875, 0.9918001294136047], "6": [187.97608947753906, 245.6085205078125, 0.9932098984718323], "7": [549.8650512695312, 322.02313232421875, 0.855758547782898], "8": [124.2069091796875, 399.6590270996094, 0.8443637490272522], "9": [559.7249755859375, 171.45701599121094, 0.9327427744865417], "10": [190.67446899414062, 343.5090026855469, 0.8998048305511475], "11": [373.4698486328125, 477.4736328125, 0.07869294285774231], "12": [249.5381622314453, 480.0, 0.08189321309328079], "13": [415.0641174316406, 394.0367431640625, 0.0017961064586415887], "14": [283.96087646484375, 384.1700439453125, 0.0020482128020375967], "15": [440.4604797363281, 405.4666442871094, 0.00023349288676399738], "16": [318.8440246582031, 386.9812927246094, 0.0002520523557905108]}} +{"t": 25.74254, "tracked": true, "track_id": 1, "bbox": [87.09379577636719, 31.82956314086914, 580.3565673828125, 479.5113525390625], "det_conf": 0.9221070408821106, "mean_kpt_conf": 0.9305807839740406, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5121358039626938, "right_lift": -0.9325850975587974, "left_bend": 0.6486145889596864, "right_bend": 0.8524268668525229}, "keypoints": {"0": [295.6442565917969, 137.86630249023438, 0.9990166425704956], "1": [317.5362548828125, 114.06491088867188, 0.9962269067764282], "2": [271.8394775390625, 111.99118041992188, 0.997123658657074], "3": [342.31256103515625, 126.06964111328125, 0.8171311616897583], "4": [234.62557983398438, 120.84945678710938, 0.9030429720878601], "5": [388.29974365234375, 234.87326049804688, 0.9917991161346436], "6": [188.12359619140625, 242.33692932128906, 0.9930538535118103], "7": [549.1488037109375, 330.7821350097656, 0.8549367785453796], "8": [126.89865112304688, 400.52349853515625, 0.8475877046585083], "9": [560.0628051757812, 176.8503875732422, 0.9333940148353577], "10": [193.75962829589844, 339.73101806640625, 0.9030758142471313], "11": [372.9964904785156, 477.25872802734375, 0.07353777438402176], "12": [247.50543212890625, 480.0, 0.07721992582082748], "13": [408.3013916015625, 391.717041015625, 0.0017690631793811917], "14": [268.9616394042969, 379.14990234375, 0.0019928093533962965], "15": [433.02392578125, 409.1747131347656, 0.00022624661505687982], "16": [299.67095947265625, 387.808837890625, 0.00023905467242002487]}} +{"t": 25.810567, "tracked": true, "track_id": 1, "bbox": [85.7708969116211, 32.283878326416016, 579.3070678710938, 479.15057373046875], "det_conf": 0.9188657999038696, "mean_kpt_conf": 0.9273071072318337, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5226438331714267, "right_lift": -0.9330102366883108, "left_bend": 0.664795794758056, "right_bend": 0.8405390635459614}, "keypoints": {"0": [297.1050109863281, 138.16641235351562, 0.9990853071212769], "1": [317.9679260253906, 114.28201293945312, 0.995826005935669], "2": [273.0950927734375, 112.22659301757812, 0.9974784255027771], "3": [341.394287109375, 125.86700439453125, 0.761728048324585], "4": [234.0874786376953, 120.68832397460938, 0.9160094261169434], "5": [389.2177734375, 238.94546508789062, 0.9922103881835938], "6": [185.20635986328125, 242.95599365234375, 0.9929147958755493], "7": [549.71484375, 337.3358154296875, 0.8571144342422485], "8": [125.40005493164062, 398.0203857421875, 0.8439999222755432], "9": [554.7479248046875, 181.21804809570312, 0.936523973941803], "10": [196.4117431640625, 337.99798583984375, 0.9074874520301819], "11": [373.7689208984375, 480.0, 0.07490274310112], "12": [245.5648651123047, 480.0, 0.0764641985297203], "13": [413.2284851074219, 396.5934143066406, 0.00170066487044096], "14": [271.7002868652344, 382.51715087890625, 0.0018659293418750167], "15": [439.7173767089844, 408.51416015625, 0.0002082000719383359], "16": [307.0888366699219, 387.70404052734375, 0.0002130197244696319]}} +{"t": 25.843979, "tracked": true, "track_id": 1, "bbox": [86.10216522216797, 32.687068939208984, 578.0477905273438, 479.0256652832031], "det_conf": 0.9234629273414612, "mean_kpt_conf": 0.9284989833831787, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5254187632327012, "right_lift": -0.9334885593074324, "left_bend": 0.6608650148020564, "right_bend": 0.8406222633744767}, "keypoints": {"0": [296.45599365234375, 137.2249755859375, 0.9989656209945679], "1": [318.0832824707031, 113.68513488769531, 0.9958568215370178], "2": [273.1840515136719, 111.5860595703125, 0.997093677520752], "3": [342.209716796875, 125.48052978515625, 0.7986800670623779], "4": [235.94247436523438, 120.05648803710938, 0.9064042568206787], "5": [387.4117126464844, 235.01943969726562, 0.9918535351753235], "6": [184.6195526123047, 241.23583984375, 0.992628812789917], "7": [546.1707763671875, 333.0574035644531, 0.8600170612335205], "8": [123.8240966796875, 399.4921875, 0.8370352387428284], "9": [553.4390869140625, 181.22743225097656, 0.9358130693435669], "10": [194.34359741210938, 339.6929626464844, 0.8991406559944153], "11": [367.0586242675781, 478.4975891113281, 0.07088764756917953], "12": [239.94039916992188, 480.0, 0.07087408006191254], "13": [408.0779724121094, 387.10296630859375, 0.0018150208052247763], "14": [267.833251953125, 374.7989807128906, 0.0019497083267197013], "15": [435.18310546875, 404.9743957519531, 0.000243945381953381], "16": [305.3153381347656, 384.3338623046875, 0.0002477569505572319]}} +{"t": 25.87781, "tracked": true, "track_id": 1, "bbox": [86.12400817871094, 32.584415435791016, 577.6454467773438, 479.1121520996094], "det_conf": 0.9174328446388245, "mean_kpt_conf": 0.9332616654309359, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.49903307727234675, "right_lift": -0.9277300228069295, "left_bend": 0.6547359050058177, "right_bend": 0.8430957151656732}, "keypoints": {"0": [297.23199462890625, 137.2713623046875, 0.9990216493606567], "1": [319.0343017578125, 114.45193481445312, 0.9961666464805603], "2": [273.81939697265625, 111.83866882324219, 0.9971950054168701], "3": [343.50714111328125, 127.52117919921875, 0.8145154118537903], "4": [236.29702758789062, 121.23536682128906, 0.9058018922805786], "5": [388.11322021484375, 236.1771697998047, 0.9922096729278564], "6": [186.68978881835938, 242.48239135742188, 0.9932767152786255], "7": [548.76318359375, 328.6895446777344, 0.8676534295082092], "8": [124.695556640625, 396.57110595703125, 0.8545263409614563], "9": [554.21337890625, 178.88270568847656, 0.9377903938293457], "10": [197.72740173339844, 335.6348571777344, 0.9077211618423462], "11": [369.55242919921875, 480.0, 0.08590123802423477], "12": [242.49166870117188, 480.0, 0.08797245472669601], "13": [411.9161071777344, 396.78643798828125, 0.0017826537368819118], "14": [269.4566955566406, 383.5869140625, 0.0019734154921025038], "15": [441.52874755859375, 409.58758544921875, 0.00022235169308260083], "16": [302.4043273925781, 386.26666259765625, 0.00023153515940066427]}} +{"t": 25.945027, "tracked": true, "track_id": 1, "bbox": [86.23361206054688, 32.56694412231445, 576.383544921875, 479.4451599121094], "det_conf": 0.9224942922592163, "mean_kpt_conf": 0.9290876442735846, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5274926346960359, "right_lift": -0.9279853304327875, "left_bend": 0.6706687614712172, "right_bend": 0.8357965018752994}, "keypoints": {"0": [298.1309814453125, 137.90438842773438, 0.9990430474281311], "1": [319.3852844238281, 114.6307373046875, 0.9958028197288513], "2": [274.8092346191406, 112.27102661132812, 0.997379720211029], "3": [342.947998046875, 126.756103515625, 0.7788917422294617], "4": [236.9062042236328, 120.69503784179688, 0.9136120080947876], "5": [388.43389892578125, 238.4083709716797, 0.9920021295547485], "6": [185.88938903808594, 240.94078063964844, 0.992864727973938], "7": [547.8184204101562, 337.37042236328125, 0.8588201403617859], "8": [123.76161193847656, 395.667236328125, 0.844701886177063], "9": [550.8191528320312, 183.30670166015625, 0.9383513927459717], "10": [198.42454528808594, 336.1365051269531, 0.9084944725036621], "11": [368.03680419921875, 480.0, 0.07817140966653824], "12": [241.40701293945312, 480.0, 0.0797208920121193], "13": [407.9904479980469, 398.5765686035156, 0.001785817788913846], "14": [272.5232849121094, 383.5917663574219, 0.001961602596566081], "15": [436.1080627441406, 413.65924072265625, 0.00021876122627872974], "16": [310.58746337890625, 391.55926513671875, 0.0002245306532131508]}} +{"t": 25.980018, "tracked": true, "track_id": 1, "bbox": [85.41883087158203, 32.757080078125, 575.5372314453125, 479.60748291015625], "det_conf": 0.9220442175865173, "mean_kpt_conf": 0.9273238344625994, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5535626562062576, "right_lift": -0.9364246771633989, "left_bend": 0.6845886023792952, "right_bend": 0.8257200714355358}, "keypoints": {"0": [297.3663635253906, 138.57138061523438, 0.9989818930625916], "1": [319.4992370605469, 115.23191833496094, 0.9958076477050781], "2": [274.53253173828125, 112.28077697753906, 0.9972068667411804], "3": [343.9869384765625, 127.50271606445312, 0.8016064763069153], "4": [237.08157348632812, 119.8050537109375, 0.9095739722251892], "5": [391.9918518066406, 241.0595245361328, 0.991934061050415], "6": [182.3254852294922, 241.20846557617188, 0.9928870797157288], "7": [546.14404296875, 343.5236511230469, 0.8452979326248169], "8": [123.85096740722656, 397.2696533203125, 0.8334454298019409], "9": [547.2000732421875, 186.7024688720703, 0.9334141612052917], "10": [199.34437561035156, 338.09832763671875, 0.9004066586494446], "11": [367.0040283203125, 480.0, 0.07129240036010742], "12": [236.06886291503906, 480.0, 0.07376471906900406], "13": [404.4905090332031, 395.66680908203125, 0.001813612412661314], "14": [265.8529052734375, 379.9479064941406, 0.0020189101342111826], "15": [423.57373046875, 414.57330322265625, 0.00023070856695994735], "16": [306.9208984375, 392.4949951171875, 0.00024000313715077937]}} +{"t": 26.0417, "tracked": true, "track_id": 1, "bbox": [86.02648162841797, 32.558387756347656, 574.87548828125, 479.8121337890625], "det_conf": 0.9237315058708191, "mean_kpt_conf": 0.9313028779896823, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5376713982593602, "right_lift": -0.9286836674520026, "left_bend": 0.6806149709846853, "right_bend": 0.8319784913917603}, "keypoints": {"0": [298.31048583984375, 138.34121704101562, 0.9990693926811218], "1": [320.0606384277344, 115.26284790039062, 0.9959943294525146], "2": [275.4151611328125, 112.36749267578125, 0.9973959922790527], "3": [343.82110595703125, 127.27326965332031, 0.7857200503349304], "4": [237.47119140625, 119.8243408203125, 0.9112581610679626], "5": [388.52423095703125, 237.1181640625, 0.9921000599861145], "6": [185.89024353027344, 239.1964111328125, 0.9930192828178406], "7": [547.104736328125, 338.243408203125, 0.8660079836845398], "8": [123.21987915039062, 396.1260681152344, 0.8523528575897217], "9": [547.142822265625, 188.43447875976562, 0.9403411746025085], "10": [200.0342559814453, 336.140869140625, 0.9110723733901978], "11": [368.0200500488281, 480.0, 0.08407986164093018], "12": [240.2611541748047, 480.0, 0.08595507591962814], "13": [404.7471923828125, 401.9627685546875, 0.0018034152453765273], "14": [263.1108093261719, 386.2098388671875, 0.0019479332258924842], "15": [435.116943359375, 420.1007080078125, 0.00021168503735680133], "16": [298.10137939453125, 395.15155029296875, 0.00021446708706207573]}} +{"t": 26.109776, "tracked": true, "track_id": 1, "bbox": [86.45292663574219, 32.772972106933594, 574.078125, 479.7880859375], "det_conf": 0.9264029860496521, "mean_kpt_conf": 0.9344902580434625, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5539326129799156, "right_lift": -0.9358245773113931, "left_bend": 0.6979425572552057, "right_bend": 0.831342172331406}, "keypoints": {"0": [298.42047119140625, 137.18350219726562, 0.9991059899330139], "1": [320.0666809082031, 113.93313598632812, 0.9960905909538269], "2": [275.4167785644531, 111.87252807617188, 0.9974588751792908], "3": [344.1866455078125, 125.20663452148438, 0.781589925289154], "4": [237.8280029296875, 119.51388549804688, 0.9063043594360352], "5": [390.5915222167969, 230.5303955078125, 0.9926406741142273], "6": [186.82666015625, 234.8975372314453, 0.9933099746704102], "7": [547.9204711914062, 335.2069091796875, 0.8839926719665527], "8": [126.83689880371094, 394.1749572753906, 0.8728170394897461], "9": [542.9126586914062, 191.25685119628906, 0.9412989020347595], "10": [199.01499938964844, 335.7192687988281, 0.9147838354110718], "11": [370.85919189453125, 480.0, 0.0985134169459343], "12": [240.61679077148438, 480.0, 0.10005618631839752], "13": [412.4436340332031, 399.64105224609375, 0.001755600911565125], "14": [257.1960144042969, 384.8545837402344, 0.0019020965555682778], "15": [440.996337890625, 420.2269592285156, 0.00020175859390292317], "16": [283.9934387207031, 395.90069580078125, 0.00020450379815883934]}} +{"t": 26.172725, "tracked": true, "track_id": 1, "bbox": [86.85920715332031, 32.6161994934082, 574.0193481445312, 479.7735290527344], "det_conf": 0.9291502237319946, "mean_kpt_conf": 0.9305796731602062, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5580872961335064, "right_lift": -0.9305690659420637, "left_bend": 0.7001258421192152, "right_bend": 0.8382762106014455}, "keypoints": {"0": [297.21551513671875, 138.38619995117188, 0.9990027546882629], "1": [319.1993103027344, 115.41519165039062, 0.9959571957588196], "2": [274.47076416015625, 112.64825439453125, 0.9971755743026733], "3": [343.7352600097656, 128.18032836914062, 0.8082192540168762], "4": [237.6331787109375, 120.94564819335938, 0.9014014601707458], "5": [390.474609375, 238.94100952148438, 0.9916616678237915], "6": [186.6707763671875, 238.97006225585938, 0.992675244808197], "7": [546.7413330078125, 344.04144287109375, 0.8555371761322021], "8": [125.49429321289062, 394.46417236328125, 0.8461262583732605], "9": [541.2001342773438, 192.8546142578125, 0.9382977485656738], "10": [199.2529754638672, 333.84918212890625, 0.9103220701217651], "11": [367.7794189453125, 478.58953857421875, 0.07482611387968063], "12": [239.7834930419922, 480.0, 0.07757065445184708], "13": [408.15087890625, 394.65289306640625, 0.0018607607344165444], "14": [268.5015563964844, 377.6259460449219, 0.0020843588281422853], "15": [434.13623046875, 416.627685546875, 0.00023053748009260744], "16": [303.98260498046875, 391.83660888671875, 0.0002426065766485408]}} +{"t": 26.239416, "tracked": true, "track_id": 1, "bbox": [86.03553009033203, 32.88319778442383, 574.3814697265625, 479.75299072265625], "det_conf": 0.9246011972427368, "mean_kpt_conf": 0.9322155334732749, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5715204344375753, "right_lift": -0.9274196980660436, "left_bend": 0.7015184349003903, "right_bend": 0.8384678153403832}, "keypoints": {"0": [297.6224060058594, 138.77944946289062, 0.9990212917327881], "1": [319.5841064453125, 115.18968200683594, 0.9962849617004395], "2": [274.6549072265625, 113.0509033203125, 0.9970986843109131], "3": [344.6569519042969, 127.18330383300781, 0.8266591429710388], "4": [238.23248291015625, 121.24066162109375, 0.8969340324401855], "5": [391.774169921875, 238.9961395263672, 0.9919127225875854], "6": [186.2702178955078, 239.99440002441406, 0.9929695725440979], "7": [547.02978515625, 347.1280822753906, 0.8583113551139832], "8": [122.9835205078125, 396.9190673828125, 0.846607506275177], "9": [543.3909912109375, 200.02500915527344, 0.9384562373161316], "10": [199.92247009277344, 334.7033386230469, 0.9101153612136841], "11": [368.5688781738281, 480.0, 0.07154582440853119], "12": [239.68856811523438, 480.0, 0.07392174750566483], "13": [410.03875732421875, 392.828369140625, 0.00172322744037956], "14": [269.4198913574219, 377.69378662109375, 0.00193093903362751], "15": [436.2900390625, 413.9363708496094, 0.0002201298193540424], "16": [306.0102844238281, 391.8010559082031, 0.00023317252635024488]}} +{"t": 26.304062, "tracked": true, "track_id": 1, "bbox": [86.34457397460938, 32.89131164550781, 574.405029296875, 479.81719970703125], "det_conf": 0.9227785468101501, "mean_kpt_conf": 0.9286730614575472, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5684690291635298, "right_lift": -0.9311307534630248, "left_bend": 0.7008284894263684, "right_bend": 0.8372101384286365}, "keypoints": {"0": [298.19110107421875, 138.52297973632812, 0.998979389667511], "1": [319.6213684082031, 114.38894653320312, 0.995812714099884], "2": [275.063720703125, 112.83343505859375, 0.9971063733100891], "3": [343.8459777832031, 124.671142578125, 0.7909654974937439], "4": [237.8804473876953, 119.96453857421875, 0.9019492864608765], "5": [388.4724426269531, 235.95436096191406, 0.9917327165603638], "6": [187.4014129638672, 237.69161987304688, 0.9921326041221619], "7": [545.6672973632812, 344.57220458984375, 0.8631287217140198], "8": [126.10585021972656, 394.194091796875, 0.8358754515647888], "9": [541.9052124023438, 201.43789672851562, 0.9407193660736084], "10": [200.45277404785156, 333.321044921875, 0.9070015549659729], "11": [364.81695556640625, 477.67041015625, 0.07464344054460526], "12": [238.61380004882812, 480.0, 0.07344330847263336], "13": [406.76409912109375, 391.7403564453125, 0.0019065047381445765], "14": [268.3410949707031, 377.05908203125, 0.00201543141156435], "15": [438.5236511230469, 409.4064025878906, 0.00024103946634568274], "16": [306.9255676269531, 388.03472900390625, 0.00024216332531068474]}} +{"t": 26.370809, "tracked": true, "track_id": 1, "bbox": [86.87773895263672, 32.81583023071289, 573.508056640625, 479.53326416015625], "det_conf": 0.9317120313644409, "mean_kpt_conf": 0.9288709163665771, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5815296076916829, "right_lift": -0.9362200114459936, "left_bend": 0.7098864632812832, "right_bend": 0.8400682665264647}, "keypoints": {"0": [297.39581298828125, 137.6554718017578, 0.9990218877792358], "1": [319.1117248535156, 114.0784912109375, 0.9960687160491943], "2": [274.37420654296875, 111.68136596679688, 0.9971814155578613], "3": [343.271484375, 126.11167907714844, 0.804929792881012], "4": [236.76380920410156, 119.85418701171875, 0.9058635234832764], "5": [391.29156494140625, 238.5950164794922, 0.9918400049209595], "6": [183.4543914794922, 241.55870056152344, 0.9927453398704529], "7": [543.6784057617188, 347.52520751953125, 0.8538501262664795], "8": [123.65687561035156, 400.8681335449219, 0.8336674571037292], "9": [538.1029663085938, 203.7896270751953, 0.9372208118438721], "10": [198.90103149414062, 336.2884826660156, 0.9051910042762756], "11": [369.3697509765625, 479.50054931640625, 0.07018189877271652], "12": [239.16824340820312, 480.0, 0.07130872458219528], "13": [404.4034729003906, 393.4511413574219, 0.0018381401896476746], "14": [264.1891174316406, 380.10888671875, 0.0019719386473298073], "15": [427.1966552734375, 418.1799011230469, 0.00022608597646467388], "16": [303.89013671875, 396.1073303222656, 0.00023020844673737884]}} +{"t": 26.404629, "tracked": true, "track_id": 1, "bbox": [87.71424102783203, 32.753089904785156, 573.1005249023438, 479.6026916503906], "det_conf": 0.9313816428184509, "mean_kpt_conf": 0.932244127446955, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6195942471666295, "right_lift": -0.9329425226972959, "left_bend": 0.7247718045491919, "right_bend": 0.8335554094345496}, "keypoints": {"0": [297.9350891113281, 138.37326049804688, 0.9989957213401794], "1": [319.82489013671875, 114.11846923828125, 0.996256947517395], "2": [274.46728515625, 113.11819458007812, 0.9970295429229736], "3": [345.5321960449219, 124.9945068359375, 0.8293638229370117], "4": [238.07142639160156, 121.38984680175781, 0.894105076789856], "5": [393.9692077636719, 237.7095184326172, 0.9921755194664001], "6": [185.6336669921875, 236.62037658691406, 0.9927811026573181], "7": [541.533203125, 354.192138671875, 0.8629222512245178], "8": [124.90231323242188, 393.9950256347656, 0.8455162644386292], "9": [535.9191284179688, 206.19615173339844, 0.938014805316925], "10": [199.22750854492188, 333.94024658203125, 0.9075243473052979], "11": [368.30242919921875, 479.00494384765625, 0.08169032633304596], "12": [237.2104949951172, 480.0, 0.08262307941913605], "13": [412.73114013671875, 396.009521484375, 0.0018822181737050414], "14": [266.80780029296875, 381.1890563964844, 0.0020716104190796614], "15": [436.8121337890625, 416.4610595703125, 0.00022634999186266214], "16": [304.522705078125, 399.558349609375, 0.00023699404846411198]}} +{"t": 26.470655, "tracked": true, "track_id": 1, "bbox": [88.3519515991211, 33.12721252441406, 572.531005859375, 479.38177490234375], "det_conf": 0.930739164352417, "mean_kpt_conf": 0.9300062710588629, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5847317453409128, "right_lift": -0.9289099159696222, "left_bend": 0.7114726975238028, "right_bend": 0.8309925902595138}, "keypoints": {"0": [297.2375183105469, 138.59011840820312, 0.9989808201789856], "1": [318.8890075683594, 114.2784423828125, 0.9959885478019714], "2": [274.1297302246094, 113.07980346679688, 0.9970988035202026], "3": [343.9971008300781, 124.71890258789062, 0.8155222535133362], "4": [238.1676788330078, 120.63815307617188, 0.8981687426567078], "5": [388.65924072265625, 238.88343811035156, 0.9916030764579773], "6": [187.6967315673828, 236.84268188476562, 0.9920926690101624], "7": [544.0052490234375, 350.85675048828125, 0.8572505116462708], "8": [126.50808715820312, 390.33404541015625, 0.8339512348175049], "9": [538.1805419921875, 204.6277618408203, 0.9411523938179016], "10": [200.6134490966797, 332.76043701171875, 0.908259928226471], "11": [358.8629150390625, 479.73406982421875, 0.07229432463645935], "12": [233.4775390625, 480.0, 0.07200437039136887], "13": [406.562744140625, 394.4986572265625, 0.0018723210087046027], "14": [273.4577941894531, 378.0076904296875, 0.002055266872048378], "15": [438.1530456542969, 412.59075927734375, 0.000238552616792731], "16": [315.8652038574219, 393.2385559082031, 0.00024794010096229613]}} +{"t": 26.53658, "tracked": true, "track_id": 1, "bbox": [89.08086395263672, 32.82474899291992, 572.7890014648438, 479.3441162109375], "det_conf": 0.9321427345275879, "mean_kpt_conf": 0.9253265478394248, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5880250744133678, "right_lift": -0.9318784445904428, "left_bend": 0.7074904812235738, "right_bend": 0.8408374505607176}, "keypoints": {"0": [298.4512634277344, 138.5797119140625, 0.9989973902702332], "1": [319.8470764160156, 114.68145751953125, 0.9957484602928162], "2": [275.1872253417969, 112.68914794921875, 0.9972373247146606], "3": [343.9842224121094, 126.44596862792969, 0.7867431640625], "4": [237.63494873046875, 120.89187622070312, 0.9094793200492859], "5": [392.03265380859375, 241.95657348632812, 0.9917284846305847], "6": [184.3375244140625, 240.6884307861328, 0.9919546246528625], "7": [544.1840209960938, 352.5699462890625, 0.8463409543037415], "8": [123.73989868164062, 396.3504638671875, 0.819065272808075], "9": [540.6679077148438, 201.27259826660156, 0.9377071261405945], "10": [198.2021484375, 333.6911926269531, 0.9035899043083191], "11": [365.151611328125, 476.0254821777344, 0.06400585919618607], "12": [235.71453857421875, 479.23681640625, 0.06314688175916672], "13": [407.10894775390625, 389.3168640136719, 0.001896527479402721], "14": [270.32354736328125, 374.2204895019531, 0.0020328310783952475], "15": [427.6666564941406, 412.2813720703125, 0.0002401746023679152], "16": [310.0257568359375, 393.096923828125, 0.00024333606415893883]}} +{"t": 26.601248, "tracked": true, "track_id": 1, "bbox": [88.21780395507812, 32.92109298706055, 572.6643676757812, 479.3863830566406], "det_conf": 0.930057168006897, "mean_kpt_conf": 0.9297545389695601, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5832895316640923, "right_lift": -0.9260037773633657, "left_bend": 0.7160197866436442, "right_bend": 0.836156852397011}, "keypoints": {"0": [297.96051025390625, 138.18368530273438, 0.9989858269691467], "1": [319.1952819824219, 114.15151977539062, 0.9961029291152954], "2": [275.33935546875, 112.84883117675781, 0.9970623850822449], "3": [343.6452941894531, 124.43583679199219, 0.818791389465332], "4": [239.35313415527344, 120.21673583984375, 0.8983567357063293], "5": [390.22808837890625, 236.5602264404297, 0.9916404485702515], "6": [186.32313537597656, 238.02862548828125, 0.9925024509429932], "7": [544.3128662109375, 347.208984375, 0.8557195067405701], "8": [122.43533325195312, 394.7388610839844, 0.8339455127716064], "9": [536.289794921875, 203.76498413085938, 0.9387909770011902], "10": [198.61062622070312, 334.517822265625, 0.9054017663002014], "11": [364.0348815917969, 477.35980224609375, 0.0691259354352951], "12": [236.55978393554688, 480.0, 0.06970813870429993], "13": [403.9695739746094, 389.8254699707031, 0.0018782307161018252], "14": [266.5262451171875, 375.3226623535156, 0.002024577697739005], "15": [433.22625732421875, 410.6236572265625, 0.00024361346731893718], "16": [307.69342041015625, 390.30560302734375, 0.000250038894591853]}} +{"t": 26.66865, "tracked": true, "track_id": 1, "bbox": [89.22332763671875, 32.756324768066406, 573.8244018554688, 479.5568542480469], "det_conf": 0.9308483600616455, "mean_kpt_conf": 0.9289217266169462, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5611872928968867, "right_lift": -0.9340322522105329, "left_bend": 0.7048022753886493, "right_bend": 0.8347276121983971}, "keypoints": {"0": [297.5943298339844, 138.85845947265625, 0.9989153146743774], "1": [319.13690185546875, 114.51315307617188, 0.9958727955818176], "2": [274.5591735839844, 113.48782348632812, 0.9969371557235718], "3": [344.2048034667969, 124.19674682617188, 0.8184175491333008], "4": [238.30819702148438, 120.76678466796875, 0.8984021544456482], "5": [391.3592529296875, 234.94537353515625, 0.9914391040802002], "6": [187.06434631347656, 240.2403106689453, 0.9928366541862488], "7": [544.9254760742188, 339.06591796875, 0.8500674962997437], "8": [127.806640625, 395.196533203125, 0.838868260383606], "9": [538.0838623046875, 195.40003967285156, 0.9339898228645325], "10": [198.06068420410156, 337.646484375, 0.9023926854133606], "11": [368.7454833984375, 477.726806640625, 0.08086401969194412], "12": [241.26145935058594, 480.0, 0.08402835577726364], "13": [407.8255920410156, 397.22222900390625, 0.001962674781680107], "14": [273.0298156738281, 384.5634765625, 0.002190287923440337], "15": [432.1855163574219, 412.7038879394531, 0.0002453472407069057], "16": [314.9536437988281, 393.3948974609375, 0.0002584739704616368]}} +{"t": 26.730531, "tracked": true, "track_id": 1, "bbox": [89.1915512084961, 32.540348052978516, 574.0285034179688, 479.80731201171875], "det_conf": 0.9304172992706299, "mean_kpt_conf": 0.9291185248981823, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5757344395458187, "right_lift": -0.9327831779751208, "left_bend": 0.7072254635921993, "right_bend": 0.8436825705056354}, "keypoints": {"0": [297.3026123046875, 138.7490997314453, 0.9990072846412659], "1": [318.7711486816406, 114.41313171386719, 0.9959970712661743], "2": [274.2364501953125, 112.96974182128906, 0.9971438050270081], "3": [343.71954345703125, 124.87887573242188, 0.8075971603393555], "4": [237.6746368408203, 120.36351013183594, 0.8994503021240234], "5": [391.2559814453125, 239.7782440185547, 0.9921250939369202], "6": [185.86273193359375, 240.09451293945312, 0.9924976229667664], "7": [546.46142578125, 349.0653076171875, 0.8580132722854614], "8": [126.13906860351562, 394.6543273925781, 0.8333031535148621], "9": [540.8609619140625, 199.85287475585938, 0.9392591714859009], "10": [198.29408264160156, 332.5128173828125, 0.9059098362922668], "11": [364.8898620605469, 480.0, 0.07325334846973419], "12": [236.02015686035156, 480.0, 0.0724346712231636], "13": [412.00750732421875, 394.543701171875, 0.0018025769386440516], "14": [271.5325927734375, 379.4664306640625, 0.00195566494949162], "15": [438.4833068847656, 409.4154968261719, 0.00022855898714624345], "16": [310.747802734375, 389.6776123046875, 0.0002350094000576064]}} +{"t": 26.798373, "tracked": true, "track_id": 1, "bbox": [88.0551986694336, 32.3147087097168, 575.6218872070312, 479.9631652832031], "det_conf": 0.9264834523200989, "mean_kpt_conf": 0.9312210787426342, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5717758077588115, "right_lift": -0.9357137528509653, "left_bend": 0.7003705830101505, "right_bend": 0.855373278677365}, "keypoints": {"0": [297.18426513671875, 137.5728759765625, 0.9990224838256836], "1": [318.65753173828125, 113.95889282226562, 0.9961621761322021], "2": [273.8529357910156, 112.14126586914062, 0.997031569480896], "3": [343.7188720703125, 126.34574890136719, 0.8155166506767273], "4": [236.9283905029297, 121.39947509765625, 0.8917515873908997], "5": [393.5606994628906, 239.7349395751953, 0.9923427700996399], "6": [187.05792236328125, 241.76113891601562, 0.9928876757621765], "7": [548.2789916992188, 347.5641784667969, 0.8641474843025208], "8": [127.85171508789062, 398.8085021972656, 0.8458080291748047], "9": [545.0458374023438, 192.25096130371094, 0.9395331740379333], "10": [197.56362915039062, 333.09014892578125, 0.9092282652854919], "11": [374.1780090332031, 479.7266845703125, 0.07699184864759445], "12": [243.70436096191406, 480.0, 0.07751612365245819], "13": [419.0872802734375, 392.7711181640625, 0.0018063739407807589], "14": [271.4024353027344, 378.00933837890625, 0.0019854872953146696], "15": [444.96929931640625, 408.59564208984375, 0.00022047282254789025], "16": [305.6642761230469, 387.97442626953125, 0.00023072859039530158]}} +{"t": 26.863876, "tracked": true, "track_id": 1, "bbox": [87.73201751708984, 32.41916275024414, 578.412109375, 479.7320251464844], "det_conf": 0.9226890206336975, "mean_kpt_conf": 0.9299857670610602, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5658754946795934, "right_lift": -0.9356140621706726, "left_bend": 0.6842373318787098, "right_bend": 0.848090033639526}, "keypoints": {"0": [297.1319885253906, 138.40673828125, 0.9989715814590454], "1": [319.3378601074219, 113.73971557617188, 0.9961516261100769], "2": [273.79833984375, 112.61952209472656, 0.9969627261161804], "3": [345.11376953125, 123.80880737304688, 0.8242055773735046], "4": [237.62896728515625, 119.83428955078125, 0.8953555822372437], "5": [391.4251403808594, 235.3965301513672, 0.9924658536911011], "6": [186.4575958251953, 239.271728515625, 0.9925846457481384], "7": [548.364501953125, 343.1092529296875, 0.8654155731201172], "8": [126.7117919921875, 397.6148681640625, 0.8310385942459106], "9": [551.7463989257812, 194.12686157226562, 0.9381552338600159], "10": [195.53314208984375, 335.68310546875, 0.8985364437103271], "11": [368.473876953125, 480.0, 0.07991410791873932], "12": [240.48907470703125, 480.0, 0.07691793143749237], "13": [416.9553527832031, 394.3646240234375, 0.0018649500561878085], "14": [278.93505859375, 381.8974304199219, 0.0019863462075591087], "15": [442.7071533203125, 410.15667724609375, 0.00023333354329224676], "16": [318.673583984375, 392.073486328125, 0.00023831780708860606]}} +{"t": 26.933055, "tracked": true, "track_id": 1, "bbox": [87.18011474609375, 32.322410583496094, 579.9571533203125, 479.6201477050781], "det_conf": 0.9201297760009766, "mean_kpt_conf": 0.928922485221516, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5477943035189533, "right_lift": -0.9316294839638993, "left_bend": 0.6810571120728655, "right_bend": 0.847970247316343}, "keypoints": {"0": [296.82098388671875, 137.89517211914062, 0.9989872574806213], "1": [318.16851806640625, 113.66036987304688, 0.9959105253219604], "2": [273.289306640625, 112.39569091796875, 0.9970883727073669], "3": [342.6296691894531, 124.6495361328125, 0.8016389608383179], "4": [236.30078125, 120.85043334960938, 0.9004316926002502], "5": [387.58251953125, 237.815185546875, 0.9918096661567688], "6": [187.43533325195312, 241.09078979492188, 0.9923191666603088], "7": [549.6912841796875, 343.96014404296875, 0.8610440492630005], "8": [126.78253173828125, 396.5791015625, 0.8336636424064636], "9": [551.279052734375, 198.53660583496094, 0.9405182003974915], "10": [195.35594177246094, 336.2830505371094, 0.904735803604126], "11": [364.0953674316406, 480.0, 0.07352454960346222], "12": [239.119384765625, 480.0, 0.07243220508098602], "13": [409.3145446777344, 394.69183349609375, 0.0017905895365402102], "14": [274.424072265625, 380.7364807128906, 0.0019238420063629746], "15": [442.569580078125, 408.36895751953125, 0.00022466472000814974], "16": [314.6532287597656, 388.1228332519531, 0.00022947344405110925]}} +{"t": 26.966896, "tracked": true, "track_id": 1, "bbox": [87.48544311523438, 32.436885833740234, 579.3056030273438, 479.536376953125], "det_conf": 0.9255444407463074, "mean_kpt_conf": 0.9330372322689403, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5884824869670943, "right_lift": -0.9316512119948307, "left_bend": 0.6970321068820714, "right_bend": 0.8583481783704378}, "keypoints": {"0": [296.6677551269531, 137.9599151611328, 0.9990021586418152], "1": [318.7716064453125, 113.20730590820312, 0.9967076778411865], "2": [273.3840026855469, 112.62913513183594, 0.9967502355575562], "3": [345.400390625, 123.76138305664062, 0.8623359203338623], "4": [238.75997924804688, 121.06419372558594, 0.8731161952018738], "5": [394.3224182128906, 235.57872009277344, 0.9919324517250061], "6": [189.5660400390625, 238.29843139648438, 0.9929296374320984], "7": [549.7310791015625, 348.6945495605469, 0.860998809337616], "8": [127.02520751953125, 398.6551818847656, 0.8463442325592041], "9": [551.3017578125, 194.5002899169922, 0.9381861686706543], "10": [194.8601837158203, 334.9620056152344, 0.9051060676574707], "11": [371.13092041015625, 480.0, 0.07221701741218567], "12": [242.67050170898438, 480.0, 0.07458163797855377], "13": [411.416015625, 391.9843444824219, 0.001736436621285975], "14": [266.9619140625, 377.7610168457031, 0.0019508814439177513], "15": [439.1942138671875, 413.1932373046875, 0.0002231834369013086], "16": [302.7260437011719, 395.47833251953125, 0.00024014389782678336]}} +{"t": 27.029042, "tracked": true, "track_id": 1, "bbox": [87.43289947509766, 32.229942321777344, 577.3131713867188, 479.46551513671875], "det_conf": 0.9232334494590759, "mean_kpt_conf": 0.9346511580727317, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5569141471246332, "right_lift": -0.9318561572786696, "left_bend": 0.6964617856730242, "right_bend": 0.8437838736389106}, "keypoints": {"0": [296.6689758300781, 136.99427795410156, 0.9990988969802856], "1": [318.47589111328125, 113.84098815917969, 0.9964849948883057], "2": [273.52789306640625, 111.75924682617188, 0.9972665309906006], "3": [343.28680419921875, 127.27218627929688, 0.8275926113128662], "4": [236.93505859375, 121.76519775390625, 0.8948282599449158], "5": [390.1327209472656, 238.30166625976562, 0.9924812316894531], "6": [187.4569091796875, 240.14279174804688, 0.9928619265556335], "7": [552.98486328125, 347.4973449707031, 0.8742840886116028], "8": [125.47164916992188, 399.3404235839844, 0.8507747054100037], "9": [549.0545654296875, 199.42630004882812, 0.9449313282966614], "10": [195.95504760742188, 338.91363525390625, 0.9105581641197205], "11": [365.0456237792969, 479.12841796875, 0.07514995336532593], "12": [237.03622436523438, 480.0, 0.0743740051984787], "13": [409.4886474609375, 392.4944152832031, 0.001743870903737843], "14": [262.6253967285156, 376.0382995605469, 0.0018749241717159748], "15": [442.84771728515625, 414.72613525390625, 0.00021116090647410601], "16": [294.5957336425781, 390.40478515625, 0.00021708277927245945]}} +{"t": 27.094954, "tracked": true, "track_id": 1, "bbox": [86.95516967773438, 31.805580139160156, 580.08447265625, 479.4378356933594], "det_conf": 0.9218900799751282, "mean_kpt_conf": 0.9302234758030284, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5413347356188456, "right_lift": -0.9248370312146813, "left_bend": 0.6721511622496806, "right_bend": 0.8509965045910206}, "keypoints": {"0": [297.2375793457031, 137.44808959960938, 0.9990191459655762], "1": [318.3956604003906, 113.24264526367188, 0.9961714148521423], "2": [273.4748840332031, 112.01344299316406, 0.9970958232879639], "3": [343.08843994140625, 124.77401733398438, 0.8107450008392334], "4": [236.6334228515625, 121.2506103515625, 0.8972969055175781], "5": [388.54498291015625, 238.2933349609375, 0.9916788935661316], "6": [188.63845825195312, 241.7617950439453, 0.99233478307724], "7": [549.31201171875, 341.799560546875, 0.8606178164482117], "8": [124.76531982421875, 397.06646728515625, 0.8387395143508911], "9": [553.9984741210938, 191.61669921875, 0.9407289624214172], "10": [195.2441864013672, 336.1809997558594, 0.9080299735069275], "11": [365.9115905761719, 479.1532287597656, 0.06925848126411438], "12": [240.4280242919922, 480.0, 0.0692201778292656], "13": [411.4670715332031, 391.04315185546875, 0.0017231429228559136], "14": [271.4428405761719, 377.3609313964844, 0.001881313743069768], "15": [443.9283752441406, 405.9698791503906, 0.0002209056547144428], "16": [305.6580810546875, 387.0462951660156, 0.00022872597037348896]}} +{"t": 27.158347, "tracked": true, "track_id": 1, "bbox": [87.5025863647461, 31.598527908325195, 579.3665161132812, 479.6837158203125], "det_conf": 0.9220006465911865, "mean_kpt_conf": 0.9311708970503374, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5805041264126746, "right_lift": -0.9286433474276717, "left_bend": 0.6802397631890709, "right_bend": 0.8431135547605547}, "keypoints": {"0": [296.44110107421875, 136.6248779296875, 0.9989357590675354], "1": [317.8399963378906, 113.14668273925781, 0.9963796734809875], "2": [272.97235107421875, 112.16571044921875, 0.9966801404953003], "3": [343.5457458496094, 126.36651611328125, 0.8512575626373291], "4": [237.6638641357422, 123.273681640625, 0.8807163834571838], "5": [391.26019287109375, 241.512939453125, 0.9920165538787842], "6": [186.9420928955078, 241.2685546875, 0.9924895763397217], "7": [545.6312866210938, 351.5679016113281, 0.8612743616104126], "8": [124.51535034179688, 397.5388488769531, 0.834808886051178], "9": [554.0573120117188, 193.05807495117188, 0.9387430548667908], "10": [196.03370666503906, 337.56024169921875, 0.8995779156684875], "11": [364.76971435546875, 477.58367919921875, 0.07040265202522278], "12": [236.6050567626953, 480.0, 0.06991388648748398], "13": [412.30645751953125, 387.4023742675781, 0.0018269149586558342], "14": [268.04742431640625, 372.7188720703125, 0.002000894397497177], "15": [443.6902160644531, 400.8900146484375, 0.00024323932302650064], "16": [306.9981994628906, 385.5735778808594, 0.00025652171461842954]}} +{"t": 27.19451, "tracked": true, "track_id": 1, "bbox": [86.95769500732422, 31.450136184692383, 582.8438720703125, 479.8323669433594], "det_conf": 0.9188346266746521, "mean_kpt_conf": 0.932336921041662, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5480296522519796, "right_lift": -0.9281449912342822, "left_bend": 0.6641000598703559, "right_bend": 0.8485946033036094}, "keypoints": {"0": [295.9162902832031, 137.70066833496094, 0.9990407824516296], "1": [317.4244079589844, 113.74085998535156, 0.9961453676223755], "2": [272.6175231933594, 112.16595458984375, 0.9969837069511414], "3": [342.4617919921875, 125.37493896484375, 0.8075815439224243], "4": [236.46844482421875, 120.57733154296875, 0.8868223428726196], "5": [386.4939270019531, 239.19580078125, 0.9927718043327332], "6": [188.6102294921875, 239.3049774169922, 0.9925541281700134], "7": [549.942138671875, 346.28350830078125, 0.8816492557525635], "8": [125.71267700195312, 396.1429443359375, 0.8487734794616699], "9": [560.0174560546875, 190.22406005859375, 0.9447247385978699], "10": [194.9803009033203, 336.153076171875, 0.9086589813232422], "11": [364.9611511230469, 480.0, 0.07614126056432724], "12": [240.2206573486328, 480.0, 0.07232125848531723], "13": [422.1511535644531, 391.6715087890625, 0.001586011960171163], "14": [280.2420959472656, 375.92730712890625, 0.0016972091980278492], "15": [462.4822692871094, 399.41485595703125, 0.0002035794750554487], "16": [317.3786315917969, 379.7126770019531, 0.0002088195615215227]}} +{"t": 27.260919, "tracked": true, "track_id": 1, "bbox": [86.54521942138672, 31.056596755981445, 583.9260864257812, 479.9094543457031], "det_conf": 0.9194379448890686, "mean_kpt_conf": 0.935696693983945, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5807934284882605, "right_lift": -0.9319950671779155, "left_bend": 0.6548760827141576, "right_bend": 0.8473311764632611}, "keypoints": {"0": [295.2310791015625, 136.69345092773438, 0.9990320205688477], "1": [316.8246765136719, 112.98403930664062, 0.9964156150817871], "2": [271.70721435546875, 111.70790100097656, 0.996855616569519], "3": [342.0356750488281, 125.166015625, 0.8321036100387573], "4": [235.99679565429688, 121.10189819335938, 0.8862304091453552], "5": [385.66339111328125, 237.60911560058594, 0.9930868744850159], "6": [188.14047241210938, 237.3921661376953, 0.9931383728981018], "7": [542.6856079101562, 349.6383056640625, 0.8876633644104004], "8": [126.15896606445312, 396.76068115234375, 0.8588210940361023], "9": [563.2731323242188, 195.9287872314453, 0.9426157474517822], "10": [193.07644653320312, 338.0392761230469, 0.9067009091377258], "11": [366.659423828125, 480.0, 0.08176486194133759], "12": [241.66653442382812, 480.0, 0.07882528007030487], "13": [422.7556457519531, 387.2463073730469, 0.0016794828698039055], "14": [274.97027587890625, 373.37506103515625, 0.0018042413285002112], "15": [464.23260498046875, 396.5994873046875, 0.0002145865437341854], "16": [312.8864440917969, 381.01824951171875, 0.00022216943034436554]}} +{"t": 27.294367, "tracked": true, "track_id": 1, "bbox": [86.0956039428711, 30.874799728393555, 587.5144653320312, 479.8492736816406], "det_conf": 0.913149356842041, "mean_kpt_conf": 0.9357879270206798, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5548884746627124, "right_lift": -0.9235340769207464, "left_bend": 0.6541102720999492, "right_bend": 0.8447166404401119}, "keypoints": {"0": [295.5245361328125, 136.67770385742188, 0.9991084933280945], "1": [317.41162109375, 113.43511962890625, 0.9965268969535828], "2": [272.1958923339844, 110.95973205566406, 0.9971544742584229], "3": [342.405517578125, 127.14454650878906, 0.8248353600502014], "4": [235.82652282714844, 120.41030883789062, 0.893186092376709], "5": [386.18096923828125, 241.64987182617188, 0.9930105805397034], "6": [187.1505584716797, 239.507568359375, 0.9930322170257568], "7": [550.0670166015625, 350.9608154296875, 0.8825286626815796], "8": [121.28890991210938, 398.10699462890625, 0.8548798561096191], "9": [566.30078125, 195.5463104248047, 0.9461669325828552], "10": [195.66476440429688, 336.8020935058594, 0.9132376313209534], "11": [365.543701171875, 480.0, 0.07244084030389786], "12": [239.93563842773438, 480.0, 0.06999566406011581], "13": [422.37933349609375, 390.386962890625, 0.001528676599264145], "14": [277.57977294921875, 374.06561279296875, 0.0016621389659121633], "15": [463.5285949707031, 403.05224609375, 0.00019255107326898724], "16": [312.1614685058594, 382.16015625, 0.0002004587004194036]}} +{"t": 27.360977, "tracked": true, "track_id": 1, "bbox": [86.07066345214844, 30.99195671081543, 591.6763916015625, 479.7541809082031], "det_conf": 0.9140784740447998, "mean_kpt_conf": 0.9339524019848217, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5844592044114703, "right_lift": -0.936261843697275, "left_bend": 0.6569915307217661, "right_bend": 0.8428334577980655}, "keypoints": {"0": [294.58770751953125, 136.48965454101562, 0.999078631401062], "1": [316.1147766113281, 112.69264221191406, 0.996307373046875], "2": [271.577880859375, 111.1064453125, 0.9970883727073669], "3": [341.08404541015625, 124.64295959472656, 0.8187833428382874], "4": [235.95797729492188, 119.45709228515625, 0.8946129679679871], "5": [386.90008544921875, 239.9903564453125, 0.9934387803077698], "6": [186.12037658691406, 237.51585388183594, 0.9934091567993164], "7": [545.701171875, 354.373046875, 0.8813697099685669], "8": [125.70048522949219, 398.5416564941406, 0.8529131412506104], "9": [566.9462890625, 193.1377716064453, 0.9415038228034973], "10": [193.49778747558594, 339.30865478515625, 0.9049711227416992], "11": [368.08489990234375, 480.0, 0.07906003296375275], "12": [241.80841064453125, 480.0, 0.07640419900417328], "13": [425.150146484375, 390.7020263671875, 0.0016814203700050712], "14": [280.7932434082031, 375.4523010253906, 0.0018251697765663266], "15": [464.7934875488281, 398.8428649902344, 0.0002066536690108478], "16": [323.47149658203125, 382.7996826171875, 0.00021469645434990525]}} +{"t": 27.424068, "tracked": true, "track_id": 1, "bbox": [86.95890808105469, 30.664852142333984, 595.355224609375, 479.7004089355469], "det_conf": 0.9165408611297607, "mean_kpt_conf": 0.9357461387460883, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5505949152272955, "right_lift": -0.9251365184023806, "left_bend": 0.6341104070513538, "right_bend": 0.8463220468198189}, "keypoints": {"0": [295.5643310546875, 136.5751190185547, 0.999103307723999], "1": [316.929931640625, 113.29547119140625, 0.9963839054107666], "2": [271.668212890625, 111.23008728027344, 0.9972086548805237], "3": [341.3011779785156, 126.91105651855469, 0.8108705282211304], "4": [234.7223358154297, 121.49140930175781, 0.9024189710617065], "5": [383.123291015625, 240.79867553710938, 0.9929103255271912], "6": [188.07635498046875, 240.69366455078125, 0.9930817484855652], "7": [545.89013671875, 348.15557861328125, 0.8848220705986023], "8": [124.05059814453125, 396.7188720703125, 0.858450710773468], "9": [569.5177001953125, 203.363037109375, 0.9447245597839355], "10": [192.82327270507812, 338.9566650390625, 0.9132327437400818], "11": [364.2273254394531, 479.99957275390625, 0.07634121924638748], "12": [241.09835815429688, 480.0, 0.07379678636789322], "13": [424.42071533203125, 386.90423583984375, 0.0016157682985067368], "14": [280.9349365234375, 373.56964111328125, 0.0017621808219701052], "15": [467.7347412109375, 398.18902587890625, 0.0002032854245044291], "16": [316.4319152832031, 380.597900390625, 0.00021131338144186884]}} +{"t": 27.486711, "tracked": true, "track_id": 1, "bbox": [84.96448516845703, 30.88578987121582, 600.9104614257812, 479.26324462890625], "det_conf": 0.9085291028022766, "mean_kpt_conf": 0.9383093443783846, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5908011391687137, "right_lift": -0.9320224507631492, "left_bend": 0.6421109472417166, "right_bend": 0.852023435371181}, "keypoints": {"0": [294.95709228515625, 136.4188232421875, 0.9991207718849182], "1": [316.62506103515625, 112.37425231933594, 0.9968501925468445], "2": [271.66522216796875, 111.07540893554688, 0.9968896508216858], "3": [342.351806640625, 124.22633361816406, 0.8446950912475586], "4": [236.42498779296875, 119.84115600585938, 0.8767578601837158], "5": [386.70745849609375, 238.30487060546875, 0.9936391711235046], "6": [188.78550720214844, 237.10325622558594, 0.9935146570205688], "7": [544.4002075195312, 353.7771911621094, 0.8982295393943787], "8": [125.72132873535156, 399.2918395996094, 0.8684402108192444], "9": [573.314697265625, 199.77810668945312, 0.9449202418327332], "10": [191.36741638183594, 339.941650390625, 0.9083454012870789], "11": [368.09521484375, 480.0, 0.0890103429555893], "12": [241.3020477294922, 480.0, 0.08497827500104904], "13": [425.09210205078125, 392.9453125, 0.0015654132002964616], "14": [265.48321533203125, 379.1880798339844, 0.0016518827760592103], "15": [470.8338317871094, 401.0874328613281, 0.0001858075411291793], "16": [298.123779296875, 386.5287170410156, 0.00019013193377759308]}} +{"t": 27.522676, "tracked": true, "track_id": 1, "bbox": [85.3718032836914, 30.51216697692871, 601.4697265625, 479.2420349121094], "det_conf": 0.9124277234077454, "mean_kpt_conf": 0.937726459719918, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5743651608253911, "right_lift": -0.925639157230868, "left_bend": 0.6324688871224776, "right_bend": 0.8548471152902655}, "keypoints": {"0": [295.376953125, 136.22100830078125, 0.9991102814674377], "1": [316.78265380859375, 112.11526489257812, 0.9965838193893433], "2": [271.5544128417969, 110.86825561523438, 0.9969916343688965], "3": [341.82879638671875, 124.09963989257812, 0.8217712640762329], "4": [235.47357177734375, 120.07339477539062, 0.8885541558265686], "5": [383.0305480957031, 237.4357452392578, 0.9935336112976074], "6": [189.2971954345703, 236.68310546875, 0.9930477738380432], "7": [543.73779296875, 350.19500732421875, 0.8999800682067871], "8": [124.06039428710938, 396.2617492675781, 0.8651044368743896], "9": [573.20654296875, 201.51385498046875, 0.9476240873336792], "10": [191.01123046875, 336.7417907714844, 0.9126899242401123], "11": [362.96484375, 478.40985107421875, 0.07831449806690216], "12": [239.31802368164062, 480.0, 0.07272426784038544], "13": [426.628173828125, 380.3237609863281, 0.0015495208790525794], "14": [272.55029296875, 367.4225769042969, 0.0016268952749669552], "15": [473.9867248535156, 388.73541259765625, 0.00019615102792158723], "16": [303.663818359375, 374.419921875, 0.00019882773631252348]}} +{"t": 27.556967, "tracked": true, "track_id": 1, "bbox": [85.11820220947266, 30.79019546508789, 600.7097778320312, 479.1796569824219], "det_conf": 0.9131301641464233, "mean_kpt_conf": 0.9371851465918801, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5617149978931946, "right_lift": -0.9233164608293595, "left_bend": 0.6271391427995635, "right_bend": 0.8493684660864363}, "keypoints": {"0": [295.81158447265625, 136.5526123046875, 0.9990828037261963], "1": [317.1691589355469, 112.98263549804688, 0.9966013431549072], "2": [272.2005615234375, 111.43020629882812, 0.9969459176063538], "3": [342.238525390625, 125.71485900878906, 0.8322678804397583], "4": [236.36322021484375, 121.10760498046875, 0.8878058791160583], "5": [384.7274475097656, 239.6399383544922, 0.9932801127433777], "6": [189.5437774658203, 238.25332641601562, 0.9930785298347473], "7": [545.9260864257812, 349.08551025390625, 0.8929493427276611], "8": [124.49435424804688, 394.64642333984375, 0.8616410493850708], "9": [575.613525390625, 200.37173461914062, 0.94526207447052], "10": [193.02090454101562, 336.5272216796875, 0.9101216793060303], "11": [364.6807861328125, 480.0, 0.08333201706409454], "12": [240.67262268066406, 480.0, 0.07909264415502548], "13": [424.0724792480469, 387.93988037109375, 0.0016133323078975081], "14": [273.64569091796875, 374.27960205078125, 0.0017209525685757399], "15": [468.9669494628906, 395.25408935546875, 0.0002003283880185336], "16": [306.41363525390625, 379.9437561035156, 0.00020583420700859278]}} +{"t": 27.621362, "tracked": true, "track_id": 1, "bbox": [83.64778900146484, 30.81833267211914, 606.1024780273438, 479.0155334472656], "det_conf": 0.9085991382598877, "mean_kpt_conf": 0.9380222017114813, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5560474345669093, "right_lift": -0.927224549993341, "left_bend": 0.6252540468177502, "right_bend": 0.8471400740057519}, "keypoints": {"0": [294.9256896972656, 135.9932861328125, 0.9990997314453125], "1": [316.8574523925781, 112.91644287109375, 0.9965204000473022], "2": [271.97589111328125, 110.3509521484375, 0.9970951080322266], "3": [341.7431335449219, 126.21484375, 0.8263987898826599], "4": [236.1477813720703, 119.10687255859375, 0.8970372676849365], "5": [384.1914978027344, 238.52703857421875, 0.9933214783668518], "6": [186.8647918701172, 238.16531372070312, 0.9936509728431702], "7": [545.367919921875, 346.3555603027344, 0.8900159597396851], "8": [122.90779113769531, 396.51397705078125, 0.8678208589553833], "9": [574.2867431640625, 200.8003692626953, 0.9435502290725708], "10": [193.52479553222656, 336.2196044921875, 0.9137334227561951], "11": [367.21673583984375, 480.0, 0.08415061235427856], "12": [242.21759033203125, 480.0, 0.08233270049095154], "13": [429.04248046875, 388.274658203125, 0.0016026984667405486], "14": [281.2563171386719, 375.5390319824219, 0.0017746345838531852], "15": [470.7913818359375, 400.151123046875, 0.00019511875871103257], "16": [316.4566345214844, 381.9682312011719, 0.00020570943888742477]}} +{"t": 27.656711, "tracked": true, "track_id": 1, "bbox": [84.04490661621094, 30.640913009643555, 601.6860961914062, 478.8016052246094], "det_conf": 0.9136992692947388, "mean_kpt_conf": 0.9352169795469805, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.531323211701586, "right_lift": -0.9251408745300969, "left_bend": 0.6230102946272913, "right_bend": 0.8632194546661738}, "keypoints": {"0": [296.49212646484375, 136.06240844726562, 0.9991030693054199], "1": [317.8357238769531, 112.81951904296875, 0.9962693452835083], "2": [272.9013671875, 110.52961730957031, 0.997157096862793], "3": [341.567626953125, 125.8131103515625, 0.7906772494316101], "4": [235.67303466796875, 119.891357421875, 0.9024749994277954], "5": [381.0992736816406, 236.04815673828125, 0.99315345287323], "6": [188.7086944580078, 240.68399047851562, 0.9929583072662354], "7": [546.1810302734375, 339.5832824707031, 0.8961579203605652], "8": [122.79843139648438, 401.30682373046875, 0.8589339256286621], "9": [571.332763671875, 196.25401306152344, 0.9471383094787598], "10": [192.8212127685547, 335.8514404296875, 0.9133630990982056], "11": [365.9678039550781, 480.0, 0.08106499165296555], "12": [243.99526977539062, 480.0, 0.07507681101560593], "13": [425.97161865234375, 387.08941650390625, 0.0015996431466192007], "14": [281.3702392578125, 376.27911376953125, 0.0016531936125829816], "15": [471.7694091796875, 399.074951171875, 0.00019641080871224403], "16": [313.03790283203125, 379.5811767578125, 0.00019514872110448778]}} +{"t": 27.719954, "tracked": true, "track_id": 1, "bbox": [83.94551849365234, 30.615446090698242, 594.59912109375, 478.43194580078125], "det_conf": 0.9130842089653015, "mean_kpt_conf": 0.9364976286888123, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5680858928254153, "right_lift": -0.9263704789118608, "left_bend": 0.6397976314334413, "right_bend": 0.8429281696338032}, "keypoints": {"0": [297.01959228515625, 136.5646209716797, 0.9991241097450256], "1": [318.7047424316406, 112.63641357421875, 0.9964666366577148], "2": [273.8083801269531, 110.66685485839844, 0.9972178936004639], "3": [343.35675048828125, 124.10757446289062, 0.8094409108161926], "4": [237.14825439453125, 118.26800537109375, 0.8996877670288086], "5": [385.03607177734375, 237.35714721679688, 0.9932569265365601], "6": [187.44015502929688, 236.68714904785156, 0.9933716058731079], "7": [544.8358154296875, 347.6650085449219, 0.8912598490715027], "8": [122.65849304199219, 396.0330505371094, 0.8639671802520752], "9": [569.1680908203125, 201.52919006347656, 0.9449264407157898], "10": [193.47357177734375, 337.4434814453125, 0.9127545952796936], "11": [364.985595703125, 479.7130126953125, 0.08329097926616669], "12": [239.31170654296875, 480.0, 0.08002951741218567], "13": [423.26361083984375, 389.6659240722656, 0.001615660497918725], "14": [272.15814208984375, 376.4010925292969, 0.0017193123931065202], "15": [467.8033447265625, 400.0497741699219, 0.00019406303181312978], "16": [307.7407531738281, 382.9093017578125, 0.0001971532474271953]}} +{"t": 27.754201, "tracked": true, "track_id": 1, "bbox": [84.24835968017578, 30.368358612060547, 592.4749755859375, 478.5379638671875], "det_conf": 0.9138489365577698, "mean_kpt_conf": 0.9322740489786322, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5494228765861261, "right_lift": -0.9292604713479227, "left_bend": 0.644783477096926, "right_bend": 0.8429316718999156}, "keypoints": {"0": [297.6173400878906, 136.0133514404297, 0.9991365075111389], "1": [319.0945129394531, 112.4091796875, 0.9960803389549255], "2": [273.98724365234375, 110.09503173828125, 0.997531533241272], "3": [342.30523681640625, 124.393310546875, 0.7666388154029846], "4": [235.50396728515625, 118.05543518066406, 0.9174938797950745], "5": [384.43170166015625, 235.0685272216797, 0.9930919408798218], "6": [185.1665802001953, 236.39488220214844, 0.9930704236030579], "7": [549.1793212890625, 343.4004211425781, 0.8844723105430603], "8": [121.01358032226562, 397.76678466796875, 0.8541155457496643], "9": [567.9395141601562, 196.2697296142578, 0.9434565305709839], "10": [193.2788543701172, 337.02679443359375, 0.90992671251297], "11": [367.1355285644531, 479.51800537109375, 0.07651421427726746], "12": [241.37069702148438, 480.0, 0.07297953963279724], "13": [418.37017822265625, 387.5895690917969, 0.0016363264294341207], "14": [272.29217529296875, 373.8453674316406, 0.001702647190541029], "15": [459.39166259765625, 402.7525329589844, 0.00020062143448740244], "16": [308.54461669921875, 381.9522705078125, 0.00019778231217060238]}} +{"t": 27.788671, "tracked": true, "track_id": 1, "bbox": [84.4041748046875, 30.701414108276367, 588.5346069335938, 478.7550964355469], "det_conf": 0.9159432053565979, "mean_kpt_conf": 0.9311014251275496, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5502806399391984, "right_lift": -0.9281554901753186, "left_bend": 0.6385094525466927, "right_bend": 0.8487752432697362}, "keypoints": {"0": [297.4533386230469, 135.2956085205078, 0.9990856647491455], "1": [318.6647644042969, 112.12614440917969, 0.9957595467567444], "2": [274.5213928222656, 109.42132568359375, 0.9973224997520447], "3": [341.64056396484375, 124.68763732910156, 0.753028929233551], "4": [236.96405029296875, 117.5196533203125, 0.9106029272079468], "5": [381.50787353515625, 237.2562713623047, 0.9928513765335083], "6": [185.83145141601562, 237.2936248779297, 0.9923850297927856], "7": [542.798095703125, 343.5521240234375, 0.8907833099365234], "8": [122.08358764648438, 396.2648620605469, 0.8511124849319458], "9": [564.4981689453125, 197.56173706054688, 0.9473888278007507], "10": [191.67889404296875, 335.9186096191406, 0.9117950797080994], "11": [358.78509521484375, 478.51153564453125, 0.07925967127084732], "12": [234.68411254882812, 480.0, 0.07273101806640625], "13": [418.2288818359375, 387.4920654296875, 0.0017232486279681325], "14": [271.8408203125, 374.289306640625, 0.0017460578819736838], "15": [460.6620178222656, 402.69195556640625, 0.0002080391423078254], "16": [306.5045471191406, 383.189208984375, 0.0002006866707233712]}} +{"t": 27.851852, "tracked": true, "track_id": 1, "bbox": [83.85478210449219, 30.42632293701172, 585.2973022460938, 479.0627136230469], "det_conf": 0.9162987470626831, "mean_kpt_conf": 0.9304884509606794, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5509713421803722, "right_lift": -0.9312867901611548, "left_bend": 0.6585083203107799, "right_bend": 0.8484167617156935}, "keypoints": {"0": [297.22430419921875, 135.4687042236328, 0.9990690350532532], "1": [318.7291259765625, 112.24737548828125, 0.9959501028060913], "2": [273.9999694824219, 109.58055114746094, 0.9973205924034119], "3": [342.3783264160156, 124.99835205078125, 0.7800571322441101], "4": [235.98155212402344, 118.00759887695312, 0.9118624329566956], "5": [387.17791748046875, 238.2763214111328, 0.9930058121681213], "6": [183.07098388671875, 240.3451690673828, 0.9931114912033081], "7": [547.447998046875, 344.0901794433594, 0.8756057024002075], "8": [120.65280151367188, 399.91510009765625, 0.8434514403343201], "9": [560.2422485351562, 194.91836547851562, 0.9404478073120117], "10": [193.35357666015625, 335.9304504394531, 0.9054914116859436], "11": [368.68756103515625, 480.0, 0.07676348090171814], "12": [240.25953674316406, 480.0, 0.07334325462579727], "13": [420.5556640625, 390.54168701171875, 0.0016850611427798867], "14": [276.40252685546875, 377.58111572265625, 0.0017670380184426904], "15": [453.390380859375, 402.52471923828125, 0.00021131701942067593], "16": [314.6634216308594, 381.6377868652344, 0.00021083318279124796]}} +{"t": 27.914375, "tracked": true, "track_id": 1, "bbox": [84.03633117675781, 30.497802734375, 579.3302612304688, 479.42913818359375], "det_conf": 0.9222880005836487, "mean_kpt_conf": 0.9281992478804155, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5645351269517951, "right_lift": -0.9268704211379594, "left_bend": 0.6791962051319202, "right_bend": 0.8466998582628117}, "keypoints": {"0": [297.8109436035156, 135.6109161376953, 0.9990732669830322], "1": [319.2112731933594, 111.57223510742188, 0.9958853125572205], "2": [274.0509338378906, 109.85604858398438, 0.9974706172943115], "3": [342.8022766113281, 123.21363830566406, 0.7723601460456848], "4": [235.95004272460938, 118.33053588867188, 0.9161364436149597], "5": [385.2220153808594, 237.32211303710938, 0.9920552372932434], "6": [184.46139526367188, 238.16049194335938, 0.9923956394195557], "7": [544.4132690429688, 346.2003173828125, 0.8629666566848755], "8": [119.82443237304688, 397.7583923339844, 0.8330534100532532], "9": [550.091796875, 192.4158172607422, 0.9413770437240601], "10": [193.75096130371094, 334.9351806640625, 0.9074179530143738], "11": [361.2773132324219, 480.0, 0.07044898718595505], "12": [236.01300048828125, 480.0, 0.0684332624077797], "13": [409.4081115722656, 395.42877197265625, 0.0017484407871961594], "14": [274.35894775390625, 380.9493713378906, 0.0018459274433553219], "15": [444.966552734375, 411.89691162109375, 0.0002151220542145893], "16": [315.47686767578125, 392.61859130859375, 0.0002144597383448854]}} +{"t": 27.951082, "tracked": true, "track_id": 1, "bbox": [85.52018737792969, 30.461137771606445, 577.4124145507812, 479.16607666015625], "det_conf": 0.9268048405647278, "mean_kpt_conf": 0.9260108091614463, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5578336669262629, "right_lift": -0.929232607620085, "left_bend": 0.6918446134581091, "right_bend": 0.8509779395764057}, "keypoints": {"0": [297.4952697753906, 134.97750854492188, 0.9990482926368713], "1": [318.6586608886719, 111.46022033691406, 0.9957687854766846], "2": [273.6555480957031, 109.22647094726562, 0.9973741769790649], "3": [341.7519836425781, 124.59564208984375, 0.7673755884170532], "4": [235.00201416015625, 118.95230102539062, 0.9123049974441528], "5": [386.2690734863281, 239.01548767089844, 0.9916724562644958], "6": [184.44854736328125, 240.29090881347656, 0.9917954802513123], "7": [547.6790771484375, 347.5035095214844, 0.8573356866836548], "8": [121.14015197753906, 399.5032958984375, 0.8221316337585449], "9": [546.011962890625, 194.90371704101562, 0.9430125951766968], "10": [196.26962280273438, 333.05413818359375, 0.9082992076873779], "11": [364.1536865234375, 480.0, 0.059364739805459976], "12": [238.5325469970703, 480.0, 0.05725681036710739], "13": [407.9889831542969, 386.83673095703125, 0.0017367061227560043], "14": [274.82830810546875, 371.5048522949219, 0.0018150008982047439], "15": [440.787841796875, 407.62139892578125, 0.00022724131122231483], "16": [315.45556640625, 384.99267578125, 0.000225828101974912]}} +{"t": 27.98666, "tracked": true, "track_id": 1, "bbox": [85.520751953125, 30.584354400634766, 574.1165161132812, 479.3193359375], "det_conf": 0.9279960989952087, "mean_kpt_conf": 0.9296574375846169, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5794540003852663, "right_lift": -0.9330637085969827, "left_bend": 0.7120179883218208, "right_bend": 0.8367796932716178}, "keypoints": {"0": [297.2198486328125, 134.44232177734375, 0.998979389667511], "1": [318.9735107421875, 111.56893920898438, 0.9960156083106995], "2": [273.97967529296875, 109.43045043945312, 0.9971554279327393], "3": [343.257080078125, 125.42385864257812, 0.8263393044471741], "4": [237.26766967773438, 119.85102844238281, 0.9024531245231628], "5": [390.40570068359375, 239.39134216308594, 0.9919255375862122], "6": [184.24569702148438, 237.79458618164062, 0.9927156567573547], "7": [547.1494750976562, 350.8333740234375, 0.8500970602035522], "8": [123.35414123535156, 395.7427062988281, 0.832118034362793], "9": [539.5739135742188, 193.18157958984375, 0.936920166015625], "10": [196.62249755859375, 335.2635192871094, 0.9015125036239624], "11": [361.624755859375, 480.0, 0.06700538098812103], "12": [233.67935180664062, 480.0, 0.06837412714958191], "13": [402.07354736328125, 391.90191650390625, 0.0018205174710601568], "14": [268.48895263671875, 373.7203369140625, 0.0020195231772959232], "15": [428.36480712890625, 411.30413818359375, 0.00024078930437099189], "16": [311.8846130371094, 388.552978515625, 0.0002528813492972404]}} +{"t": 28.049282, "tracked": true, "track_id": 1, "bbox": [84.6982192993164, 30.348745346069336, 568.12060546875, 479.537841796875], "det_conf": 0.9270426630973816, "mean_kpt_conf": 0.9282925616611134, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5824454455884941, "right_lift": -0.9298720531445447, "left_bend": 0.7086268222934343, "right_bend": 0.8362908295215776}, "keypoints": {"0": [296.5388488769531, 133.98348999023438, 0.9989410042762756], "1": [318.3641357421875, 111.00927734375, 0.9957143664360046], "2": [273.01361083984375, 108.90046691894531, 0.9971622824668884], "3": [342.55950927734375, 124.7928466796875, 0.8057399988174438], "4": [235.74893188476562, 119.29446411132812, 0.9110448956489563], "5": [387.54779052734375, 237.5382080078125, 0.9914116859436035], "6": [183.14361572265625, 238.61880493164062, 0.99269038438797], "7": [540.5269165039062, 347.1523132324219, 0.8451458811759949], "8": [119.9794921875, 398.2742919921875, 0.8319476246833801], "9": [535.3453369140625, 193.39337158203125, 0.9355958104133606], "10": [196.36207580566406, 336.53729248046875, 0.9058242440223694], "11": [364.59521484375, 475.39013671875, 0.0668352022767067], "12": [238.2828369140625, 480.0, 0.06892847269773483], "13": [409.14111328125, 390.1039123535156, 0.0019280831329524517], "14": [281.6031494140625, 375.2056884765625, 0.002171820495277643], "15": [435.46942138671875, 410.8205261230469, 0.000249893288128078], "16": [326.4251708984375, 390.1139831542969, 0.0002652937837410718]}} +{"t": 28.084738, "tracked": true, "track_id": 1, "bbox": [84.31153869628906, 30.46296501159668, 565.9236450195312, 479.13726806640625], "det_conf": 0.9268986582756042, "mean_kpt_conf": 0.9302257732911543, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5972523171365047, "right_lift": -0.9308084333236092, "left_bend": 0.7197940361122938, "right_bend": 0.8396318664727891}, "keypoints": {"0": [296.5998229980469, 134.34674072265625, 0.9990794658660889], "1": [318.1659240722656, 111.44425964355469, 0.9961256384849548], "2": [272.9014892578125, 108.92631530761719, 0.9974283576011658], "3": [342.139892578125, 126.08505249023438, 0.8020651936531067], "4": [235.08311462402344, 119.90895080566406, 0.9090167284011841], "5": [389.72515869140625, 240.77996826171875, 0.9913913011550903], "6": [183.00466918945312, 238.88699340820312, 0.9927613735198975], "7": [540.0909423828125, 352.7504577636719, 0.8471848964691162], "8": [120.13522338867188, 398.9915771484375, 0.8448290228843689], "9": [531.9110717773438, 190.69329833984375, 0.9382716417312622], "10": [196.99285888671875, 335.19464111328125, 0.9143298864364624], "11": [365.9370422363281, 480.0, 0.060943979769945145], "12": [236.41737365722656, 480.0, 0.06481689214706421], "13": [406.15472412109375, 390.9288024902344, 0.0016997852362692356], "14": [265.3530578613281, 373.442138671875, 0.001941072172485292], "15": [431.6708984375, 417.7899475097656, 0.00021682750957552344], "16": [303.3406066894531, 396.14483642578125, 0.00023119938850868493]}} +{"t": 28.148268, "tracked": true, "track_id": 1, "bbox": [84.8985595703125, 29.796873092651367, 561.7321166992188, 479.42425537109375], "det_conf": 0.927725613117218, "mean_kpt_conf": 0.9313177141276273, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6116733982765286, "right_lift": -0.9362365565475497, "left_bend": 0.7376803263212082, "right_bend": 0.8418092279977144}, "keypoints": {"0": [295.84954833984375, 133.63619995117188, 0.9990156888961792], "1": [317.9681701660156, 110.84478759765625, 0.9960008263587952], "2": [272.14312744140625, 108.771240234375, 0.9972649812698364], "3": [342.4884338378906, 125.312744140625, 0.8155591487884521], "4": [234.978515625, 120.07672119140625, 0.9069108366966248], "5": [389.08990478515625, 236.4692840576172, 0.9914895296096802], "6": [183.6620330810547, 237.093017578125, 0.9930141568183899], "7": [536.62451171875, 350.54058837890625, 0.8493545651435852], "8": [122.96954345703125, 398.8099365234375, 0.8478555083274841], "9": [522.8626708984375, 195.48211669921875, 0.9361823797225952], "10": [196.21563720703125, 335.2401123046875, 0.9118472337722778], "11": [364.56256103515625, 480.0, 0.07239556312561035], "12": [237.14324951171875, 480.0, 0.07757550477981567], "13": [400.4940185546875, 397.0161437988281, 0.0018847514875233173], "14": [270.3602294921875, 380.726318359375, 0.0021680560894310474], "15": [421.1146240234375, 425.4482421875, 0.00022826410713605583], "16": [311.1808166503906, 403.6830749511719, 0.00024568854132667184]}} +{"t": 28.216149, "tracked": true, "track_id": 1, "bbox": [84.78965759277344, 29.12189483642578, 560.3138427734375, 479.6979064941406], "det_conf": 0.9281371235847473, "mean_kpt_conf": 0.9327222108840942, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5962520807754913, "right_lift": -0.9290161330503784, "left_bend": 0.7421669742449256, "right_bend": 0.8406285400708781}, "keypoints": {"0": [295.83544921875, 133.46978759765625, 0.9990313053131104], "1": [318.0091552734375, 110.97042846679688, 0.9964004755020142], "2": [272.2803955078125, 108.58721923828125, 0.9971586465835571], "3": [342.8238525390625, 126.12591552734375, 0.8429632782936096], "4": [235.43165588378906, 120.4815673828125, 0.8939874768257141], "5": [389.7541198730469, 237.01039123535156, 0.9909006357192993], "6": [186.38465881347656, 237.28567504882812, 0.9929250478744507], "7": [539.625732421875, 348.32275390625, 0.845950186252594], "8": [122.81483459472656, 396.8833312988281, 0.851159393787384], "9": [520.5950927734375, 193.06436157226562, 0.9368798136711121], "10": [194.873291015625, 337.2817687988281, 0.9125880599021912], "11": [365.69195556640625, 478.72943115234375, 0.06944122910499573], "12": [238.89776611328125, 480.0, 0.07661719620227814], "13": [394.4695129394531, 397.791015625, 0.0018331313040107489], "14": [261.2222595214844, 378.95880126953125, 0.0021184738725423813], "15": [420.0406188964844, 426.567626953125, 0.00022311750217340887], "16": [299.0662536621094, 401.2605285644531, 0.0002432806504657492]}} +{"t": 28.282833, "tracked": true, "track_id": 1, "bbox": [85.38433837890625, 28.67658805847168, 561.3225708007812, 479.9529113769531], "det_conf": 0.9317389726638794, "mean_kpt_conf": 0.9321170449256897, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5857295556352862, "right_lift": -0.9305883567487564, "left_bend": 0.7370078762335136, "right_bend": 0.8451761961622892}, "keypoints": {"0": [294.64794921875, 133.14761352539062, 0.9990057349205017], "1": [316.641357421875, 110.43251037597656, 0.996293842792511], "2": [271.14739990234375, 108.36715698242188, 0.9971289038658142], "3": [341.6135559082031, 125.33078002929688, 0.8461043834686279], "4": [235.1842803955078, 120.35382080078125, 0.8956888318061829], "5": [388.47247314453125, 237.62940979003906, 0.990909993648529], "6": [186.7491455078125, 238.59765625, 0.9929922819137573], "7": [540.4202880859375, 347.43768310546875, 0.8399645686149597], "8": [124.87745666503906, 395.88311767578125, 0.8478437066078186], "9": [522.1583251953125, 194.44432067871094, 0.9352747201919556], "10": [195.28038024902344, 335.4158630371094, 0.9120805263519287], "11": [362.4220275878906, 480.0, 0.06782478839159012], "12": [237.52944946289062, 480.0, 0.0751352533698082], "13": [396.9851379394531, 398.0050964355469, 0.00179314985871315], "14": [270.6512451171875, 380.0877685546875, 0.002139844698831439], "15": [419.7889404296875, 424.27740478515625, 0.00022646610159426928], "16": [309.71063232421875, 400.03009033203125, 0.0002528651966713369]}} +{"t": 28.345429, "tracked": true, "track_id": 1, "bbox": [85.86312103271484, 28.560588836669922, 562.121826171875, 480.0], "det_conf": 0.9322551488876343, "mean_kpt_conf": 0.933237612247467, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5863822840806848, "right_lift": -0.9258205177716907, "left_bend": 0.7419532592395178, "right_bend": 0.8562981337176245}, "keypoints": {"0": [294.50439453125, 133.3192138671875, 0.999014139175415], "1": [316.7292785644531, 110.00222778320312, 0.9964746832847595], "2": [271.0667419433594, 108.51339721679688, 0.997061550617218], "3": [342.50738525390625, 123.78350830078125, 0.8562091588973999], "4": [235.52072143554688, 119.73124694824219, 0.8904167413711548], "5": [390.90130615234375, 234.6653289794922, 0.9913215041160583], "6": [186.73068237304688, 238.06483459472656, 0.9933158755302429], "7": [544.3260498046875, 345.72918701171875, 0.8443719148635864], "8": [121.42510986328125, 398.0306701660156, 0.8485230207443237], "9": [523.6887817382812, 192.10093688964844, 0.9360289573669434], "10": [191.65655517578125, 334.9578857421875, 0.9128761887550354], "11": [369.95550537109375, 478.7331848144531, 0.06645236909389496], "12": [243.7393798828125, 480.0, 0.0728352963924408], "13": [407.3871765136719, 393.18450927734375, 0.0017817518673837185], "14": [280.1785583496094, 376.6135559082031, 0.002115569543093443], "15": [431.64678955078125, 418.7265319824219, 0.00022630704916082323], "16": [320.7491149902344, 394.8453369140625, 0.0002543015871196985]}} +{"t": 28.381155, "tracked": true, "track_id": 1, "bbox": [85.5762939453125, 28.52634048461914, 563.6676025390625, 480.0], "det_conf": 0.9308070540428162, "mean_kpt_conf": 0.9318651015108282, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5876720580595428, "right_lift": -0.9356337186441442, "left_bend": 0.7414836391970974, "right_bend": 0.8520853319525484}, "keypoints": {"0": [295.9571838378906, 132.93911743164062, 0.9990059733390808], "1": [317.5826721191406, 109.1156005859375, 0.9961684346199036], "2": [271.90484619140625, 108.56184387207031, 0.9971803426742554], "3": [342.2904968261719, 121.54251098632812, 0.8261092901229858], "4": [235.2283935546875, 119.78732299804688, 0.8989427089691162], "5": [388.9175109863281, 229.96783447265625, 0.9914440512657166], "6": [186.89303588867188, 236.42428588867188, 0.9927964806556702], "7": [544.4102783203125, 342.9067077636719, 0.8571222424507141], "8": [125.49197387695312, 399.1817626953125, 0.8448372483253479], "9": [524.9569702148438, 194.64572143554688, 0.9383806586265564], "10": [192.61155700683594, 337.2322998046875, 0.9085286855697632], "11": [366.7535400390625, 477.399169921875, 0.07065372169017792], "12": [241.3673858642578, 480.0, 0.0734342411160469], "13": [404.9184265136719, 390.4272766113281, 0.001883643213659525], "14": [273.8609924316406, 375.9302978515625, 0.0021025342866778374], "15": [432.59613037109375, 416.3804016113281, 0.00024017415125854313], "16": [314.2267761230469, 394.57244873046875, 0.0002548457414377481]}} +{"t": 28.444002, "tracked": true, "track_id": 1, "bbox": [85.55892181396484, 28.302879333496094, 568.0173950195312, 480.0], "det_conf": 0.9319837689399719, "mean_kpt_conf": 0.9341667565432462, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5880751008211015, "right_lift": -0.9297768705293704, "left_bend": 0.7319171282392753, "right_bend": 0.8472400922241706}, "keypoints": {"0": [294.8956298828125, 132.41546630859375, 0.9990228414535522], "1": [316.7563781738281, 109.082275390625, 0.9963971972465515], "2": [270.86273193359375, 108.09368896484375, 0.997149646282196], "3": [341.9730529785156, 123.08450317382812, 0.8449552059173584], "4": [234.93914794921875, 120.38096618652344, 0.8959557414054871], "5": [388.04595947265625, 232.87570190429688, 0.9914829134941101], "6": [187.6807403564453, 236.725341796875, 0.99293452501297], "7": [543.191650390625, 345.68060302734375, 0.8569533824920654], "8": [123.7445068359375, 398.2103271484375, 0.8501423001289368], "9": [528.087158203125, 195.0064697265625, 0.9390613436698914], "10": [192.49851989746094, 338.6468505859375, 0.9117792248725891], "11": [365.25665283203125, 478.23272705078125, 0.06801033765077591], "12": [240.85177612304688, 480.0, 0.0717066153883934], "13": [407.92724609375, 390.6690673828125, 0.001781639875844121], "14": [277.2146911621094, 374.93829345703125, 0.0020536547526717186], "15": [436.41485595703125, 417.42425537109375, 0.00022854938288219273], "16": [314.79541015625, 395.765625, 0.0002498608664609492]}} +{"t": 28.51322, "tracked": true, "track_id": 1, "bbox": [84.1875, 28.001962661743164, 571.4113159179688, 479.9966735839844], "det_conf": 0.9275389909744263, "mean_kpt_conf": 0.935401049527255, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5776937666276319, "right_lift": -0.9263670527177278, "left_bend": 0.7159907286976617, "right_bend": 0.8496672438702764}, "keypoints": {"0": [295.4571533203125, 132.55255126953125, 0.99903404712677], "1": [317.22467041015625, 109.00651550292969, 0.9967020153999329], "2": [271.17852783203125, 108.41850280761719, 0.9970791339874268], "3": [342.896484375, 122.85984802246094, 0.8626143336296082], "4": [235.33680725097656, 121.17999267578125, 0.888757050037384], "5": [389.6274719238281, 233.72183227539062, 0.9915575981140137], "6": [187.68399047851562, 237.5940399169922, 0.9931690692901611], "7": [546.9706420898438, 345.07958984375, 0.8587849736213684], "8": [122.69830322265625, 397.4376220703125, 0.8536500930786133], "9": [537.4024047851562, 192.5649871826172, 0.9385914206504822], "10": [191.7265625, 337.8214111328125, 0.9094718098640442], "11": [364.7540588378906, 480.0, 0.07002981007099152], "12": [238.61962890625, 480.0, 0.07462601363658905], "13": [405.0421142578125, 391.71771240234375, 0.00170445058029145], "14": [266.42266845703125, 376.01068115234375, 0.00196607387624681], "15": [437.41937255859375, 413.5313720703125, 0.00022152639576233923], "16": [303.0350036621094, 393.34124755859375, 0.00024294706236105412]}} +{"t": 28.576185, "tracked": true, "track_id": 1, "bbox": [83.48005676269531, 28.042150497436523, 575.46728515625, 479.75885009765625], "det_conf": 0.9217445254325867, "mean_kpt_conf": 0.9367021430622448, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5893316020876667, "right_lift": -0.926581353035912, "left_bend": 0.7047892856140995, "right_bend": 0.8404272376274864}, "keypoints": {"0": [295.72418212890625, 132.53909301757812, 0.9990942478179932], "1": [317.0362548828125, 108.76846313476562, 0.9967104196548462], "2": [271.97637939453125, 108.1651611328125, 0.9971938133239746], "3": [342.22113037109375, 121.66426086425781, 0.8506525158882141], "4": [236.5641326904297, 119.49713134765625, 0.89105224609375], "5": [389.101806640625, 234.1919708251953, 0.9922683835029602], "6": [187.33847045898438, 235.87364196777344, 0.9934373497962952], "7": [545.9815673828125, 348.6308898925781, 0.8704797625541687], "8": [122.25506591796875, 396.2192077636719, 0.8607373833656311], "9": [543.9952392578125, 197.39549255371094, 0.9406041502952576], "10": [190.95225524902344, 340.2212219238281, 0.9114933013916016], "11": [365.5958251953125, 480.0, 0.07142668962478638], "12": [239.016357421875, 480.0, 0.07426942884922028], "13": [414.1719055175781, 389.4886169433594, 0.001614607172086835], "14": [271.19818115234375, 374.2110900878906, 0.0018436610698699951], "15": [450.1258544921875, 409.65838623046875, 0.00020862571545876563], "16": [309.6305236816406, 391.66986083984375, 0.00022657129738945514]}} +{"t": 28.643078, "tracked": true, "track_id": 1, "bbox": [83.22261047363281, 27.736921310424805, 578.0253295898438, 479.5569763183594], "det_conf": 0.9206318855285645, "mean_kpt_conf": 0.9344213333996859, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6005433468985366, "right_lift": -0.9296423005992366, "left_bend": 0.7069676981495785, "right_bend": 0.8566030440042812}, "keypoints": {"0": [296.4379577636719, 133.14450073242188, 0.9990918636322021], "1": [317.8555603027344, 108.77645874023438, 0.9966447353363037], "2": [272.3834228515625, 108.48971557617188, 0.9971900582313538], "3": [342.93939208984375, 120.92425537109375, 0.8412572145462036], "4": [236.41436767578125, 119.3475341796875, 0.8928467631340027], "5": [390.2391662597656, 233.4658203125, 0.9923920035362244], "6": [187.22845458984375, 236.25296020507812, 0.9930585622787476], "7": [548.1881103515625, 352.09527587890625, 0.8701266050338745], "8": [122.22073364257812, 400.26910400390625, 0.8477609157562256], "9": [547.2755737304688, 200.70745849609375, 0.9413295984268188], "10": [187.2896728515625, 340.50286865234375, 0.9069363474845886], "11": [367.4252014160156, 480.0, 0.0663411095738411], "12": [240.63729858398438, 480.0, 0.06635608524084091], "13": [413.67205810546875, 386.16827392578125, 0.0016520039644092321], "14": [271.9549560546875, 371.8965759277344, 0.0018037277041003108], "15": [447.5562438964844, 409.2200927734375, 0.0002132933004759252], "16": [310.7451171875, 391.91888427734375, 0.00022390257799997926]}} +{"t": 28.708178, "tracked": true, "track_id": 1, "bbox": [82.00908660888672, 27.533430099487305, 580.022705078125, 479.48529052734375], "det_conf": 0.9169236421585083, "mean_kpt_conf": 0.9345254572955045, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5715971900391317, "right_lift": -0.9272802912688403, "left_bend": 0.6748743957564566, "right_bend": 0.8718370466017499}, "keypoints": {"0": [296.91143798828125, 133.5356903076172, 0.9990944862365723], "1": [318.71624755859375, 109.1387939453125, 0.9964655637741089], "2": [272.8430480957031, 108.20932006835938, 0.9973098039627075], "3": [343.49114990234375, 120.8487548828125, 0.8200634717941284], "4": [236.1256866455078, 117.91354370117188, 0.9048635363578796], "5": [385.99267578125, 231.84811401367188, 0.9923173189163208], "6": [187.3370819091797, 237.45553588867188, 0.9931743741035461], "7": [544.605224609375, 342.3401184082031, 0.8735511898994446], "8": [121.3970947265625, 400.7838134765625, 0.8524176478385925], "9": [553.3453979492188, 194.54161071777344, 0.9408640265464783], "10": [185.94264221191406, 336.3611145019531, 0.9096586108207703], "11": [363.84722900390625, 480.0, 0.07588398456573486], "12": [239.23971557617188, 480.0, 0.07560498267412186], "13": [413.0877685546875, 392.5403747558594, 0.0016946500400081277], "14": [271.7829895019531, 380.94580078125, 0.0018389533506706357], "15": [448.2355041503906, 412.3044738769531, 0.00020678354485426098], "16": [305.74261474609375, 394.67767333984375, 0.0002131013898178935]}} +{"t": 28.742058, "tracked": true, "track_id": 1, "bbox": [81.77657318115234, 27.80303955078125, 579.841064453125, 479.3995666503906], "det_conf": 0.9165545701980591, "mean_kpt_conf": 0.9345369826663624, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5711793814853833, "right_lift": -0.9221401346524718, "left_bend": 0.6744467548694986, "right_bend": 0.8680283633419826}, "keypoints": {"0": [298.0809326171875, 133.4911346435547, 0.9991174340248108], "1": [319.09576416015625, 109.35940551757812, 0.9965062737464905], "2": [273.9837341308594, 108.19219970703125, 0.9973588585853577], "3": [343.3311462402344, 121.63496398925781, 0.8179543614387512], "4": [237.09457397460938, 118.51690673828125, 0.9060004353523254], "5": [386.9971923828125, 235.49468994140625, 0.9919790029525757], "6": [189.52035522460938, 239.7650146484375, 0.9934107661247253], "7": [544.0319213867188, 344.76885986328125, 0.8655778765678406], "8": [122.33033752441406, 399.92437744140625, 0.858757495880127], "9": [552.8123779296875, 198.36219787597656, 0.9392967820167542], "10": [187.1192626953125, 338.47186279296875, 0.9139475226402283], "11": [365.51336669921875, 480.0, 0.06941128522157669], "12": [241.00750732421875, 480.0, 0.07229911535978317], "13": [411.97283935546875, 389.54364013671875, 0.0016164676053449512], "14": [267.2080383300781, 377.2651062011719, 0.0018183282809332013], "15": [446.66363525390625, 406.2601013183594, 0.00020524393767118454], "16": [297.2120361328125, 388.7508544921875, 0.00021705047402065247]}} +{"t": 28.810101, "tracked": true, "track_id": 1, "bbox": [82.5760498046875, 27.66061782836914, 580.2509155273438, 479.1442565917969], "det_conf": 0.9211258888244629, "mean_kpt_conf": 0.9352857578884471, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5955613441723706, "right_lift": -0.9272520048066925, "left_bend": 0.6861256177023781, "right_bend": 0.8493684767738261}, "keypoints": {"0": [297.91143798828125, 133.41229248046875, 0.9991014003753662], "1": [319.52069091796875, 109.33999633789062, 0.9965227842330933], "2": [274.2107238769531, 108.30766296386719, 0.997379720211029], "3": [344.28643798828125, 121.36416625976562, 0.8315711617469788], "4": [238.07911682128906, 117.97102355957031, 0.9062901735305786], "5": [389.21319580078125, 234.57005310058594, 0.9922357201576233], "6": [186.86659240722656, 235.13558959960938, 0.9936361312866211], "7": [544.1983642578125, 349.4736328125, 0.863888144493103], "8": [121.69459533691406, 396.5264892578125, 0.8597742319107056], "9": [552.2872314453125, 197.66616821289062, 0.9373201131820679], "10": [189.15673828125, 338.09564208984375, 0.910423755645752], "11": [364.05145263671875, 480.0, 0.07402313500642776], "12": [237.1914825439453, 480.0, 0.07799144089221954], "13": [410.5042724609375, 392.715087890625, 0.0016754214884713292], "14": [266.61663818359375, 378.3511962890625, 0.0019186476711183786], "15": [443.2569274902344, 412.57037353515625, 0.0002098366676364094], "16": [303.74737548828125, 395.8216552734375, 0.0002250879624625668]}} +{"t": 28.873122, "tracked": true, "track_id": 1, "bbox": [79.9334487915039, 27.54694938659668, 579.7910766601562, 479.1366882324219], "det_conf": 0.9141718149185181, "mean_kpt_conf": 0.9319435358047485, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5818788147245193, "right_lift": -0.9252595830758199, "left_bend": 0.6817350194254834, "right_bend": 0.8797957465202909}, "keypoints": {"0": [299.188720703125, 133.83810424804688, 0.9991169571876526], "1": [320.23504638671875, 109.68930053710938, 0.9962399005889893], "2": [274.86444091796875, 108.625244140625, 0.9975245594978333], "3": [343.7186279296875, 121.87638854980469, 0.7984136343002319], "4": [237.238525390625, 118.90419006347656, 0.9155162572860718], "5": [387.0820617675781, 235.9507598876953, 0.9920125603675842], "6": [187.99020385742188, 237.85049438476562, 0.9930921792984009], "7": [544.8211059570312, 348.8092041015625, 0.8609499335289001], "8": [122.17282104492188, 398.38995361328125, 0.8480802178382874], "9": [552.4988403320312, 195.68792724609375, 0.9391571283340454], "10": [185.3312530517578, 332.82562255859375, 0.9112755656242371], "11": [362.02154541015625, 480.0, 0.06957036256790161], "12": [237.64266967773438, 480.0, 0.07118283212184906], "13": [405.7910461425781, 393.7357177734375, 0.001705107861198485], "14": [266.605712890625, 379.7723083496094, 0.0018771295435726643], "15": [438.8125305175781, 413.42425537109375, 0.0002095275849569589], "16": [301.630859375, 395.8743591308594, 0.00021598031162284315]}} +{"t": 28.942018, "tracked": true, "track_id": 1, "bbox": [78.52600860595703, 28.3116512298584, 579.903564453125, 479.1170959472656], "det_conf": 0.9102413058280945, "mean_kpt_conf": 0.932432396845384, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5819141462312062, "right_lift": -0.923213237334007, "left_bend": 0.6849689655689905, "right_bend": 0.8737980217120547}, "keypoints": {"0": [298.82958984375, 133.34356689453125, 0.9991164803504944], "1": [320.13525390625, 109.89930725097656, 0.9962454438209534], "2": [275.13104248046875, 108.08793640136719, 0.9974986910820007], "3": [343.51446533203125, 123.20034790039062, 0.8011764883995056], "4": [237.7703094482422, 118.46932983398438, 0.9132435917854309], "5": [386.181640625, 236.91323852539062, 0.9920598268508911], "6": [187.27005004882812, 237.4083251953125, 0.9929831027984619], "7": [545.4202880859375, 350.8550720214844, 0.8649815320968628], "8": [120.17495727539062, 398.5975036621094, 0.847045361995697], "9": [551.41015625, 201.12554931640625, 0.941301703453064], "10": [185.13186645507812, 334.35296630859375, 0.911104142665863], "11": [359.5942687988281, 479.33026123046875, 0.06820333749055862], "12": [235.10870361328125, 480.0, 0.06866724044084549], "13": [404.71112060546875, 391.4374084472656, 0.0017172578955069184], "14": [264.677490234375, 376.26861572265625, 0.0018559317104518414], "15": [440.9161376953125, 413.0609436035156, 0.00021057504636701196], "16": [299.89056396484375, 392.56414794921875, 0.00021468150953296572]}} +{"t": 29.004546, "tracked": true, "track_id": 1, "bbox": [75.95165252685547, 28.06071662902832, 580.209716796875, 479.6665344238281], "det_conf": 0.9033252596855164, "mean_kpt_conf": 0.9367307966405695, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6308522944018147, "right_lift": -0.940563867516824, "left_bend": 0.7145184660082582, "right_bend": 0.8477491611843436}, "keypoints": {"0": [299.2096862792969, 133.14767456054688, 0.9992998838424683], "1": [319.9430236816406, 109.53509521484375, 0.9962336421012878], "2": [274.82769775390625, 107.96675109863281, 0.9978399276733398], "3": [343.0846252441406, 120.92040252685547, 0.7314895391464233], "4": [234.57069396972656, 116.74543762207031, 0.9111967086791992], "5": [393.15277099609375, 231.72442626953125, 0.993943989276886], "6": [183.79527282714844, 230.85211181640625, 0.9948872923851013], "7": [539.205078125, 350.47308349609375, 0.9060402512550354], "8": [127.37652587890625, 387.1029968261719, 0.9033777117729187], "9": [540.4537353515625, 207.30735778808594, 0.9465531706809998], "10": [171.40110778808594, 346.4194641113281, 0.923176646232605], "11": [376.53265380859375, 480.0, 0.13646355271339417], "12": [240.43069458007812, 480.0, 0.1390017420053482], "13": [426.347900390625, 399.3282470703125, 0.0016536869807168841], "14": [246.44525146484375, 384.09942626953125, 0.00174333481118083], "15": [462.22198486328125, 416.71002197265625, 0.00015972905384842306], "16": [278.03631591796875, 400.14007568359375, 0.00015970392269082367]}} +{"t": 29.070792, "tracked": true, "track_id": 1, "bbox": [73.0874252319336, 28.451791763305664, 579.359619140625, 479.8404235839844], "det_conf": 0.9045199155807495, "mean_kpt_conf": 0.9312290766022422, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6284268194526207, "right_lift": -0.9359072814945767, "left_bend": 0.7130430710162959, "right_bend": 0.8620132826000976}, "keypoints": {"0": [299.1205749511719, 133.30282592773438, 0.9992387294769287], "1": [319.35797119140625, 109.57368469238281, 0.9957386255264282], "2": [275.1293029785156, 108.1600112915039, 0.9976707100868225], "3": [342.02679443359375, 120.56486511230469, 0.7025623321533203], "4": [235.01084899902344, 116.51045989990234, 0.9098182320594788], "5": [392.686279296875, 233.98263549804688, 0.9936875700950623], "6": [182.43051147460938, 232.42431640625, 0.9942305088043213], "7": [540.8204345703125, 353.6576843261719, 0.9003787040710449], "8": [123.6978759765625, 388.4750061035156, 0.8860441446304321], "9": [542.3088989257812, 208.22799682617188, 0.9462445974349976], "10": [170.0444793701172, 342.8704833984375, 0.9179056882858276], "11": [375.06402587890625, 480.0, 0.11885606497526169], "12": [239.5957794189453, 480.0, 0.11612486839294434], "13": [426.52874755859375, 397.9637756347656, 0.0015763913979753852], "14": [254.60671997070312, 383.1417541503906, 0.0015980106545612216], "15": [464.2955322265625, 412.99591064453125, 0.00015206477837637067], "16": [292.6168212890625, 397.3338623046875, 0.00014745004591532052]}} +{"t": 29.135934, "tracked": true, "track_id": 1, "bbox": [69.35049438476562, 28.84441375732422, 579.703369140625, 479.7159423828125], "det_conf": 0.90017169713974, "mean_kpt_conf": 0.9305921467867765, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6031266916937683, "right_lift": -0.9084731497692959, "left_bend": 0.6985004681910157, "right_bend": 0.9060122747171798}, "keypoints": {"0": [299.2686462402344, 134.3067626953125, 0.9991587400436401], "1": [320.3206481933594, 109.80152893066406, 0.9961620569229126], "2": [274.97271728515625, 109.14630126953125, 0.9977225661277771], "3": [344.0207824707031, 121.5150146484375, 0.7883457541465759], "4": [236.93170166015625, 119.15846252441406, 0.9231072664260864], "5": [390.89788818359375, 239.1473388671875, 0.9931938648223877], "6": [180.1062774658203, 238.70364379882812, 0.9934820532798767], "7": [545.2656860351562, 355.87005615234375, 0.8655120730400085], "8": [107.60708618164062, 396.29339599609375, 0.8359302878379822], "9": [548.9381713867188, 201.6424560546875, 0.9387320280075073], "10": [162.33282470703125, 334.7032470703125, 0.9051669239997864], "11": [360.3179931640625, 480.0, 0.06791554391384125], "12": [229.8527069091797, 480.0, 0.06498471647500992], "13": [415.21063232421875, 388.9046630859375, 0.0016642579576000571], "14": [274.9349365234375, 375.3299560546875, 0.001747705857269466], "15": [440.073974609375, 405.1414489746094, 0.0002071047929348424], "16": [316.1321716308594, 390.99560546875, 0.00020658255380112678]}} +{"t": 29.205357, "tracked": true, "track_id": 1, "bbox": [68.17115783691406, 28.349472045898438, 579.1303100585938, 479.9284973144531], "det_conf": 0.9046902060508728, "mean_kpt_conf": 0.9330351786179976, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5797689838442041, "right_lift": -0.8892583824359436, "left_bend": 0.6912161301718939, "right_bend": 0.8802280565842909}, "keypoints": {"0": [299.4164123535156, 134.19406127929688, 0.9991973042488098], "1": [320.5158386230469, 110.86131286621094, 0.9964170455932617], "2": [275.3490295410156, 108.96426391601562, 0.9978225231170654], "3": [343.814697265625, 124.42872619628906, 0.7955299019813538], "4": [236.62063598632812, 119.61163330078125, 0.9246491193771362], "5": [389.6375732421875, 241.52456665039062, 0.992668092250824], "6": [179.23110961914062, 238.6727294921875, 0.9934892654418945], "7": [545.3822631835938, 352.346923828125, 0.863923192024231], "8": [100.44857788085938, 391.8367614746094, 0.8457642793655396], "9": [548.026611328125, 203.14930725097656, 0.9410006999969482], "10": [165.08888244628906, 335.2060852050781, 0.9129255414009094], "11": [359.2861633300781, 480.0, 0.06962934136390686], "12": [228.49484252929688, 480.0, 0.06932324171066284], "13": [407.06756591796875, 395.6121520996094, 0.0015908381901681423], "14": [265.62115478515625, 379.7269287109375, 0.0016916942549869418], "15": [436.01806640625, 414.6640625, 0.00019047415116801858], "16": [303.8623352050781, 396.32586669921875, 0.00019141705706715584]}} +{"t": 29.267035, "tracked": true, "track_id": 1, "bbox": [64.98884582519531, 28.309398651123047, 578.9326782226562, 479.8572082519531], "det_conf": 0.9067719578742981, "mean_kpt_conf": 0.9352148446169767, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5907649337531751, "right_lift": -0.8972619666906044, "left_bend": 0.6940922105106077, "right_bend": 0.8978392013595238}, "keypoints": {"0": [299.63677978515625, 135.1022186279297, 0.999222993850708], "1": [321.1722717285156, 111.07832336425781, 0.9966046810150146], "2": [275.5662841796875, 109.51560974121094, 0.9978100657463074], "3": [345.3231201171875, 123.41802978515625, 0.7994822859764099], "4": [236.63316345214844, 119.171142578125, 0.9211789965629578], "5": [392.3067626953125, 240.15335083007812, 0.9934616088867188], "6": [176.75030517578125, 239.41673278808594, 0.993629515171051], "7": [544.9616088867188, 351.92608642578125, 0.8801272511482239], "8": [100.0906982421875, 395.21282958984375, 0.8486930131912231], "9": [548.3009033203125, 201.8560791015625, 0.9443140625953674], "10": [163.90347290039062, 330.47674560546875, 0.9128388166427612], "11": [358.8655090332031, 480.0, 0.08330117166042328], "12": [222.93508911132812, 480.0, 0.07883299887180328], "13": [410.63739013671875, 400.8147277832031, 0.001619642716832459], "14": [253.5509033203125, 387.3232421875, 0.0016327626071870327], "15": [436.1304931640625, 419.2420959472656, 0.00017699440650176257], "16": [284.9391784667969, 402.8992919921875, 0.00017024633416440338]}} +{"t": 29.330791, "tracked": true, "track_id": 1, "bbox": [64.64187622070312, 27.56044578552246, 580.1002807617188, 479.8521728515625], "det_conf": 0.9059109091758728, "mean_kpt_conf": 0.9349460168318315, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5874495005625749, "right_lift": -0.882628705857016, "left_bend": 0.6955109029120372, "right_bend": 0.8854535636067777}, "keypoints": {"0": [299.7118835449219, 134.61325073242188, 0.9992145299911499], "1": [321.122802734375, 110.42971801757812, 0.9965090155601501], "2": [276.22528076171875, 109.21336364746094, 0.9978376030921936], "3": [344.9100646972656, 121.42425537109375, 0.7964770197868347], "4": [238.1488800048828, 117.52001953125, 0.924369215965271], "5": [389.201904296875, 236.40736389160156, 0.9934218525886536], "6": [177.322021484375, 235.6174774169922, 0.9936572909355164], "7": [544.1182861328125, 348.8625183105469, 0.8817628622055054], "8": [94.58685302734375, 390.9652099609375, 0.8472909927368164], "9": [546.0526123046875, 207.55551147460938, 0.9437984228134155], "10": [157.13131713867188, 335.9358215332031, 0.9100673794746399], "11": [355.1505432128906, 480.0, 0.0819440484046936], "12": [222.90997314453125, 480.0, 0.07668936997652054], "13": [409.1149597167969, 398.1075134277344, 0.001640694565139711], "14": [262.75762939453125, 384.4726867675781, 0.001635068911127746], "15": [440.1357727050781, 416.21868896484375, 0.00018443656153976917], "16": [300.2327575683594, 399.54266357421875, 0.0001762280153343454]}} +{"t": 29.369773, "tracked": true, "track_id": 1, "bbox": [64.81024932861328, 27.37336540222168, 579.681884765625, 479.8387451171875], "det_conf": 0.9105408787727356, "mean_kpt_conf": 0.9356181242249229, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5929140620984139, "right_lift": -0.8802840591674396, "left_bend": 0.6926246907155672, "right_bend": 0.8997366625922354}, "keypoints": {"0": [299.4894104003906, 134.6872100830078, 0.9992338418960571], "1": [320.85345458984375, 110.15081787109375, 0.996670663356781], "2": [275.4862976074219, 109.17800903320312, 0.9978485107421875], "3": [345.07904052734375, 121.08564758300781, 0.803852915763855], "4": [237.1285858154297, 117.96524047851562, 0.9218429923057556], "5": [389.0137939453125, 238.70877075195312, 0.9932570457458496], "6": [177.9234161376953, 237.28684997558594, 0.9938825368881226], "7": [542.5809326171875, 351.7796630859375, 0.8779606223106384], "8": [94.5758056640625, 391.92913818359375, 0.8524478077888489], "9": [546.8904418945312, 205.85816955566406, 0.9427344799041748], "10": [154.34033203125, 334.95794677734375, 0.9120679497718811], "11": [353.74298095703125, 480.0, 0.08028832077980042], "12": [221.2738494873047, 480.0, 0.07745916396379471], "13": [405.86431884765625, 400.34759521484375, 0.0015571706462651491], "14": [254.68914794921875, 386.2698974609375, 0.0015849831979721785], "15": [439.08197021484375, 412.19158935546875, 0.00017748687241692096], "16": [289.56390380859375, 396.9057922363281, 0.00017222421593032777]}} +{"t": 29.43353, "tracked": true, "track_id": 1, "bbox": [65.4180679321289, 27.766437530517578, 580.6596069335938, 479.5876770019531], "det_conf": 0.9063012003898621, "mean_kpt_conf": 0.931577438657934, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5712352656152895, "right_lift": -0.8794355775811313, "left_bend": 0.6973082720005317, "right_bend": 0.887247799468293}, "keypoints": {"0": [299.6146240234375, 134.96014404296875, 0.9991862177848816], "1": [321.4687194824219, 111.02571105957031, 0.9961302280426025], "2": [276.0894470214844, 109.23736572265625, 0.9978571534156799], "3": [344.911865234375, 122.26519775390625, 0.7782924771308899], "4": [237.22848510742188, 117.14321899414062, 0.9271346926689148], "5": [387.8401794433594, 237.03936767578125, 0.9936916828155518], "6": [176.23690795898438, 234.544677734375, 0.9933919310569763], "7": [546.596923828125, 347.5278625488281, 0.8827900886535645], "8": [93.25732421875, 387.84814453125, 0.8355680108070374], "9": [544.8782958984375, 202.52932739257812, 0.9431608319282532], "10": [145.43545532226562, 342.04248046875, 0.9001485109329224], "11": [352.2148742675781, 480.0, 0.07581817358732224], "12": [221.25477600097656, 480.0, 0.06786680966615677], "13": [407.8084716796875, 391.4747314453125, 0.001638034824281931], "14": [268.5178527832031, 374.7295227050781, 0.0015676155453547835], "15": [439.5499572753906, 404.4776916503906, 0.00019934671581722796], "16": [312.1074523925781, 384.46649169921875, 0.00018497354176361114]}} +{"t": 29.501038, "tracked": true, "track_id": 1, "bbox": [65.7828140258789, 29.00035858154297, 584.0200805664062, 479.3485107421875], "det_conf": 0.906435489654541, "mean_kpt_conf": 0.9333143830299377, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5968609233525592, "right_lift": -0.8848714398859979, "left_bend": 0.7021413240021728, "right_bend": 0.9318900437113992}, "keypoints": {"0": [300.10308837890625, 134.97640991210938, 0.9992189407348633], "1": [321.65704345703125, 110.05148315429688, 0.9964739680290222], "2": [275.69232177734375, 109.04428100585938, 0.9977656602859497], "3": [346.1853942871094, 120.96147155761719, 0.7909742593765259], "4": [236.45411682128906, 117.8272705078125, 0.9188767671585083], "5": [391.3628845214844, 241.4984893798828, 0.9938967823982239], "6": [176.798583984375, 239.86766052246094, 0.9936036467552185], "7": [544.25390625, 355.2334899902344, 0.8833054900169373], "8": [95.66006469726562, 393.9932861328125, 0.8380892276763916], "9": [544.952392578125, 201.29176330566406, 0.9450016617774963], "10": [150.5004425048828, 328.6928405761719, 0.9092518091201782], "11": [355.6565856933594, 480.0, 0.07967797666788101], "12": [221.060546875, 480.0, 0.07165540009737015], "13": [415.10235595703125, 399.0213928222656, 0.0015458740526810288], "14": [263.064208984375, 384.9901428222656, 0.0015008327318355441], "15": [444.2720947265625, 404.90521240234375, 0.00017618417041376233], "16": [298.7503662109375, 389.9784851074219, 0.0001654961524764076]}} +{"t": 29.565236, "tracked": true, "track_id": 1, "bbox": [66.67694854736328, 29.398578643798828, 578.498046875, 479.0128479003906], "det_conf": 0.9094759821891785, "mean_kpt_conf": 0.9297972809184681, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6186859179989894, "right_lift": -0.8980827339390597, "left_bend": 0.7166692604441863, "right_bend": 0.8875858592364723}, "keypoints": {"0": [299.8851623535156, 134.66090393066406, 0.9991647005081177], "1": [321.378173828125, 109.91249084472656, 0.9962635636329651], "2": [275.453857421875, 109.15057373046875, 0.9977596998214722], "3": [345.5494079589844, 121.03720092773438, 0.790870189666748], "4": [236.21910095214844, 118.32528686523438, 0.9227292537689209], "5": [393.83544921875, 240.24212646484375, 0.9932576417922974], "6": [175.30206298828125, 236.24725341796875, 0.9931336641311646], "7": [544.7296752929688, 359.07049560546875, 0.8669752478599548], "8": [99.25210571289062, 391.5338134765625, 0.8258228898048401], "9": [542.6273193359375, 204.69468688964844, 0.9407857060432434], "10": [156.77890014648438, 336.612548828125, 0.9010075330734253], "11": [357.9701843261719, 480.0, 0.06972753256559372], "12": [222.3233184814453, 480.0, 0.06481821835041046], "13": [407.5667724609375, 391.7587585449219, 0.001710970071144402], "14": [261.26776123046875, 376.0926513671875, 0.001695138867944479], "15": [431.80511474609375, 408.68023681640625, 0.00020477677753660828], "16": [306.1246032714844, 394.7471618652344, 0.0001954515028046444]}} +{"t": 29.631545, "tracked": true, "track_id": 1, "bbox": [66.46864318847656, 29.616321563720703, 577.7732543945312, 478.9740295410156], "det_conf": 0.9083916544914246, "mean_kpt_conf": 0.9270421103997664, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6088662114438341, "right_lift": -0.9050373376256046, "left_bend": 0.7109553628564913, "right_bend": 0.8730356453808051}, "keypoints": {"0": [299.308837890625, 135.42991638183594, 0.9991229176521301], "1": [320.64447021484375, 110.40089416503906, 0.9960861206054688], "2": [274.68133544921875, 109.72134399414062, 0.9976894855499268], "3": [344.5578308105469, 120.88298034667969, 0.7853647470474243], "4": [234.95904541015625, 118.53680419921875, 0.9259496927261353], "5": [393.4896545410156, 239.95718383789062, 0.9930925369262695], "6": [174.25784301757812, 239.94769287109375, 0.9933685660362244], "7": [542.7388916015625, 354.511474609375, 0.8583322167396545], "8": [101.45066833496094, 394.8694763183594, 0.8198409080505371], "9": [541.538330078125, 206.3935546875, 0.9351106882095337], "10": [157.08746337890625, 344.81829833984375, 0.893505334854126], "11": [363.353759765625, 480.0, 0.07033271342515945], "12": [228.07183837890625, 480.0, 0.06642589718103409], "13": [410.356201171875, 393.33544921875, 0.0017129650805145502], "14": [269.9530029296875, 380.6148986816406, 0.0017132145585492253], "15": [430.65020751953125, 407.15289306640625, 0.00020986166782677174], "16": [320.10791015625, 394.4267578125, 0.00020220925216563046]}} +{"t": 29.69479, "tracked": true, "track_id": 1, "bbox": [67.32923889160156, 29.33818817138672, 576.5343017578125, 479.1427917480469], "det_conf": 0.9068880081176758, "mean_kpt_conf": 0.9339775117960843, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5784263465182446, "right_lift": -0.9007440360233596, "left_bend": 0.7070921319911679, "right_bend": 0.8624775446711758}, "keypoints": {"0": [298.7505187988281, 134.2545166015625, 0.99918133020401], "1": [319.5384826660156, 110.52243041992188, 0.9964209794998169], "2": [274.5320739746094, 109.8214111328125, 0.9977529644966125], "3": [342.9803466796875, 122.58943176269531, 0.8018627762794495], "4": [236.1063232421875, 120.724365234375, 0.918813943862915], "5": [389.1891784667969, 236.35682678222656, 0.9931107759475708], "6": [179.77542114257812, 237.90737915039062, 0.9934711456298828], "7": [543.5115966796875, 345.7847595214844, 0.880385160446167], "8": [105.80593872070312, 391.3033142089844, 0.8505619764328003], "9": [538.6967163085938, 203.390625, 0.9406996369361877], "10": [158.78787231445312, 347.6252746582031, 0.9014919400215149], "11": [356.1595458984375, 480.0, 0.08735799044370651], "12": [224.8956298828125, 480.0, 0.08345039188861847], "13": [402.96881103515625, 400.8887939453125, 0.001673060585744679], "14": [254.41798400878906, 386.05181884765625, 0.0016747673507779837], "15": [432.8442687988281, 416.2750244140625, 0.00019373171380721033], "16": [291.7469177246094, 399.4576721191406, 0.0001863376674009487]}} +{"t": 29.759515, "tracked": true, "track_id": 1, "bbox": [68.36112213134766, 28.8784236907959, 575.1376342773438, 479.51605224609375], "det_conf": 0.9064987301826477, "mean_kpt_conf": 0.9359688216989691, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6169336357217032, "right_lift": -0.9106347033669282, "left_bend": 0.7154736024081462, "right_bend": 0.8513134952598574}, "keypoints": {"0": [297.5457458496094, 134.20510864257812, 0.9991616010665894], "1": [318.9663391113281, 110.37745666503906, 0.9966168999671936], "2": [273.1162414550781, 109.63742065429688, 0.997647225856781], "3": [343.8934020996094, 122.93827819824219, 0.8330802321434021], "4": [235.2284393310547, 120.67750549316406, 0.9134511947631836], "5": [393.6506652832031, 239.71957397460938, 0.993150532245636], "6": [178.25990295410156, 237.02398681640625, 0.9943130016326904], "7": [540.4784545898438, 354.81646728515625, 0.867055356502533], "8": [108.66520690917969, 390.3963317871094, 0.8633722066879272], "9": [538.6322021484375, 202.1117706298828, 0.9335787296295166], "10": [165.09677124023438, 344.9761047363281, 0.9042300581932068], "11": [362.13433837890625, 480.0, 0.08967296034097672], "12": [226.9840850830078, 480.0, 0.09364917874336243], "13": [407.2740478515625, 403.76409912109375, 0.0016257825773209333], "14": [254.50650024414062, 387.4908752441406, 0.001804642379283905], "15": [430.52886962890625, 414.9360656738281, 0.0001901152718346566], "16": [294.5394287109375, 400.885498046875, 0.00019904947839677334]}} +{"t": 29.794922, "tracked": true, "track_id": 1, "bbox": [69.18828582763672, 29.097257614135742, 574.4566650390625, 479.7062683105469], "det_conf": 0.9050888419151306, "mean_kpt_conf": 0.9334743022918701, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5952956111393242, "right_lift": -0.9062583887319003, "left_bend": 0.7049500135399358, "right_bend": 0.8487202201493972}, "keypoints": {"0": [297.8595275878906, 134.64553833007812, 0.9991752505302429], "1": [319.4295959472656, 110.67538452148438, 0.996426522731781], "2": [273.5733642578125, 109.304443359375, 0.9977505803108215], "3": [343.4276123046875, 122.83126831054688, 0.80913907289505], "4": [234.87515258789062, 119.14601135253906, 0.9197507500648499], "5": [389.7525329589844, 238.74343872070312, 0.992562472820282], "6": [179.54461669921875, 236.25328063964844, 0.9937813878059387], "7": [541.2200317382812, 350.9614562988281, 0.8633452653884888], "8": [107.67904663085938, 390.3224792480469, 0.8544560074806213], "9": [540.2796630859375, 200.1656036376953, 0.9367159605026245], "10": [162.3936004638672, 347.93817138671875, 0.9051140546798706], "11": [359.89959716796875, 480.0, 0.07889316231012344], "12": [228.80621337890625, 480.0, 0.08147171139717102], "13": [400.44500732421875, 401.71514892578125, 0.0016553757013753057], "14": [256.6248779296875, 384.4649963378906, 0.0017782020149752498], "15": [430.17132568359375, 418.1384582519531, 0.00019142455130349845], "16": [300.40185546875, 400.90399169921875, 0.00019442899792920798]}} +{"t": 29.859235, "tracked": true, "track_id": 1, "bbox": [67.59455871582031, 28.69879150390625, 574.58740234375, 480.0], "det_conf": 0.9069252610206604, "mean_kpt_conf": 0.9380595033819025, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6305379378909496, "right_lift": -0.92086927014262, "left_bend": 0.7285524269233171, "right_bend": 0.8548871551685292}, "keypoints": {"0": [297.5661315917969, 134.50396728515625, 0.9992796778678894], "1": [318.26214599609375, 110.02180480957031, 0.9967362284660339], "2": [273.2734375, 109.3681640625, 0.9976116418838501], "3": [342.9251403808594, 120.11502075195312, 0.7935476303100586], "4": [234.5801544189453, 118.08914947509766, 0.8940105438232422], "5": [396.3122863769531, 232.8412628173828, 0.9933949112892151], "6": [183.30078125, 233.90182495117188, 0.9947761297225952], "7": [537.8355712890625, 347.8123779296875, 0.8955625295639038], "8": [119.28680419921875, 385.1016540527344, 0.8968908786773682], "9": [532.86572265625, 208.9424591064453, 0.9413183331489563], "10": [156.0257568359375, 353.2401123046875, 0.9155260324478149], "11": [376.0418395996094, 480.0, 0.12426427751779556], "12": [237.84188842773438, 480.0, 0.12971462309360504], "13": [419.80560302734375, 404.6319274902344, 0.001402147812768817], "14": [238.26402282714844, 390.2732238769531, 0.001483954838477075], "15": [448.67657470703125, 420.89447021484375, 0.00013492160360328853], "16": [266.19122314453125, 407.03863525390625, 0.00013713726366404444]}} +{"t": 29.892663, "tracked": true, "track_id": 1, "bbox": [71.3826675415039, 28.908771514892578, 575.3328247070312, 480.0], "det_conf": 0.9106152653694153, "mean_kpt_conf": 0.93912949887189, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6294954388330603, "right_lift": -0.9077763087930273, "left_bend": 0.7283528246702778, "right_bend": 0.8563199858083265}, "keypoints": {"0": [297.1104431152344, 134.58763122558594, 0.999182403087616], "1": [318.15252685546875, 111.28883361816406, 0.9967494010925293], "2": [273.35723876953125, 108.9879150390625, 0.99741530418396], "3": [342.4364318847656, 125.1522216796875, 0.8394538164138794], "4": [235.15980529785156, 119.56855773925781, 0.9017075896263123], "5": [395.39471435546875, 243.3893585205078, 0.9933333992958069], "6": [178.5696563720703, 241.91075134277344, 0.9947899580001831], "7": [536.6021728515625, 357.7895812988281, 0.8709015250205994], "8": [107.02253723144531, 396.75177001953125, 0.8782339692115784], "9": [531.2970581054688, 212.46023559570312, 0.9394769072532654], "10": [167.14056396484375, 347.4801025390625, 0.9191802144050598], "11": [370.9565734863281, 480.0, 0.09794019162654877], "12": [234.2512969970703, 480.0, 0.10279841721057892], "13": [413.5743408203125, 404.93017578125, 0.0016604878474026918], "14": [258.9718322753906, 390.3616943359375, 0.001910098479129374], "15": [423.1580810546875, 428.2164611816406, 0.00017107557505369186], "16": [282.87261962890625, 411.2005920410156, 0.00018719759827945381]}} +{"t": 29.930109, "tracked": true, "track_id": 1, "bbox": [68.23297119140625, 28.941265106201172, 573.5138549804688, 480.0], "det_conf": 0.9096387028694153, "mean_kpt_conf": 0.9371141249483282, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6362627458486334, "right_lift": -0.9124729299184423, "left_bend": 0.7174801112352024, "right_bend": 0.8346489460616326}, "keypoints": {"0": [297.6296081542969, 135.11044311523438, 0.9992050528526306], "1": [319.2808837890625, 110.99169921875, 0.9966894388198853], "2": [273.76348876953125, 109.725341796875, 0.9977178573608398], "3": [344.29150390625, 122.3070068359375, 0.8222098350524902], "4": [235.46408081054688, 118.50904846191406, 0.9128288626670837], "5": [393.382568359375, 239.6536407470703, 0.9933284521102905], "6": [176.95175170898438, 234.66744995117188, 0.9943812489509583], "7": [534.925537109375, 356.3895263671875, 0.8773215413093567], "8": [107.92239379882812, 388.61932373046875, 0.8725136518478394], "9": [535.889404296875, 206.02926635742188, 0.9355893135070801], "10": [163.68357849121094, 347.9781799316406, 0.9064701199531555], "11": [361.24456787109375, 480.0, 0.09807124733924866], "12": [223.08731079101562, 480.0, 0.10161478072404861], "13": [406.432373046875, 406.4749755859375, 0.001620653783902526], "14": [238.41131591796875, 389.710693359375, 0.0017372838919982314], "15": [433.7469177246094, 417.611083984375, 0.00017803636728785932], "16": [275.47857666015625, 403.8403625488281, 0.00018027500482276082]}} +{"t": 29.994068, "tracked": true, "track_id": 1, "bbox": [72.83709716796875, 28.77378273010254, 576.1016845703125, 479.7732238769531], "det_conf": 0.9137076139450073, "mean_kpt_conf": 0.9385595700957559, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6512859940601673, "right_lift": -0.9125926087455832, "left_bend": 0.7326864067823882, "right_bend": 0.8513907919580379}, "keypoints": {"0": [298.32757568359375, 134.66848754882812, 0.9991970658302307], "1": [318.894775390625, 111.30326843261719, 0.9966885447502136], "2": [274.32501220703125, 109.1260986328125, 0.9975128173828125], "3": [342.7895812988281, 124.7490234375, 0.8291559219360352], "4": [235.2564697265625, 119.54525756835938, 0.9082435369491577], "5": [397.1618957519531, 245.13526916503906, 0.9935327768325806], "6": [177.62477111816406, 243.11233520507812, 0.9952658414840698], "7": [533.0237426757812, 361.741943359375, 0.8673222661018372], "8": [108.79307556152344, 396.7437744140625, 0.8844365477561951], "9": [529.929931640625, 219.37612915039062, 0.9342527985572815], "10": [167.5792694091797, 348.94146728515625, 0.9185471534729004], "11": [375.0655517578125, 480.0, 0.10533912479877472], "12": [236.03945922851562, 480.0, 0.1138569712638855], "13": [417.0128479003906, 407.14251708984375, 0.001650840393267572], "14": [256.9106140136719, 393.73828125, 0.0019423769554123282], "15": [424.17742919921875, 422.997314453125, 0.0001693558442639187], "16": [282.1246032714844, 408.5414733886719, 0.0001877610629890114]}} +{"t": 30.060308, "tracked": true, "track_id": 1, "bbox": [70.91031646728516, 28.603425979614258, 578.1888427734375, 479.5518798828125], "det_conf": 0.908811092376709, "mean_kpt_conf": 0.9399306828325446, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6339310275711701, "right_lift": -0.9160228985915464, "left_bend": 0.7374085904309154, "right_bend": 0.863136918351523}, "keypoints": {"0": [297.6305236816406, 135.48117065429688, 0.9991617202758789], "1": [319.1309814453125, 111.88839721679688, 0.9968178272247314], "2": [273.9834289550781, 109.677734375, 0.9972013235092163], "3": [343.9340515136719, 124.63818359375, 0.8480504155158997], "4": [235.42233276367188, 119.07406616210938, 0.8922722339630127], "5": [397.05523681640625, 241.53187561035156, 0.9940831065177917], "6": [178.5943603515625, 242.76931762695312, 0.9949795603752136], "7": [538.1636352539062, 357.1954345703125, 0.8864428997039795], "8": [110.25767517089844, 398.824951171875, 0.8761248588562012], "9": [530.0283203125, 219.97125244140625, 0.9409529566764832], "10": [165.9408416748047, 349.18505859375, 0.9131506085395813], "11": [377.1910705566406, 480.0, 0.11806865781545639], "12": [239.09632873535156, 480.0, 0.11683480441570282], "13": [422.4865417480469, 408.26495361328125, 0.0017784389201551676], "14": [266.0201110839844, 395.48309326171875, 0.0019183818949386477], "15": [434.9664306640625, 425.3035888671875, 0.00017812025907915086], "16": [295.30841064453125, 407.4400634765625, 0.00018793123308569193]}} +{"t": 30.122588, "tracked": true, "track_id": 1, "bbox": [72.15149688720703, 28.688671112060547, 579.021728515625, 479.52667236328125], "det_conf": 0.9139317274093628, "mean_kpt_conf": 0.9388029737906023, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6171998973843732, "right_lift": -0.9150274764972307, "left_bend": 0.7199924125942261, "right_bend": 0.8458132860418365}, "keypoints": {"0": [296.84368896484375, 133.85910034179688, 0.9990732669830322], "1": [318.70233154296875, 111.28488159179688, 0.996743381023407], "2": [273.7176208496094, 108.43426513671875, 0.9969660639762878], "3": [343.56109619140625, 125.08587646484375, 0.8674941062927246], "4": [235.77511596679688, 118.25527954101562, 0.8888593316078186], "5": [394.84063720703125, 241.2028350830078, 0.9938585162162781], "6": [177.75369262695312, 242.10882568359375, 0.9952228665351868], "7": [535.25927734375, 351.3523864746094, 0.8788175582885742], "8": [110.04922485351562, 395.685302734375, 0.8751679062843323], "9": [531.6514282226562, 212.34022521972656, 0.9337438344955444], "10": [162.6355438232422, 353.922119140625, 0.9008858799934387], "11": [372.76593017578125, 480.0, 0.12758833169937134], "12": [236.13714599609375, 480.0, 0.13033737242221832], "13": [411.27825927734375, 412.529541015625, 0.0018335143104195595], "14": [259.7711486816406, 398.51885986328125, 0.002005011076107621], "15": [424.63336181640625, 421.1129150390625, 0.00018977350555360317], "16": [294.03900146484375, 401.79266357421875, 0.00020291285181883723]}} +{"t": 30.187004, "tracked": true, "track_id": 1, "bbox": [72.9970474243164, 28.56092643737793, 578.16357421875, 479.17681884765625], "det_conf": 0.9164366126060486, "mean_kpt_conf": 0.9383128664710305, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6155424618170169, "right_lift": -0.9112658846150967, "left_bend": 0.731262185546281, "right_bend": 0.8748447030943349}, "keypoints": {"0": [297.96826171875, 135.79727172851562, 0.9991614818572998], "1": [319.4507141113281, 111.44422912597656, 0.996715784072876], "2": [273.79248046875, 109.57737731933594, 0.9973546266555786], "3": [344.4349365234375, 122.7625732421875, 0.8400530815124512], "4": [234.42005920410156, 118.12358093261719, 0.9012444019317627], "5": [396.9913330078125, 240.66799926757812, 0.9937170743942261], "6": [179.03761291503906, 243.9584503173828, 0.9952840209007263], "7": [538.8082275390625, 351.4330139160156, 0.8718870878219604], "8": [109.75665283203125, 397.2623291015625, 0.8786391019821167], "9": [530.0388793945312, 213.4260711669922, 0.934571385383606], "10": [161.0554656982422, 349.1687927246094, 0.9128134846687317], "11": [377.48883056640625, 480.0, 0.11616609245538712], "12": [239.89114379882812, 480.0, 0.12140078842639923], "13": [418.4844970703125, 411.16790771484375, 0.0017059993697330356], "14": [263.97540283203125, 398.8974914550781, 0.0019279480911791325], "15": [428.3315734863281, 419.88983154296875, 0.00017379170458298177], "16": [291.4933166503906, 402.4390869140625, 0.00018833250214811414]}} +{"t": 30.224222, "tracked": true, "track_id": 1, "bbox": [73.29291534423828, 28.65542984008789, 578.9163208007812, 479.2937927246094], "det_conf": 0.9130735993385315, "mean_kpt_conf": 0.9380800994959745, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6296130769721224, "right_lift": -0.9093741974117765, "left_bend": 0.7302836384247895, "right_bend": 0.854472315457603}, "keypoints": {"0": [297.6307067871094, 135.0401611328125, 0.9991509914398193], "1": [319.2591552734375, 111.00997924804688, 0.9967330694198608], "2": [273.9665832519531, 108.66343688964844, 0.9972449541091919], "3": [344.3835754394531, 123.16168212890625, 0.8489614725112915], "4": [235.45834350585938, 117.19194030761719, 0.8957142233848572], "5": [396.760498046875, 243.1873016357422, 0.9938365817070007], "6": [179.75271606445312, 242.72177124023438, 0.9951004385948181], "7": [537.4326782226562, 357.18914794921875, 0.8728237748146057], "8": [109.33833312988281, 396.6550598144531, 0.8736312389373779], "9": [531.4409790039062, 215.96786499023438, 0.9361441731452942], "10": [159.752197265625, 355.5032958984375, 0.9095401763916016], "11": [375.6495361328125, 480.0, 0.10887468606233597], "12": [238.96292114257812, 480.0, 0.11127273738384247], "13": [420.3877868652344, 408.6358642578125, 0.0017159398412331939], "14": [267.98443603515625, 394.3675537109375, 0.0019142474047839642], "15": [431.2134094238281, 418.7681884765625, 0.0001752846728777513], "16": [296.8712463378906, 401.3758850097656, 0.00018952813115902245]}} +{"t": 30.289786, "tracked": true, "track_id": 1, "bbox": [68.75318908691406, 29.21909523010254, 577.5205078125, 479.5689392089844], "det_conf": 0.9084223508834839, "mean_kpt_conf": 0.9355212883515791, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5935876991837143, "right_lift": -0.9001891466463843, "left_bend": 0.7107394472350111, "right_bend": 0.8338357217726867}, "keypoints": {"0": [296.9635314941406, 135.76129150390625, 0.9991832375526428], "1": [319.39208984375, 111.88973999023438, 0.9966617822647095], "2": [273.4598693847656, 110.0909423828125, 0.9976944327354431], "3": [343.9635009765625, 123.75961303710938, 0.8311545252799988], "4": [235.85482788085938, 118.88504028320312, 0.9139823913574219], "5": [388.9981689453125, 236.00914001464844, 0.9928023219108582], "6": [179.0934295654297, 234.7879638671875, 0.9938192963600159], "7": [541.717529296875, 348.65301513671875, 0.8736898303031921], "8": [103.488037109375, 391.06646728515625, 0.8565442562103271], "9": [537.9873657226562, 208.1791229248047, 0.9376076459884644], "10": [150.1485137939453, 359.26861572265625, 0.8975944519042969], "11": [354.8282470703125, 480.0, 0.07686644792556763], "12": [223.64932250976562, 480.0, 0.07716681808233261], "13": [394.6466979980469, 396.08367919921875, 0.0016113603487610817], "14": [247.2122802734375, 378.5082702636719, 0.0016598603688180447], "15": [423.928466796875, 419.3583984375, 0.0001935734908329323], "16": [287.4305419921875, 399.0697937011719, 0.0001917253975989297]}} +{"t": 30.356969, "tracked": true, "track_id": 1, "bbox": [72.46240234375, 29.205291748046875, 587.5364990234375, 479.5309143066406], "det_conf": 0.9088485240936279, "mean_kpt_conf": 0.9425382234833457, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6067101085403246, "right_lift": -0.9149152056825969, "left_bend": 0.7043220509309743, "right_bend": 0.872153897846087}, "keypoints": {"0": [296.65496826171875, 135.7171630859375, 0.999237060546875], "1": [318.6979675292969, 112.52618408203125, 0.9968991279602051], "2": [273.3714599609375, 109.14227294921875, 0.9974484443664551], "3": [343.51702880859375, 125.54098510742188, 0.838975727558136], "4": [234.52581787109375, 117.33160400390625, 0.8973455429077148], "5": [393.983642578125, 240.74388122558594, 0.9944155216217041], "6": [180.15432739257812, 241.2755889892578, 0.9954473376274109], "7": [539.402587890625, 351.7321472167969, 0.8960129618644714], "8": [111.57707214355469, 396.71466064453125, 0.8957070112228394], "9": [540.7596435546875, 216.28494262695312, 0.9403918981552124], "10": [157.35997009277344, 353.7496337890625, 0.9160398244857788], "11": [374.28302001953125, 480.0, 0.13045084476470947], "12": [236.91220092773438, 480.0, 0.13211648166179657], "13": [420.4527893066406, 411.0560302734375, 0.0015909463400021195], "14": [251.57684326171875, 396.4491271972656, 0.001739782514050603], "15": [437.2716369628906, 422.89947509765625, 0.0001533322356408462], "16": [269.72607421875, 401.07977294921875, 0.00016154626791831106]}} +{"t": 30.42177, "tracked": true, "track_id": 1, "bbox": [66.74446105957031, 29.358991622924805, 585.56396484375, 479.6742858886719], "det_conf": 0.9073250889778137, "mean_kpt_conf": 0.9404032176191156, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5785994259226658, "right_lift": -0.8937890364237835, "left_bend": 0.6841958012771201, "right_bend": 0.8249250888846036}, "keypoints": {"0": [296.38262939453125, 135.39402770996094, 0.9993277788162231], "1": [318.2421569824219, 112.12739562988281, 0.9969792366027832], "2": [273.1845397949219, 109.48284912109375, 0.9979875087738037], "3": [342.5123291015625, 124.86434936523438, 0.8186621069908142], "4": [235.26588439941406, 117.909912109375, 0.9127450585365295], "5": [388.88232421875, 239.7717742919922, 0.9937595725059509], "6": [181.1298065185547, 232.8752899169922, 0.9946126937866211], "7": [547.667236328125, 352.4146423339844, 0.8908775448799133], "8": [104.34394836425781, 385.9014892578125, 0.8862595558166504], "9": [553.2907104492188, 205.82135009765625, 0.9416484236717224], "10": [151.28195190429688, 356.7535095214844, 0.9115759134292603], "11": [360.0157470703125, 480.0, 0.08870065957307816], "12": [227.29403686523438, 480.0, 0.09116245061159134], "13": [406.4972229003906, 401.6794738769531, 0.0013678655959665775], "14": [241.28857421875, 379.7905578613281, 0.0014578175032511353], "15": [447.18548583984375, 413.6907958984375, 0.00015503056056331843], "16": [272.8442077636719, 390.6273498535156, 0.00015665189130231738]}} +{"t": 30.487115, "tracked": true, "track_id": 1, "bbox": [69.79776000976562, 29.650365829467773, 590.1592407226562, 479.6282043457031], "det_conf": 0.9075815081596375, "mean_kpt_conf": 0.9425142732533541, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5930158853391256, "right_lift": -0.8963719272173142, "left_bend": 0.6767998674577074, "right_bend": 0.8473928533098714}, "keypoints": {"0": [294.96044921875, 135.1697540283203, 0.999279797077179], "1": [316.56671142578125, 111.17156982421875, 0.99714595079422], "2": [271.3702087402344, 110.07989501953125, 0.9976644515991211], "3": [342.0140380859375, 123.017822265625, 0.8477330803871155], "4": [235.15679931640625, 119.407470703125, 0.9005914926528931], "5": [389.7033386230469, 236.72105407714844, 0.9942162036895752], "6": [182.53126525878906, 234.35569763183594, 0.9948267340660095], "7": [546.8118896484375, 352.43011474609375, 0.8979376554489136], "8": [105.56912231445312, 389.97552490234375, 0.8874807357788086], "9": [558.0234375, 211.463134765625, 0.9406824111938477], "10": [152.75811767578125, 355.41827392578125, 0.9100984930992126], "11": [364.59356689453125, 480.0, 0.09002278745174408], "12": [232.68475341796875, 480.0, 0.09028248488903046], "13": [421.8876647949219, 392.4220275878906, 0.0013584690168499947], "14": [257.7687683105469, 375.84014892578125, 0.0014757168246433139], "15": [459.0947570800781, 401.8807373046875, 0.00016074218729045242], "16": [287.1780700683594, 385.0858154296875, 0.00016767176566645503]}} +{"t": 30.551459, "tracked": true, "track_id": 1, "bbox": [67.85712432861328, 30.040597915649414, 599.3985595703125, 479.6821594238281], "det_conf": 0.9070921540260315, "mean_kpt_conf": 0.9453472657637163, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5745941127705084, "right_lift": -0.8907718596391674, "left_bend": 0.6404070838840606, "right_bend": 0.8553691962071396}, "keypoints": {"0": [293.7093505859375, 134.400146484375, 0.9992774128913879], "1": [315.1779479980469, 111.1597900390625, 0.9973403811454773], "2": [270.48492431640625, 109.54039001464844, 0.9974144697189331], "3": [340.9792175292969, 124.08937072753906, 0.8671692609786987], "4": [235.1316375732422, 119.50947570800781, 0.8860008120536804], "5": [388.94305419921875, 238.57098388671875, 0.9946696162223816], "6": [183.31619262695312, 236.52969360351562, 0.9952999353408813], "7": [545.6415405273438, 348.58294677734375, 0.9101310968399048], "8": [106.15087890625, 387.78192138671875, 0.9000682234764099], "9": [569.1611328125, 212.38980102539062, 0.9409399628639221], "10": [147.5296630859375, 356.6722106933594, 0.9105087518692017], "11": [367.5809631347656, 480.0, 0.10996408015489578], "12": [235.55984497070312, 480.0, 0.1101105660200119], "13": [428.71954345703125, 398.0828857421875, 0.0012992072151973844], "14": [258.6093444824219, 382.714599609375, 0.0014148085610941052], "15": [469.0881652832031, 399.07879638671875, 0.0001507636479800567], "16": [286.5373229980469, 383.1121826171875, 0.00015902587620075792]}} +{"t": 30.615744, "tracked": true, "track_id": 1, "bbox": [67.41439819335938, 29.6883487701416, 613.9739990234375, 480.0], "det_conf": 0.908862292766571, "mean_kpt_conf": 0.9451899907805703, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5345743782690592, "right_lift": -0.8674683509914038, "left_bend": 0.6036760032731961, "right_bend": 0.8619974857034632}, "keypoints": {"0": [294.2557067871094, 133.04833984375, 0.9992268085479736], "1": [314.1645202636719, 110.18882751464844, 0.997043788433075], "2": [270.0007019042969, 109.49797058105469, 0.9974839687347412], "3": [339.1993408203125, 125.9912109375, 0.8460701704025269], "4": [234.11708068847656, 124.34225463867188, 0.9079025387763977], "5": [387.0375061035156, 244.3219757080078, 0.9946749210357666], "6": [180.8580322265625, 247.40325927734375, 0.9944585561752319], "7": [549.685791015625, 347.2037658691406, 0.9092077612876892], "8": [91.55482482910156, 403.11962890625, 0.8841699957847595], "9": [581.80810546875, 214.96511840820312, 0.9467211961746216], "10": [153.75599670410156, 359.0374755859375, 0.92013019323349], "11": [360.2198486328125, 480.0, 0.09641274064779282], "12": [229.7965087890625, 480.0, 0.09096646308898926], "13": [429.8734436035156, 397.789794921875, 0.001721410546451807], "14": [272.670654296875, 388.54339599609375, 0.0018637850880622864], "15": [459.4466857910156, 402.42236328125, 0.00019957950280513614], "16": [286.9825439453125, 392.24188232421875, 0.0002059822581941262]}} +{"t": 30.651944, "tracked": true, "track_id": 1, "bbox": [69.25447082519531, 29.56929588317871, 612.9017944335938, 480.0], "det_conf": 0.9127349257469177, "mean_kpt_conf": 0.9473510872233998, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.559535194994769, "right_lift": -0.8852642652574383, "left_bend": 0.6075186140546387, "right_bend": 0.8323431367622431}, "keypoints": {"0": [291.90301513671875, 135.14817810058594, 0.9992859959602356], "1": [313.6180419921875, 111.92080688476562, 0.9975464940071106], "2": [268.2921142578125, 110.33685302734375, 0.9973108768463135], "3": [339.9957580566406, 125.4844970703125, 0.8770034313201904], "4": [233.1642303466797, 121.067626953125, 0.8801079392433167], "5": [384.51959228515625, 238.56109619140625, 0.9947322607040405], "6": [184.92196655273438, 236.95994567871094, 0.9948758482933044], "7": [545.8038330078125, 347.44561767578125, 0.9201751351356506], "8": [105.61297607421875, 387.91925048828125, 0.9009910821914673], "9": [578.61328125, 222.11888122558594, 0.9464049339294434], "10": [151.40623474121094, 359.18670654296875, 0.9124279618263245], "11": [361.62628173828125, 480.0, 0.11463868618011475], "12": [232.36767578125, 480.0, 0.10989540070295334], "13": [427.9424743652344, 398.057861328125, 0.0012672299053519964], "14": [253.9629364013672, 383.9147644042969, 0.0013352533569559455], "15": [474.70648193359375, 400.6244201660156, 0.0001406119845341891], "16": [272.9716796875, 385.2760314941406, 0.00014507236483041197]}} +{"t": 30.685324, "tracked": true, "track_id": 1, "bbox": [66.85218811035156, 29.592370986938477, 618.7787475585938, 480.0], "det_conf": 0.9074167609214783, "mean_kpt_conf": 0.9449896920811046, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5509643035974092, "right_lift": -0.860651620160178, "left_bend": 0.5926512241487686, "right_bend": 0.8422474492691598}, "keypoints": {"0": [293.20703125, 134.46722412109375, 0.9992552399635315], "1": [312.97869873046875, 110.30691528320312, 0.9971062541007996], "2": [268.90460205078125, 110.35066223144531, 0.9975191354751587], "3": [338.4403076171875, 123.66966247558594, 0.8373655080795288], "4": [233.6009063720703, 122.94308471679688, 0.9063427448272705], "5": [385.1795959472656, 243.38131713867188, 0.9947383999824524], "6": [181.96005249023438, 243.28695678710938, 0.9941636919975281], "7": [547.5304565429688, 350.5669860839844, 0.9121170043945312], "8": [90.24391174316406, 398.3076477050781, 0.8855002522468567], "9": [586.8516845703125, 219.9661865234375, 0.9483017325401306], "10": [154.0875244140625, 359.955078125, 0.9224766492843628], "11": [358.3941345214844, 480.0, 0.08672481775283813], "12": [229.68194580078125, 480.0, 0.0806356891989708], "13": [431.5809326171875, 389.6387939453125, 0.0016013067215681076], "14": [273.6062927246094, 379.9430847167969, 0.001729187904857099], "15": [464.1576843261719, 393.0550537109375, 0.0001980599045054987], "16": [286.9471435546875, 386.38092041015625, 0.0002033724740613252]}} +{"t": 30.746539, "tracked": true, "track_id": 1, "bbox": [69.09793853759766, 29.88448143005371, 619.8592529296875, 479.185302734375], "det_conf": 0.9078760147094727, "mean_kpt_conf": 0.9466164870695635, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5849913102742225, "right_lift": -0.893607057453893, "left_bend": 0.6131658973801704, "right_bend": 0.8472273945428999}, "keypoints": {"0": [291.3995361328125, 135.59530639648438, 0.9992905855178833], "1": [313.474609375, 111.20745849609375, 0.9974849224090576], "2": [267.5498046875, 110.41314697265625, 0.9972848892211914], "3": [340.4534912109375, 122.916748046875, 0.8695783019065857], "4": [232.20449829101562, 119.61007690429688, 0.8818224668502808], "5": [386.17620849609375, 237.11941528320312, 0.9955368041992188], "6": [180.97344970703125, 235.5452117919922, 0.9949263334274292], "7": [547.08740234375, 353.182373046875, 0.9276546835899353], "8": [103.12210083007812, 390.5379638671875, 0.8931286334991455], "9": [581.9549560546875, 226.87652587890625, 0.9482774138450623], "10": [148.6240692138672, 357.6834716796875, 0.907796323299408], "11": [363.5523986816406, 480.0, 0.10840440541505814], "12": [231.6645050048828, 480.0, 0.09624052792787552], "13": [439.9522705078125, 388.18365478515625, 0.0012319014640524983], "14": [266.8997802734375, 376.13507080078125, 0.001239047502167523], "15": [484.2452392578125, 388.18463134765625, 0.00014223791367840022], "16": [293.4405212402344, 376.6042175292969, 0.00014226815255824476]}} +{"t": 30.784324, "tracked": true, "track_id": 1, "bbox": [67.64767456054688, 29.446279525756836, 620.843505859375, 479.0323791503906], "det_conf": 0.9105637669563293, "mean_kpt_conf": 0.9488660313866355, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.560101130630011, "right_lift": -0.8852724032773021, "left_bend": 0.6078562038403152, "right_bend": 0.8478641131533793}, "keypoints": {"0": [291.8365478515625, 133.91140747070312, 0.9993113279342651], "1": [313.7892150878906, 110.57632446289062, 0.9976202845573425], "2": [268.2218322753906, 109.43951416015625, 0.9974541068077087], "3": [340.1146240234375, 123.91304016113281, 0.8768627047538757], "4": [233.34927368164062, 120.30679321289062, 0.8872690200805664], "5": [383.1572570800781, 233.4853515625, 0.9948363304138184], "6": [184.08248901367188, 234.85153198242188, 0.9950225353240967], "7": [547.356689453125, 344.50128173828125, 0.9235230088233948], "8": [102.417236328125, 390.30242919921875, 0.9025310277938843], "9": [578.86328125, 223.9654998779297, 0.947825014591217], "10": [151.4203643798828, 356.1166076660156, 0.915270984172821], "11": [361.0166015625, 480.0, 0.1138739362359047], "12": [232.85598754882812, 480.0, 0.10822191834449768], "13": [430.149169921875, 394.46923828125, 0.001291902968659997], "14": [260.47308349609375, 382.350341796875, 0.0013607433065772057], "15": [479.10809326171875, 403.1958312988281, 0.00014248129446059465], "16": [281.03375244140625, 387.589111328125, 0.00014693425328005105]}} +{"t": 30.847231, "tracked": true, "track_id": 1, "bbox": [66.56179809570312, 30.11952018737793, 618.1991577148438, 478.63330078125], "det_conf": 0.9118442535400391, "mean_kpt_conf": 0.9478444131937894, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5866809183854362, "right_lift": -0.8912971466461457, "left_bend": 0.6311743597587315, "right_bend": 0.8466700292067681}, "keypoints": {"0": [292.08154296875, 133.930908203125, 0.9993048906326294], "1": [313.54522705078125, 110.42796325683594, 0.9976217150688171], "2": [268.3423767089844, 109.64295959472656, 0.9972867965698242], "3": [340.215576171875, 123.811767578125, 0.8792120814323425], "4": [233.0447540283203, 121.03805541992188, 0.8736233115196228], "5": [388.40478515625, 237.81202697753906, 0.9951937794685364], "6": [181.16958618164062, 236.24560546875, 0.9951190948486328], "7": [547.8880615234375, 353.3512878417969, 0.9250852465629578], "8": [102.67863464355469, 390.5370178222656, 0.901991069316864], "9": [576.2099609375, 223.56898498535156, 0.9480758309364319], "10": [152.0171356201172, 355.42559814453125, 0.9137747287750244], "11": [365.1765441894531, 480.0, 0.10519159585237503], "12": [230.91650390625, 480.0, 0.09882884472608566], "13": [436.281494140625, 386.26849365234375, 0.0012101047905161977], "14": [254.80938720703125, 373.12298583984375, 0.0012653580633923411], "15": [483.1326904296875, 388.3732604980469, 0.00013988355931360275], "16": [279.31207275390625, 375.7762145996094, 0.00014448784349951893]}} +{"t": 30.881397, "tracked": true, "track_id": 1, "bbox": [66.6806869506836, 29.916126251220703, 613.6026000976562, 478.5154113769531], "det_conf": 0.9089426398277283, "mean_kpt_conf": 0.945175745270469, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.527555197270586, "right_lift": -0.8693668063047426, "left_bend": 0.6048462923068071, "right_bend": 0.8383184593232422}, "keypoints": {"0": [294.2200622558594, 132.99855041503906, 0.9992257356643677], "1": [314.2716064453125, 110.05595397949219, 0.9969876408576965], "2": [270.1169128417969, 109.49797058105469, 0.9975717663764954], "3": [339.6740417480469, 125.46665954589844, 0.8440025448799133], "4": [234.5885772705078, 123.87184143066406, 0.9086175560951233], "5": [387.8120422363281, 243.40737915039062, 0.9944931268692017], "6": [181.2420654296875, 244.58731079101562, 0.9943258166313171], "7": [551.1922607421875, 344.8670349121094, 0.906775951385498], "8": [94.61222839355469, 396.9913635253906, 0.8872028589248657], "9": [581.7752685546875, 212.0600128173828, 0.946262001991272], "10": [158.4142608642578, 358.2258605957031, 0.921468198299408], "11": [358.2571105957031, 480.0, 0.09854832291603088], "12": [227.5164794921875, 480.0, 0.09459792822599411], "13": [430.68109130859375, 397.5041809082031, 0.0017371244030073285], "14": [273.5212097167969, 386.7707824707031, 0.0019438010640442371], "15": [459.6766052246094, 402.8896484375, 0.00020405210671015084], "16": [288.95831298828125, 392.80377197265625, 0.00021502403251361102]}} +{"t": 30.916791, "tracked": true, "track_id": 1, "bbox": [66.47080993652344, 30.1945858001709, 611.6574096679688, 478.9443664550781], "det_conf": 0.9052640795707703, "mean_kpt_conf": 0.94740906086835, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5958480078665747, "right_lift": -0.8946125992998641, "left_bend": 0.6483350372283379, "right_bend": 0.8120882305476107}, "keypoints": {"0": [292.21051025390625, 134.52752685546875, 0.9992966651916504], "1": [313.9579772949219, 110.37358093261719, 0.9975696206092834], "2": [268.99432373046875, 109.76885986328125, 0.9973742961883545], "3": [340.78778076171875, 121.57337951660156, 0.8801437616348267], "4": [234.27407836914062, 118.73135375976562, 0.8807468414306641], "5": [388.9770812988281, 234.66648864746094, 0.995267391204834], "6": [180.73422241210938, 233.6259765625, 0.9952825903892517], "7": [545.42822265625, 350.74346923828125, 0.922440767288208], "8": [103.61355590820312, 388.0273742675781, 0.900480329990387], "9": [567.0931396484375, 226.26022338867188, 0.944896936416626], "10": [150.85594177246094, 361.1522216796875, 0.9080004692077637], "11": [363.9387512207031, 480.0, 0.11691836267709732], "12": [229.5348663330078, 480.0, 0.11054179072380066], "13": [432.0697937011719, 394.279541015625, 0.0012739113299176097], "14": [254.55877685546875, 381.03521728515625, 0.0013261169660836458], "15": [473.1822814941406, 396.94989013671875, 0.0001446727110305801], "16": [280.8096008300781, 383.88037109375, 0.00014825095422565937]}} +{"t": 30.98, "tracked": true, "track_id": 1, "bbox": [64.91777801513672, 29.63671875, 598.46875, 479.3625183105469], "det_conf": 0.9005303978919983, "mean_kpt_conf": 0.9461281028660861, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5657664303158485, "right_lift": -0.8853577102884838, "left_bend": 0.6410139509163068, "right_bend": 0.818190566187804}, "keypoints": {"0": [293.6900939941406, 133.72926330566406, 0.9992691874504089], "1": [315.20220947265625, 111.17742919921875, 0.9972086548805237], "2": [269.79742431640625, 109.50747680664062, 0.9976383447647095], "3": [340.64605712890625, 125.85118103027344, 0.8533317446708679], "4": [233.41360473632812, 121.73336791992188, 0.9024869203567505], "5": [384.4132080078125, 238.08489990234375, 0.9937454462051392], "6": [182.33273315429688, 236.01522827148438, 0.9945735335350037], "7": [539.1888427734375, 344.282470703125, 0.9078064560890198], "8": [105.64324951171875, 382.05975341796875, 0.8987991213798523], "9": [558.534912109375, 223.13565063476562, 0.9445172548294067], "10": [154.2911834716797, 354.45770263671875, 0.9180324673652649], "11": [355.5531005859375, 480.0, 0.11324651539325714], "12": [225.4503173828125, 480.0, 0.1138501837849617], "13": [419.3221740722656, 400.28363037109375, 0.0014232343528419733], "14": [251.54534912109375, 386.01007080078125, 0.0015574040589854121], "15": [461.32208251953125, 412.3803405761719, 0.0001558053190819919], "16": [276.4237060546875, 397.0040588378906, 0.0001627311430638656]}} +{"t": 31.046277, "tracked": true, "track_id": 1, "bbox": [68.73841094970703, 29.38669204711914, 584.9739990234375, 479.7018127441406], "det_conf": 0.9058080911636353, "mean_kpt_conf": 0.943573924628171, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6001639966376613, "right_lift": -0.9015160099277848, "left_bend": 0.6889747388993647, "right_bend": 0.8225099453381208}, "keypoints": {"0": [294.8599548339844, 134.30174255371094, 0.9992637038230896], "1": [316.2592468261719, 111.05715942382812, 0.9972363710403442], "2": [270.7210693359375, 110.06590270996094, 0.9976663589477539], "3": [341.3543701171875, 124.49580383300781, 0.8591210842132568], "4": [233.7276611328125, 121.79263305664062, 0.9025784134864807], "5": [389.6773681640625, 237.50701904296875, 0.9938135147094727], "6": [180.3760986328125, 236.49252319335938, 0.994802713394165], "7": [542.6558837890625, 352.2899169921875, 0.8971503376960754], "8": [107.11018371582031, 389.12347412109375, 0.8889510631561279], "9": [549.1820068359375, 221.9401397705078, 0.9400944709777832], "10": [154.75411987304688, 358.876220703125, 0.908635139465332], "11": [362.85498046875, 480.0, 0.10617881268262863], "12": [229.4347686767578, 480.0, 0.1086578294634819], "13": [412.791259765625, 405.1985168457031, 0.0014362740330398083], "14": [247.3852996826172, 389.701416015625, 0.0015481978189200163], "15": [448.39056396484375, 418.325927734375, 0.0001591917098267004], "16": [279.59991455078125, 402.13568115234375, 0.00016514856542926282]}} +{"t": 31.081002, "tracked": true, "track_id": 1, "bbox": [71.93268585205078, 29.516464233398438, 582.267333984375, 479.15374755859375], "det_conf": 0.9106874465942383, "mean_kpt_conf": 0.9433804262768138, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6630071630150245, "right_lift": -0.9216497116257758, "left_bend": 0.7293387485993413, "right_bend": 0.8695574810479297}, "keypoints": {"0": [294.24932861328125, 134.3927001953125, 0.999138593673706], "1": [316.0202331542969, 111.69456481933594, 0.9971812963485718], "2": [270.7485656738281, 109.90809631347656, 0.9968723654747009], "3": [342.46612548828125, 127.10015869140625, 0.8893465995788574], "4": [234.50340270996094, 122.58828735351562, 0.8699771165847778], "5": [396.923828125, 245.2454071044922, 0.9942185878753662], "6": [177.73388671875, 243.1539764404297, 0.9952265024185181], "7": [533.374267578125, 366.0923767089844, 0.8933889865875244], "8": [113.19827270507812, 396.44189453125, 0.8888086676597595], "9": [533.9659423828125, 229.7532958984375, 0.9397696852684021], "10": [164.6466064453125, 347.2960205078125, 0.9132562875747681], "11": [370.5538024902344, 480.0, 0.12197718024253845], "12": [230.60794067382812, 480.0, 0.12334555387496948], "13": [425.95477294921875, 402.9847412109375, 0.001675095991231501], "14": [256.61376953125, 390.13226318359375, 0.0019068679539486766], "15": [441.40496826171875, 419.9427490234375, 0.0001741063460940495], "16": [284.608642578125, 406.4853210449219, 0.0001939470530487597]}} +{"t": 31.143158, "tracked": true, "track_id": 1, "bbox": [74.18550872802734, 29.889753341674805, 568.174560546875, 479.1556701660156], "det_conf": 0.9162735342979431, "mean_kpt_conf": 0.9417041865262118, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6695257377768801, "right_lift": -0.922329538766723, "left_bend": 0.7674779606094541, "right_bend": 0.8781231964045303}, "keypoints": {"0": [295.76190185546875, 134.84725952148438, 0.9992313385009766], "1": [317.006103515625, 111.32040405273438, 0.996807873249054], "2": [271.70819091796875, 109.75680541992188, 0.9974502921104431], "3": [341.73828125, 124.67414855957031, 0.8357990980148315], "4": [233.020263671875, 120.72343444824219, 0.8924345374107361], "5": [394.15509033203125, 241.7957305908203, 0.9944660067558289], "6": [178.09507751464844, 239.87939453125, 0.9949361085891724], "7": [532.857421875, 366.8175048828125, 0.8988785743713379], "8": [112.22743225097656, 397.1025085449219, 0.8876355886459351], "9": [517.97412109375, 227.90802001953125, 0.9437901377677917], "10": [159.45550537109375, 349.3251953125, 0.9173164963722229], "11": [367.97576904296875, 480.0, 0.12496573477983475], "12": [229.62110900878906, 480.0, 0.12110552936792374], "13": [422.55816650390625, 407.2535705566406, 0.0017235062550753355], "14": [254.33811950683594, 391.93280029296875, 0.0018415816593915224], "15": [439.74853515625, 423.9905090332031, 0.00016425279318355024], "16": [277.16436767578125, 407.0513916015625, 0.0001711679360596463]}} +{"t": 31.212785, "tracked": true, "track_id": 1, "bbox": [73.5252914428711, 30.03696060180664, 559.8911743164062, 479.4967956542969], "det_conf": 0.9083812832832336, "mean_kpt_conf": 0.9406957734714855, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7117234479894387, "right_lift": -0.9316801736130295, "left_bend": 0.8122599264047788, "right_bend": 0.8749960470932964}, "keypoints": {"0": [294.8927917480469, 135.1293182373047, 0.9991089701652527], "1": [317.6602478027344, 112.42543029785156, 0.9968574047088623], "2": [271.6988830566406, 109.42355346679688, 0.9970723390579224], "3": [343.8806457519531, 127.411376953125, 0.881555438041687], "4": [234.31698608398438, 120.26078796386719, 0.8790672421455383], "5": [399.7702331542969, 245.23443603515625, 0.9933813810348511], "6": [175.82276916503906, 240.83551025390625, 0.9955604076385498], "7": [524.4603271484375, 371.5688781738281, 0.8674575090408325], "8": [114.76780700683594, 397.4193115234375, 0.8928899168968201], "9": [497.1064147949219, 228.6013641357422, 0.9294751286506653], "10": [160.18191528320312, 350.06597900390625, 0.9152277708053589], "11": [371.8302001953125, 480.0, 0.1151348128914833], "12": [228.85073852539062, 480.0, 0.12918926775455475], "13": [414.3136901855469, 409.591552734375, 0.0018064083997160196], "14": [245.72679138183594, 391.8485412597656, 0.0021968118380755186], "15": [417.2201843261719, 433.6791076660156, 0.000191265091416426], "16": [274.2713928222656, 413.26422119140625, 0.00022231799084693193]}} +{"t": 31.277048, "tracked": true, "track_id": 1, "bbox": [70.19560241699219, 30.381132125854492, 555.8617553710938, 479.1957702636719], "det_conf": 0.9108836650848389, "mean_kpt_conf": 0.937296910719438, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7264242771822699, "right_lift": -0.9168915900030324, "left_bend": 0.8753996938731945, "right_bend": 0.845287156922119}, "keypoints": {"0": [297.0781555175781, 133.62350463867188, 0.9992449283599854], "1": [318.1630859375, 110.38743591308594, 0.9965277314186096], "2": [273.22772216796875, 108.88467407226562, 0.997734546661377], "3": [342.2804260253906, 124.41642761230469, 0.8181846141815186], "4": [233.86700439453125, 120.75115966796875, 0.907417356967926], "5": [402.44647216796875, 241.19105529785156, 0.9938387274742126], "6": [175.0043182373047, 235.0416717529297, 0.9943286776542664], "7": [531.0344848632812, 377.1094665527344, 0.8774157762527466], "8": [105.39111328125, 394.95635986328125, 0.8707537055015564], "9": [476.0398864746094, 233.72760009765625, 0.9392225742340088], "10": [160.0481719970703, 351.28125, 0.9155973792076111], "11": [372.1272888183594, 480.0, 0.09448680281639099], "12": [227.15267944335938, 480.0, 0.09695015102624893], "13": [405.80743408203125, 407.46533203125, 0.0018295967020094395], "14": [237.64468383789062, 386.41094970703125, 0.0018926789052784443], "15": [414.33929443359375, 444.3851318359375, 0.00017544403090141714], "16": [268.4039611816406, 422.93292236328125, 0.00017573217337485403]}} +{"t": 31.343675, "tracked": true, "track_id": 1, "bbox": [67.09022521972656, 28.906641006469727, 557.1084594726562, 479.58612060546875], "det_conf": 0.9259936809539795, "mean_kpt_conf": 0.9331082972613248, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6809149032246813, "right_lift": -0.8909513354823727, "left_bend": 0.841972080449827, "right_bend": 0.8294323116267559}, "keypoints": {"0": [298.2566223144531, 132.42752075195312, 0.9992400407791138], "1": [317.641357421875, 110.96461486816406, 0.9958100318908691], "2": [274.3265075683594, 108.77490234375, 0.9980216026306152], "3": [339.1601257324219, 129.1683807373047, 0.7397704124450684], "4": [234.05906677246094, 124.63296508789062, 0.9252846837043762], "5": [396.29681396484375, 246.3159942626953, 0.992729127407074], "6": [175.9449005126953, 236.90313720703125, 0.9922886490821838], "7": [534.0762329101562, 374.41656494140625, 0.8771955370903015], "8": [94.20516967773438, 397.2781982421875, 0.86746746301651], "9": [484.1303405761719, 226.34564208984375, 0.9464957118034363], "10": [166.93727111816406, 351.31512451171875, 0.9298880100250244], "11": [360.3946533203125, 480.0, 0.07264168560504913], "12": [219.92428588867188, 477.4957275390625, 0.07340795546770096], "13": [394.1448974609375, 406.20501708984375, 0.002026392612606287], "14": [230.81246948242188, 382.06524658203125, 0.0020965621806681156], "15": [404.2601318359375, 453.5679931640625, 0.00020070577738806605], "16": [244.4437255859375, 429.1799621582031, 0.00019410984532441944]}} +{"t": 31.408571, "tracked": true, "track_id": 1, "bbox": [70.448486328125, 30.054561614990234, 557.2958984375, 479.3111572265625], "det_conf": 0.9279612302780151, "mean_kpt_conf": 0.9391028122468428, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.666572361571652, "right_lift": -0.9143884890532733, "left_bend": 0.87432927998168, "right_bend": 0.8274019792056914}, "keypoints": {"0": [296.02764892578125, 134.03976440429688, 0.9993195533752441], "1": [318.05877685546875, 111.86241149902344, 0.9967537522315979], "2": [273.32928466796875, 108.77252197265625, 0.997984766960144], "3": [342.0188903808594, 127.36785888671875, 0.8214589953422546], "4": [234.25234985351562, 120.06510925292969, 0.9061022996902466], "5": [400.37237548828125, 240.95074462890625, 0.9938219785690308], "6": [173.18130493164062, 234.9938507080078, 0.9941774606704712], "7": [543.9490966796875, 369.33697509765625, 0.8836218118667603], "8": [102.63311767578125, 394.3377685546875, 0.871751070022583], "9": [476.52001953125, 228.45150756835938, 0.9466219544410706], "10": [161.44752502441406, 353.0768127441406, 0.9185172915458679], "11": [362.7099609375, 480.0, 0.0858827754855156], "12": [218.29766845703125, 480.0, 0.08701890707015991], "13": [394.4178771972656, 410.5989990234375, 0.0015490236692130566], "14": [231.09402465820312, 384.931884765625, 0.0015820370754227042], "15": [407.0128173828125, 452.56207275390625, 0.0001493722083978355], "16": [261.9292297363281, 419.3313903808594, 0.00014760774502065033]}} +{"t": 31.47362, "tracked": true, "track_id": 1, "bbox": [71.18399810791016, 29.582014083862305, 557.3656616210938, 479.6861267089844], "det_conf": 0.9249910712242126, "mean_kpt_conf": 0.9360224983908914, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6642542847369401, "right_lift": -0.9269097765872532, "left_bend": 0.8522290657529642, "right_bend": 0.8833687706535278}, "keypoints": {"0": [293.1629638671875, 133.19619750976562, 0.9989878535270691], "1": [316.46588134765625, 111.31503295898438, 0.9968776702880859], "2": [271.4073791503906, 108.01556396484375, 0.9964905381202698], "3": [342.83270263671875, 127.45782470703125, 0.9049714803695679], "4": [235.92433166503906, 119.45590209960938, 0.8482799530029297], "5": [399.3090515136719, 240.24392700195312, 0.9930363297462463], "6": [177.83518981933594, 240.35116577148438, 0.9943705201148987], "7": [541.2542724609375, 366.3802185058594, 0.8668125867843628], "8": [112.94210815429688, 400.6297607421875, 0.8551760315895081], "9": [487.67108154296875, 232.25038146972656, 0.9382984638214111], "10": [163.44662475585938, 346.53753662109375, 0.9029460549354553], "11": [369.4844970703125, 480.0, 0.09412777423858643], "12": [230.9369659423828, 480.0, 0.09540611505508423], "13": [405.9490051269531, 402.166015625, 0.0019749468192458153], "14": [259.85498046875, 381.8885498046875, 0.002158737275749445], "15": [414.47589111328125, 437.3081359863281, 0.00021471406216733158], "16": [295.1571960449219, 404.69927978515625, 0.0002364787069382146]}} +{"t": 31.508369, "tracked": true, "track_id": 1, "bbox": [71.78296661376953, 30.023115158081055, 556.1912841796875, 479.76580810546875], "det_conf": 0.9323340058326721, "mean_kpt_conf": 0.9336768713864413, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6629375607315254, "right_lift": -0.9380986305754265, "left_bend": 0.8509460433891634, "right_bend": 0.8806760813807659}, "keypoints": {"0": [294.3312683105469, 134.021728515625, 0.9989946484565735], "1": [317.6839904785156, 111.37226867675781, 0.9964663982391357], "2": [272.0154113769531, 107.96286010742188, 0.9968011379241943], "3": [342.98651123046875, 125.8323974609375, 0.8753988742828369], "4": [234.44882202148438, 117.63320922851562, 0.8727474808692932], "5": [399.695068359375, 237.2749481201172, 0.9929550290107727], "6": [175.74746704101562, 239.66358947753906, 0.9943416118621826], "7": [541.9160766601562, 363.2090148925781, 0.8598635792732239], "8": [115.35868835449219, 403.21966552734375, 0.8511598110198975], "9": [489.0023193359375, 229.87692260742188, 0.9342178106307983], "10": [161.90530395507812, 351.05694580078125, 0.8974992036819458], "11": [371.9910888671875, 480.0, 0.08922369033098221], "12": [232.20924377441406, 480.0, 0.09113694727420807], "13": [398.9285888671875, 401.372802734375, 0.001919094007462263], "14": [253.1492462158203, 382.13812255859375, 0.0020583244040608406], "15": [400.6104736328125, 438.8059387207031, 0.00021104859479237348], "16": [289.4520263671875, 405.77728271484375, 0.00022493219876196235]}} +{"t": 31.570901, "tracked": true, "track_id": 1, "bbox": [70.23400115966797, 29.890316009521484, 557.9178466796875, 479.8872375488281], "det_conf": 0.9159535765647888, "mean_kpt_conf": 0.9382708506150679, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6724704239560384, "right_lift": -0.9251381092263148, "left_bend": 0.8061734360020902, "right_bend": 0.8704765180638147}, "keypoints": {"0": [292.4169006347656, 132.11245727539062, 0.9990240335464478], "1": [315.7550964355469, 110.60321044921875, 0.9971585273742676], "2": [270.50531005859375, 106.742919921875, 0.9964304566383362], "3": [343.22564697265625, 127.93621826171875, 0.9169508218765259], "4": [235.5366668701172, 118.82173156738281, 0.8430725932121277], "5": [400.4971618652344, 245.6737060546875, 0.9935060739517212], "6": [176.7563934326172, 242.3089141845703, 0.9951227307319641], "7": [532.7078857421875, 365.79925537109375, 0.8694466948509216], "8": [113.08792114257812, 397.4653015136719, 0.8742031455039978], "9": [499.7528076171875, 221.36778259277344, 0.9326553344726562], "10": [161.74525451660156, 349.858154296875, 0.903408944606781], "11": [371.6591491699219, 480.0, 0.10679766535758972], "12": [229.7274169921875, 480.0, 0.11297265440225601], "13": [416.37933349609375, 406.1638488769531, 0.0017919024685397744], "14": [255.8378143310547, 386.839599609375, 0.00208555837161839], "15": [421.90081787109375, 429.3563232421875, 0.00019798117864411324], "16": [287.0644226074219, 403.36248779296875, 0.00022872160479892045]}} +{"t": 31.606073, "tracked": true, "track_id": 1, "bbox": [70.13036346435547, 30.343154907226562, 556.3969116210938, 479.74273681640625], "det_conf": 0.9278256297111511, "mean_kpt_conf": 0.941310232335871, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6522065568504328, "right_lift": -0.9275530724352711, "left_bend": 0.7898215959515852, "right_bend": 0.8571068340011786}, "keypoints": {"0": [292.89251708984375, 132.06517028808594, 0.9990701079368591], "1": [316.7527160644531, 111.21665954589844, 0.9971139430999756], "2": [270.9632263183594, 106.4749755859375, 0.9966917037963867], "3": [343.3437805175781, 129.36285400390625, 0.9062603116035461], "4": [234.93087768554688, 118.35221862792969, 0.8585484027862549], "5": [397.0272216796875, 241.8950958251953, 0.9936684966087341], "6": [176.72100830078125, 240.3097686767578, 0.995213508605957], "7": [534.7388916015625, 360.3800048828125, 0.8824042081832886], "8": [112.78350830078125, 399.0113525390625, 0.882790207862854], "9": [507.2156982421875, 224.61061096191406, 0.9366862773895264], "10": [161.1761474609375, 354.92218017578125, 0.9059653878211975], "11": [371.48760986328125, 480.0, 0.11182034015655518], "12": [231.790283203125, 480.0, 0.11663755029439926], "13": [412.8193664550781, 403.767333984375, 0.0018165722722187638], "14": [254.17147827148438, 384.76507568359375, 0.0020524433348327875], "15": [423.2525634765625, 433.36199951171875, 0.00019805916235782206], "16": [285.2400207519531, 403.3714904785156, 0.0002223103365395218]}} +{"t": 31.642483, "tracked": true, "track_id": 1, "bbox": [72.00237274169922, 29.97507095336914, 558.4051513671875, 479.6624755859375], "det_conf": 0.9196778535842896, "mean_kpt_conf": 0.9430544430559332, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6574608084188918, "right_lift": -0.9294380718342772, "left_bend": 0.7741139493776746, "right_bend": 0.8740324642631746}, "keypoints": {"0": [293.8711853027344, 131.89642333984375, 0.9991090893745422], "1": [316.7271423339844, 110.6236572265625, 0.9971132278442383], "2": [271.27545166015625, 107.11282348632812, 0.996915340423584], "3": [343.1639404296875, 127.96823120117188, 0.9009187817573547], "4": [234.96829223632812, 119.8770751953125, 0.870699942111969], "5": [400.0510559082031, 242.30372619628906, 0.9940388202667236], "6": [176.01516723632812, 241.85707092285156, 0.9957846999168396], "7": [535.6416015625, 360.614013671875, 0.8820884227752686], "8": [114.20445251464844, 397.5552673339844, 0.8944792747497559], "9": [515.870849609375, 223.9889373779297, 0.9324544072151184], "10": [160.1974639892578, 350.468505859375, 0.9099968671798706], "11": [375.101806640625, 480.0, 0.1283053308725357], "12": [232.51101684570312, 480.0, 0.13865944743156433], "13": [420.42791748046875, 408.15380859375, 0.0017480485839769244], "14": [253.99000549316406, 392.01898193359375, 0.0020828181877732277], "15": [426.71966552734375, 430.07281494140625, 0.000180989591171965], "16": [282.8920593261719, 406.52874755859375, 0.00020960850815754384]}} +{"t": 31.703001, "tracked": true, "track_id": 1, "bbox": [70.8212661743164, 29.874094009399414, 567.477294921875, 479.8296813964844], "det_conf": 0.9082882404327393, "mean_kpt_conf": 0.94415790384466, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6027043994273182, "right_lift": -0.8990037108158206, "left_bend": 0.7141816651494017, "right_bend": 0.8250022956905921}, "keypoints": {"0": [293.3299560546875, 131.42138671875, 0.9991914629936218], "1": [315.9121398925781, 109.80084228515625, 0.9971869587898254], "2": [270.31884765625, 106.81442260742188, 0.997432291507721], "3": [341.824951171875, 126.07756042480469, 0.8762927055358887], "4": [234.19699096679688, 118.98654174804688, 0.8957195281982422], "5": [389.9763488769531, 236.28477478027344, 0.9932643175125122], "6": [178.9783477783203, 234.90444946289062, 0.9948194622993469], "7": [535.99755859375, 346.5749206542969, 0.8896247744560242], "8": [104.66928100585938, 387.4458312988281, 0.8921360373497009], "9": [532.701171875, 219.74928283691406, 0.9369062781333923], "10": [159.3961639404297, 352.5435791015625, 0.9131631255149841], "11": [363.3403015136719, 480.0, 0.09975474327802658], "12": [228.22311401367188, 480.0, 0.10662099719047546], "13": [412.25146484375, 396.9085693359375, 0.0015351313631981611], "14": [245.7445526123047, 380.59027099609375, 0.001732186647132039], "15": [439.45947265625, 418.5350341796875, 0.00017958293028641492], "16": [272.025390625, 396.1313781738281, 0.00019392023386899382]}} +{"t": 31.737324, "tracked": true, "track_id": 1, "bbox": [68.49787902832031, 29.6563663482666, 573.1193237304688, 479.789794921875], "det_conf": 0.9095962047576904, "mean_kpt_conf": 0.9437416250055487, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6063450920872845, "right_lift": -0.9070104984386002, "left_bend": 0.715537979083158, "right_bend": 0.8167807144141118}, "keypoints": {"0": [292.6296691894531, 131.0689697265625, 0.9992135763168335], "1": [315.4305419921875, 109.9100341796875, 0.9972556233406067], "2": [269.98486328125, 106.49557495117188, 0.9974465370178223], "3": [341.32269287109375, 127.31149291992188, 0.8803235292434692], "4": [234.11822509765625, 119.084716796875, 0.8915148377418518], "5": [390.7044372558594, 239.44012451171875, 0.9938703775405884], "6": [176.92710876464844, 235.10906982421875, 0.9946138262748718], "7": [540.9324951171875, 353.98974609375, 0.896199643611908], "8": [104.77557373046875, 390.51385498046875, 0.8829519748687744], "9": [537.4912109375, 219.99319458007812, 0.9409950971603394], "10": [161.63870239257812, 354.82159423828125, 0.9067728519439697], "11": [360.2806701660156, 480.0, 0.10019852221012115], "12": [223.70782470703125, 480.0, 0.10114675015211105], "13": [410.70379638671875, 401.8643798828125, 0.0015102560864761472], "14": [244.25990295410156, 382.96453857421875, 0.0016186475986614823], "15": [440.064208984375, 424.08135986328125, 0.00017174880485981703], "16": [274.3270263671875, 399.78875732421875, 0.00017897145880851895]}} +{"t": 31.77213, "tracked": true, "track_id": 1, "bbox": [67.2286148071289, 29.301746368408203, 579.9906616210938, 480.0], "det_conf": 0.9028612971305847, "mean_kpt_conf": 0.9471481225707314, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6308718741168665, "right_lift": -0.9261899334618625, "left_bend": 0.7129271340128436, "right_bend": 0.8358737932805976}, "keypoints": {"0": [292.607177734375, 129.74746704101562, 0.9993305206298828], "1": [314.60833740234375, 108.36073303222656, 0.9973812699317932], "2": [269.45947265625, 105.48602294921875, 0.9974967837333679], "3": [340.404296875, 124.59921264648438, 0.8580172657966614], "4": [232.14181518554688, 117.94034576416016, 0.8804868459701538], "5": [394.82073974609375, 234.3666534423828, 0.9948257803916931], "6": [178.4940643310547, 234.4437255859375, 0.9958017468452454], "7": [536.5585327148438, 349.6133117675781, 0.9214496612548828], "8": [117.16900634765625, 385.08038330078125, 0.9165083765983582], "9": [538.1554565429688, 233.44769287109375, 0.9426136016845703], "10": [150.93927001953125, 358.40472412109375, 0.9147174954414368], "11": [376.02239990234375, 480.0, 0.1656528264284134], "12": [233.47657775878906, 480.0, 0.16840700805187225], "13": [433.0506286621094, 403.842041015625, 0.0013958539348095655], "14": [235.010986328125, 389.931884765625, 0.0014721782645210624], "15": [466.6075439453125, 422.7126159667969, 0.00012865786266047508], "16": [260.3006286621094, 403.415283203125, 0.00013340156874619424]}} +{"t": 31.837607, "tracked": true, "track_id": 1, "bbox": [67.20012664794922, 28.47879409790039, 591.05517578125, 480.0], "det_conf": 0.9039067625999451, "mean_kpt_conf": 0.9473236745054071, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6203752764601795, "right_lift": -0.9253067358377614, "left_bend": 0.6875983351019438, "right_bend": 0.8266531084527879}, "keypoints": {"0": [292.3131103515625, 130.95816040039062, 0.9993813037872314], "1": [314.43585205078125, 109.38329315185547, 0.9973888993263245], "2": [268.79290771484375, 106.02232360839844, 0.9976515173912048], "3": [339.6241455078125, 125.69530487060547, 0.8330212235450745], "4": [230.21826171875, 117.92233276367188, 0.8867133259773254], "5": [389.24066162109375, 236.68020629882812, 0.9951590895652771], "6": [176.73208618164062, 235.5185546875, 0.995456337928772], "7": [534.914306640625, 351.90618896484375, 0.9329759478569031], "8": [114.16925048828125, 388.1737060546875, 0.9135939478874207], "9": [544.2926025390625, 234.72695922851562, 0.951066255569458], "10": [152.7165985107422, 359.637451171875, 0.9181525707244873], "11": [370.44866943359375, 480.0, 0.15949754416942596], "12": [229.80152893066406, 480.0, 0.15007945895195007], "13": [436.703125, 402.75384521484375, 0.00130027299746871], "14": [238.00814819335938, 389.0322265625, 0.0012720506638288498], "15": [481.0694580078125, 420.0851745605469, 0.00012042000889778137], "16": [265.342041015625, 400.7019958496094, 0.00011744318180717528]}} +{"t": 31.899023, "tracked": true, "track_id": 1, "bbox": [66.65701293945312, 27.71241569519043, 601.2232666015625, 480.0], "det_conf": 0.9043758511543274, "mean_kpt_conf": 0.946637749671936, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5942712444112614, "right_lift": -0.8979470626578154, "left_bend": 0.6465547036606704, "right_bend": 0.8177216928277854}, "keypoints": {"0": [292.67333984375, 131.76158142089844, 0.9992719292640686], "1": [315.1371765136719, 109.64962768554688, 0.9973210692405701], "2": [269.68292236328125, 106.52194213867188, 0.9973906874656677], "3": [340.1944580078125, 125.01203918457031, 0.8625012040138245], "4": [233.59214782714844, 117.13742065429688, 0.892173171043396], "5": [381.4154052734375, 235.71873474121094, 0.9946936964988708], "6": [181.43093872070312, 232.71954345703125, 0.9946238994598389], "7": [537.7820434570312, 351.258056640625, 0.9220088720321655], "8": [103.40275573730469, 391.921142578125, 0.8931329846382141], "9": [559.8618774414062, 227.0621795654297, 0.9487797021865845], "10": [154.7723846435547, 360.9581604003906, 0.9111180305480957], "11": [358.5593566894531, 480.0, 0.10138927400112152], "12": [229.89944458007812, 480.0, 0.09374494105577469], "13": [423.3349609375, 390.526123046875, 0.0013654076028615236], "14": [256.8069763183594, 375.0758056640625, 0.0013629054883494973], "15": [471.2697448730469, 405.6087951660156, 0.00015532338875345886], "16": [284.5716552734375, 385.031494140625, 0.0001537543284939602]}} +{"t": 31.934824, "tracked": true, "track_id": 1, "bbox": [65.4947738647461, 27.96179962158203, 604.4312133789062, 479.59619140625], "det_conf": 0.9062305092811584, "mean_kpt_conf": 0.9490973570130088, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6221857952911446, "right_lift": -0.8956856081318619, "left_bend": 0.6566199593228985, "right_bend": 0.8274717380249548}, "keypoints": {"0": [292.01092529296875, 131.55197143554688, 0.9993509650230408], "1": [314.2351989746094, 109.34028625488281, 0.9976885318756104], "2": [268.62969970703125, 106.69619750976562, 0.9975175857543945], "3": [340.3439025878906, 125.55717468261719, 0.8753199577331543], "4": [232.6881103515625, 118.64138793945312, 0.8813039660453796], "5": [386.4266052246094, 239.1138153076172, 0.9950299263000488], "6": [180.86965942382812, 231.84893798828125, 0.9950242638587952], "7": [540.5094604492188, 361.5711975097656, 0.9245295524597168], "8": [101.5640869140625, 391.58538818359375, 0.906477689743042], "9": [564.9021606445312, 227.137939453125, 0.9490281939506531], "10": [156.9732208251953, 356.2293701171875, 0.9188002943992615], "11": [363.3758544921875, 480.0, 0.1014837846159935], "12": [229.00738525390625, 480.0, 0.09734132140874863], "13": [429.3260192871094, 389.78369140625, 0.0012246140977367759], "14": [242.70111083984375, 372.1246337890625, 0.0012768830638378859], "15": [477.5012512207031, 402.3400573730469, 0.00013516303442884237], "16": [260.8311462402344, 384.207275390625, 0.0001385664800181985]}} +{"t": 31.970441, "tracked": true, "track_id": 1, "bbox": [65.1944580078125, 27.87742042541504, 607.2090454101562, 479.5289001464844], "det_conf": 0.9019717574119568, "mean_kpt_conf": 0.9487179517745972, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6151700975683821, "right_lift": -0.9047797005252076, "left_bend": 0.6477340732753241, "right_bend": 0.8336573862544387}, "keypoints": {"0": [292.0368957519531, 131.22647094726562, 0.9992842078208923], "1": [314.7198486328125, 108.47190856933594, 0.9976152181625366], "2": [269.0035705566406, 106.43545532226562, 0.9972406625747681], "3": [341.1875305175781, 122.77264404296875, 0.8844134211540222], "4": [234.1562957763672, 116.93887329101562, 0.8764182925224304], "5": [385.4000549316406, 231.88075256347656, 0.995080828666687], "6": [182.32818603515625, 230.0062255859375, 0.9949942231178284], "7": [540.27099609375, 352.7237854003906, 0.9282486438751221], "8": [105.87057495117188, 392.4400329589844, 0.903046727180481], "9": [565.5143432617188, 227.21588134765625, 0.9481719136238098], "10": [156.6626739501953, 357.07025146484375, 0.911383330821991], "11": [363.2731628417969, 480.0, 0.11475770175457001], "12": [231.43621826171875, 480.0, 0.10724083334207535], "13": [427.84173583984375, 391.3812255859375, 0.0013403280172497034], "14": [249.2102508544922, 377.1971435546875, 0.0013572856551036239], "15": [474.1832275390625, 406.1693420410156, 0.00014756129530724138], "16": [271.5179138183594, 388.6148681640625, 0.00014857827045489103]}} +{"t": 32.0344, "tracked": true, "track_id": 1, "bbox": [65.28278350830078, 27.16234588623047, 613.8042602539062, 479.8401794433594], "det_conf": 0.9055780172348022, "mean_kpt_conf": 0.9495797861706127, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6068953110124458, "right_lift": -0.8949494252249394, "left_bend": 0.6236940653129747, "right_bend": 0.8223362862117378}, "keypoints": {"0": [292.7547302246094, 131.684326171875, 0.9993109703063965], "1": [315.22296142578125, 108.858642578125, 0.9976069927215576], "2": [269.2442626953125, 106.53640747070312, 0.997373104095459], "3": [341.36328125, 123.497314453125, 0.8731175065040588], "4": [233.4765167236328, 117.14254760742188, 0.8855270147323608], "5": [382.81231689453125, 235.04307556152344, 0.9947956204414368], "6": [182.3826446533203, 231.07321166992188, 0.9949157238006592], "7": [537.8435668945312, 353.4249267578125, 0.9267067909240723], "8": [103.28781127929688, 389.726318359375, 0.9058735370635986], "9": [570.8192749023438, 231.21507263183594, 0.949974775314331], "10": [161.2167510986328, 354.1961669921875, 0.9201756119728088], "11": [361.3575134277344, 480.0, 0.10699740052223206], "12": [231.1676788330078, 480.0, 0.10175862163305283], "13": [430.3353271484375, 390.2777404785156, 0.0012496992712840438], "14": [254.20327758789062, 376.6881103515625, 0.0013028379762545228], "15": [482.21392822265625, 403.5708312988281, 0.00013838097220286727], "16": [278.15277099609375, 387.8167724609375, 0.00014165035099722445]}} +{"t": 32.100527, "tracked": true, "track_id": 1, "bbox": [66.00047302246094, 27.605144500732422, 618.377197265625, 479.1340637207031], "det_conf": 0.90554279088974, "mean_kpt_conf": 0.9512092579494823, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6100644688589933, "right_lift": -0.8899978627621233, "left_bend": 0.6230371492172824, "right_bend": 0.8266490837343182}, "keypoints": {"0": [293.7514343261719, 131.03240966796875, 0.9993859529495239], "1": [315.5974426269531, 107.89315795898438, 0.9977564215660095], "2": [270.324462890625, 106.08602905273438, 0.9975243210792542], "3": [341.3315124511719, 121.51715087890625, 0.8667970895767212], "4": [234.64492797851562, 116.19424438476562, 0.8825545907020569], "5": [384.1961669921875, 232.6148681640625, 0.9954858422279358], "6": [184.098876953125, 229.14761352539062, 0.9951370358467102], "7": [541.509521484375, 353.7369384765625, 0.9386947154998779], "8": [102.24693298339844, 388.91448974609375, 0.9134992361068726], "9": [574.135009765625, 235.67306518554688, 0.9538426399230957], "10": [154.80186462402344, 356.494140625, 0.9226239919662476], "11": [364.1741943359375, 480.0, 0.12223046272993088], "12": [233.38912963867188, 480.0, 0.11151167005300522], "13": [435.0538635253906, 394.4416198730469, 0.0011792617151513696], "14": [252.73770141601562, 380.82440185546875, 0.001173454918898642], "15": [488.74560546875, 406.1373596191406, 0.00012139756290707737], "16": [271.49566650390625, 390.61767578125, 0.00011990152415819466]}} +{"t": 32.164698, "tracked": true, "track_id": 1, "bbox": [67.79354095458984, 27.575302124023438, 617.56591796875, 478.4955749511719], "det_conf": 0.9081946611404419, "mean_kpt_conf": 0.9460555423389782, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.595607412859964, "right_lift": -0.8998448121904642, "left_bend": 0.6275719070178489, "right_bend": 0.84397527474667}, "keypoints": {"0": [294.13677978515625, 132.64947509765625, 0.9993422627449036], "1": [316.5657043457031, 109.13304138183594, 0.997314989566803], "2": [270.8194274902344, 106.36563110351562, 0.9976167678833008], "3": [341.55938720703125, 122.35476684570312, 0.8344699144363403], "4": [233.70718383789062, 114.784912109375, 0.8994511365890503], "5": [381.86639404296875, 235.84368896484375, 0.995006799697876], "6": [181.62371826171875, 232.077880859375, 0.9945250749588013], "7": [542.0728759765625, 354.63250732421875, 0.926659882068634], "8": [103.90151977539062, 392.4086608886719, 0.8922857642173767], "9": [571.8473510742188, 231.4937744140625, 0.9525729417800903], "10": [156.3701629638672, 354.21343994140625, 0.9173654317855835], "11": [359.4740295410156, 480.0, 0.0954413115978241], "12": [230.26205444335938, 480.0, 0.08513082563877106], "13": [430.02984619140625, 388.67822265625, 0.001240090699866414], "14": [260.4190368652344, 374.5904541015625, 0.0012102487962692976], "15": [482.6327819824219, 402.3743896484375, 0.00013628821761813015], "16": [289.2011413574219, 383.9327697753906, 0.00013121659867465496]}} +{"t": 32.201405, "tracked": true, "track_id": 1, "bbox": [66.5326156616211, 27.80746078491211, 614.7846069335938, 478.4286193847656], "det_conf": 0.9028711318969727, "mean_kpt_conf": 0.9473276951096274, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.5997618581488598, "right_lift": -0.888976583956016, "left_bend": 0.6261600839737926, "right_bend": 0.8406873307991978}, "keypoints": {"0": [293.6813049316406, 131.77365112304688, 0.9992673993110657], "1": [316.4039001464844, 109.210693359375, 0.9973567724227905], "2": [270.1519775390625, 106.5308837890625, 0.997340738773346], "3": [342.4027099609375, 124.650146484375, 0.8652185797691345], "4": [234.26953125, 117.4588623046875, 0.8916822075843811], "5": [381.6058654785156, 238.21957397460938, 0.9946387410163879], "6": [182.53665161132812, 233.00048828125, 0.9947848916053772], "7": [538.7503662109375, 356.0048828125, 0.9188362956047058], "8": [100.90237426757812, 391.46875, 0.8949971795082092], "9": [571.309326171875, 226.80252075195312, 0.9484618306159973], "10": [160.4078826904297, 351.22796630859375, 0.9180200099945068], "11": [358.97705078125, 480.0, 0.09331272542476654], "12": [231.7088623046875, 480.0, 0.08790203183889389], "13": [431.9686584472656, 387.242431640625, 0.0012574795400723815], "14": [271.1412353515625, 372.7331848144531, 0.0013290655333548784], "15": [484.379150390625, 395.92449951171875, 0.00014881974493619055], "16": [301.9799499511719, 379.1671447753906, 0.00015417243412230164]}} +{"t": 32.262684, "tracked": true, "track_id": 1, "bbox": [65.7735824584961, 27.015438079833984, 614.116943359375, 478.4649353027344], "det_conf": 0.9056281447410583, "mean_kpt_conf": 0.9488112492994829, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6056153565491014, "right_lift": -0.8922733306847104, "left_bend": 0.6225853547442319, "right_bend": 0.843906352866362}, "keypoints": {"0": [293.7723693847656, 131.12826538085938, 0.9992734789848328], "1": [316.31231689453125, 108.95294189453125, 0.9975042939186096], "2": [270.6698303222656, 106.18276977539062, 0.9971864819526672], "3": [342.27783203125, 124.49754333496094, 0.8776630759239197], "4": [235.0132598876953, 117.241943359375, 0.8840803503990173], "5": [384.33612060546875, 236.66136169433594, 0.9952675104141235], "6": [181.04327392578125, 233.97589111328125, 0.9951366782188416], "7": [537.8978881835938, 353.53033447265625, 0.9293675422668457], "8": [101.1212158203125, 391.9227600097656, 0.8992713093757629], "9": [570.43603515625, 233.834228515625, 0.9485484957695007], "10": [154.9795684814453, 354.12176513671875, 0.9136245250701904], "11": [364.3435974121094, 480.0, 0.11365563422441483], "12": [233.3805694580078, 480.0, 0.10337964445352554], "13": [438.9546203613281, 389.57928466796875, 0.0013018152676522732], "14": [268.5956115722656, 377.6127624511719, 0.0013136932393535972], "15": [488.02947998046875, 398.34002685546875, 0.00014406493573915213], "16": [298.5378112792969, 382.3341979980469, 0.00014531920896843076]}} +{"t": 32.332847, "tracked": true, "track_id": 1, "bbox": [65.2386245727539, 26.889448165893555, 606.0302734375, 478.412353515625], "det_conf": 0.902970552444458, "mean_kpt_conf": 0.9446949146010659, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.627552494039223, "right_lift": -0.8991838475855577, "left_bend": 0.6611642022728718, "right_bend": 0.8443432036742088}, "keypoints": {"0": [294.4389343261719, 132.2886199951172, 0.9993100166320801], "1": [316.3557434082031, 109.05075073242188, 0.9972512125968933], "2": [271.48602294921875, 106.82957458496094, 0.997596800327301], "3": [341.09698486328125, 122.20431518554688, 0.8404321670532227], "4": [235.01559448242188, 115.79280090332031, 0.900174081325531], "5": [384.13214111328125, 236.10435485839844, 0.994783341884613], "6": [179.6497802734375, 231.09347534179688, 0.9946305751800537], "7": [537.365478515625, 359.61468505859375, 0.9181549549102783], "8": [101.13705444335938, 392.4327087402344, 0.888700544834137], "9": [559.6663818359375, 231.3104248046875, 0.9475426077842712], "10": [156.70474243164062, 352.0118408203125, 0.9130677580833435], "11": [358.93621826171875, 480.0, 0.09578593075275421], "12": [227.2537078857422, 480.0, 0.08841534703969955], "13": [423.2849426269531, 390.2876281738281, 0.0013582269893959165], "14": [251.6787872314453, 375.51165771484375, 0.001345998141914606], "15": [470.485107421875, 404.814453125, 0.000152245833305642], "16": [281.263671875, 387.98370361328125, 0.00014805783575866371]}} +{"t": 32.396543, "tracked": true, "track_id": 1, "bbox": [64.43315887451172, 26.831745147705078, 600.07275390625, 478.4175720214844], "det_conf": 0.9060713648796082, "mean_kpt_conf": 0.9503493254834955, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6184011734593474, "right_lift": -0.8907112377810579, "left_bend": 0.6398799104132324, "right_bend": 0.8311558854958343}, "keypoints": {"0": [291.1321716308594, 132.34364318847656, 0.9992458820343018], "1": [313.7702331542969, 108.99494934082031, 0.9977607727050781], "2": [267.9231262207031, 107.8092041015625, 0.9970420002937317], "3": [341.5295715332031, 122.3397216796875, 0.9051988124847412], "4": [234.0128631591797, 118.53570556640625, 0.8714931607246399], "5": [384.1322326660156, 234.91067504882812, 0.9947100877761841], "6": [180.07406616210938, 234.2414093017578, 0.995419979095459], "7": [530.553466796875, 350.1306457519531, 0.9239358901977539], "8": [101.09231567382812, 389.0030517578125, 0.9084404110908508], "9": [557.893798828125, 231.90521240234375, 0.9451236128807068], "10": [155.4889678955078, 354.25396728515625, 0.9154719710350037], "11": [357.185546875, 480.0, 0.13252438604831696], "12": [224.36331176757812, 480.0, 0.13045592606067657], "13": [427.8617858886719, 403.4548645019531, 0.0013097790069878101], "14": [248.47096252441406, 392.9233703613281, 0.0014054874191060662], "15": [475.4178466796875, 410.0086669921875, 0.00014142713916953653], "16": [274.7944641113281, 398.79583740234375, 0.00014920139801688492]}} +{"t": 32.460622, "tracked": true, "track_id": 1, "bbox": [65.75023651123047, 26.426836013793945, 596.3842163085938, 478.9387512207031], "det_conf": 0.9037300944328308, "mean_kpt_conf": 0.9502136057073419, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7133981160324613, "right_lift": -0.9271775410547831, "left_bend": 0.713249297219672, "right_bend": 0.8561008234273301}, "keypoints": {"0": [284.07183837890625, 131.48336791992188, 0.9993317723274231], "1": [307.49749755859375, 107.57903289794922, 0.998342752456665], "2": [262.5540771484375, 107.82821655273438, 0.9962833523750305], "3": [339.7431640625, 118.53269958496094, 0.9392756819725037], "4": [233.85816955566406, 116.75411987304688, 0.7777385115623474], "5": [393.6697692871094, 224.14169311523438, 0.9957826137542725], "6": [183.47401428222656, 225.6693878173828, 0.996371865272522], "7": [526.6780395507812, 359.5489501953125, 0.9458880424499512], "8": [116.58967590332031, 391.2059020996094, 0.9344635009765625], "9": [540.9370727539062, 245.51197814941406, 0.9496375322341919], "10": [158.121826171875, 353.68243408203125, 0.919234037399292], "11": [372.72296142578125, 480.0, 0.20082931220531464], "12": [231.0950927734375, 480.0, 0.19888843595981598], "13": [441.92462158203125, 404.4884033203125, 0.0012651050928980112], "14": [225.02835083007812, 394.8822937011719, 0.001336089801043272], "15": [491.2398376464844, 423.6712646484375, 0.00011180459114257246], "16": [242.4642333984375, 414.56146240234375, 0.0001207016539410688]}} +{"t": 32.495648, "tracked": true, "track_id": 1, "bbox": [66.72196197509766, 25.802141189575195, 591.1730346679688, 479.2433776855469], "det_conf": 0.9069258570671082, "mean_kpt_conf": 0.9462647221305154, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6734895364640433, "right_lift": -0.902159567053696, "left_bend": 0.6939255887674317, "right_bend": 0.8210890962483299}, "keypoints": {"0": [282.906005859375, 133.11639404296875, 0.9991984963417053], "1": [306.6013488769531, 108.66903686523438, 0.9982289671897888], "2": [261.2347412109375, 109.043212890625, 0.9960567951202393], "3": [338.989501953125, 120.048583984375, 0.9475924968719482], "4": [232.95651245117188, 118.27789306640625, 0.7864578366279602], "5": [387.50653076171875, 232.7393798828125, 0.9946409463882446], "6": [182.64439392089844, 229.24716186523438, 0.995363712310791], "7": [529.9105224609375, 362.4850769042969, 0.9227073788642883], "8": [105.77197265625, 390.0046691894531, 0.9098843932151794], "9": [546.3526611328125, 236.41065979003906, 0.945658802986145], "10": [163.00633239746094, 353.9072265625, 0.9131221175193787], "11": [358.8262634277344, 480.0, 0.1251586377620697], "12": [224.8974609375, 480.0, 0.12768279016017914], "13": [423.81329345703125, 401.6688232421875, 0.001326480763964355], "14": [240.5572052001953, 387.85223388671875, 0.0014882201794534922], "15": [473.95196533203125, 409.96649169921875, 0.00014615690452046692], "16": [267.8504638671875, 399.7181091308594, 0.0001648097240831703]}} +{"t": 32.529707, "tracked": true, "track_id": 1, "bbox": [68.97254180908203, 25.27362060546875, 585.7650756835938, 479.6672668457031], "det_conf": 0.911715030670166, "mean_kpt_conf": 0.9451947916637767, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7191932202273654, "right_lift": -0.9218243678149236, "left_bend": 0.730785780155263, "right_bend": 0.8404342942205018}, "keypoints": {"0": [279.3203125, 132.64300537109375, 0.9993091821670532], "1": [303.50689697265625, 107.66114807128906, 0.9985962510108948], "2": [257.8489990234375, 108.79901123046875, 0.9957347512245178], "3": [338.8458251953125, 117.14573669433594, 0.9570359587669373], "4": [231.4359130859375, 116.99822998046875, 0.7212030291557312], "5": [394.4661865234375, 223.72320556640625, 0.9953193068504333], "6": [183.84190368652344, 225.8974151611328, 0.9960533380508423], "7": [524.4850463867188, 358.3048400878906, 0.9409210085868835], "8": [115.23995971679688, 389.0492858886719, 0.9294722676277161], "9": [533.3731079101562, 244.0061798095703, 0.9485969543457031], "10": [156.92266845703125, 355.92608642578125, 0.9149006605148315], "11": [371.5372314453125, 480.0, 0.18749050796031952], "12": [229.58065795898438, 480.0, 0.18874752521514893], "13": [436.22308349609375, 408.7381591796875, 0.0011674822308123112], "14": [220.4005126953125, 398.9051818847656, 0.0012523808982223272], "15": [483.5341796875, 426.65234375, 0.00010646571172401309], "16": [236.69285583496094, 419.2529296875, 0.00011818428902188316]}} +{"t": 32.593058, "tracked": true, "track_id": 1, "bbox": [70.68254089355469, 25.4171085357666, 575.654296875, 479.0510559082031], "det_conf": 0.9137939810752869, "mean_kpt_conf": 0.9396729469299316, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.690520889375058, "right_lift": -0.886873753048277, "left_bend": 0.7214859571934394, "right_bend": 0.8042048982102826}, "keypoints": {"0": [275.6250915527344, 132.93238830566406, 0.9991124272346497], "1": [299.127197265625, 107.81414794921875, 0.9985328912734985], "2": [255.02403259277344, 111.08680725097656, 0.9948768019676208], "3": [336.3784484863281, 117.67779541015625, 0.9710979461669922], "4": [233.45791625976562, 121.65728759765625, 0.6943152546882629], "5": [389.9798889160156, 228.34103393554688, 0.993909478187561], "6": [188.3434295654297, 227.25332641601562, 0.995399534702301], "7": [524.6132202148438, 356.8707275390625, 0.9159221053123474], "8": [107.63125610351562, 382.18768310546875, 0.9183250069618225], "9": [532.9444580078125, 231.5663604736328, 0.9418331980705261], "10": [162.83370971679688, 353.7688903808594, 0.9130777716636658], "11": [356.1705017089844, 480.0, 0.14141683280467987], "12": [223.75880432128906, 480.0, 0.15703797340393066], "13": [414.1219482421875, 407.61187744140625, 0.0014034556224942207], "14": [230.47781372070312, 394.6170654296875, 0.0017340676859021187], "15": [461.37225341796875, 413.9767150878906, 0.00015347149746958166], "16": [250.57647705078125, 410.48260498046875, 0.00018987378280144185]}} +{"t": 32.628635, "tracked": true, "track_id": 1, "bbox": [68.3232421875, 25.385046005249023, 571.9847412109375, 478.9803771972656], "det_conf": 0.9131221175193787, "mean_kpt_conf": 0.9354782050306146, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6973280766946239, "right_lift": -0.8896565304014472, "left_bend": 0.734045387470339, "right_bend": 0.8256128047640305}, "keypoints": {"0": [272.6430358886719, 132.9699249267578, 0.9990990161895752], "1": [297.064208984375, 106.9007568359375, 0.9985705614089966], "2": [251.97808837890625, 110.70196533203125, 0.9947429895401001], "3": [336.7019348144531, 116.77566528320312, 0.9726423025131226], "4": [231.5248565673828, 121.46937561035156, 0.6828863620758057], "5": [392.058837890625, 229.91873168945312, 0.9931820034980774], "6": [186.2353515625, 230.6355743408203, 0.9949837923049927], "7": [525.958740234375, 360.18994140625, 0.9005848169326782], "8": [105.41587829589844, 388.0968017578125, 0.9035896062850952], "9": [530.629638671875, 231.88153076171875, 0.9399911761283875], "10": [164.10406494140625, 352.2165222167969, 0.9099876284599304], "11": [356.94488525390625, 480.0, 0.10965292900800705], "12": [223.17108154296875, 480.0, 0.12318859249353409], "13": [412.8369140625, 403.57159423828125, 0.0013409818056970835], "14": [236.12127685546875, 392.2750244140625, 0.0016843746416270733], "15": [457.103515625, 416.1900329589844, 0.00015846281894482672], "16": [261.87646484375, 414.1571044921875, 0.00019906180386897177]}} +{"t": 32.693031, "tracked": true, "track_id": 1, "bbox": [67.58250427246094, 24.932737350463867, 565.0061645507812, 479.22845458984375], "det_conf": 0.9204511642456055, "mean_kpt_conf": 0.9279017881913618, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7376201212715398, "right_lift": -0.9039039246693468, "left_bend": 0.762734602807247, "right_bend": 0.8016581944160913}, "keypoints": {"0": [270.7198181152344, 133.5521240234375, 0.9990028738975525], "1": [294.5628662109375, 106.64085388183594, 0.9985236525535583], "2": [250.32760620117188, 111.64968872070312, 0.9940873384475708], "3": [335.5504150390625, 113.58575439453125, 0.9764894843101501], "4": [231.70082092285156, 120.8212890625, 0.6533857583999634], "5": [398.3040466308594, 229.12767028808594, 0.9926736950874329], "6": [185.75051879882812, 227.86289978027344, 0.9950024485588074], "7": [523.5704345703125, 365.9713134765625, 0.879808783531189], "8": [111.99771118164062, 383.7196044921875, 0.8942879438400269], "9": [524.1260986328125, 231.55313110351562, 0.9292344450950623], "10": [160.45127868652344, 356.8894958496094, 0.894423246383667], "11": [361.36083984375, 480.0, 0.11525753885507584], "12": [224.31231689453125, 480.0, 0.13643617928028107], "13": [404.54351806640625, 410.01092529296875, 0.001552500994876027], "14": [229.81765747070312, 397.78411865234375, 0.0020130695775151253], "15": [440.1749572753906, 420.77685546875, 0.00017751225095707923], "16": [266.4304504394531, 424.0571594238281, 0.00022965272364672273]}} +{"t": 32.760996, "tracked": true, "track_id": 1, "bbox": [69.37218475341797, 24.8448486328125, 560.7794799804688, 479.19952392578125], "det_conf": 0.9240974187850952, "mean_kpt_conf": 0.9253561767664823, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7212248261406163, "right_lift": -0.8825053231281713, "left_bend": 0.7680854855934345, "right_bend": 0.8338128114708108}, "keypoints": {"0": [268.97625732421875, 133.00750732421875, 0.9989835619926453], "1": [291.71514892578125, 106.34323120117188, 0.9984951019287109], "2": [248.64874267578125, 112.79994201660156, 0.9937765598297119], "3": [332.470703125, 115.17152404785156, 0.9761595726013184], "4": [231.62680053710938, 125.58250427246094, 0.6325943470001221], "5": [393.9793395996094, 231.75807189941406, 0.9920096397399902], "6": [190.659912109375, 230.3503875732422, 0.9939610958099365], "7": [525.023193359375, 368.197998046875, 0.8774953484535217], "8": [109.25180053710938, 383.1097412109375, 0.8807080984115601], "9": [519.911376953125, 228.7705841064453, 0.9365143179893494], "10": [162.3968048095703, 349.8592834472656, 0.8982203006744385], "11": [355.07696533203125, 480.0, 0.09286758303642273], "12": [225.04066467285156, 480.0, 0.10649655759334564], "13": [393.92730712890625, 403.54547119140625, 0.0015507458010688424], "14": [232.1202392578125, 389.7429504394531, 0.0019345335895195603], "15": [439.4354248046875, 417.20892333984375, 0.00018746769637800753], "16": [267.27880859375, 420.9956970214844, 0.00023609348863828927]}} +{"t": 32.825744, "tracked": true, "track_id": 1, "bbox": [75.3960189819336, 24.669437408447266, 557.4729614257812, 479.15478515625], "det_conf": 0.9274098873138428, "mean_kpt_conf": 0.9063260934569619, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7224031755086808, "right_lift": -0.9015448717918828, "left_bend": 0.7887154995825499, "right_bend": 0.8685542459971516}, "keypoints": {"0": [265.28271484375, 134.70816040039062, 0.998792290687561], "1": [289.440673828125, 106.87620544433594, 0.998420000076294], "2": [246.18727111816406, 112.68630981445312, 0.990744411945343], "3": [334.41094970703125, 114.59767150878906, 0.9785194993019104], "4": [230.1569061279297, 122.55877685546875, 0.5091274976730347], "5": [401.4373779296875, 237.85337829589844, 0.9936383366584778], "6": [185.94403076171875, 241.43392944335938, 0.9922928810119629], "7": [527.2924194335938, 369.33819580078125, 0.8881090879440308], "8": [112.12005615234375, 395.2537536621094, 0.8145986199378967], "9": [513.0493774414062, 227.03189086914062, 0.9435174465179443], "10": [164.06884765625, 350.5681457519531, 0.8618269562721252], "11": [360.14239501953125, 480.0, 0.1114555299282074], "12": [222.85606384277344, 480.0, 0.09872272610664368], "13": [402.53228759765625, 408.48748779296875, 0.0018694832688197494], "14": [242.3419952392578, 398.94549560546875, 0.0018958686850965023], "15": [428.1114501953125, 413.21600341796875, 0.00020832558220718056], "16": [274.1935119628906, 416.43304443359375, 0.0002318039769306779]}} +{"t": 32.887949, "tracked": true, "track_id": 1, "bbox": [71.31993103027344, 24.540590286254883, 558.55029296875, 479.5420837402344], "det_conf": 0.9250322580337524, "mean_kpt_conf": 0.920252491127361, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7347123385716836, "right_lift": -0.8838941094896725, "left_bend": 0.7771864301841197, "right_bend": 0.8314914762291372}, "keypoints": {"0": [264.04638671875, 133.6329345703125, 0.9989243149757385], "1": [287.0687255859375, 106.26223754882812, 0.9985034465789795], "2": [244.42645263671875, 113.28614807128906, 0.9926935434341431], "3": [331.24249267578125, 113.8216552734375, 0.9793388247489929], "4": [229.51181030273438, 124.91241455078125, 0.5894328355789185], "5": [399.43414306640625, 234.8785400390625, 0.9928640127182007], "6": [187.141357421875, 234.4071807861328, 0.9942958950996399], "7": [522.5419921875, 368.2094421386719, 0.8780482411384583], "8": [108.15167236328125, 383.6918640136719, 0.8759362101554871], "9": [516.0391845703125, 225.59109497070312, 0.9331141710281372], "10": [161.65135192871094, 350.54107666015625, 0.8896259069442749], "11": [360.6308288574219, 480.0, 0.11454076319932938], "12": [223.66419982910156, 480.0, 0.12858490645885468], "13": [402.36151123046875, 416.85992431640625, 0.0015379471005871892], "14": [231.42544555664062, 405.53753662109375, 0.0019015679135918617], "15": [441.59759521484375, 419.558349609375, 0.0001659475965425372], "16": [267.3936462402344, 428.31744384765625, 0.00020868760475423187]}} +{"t": 32.925693, "tracked": true, "track_id": 1, "bbox": [70.56822204589844, 23.502655029296875, 559.3136596679688, 479.8011474609375], "det_conf": 0.9229461550712585, "mean_kpt_conf": 0.9212763959711249, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6975756294687262, "right_lift": -0.8807556508396843, "left_bend": 0.7690955304065563, "right_bend": 0.8190050356835411}, "keypoints": {"0": [264.697265625, 133.72470092773438, 0.9989957213401794], "1": [287.544921875, 106.304443359375, 0.9986013770103455], "2": [244.42239379882812, 113.15145874023438, 0.9934513568878174], "3": [329.75714111328125, 113.0960693359375, 0.9780470728874207], "4": [228.05728149414062, 124.31198120117188, 0.597393274307251], "5": [393.80352783203125, 228.71234130859375, 0.9921223521232605], "6": [188.27012634277344, 230.59951782226562, 0.9936376214027405], "7": [530.2257690429688, 361.529296875, 0.8797324895858765], "8": [105.75631713867188, 384.0601501464844, 0.8717730045318604], "9": [520.1070556640625, 223.88259887695312, 0.9382922649383545], "10": [159.8711700439453, 353.8726806640625, 0.8919938206672668], "11": [356.8113098144531, 480.0, 0.09110447019338608], "12": [225.41221618652344, 480.0, 0.10128124058246613], "13": [394.81353759765625, 404.67230224609375, 0.0014963840367272496], "14": [233.52882385253906, 391.506103515625, 0.0018086660420522094], "15": [441.02886962890625, 415.272705078125, 0.0001811778056435287], "16": [269.485107421875, 417.93890380859375, 0.00022465313668362796]}} +{"t": 32.98944, "tracked": true, "track_id": 1, "bbox": [70.73332214355469, 24.187774658203125, 560.9156494140625, 479.84942626953125], "det_conf": 0.9224403500556946, "mean_kpt_conf": 0.9198395122181285, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.716322352084104, "right_lift": -0.8893447055393227, "left_bend": 0.7765747841198132, "right_bend": 0.8450324775696049}, "keypoints": {"0": [263.5934753417969, 133.9779815673828, 0.99899822473526], "1": [285.8706970214844, 105.54989624023438, 0.9985930323600769], "2": [242.82183837890625, 113.54721069335938, 0.9933478236198425], "3": [328.9635009765625, 111.32655334472656, 0.978644847869873], "4": [227.2144012451172, 125.1055908203125, 0.5934923887252808], "5": [397.8144836425781, 230.96380615234375, 0.9923921823501587], "6": [187.76437377929688, 233.457763671875, 0.9939903020858765], "7": [530.9100341796875, 367.59820556640625, 0.8704144358634949], "8": [108.2972412109375, 388.02447509765625, 0.8702577948570251], "9": [520.5463256835938, 220.56251525878906, 0.9350687861442566], "10": [160.1160430908203, 351.87939453125, 0.893034815788269], "11": [360.6446228027344, 480.0, 0.0880969911813736], "12": [226.66580200195312, 480.0, 0.10020235180854797], "13": [403.4494934082031, 406.1301574707031, 0.0014588423073291779], "14": [240.05545043945312, 394.6571044921875, 0.0018543899059295654], "15": [442.60699462890625, 414.20068359375, 0.0001725248439470306], "16": [275.7727966308594, 422.478759765625, 0.00022243056446313858]}} +{"t": 33.05496, "tracked": true, "track_id": 1, "bbox": [71.7878189086914, 24.32382583618164, 562.6482543945312, 479.9868469238281], "det_conf": 0.9160054922103882, "mean_kpt_conf": 0.9246814305132086, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7313483076191803, "right_lift": -0.8842708131619307, "left_bend": 0.7720521505325604, "right_bend": 0.8109840064049318}, "keypoints": {"0": [261.3382568359375, 132.4102020263672, 0.9990129470825195], "1": [283.4723815917969, 104.96163940429688, 0.9986217021942139], "2": [241.70651245117188, 113.4398193359375, 0.9928222298622131], "3": [328.07403564453125, 111.35092163085938, 0.9800001382827759], "4": [228.62696838378906, 125.59684753417969, 0.571069598197937], "5": [397.5346374511719, 225.90760803222656, 0.9937233328819275], "6": [189.14724731445312, 229.18927001953125, 0.9947816729545593], "7": [523.7147827148438, 361.21710205078125, 0.9030873775482178], "8": [108.82402038574219, 381.29071044921875, 0.901432454586029], "9": [519.1397705078125, 228.19839477539062, 0.9376919269561768], "10": [160.94671630859375, 353.41412353515625, 0.8992523550987244], "11": [361.58074951171875, 480.0, 0.13314861059188843], "12": [225.6206512451172, 480.0, 0.14816153049468994], "13": [411.81951904296875, 409.6758728027344, 0.0014447805006057024], "14": [230.91143798828125, 400.7045593261719, 0.001822632155381143], "15": [454.200927734375, 413.78717041015625, 0.0001520501245977357], "16": [256.5940246582031, 425.2732849121094, 0.00019436301954556257]}} +{"t": 33.119166, "tracked": true, "track_id": 1, "bbox": [70.15052032470703, 23.73383331298828, 566.1494140625, 479.7778625488281], "det_conf": 0.9164746403694153, "mean_kpt_conf": 0.9255344380031932, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7329888256017685, "right_lift": -0.8903022445557123, "left_bend": 0.7507119144982048, "right_bend": 0.8254102109200869}, "keypoints": {"0": [261.6101379394531, 132.502197265625, 0.999087929725647], "1": [283.66314697265625, 104.22262573242188, 0.998730480670929], "2": [241.01760864257812, 113.37759399414062, 0.9935047626495361], "3": [327.9554443359375, 109.87684631347656, 0.9787738919258118], "4": [226.84051513671875, 125.77102661132812, 0.5909902453422546], "5": [397.67083740234375, 223.22720336914062, 0.9932292699813843], "6": [188.41702270507812, 229.03712463378906, 0.9947382807731628], "7": [526.02880859375, 361.5384826660156, 0.8960044980049133], "8": [107.77922058105469, 386.69354248046875, 0.900783360004425], "9": [530.7789306640625, 226.14976501464844, 0.9355745315551758], "10": [159.5023956298828, 355.01605224609375, 0.899461567401886], "11": [365.3774719238281, 480.0, 0.11555921286344528], "12": [229.0052490234375, 480.0, 0.1331101506948471], "13": [407.3699951171875, 403.75250244140625, 0.0014302390627563], "14": [222.48257446289062, 396.79443359375, 0.0018249716376885772], "15": [449.26483154296875, 414.20733642578125, 0.00015545538917649537], "16": [245.85948181152344, 428.14605712890625, 0.0001993592595681548]}} +{"t": 33.187421, "tracked": true, "track_id": 1, "bbox": [69.58348846435547, 24.497600555419922, 571.0145263671875, 479.70281982421875], "det_conf": 0.911329448223114, "mean_kpt_conf": 0.9253439957445319, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7383985237506346, "right_lift": -0.8920877455953219, "left_bend": 0.7507063363970364, "right_bend": 0.8333801326790105}, "keypoints": {"0": [260.8356628417969, 133.79408264160156, 0.999086856842041], "1": [282.02789306640625, 104.66091918945312, 0.9987070560455322], "2": [239.55160522460938, 114.43569946289062, 0.9934023022651672], "3": [326.0906677246094, 108.90101623535156, 0.9786672592163086], "4": [225.0361785888672, 126.31269836425781, 0.5910782814025879], "5": [398.4091796875, 227.6626434326172, 0.9939035773277283], "6": [187.4394989013672, 231.5914306640625, 0.995133101940155], "7": [527.85791015625, 369.4031066894531, 0.894332230091095], "8": [108.51092529296875, 387.41595458984375, 0.9011370539665222], "9": [533.8980712890625, 229.2664794921875, 0.9330626130104065], "10": [160.82467651367188, 353.25421142578125, 0.9002736210823059], "11": [367.07611083984375, 480.0, 0.11201632767915726], "12": [229.83338928222656, 480.0, 0.12897920608520508], "13": [419.2598876953125, 402.89520263671875, 0.0013012418057769537], "14": [234.05242919921875, 395.89971923828125, 0.001725798356346786], "15": [458.79327392578125, 400.2517395019531, 0.00014774658484384418], "16": [258.0732727050781, 417.56781005859375, 0.00019587145652621984]}} +{"t": 33.253495, "tracked": true, "track_id": 1, "bbox": [67.4530029296875, 24.017419815063477, 576.6237182617188, 480.0], "det_conf": 0.907950758934021, "mean_kpt_conf": 0.9240592555566267, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7070266787449094, "right_lift": -0.8826356117100302, "left_bend": 0.7338603091065666, "right_bend": 0.8148025790911758}, "keypoints": {"0": [259.4344787597656, 134.26744079589844, 0.9991140961647034], "1": [280.49517822265625, 104.89102172851562, 0.9987685084342957], "2": [238.59490966796875, 115.45285034179688, 0.9933862090110779], "3": [325.3969421386719, 108.01742553710938, 0.9791433811187744], "4": [225.30038452148438, 126.96955871582031, 0.5731781125068665], "5": [396.32080078125, 223.990966796875, 0.99367755651474], "6": [188.7879638671875, 231.17843627929688, 0.9947593808174133], "7": [531.7147216796875, 359.3542175292969, 0.9006608128547668], "8": [107.9061279296875, 383.0516357421875, 0.8980469703674316], "9": [538.2756958007812, 229.7784423828125, 0.9375231266021729], "10": [156.63890075683594, 356.4525146484375, 0.8963936567306519], "11": [362.44000244140625, 480.0, 0.11978482455015182], "12": [227.6587371826172, 480.0, 0.13398097455501556], "13": [409.829833984375, 405.9990234375, 0.0013342980528250337], "14": [228.65145874023438, 400.06903076171875, 0.0016862166812643409], "15": [457.18218994140625, 403.6634521484375, 0.00014955192455090582], "16": [256.7287292480469, 420.7990417480469, 0.00019076350145041943]}} +{"t": 33.316963, "tracked": true, "track_id": 1, "bbox": [68.94403076171875, 24.17729949951172, 583.3316650390625, 480.0], "det_conf": 0.9095159769058228, "mean_kpt_conf": 0.9179287525740537, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7703612461553184, "right_lift": -0.9103567098029557, "left_bend": 0.7588430993741582, "right_bend": 0.8935906452401778}, "keypoints": {"0": [257.3446044921875, 134.69442749023438, 0.9990413784980774], "1": [279.85198974609375, 105.19599151611328, 0.9988251328468323], "2": [236.1060791015625, 115.05596160888672, 0.9902662634849548], "3": [327.59320068359375, 108.0755615234375, 0.9822514653205872], "4": [222.80648803710938, 125.63632202148438, 0.4547130763530731], "5": [405.9778747558594, 217.91876220703125, 0.9949404001235962], "6": [188.42230224609375, 231.93234252929688, 0.9956615567207336], "7": [525.96142578125, 362.8835754394531, 0.930863618850708], "8": [114.12106323242188, 395.38482666015625, 0.9201533794403076], "9": [534.1065063476562, 240.077880859375, 0.9377279877662659], "10": [148.564697265625, 359.21417236328125, 0.8927720189094543], "11": [389.1319885253906, 480.0, 0.1851149946451187], "12": [242.49240112304688, 480.0, 0.19503065943717957], "13": [442.80450439453125, 417.4202880859375, 0.0009151968406513333], "14": [219.69630432128906, 417.8768310546875, 0.0010660600382834673], "15": [486.3377685546875, 418.74755859375, 7.539782382082194e-05], "16": [231.3789825439453, 437.8071594238281, 9.337875235360116e-05]}} +{"t": 33.352391, "tracked": true, "track_id": 1, "bbox": [67.8878173828125, 24.330833435058594, 586.6925048828125, 480.0], "det_conf": 0.9088850021362305, "mean_kpt_conf": 0.9162857965989546, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7589300338739882, "right_lift": -0.9064240246810669, "left_bend": 0.7601020373315629, "right_bend": 0.8690270884235775}, "keypoints": {"0": [257.8489990234375, 134.27926635742188, 0.9989632368087769], "1": [280.3690185546875, 104.37977600097656, 0.9987033605575562], "2": [235.70941162109375, 114.16156768798828, 0.989794909954071], "3": [327.4044189453125, 107.25379180908203, 0.980352520942688], "4": [220.7764892578125, 124.85258483886719, 0.4535617232322693], "5": [403.18865966796875, 220.35520935058594, 0.9948037266731262], "6": [187.0046844482422, 229.98641967773438, 0.994716227054596], "7": [529.2225952148438, 367.24560546875, 0.9306250810623169], "8": [111.80891418457031, 391.36016845703125, 0.9036821722984314], "9": [534.9325561523438, 239.1138916015625, 0.9441137313842773], "10": [151.6937255859375, 356.14666748046875, 0.8898270726203918], "11": [381.50970458984375, 480.0, 0.15285679697990417], "12": [237.23138427734375, 480.0, 0.15035489201545715], "13": [440.8046875, 406.6650695800781, 0.0009498658473603427], "14": [228.50730895996094, 404.03094482421875, 0.0010466983076184988], "15": [490.57574462890625, 406.8226318359375, 8.609295764472336e-05], "16": [248.84100341796875, 425.3570556640625, 0.00010260544513585046]}} +{"t": 33.417174, "tracked": true, "track_id": 1, "bbox": [68.97024536132812, 23.059017181396484, 591.927490234375, 480.0], "det_conf": 0.9062823057174683, "mean_kpt_conf": 0.9165057783777063, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7539017125731243, "right_lift": -0.9158749169985179, "left_bend": 0.7392761629463986, "right_bend": 0.877086616452909}, "keypoints": {"0": [257.4429626464844, 134.89605712890625, 0.9990424513816833], "1": [280.5635070800781, 105.3700942993164, 0.9988447427749634], "2": [235.45120239257812, 114.75759887695312, 0.9902523756027222], "3": [328.00335693359375, 107.59153747558594, 0.9798656105995178], "4": [220.30567932128906, 124.34089660644531, 0.43109187483787537], "5": [401.60595703125, 213.57337951660156, 0.9948509335517883], "6": [187.43087768554688, 228.08074951171875, 0.9947052597999573], "7": [527.453369140625, 357.9849853515625, 0.9404685497283936], "8": [115.033447265625, 393.24383544921875, 0.9141915440559387], "9": [539.2796630859375, 242.75338745117188, 0.9457657337188721], "10": [152.0283660888672, 357.2604675292969, 0.8924844861030579], "11": [384.16766357421875, 480.0, 0.197378471493721], "12": [239.62628173828125, 480.0, 0.19178736209869385], "13": [443.13720703125, 412.29736328125, 0.0010558580979704857], "14": [222.0628662109375, 412.7540283203125, 0.0011354213347658515], "15": [489.9385986328125, 414.64794921875, 8.962667197920382e-05], "16": [232.03961181640625, 431.1610412597656, 0.00010483997175469995]}} +{"t": 33.484823, "tracked": true, "track_id": 1, "bbox": [68.37832641601562, 23.639080047607422, 595.2257080078125, 480.0], "det_conf": 0.9039710164070129, "mean_kpt_conf": 0.913085016337308, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7683308369543506, "right_lift": -0.9100836897295863, "left_bend": 0.7387106239432761, "right_bend": 0.8868613543409472}, "keypoints": {"0": [255.84263610839844, 134.01806640625, 0.9989797472953796], "1": [279.2374267578125, 105.16053771972656, 0.9987727999687195], "2": [235.19117736816406, 113.9369125366211, 0.9885534048080444], "3": [327.48895263671875, 108.87052917480469, 0.9800884127616882], "4": [222.1617431640625, 123.66118621826172, 0.3880015015602112], "5": [400.88165283203125, 215.44253540039062, 0.9948543906211853], "6": [188.7097625732422, 227.52587890625, 0.9946129322052002], "7": [523.6984252929688, 362.87396240234375, 0.943807065486908], "8": [111.95762634277344, 396.074951171875, 0.9170152544975281], "9": [539.1185913085938, 241.42999267578125, 0.9467808604240417], "10": [149.01559448242188, 358.81988525390625, 0.8924688100814819], "11": [384.4258728027344, 480.0, 0.18544834852218628], "12": [240.20367431640625, 480.0, 0.17891840636730194], "13": [444.15716552734375, 410.0458679199219, 0.0009482887689955533], "14": [218.43728637695312, 409.21759033203125, 0.0010050049750134349], "15": [497.8005676269531, 414.2489013671875, 7.945919060148299e-05], "16": [227.36868286132812, 429.82855224609375, 9.232326556229964e-05]}} +{"t": 33.547371, "tracked": true, "track_id": 1, "bbox": [67.62000274658203, 23.24422264099121, 597.5521240234375, 480.0], "det_conf": 0.9068016409873962, "mean_kpt_conf": 0.9194341464476152, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.749041537547654, "right_lift": -0.8981545172486545, "left_bend": 0.7214362164153977, "right_bend": 0.8472758483373833}, "keypoints": {"0": [257.0689697265625, 134.5170440673828, 0.9990932941436768], "1": [279.5451354980469, 104.55107116699219, 0.9988424181938171], "2": [234.6767578125, 114.88658142089844, 0.9908040761947632], "3": [326.89691162109375, 106.72660827636719, 0.9777076840400696], "4": [219.9384002685547, 125.36089324951172, 0.4563989043235779], "5": [397.47454833984375, 214.13087463378906, 0.9946655035018921], "6": [188.92547607421875, 227.7795867919922, 0.99445641040802], "7": [523.1719360351562, 356.2430114746094, 0.9396403431892395], "8": [109.74067687988281, 389.5340270996094, 0.9121825695037842], "9": [540.7799682617188, 240.483642578125, 0.9487931728363037], "10": [153.7567901611328, 357.0514831542969, 0.901191234588623], "11": [382.50115966796875, 480.0, 0.16508819162845612], "12": [243.28466796875, 480.0, 0.15920227766036987], "13": [449.1181640625, 401.10009765625, 0.0009981917683035135], "14": [243.2168426513672, 403.0896911621094, 0.0010960684157907963], "15": [503.769287109375, 404.42584228515625, 8.937584061641246e-05], "16": [261.2891845703125, 426.25091552734375, 0.00010625403228914365]}} +{"t": 33.616566, "tracked": true, "track_id": 1, "bbox": [67.0401382446289, 22.97291374206543, 602.93798828125, 479.97332763671875], "det_conf": 0.9054675102233887, "mean_kpt_conf": 0.9154327132485129, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7610290534568859, "right_lift": -0.9103059976146368, "left_bend": 0.7213285795462184, "right_bend": 0.8718874580267275}, "keypoints": {"0": [257.0909729003906, 134.40667724609375, 0.999117910861969], "1": [279.9973449707031, 104.66320037841797, 0.9989363551139832], "2": [235.22801208496094, 114.19066619873047, 0.9900786876678467], "3": [327.5177307128906, 107.16743469238281, 0.9800992608070374], "4": [220.68894958496094, 123.95538330078125, 0.41408783197402954], "5": [400.3399658203125, 214.7698211669922, 0.9955295920372009], "6": [188.19558715820312, 228.8256072998047, 0.9945577383041382], "7": [524.43603515625, 360.35040283203125, 0.9493733644485474], "8": [112.03582763671875, 396.3121032714844, 0.910594642162323], "9": [544.9054565429688, 240.798583984375, 0.9498196840286255], "10": [147.6295166015625, 363.71087646484375, 0.8875647783279419], "11": [387.39361572265625, 480.0, 0.18365806341171265], "12": [244.08218383789062, 480.0, 0.16494621336460114], "13": [455.0561218261719, 405.54852294921875, 0.0009313803748227656], "14": [233.72377014160156, 407.251708984375, 0.0009332768386229873], "15": [506.71368408203125, 406.67230224609375, 8.012459147721529e-05], "16": [245.36358642578125, 426.49444580078125, 8.979674748843536e-05]}} +{"t": 33.681308, "tracked": true, "track_id": 1, "bbox": [65.63616943359375, 24.425750732421875, 606.580810546875, 479.80419921875], "det_conf": 0.9070562124252319, "mean_kpt_conf": 0.9168002686717294, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7543589610974559, "right_lift": -0.9025851097416604, "left_bend": 0.7182533203946841, "right_bend": 0.8702905967824159}, "keypoints": {"0": [257.33447265625, 134.02154541015625, 0.9990991353988647], "1": [280.40283203125, 104.7333755493164, 0.998902440071106], "2": [236.1051025390625, 114.02007293701172, 0.9899770617485046], "3": [328.27685546875, 109.01008605957031, 0.9812131524085999], "4": [221.97116088867188, 124.850830078125, 0.43203970789909363], "5": [401.3478088378906, 221.1011505126953, 0.9958261847496033], "6": [187.17221069335938, 231.96156311035156, 0.9947223663330078], "7": [524.8516235351562, 363.0228271484375, 0.9482302665710449], "8": [110.79861450195312, 392.08197021484375, 0.9043768644332886], "9": [545.4129638671875, 242.52879333496094, 0.951439380645752], "10": [152.55551147460938, 355.58795166015625, 0.8889763951301575], "11": [384.9278564453125, 480.0, 0.1881197839975357], "12": [240.99029541015625, 480.0, 0.16649441421031952], "13": [454.5034484863281, 405.99658203125, 0.001012627501040697], "14": [238.54171752929688, 407.0281066894531, 0.0010073641315102577], "15": [509.0045166015625, 403.6676940917969, 8.64368921611458e-05], "16": [258.61907958984375, 424.02667236328125, 9.624310041544959e-05]}} +{"t": 33.743964, "tracked": true, "track_id": 1, "bbox": [65.52127838134766, 23.8563289642334, 610.1444091796875, 479.6541442871094], "det_conf": 0.9031914472579956, "mean_kpt_conf": 0.9169956689531152, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7595042449982773, "right_lift": -0.9045456347879165, "left_bend": 0.7185639786533337, "right_bend": 0.8957643139196031}, "keypoints": {"0": [258.3775939941406, 133.91439819335938, 0.9990761280059814], "1": [280.90228271484375, 104.18791198730469, 0.9988607168197632], "2": [236.32861328125, 114.31800842285156, 0.9897964596748352], "3": [327.91766357421875, 107.69445037841797, 0.9789587259292603], "4": [221.73443603515625, 125.80398559570312, 0.4229775369167328], "5": [400.7737731933594, 215.55274963378906, 0.9953193068504333], "6": [190.36366271972656, 230.55331420898438, 0.9946765899658203], "7": [525.9246215820312, 361.6745910644531, 0.9477238655090332], "8": [111.851806640625, 397.1138610839844, 0.914816677570343], "9": [546.7525634765625, 244.4984130859375, 0.9493680000305176], "10": [148.6882781982422, 358.96893310546875, 0.8953783512115479], "11": [389.36871337890625, 480.0, 0.17862993478775024], "12": [247.43362426757812, 480.0, 0.1653570681810379], "13": [454.4140930175781, 402.97821044921875, 0.0009386712335981429], "14": [234.74501037597656, 405.545166015625, 0.000970122404396534], "15": [507.59912109375, 405.68035888671875, 8.143510058289394e-05], "16": [244.6893310546875, 426.35064697265625, 9.313775808550417e-05]}} +{"t": 33.778746, "tracked": true, "track_id": 1, "bbox": [65.49419403076172, 24.120044708251953, 608.6578369140625, 479.59686279296875], "det_conf": 0.9043034315109253, "mean_kpt_conf": 0.9200019565495577, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7569795535176433, "right_lift": -0.9055904347519935, "left_bend": 0.7299719022843439, "right_bend": 0.8722716137681789}, "keypoints": {"0": [259.4425048828125, 133.92657470703125, 0.9990999698638916], "1": [281.2924499511719, 104.22432708740234, 0.9988597631454468], "2": [236.9980926513672, 114.3436508178711, 0.9906060099601746], "3": [327.21685791015625, 107.23285675048828, 0.9801257252693176], "4": [221.4911651611328, 125.66669464111328, 0.46645379066467285], "5": [401.31494140625, 219.5397491455078, 0.9960458874702454], "6": [188.19456481933594, 231.4675750732422, 0.9950878024101257], "7": [527.2598876953125, 365.4413757324219, 0.9474874138832092], "8": [112.21148681640625, 393.69561767578125, 0.9071376919746399], "9": [543.9645385742188, 243.55296325683594, 0.9494196772575378], "10": [152.48443603515625, 357.5457763671875, 0.889697790145874], "11": [386.3724670410156, 480.0, 0.19211705029010773], "12": [244.06396484375, 480.0, 0.17177802324295044], "13": [458.40203857421875, 406.1604309082031, 0.0010431230766698718], "14": [247.2995147705078, 407.2934875488281, 0.0010650722542777658], "15": [508.8975830078125, 400.28265380859375, 9.037659765454009e-05], "16": [265.4488830566406, 422.3212890625, 0.00010261679562972859]}} +{"t": 33.842648, "tracked": true, "track_id": 1, "bbox": [67.49755859375, 23.621641159057617, 604.7989501953125, 479.46368408203125], "det_conf": 0.9040741324424744, "mean_kpt_conf": 0.918460951610045, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7576739312369585, "right_lift": -0.9097051263624568, "left_bend": 0.713485272205013, "right_bend": 0.8953573486829344}, "keypoints": {"0": [258.6829833984375, 132.94671630859375, 0.9990769624710083], "1": [281.52142333984375, 103.84506225585938, 0.9988434314727783], "2": [236.7274627685547, 113.47349548339844, 0.9896150827407837], "3": [328.11822509765625, 107.68544006347656, 0.9774062633514404], "4": [221.7810516357422, 124.85501098632812, 0.4082135856151581], "5": [396.9144287109375, 210.9961700439453, 0.9954419136047363], "6": [191.27059936523438, 227.19898986816406, 0.9946225881576538], "7": [522.432373046875, 356.7160949707031, 0.9566155672073364], "8": [113.79632568359375, 396.9230651855469, 0.9249950647354126], "9": [544.1510009765625, 243.20982360839844, 0.9547163844108582], "10": [150.91903686523438, 357.62713623046875, 0.9035236239433289], "11": [385.0333251953125, 480.0, 0.2165089100599289], "12": [244.74917602539062, 480.0, 0.19673794507980347], "13": [454.0272216796875, 404.6518249511719, 0.001058386405929923], "14": [229.2989959716797, 407.40972900390625, 0.0010654639918357134], "15": [511.5504150390625, 409.3756408691406, 8.754481677897274e-05], "16": [233.09730529785156, 427.70111083984375, 9.7973010269925e-05]}} +{"t": 33.910671, "tracked": true, "track_id": 1, "bbox": [65.42371368408203, 23.717409133911133, 600.8904418945312, 479.239013671875], "det_conf": 0.9047814607620239, "mean_kpt_conf": 0.9203041954474016, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7642010378336591, "right_lift": -0.9095098482799729, "left_bend": 0.7439648459125283, "right_bend": 0.877014268210745}, "keypoints": {"0": [259.0977478027344, 132.87576293945312, 0.9991092085838318], "1": [281.556396484375, 103.8354721069336, 0.9989032745361328], "2": [237.4920654296875, 113.0880126953125, 0.9906248450279236], "3": [327.3614501953125, 108.06991577148438, 0.9819808602333069], "4": [222.37554931640625, 124.40804290771484, 0.46024036407470703], "5": [402.62921142578125, 218.18887329101562, 0.9958207607269287], "6": [186.9799346923828, 229.9617919921875, 0.9955827593803406], "7": [528.0872802734375, 366.8376159667969, 0.9453794360160828], "8": [110.43402099609375, 397.44366455078125, 0.918293833732605], "9": [541.0594482421875, 241.784423828125, 0.9460391998291016], "10": [150.41802978515625, 359.7642822265625, 0.8913716077804565], "11": [388.2454528808594, 480.0, 0.1834457814693451], "12": [242.68792724609375, 480.0, 0.176017165184021], "13": [449.109130859375, 409.7938232421875, 0.0008889628807082772], "14": [224.52865600585938, 408.7774658203125, 0.0009396102977916598], "15": [501.15130615234375, 409.74468994140625, 7.515118340961635e-05], "16": [237.7063751220703, 426.71197509765625, 8.726160740479827e-05]}} +{"t": 33.944324, "tracked": true, "track_id": 1, "bbox": [64.72811889648438, 24.105688095092773, 599.3384399414062, 479.2430114746094], "det_conf": 0.9047943353652954, "mean_kpt_conf": 0.9205249791795557, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7574332925756782, "right_lift": -0.9034536145662138, "left_bend": 0.7335336280592842, "right_bend": 0.862877828212978}, "keypoints": {"0": [258.47607421875, 133.77806091308594, 0.9991346001625061], "1": [281.2384338378906, 104.40768432617188, 0.9989263415336609], "2": [237.02516174316406, 113.957275390625, 0.9909143447875977], "3": [328.73876953125, 107.35389709472656, 0.980925977230072], "4": [222.7728271484375, 124.08373260498047, 0.45320406556129456], "5": [403.4984130859375, 214.71585083007812, 0.9953633546829224], "6": [187.94500732421875, 228.7602996826172, 0.995521068572998], "7": [526.0366821289062, 356.8705139160156, 0.9429928660392761], "8": [110.52024841308594, 391.9326477050781, 0.9241028428077698], "9": [540.8216552734375, 239.8746337890625, 0.9451223015785217], "10": [151.21405029296875, 357.86651611328125, 0.8995670080184937], "11": [389.47900390625, 480.0, 0.19042900204658508], "12": [243.7601776123047, 480.0, 0.18978971242904663], "13": [452.1689453125, 407.3668212890625, 0.0009142664493992925], "14": [227.95220947265625, 408.85919189453125, 0.001019523129798472], "15": [500.97552490234375, 408.39068603515625, 7.858658500481397e-05], "16": [239.2005615234375, 427.28363037109375, 9.448757191421464e-05]}} +{"t": 33.979794, "tracked": true, "track_id": 1, "bbox": [66.48178100585938, 23.39663314819336, 596.0809326171875, 479.38726806640625], "det_conf": 0.9049063920974731, "mean_kpt_conf": 0.9206784990700808, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7673926361054078, "right_lift": -0.9129735892519383, "left_bend": 0.7483739550423429, "right_bend": 0.869937047409154}, "keypoints": {"0": [258.22930908203125, 133.9528045654297, 0.9990487694740295], "1": [280.8819885253906, 104.85862731933594, 0.9988229870796204], "2": [236.99530029296875, 114.29751586914062, 0.9905491471290588], "3": [327.762451171875, 108.81977844238281, 0.9818838834762573], "4": [223.15394592285156, 125.36559295654297, 0.47416582703590393], "5": [405.01171875, 217.1334991455078, 0.995238184928894], "6": [187.7447967529297, 230.46641540527344, 0.995703399181366], "7": [527.3674926757812, 363.57489013671875, 0.9357752799987793], "8": [113.95126342773438, 395.585205078125, 0.9225419163703918], "9": [538.3958740234375, 247.1889190673828, 0.9389853477478027], "10": [154.54249572753906, 358.37945556640625, 0.8947487473487854], "11": [388.5562744140625, 480.0, 0.179884135723114], "12": [241.88735961914062, 480.0, 0.18619085848331451], "13": [445.91107177734375, 409.20654296875, 0.0009191020508296788], "14": [220.21102905273438, 409.7972412109375, 0.0010624328861013055], "15": [489.44805908203125, 415.5418701171875, 7.987055869307369e-05], "16": [229.47036743164062, 433.1646728515625, 9.815985686145723e-05]}} +{"t": 34.046165, "tracked": true, "track_id": 1, "bbox": [66.60775756835938, 23.469541549682617, 585.8922729492188, 479.6634216308594], "det_conf": 0.9102190732955933, "mean_kpt_conf": 0.9207581850615415, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7641116009795053, "right_lift": -0.9109837036284978, "left_bend": 0.7452906307774085, "right_bend": 0.901649404318105}, "keypoints": {"0": [258.22662353515625, 133.3814697265625, 0.9991191029548645], "1": [281.1986389160156, 104.36741638183594, 0.9988797307014465], "2": [236.8045654296875, 113.2576675415039, 0.9912614822387695], "3": [327.851318359375, 108.5353012084961, 0.9802864193916321], "4": [221.81875610351562, 124.08602905273438, 0.47394540905952454], "5": [400.8399658203125, 218.46353149414062, 0.9950761198997498], "6": [187.46820068359375, 231.3655242919922, 0.9952898025512695], "7": [522.2599487304688, 362.28729248046875, 0.9368507862091064], "8": [114.04885864257812, 393.5307922363281, 0.9148509502410889], "9": [533.6688232421875, 247.49264526367188, 0.9443200826644897], "10": [150.92063903808594, 352.66876220703125, 0.8984601497650146], "11": [384.0888671875, 480.0, 0.17663618922233582], "12": [240.66073608398438, 480.0, 0.17546996474266052], "13": [445.1540222167969, 405.35302734375, 0.0010675487574189901], "14": [229.42483520507812, 406.2091064453125, 0.0011799049098044634], "15": [492.8456115722656, 409.41729736328125, 9.60002071224153e-05], "16": [245.46160888671875, 426.1524353027344, 0.00011442617687862366]}} +{"t": 34.081412, "tracked": true, "track_id": 1, "bbox": [66.71151733398438, 23.406219482421875, 582.0628662109375, 479.68231201171875], "det_conf": 0.9110152125358582, "mean_kpt_conf": 0.9246476563540372, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.764836038503845, "right_lift": -0.9120639022792529, "left_bend": 0.7520469898575127, "right_bend": 0.8723885463166312}, "keypoints": {"0": [259.6846618652344, 133.07034301757812, 0.9991312623023987], "1": [282.1300354003906, 104.10051727294922, 0.9988823533058167], "2": [237.98562622070312, 113.98918151855469, 0.991860568523407], "3": [328.05743408203125, 108.34513854980469, 0.9805905818939209], "4": [222.9993896484375, 126.25447845458984, 0.5055855512619019], "5": [402.08282470703125, 215.93667602539062, 0.9953112006187439], "6": [186.43724060058594, 231.73580932617188, 0.9957784414291382], "7": [521.38134765625, 357.57012939453125, 0.9397000074386597], "8": [113.67543029785156, 393.5788269042969, 0.9248305559158325], "9": [530.3648681640625, 244.03045654296875, 0.9415392279624939], "10": [151.18075561523438, 358.8216552734375, 0.897914469242096], "11": [383.7914733886719, 480.0, 0.2038009762763977], "12": [238.28561401367188, 480.0, 0.20734012126922607], "13": [447.024169921875, 413.0367736816406, 0.0009792770724743605], "14": [224.17071533203125, 415.7186279296875, 0.001113603007979691], "15": [489.6490478515625, 417.12548828125, 8.333845471497625e-05], "16": [235.05877685546875, 436.8829345703125, 0.00010081740038003772]}} +{"t": 34.14244, "tracked": true, "track_id": 1, "bbox": [67.6534194946289, 23.893333435058594, 575.4144897460938, 479.2759094238281], "det_conf": 0.9095578193664551, "mean_kpt_conf": 0.9244047945195978, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7369666317983748, "right_lift": -0.8868329646249782, "left_bend": 0.7381432116451391, "right_bend": 0.8193372705242127}, "keypoints": {"0": [259.64324951171875, 133.1075439453125, 0.9990501999855042], "1": [281.3104248046875, 104.2608642578125, 0.9986188411712646], "2": [239.31683349609375, 114.33734130859375, 0.993287980556488], "3": [326.8764953613281, 108.96734619140625, 0.977167546749115], "4": [226.80133056640625, 126.28402709960938, 0.5989269614219666], "5": [396.7636413574219, 226.99667358398438, 0.9934877157211304], "6": [187.2589569091797, 231.29949951171875, 0.9947404265403748], "7": [523.8165283203125, 365.52264404296875, 0.8903475403785706], "8": [107.05410766601562, 385.2268371582031, 0.8928448557853699], "9": [534.7534790039062, 229.82254028320312, 0.9332164525985718], "10": [164.0708770751953, 352.363037109375, 0.8967642188072205], "11": [361.1248474121094, 480.0, 0.11428026109933853], "12": [225.8830108642578, 480.0, 0.12946763634681702], "13": [414.1613464355469, 405.3260803222656, 0.0014022045070305467], "14": [239.06634521484375, 400.3480224609375, 0.0018398156389594078], "15": [456.0489501953125, 405.696533203125, 0.00015907805936876684], "16": [270.2486572265625, 425.51263427734375, 0.00020745261281263083]}} +{"t": 34.207559, "tracked": true, "track_id": 1, "bbox": [65.38423156738281, 23.942974090576172, 565.3522338867188, 479.38311767578125], "det_conf": 0.9186945557594299, "mean_kpt_conf": 0.9149095470255072, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7769557550613104, "right_lift": -0.8733278446555858, "left_bend": 0.7415519479087703, "right_bend": 0.8514368843887985}, "keypoints": {"0": [259.87420654296875, 132.55419921875, 0.9988054037094116], "1": [281.0359191894531, 103.60200500488281, 0.9983440637588501], "2": [237.64511108398438, 113.50529479980469, 0.9902741312980652], "3": [328.4896240234375, 108.36917114257812, 0.971187174320221], "4": [223.48651123046875, 127.02207946777344, 0.5204885005950928], "5": [403.5919494628906, 229.72433471679688, 0.9921643733978271], "6": [193.345703125, 232.4420166015625, 0.99024498462677], "7": [512.2947998046875, 363.8782653808594, 0.9070795178413391], "8": [108.32171630859375, 384.872314453125, 0.8587759733200073], "9": [530.53125, 225.42095947265625, 0.9431367516517639], "10": [147.55674743652344, 358.3018798828125, 0.8935041427612305], "11": [372.38690185546875, 480.0, 0.11414627730846405], "12": [236.41964721679688, 480.0, 0.1109212189912796], "13": [414.0043029785156, 417.691162109375, 0.0019891841802746058], "14": [244.34486389160156, 415.0149230957031, 0.002096543088555336], "15": [451.9886779785156, 433.744873046875, 0.00019899899780284613], "16": [279.73687744140625, 463.311279296875, 0.00021948870562482625]}} +{"t": 34.271536, "tracked": true, "track_id": 1, "bbox": [67.49256134033203, 24.600181579589844, 562.9862060546875, 479.1812744140625], "det_conf": 0.9208128452301025, "mean_kpt_conf": 0.9208361614834178, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7521845544894457, "right_lift": -0.8922986461023006, "left_bend": 0.7663258386727572, "right_bend": 0.8256566736090865}, "keypoints": {"0": [259.4578857421875, 133.77880859375, 0.999024510383606], "1": [281.01458740234375, 104.41885375976562, 0.9986746311187744], "2": [238.6416015625, 114.67446899414062, 0.9927610158920288], "3": [326.847900390625, 107.11660766601562, 0.9792551398277283], "4": [225.6764373779297, 125.44781494140625, 0.5657073855400085], "5": [399.64068603515625, 222.55564880371094, 0.993249773979187], "6": [186.79600524902344, 228.90667724609375, 0.9945729374885559], "7": [523.4567260742188, 363.88983154296875, 0.8910936117172241], "8": [107.43911743164062, 385.7584533691406, 0.8912531137466431], "9": [525.4497680664062, 228.16827392578125, 0.9321603775024414], "10": [157.1588592529297, 354.9528503417969, 0.8914452791213989], "11": [365.42578125, 480.0, 0.11478295177221298], "12": [227.41360473632812, 480.0, 0.12989912927150726], "13": [411.0379333496094, 405.04583740234375, 0.0014253651024773717], "14": [229.05267333984375, 399.9228820800781, 0.0018124664202332497], "15": [450.3409118652344, 409.46807861328125, 0.0001572763139847666], "16": [259.28594970703125, 428.67230224609375, 0.00020198804850224406]}} +{"t": 34.340214, "tracked": true, "track_id": 1, "bbox": [66.89512634277344, 24.4256649017334, 561.54638671875, 479.23919677734375], "det_conf": 0.9211187362670898, "mean_kpt_conf": 0.9219799421050332, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7271084470096556, "right_lift": -0.8835019764670171, "left_bend": 0.7599317880108699, "right_bend": 0.8212136851044786}, "keypoints": {"0": [260.04583740234375, 133.99270629882812, 0.9990392923355103], "1": [281.22265625, 104.97332763671875, 0.9986476302146912], "2": [239.0228271484375, 115.15011596679688, 0.9933846592903137], "3": [325.5248107910156, 108.7984619140625, 0.9777405261993408], "4": [225.42605590820312, 127.20960998535156, 0.5899785161018372], "5": [394.62689208984375, 225.27130126953125, 0.9923948049545288], "6": [189.0662841796875, 230.79083251953125, 0.994056224822998], "7": [524.5106811523438, 362.83355712890625, 0.880914032459259], "8": [107.52923583984375, 384.5780334472656, 0.8845975995063782], "9": [524.1685791015625, 225.94796752929688, 0.9345273375511169], "10": [160.24288940429688, 354.2832336425781, 0.8964987397193909], "11": [358.507568359375, 480.0, 0.10464715212583542], "12": [226.53759765625, 480.0, 0.12014473229646683], "13": [403.21588134765625, 409.0556945800781, 0.001470850664190948], "14": [235.79885864257812, 401.94769287109375, 0.0019014105200767517], "15": [446.19036865234375, 415.1117858886719, 0.00016355029947590083], "16": [266.60528564453125, 431.90869140625, 0.0002119356649927795]}} +{"t": 34.373578, "tracked": true, "track_id": 1, "bbox": [67.87055206298828, 23.943445205688477, 559.0106811523438, 479.37713623046875], "det_conf": 0.9210169911384583, "mean_kpt_conf": 0.9166316986083984, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7484276420717939, "right_lift": -0.8769629595495132, "left_bend": 0.7609775354204081, "right_bend": 0.8307911759269803}, "keypoints": {"0": [258.9173583984375, 134.0306396484375, 0.9989938139915466], "1": [280.441650390625, 104.73880004882812, 0.9985686540603638], "2": [238.53909301757812, 115.25929260253906, 0.9927471280097961], "3": [326.46343994140625, 110.35665893554688, 0.9774454832077026], "4": [226.31057739257812, 128.63253784179688, 0.5673884749412537], "5": [396.8649597167969, 234.07675170898438, 0.992279052734375], "6": [189.7796173095703, 234.21678161621094, 0.9934574961662292], "7": [520.1383666992188, 373.18853759765625, 0.8704119324684143], "8": [107.74803161621094, 383.91497802734375, 0.867932915687561], "9": [524.071044921875, 220.8105926513672, 0.9340768456459045], "10": [160.60816955566406, 352.3782958984375, 0.8896468877792358], "11": [357.9457702636719, 480.0, 0.08378561586141586], "12": [224.8568572998047, 480.0, 0.09460095316171646], "13": [399.7791442871094, 400.587890625, 0.0014264006167650223], "14": [230.75372314453125, 391.498046875, 0.0017964123981073499], "15": [446.1318359375, 402.83599853515625, 0.0001742043241392821], "16": [267.75567626953125, 423.5707092285156, 0.000221189548028633]}} +{"t": 34.407047, "tracked": true, "track_id": 1, "bbox": [73.96743774414062, 23.381298065185547, 556.4113159179688, 478.94091796875], "det_conf": 0.9277164340019226, "mean_kpt_conf": 0.9076791243119673, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7458664351348808, "right_lift": -0.8985768195504078, "left_bend": 0.7908173521094896, "right_bend": 0.8660197813987077}, "keypoints": {"0": [259.27032470703125, 134.56869506835938, 0.9988393187522888], "1": [281.79351806640625, 104.82942199707031, 0.9984656572341919], "2": [238.54684448242188, 114.40779113769531, 0.991077184677124], "3": [328.13385009765625, 110.01478576660156, 0.9772424101829529], "4": [223.58282470703125, 126.17535400390625, 0.5212954878807068], "5": [400.25177001953125, 232.55850219726562, 0.9930058121681213], "6": [186.41165161132812, 241.12091064453125, 0.9928094148635864], "7": [521.78955078125, 368.6515197753906, 0.8718007206916809], "8": [111.48463439941406, 394.5511474609375, 0.8317021131515503], "9": [511.6734619140625, 227.99127197265625, 0.9357165098190308], "10": [163.73568725585938, 350.931884765625, 0.8725157380104065], "11": [370.2804260253906, 480.0, 0.10435360670089722], "12": [234.9215545654297, 480.0, 0.10298213362693787], "13": [404.9206237792969, 403.98358154296875, 0.0018144784262403846], "14": [248.90631103515625, 399.5778503417969, 0.0020560494158416986], "15": [428.47625732421875, 405.61474609375, 0.0002036618097918108], "16": [281.0472412109375, 420.834228515625, 0.00024559415760450065]}} +{"t": 34.476494, "tracked": true, "track_id": 1, "bbox": [70.6160888671875, 24.26324462890625, 555.65283203125, 479.4515686035156], "det_conf": 0.9253904819488525, "mean_kpt_conf": 0.9211526187983426, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.725911281331605, "right_lift": -0.8638087335737485, "left_bend": 0.7622888024570248, "right_bend": 0.8253776447274356}, "keypoints": {"0": [259.0577392578125, 133.66363525390625, 0.9990411400794983], "1": [280.610595703125, 104.36526489257812, 0.9985910058021545], "2": [237.87692260742188, 114.72940063476562, 0.993689775466919], "3": [325.90704345703125, 110.39002990722656, 0.9762338995933533], "4": [223.97738647460938, 128.82876586914062, 0.6128724217414856], "5": [395.093505859375, 233.09384155273438, 0.9908170700073242], "6": [190.13455200195312, 235.6065216064453, 0.9939107894897461], "7": [519.628662109375, 364.5317687988281, 0.8487576246261597], "8": [106.23626708984375, 379.45172119140625, 0.8822765946388245], "9": [517.9908447265625, 223.90660095214844, 0.9299739599227905], "10": [163.3559112548828, 348.6767578125, 0.9065145254135132], "11": [358.941650390625, 480.0, 0.08677434176206589], "12": [228.14170837402344, 480.0, 0.1104649230837822], "13": [390.8263854980469, 410.83404541015625, 0.0014026506105437875], "14": [232.35243225097656, 402.4239501953125, 0.0019641565158963203], "15": [432.1751708984375, 416.6197814941406, 0.00016136476187966764], "16": [266.6170654296875, 435.0712890625, 0.0002196145214838907]}} +{"t": 34.537687, "tracked": true, "track_id": 1, "bbox": [67.65055847167969, 24.010665893554688, 554.9157104492188, 479.16278076171875], "det_conf": 0.9281406998634338, "mean_kpt_conf": 0.9166487672112205, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7794735306301449, "right_lift": -0.8900100584209671, "left_bend": 0.7999545058921965, "right_bend": 0.8327212862979233}, "keypoints": {"0": [259.4818420410156, 134.62847900390625, 0.9988934397697449], "1": [280.95098876953125, 104.700439453125, 0.9984738230705261], "2": [238.37991333007812, 115.8228759765625, 0.9922828078269958], "3": [327.44439697265625, 108.14463806152344, 0.9793319702148438], "4": [226.0495147705078, 128.31405639648438, 0.5790985822677612], "5": [401.65899658203125, 230.0330352783203, 0.9919785261154175], "6": [187.32980346679688, 232.13438415527344, 0.9939296245574951], "7": [518.747802734375, 375.7266845703125, 0.8597844243049622], "8": [108.80722045898438, 385.41278076171875, 0.8718762397766113], "9": [511.5689697265625, 227.85586547851562, 0.9283446669578552], "10": [161.26568603515625, 351.65179443359375, 0.8891423344612122], "11": [358.1445007324219, 480.0, 0.09401436895132065], "12": [220.77951049804688, 480.0, 0.11154693365097046], "13": [395.25579833984375, 411.2427978515625, 0.001466466928832233], "14": [224.36563110351562, 403.8941345214844, 0.0019335910910740495], "15": [431.03436279296875, 420.8675537109375, 0.00016060614143498242], "16": [261.8050842285156, 443.91497802734375, 0.00021049354108981788]}} +{"t": 34.601286, "tracked": true, "track_id": 1, "bbox": [70.68769073486328, 23.216949462890625, 555.5602416992188, 479.2409362792969], "det_conf": 0.9226670861244202, "mean_kpt_conf": 0.9157369678670709, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7589944740033675, "right_lift": -0.8854635476026571, "left_bend": 0.8018164408583104, "right_bend": 0.8170853594295522}, "keypoints": {"0": [259.78204345703125, 134.34104919433594, 0.998847484588623], "1": [281.5163269042969, 104.76449584960938, 0.9984601736068726], "2": [238.34249877929688, 114.81671142578125, 0.9919540286064148], "3": [326.8981628417969, 108.77243041992188, 0.9795006513595581], "4": [224.17979431152344, 127.0098876953125, 0.5737910866737366], "5": [399.5478210449219, 230.03981018066406, 0.9919065237045288], "6": [187.32827758789062, 232.44850158691406, 0.9934542179107666], "7": [521.48779296875, 372.1872253417969, 0.8637719750404358], "8": [107.51812744140625, 384.52001953125, 0.8624376058578491], "9": [509.2691650390625, 231.14779663085938, 0.9318959712982178], "10": [161.3206024169922, 354.22369384765625, 0.8870869278907776], "11": [360.681396484375, 480.0, 0.08958619832992554], "12": [225.1813201904297, 480.0, 0.10242915153503418], "13": [394.73583984375, 408.88916015625, 0.0014870769809931517], "14": [230.80538940429688, 400.05841064453125, 0.001863936660811305], "15": [432.4524230957031, 418.32000732421875, 0.00016718596452847123], "16": [269.67584228515625, 435.92218017578125, 0.00021293200552463531]}} +{"t": 34.636929, "tracked": true, "track_id": 1, "bbox": [74.23693084716797, 22.904621124267578, 555.5977172851562, 479.0335693359375], "det_conf": 0.9270276427268982, "mean_kpt_conf": 0.9040526314215227, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7655223299021897, "right_lift": -0.9019172170204157, "left_bend": 0.8213589438032723, "right_bend": 0.8538718378402312}, "keypoints": {"0": [260.48321533203125, 135.10791015625, 0.9988007545471191], "1": [282.7239074707031, 104.86363220214844, 0.9984379410743713], "2": [239.43942260742188, 114.18809509277344, 0.9910516738891602], "3": [328.47088623046875, 108.92440795898438, 0.9785415530204773], "4": [223.87884521484375, 124.8492431640625, 0.525847852230072], "5": [403.1910400390625, 235.8163299560547, 0.9923842549324036], "6": [183.902587890625, 240.75814819335938, 0.9927095174789429], "7": [522.4164428710938, 377.6695861816406, 0.8484047651290894], "8": [109.95692443847656, 395.1723327636719, 0.8145339488983154], "9": [501.7008972167969, 228.21067810058594, 0.9333650469779968], "10": [165.44529724121094, 351.651123046875, 0.8705016374588013], "11": [369.0257263183594, 480.0, 0.08642945438623428], "12": [231.66583251953125, 480.0, 0.08850345015525818], "13": [399.378173828125, 406.56121826171875, 0.0017765513621270657], "14": [249.6349334716797, 399.35418701171875, 0.0020765173248946667], "15": [418.5960998535156, 411.61474609375, 0.00020418717758730054], "16": [290.64813232421875, 426.397216796875, 0.00025299808476120234]}} +{"t": 34.698668, "tracked": true, "track_id": 1, "bbox": [70.48595428466797, 22.671220779418945, 555.5877075195312, 479.3115539550781], "det_conf": 0.9296936392784119, "mean_kpt_conf": 0.9143008589744568, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7496805330855504, "right_lift": -0.8873511368397525, "left_bend": 0.8028886990717891, "right_bend": 0.79685435197078}, "keypoints": {"0": [260.06854248046875, 133.03396606445312, 0.9988502264022827], "1": [282.71002197265625, 104.61270141601562, 0.9984351992607117], "2": [239.85580444335938, 113.48455810546875, 0.9922387003898621], "3": [327.6180114746094, 111.98312377929688, 0.9798386096954346], "4": [226.012939453125, 127.0516357421875, 0.5783801078796387], "5": [399.6251220703125, 233.86790466308594, 0.9915794134140015], "6": [185.3431854248047, 232.83546447753906, 0.9930958151817322], "7": [522.8553466796875, 373.4619140625, 0.8556980490684509], "8": [107.35006713867188, 382.92901611328125, 0.8539464473724365], "9": [507.62957763671875, 227.5513153076172, 0.932759165763855], "10": [162.9656982421875, 355.8322448730469, 0.8824877142906189], "11": [354.91815185546875, 480.0, 0.07740714401006699], "12": [219.00665283203125, 480.0, 0.08930975198745728], "13": [381.884765625, 402.85955810546875, 0.0015180541668087244], "14": [222.237060546875, 390.5277404785156, 0.0018901737639680505], "15": [417.09814453125, 421.56549072265625, 0.0001803852355806157], "16": [266.44415283203125, 434.41162109375, 0.00022788223577663302]}} +{"t": 34.732683, "tracked": true, "track_id": 1, "bbox": [68.39949035644531, 23.121604919433594, 555.9044799804688, 479.4847412109375], "det_conf": 0.9271774291992188, "mean_kpt_conf": 0.9150312326171182, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.719088100737583, "right_lift": -0.8828565649792888, "left_bend": 0.797824815789048, "right_bend": 0.8202463414958985}, "keypoints": {"0": [261.8194885253906, 133.83624267578125, 0.9988611936569214], "1": [283.2571716308594, 105.01945495605469, 0.998497486114502], "2": [241.12957763671875, 114.69662475585938, 0.9922369122505188], "3": [326.6656494140625, 109.44097900390625, 0.9794576168060303], "4": [226.91763305664062, 126.99212646484375, 0.5680657625198364], "5": [396.4858703613281, 226.75457763671875, 0.9920471906661987], "6": [188.2999267578125, 232.34274291992188, 0.9928687214851379], "7": [527.6531982421875, 362.48388671875, 0.8756910562515259], "8": [108.0399169921875, 383.21929931640625, 0.8509960174560547], "9": [509.4787902832031, 226.80096435546875, 0.9372254014015198], "10": [159.37606811523438, 354.01690673828125, 0.8793962001800537], "11": [356.7833557128906, 480.0, 0.09462740272283554], "12": [224.80921936035156, 480.0, 0.10076622664928436], "13": [392.1232604980469, 408.0706787109375, 0.001615355140529573], "14": [236.1795654296875, 398.66314697265625, 0.0018764560809358954], "15": [432.8085021972656, 419.79278564453125, 0.000189612343092449], "16": [277.2035827636719, 431.494873046875, 0.00022923837241251022]}} +{"t": 34.768208, "tracked": true, "track_id": 1, "bbox": [72.99822998046875, 22.442642211914062, 555.0621948242188, 479.4158020019531], "det_conf": 0.9275439977645874, "mean_kpt_conf": 0.9043463847853921, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.746877361992421, "right_lift": -0.9020955151154225, "left_bend": 0.8174404438962248, "right_bend": 0.8529694662290817}, "keypoints": {"0": [262.5337829589844, 134.65228271484375, 0.9987371563911438], "1": [284.3536682128906, 104.92529296875, 0.9984142780303955], "2": [241.4300537109375, 114.18470764160156, 0.9903627038002014], "3": [328.74310302734375, 109.78421020507812, 0.979421854019165], "4": [225.06405639648438, 125.972900390625, 0.5074180364608765], "5": [403.2223815917969, 235.95704650878906, 0.9934264421463013], "6": [184.2490692138672, 241.01007080078125, 0.9921873807907104], "7": [526.203369140625, 374.0878601074219, 0.8764341473579407], "8": [111.79373168945312, 392.4726867675781, 0.8094358444213867], "9": [503.0752868652344, 225.01095581054688, 0.9401225447654724], "10": [166.79335021972656, 349.549560546875, 0.861849844455719], "11": [366.23687744140625, 480.0, 0.10518356412649155], "12": [227.83956909179688, 480.0, 0.0970359817147255], "13": [402.245849609375, 408.9817199707031, 0.0018514645053073764], "14": [244.285888671875, 400.8671875, 0.0019545876421034336], "15": [423.68121337890625, 410.6697692871094, 0.0002063591091427952], "16": [280.5950927734375, 423.9659729003906, 0.0002379030192969367]}} +{"t": 34.801782, "tracked": true, "track_id": 1, "bbox": [70.53245544433594, 23.255813598632812, 556.429443359375, 479.4113464355469], "det_conf": 0.9298994541168213, "mean_kpt_conf": 0.9179736321622675, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7396039717476597, "right_lift": -0.8927122505116606, "left_bend": 0.8034603155089881, "right_bend": 0.8146938810805542}, "keypoints": {"0": [261.201416015625, 133.7002410888672, 0.9988716244697571], "1": [283.05279541015625, 105.287353515625, 0.9984912872314453], "2": [240.3995361328125, 114.49118041992188, 0.9924254417419434], "3": [327.1361083984375, 110.59416198730469, 0.9798511862754822], "4": [225.74957275390625, 127.09486389160156, 0.5783402323722839], "5": [399.7825927734375, 228.54469299316406, 0.9921699166297913], "6": [185.78948974609375, 231.64198303222656, 0.9935840964317322], "7": [525.21142578125, 366.3780212402344, 0.8727550506591797], "8": [109.54931640625, 382.6771240234375, 0.8680589199066162], "9": [508.2232666015625, 226.51055908203125, 0.9344242811203003], "10": [164.72967529296875, 350.99700927734375, 0.8887379169464111], "11": [360.2738037109375, 480.0, 0.10382098704576492], "12": [223.35951232910156, 480.0, 0.1172407791018486], "13": [396.6639709472656, 411.9371337890625, 0.0016019264003261924], "14": [230.22528076171875, 402.0681457519531, 0.001991268014535308], "15": [432.64300537109375, 424.7399597167969, 0.000174367509316653], "16": [269.11297607421875, 437.6114501953125, 0.00022080606140661985]}} +{"t": 34.865768, "tracked": true, "track_id": 1, "bbox": [72.53811645507812, 22.635963439941406, 555.1472778320312, 479.6273498535156], "det_conf": 0.92888343334198, "mean_kpt_conf": 0.9090277444232594, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7290736404064038, "right_lift": -0.9002448599481376, "left_bend": 0.7959984740455749, "right_bend": 0.854947070649108}, "keypoints": {"0": [261.8076171875, 134.15451049804688, 0.9988020658493042], "1": [284.35357666015625, 105.34587097167969, 0.9984476566314697], "2": [241.27969360351562, 113.36067199707031, 0.9910029172897339], "3": [328.4627685546875, 111.24737548828125, 0.9783680438995361], "4": [225.02191162109375, 124.5667724609375, 0.5235493183135986], "5": [398.88092041015625, 233.14219665527344, 0.9935553669929504], "6": [184.37368774414062, 239.61825561523438, 0.9925419092178345], "7": [524.575927734375, 367.0349426269531, 0.8859639763832092], "8": [110.06906127929688, 393.2581787109375, 0.8264303803443909], "9": [508.4332275390625, 224.71041870117188, 0.9414466619491577], "10": [164.4681854248047, 350.6333312988281, 0.869196891784668], "11": [363.9151611328125, 480.0, 0.11411097645759583], "12": [227.90069580078125, 480.0, 0.10546134412288666], "13": [405.2961120605469, 408.4943542480469, 0.0018558625597506762], "14": [247.85665893554688, 401.1795349121094, 0.001981073059141636], "15": [427.66094970703125, 413.1161804199219, 0.00020398753986228257], "16": [277.93182373046875, 422.619140625, 0.00023616124235559255]}} +{"t": 34.899932, "tracked": true, "track_id": 1, "bbox": [69.98789978027344, 22.64786720275879, 556.6279296875, 479.6043395996094], "det_conf": 0.9252687096595764, "mean_kpt_conf": 0.9184159257195212, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7200901285109572, "right_lift": -0.8890894296230613, "left_bend": 0.7786589719852497, "right_bend": 0.8339900575594084}, "keypoints": {"0": [262.33123779296875, 134.7054443359375, 0.9989462494850159], "1": [284.29205322265625, 106.17041015625, 0.9985822439193726], "2": [241.48971557617188, 114.88577270507812, 0.9930539727210999], "3": [327.7199401855469, 110.06826782226562, 0.9785990715026855], "4": [226.14759826660156, 125.62019348144531, 0.589525580406189], "5": [397.48406982421875, 224.90591430664062, 0.9919557571411133], "6": [186.53103637695312, 230.86412048339844, 0.9938609600067139], "7": [526.9906616210938, 359.3042907714844, 0.8699100017547607], "8": [107.36099243164062, 384.64190673828125, 0.871107280254364], "9": [517.074462890625, 220.8541259765625, 0.9305655360221863], "10": [158.49029541015625, 351.5936584472656, 0.8864685297012329], "11": [362.138427734375, 480.0, 0.10093940794467926], "12": [227.33383178710938, 480.0, 0.1160273551940918], "13": [396.0354309082031, 408.23822021484375, 0.0015974574489519], "14": [230.81033325195312, 399.3601989746094, 0.001995735103264451], "15": [432.95977783203125, 417.1235656738281, 0.00018459558486938477], "16": [266.7079772949219, 427.5495910644531, 0.0002340826904401183]}} +{"t": 34.964336, "tracked": true, "track_id": 1, "bbox": [67.9170150756836, 23.52786636352539, 560.5597534179688, 479.59625244140625], "det_conf": 0.9216555953025818, "mean_kpt_conf": 0.9201424446972933, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7554326193042933, "right_lift": -0.8943162223641177, "left_bend": 0.7720141338895525, "right_bend": 0.8065428156932669}, "keypoints": {"0": [261.766845703125, 134.1688232421875, 0.9989168643951416], "1": [283.818603515625, 105.18531799316406, 0.9985067248344421], "2": [241.24681091308594, 114.13742065429688, 0.9926387071609497], "3": [328.5963439941406, 108.25521850585938, 0.9783309698104858], "4": [227.04971313476562, 123.74359130859375, 0.5987716317176819], "5": [400.6775207519531, 225.88877868652344, 0.9929459691047668], "6": [182.96189880371094, 230.05270385742188, 0.9945612549781799], "7": [521.0908203125, 364.71734619140625, 0.8770575523376465], "8": [105.42141723632812, 385.03753662109375, 0.8788783550262451], "9": [521.3312377929688, 227.84625244140625, 0.9272908568382263], "10": [157.75408935546875, 356.5066833496094, 0.8836680054664612], "11": [363.9389953613281, 480.0, 0.10596856474876404], "12": [224.13002014160156, 480.0, 0.12094195932149887], "13": [408.11614990234375, 404.1944580078125, 0.0014982775319367647], "14": [232.9935760498047, 398.38104248046875, 0.0019076729658991098], "15": [440.6686096191406, 409.9486389160156, 0.00017542681598570198], "16": [272.24505615234375, 427.3743896484375, 0.00022492362768389285]}} +{"t": 35.027516, "tracked": true, "track_id": 1, "bbox": [66.9513168334961, 22.891584396362305, 565.5759887695312, 479.4195556640625], "det_conf": 0.9171545505523682, "mean_kpt_conf": 0.925966506654566, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7343258127130899, "right_lift": -0.8779941173403981, "left_bend": 0.7576470778402694, "right_bend": 0.7863449992760289}, "keypoints": {"0": [263.84613037109375, 134.18246459960938, 0.9990516304969788], "1": [284.8983154296875, 104.93646240234375, 0.9986446499824524], "2": [242.55441284179688, 114.36956787109375, 0.9935563206672668], "3": [328.3982238769531, 107.5428466796875, 0.9775854349136353], "4": [227.67372131347656, 124.44879150390625, 0.6071770191192627], "5": [398.2989501953125, 225.04302978515625, 0.9929478168487549], "6": [188.22772216796875, 226.74435424804688, 0.9947163462638855], "7": [526.181884765625, 363.3873596191406, 0.8867878913879395], "8": [105.646240234375, 378.2178955078125, 0.8996282815933228], "9": [528.2340698242188, 228.8350830078125, 0.9333863258361816], "10": [161.19757080078125, 354.70245361328125, 0.9021498560905457], "11": [360.8590393066406, 480.0, 0.1059790700674057], "12": [224.6799774169922, 480.0, 0.12499670684337616], "13": [408.5045471191406, 403.293701171875, 0.001320978393778205], "14": [228.16525268554688, 394.5998840332031, 0.0017623485764488578], "15": [448.6816711425781, 406.4391784667969, 0.00015479848661925644], "16": [255.2591094970703, 422.9720764160156, 0.00020446226699277759]}} +{"t": 35.06425, "tracked": true, "track_id": 1, "bbox": [67.68232727050781, 22.64460563659668, 569.0276489257812, 479.61077880859375], "det_conf": 0.9162229895591736, "mean_kpt_conf": 0.9263458522883329, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7259019456075512, "right_lift": -0.8856472497536438, "left_bend": 0.7470923587415652, "right_bend": 0.834230818699346}, "keypoints": {"0": [264.0865478515625, 133.91082763671875, 0.9990488886833191], "1": [285.0546875, 104.83837890625, 0.9986304044723511], "2": [242.54689025878906, 114.27964782714844, 0.9936720132827759], "3": [327.493408203125, 108.54924011230469, 0.9763362407684326], "4": [226.72665405273438, 125.7568359375, 0.6179618835449219], "5": [396.43121337890625, 226.46250915527344, 0.9932237863540649], "6": [186.5572967529297, 231.4667205810547, 0.9945873022079468], "7": [525.2430419921875, 362.41046142578125, 0.8908514976501465], "8": [106.23367309570312, 384.663818359375, 0.8925784230232239], "9": [530.1980590820312, 225.14083862304688, 0.9343914985656738], "10": [158.90335083007812, 351.1188049316406, 0.8985224366188049], "11": [359.9286804199219, 480.0, 0.11394052952528], "12": [223.92312622070312, 480.0, 0.12853829562664032], "13": [410.8016052246094, 407.22967529296875, 0.0014062270056456327], "14": [230.09176635742188, 400.99151611328125, 0.0017958139069378376], "15": [448.35870361328125, 409.80535888671875, 0.00016030794358812273], "16": [254.95968627929688, 426.7489013671875, 0.00020464637782424688]}} +{"t": 35.097862, "tracked": true, "track_id": 1, "bbox": [66.76495361328125, 22.015687942504883, 572.0985107421875, 479.7650146484375], "det_conf": 0.9160739183425903, "mean_kpt_conf": 0.9245922511274164, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7258646653091367, "right_lift": -0.8937243661711074, "left_bend": 0.7602768674403404, "right_bend": 0.8062017590301106}, "keypoints": {"0": [264.0865478515625, 134.047119140625, 0.9990179538726807], "1": [285.1210632324219, 105.08616638183594, 0.9986415505409241], "2": [242.92002868652344, 113.68840026855469, 0.9932333827018738], "3": [327.11749267578125, 107.71597290039062, 0.9779577851295471], "4": [226.816650390625, 123.201171875, 0.6005693674087524], "5": [397.50457763671875, 223.96896362304688, 0.9931880235671997], "6": [185.2158660888672, 228.236328125, 0.9944882988929749], "7": [528.9776611328125, 362.7105407714844, 0.893192708492279], "8": [107.171630859375, 383.71441650390625, 0.8899656534194946], "9": [528.2742309570312, 232.28404235839844, 0.9356764554977417], "10": [161.9080810546875, 354.042724609375, 0.8945835828781128], "11": [361.5864562988281, 480.0, 0.10642535984516144], "12": [223.81143188476562, 480.0, 0.11932340264320374], "13": [407.2361755371094, 403.28460693359375, 0.0013654519570991397], "14": [223.77162170410156, 395.54437255859375, 0.001696920022368431], "15": [447.52728271484375, 411.07269287109375, 0.000158592956722714], "16": [253.75799560546875, 423.8646240234375, 0.000199441026779823]}} +{"t": 35.161817, "tracked": true, "track_id": 1, "bbox": [67.44019317626953, 21.22187042236328, 579.772216796875, 480.0], "det_conf": 0.9085182547569275, "mean_kpt_conf": 0.9259626269340515, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7664338842545604, "right_lift": -0.9162646573954951, "left_bend": 0.7660655131504945, "right_bend": 0.8637427249575541}, "keypoints": {"0": [263.2806396484375, 132.7875518798828, 0.9990178346633911], "1": [285.960205078125, 104.8306655883789, 0.9986514449119568], "2": [241.61387634277344, 112.55992889404297, 0.9915552735328674], "3": [329.15289306640625, 110.33430480957031, 0.9778571128845215], "4": [224.1371307373047, 123.9801025390625, 0.5212417244911194], "5": [400.57147216796875, 219.43287658691406, 0.994861900806427], "6": [185.62554931640625, 227.73065185546875, 0.9956372380256653], "7": [521.772216796875, 364.0522155761719, 0.9362016320228577], "8": [114.88851928710938, 389.5332946777344, 0.9269787669181824], "9": [526.3970947265625, 240.45416259765625, 0.9420022368431091], "10": [151.93069458007812, 356.34429931640625, 0.901583731174469], "11": [378.13226318359375, 480.0, 0.19474659860134125], "12": [232.59487915039062, 480.0, 0.20418813824653625], "13": [437.37255859375, 413.8328857421875, 0.0010120744118466973], "14": [211.85354614257812, 409.52337646484375, 0.0011627266649156809], "15": [484.4239196777344, 420.2939453125, 8.712724229553714e-05], "16": [225.07852172851562, 432.76318359375, 0.00010552229650784284]}} +{"t": 35.228228, "tracked": true, "track_id": 1, "bbox": [65.6107406616211, 21.371379852294922, 588.9019165039062, 480.0], "det_conf": 0.9087594747543335, "mean_kpt_conf": 0.9242682186040011, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7606115310878799, "right_lift": -0.9095729382301846, "left_bend": 0.7522711155258516, "right_bend": 0.8858066712409399}, "keypoints": {"0": [263.1475524902344, 133.9052734375, 0.9991058707237244], "1": [285.978515625, 104.76600646972656, 0.9987898468971252], "2": [240.84310913085938, 113.05437469482422, 0.9921470284461975], "3": [330.2940368652344, 109.2208023071289, 0.9780578017234802], "4": [223.1795654296875, 123.96082305908203, 0.5269173979759216], "5": [401.39984130859375, 221.82867431640625, 0.9947543144226074], "6": [185.70870971679688, 230.59445190429688, 0.9952387809753418], "7": [525.572998046875, 367.30999755859375, 0.9298884272575378], "8": [111.60235595703125, 392.8037109375, 0.9123501777648926], "9": [534.5360717773438, 242.5537872314453, 0.9423704743385315], "10": [150.26791381835938, 354.2841796875, 0.8973302841186523], "11": [377.7781677246094, 480.0, 0.14800125360488892], "12": [232.9721221923828, 480.0, 0.15060143172740936], "13": [438.2342529296875, 404.449462890625, 0.0009269022266380489], "14": [218.63763427734375, 401.56622314453125, 0.0010406050132587552], "15": [486.180908203125, 409.736083984375, 8.653140685055405e-05], "16": [234.81455993652344, 424.7364501953125, 0.00010318445129087195]}} +{"t": 35.261844, "tracked": true, "track_id": 1, "bbox": [65.18915557861328, 20.87643051147461, 591.7282104492188, 480.0], "det_conf": 0.9093882441520691, "mean_kpt_conf": 0.9264156926761974, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7573362038583223, "right_lift": -0.9105515998378099, "left_bend": 0.7494077027660522, "right_bend": 0.8690042071988064}, "keypoints": {"0": [263.2841796875, 133.84530639648438, 0.9991633892059326], "1": [286.34710693359375, 105.16778564453125, 0.9988715052604675], "2": [241.00265502929688, 112.95822143554688, 0.9925256967544556], "3": [330.09503173828125, 109.39840698242188, 0.9776642918586731], "4": [222.96151733398438, 123.087158203125, 0.5243134498596191], "5": [399.94769287109375, 215.83804321289062, 0.9948931932449341], "6": [186.25772094726562, 226.52203369140625, 0.9953663349151611], "7": [525.573974609375, 361.53125, 0.9372912645339966], "8": [110.71418762207031, 392.91546630859375, 0.9211170077323914], "9": [534.6666259765625, 241.6255645751953, 0.9453727602958679], "10": [151.30540466308594, 356.36383056640625, 0.9039937257766724], "11": [383.39849853515625, 480.0, 0.16121716797351837], "12": [239.8868408203125, 480.0, 0.16361169517040253], "13": [444.395263671875, 401.1474304199219, 0.0009852851508185267], "14": [226.139404296875, 398.77252197265625, 0.0011045308783650398], "15": [492.0828857421875, 413.3681335449219, 8.991885260911658e-05], "16": [239.22848510742188, 425.517822265625, 0.00010777018906082958]}} +{"t": 35.329261, "tracked": true, "track_id": 1, "bbox": [66.84333038330078, 20.773771286010742, 596.6963500976562, 480.0], "det_conf": 0.9081781506538391, "mean_kpt_conf": 0.9276662035421892, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7550024661553131, "right_lift": -0.9179316731860382, "left_bend": 0.7180884159916426, "right_bend": 0.8785688760855328}, "keypoints": {"0": [263.95880126953125, 133.62744140625, 0.9992111921310425], "1": [287.31103515625, 105.10755920410156, 0.998927891254425], "2": [241.4068603515625, 112.42986297607422, 0.992797315120697], "3": [330.36370849609375, 109.55547332763672, 0.9756338596343994], "4": [222.16867065429688, 122.42975616455078, 0.5248733758926392], "5": [395.5570983886719, 214.1691436767578, 0.9953930377960205], "6": [185.92916870117188, 226.5803985595703, 0.9949610233306885], "7": [519.6986083984375, 357.1064758300781, 0.9507425427436829], "8": [113.85897827148438, 393.32879638671875, 0.9211764931678772], "9": [538.6251220703125, 247.186767578125, 0.9504451751708984], "10": [149.67129516601562, 357.8053894042969, 0.9001663327217102], "11": [378.0589904785156, 480.0, 0.1988421380519867], "12": [235.3492889404297, 480.0, 0.18401163816452026], "13": [446.80908203125, 406.2632751464844, 0.0010306022595614195], "14": [219.3937225341797, 406.40185546875, 0.0010400257306173444], "15": [496.14312744140625, 417.5841064453125, 8.880502718966454e-05], "16": [225.2569580078125, 430.4082946777344, 9.786422742763534e-05]}} +{"t": 35.391616, "tracked": true, "track_id": 1, "bbox": [63.970703125, 21.017833709716797, 601.43701171875, 480.0], "det_conf": 0.9071891903877258, "mean_kpt_conf": 0.9272395643320951, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.757598650681357, "right_lift": -0.9148977720456803, "left_bend": 0.7333821008220018, "right_bend": 0.888545682751145}, "keypoints": {"0": [264.06622314453125, 134.0751953125, 0.9991876482963562], "1": [286.9859313964844, 105.40873718261719, 0.9988815188407898], "2": [241.57083129882812, 113.01510620117188, 0.9925554394721985], "3": [330.02386474609375, 109.53317260742188, 0.9763452410697937], "4": [222.55770874023438, 122.9715805053711, 0.5213348865509033], "5": [398.5526428222656, 216.50820922851562, 0.995452344417572], "6": [186.13381958007812, 227.48419189453125, 0.9955008625984192], "7": [524.18115234375, 362.3224792480469, 0.9459916353225708], "8": [112.58883666992188, 394.16375732421875, 0.9244402050971985], "9": [539.0948486328125, 244.99600219726562, 0.9473430514335632], "10": [148.42129516601562, 356.8900146484375, 0.9026023745536804], "11": [383.3208312988281, 480.0, 0.18619775772094727], "12": [239.479736328125, 480.0, 0.18097727000713348], "13": [448.90264892578125, 403.62353515625, 0.0010117028141394258], "14": [223.27310180664062, 401.9902648925781, 0.0010800538584589958], "15": [498.82305908203125, 409.38873291015625, 9.068695362657309e-05], "16": [233.4903564453125, 421.9163818359375, 0.00010469761764397845]}} +{"t": 35.458506, "tracked": true, "track_id": 1, "bbox": [64.4902572631836, 21.20438575744629, 603.158935546875, 479.7267761230469], "det_conf": 0.9076956510543823, "mean_kpt_conf": 0.9268571626056324, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.751668063719309, "right_lift": -0.9094813787077269, "left_bend": 0.720546076098417, "right_bend": 0.8549516858237358}, "keypoints": {"0": [263.8806457519531, 133.7706298828125, 0.9991562366485596], "1": [287.0151062011719, 104.92185974121094, 0.9988495111465454], "2": [241.59909057617188, 112.74203491210938, 0.9921467900276184], "3": [331.0712890625, 109.19198608398438, 0.9760465621948242], "4": [223.30474853515625, 122.79425048828125, 0.5155612826347351], "5": [398.9086608886719, 217.1160125732422, 0.9952900409698486], "6": [185.35955810546875, 228.56390380859375, 0.9952592253684998], "7": [524.015869140625, 359.6985168457031, 0.9466007351875305], "8": [110.16549682617188, 393.0581359863281, 0.9223923683166504], "9": [541.666015625, 248.72105407714844, 0.9493502378463745], "10": [153.58486938476562, 357.488037109375, 0.9047757983207703], "11": [380.91680908203125, 480.0, 0.18330194056034088], "12": [236.6161346435547, 480.0, 0.17582955956459045], "13": [451.02581787109375, 404.46270751953125, 0.0009628967382013798], "14": [228.01954650878906, 404.8459777832031, 0.0010291459038853645], "15": [502.36602783203125, 412.1768798828125, 8.558390254620463e-05], "16": [241.27642822265625, 427.08428955078125, 9.872938971966505e-05]}} +{"t": 35.522697, "tracked": true, "track_id": 1, "bbox": [65.23248291015625, 21.00323486328125, 603.2976684570312, 479.538818359375], "det_conf": 0.9075978994369507, "mean_kpt_conf": 0.9274778637019071, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7465910257726586, "right_lift": -0.9152051475553434, "left_bend": 0.7093866661520458, "right_bend": 0.8664144280430656}, "keypoints": {"0": [264.49835205078125, 133.0876007080078, 0.9991368651390076], "1": [288.5798645019531, 104.9367446899414, 0.9987994432449341], "2": [242.21226501464844, 111.61132049560547, 0.991881787776947], "3": [332.3640441894531, 110.44910430908203, 0.9735615253448486], "4": [222.64576721191406, 121.58179473876953, 0.5026691555976868], "5": [397.5577087402344, 214.6389923095703, 0.9955848455429077], "6": [184.70936584472656, 227.37368774414062, 0.9951932430267334], "7": [522.1544189453125, 354.46331787109375, 0.9554361701011658], "8": [111.79707336425781, 392.9609069824219, 0.9285596609115601], "9": [541.7418212890625, 249.8629608154297, 0.9531276226043701], "10": [150.56259155273438, 357.8234558105469, 0.9083061814308167], "11": [382.72509765625, 480.0, 0.22103922069072723], "12": [237.9339599609375, 480.0, 0.2041734755039215], "13": [457.4559326171875, 403.3135681152344, 0.00110010732896626], "14": [229.82839965820312, 404.2591857910156, 0.0011272834381088614], "15": [506.169677734375, 413.0048828125, 9.636716276872903e-05], "16": [237.96017456054688, 424.3116149902344, 0.00010795296111609787]}} +{"t": 35.587651, "tracked": true, "track_id": 1, "bbox": [64.05435180664062, 20.481447219848633, 601.4678344726562, 479.3830261230469], "det_conf": 0.9047638177871704, "mean_kpt_conf": 0.9289323416623202, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7523228895737737, "right_lift": -0.9123941709477573, "left_bend": 0.7158045912913955, "right_bend": 0.8502181329640611}, "keypoints": {"0": [265.19708251953125, 133.582275390625, 0.9991881251335144], "1": [288.7323913574219, 105.32487487792969, 0.9988754391670227], "2": [242.89657592773438, 111.85330200195312, 0.9924492835998535], "3": [331.8110656738281, 109.814697265625, 0.9751590490341187], "4": [223.16644287109375, 120.78790283203125, 0.5205415487289429], "5": [398.57476806640625, 215.02670288085938, 0.9955621957778931], "6": [185.3736114501953, 225.15151977539062, 0.9954095482826233], "7": [523.6973876953125, 357.912841796875, 0.9519287943840027], "8": [110.87445068359375, 391.21673583984375, 0.9289854764938354], "9": [542.4727172851562, 250.8555145263672, 0.95122891664505], "10": [152.28187561035156, 357.8318786621094, 0.9089273810386658], "11": [383.61968994140625, 480.0, 0.2112189531326294], "12": [238.6613006591797, 480.0, 0.20120090246200562], "13": [453.1781005859375, 405.7135314941406, 0.0010800058953464031], "14": [224.8373260498047, 404.6131591796875, 0.0011322852224111557], "15": [502.419677734375, 416.4013671875, 9.068090002983809e-05], "16": [232.23797607421875, 427.1841125488281, 0.00010318828572053462]}} +{"t": 35.623523, "tracked": true, "track_id": 1, "bbox": [66.23726654052734, 20.503772735595703, 598.996826171875, 479.3395080566406], "det_conf": 0.9077393412590027, "mean_kpt_conf": 0.9279411001638933, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7677224033164691, "right_lift": -0.913116285414763, "left_bend": 0.7143133443136344, "right_bend": 0.8558792614053687}, "keypoints": {"0": [265.313232421875, 133.85858154296875, 0.9991602897644043], "1": [288.9335632324219, 105.13333129882812, 0.9988665580749512], "2": [242.81613159179688, 112.46212005615234, 0.9923290610313416], "3": [333.1495361328125, 108.94548797607422, 0.9748537540435791], "4": [223.95321655273438, 121.57229614257812, 0.5149169564247131], "5": [399.83209228515625, 212.2440948486328, 0.9948370456695557], "6": [188.0938262939453, 225.01617431640625, 0.9953997731208801], "7": [518.788818359375, 354.76629638671875, 0.9461833238601685], "8": [114.12040710449219, 390.69305419921875, 0.9338465332984924], "9": [539.5306396484375, 253.48130798339844, 0.9456459879875183], "10": [153.21237182617188, 357.8934631347656, 0.9113128185272217], "11": [386.2958984375, 480.0, 0.20856551826000214], "12": [241.74270629882812, 480.0, 0.2116362452507019], "13": [450.2742919921875, 406.1335754394531, 0.001047358731739223], "14": [218.95431518554688, 407.526123046875, 0.0011687050573527813], "15": [494.9459533691406, 418.64190673828125, 9.110804239753634e-05], "16": [220.82479858398438, 432.42401123046875, 0.00010797550930874422]}} +{"t": 35.659995, "tracked": true, "track_id": 1, "bbox": [65.71783447265625, 20.966751098632812, 595.6685180664062, 479.3540954589844], "det_conf": 0.9097262024879456, "mean_kpt_conf": 0.9286928610368208, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7696967697949125, "right_lift": -0.9174674586701453, "left_bend": 0.7316857763088811, "right_bend": 0.8898635183804142}, "keypoints": {"0": [266.6408386230469, 133.43019104003906, 0.9991387128829956], "1": [289.6875915527344, 104.78035736083984, 0.9987994432449341], "2": [244.25364685058594, 112.03279113769531, 0.9924712181091309], "3": [332.39715576171875, 108.98060607910156, 0.9755640625953674], "4": [224.65371704101562, 121.66571807861328, 0.5454998016357422], "5": [401.26556396484375, 217.9381561279297, 0.9952097535133362], "6": [184.40931701660156, 228.39051818847656, 0.9956079125404358], "7": [521.3057861328125, 362.664306640625, 0.9421724677085876], "8": [113.37429809570312, 392.2179260253906, 0.9239659309387207], "9": [538.060791015625, 252.17994689941406, 0.9439585208892822], "10": [150.1238250732422, 353.173828125, 0.9032336473464966], "11": [383.00970458984375, 480.0, 0.1960795670747757], "12": [236.39776611328125, 480.0, 0.19523081183433533], "13": [448.4643249511719, 410.18963623046875, 0.0010150712914764881], "14": [221.18218994140625, 410.4073791503906, 0.0011064702412113547], "15": [493.4901428222656, 418.6909484863281, 8.649164374219254e-05], "16": [235.40057373046875, 433.04022216796875, 0.00010063576337415725]}} +{"t": 35.722253, "tracked": true, "track_id": 1, "bbox": [66.56063842773438, 20.878952026367188, 590.0917358398438, 479.4060974121094], "det_conf": 0.9137226343154907, "mean_kpt_conf": 0.9313713583079252, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7616454018067355, "right_lift": -0.9154051035358338, "left_bend": 0.7414447359864412, "right_bend": 0.8649508367569997}, "keypoints": {"0": [266.46734619140625, 133.42344665527344, 0.9992214441299438], "1": [289.7279357910156, 104.70063781738281, 0.9988881945610046], "2": [243.9950408935547, 111.63359832763672, 0.9933629035949707], "3": [332.6278381347656, 108.43399047851562, 0.9755306839942932], "4": [224.19329833984375, 120.49637603759766, 0.5611807703971863], "5": [399.9621887207031, 216.13006591796875, 0.9949386119842529], "6": [185.94476318359375, 227.14663696289062, 0.995896577835083], "7": [521.7379150390625, 359.26397705078125, 0.9393527507781982], "8": [113.7225341796875, 391.3877258300781, 0.9312847852706909], "9": [533.314697265625, 251.81443786621094, 0.9439904689788818], "10": [152.79827880859375, 356.25994873046875, 0.9114377498626709], "11": [382.7029113769531, 480.0, 0.19447176158428192], "12": [237.67190551757812, 480.0, 0.20379610359668732], "13": [444.68865966796875, 413.33551025390625, 0.0009867398766800761], "14": [219.476806640625, 412.3078918457031, 0.0011314366711303592], "15": [491.3233642578125, 422.3287048339844, 8.47958363010548e-05], "16": [230.61865234375, 433.5506286621094, 0.00010208829189650714]}} +{"t": 35.758859, "tracked": true, "track_id": 1, "bbox": [66.8243637084961, 20.871719360351562, 587.4947509765625, 479.3885498046875], "det_conf": 0.9101885557174683, "mean_kpt_conf": 0.9300779808651317, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7681608869287883, "right_lift": -0.9169984943199138, "left_bend": 0.7545532841683045, "right_bend": 0.8688341886686974}, "keypoints": {"0": [267.3601379394531, 133.9874267578125, 0.9991699457168579], "1": [290.5058898925781, 104.81767272949219, 0.9988058805465698], "2": [244.07415771484375, 112.62980651855469, 0.9933479428291321], "3": [333.3892517089844, 108.39974975585938, 0.9741086959838867], "4": [223.59059143066406, 122.50177001953125, 0.5746375918388367], "5": [400.01153564453125, 217.9133758544922, 0.9947729706764221], "6": [185.31008911132812, 228.98568725585938, 0.99562007188797], "7": [521.5426025390625, 363.7226867675781, 0.9330260753631592], "8": [113.64082336425781, 393.744140625, 0.9215933680534363], "9": [530.2259521484375, 250.07992553710938, 0.9411810040473938], "10": [154.3219757080078, 355.9656066894531, 0.9045942425727844], "11": [380.05242919921875, 480.0, 0.178866907954216], "12": [235.94830322265625, 480.0, 0.18475636839866638], "13": [444.1126708984375, 411.9222717285156, 0.0009995506843551993], "14": [226.7844696044922, 411.11627197265625, 0.0011441267561167479], "15": [488.2855224609375, 415.3336181640625, 9.017868433147669e-05], "16": [241.4210205078125, 429.22650146484375, 0.00010847240628208965]}} +{"t": 35.821833, "tracked": true, "track_id": 1, "bbox": [66.6815185546875, 21.74834632873535, 579.0960083007812, 478.93109130859375], "det_conf": 0.9095933437347412, "mean_kpt_conf": 0.9279975078322671, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7224389375306619, "right_lift": -0.8894773800916107, "left_bend": 0.739593743833089, "right_bend": 0.8377194010064346}, "keypoints": {"0": [268.8738708496094, 133.98251342773438, 0.9990191459655762], "1": [291.3841857910156, 105.33619689941406, 0.9985274076461792], "2": [246.63385009765625, 112.68875122070312, 0.9938681721687317], "3": [332.3705749511719, 111.27011108398438, 0.9730534553527832], "4": [226.85919189453125, 123.94776916503906, 0.6497878432273865], "5": [395.07464599609375, 231.7574920654297, 0.9935812950134277], "6": [184.47598266601562, 233.62181091308594, 0.9942253232002258], "7": [525.335693359375, 367.8594970703125, 0.894839346408844], "8": [106.39047241210938, 385.60968017578125, 0.8776445388793945], "9": [532.4501953125, 237.72799682617188, 0.9373252987861633], "10": [159.84385681152344, 350.09918212890625, 0.8961007595062256], "11": [360.419921875, 480.0, 0.10160337388515472], "12": [225.04367065429688, 480.0, 0.10626329481601715], "13": [422.5289611816406, 397.118408203125, 0.0014122509164735675], "14": [249.88259887695312, 390.1178283691406, 0.0017034480115398765], "15": [461.0294189453125, 396.7603759765625, 0.0001705633185338229], "16": [283.1896057128906, 408.9644470214844, 0.000210275684366934]}} +{"t": 35.888281, "tracked": true, "track_id": 1, "bbox": [67.5140380859375, 21.638938903808594, 572.5474243164062, 479.52789306640625], "det_conf": 0.9106194376945496, "mean_kpt_conf": 0.9282292235981334, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7613573081757252, "right_lift": -0.9130188920828229, "left_bend": 0.7777299122453687, "right_bend": 0.8556971514450086}, "keypoints": {"0": [267.7470703125, 133.3867950439453, 0.9990629553794861], "1": [290.3963317871094, 105.04524230957031, 0.9986121654510498], "2": [245.24891662597656, 112.32052612304688, 0.9928954243659973], "3": [332.6932373046875, 109.28285217285156, 0.9735984802246094], "4": [225.13677978515625, 122.3989028930664, 0.5820685029029846], "5": [400.60089111328125, 222.06729125976562, 0.9945027828216553], "6": [184.8414306640625, 229.83424377441406, 0.9952467083930969], "7": [520.093505859375, 362.3912353515625, 0.9253975749015808], "8": [115.21237182617188, 385.68115234375, 0.9087689518928528], "9": [519.267578125, 246.23165893554688, 0.9415369033813477], "10": [154.7893524169922, 352.5292663574219, 0.8988310098648071], "11": [374.1405029296875, 480.0, 0.18868231773376465], "12": [230.69027709960938, 480.0, 0.19210967421531677], "13": [434.6854248046875, 415.6585693359375, 0.0012764186831191182], "14": [229.4925994873047, 412.2804260253906, 0.0014262640615925193], "15": [477.1882019042969, 418.76898193359375, 0.00011452595208538696], "16": [254.94943237304688, 431.4610900878906, 0.0001349810481769964]}} +{"t": 35.953204, "tracked": true, "track_id": 1, "bbox": [67.15516662597656, 20.72932243347168, 567.207275390625, 479.2783508300781], "det_conf": 0.9166157841682434, "mean_kpt_conf": 0.9257452271201394, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7279959130131921, "right_lift": -0.8966661275854749, "left_bend": 0.7481794682692113, "right_bend": 0.8117242626725129}, "keypoints": {"0": [268.21502685546875, 133.828857421875, 0.998940646648407], "1": [290.9051513671875, 105.93505859375, 0.9985042810440063], "2": [247.32449340820312, 113.14894104003906, 0.9932515025138855], "3": [332.7908020019531, 109.53196716308594, 0.9756388068199158], "4": [230.29180908203125, 121.81610107421875, 0.6215038299560547], "5": [394.8649597167969, 221.15899658203125, 0.9932126998901367], "6": [186.5985870361328, 226.0373992919922, 0.9941163063049316], "7": [520.383056640625, 354.44244384765625, 0.9016961455345154], "8": [110.68572998046875, 379.79241943359375, 0.8843182921409607], "9": [524.74609375, 232.33319091796875, 0.9353824257850647], "10": [158.43798828125, 352.4072265625, 0.8866325616836548], "11": [356.9640808105469, 480.0, 0.14228355884552002], "12": [222.7757110595703, 480.0, 0.14918872714042664], "13": [408.95172119140625, 412.64306640625, 0.0016669220058247447], "14": [238.2071075439453, 406.3426513671875, 0.0019530756399035454], "15": [445.0261535644531, 419.256591796875, 0.00018413063662592322], "16": [271.8276062011719, 429.85211181640625, 0.0002210236416431144]}} +{"t": 36.017537, "tracked": true, "track_id": 1, "bbox": [69.17285919189453, 21.89884376525879, 561.387451171875, 479.2459716796875], "det_conf": 0.918394923210144, "mean_kpt_conf": 0.9264586947181008, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.71846162656882, "right_lift": -0.8798465060586166, "left_bend": 0.7622693671915587, "right_bend": 0.8118759940356661}, "keypoints": {"0": [268.5143127441406, 133.94068908691406, 0.9990251064300537], "1": [290.6163635253906, 104.9287109375, 0.9985440969467163], "2": [246.18360900878906, 113.37020874023438, 0.9941437840461731], "3": [332.3382873535156, 109.5731201171875, 0.9737750887870789], "4": [227.80413818359375, 124.77175903320312, 0.6490222215652466], "5": [394.2904968261719, 228.23060607910156, 0.9917913675308228], "6": [189.30889892578125, 231.27792358398438, 0.9938870072364807], "7": [524.3990478515625, 362.62176513671875, 0.8744098544120789], "8": [108.263671875, 381.31719970703125, 0.8792985081672668], "9": [521.486083984375, 232.34109497070312, 0.9355279803276062], "10": [161.936279296875, 353.06488037109375, 0.901620626449585], "11": [357.36260986328125, 480.0, 0.09865661710500717], "12": [226.8834228515625, 480.0, 0.11293001472949982], "13": [405.3914794921875, 409.6607666015625, 0.001463814522139728], "14": [247.16818237304688, 401.0929260253906, 0.0018795228097587824], "15": [447.3907775878906, 415.4437255859375, 0.00017061537073459476], "16": [283.9895324707031, 427.76080322265625, 0.00021918359561823308]}} +{"t": 36.054304, "tracked": true, "track_id": 1, "bbox": [68.26934051513672, 21.790828704833984, 559.4371337890625, 479.2243957519531], "det_conf": 0.9197571277618408, "mean_kpt_conf": 0.9220901565118269, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.732597151951535, "right_lift": -0.8893149085506726, "left_bend": 0.7599771680674474, "right_bend": 0.8321518913624268}, "keypoints": {"0": [268.0298767089844, 134.24302673339844, 0.9989603757858276], "1": [290.9891357421875, 105.599853515625, 0.9984747767448425], "2": [246.21109008789062, 112.89730834960938, 0.9936477541923523], "3": [332.9603271484375, 111.8331298828125, 0.9737519025802612], "4": [227.48995971679688, 124.23788452148438, 0.6378059387207031], "5": [395.3880615234375, 233.52841186523438, 0.9921022057533264], "6": [185.88685607910156, 234.24295043945312, 0.9934158325195312], "7": [521.8129272460938, 369.5995178222656, 0.8715622425079346], "8": [107.32330322265625, 387.0276794433594, 0.8588353395462036], "9": [522.567626953125, 229.5153045654297, 0.9348431825637817], "10": [160.35678100585938, 353.1444396972656, 0.889592170715332], "11": [357.5401611328125, 480.0, 0.08599232882261276], "12": [224.1223907470703, 480.0, 0.09320806711912155], "13": [405.65252685546875, 402.677734375, 0.0015147922094911337], "14": [244.07571411132812, 393.410888671875, 0.0018266739789396524], "15": [444.37530517578125, 409.3695373535156, 0.00018780816753860563], "16": [284.2976989746094, 420.6764831542969, 0.00023104932915885001]}} +{"t": 36.11747, "tracked": true, "track_id": 1, "bbox": [70.87053680419922, 21.327756881713867, 556.171875, 479.490478515625], "det_conf": 0.9243292808532715, "mean_kpt_conf": 0.9238096854903481, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7154487643437009, "right_lift": -0.8834480372788384, "left_bend": 0.7662901763453482, "right_bend": 0.8321031961940342}, "keypoints": {"0": [268.16986083984375, 134.1612091064453, 0.9989537000656128], "1": [291.1998291015625, 105.7879638671875, 0.9984568357467651], "2": [246.5252227783203, 113.16603088378906, 0.9939508438110352], "3": [333.2280578613281, 111.91018676757812, 0.9740256667137146], "4": [228.1486358642578, 124.56982421875, 0.6541186571121216], "5": [395.05865478515625, 230.57374572753906, 0.9913623929023743], "6": [187.2338104248047, 233.45248413085938, 0.9937415719032288], "7": [522.75830078125, 361.3410339355469, 0.8615121841430664], "8": [108.03598022460938, 382.7861328125, 0.8691666126251221], "9": [517.509765625, 227.89004516601562, 0.931334912776947], "10": [161.7957763671875, 349.40203857421875, 0.8952831625938416], "11": [355.7380676269531, 480.0, 0.09323760867118835], "12": [223.67349243164062, 480.0, 0.10809633135795593], "13": [395.9638366699219, 408.7601318359375, 0.0015410211635753512], "14": [238.94366455078125, 399.4724426269531, 0.001964753959327936], "15": [431.60504150390625, 416.9168395996094, 0.00018949883815366775], "16": [276.3570251464844, 425.7369689941406, 0.00024096110428217798]}} +{"t": 36.185065, "tracked": true, "track_id": 1, "bbox": [71.84725189208984, 21.241750717163086, 555.7971801757812, 479.49615478515625], "det_conf": 0.9261807799339294, "mean_kpt_conf": 0.9228447784077037, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7041114555424772, "right_lift": -0.8797704731945387, "left_bend": 0.7669465346005467, "right_bend": 0.8331867094684103}, "keypoints": {"0": [268.41595458984375, 133.61944580078125, 0.9989237189292908], "1": [291.2811279296875, 105.72586059570312, 0.9984229803085327], "2": [247.0998077392578, 113.20883178710938, 0.9937135577201843], "3": [332.5859375, 113.2628173828125, 0.9741619825363159], "4": [228.85159301757812, 126.14401245117188, 0.6457594633102417], "5": [392.7457275390625, 232.39071655273438, 0.9916752576828003], "6": [187.08177185058594, 235.43246459960938, 0.9931836724281311], "7": [523.103759765625, 361.65130615234375, 0.8718913793563843], "8": [106.80337524414062, 383.9952697753906, 0.8567323088645935], "9": [515.3134765625, 226.23773193359375, 0.937028706073761], "10": [161.37265014648438, 350.43939208984375, 0.8897995352745056], "11": [351.64337158203125, 480.0, 0.09455585479736328], "12": [221.37181091308594, 480.0, 0.10226250439882278], "13": [395.18743896484375, 409.34063720703125, 0.0016031335107982159], "14": [242.43392944335938, 399.5970458984375, 0.0019040185725316405], "15": [436.8302001953125, 417.7009582519531, 0.00019506127864588052], "16": [283.9225158691406, 425.7574462890625, 0.0002364852698519826]}} +{"t": 36.247655, "tracked": true, "track_id": 1, "bbox": [73.57511138916016, 20.901403427124023, 553.9037475585938, 479.63671875], "det_conf": 0.9246982336044312, "mean_kpt_conf": 0.9112516424872659, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7241596982381975, "right_lift": -0.9002574856762859, "left_bend": 0.7975550672499672, "right_bend": 0.8515155509105706}, "keypoints": {"0": [268.37408447265625, 133.95706176757812, 0.99871826171875], "1": [291.3190002441406, 105.53886413574219, 0.9982947707176208], "2": [247.31048583984375, 112.39141845703125, 0.9913328289985657], "3": [333.0028381347656, 112.16812133789062, 0.9757973551750183], "4": [227.80398559570312, 123.43017578125, 0.573164165019989], "5": [399.1519470214844, 234.91358947753906, 0.9938098788261414], "6": [181.415283203125, 242.47012329101562, 0.992706835269928], "7": [523.5659790039062, 365.55657958984375, 0.887353777885437], "8": [107.01014709472656, 396.3292541503906, 0.8118683695793152], "9": [506.19000244140625, 227.25303649902344, 0.940014660358429], "10": [164.7307586669922, 352.0950927734375, 0.86070716381073], "11": [364.1939392089844, 480.0, 0.11861715465784073], "12": [227.26182556152344, 480.0, 0.10435973852872849], "13": [412.06976318359375, 409.30389404296875, 0.0019181709503754973], "14": [260.8797607421875, 403.5523376464844, 0.0019498865585774183], "15": [431.12347412109375, 410.61376953125, 0.0002193100517615676], "16": [297.64935302734375, 418.1900939941406, 0.00024506228510290384]}} +{"t": 36.317168, "tracked": true, "track_id": 1, "bbox": [68.00524139404297, 21.43859100341797, 554.802001953125, 479.8329772949219], "det_conf": 0.9190737009048462, "mean_kpt_conf": 0.9199540886011991, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.725046781797297, "right_lift": -0.8795252809193135, "left_bend": 0.772896934380298, "right_bend": 0.8131054395544899}, "keypoints": {"0": [267.4361877441406, 134.44659423828125, 0.9989058971405029], "1": [290.5203552246094, 106.144287109375, 0.9983991980552673], "2": [246.49757385253906, 113.04605102539062, 0.9935965538024902], "3": [333.1279296875, 112.08448791503906, 0.975160539150238], "4": [228.9502410888672, 123.39208984375, 0.6418375968933105], "5": [396.6818542480469, 235.186767578125, 0.9916059970855713], "6": [184.583740234375, 233.6057586669922, 0.993526816368103], "7": [522.233154296875, 367.3642272949219, 0.8545520901679993], "8": [104.56771850585938, 381.50067138671875, 0.854232132434845], "9": [515.683837890625, 225.79302978515625, 0.9307923913002014], "10": [160.8294219970703, 351.6561279296875, 0.8868857622146606], "11": [351.895751953125, 480.0, 0.08656614273786545], "12": [217.53733825683594, 480.0, 0.09781546145677567], "13": [395.5281982421875, 408.6709289550781, 0.0015590294497087598], "14": [239.5169219970703, 397.09747314453125, 0.0019514868035912514], "15": [430.27490234375, 412.94091796875, 0.00019480848277453333], "16": [282.59130859375, 422.30059814453125, 0.0002451433683745563]}} +{"t": 36.381476, "tracked": true, "track_id": 1, "bbox": [73.4443130493164, 20.907472610473633, 557.4264526367188, 479.7392883300781], "det_conf": 0.9245876669883728, "mean_kpt_conf": 0.9103345383297313, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7117203245037743, "right_lift": -0.900983117455355, "left_bend": 0.7843375177577852, "right_bend": 0.8625787203266038}, "keypoints": {"0": [267.0621643066406, 135.2325439453125, 0.9986975193023682], "1": [290.3603515625, 106.1524658203125, 0.998199462890625], "2": [245.6717529296875, 113.17523193359375, 0.9917672276496887], "3": [333.0733642578125, 112.09040832519531, 0.9741437435150146], "4": [226.57240295410156, 123.63189697265625, 0.5971731543540955], "5": [399.2393798828125, 235.7694854736328, 0.9927006959915161], "6": [182.71636962890625, 243.50808715820312, 0.9924383759498596], "7": [525.6299438476562, 363.82568359375, 0.8605620861053467], "8": [109.89678955078125, 394.7322082519531, 0.8047375679016113], "9": [511.53094482421875, 225.16070556640625, 0.9358794689178467], "10": [165.0636749267578, 349.17236328125, 0.8673806190490723], "11": [362.0312805175781, 480.0, 0.09776564687490463], "12": [227.25514221191406, 480.0, 0.09236543625593185], "13": [407.2127685546875, 404.3021240234375, 0.001959611428901553], "14": [265.7146301269531, 399.0286865234375, 0.0021806424483656883], "15": [420.67852783203125, 409.7381591796875, 0.00023503249394707382], "16": [303.2972106933594, 418.411376953125, 0.0002784421085380018]}} +{"t": 36.442657, "tracked": true, "track_id": 1, "bbox": [70.86061096191406, 20.534568786621094, 558.7899780273438, 479.9902648925781], "det_conf": 0.9201476573944092, "mean_kpt_conf": 0.9237053231759504, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7281410653878406, "right_lift": -0.8916232956131009, "left_bend": 0.7722268540426694, "right_bend": 0.8262244575510403}, "keypoints": {"0": [267.0453186035156, 133.96426391601562, 0.9989694356918335], "1": [289.63134765625, 105.369384765625, 0.9985219836235046], "2": [245.3101043701172, 113.07785034179688, 0.9936514496803284], "3": [331.85858154296875, 110.0838623046875, 0.9758358597755432], "4": [227.12246704101562, 123.59175109863281, 0.6282366514205933], "5": [396.8949890136719, 229.1013946533203, 0.9927375912666321], "6": [184.99942016601562, 231.74549865722656, 0.9941715598106384], "7": [523.21630859375, 363.294677734375, 0.88014817237854], "8": [107.95004272460938, 383.47332763671875, 0.8754406571388245], "9": [517.713623046875, 224.48057556152344, 0.9325035810470581], "10": [160.22003173828125, 351.066650390625, 0.8905416131019592], "11": [359.4346923828125, 480.0, 0.11350087076425552], "12": [223.57916259765625, 480.0, 0.12537075579166412], "13": [408.2310485839844, 413.7550048828125, 0.0015156081644818187], "14": [240.64088439941406, 404.5655517578125, 0.0018742193933576345], "15": [443.765380859375, 413.67095947265625, 0.00017511028272565454], "16": [276.70196533203125, 424.50390625, 0.00021952553652226925]}} +{"t": 36.479812, "tracked": true, "track_id": 1, "bbox": [70.02973175048828, 20.167999267578125, 560.2611083984375, 480.0], "det_conf": 0.921252965927124, "mean_kpt_conf": 0.9260586987842213, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.71952618049808, "right_lift": -0.890846169398916, "left_bend": 0.7586111201429294, "right_bend": 0.8111073997082152}, "keypoints": {"0": [267.1443176269531, 134.41891479492188, 0.9989882111549377], "1": [289.6750793457031, 106.02421569824219, 0.9985350370407104], "2": [245.37477111816406, 113.33029174804688, 0.9939305782318115], "3": [330.8045654296875, 110.96221923828125, 0.974660336971283], "4": [226.47409057617188, 123.58917236328125, 0.646116316318512], "5": [393.6063232421875, 228.31927490234375, 0.9923984408378601], "6": [184.56239318847656, 230.4869842529297, 0.9942165613174438], "7": [522.976318359375, 362.3577880859375, 0.8793260455131531], "8": [106.32359313964844, 383.90533447265625, 0.8806002140045166], "9": [521.6949462890625, 225.03753662109375, 0.9331094026565552], "10": [164.18161010742188, 351.8616943359375, 0.8947645425796509], "11": [358.4248046875, 480.0, 0.10709618031978607], "12": [224.22042846679688, 480.0, 0.12142904847860336], "13": [403.412841796875, 410.56817626953125, 0.00150021119043231], "14": [235.25003051757812, 400.7967224121094, 0.0018753730691969395], "15": [443.8548278808594, 413.9082336425781, 0.00017805895186029375], "16": [270.8570556640625, 422.93890380859375, 0.0002240734320366755]}} +{"t": 36.544214, "tracked": true, "track_id": 1, "bbox": [68.29088592529297, 20.265010833740234, 561.87158203125, 479.6260986328125], "det_conf": 0.9185360074043274, "mean_kpt_conf": 0.930960243398493, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.730253303559599, "right_lift": -0.9028963915636505, "left_bend": 0.7514964069578436, "right_bend": 0.8193476980461075}, "keypoints": {"0": [267.7691345214844, 133.7659912109375, 0.9990074038505554], "1": [289.7706604003906, 105.45118713378906, 0.9984925985336304], "2": [245.45114135742188, 113.43963623046875, 0.9943004846572876], "3": [330.02935791015625, 110.72776794433594, 0.973188579082489], "4": [226.0900115966797, 125.15008544921875, 0.6802151799201965], "5": [394.57037353515625, 226.37904357910156, 0.9929590225219727], "6": [183.8568115234375, 232.30752563476562, 0.9950233697891235], "7": [521.7888793945312, 362.364013671875, 0.8842025995254517], "8": [109.83343505859375, 387.7900390625, 0.8949854969978333], "9": [525.5146484375, 232.09774780273438, 0.9295031428337097], "10": [161.73838806152344, 355.3259582519531, 0.8986847996711731], "11": [363.2560119628906, 480.0, 0.12078464776277542], "12": [227.9897918701172, 480.0, 0.140566885471344], "13": [413.2394714355469, 410.0262145996094, 0.001509933266788721], "14": [241.61264038085938, 404.3248291015625, 0.0019770117942243814], "15": [446.3961181640625, 414.4058837890625, 0.00017165939789265394], "16": [274.5340881347656, 427.25274658203125, 0.00022297243413049728]}} +{"t": 36.578803, "tracked": true, "track_id": 1, "bbox": [67.15843200683594, 20.939651489257812, 562.4806518554688, 479.70233154296875], "det_conf": 0.91884446144104, "mean_kpt_conf": 0.9305882562290538, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7384246037841106, "right_lift": -0.8897238448065078, "left_bend": 0.7533328631018541, "right_bend": 0.8048756745049173}, "keypoints": {"0": [267.3412170410156, 133.49746704101562, 0.9990614056587219], "1": [289.4553527832031, 104.82789611816406, 0.9985818862915039], "2": [245.0514373779297, 112.90306091308594, 0.9943886399269104], "3": [331.0364074707031, 110.352294921875, 0.9737560153007507], "4": [225.96417236328125, 124.67593383789062, 0.6673338413238525], "5": [396.80426025390625, 229.12982177734375, 0.9926013350486755], "6": [184.50997924804688, 231.92333984375, 0.9950156807899475], "7": [519.7049560546875, 363.7109375, 0.8799148201942444], "8": [107.25457763671875, 382.49530029296875, 0.9010252356529236], "9": [524.2855834960938, 232.3728485107422, 0.9289948344230652], "10": [162.14149475097656, 353.65924072265625, 0.9057971239089966], "11": [365.0278625488281, 480.0, 0.11214474588632584], "12": [227.49765014648438, 480.0, 0.13553832471370697], "13": [414.362060546875, 407.2132568359375, 0.0013792561367154121], "14": [234.2769775390625, 400.391845703125, 0.001866668346337974], "15": [450.33026123046875, 410.34942626953125, 0.00015997765876818448], "16": [265.013671875, 425.09014892578125, 0.00021259643835946918]}} +{"t": 36.613683, "tracked": true, "track_id": 1, "bbox": [68.89373779296875, 20.66156005859375, 563.4222412109375, 479.67376708984375], "det_conf": 0.9210115075111389, "mean_kpt_conf": 0.9302622784267772, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7276418698238373, "right_lift": -0.8915438976260951, "left_bend": 0.7560695686576038, "right_bend": 0.8375151546364316}, "keypoints": {"0": [267.14349365234375, 133.82763671875, 0.9990803003311157], "1": [289.1968078613281, 105.54052734375, 0.9986298084259033], "2": [245.3671112060547, 113.23236083984375, 0.9942712783813477], "3": [330.3500671386719, 110.59883117675781, 0.9748186469078064], "4": [227.18507385253906, 124.200439453125, 0.6483953595161438], "5": [394.62493896484375, 225.87506103515625, 0.9928562641143799], "6": [186.5944061279297, 230.41925048828125, 0.9948898553848267], "7": [523.0794677734375, 362.1355895996094, 0.8889983296394348], "8": [107.180908203125, 386.73468017578125, 0.9002394676208496], "9": [524.4686889648438, 228.7109832763672, 0.934097170829773], "10": [161.31105041503906, 350.469482421875, 0.9066085815429688], "11": [361.7591247558594, 480.0, 0.1149052083492279], "12": [226.96205139160156, 480.0, 0.13427980244159698], "13": [411.54864501953125, 409.2811584472656, 0.0014097696403041482], "14": [234.14437866210938, 401.7060546875, 0.0018461698200553656], "15": [449.9610900878906, 415.750732421875, 0.0001576094509800896], "16": [259.482666015625, 426.2880859375, 0.0002048988244496286]}} +{"t": 36.677104, "tracked": true, "track_id": 1, "bbox": [67.65414428710938, 20.895849227905273, 567.5291137695312, 479.6009521484375], "det_conf": 0.9172881245613098, "mean_kpt_conf": 0.9270818558606234, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7363257140829896, "right_lift": -0.9029262203163423, "left_bend": 0.7537226475607074, "right_bend": 0.7994209215570647}, "keypoints": {"0": [267.3223571777344, 134.3944854736328, 0.9990121126174927], "1": [289.4546813964844, 105.34811401367188, 0.9985703229904175], "2": [244.93177795410156, 113.47247314453125, 0.9938976168632507], "3": [330.6009521484375, 108.20571899414062, 0.9749208688735962], "4": [226.08181762695312, 122.94808959960938, 0.6448805332183838], "5": [395.87115478515625, 222.9456329345703, 0.9933266639709473], "6": [183.3243408203125, 228.29147338867188, 0.9946197271347046], "7": [523.761962890625, 362.12017822265625, 0.8935686349868774], "8": [107.84968566894531, 386.8506774902344, 0.8869993090629578], "9": [527.768310546875, 230.9373321533203, 0.9315419793128967], "10": [154.07254028320312, 361.81512451171875, 0.8865626454353333], "11": [361.5372314453125, 480.0, 0.11632661521434784], "12": [224.9160614013672, 480.0, 0.12722525000572205], "13": [412.7355041503906, 405.8107604980469, 0.0014644063776358962], "14": [236.96780395507812, 399.2353820800781, 0.0017892972100526094], "15": [447.4570007324219, 410.1380615234375, 0.00017286436923313886], "16": [271.28466796875, 423.61114501953125, 0.00021460292919073254]}} +{"t": 36.743844, "tracked": true, "track_id": 1, "bbox": [68.67327117919922, 20.22690200805664, 570.0092163085938, 479.51165771484375], "det_conf": 0.9207953810691833, "mean_kpt_conf": 0.9295829209414396, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7243764351918233, "right_lift": -0.891373350235729, "left_bend": 0.7405148224773863, "right_bend": 0.8297844422173053}, "keypoints": {"0": [266.8873291015625, 133.59521484375, 0.9990726709365845], "1": [289.131591796875, 105.13482666015625, 0.9986283779144287], "2": [244.97293090820312, 112.83828735351562, 0.994225800037384], "3": [330.0753173828125, 109.97750854492188, 0.9743636846542358], "4": [226.5162811279297, 123.58851623535156, 0.6533979773521423], "5": [392.6983947753906, 224.53659057617188, 0.9929081201553345], "6": [185.8081817626953, 230.17784118652344, 0.9947216510772705], "7": [522.605712890625, 361.0337829589844, 0.8911715149879456], "8": [105.18292236328125, 388.73065185546875, 0.8941980600357056], "9": [529.7550048828125, 230.05593872070312, 0.9336705803871155], "10": [155.6573944091797, 356.68927001953125, 0.899053692817688], "11": [360.6866149902344, 480.0, 0.10961229354143143], "12": [227.19793701171875, 480.0, 0.12450498342514038], "13": [409.91827392578125, 405.70166015625, 0.001416255021467805], "14": [235.26226806640625, 399.11065673828125, 0.0017844847170636058], "15": [450.40478515625, 413.08709716796875, 0.00016270275227725506], "16": [263.465087890625, 424.310546875, 0.00020584835147019476]}} +{"t": 36.808283, "tracked": true, "track_id": 1, "bbox": [65.92891693115234, 20.3839168548584, 574.1513671875, 479.68353271484375], "det_conf": 0.9098085761070251, "mean_kpt_conf": 0.9285200238227844, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7375827735022285, "right_lift": -0.8952117810544482, "left_bend": 0.736681368595484, "right_bend": 0.8177309160331536}, "keypoints": {"0": [267.4989929199219, 134.90536499023438, 0.9990671277046204], "1": [289.15472412109375, 105.51799011230469, 0.9986292123794556], "2": [244.8054962158203, 113.86616516113281, 0.993986964225769], "3": [330.08648681640625, 108.47372436523438, 0.9734662771224976], "4": [225.6723175048828, 123.64663696289062, 0.6359403729438782], "5": [393.5727844238281, 226.1253204345703, 0.9933176040649414], "6": [185.56900024414062, 228.02706909179688, 0.9943535327911377], "7": [521.361572265625, 365.708984375, 0.8990935683250427], "8": [108.18527221679688, 383.4769287109375, 0.89238440990448], "9": [533.1162109375, 229.2481231689453, 0.9364991784095764], "10": [157.9783935546875, 353.87994384765625, 0.8969820141792297], "11": [358.58172607421875, 480.0, 0.11196428537368774], "12": [223.22727966308594, 480.0, 0.12199977785348892], "13": [412.3740234375, 402.80059814453125, 0.0013891621492803097], "14": [227.88568115234375, 395.07763671875, 0.0016925119562074542], "15": [454.52001953125, 403.4175109863281, 0.000164910321473144], "16": [255.8177490234375, 418.96197509765625, 0.000203199393581599]}} +{"t": 36.87099, "tracked": true, "track_id": 1, "bbox": [65.28562927246094, 20.70443344116211, 581.3541870117188, 480.0], "det_conf": 0.9105888605117798, "mean_kpt_conf": 0.926409510048953, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7559257863073459, "right_lift": -0.9111992778254507, "left_bend": 0.7423465128102583, "right_bend": 0.850920597702942}, "keypoints": {"0": [265.8380126953125, 133.93032836914062, 0.9990115165710449], "1": [288.6506652832031, 105.15530395507812, 0.9985853433609009], "2": [243.10610961914062, 112.86775207519531, 0.9919090867042542], "3": [331.2797546386719, 109.27678680419922, 0.9719404578208923], "4": [223.3890380859375, 123.13187408447266, 0.5389959812164307], "5": [397.3418273925781, 219.0233154296875, 0.9944135546684265], "6": [185.05062866210938, 228.867431640625, 0.9948680400848389], "7": [519.7619018554688, 360.3804626464844, 0.9364984631538391], "8": [112.26480102539062, 389.8574523925781, 0.9177160859107971], "9": [530.7255859375, 246.18309020996094, 0.9448437094688416], "10": [152.3203582763672, 357.6089782714844, 0.9017223715782166], "11": [373.7268981933594, 480.0, 0.18841703236103058], "12": [230.65512084960938, 480.0, 0.187726691365242], "13": [439.4064636230469, 413.3302001953125, 0.0010525825200602412], "14": [221.01571655273438, 411.7364501953125, 0.0011537875980138779], "15": [486.4134521484375, 417.3985900878906, 9.261160448659211e-05], "16": [234.13780212402344, 431.72314453125, 0.00010770167136797681]}} +{"t": 36.906753, "tracked": true, "track_id": 1, "bbox": [65.7995834350586, 20.47597885131836, 581.337890625, 480.0], "det_conf": 0.9137884378433228, "mean_kpt_conf": 0.9319706450809132, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7622159829917174, "right_lift": -0.9138490191698813, "left_bend": 0.7541117778254832, "right_bend": 0.8507882216381194}, "keypoints": {"0": [266.03546142578125, 133.9513702392578, 0.999147891998291], "1": [289.0627746582031, 105.52677154541016, 0.9987210631370544], "2": [243.0755157470703, 112.91716003417969, 0.9933347702026367], "3": [330.9786376953125, 110.07040405273438, 0.9713971614837646], "4": [222.84445190429688, 123.37420654296875, 0.5754343867301941], "5": [396.921630859375, 214.32481384277344, 0.9942903518676758], "6": [185.36024475097656, 225.62057495117188, 0.995546817779541], "7": [518.7174072265625, 357.73809814453125, 0.9354612231254578], "8": [111.97808837890625, 390.771484375, 0.932424783706665], "9": [526.4585571289062, 244.76290893554688, 0.942672073841095], "10": [150.582763671875, 359.303466796875, 0.9132465720176697], "11": [379.28326416015625, 480.0, 0.16971251368522644], "12": [236.4425048828125, 480.0, 0.18222317099571228], "13": [442.43505859375, 401.35455322265625, 0.0009964742930606008], "14": [220.9459991455078, 399.4835205078125, 0.0011813652236014605], "15": [486.9361572265625, 415.9869079589844, 9.383453289046884e-05], "16": [229.96737670898438, 427.6058349609375, 0.00011544170411070809]}} +{"t": 36.971732, "tracked": true, "track_id": 1, "bbox": [67.80062866210938, 20.576934814453125, 585.1807861328125, 480.0], "det_conf": 0.9123404026031494, "mean_kpt_conf": 0.9301619583910162, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7579928089400239, "right_lift": -0.9148195736706799, "left_bend": 0.7466328971984286, "right_bend": 0.8863893593270646}, "keypoints": {"0": [265.46661376953125, 134.46737670898438, 0.9991604089736938], "1": [288.9377746582031, 105.95030975341797, 0.9987515211105347], "2": [242.59812927246094, 113.00064849853516, 0.9930261373519897], "3": [331.61962890625, 110.93974304199219, 0.9717673659324646], "4": [222.30638122558594, 123.32239532470703, 0.5497961640357971], "5": [397.37872314453125, 217.25967407226562, 0.994584858417511], "6": [185.87576293945312, 228.24615478515625, 0.9954356551170349], "7": [519.639892578125, 359.3390197753906, 0.9389399886131287], "8": [113.52688598632812, 392.12896728515625, 0.93022221326828], "9": [529.5119018554688, 244.0367431640625, 0.9455624222755432], "10": [150.195068359375, 354.5140380859375, 0.9145348072052002], "11": [381.02886962890625, 480.0, 0.17869776487350464], "12": [237.8867950439453, 480.0, 0.18548829853534698], "13": [448.9831237792969, 404.5204162597656, 0.0009955997811630368], "14": [227.03054809570312, 402.8966979980469, 0.0011531447526067495], "15": [494.44378662109375, 414.5756530761719, 8.969515329226851e-05], "16": [235.575927734375, 425.7270812988281, 0.00010903655493166298]}} +{"t": 37.007469, "tracked": true, "track_id": 1, "bbox": [67.1341552734375, 20.916011810302734, 587.0775756835938, 480.0], "det_conf": 0.9116753935813904, "mean_kpt_conf": 0.931503415107727, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7506469040241621, "right_lift": -0.9206796253896185, "left_bend": 0.7419982364227214, "right_bend": 0.8646840577146665}, "keypoints": {"0": [266.0691223144531, 134.7279052734375, 0.9991644620895386], "1": [289.0750427246094, 106.14787292480469, 0.9986907839775085], "2": [242.9800262451172, 113.00863647460938, 0.993389368057251], "3": [330.1554260253906, 110.69689178466797, 0.9685484766960144], "4": [221.4868621826172, 122.90640258789062, 0.5790693163871765], "5": [394.6761474609375, 218.5076904296875, 0.9945899248123169], "6": [183.92926025390625, 229.31077575683594, 0.9953794479370117], "7": [521.4661254882812, 362.55792236328125, 0.9373037219047546], "8": [112.86376953125, 396.9391174316406, 0.9243331551551819], "9": [532.051513671875, 243.6407012939453, 0.9464278221130371], "10": [152.21530151367188, 360.666259765625, 0.9096410870552063], "11": [377.87152099609375, 480.0, 0.16993547976016998], "12": [236.03042602539062, 480.0, 0.17370125651359558], "13": [443.1421813964844, 408.420166015625, 0.0010044574737548828], "14": [226.52420043945312, 406.015380859375, 0.0011262454790994525], "15": [493.4991455078125, 417.4803466796875, 9.010407666210085e-05], "16": [241.73703002929688, 427.68280029296875, 0.00010643780115060508]}} +{"t": 37.041699, "tracked": true, "track_id": 1, "bbox": [66.44222259521484, 20.992525100708008, 589.6192016601562, 480.0], "det_conf": 0.9087051749229431, "mean_kpt_conf": 0.9352235685695302, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7457542979117551, "right_lift": -0.9088055624480089, "left_bend": 0.718323286767062, "right_bend": 0.8273479885058449}, "keypoints": {"0": [266.5062255859375, 134.5703125, 0.9992321729660034], "1": [289.5712585449219, 106.08294677734375, 0.9988048076629639], "2": [242.84033203125, 113.16387176513672, 0.993989109992981], "3": [330.96905517578125, 111.08621215820312, 0.9694051742553711], "4": [220.66258239746094, 123.72705841064453, 0.595489501953125], "5": [393.80084228515625, 218.54525756835938, 0.9948337078094482], "6": [185.22744750976562, 227.0455780029297, 0.9955623149871826], "7": [517.5216674804688, 357.03582763671875, 0.9421045184135437], "8": [112.66656494140625, 385.1006774902344, 0.9336131811141968], "9": [534.8091430664062, 246.9638214111328, 0.9469178318977356], "10": [153.44723510742188, 357.3200988769531, 0.9175069332122803], "11": [379.3606262207031, 480.0, 0.19830219447612762], "12": [238.27572631835938, 480.0, 0.20479844510555267], "13": [449.8115234375, 408.71221923828125, 0.0010161931859329343], "14": [231.238525390625, 406.4581604003906, 0.0011734835570678115], "15": [500.1435852050781, 412.5684814453125, 8.931977208703756e-05], "16": [243.0897216796875, 425.4408264160156, 0.00010775816917885095]}} +{"t": 37.103449, "tracked": true, "track_id": 1, "bbox": [65.36293029785156, 21.715877532958984, 591.2709350585938, 479.7765808105469], "det_conf": 0.9073359966278076, "mean_kpt_conf": 0.9272177165204828, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.752442583492695, "right_lift": -0.9151404235074402, "left_bend": 0.7372451793033513, "right_bend": 0.8640846539258582}, "keypoints": {"0": [265.6359558105469, 134.2836151123047, 0.9990792274475098], "1": [288.58758544921875, 105.86138153076172, 0.998619556427002], "2": [242.7243194580078, 112.75374603271484, 0.9923261404037476], "3": [330.54071044921875, 111.15718078613281, 0.9705482721328735], "4": [221.5911865234375, 123.17118072509766, 0.5516793131828308], "5": [397.5459289550781, 223.3993682861328, 0.9951457381248474], "6": [183.29660034179688, 230.8035888671875, 0.994976282119751], "7": [522.3411865234375, 365.96392822265625, 0.9396370649337769], "8": [112.20574951171875, 392.1839599609375, 0.9113917350769043], "9": [535.3764038085938, 243.95556640625, 0.9471034407615662], "10": [151.92941284179688, 356.71563720703125, 0.898888111114502], "11": [379.6800537109375, 480.0, 0.1774192452430725], "12": [236.1063232421875, 480.0, 0.16858062148094177], "13": [447.6291198730469, 407.4558410644531, 0.0010637621162459254], "14": [233.48477172851562, 404.28857421875, 0.0011167543707415462], "15": [496.46484375, 407.83453369140625, 9.649028652347624e-05], "16": [254.07421875, 420.3724670410156, 0.00010938564082607627]}} +{"t": 37.137473, "tracked": true, "track_id": 1, "bbox": [66.23163604736328, 21.869342803955078, 590.415283203125, 479.6055603027344], "det_conf": 0.9074726104736328, "mean_kpt_conf": 0.9289689985188571, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7663321887638131, "right_lift": -0.9103811282540067, "left_bend": 0.7368867081521031, "right_bend": 0.8906744421676454}, "keypoints": {"0": [266.3988952636719, 133.86721801757812, 0.9991220831871033], "1": [289.4518737792969, 105.4176254272461, 0.9987022876739502], "2": [243.26829528808594, 113.05049896240234, 0.9926331639289856], "3": [331.9529724121094, 111.07946014404297, 0.9713563323020935], "4": [223.11546325683594, 124.70738983154297, 0.5419556498527527], "5": [397.0458068847656, 219.07174682617188, 0.9947329759597778], "6": [187.66702270507812, 227.56661987304688, 0.9951124787330627], "7": [518.4276123046875, 363.8605651855469, 0.9413923621177673], "8": [113.90798950195312, 389.85174560546875, 0.9269341826438904], "9": [533.7763671875, 245.45596313476562, 0.9462954998016357], "10": [149.1401824951172, 353.52099609375, 0.9104219675064087], "11": [378.6122741699219, 480.0, 0.1790698915719986], "12": [236.76763916015625, 480.0, 0.17972667515277863], "13": [447.7198486328125, 402.0194091796875, 0.0010164667619392276], "14": [224.6622314453125, 399.62054443359375, 0.0011368434643372893], "15": [496.3424072265625, 408.3173828125, 9.255500481231138e-05], "16": [232.4237518310547, 422.4186096191406, 0.00010962560190819204]}} +{"t": 37.173382, "tracked": true, "track_id": 1, "bbox": [66.02496337890625, 21.651573181152344, 588.018310546875, 479.49969482421875], "det_conf": 0.9105844497680664, "mean_kpt_conf": 0.9318348602815107, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.761299935789448, "right_lift": -0.9166125206753493, "left_bend": 0.7405449655025753, "right_bend": 0.8677902917596405}, "keypoints": {"0": [267.0121765136719, 133.99017333984375, 0.9991387128829956], "1": [289.68035888671875, 105.82246398925781, 0.9987175464630127], "2": [244.2515411376953, 113.21134948730469, 0.9931812882423401], "3": [331.0326843261719, 110.95015716552734, 0.9726513028144836], "4": [223.9830780029297, 124.20249938964844, 0.5837824940681458], "5": [397.029052734375, 218.20404052734375, 0.9948439598083496], "6": [186.0404052734375, 228.70692443847656, 0.9957102537155151], "7": [518.6499633789062, 361.001708984375, 0.9367029666900635], "8": [114.58316040039062, 392.54486083984375, 0.9273461103439331], "9": [531.6531982421875, 242.85763549804688, 0.9418282508850098], "10": [152.9579620361328, 357.21038818359375, 0.9062805771827698], "11": [380.468994140625, 480.0, 0.18444010615348816], "12": [238.23947143554688, 480.0, 0.19176870584487915], "13": [444.43267822265625, 407.33282470703125, 0.0010327253257855773], "14": [225.08587646484375, 405.7570495605469, 0.0011820935178548098], "15": [491.4835205078125, 413.72259521484375, 9.274770127376541e-05], "16": [238.32296752929688, 426.7816162109375, 0.00011140613787574694]}} +{"t": 37.23553, "tracked": true, "track_id": 1, "bbox": [65.53333282470703, 22.027029037475586, 585.6132202148438, 479.40582275390625], "det_conf": 0.9081822633743286, "mean_kpt_conf": 0.9273542382500388, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7505652741798937, "right_lift": -0.914534630658198, "left_bend": 0.7553441664805072, "right_bend": 0.8643164890809082}, "keypoints": {"0": [267.4924621582031, 135.047607421875, 0.9990449547767639], "1": [290.49468994140625, 106.42608642578125, 0.9985394477844238], "2": [244.43252563476562, 113.31134033203125, 0.9928544163703918], "3": [331.6402587890625, 111.18035888671875, 0.9686514735221863], "4": [222.54855346679688, 123.42366027832031, 0.577698290348053], "5": [397.4162902832031, 222.6619873046875, 0.9939988851547241], "6": [182.66058349609375, 231.699462890625, 0.9949803948402405], "7": [521.6072998046875, 363.72430419921875, 0.924003541469574], "8": [111.24603271484375, 393.1576843261719, 0.909939169883728], "9": [527.33056640625, 241.3376007080078, 0.9408930540084839], "10": [149.5946044921875, 358.9703063964844, 0.9002929925918579], "11": [377.69000244140625, 480.0, 0.15218201279640198], "12": [234.89695739746094, 480.0, 0.1568402796983719], "13": [440.5959167480469, 406.69854736328125, 0.0010425563668832183], "14": [232.6562042236328, 403.40521240234375, 0.001178380218334496], "15": [485.55963134765625, 410.1961669921875, 9.875650721369311e-05], "16": [255.91213989257812, 421.24810791015625, 0.00011776659812312573]}} +{"t": 37.299683, "tracked": true, "track_id": 1, "bbox": [65.91529846191406, 21.712156295776367, 581.6470947265625, 479.39825439453125], "det_conf": 0.9118218421936035, "mean_kpt_conf": 0.9357302405617454, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7481555297925397, "right_lift": -0.9174131037179972, "left_bend": 0.7495673179301716, "right_bend": 0.8531466548128067}, "keypoints": {"0": [267.4349670410156, 133.82057189941406, 0.9992214441299438], "1": [290.387451171875, 105.84935760498047, 0.9987804293632507], "2": [244.36778259277344, 112.5543441772461, 0.9944368600845337], "3": [330.8465881347656, 112.11790466308594, 0.9718478918075562], "4": [222.21461486816406, 124.24895477294922, 0.634975790977478], "5": [396.5014953613281, 221.7632293701172, 0.9944738745689392], "6": [182.11819458007812, 231.66537475585938, 0.9958173632621765], "7": [517.6449584960938, 358.3584899902344, 0.929078221321106], "8": [113.80050659179688, 389.1668701171875, 0.9258140921592712], "9": [524.66845703125, 243.81201171875, 0.9402706623077393], "10": [150.0865478515625, 358.59259033203125, 0.9083160161972046], "11": [376.2587890625, 480.0, 0.18066076934337616], "12": [232.11695861816406, 480.0, 0.19452369213104248], "13": [437.36279296875, 414.0885925292969, 0.0010235533118247986], "14": [219.15362548828125, 411.6235046386719, 0.0011971211060881615], "15": [481.1590881347656, 424.0266418457031, 9.022736776387319e-05], "16": [237.11026000976562, 435.11602783203125, 0.00010907628893619403]}} +{"t": 37.337129, "tracked": true, "track_id": 1, "bbox": [67.07294464111328, 21.86307716369629, 578.8170776367188, 479.1408996582031], "det_conf": 0.9074307084083557, "mean_kpt_conf": 0.93382343378934, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7309392635991803, "right_lift": -0.8946253358018147, "left_bend": 0.7318428063593274, "right_bend": 0.8260597982127542}, "keypoints": {"0": [269.0699768066406, 135.4410400390625, 0.9991046786308289], "1": [291.6641540527344, 106.77978515625, 0.9986080527305603], "2": [246.513427734375, 113.62797546386719, 0.994504988193512], "3": [331.8902282714844, 110.87081909179688, 0.9720255732536316], "4": [225.68690490722656, 122.62155151367188, 0.671975314617157], "5": [393.22314453125, 227.49685668945312, 0.9938200116157532], "6": [182.09910583496094, 229.1214599609375, 0.9952573180198669], "7": [522.536865234375, 366.00006103515625, 0.9020940065383911], "8": [104.01242065429688, 385.4680480957031, 0.9042350053787231], "9": [534.4835205078125, 235.57305908203125, 0.9348956942558289], "10": [157.8657684326172, 351.6189270019531, 0.9055371284484863], "11": [361.8290710449219, 480.0, 0.1207936704158783], "12": [224.7313232421875, 480.0, 0.13521568477153778], "13": [422.9838562011719, 405.2897644042969, 0.0012937517603859305], "14": [239.93263244628906, 397.91412353515625, 0.0016495498130097985], "15": [464.50213623046875, 403.04180908203125, 0.00014884401753079146], "16": [270.8172302246094, 414.23468017578125, 0.00018967092910315841]}} +{"t": 37.400718, "tracked": true, "track_id": 1, "bbox": [64.30398559570312, 23.678951263427734, 572.41552734375, 479.3634948730469], "det_conf": 0.9150020480155945, "mean_kpt_conf": 0.9237364855679598, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.751211937601175, "right_lift": -0.8747351213198623, "left_bend": 0.6969313255227068, "right_bend": 0.8229490126379037}, "keypoints": {"0": [267.61669921875, 133.44326782226562, 0.998940646648407], "1": [288.6448974609375, 104.84893798828125, 0.9983512163162231], "2": [244.6846923828125, 113.2930908203125, 0.9926499724388123], "3": [331.6666259765625, 110.383544921875, 0.9621344804763794], "4": [225.80821228027344, 126.36685180664062, 0.608242928981781], "5": [397.8414611816406, 231.92893981933594, 0.9920463562011719], "6": [191.9068603515625, 235.06143188476562, 0.990522563457489], "7": [508.80328369140625, 358.2139892578125, 0.9105871915817261], "8": [109.36468505859375, 384.05511474609375, 0.8660408854484558], "9": [538.6629638671875, 231.3829345703125, 0.9434237480163574], "10": [151.28665161132812, 360.67901611328125, 0.8981613516807556], "11": [366.26556396484375, 480.0, 0.11929622292518616], "12": [232.05471801757812, 480.0, 0.11537177860736847], "13": [410.65447998046875, 419.02606201171875, 0.001944631920196116], "14": [236.25982666015625, 417.6175537109375, 0.0019955956377089024], "15": [448.5491027832031, 431.6065368652344, 0.0002018598170252517], "16": [266.5455017089844, 458.4228515625, 0.00021385125000961125]}} +{"t": 37.470224, "tracked": true, "track_id": 1, "bbox": [66.19403839111328, 22.78078842163086, 566.4443359375, 479.1751403808594], "det_conf": 0.9157369136810303, "mean_kpt_conf": 0.9326844973997637, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7303469356861575, "right_lift": -0.8895677103784316, "left_bend": 0.7338889474992933, "right_bend": 0.8336345340524532}, "keypoints": {"0": [268.3675231933594, 135.1652374267578, 0.999067485332489], "1": [290.912109375, 106.99365234375, 0.9985668063163757], "2": [246.54908752441406, 114.32969665527344, 0.9943125247955322], "3": [331.9637756347656, 112.68939208984375, 0.9724740982055664], "4": [227.7261962890625, 125.3050537109375, 0.6670644283294678], "5": [392.79608154296875, 227.9492645263672, 0.9930102229118347], "6": [185.73355102539062, 231.9566650390625, 0.9948711395263672], "7": [517.0941772460938, 360.8490905761719, 0.8957674503326416], "8": [107.43820190429688, 384.4271240234375, 0.9023169875144958], "9": [527.7106323242188, 234.82933044433594, 0.9345526099205017], "10": [159.97779846191406, 350.47259521484375, 0.9075257182121277], "11": [359.618896484375, 480.0, 0.12156979739665985], "12": [225.16189575195312, 480.0, 0.13865280151367188], "13": [416.6909484863281, 406.15802001953125, 0.001433870056644082], "14": [237.95013427734375, 400.7837829589844, 0.0018513967515900731], "15": [455.6719970703125, 412.398193359375, 0.00016366434283554554], "16": [265.70751953125, 425.3134765625, 0.00020962230337318033]}} +{"t": 37.533372, "tracked": true, "track_id": 1, "bbox": [67.01203918457031, 22.92898941040039, 560.235595703125, 479.2087707519531], "det_conf": 0.9154431223869324, "mean_kpt_conf": 0.933052046732469, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7296246956640179, "right_lift": -0.8938056469353938, "left_bend": 0.7437292034163839, "right_bend": 0.8175167930243847}, "keypoints": {"0": [269.62506103515625, 135.2830810546875, 0.9990038275718689], "1": [291.3407897949219, 106.51678466796875, 0.9984539747238159], "2": [246.8927001953125, 114.60928344726562, 0.9944581985473633], "3": [331.0213928222656, 110.32656860351562, 0.9703935980796814], "4": [226.43603515625, 125.22677612304688, 0.69886714220047], "5": [393.5135192871094, 224.8239288330078, 0.9926869869232178], "6": [183.17233276367188, 232.49029541015625, 0.9951306581497192], "7": [516.7808837890625, 356.34283447265625, 0.884842038154602], "8": [107.09271240234375, 384.123046875, 0.9006269574165344], "9": [523.0436401367188, 236.18763732910156, 0.9265214204788208], "10": [158.50537109375, 353.8284606933594, 0.9025877118110657], "11": [363.0859680175781, 480.0, 0.1227870061993599], "12": [227.47280883789062, 480.0, 0.14481410384178162], "13": [416.76141357421875, 405.1385192871094, 0.0014811172150075436], "14": [241.089111328125, 402.22186279296875, 0.0019616717472672462], "15": [449.0794677734375, 407.5914306640625, 0.0001755643606884405], "16": [272.61529541015625, 422.71722412109375, 0.00022858119336888194]}} +{"t": 37.603076, "tracked": true, "track_id": 1, "bbox": [74.26728057861328, 22.726163864135742, 556.8330688476562, 479.1441345214844], "det_conf": 0.9258322715759277, "mean_kpt_conf": 0.9181529987942089, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7037928004939621, "right_lift": -0.8959783438538599, "left_bend": 0.7689127864716656, "right_bend": 0.8716409704825638}, "keypoints": {"0": [270.0945129394531, 135.57257080078125, 0.9987356066703796], "1": [292.45245361328125, 106.99369812011719, 0.9981985688209534], "2": [247.6866912841797, 113.69248962402344, 0.9919809103012085], "3": [331.5464172363281, 112.82322692871094, 0.9699873924255371], "4": [225.67611694335938, 124.56573486328125, 0.6162940263748169], "5": [391.0857849121094, 232.31927490234375, 0.9934646487236023], "6": [182.8767852783203, 241.52194213867188, 0.9923058152198792], "7": [520.96484375, 360.9894104003906, 0.8948205709457397], "8": [106.498779296875, 395.6164855957031, 0.8208944797515869], "9": [512.5248413085938, 229.48410034179688, 0.9448668360710144], "10": [165.65621948242188, 345.0381164550781, 0.8781341314315796], "11": [359.8428649902344, 479.8609619140625, 0.11648010462522507], "12": [229.20936584472656, 480.0, 0.10121908038854599], "13": [416.0826416015625, 403.45867919921875, 0.0019692950882017612], "14": [271.1116638183594, 399.748291015625, 0.0020087698940187693], "15": [441.7991943359375, 407.43634033203125, 0.00022215778881218284], "16": [304.11474609375, 415.2240905761719, 0.0002472491469234228]}} +{"t": 37.665523, "tracked": true, "track_id": 1, "bbox": [74.60394287109375, 22.487613677978516, 554.1270141601562, 479.1209716796875], "det_conf": 0.9296496510505676, "mean_kpt_conf": 0.918679649179632, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6914092965277547, "right_lift": -0.8865341557527199, "left_bend": 0.7613977828675015, "right_bend": 0.8625729701392536}, "keypoints": {"0": [269.5284729003906, 135.19851684570312, 0.9987510442733765], "1": [292.2911376953125, 107.38729858398438, 0.9982275366783142], "2": [248.16136169433594, 113.71331787109375, 0.9919708967208862], "3": [332.5068054199219, 114.42759704589844, 0.9717493653297424], "4": [227.777587890625, 124.87977600097656, 0.6056923866271973], "5": [391.5367126464844, 233.7631072998047, 0.9936997890472412], "6": [184.74122619628906, 241.80044555664062, 0.9926855564117432], "7": [519.4122924804688, 356.14215087890625, 0.8987026214599609], "8": [106.86738586425781, 391.0187683105469, 0.8336091637611389], "9": [511.82275390625, 224.90740966796875, 0.9434864521026611], "10": [164.876953125, 346.1773376464844, 0.8769013285636902], "11": [357.51739501953125, 480.0, 0.13758154213428497], "12": [226.80859375, 480.0, 0.12132982164621353], "13": [413.0437316894531, 412.05517578125, 0.0019446745282039046], "14": [264.8072814941406, 406.96392822265625, 0.0020031826570630074], "15": [438.36810302734375, 410.54949951171875, 0.00021685044339392334], "16": [292.9212646484375, 416.9254150390625, 0.00024195607693400234]}} +{"t": 37.729197, "tracked": true, "track_id": 1, "bbox": [74.17096710205078, 22.68692970275879, 551.8854370117188, 479.3971862792969], "det_conf": 0.9275091290473938, "mean_kpt_conf": 0.9195714322003451, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7014326181338323, "right_lift": -0.8901490237826495, "left_bend": 0.7817318713647345, "right_bend": 0.8542556784306363}, "keypoints": {"0": [270.11553955078125, 134.656494140625, 0.9987558126449585], "1": [293.4305725097656, 107.26747131347656, 0.998234748840332], "2": [248.71566772460938, 113.125, 0.9922271966934204], "3": [333.5149230957031, 115.41110229492188, 0.9727845191955566], "4": [227.86489868164062, 124.82449340820312, 0.6127099990844727], "5": [392.54217529296875, 233.6283416748047, 0.9935446977615356], "6": [183.6834716796875, 240.34925842285156, 0.9928701519966125], "7": [520.3992919921875, 359.4577941894531, 0.8952223658561707], "8": [105.988525390625, 392.1260986328125, 0.8365474939346313], "9": [505.9869384765625, 226.13275146484375, 0.9432233572006226], "10": [165.3006134033203, 347.98382568359375, 0.8791654109954834], "11": [357.9120178222656, 480.0, 0.12958262860774994], "12": [226.32305908203125, 480.0, 0.11689083278179169], "13": [411.5084228515625, 410.2967529296875, 0.0019334475509822369], "14": [264.6640930175781, 403.22589111328125, 0.002033591503277421], "15": [436.2003479003906, 414.0632629394531, 0.00021788195590488613], "16": [295.2020568847656, 417.573486328125, 0.0002476806694176048]}} +{"t": 37.76417, "tracked": true, "track_id": 1, "bbox": [74.61544799804688, 22.800222396850586, 551.8701782226562, 479.4180603027344], "det_conf": 0.9276586771011353, "mean_kpt_conf": 0.921473270112818, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.699655485710366, "right_lift": -0.892643223268177, "left_bend": 0.7790637402638656, "right_bend": 0.8364832611951174}, "keypoints": {"0": [270.89697265625, 134.7363739013672, 0.9987791180610657], "1": [293.5269470214844, 106.98968505859375, 0.9982138872146606], "2": [249.27288818359375, 112.92582702636719, 0.9928587675094604], "3": [332.50946044921875, 114.31573486328125, 0.9719675779342651], "4": [227.5103759765625, 124.2156982421875, 0.6441541314125061], "5": [394.15863037109375, 235.2178955078125, 0.9928696751594543], "6": [181.603759765625, 240.74606323242188, 0.993357241153717], "7": [521.4697265625, 359.88739013671875, 0.8785755038261414], "8": [107.00508117675781, 388.47308349609375, 0.8431509137153625], "9": [508.071533203125, 228.7156982421875, 0.9385644197463989], "10": [165.47433471679688, 349.36932373046875, 0.8837147355079651], "11": [358.67279052734375, 480.0, 0.12184331566095352], "12": [224.951904296875, 480.0, 0.11956827342510223], "13": [406.275146484375, 411.3407897949219, 0.001918299705721438], "14": [257.31781005859375, 404.0533142089844, 0.002163585741072893], "15": [428.43267822265625, 417.2874755859375, 0.0002154804824385792], "16": [292.9922790527344, 422.3183898925781, 0.00025606525014154613]}} +{"t": 37.82693, "tracked": true, "track_id": 1, "bbox": [74.39573669433594, 22.777671813964844, 553.7821044921875, 479.739501953125], "det_conf": 0.9298679828643799, "mean_kpt_conf": 0.921201613816348, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7017487009718243, "right_lift": -0.8897895781271012, "left_bend": 0.7672253079551759, "right_bend": 0.8769092939028951}, "keypoints": {"0": [271.7483215332031, 135.26156616210938, 0.9987888932228088], "1": [294.9019775390625, 107.66754150390625, 0.998258650302887], "2": [250.15469360351562, 113.64906311035156, 0.9924651384353638], "3": [334.809814453125, 116.06024169921875, 0.9709503650665283], "4": [228.76119995117188, 125.839599609375, 0.6283372044563293], "5": [394.620361328125, 233.7542266845703, 0.9932714104652405], "6": [184.58697509765625, 243.880615234375, 0.9934256076812744], "7": [519.3004150390625, 356.56591796875, 0.8889912962913513], "8": [105.90078735351562, 397.29559326171875, 0.8464601635932922], "9": [510.9519958496094, 221.35182189941406, 0.9389334321022034], "10": [165.03436279296875, 346.44976806640625, 0.8833355903625488], "11": [365.49114990234375, 480.0, 0.12189940363168716], "12": [232.2942352294922, 480.0, 0.11569277197122574], "13": [412.1656494140625, 405.379150390625, 0.0018489820649847388], "14": [257.39825439453125, 401.1783142089844, 0.0020035288762301207], "15": [434.56591796875, 409.7716369628906, 0.00021709580323658884], "16": [283.0692138671875, 414.87957763671875, 0.0002506387245375663]}} +{"t": 37.895601, "tracked": true, "track_id": 1, "bbox": [73.75223541259766, 22.616172790527344, 554.5277709960938, 479.5599365234375], "det_conf": 0.9275869131088257, "mean_kpt_conf": 0.9253740256482904, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6918377488386561, "right_lift": -0.8984003370151248, "left_bend": 0.7798125725653853, "right_bend": 0.8625727082442588}, "keypoints": {"0": [273.9148254394531, 134.2375946044922, 0.9987560510635376], "1": [297.718994140625, 107.65458679199219, 0.9980940222740173], "2": [251.86087036132812, 111.52987670898438, 0.9930592775344849], "3": [335.308349609375, 117.57438659667969, 0.9688665270805359], "4": [227.4143829345703, 123.35232543945312, 0.6713538765907288], "5": [393.26165771484375, 234.38905334472656, 0.9932178854942322], "6": [181.57666015625, 241.605712890625, 0.9937605261802673], "7": [522.4747314453125, 358.1950378417969, 0.8845318555831909], "8": [106.4158935546875, 395.3578186035156, 0.8500407934188843], "9": [507.3232727050781, 227.054443359375, 0.9385870695114136], "10": [164.53797912597656, 347.93487548828125, 0.8888463973999023], "11": [365.5959167480469, 479.48748779296875, 0.11537748575210571], "12": [232.46548461914062, 480.0, 0.1119287759065628], "13": [416.7928161621094, 401.1324462890625, 0.0019065020605921745], "14": [269.11773681640625, 393.61962890625, 0.002139836782589555], "15": [436.80859375, 409.86053466796875, 0.00022299967531580478], "16": [300.5333557128906, 407.49371337890625, 0.00026523054111748934]}} +{"t": 37.960677, "tracked": true, "track_id": 1, "bbox": [73.90702056884766, 22.498050689697266, 558.0869750976562, 479.7880859375], "det_conf": 0.9249236583709717, "mean_kpt_conf": 0.9330568421970714, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7019471427499823, "right_lift": -0.914272179944079, "left_bend": 0.770643715301866, "right_bend": 0.8593601205649409}, "keypoints": {"0": [279.1169128417969, 134.19900512695312, 0.9988356232643127], "1": [301.58038330078125, 107.14822387695312, 0.9978746175765991], "2": [255.67996215820312, 111.18667602539062, 0.9943506717681885], "3": [335.21221923828125, 114.72074890136719, 0.9550912976264954], "4": [227.6669921875, 121.66488647460938, 0.7413054704666138], "5": [391.48748779296875, 230.355224609375, 0.9933363199234009], "6": [179.23097229003906, 237.07223510742188, 0.9941149353981018], "7": [522.637451171875, 359.61187744140625, 0.8903718590736389], "8": [109.32485961914062, 394.843505859375, 0.8643593192100525], "9": [513.114990234375, 227.81298828125, 0.9387823343276978], "10": [166.0192108154297, 345.9280090332031, 0.8952028155326843], "11": [363.13677978515625, 480.0, 0.12975585460662842], "12": [229.36648559570312, 480.0, 0.12784969806671143], "13": [413.8069763183594, 409.3868408203125, 0.0018657729960978031], "14": [260.4946594238281, 402.26458740234375, 0.002091510221362114], "15": [433.3953857421875, 420.6614685058594, 0.00020519150712061673], "16": [292.8141784667969, 420.0700378417969, 0.000237739528529346]}} +{"t": 38.02992, "tracked": true, "track_id": 1, "bbox": [73.16165924072266, 22.687116622924805, 561.366943359375, 479.7014465332031], "det_conf": 0.9226917624473572, "mean_kpt_conf": 0.9350910186767578, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6778639918768758, "right_lift": -0.9162818870478329, "left_bend": 0.753863680569069, "right_bend": 0.870857247913167}, "keypoints": {"0": [281.33831787109375, 134.19764709472656, 0.9988922476768494], "1": [303.6263427734375, 108.28567504882812, 0.9976053237915039], "2": [258.15313720703125, 110.3756103515625, 0.9949904084205627], "3": [334.7327880859375, 117.95388793945312, 0.9405093789100647], "4": [228.11671447753906, 120.97695922851562, 0.778998851776123], "5": [388.58575439453125, 234.29263305664062, 0.9934656023979187], "6": [180.0757598876953, 239.27455139160156, 0.9940069913864136], "7": [524.9110107421875, 359.98846435546875, 0.8902351260185242], "8": [111.23565673828125, 396.75665283203125, 0.8607335090637207], "9": [517.9202880859375, 227.41700744628906, 0.9401527643203735], "10": [162.1776580810547, 349.0146484375, 0.8964110016822815], "11": [362.8670349121094, 480.0, 0.11391790211200714], "12": [231.66839599609375, 480.0, 0.1097709909081459], "13": [415.48358154296875, 402.21337890625, 0.0018450674833729863], "14": [266.0814208984375, 392.92596435546875, 0.0020186486653983593], "15": [436.48797607421875, 415.7689514160156, 0.00020804647647310048], "16": [297.86090087890625, 409.23211669921875, 0.0002344396198168397]}} +{"t": 38.094094, "tracked": true, "track_id": 1, "bbox": [71.97167205810547, 22.838056564331055, 566.9006958007812, 479.7677917480469], "det_conf": 0.9192590117454529, "mean_kpt_conf": 0.9368365190245889, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.66545545128692, "right_lift": -0.9188146818079356, "left_bend": 0.730646143633023, "right_bend": 0.872139015177268}, "keypoints": {"0": [282.8964538574219, 134.298583984375, 0.9989025592803955], "1": [304.922119140625, 108.333740234375, 0.9972422122955322], "2": [259.2045593261719, 110.1470947265625, 0.9955796599388123], "3": [334.6617736816406, 118.02584838867188, 0.9197254776954651], "4": [227.47276306152344, 120.65206909179688, 0.8225651383399963], "5": [384.7855224609375, 235.42880249023438, 0.9933473467826843], "6": [178.08843994140625, 240.70713806152344, 0.9940060377120972], "7": [523.408935546875, 359.01275634765625, 0.8863183856010437], "8": [110.1746826171875, 398.8066101074219, 0.8592140078544617], "9": [523.873779296875, 226.48812866210938, 0.9391676783561707], "10": [163.365478515625, 347.9080810546875, 0.8991332054138184], "11": [356.3544006347656, 480.0, 0.1065860390663147], "12": [226.46519470214844, 480.0, 0.10243243724107742], "13": [415.61248779296875, 399.0171203613281, 0.0017969938926398754], "14": [267.86712646484375, 391.2486572265625, 0.0019868682138621807], "15": [438.09979248046875, 409.9330749511719, 0.0002077491517411545], "16": [299.8343200683594, 404.6386413574219, 0.00023127809981815517]}} +{"t": 38.155865, "tracked": true, "track_id": 1, "bbox": [68.85629272460938, 21.946256637573242, 576.2808837890625, 479.731689453125], "det_conf": 0.9131121635437012, "mean_kpt_conf": 0.9466794404116544, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6704841917470306, "right_lift": -0.8959018689793709, "left_bend": 0.6992049598993108, "right_bend": 0.8230831924022012}, "keypoints": {"0": [284.58282470703125, 133.4913787841797, 0.9991877675056458], "1": [305.9139709472656, 108.463134765625, 0.997861921787262], "2": [260.783447265625, 110.30712890625, 0.996799111366272], "3": [335.03533935546875, 119.53994750976562, 0.9220554828643799], "4": [229.17295837402344, 122.43856811523438, 0.850833535194397], "5": [383.9820861816406, 236.4329376220703, 0.9933165311813354], "6": [179.27322387695312, 234.3913116455078, 0.9949938654899597], "7": [521.3215942382812, 360.5480651855469, 0.900404155254364], "8": [103.76092529296875, 386.6733703613281, 0.9030753970146179], "9": [535.2752685546875, 233.08767700195312, 0.9389699101448059], "10": [159.28396606445312, 352.275146484375, 0.9159761667251587], "11": [352.6141357421875, 480.0, 0.11565062403678894], "12": [219.6121826171875, 480.0, 0.12629100680351257], "13": [410.00469970703125, 408.80255126953125, 0.0014013868058100343], "14": [230.71240234375, 397.152587890625, 0.001635068911127746], "15": [453.2962646484375, 417.78045654296875, 0.00015582657943014055], "16": [258.5215148925781, 414.65570068359375, 0.0001754987461026758]}} +{"t": 38.191995, "tracked": true, "track_id": 1, "bbox": [67.36446380615234, 21.83133888244629, 579.3563842773438, 479.66204833984375], "det_conf": 0.9114460945129395, "mean_kpt_conf": 0.9486239715055986, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.657952495744487, "right_lift": -0.9056700140902765, "left_bend": 0.6816690971921517, "right_bend": 0.8308406830346006}, "keypoints": {"0": [284.9362487792969, 133.99295043945312, 0.9992634654045105], "1": [306.4277038574219, 108.59194946289062, 0.9976187348365784], "2": [260.6116943359375, 109.97470092773438, 0.9972381591796875], "3": [334.15087890625, 118.54183959960938, 0.8864009380340576], "4": [226.7542724609375, 120.33175659179688, 0.8771106004714966], "5": [379.83685302734375, 231.29409790039062, 0.994174063205719], "6": [177.91082763671875, 231.96585083007812, 0.9950082302093506], "7": [523.02490234375, 356.3983459472656, 0.9166247844696045], "8": [104.08387756347656, 389.66748046875, 0.9076828360557556], "9": [540.8645629882812, 236.2193603515625, 0.9438372254371643], "10": [154.79019165039062, 354.86358642578125, 0.9199046492576599], "11": [354.273681640625, 480.0, 0.11386752873659134], "12": [222.95697021484375, 480.0, 0.11616820096969604], "13": [421.2372741699219, 398.6711120605469, 0.0013193016638979316], "14": [242.66854858398438, 388.97222900390625, 0.0014618029817938805], "15": [466.2243347167969, 409.8036804199219, 0.00014498191012535244], "16": [268.9373474121094, 404.6997375488281, 0.00015503159374929965]}} +{"t": 38.225778, "tracked": true, "track_id": 1, "bbox": [64.44735717773438, 22.239948272705078, 585.27685546875, 479.7477111816406], "det_conf": 0.9054121375083923, "mean_kpt_conf": 0.9477011290463534, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.66628183706773, "right_lift": -0.8986192552472525, "left_bend": 0.6565065558582077, "right_bend": 0.8437676433408954}, "keypoints": {"0": [285.3992004394531, 133.5390167236328, 0.9992457628250122], "1": [306.4149169921875, 108.42620849609375, 0.9976873397827148], "2": [260.89764404296875, 109.65916442871094, 0.9970700740814209], "3": [334.49237060546875, 119.98056030273438, 0.8947736620903015], "4": [227.2069091796875, 121.68678283691406, 0.8737449049949646], "5": [380.727294921875, 239.76736450195312, 0.9941257238388062], "6": [177.31689453125, 238.1256866455078, 0.9952221512794495], "7": [518.189697265625, 362.5898132324219, 0.9095314741134644], "8": [102.51255798339844, 391.34228515625, 0.904746413230896], "9": [548.6443481445312, 236.79721069335938, 0.9398528933525085], "10": [156.61460876464844, 352.2431640625, 0.9187120199203491], "11": [354.93450927734375, 480.0, 0.1109667494893074], "12": [222.26661682128906, 480.0, 0.115367092192173], "13": [426.88153076171875, 400.32489013671875, 0.001271986635401845], "14": [244.72467041015625, 392.2598571777344, 0.0014546362217515707], "15": [472.2467041015625, 400.6860656738281, 0.00014397168706636876], "16": [271.8799133300781, 400.8009033203125, 0.0001582904951646924]}} +{"t": 38.290649, "tracked": true, "track_id": 1, "bbox": [63.30604553222656, 21.79798698425293, 591.6957397460938, 480.0], "det_conf": 0.9093288779258728, "mean_kpt_conf": 0.9490190039981495, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6678137416181207, "right_lift": -0.8955535425130614, "left_bend": 0.6506519589120362, "right_bend": 0.8568082420154844}, "keypoints": {"0": [285.2743225097656, 133.28465270996094, 0.9992425441741943], "1": [306.39385986328125, 108.12774658203125, 0.9978093504905701], "2": [261.10015869140625, 109.59306335449219, 0.9967983365058899], "3": [334.57159423828125, 119.07643127441406, 0.9037531018257141], "4": [228.4154052734375, 121.05010986328125, 0.8579729795455933], "5": [379.8185119628906, 234.9376220703125, 0.9945147037506104], "6": [180.24755859375, 234.481201171875, 0.9950114488601685], "7": [519.7822875976562, 360.5135498046875, 0.9225732684135437], "8": [102.84121704101562, 390.2760925292969, 0.9064416289329529], "9": [551.1663818359375, 241.57150268554688, 0.9450076222419739], "10": [156.2967071533203, 348.80413818359375, 0.9200840592384338], "11": [356.6607360839844, 480.0, 0.11737684905529022], "12": [226.41366577148438, 480.0, 0.11603610962629318], "13": [429.600341796875, 396.7846374511719, 0.0012965068453922868], "14": [248.90008544921875, 389.356689453125, 0.001413852209225297], "15": [478.00897216796875, 402.72113037109375, 0.00014244734484236687], "16": [273.2145690917969, 401.7230529785156, 0.00015252642333507538]}} +{"t": 38.328072, "tracked": true, "track_id": 1, "bbox": [65.04998016357422, 21.856525421142578, 594.6688232421875, 480.0], "det_conf": 0.9078782200813293, "mean_kpt_conf": 0.9492889642715454, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7032466347523566, "right_lift": -0.9325856186757927, "left_bend": 0.6858729775528245, "right_bend": 0.8592487075281169}, "keypoints": {"0": [285.1240539550781, 132.2708282470703, 0.9994000196456909], "1": [305.8649597167969, 107.9593276977539, 0.9977225661277771], "2": [260.88275146484375, 108.48530578613281, 0.9973310232162476], "3": [332.61029052734375, 119.10862731933594, 0.8503828644752502], "4": [224.5860595703125, 119.29129791259766, 0.8649707436561584], "5": [384.7202453613281, 231.25306701660156, 0.9958685636520386], "6": [174.19757080078125, 232.2976531982422, 0.9955846667289734], "7": [516.3932495117188, 361.5000915527344, 0.9469695687294006], "8": [113.34321594238281, 389.52740478515625, 0.9215397834777832], "9": [538.2108764648438, 251.62435913085938, 0.9515849947929382], "10": [152.4895782470703, 352.3707275390625, 0.9208238124847412], "11": [370.125244140625, 480.0, 0.19326011836528778], "12": [228.41883850097656, 480.0, 0.17457790672779083], "13": [448.01934814453125, 403.0985412597656, 0.0013081160141155124], "14": [232.334228515625, 397.0028076171875, 0.0012355225626379251], "15": [497.3111267089844, 414.53826904296875, 0.000109493026684504], "16": [256.2286376953125, 412.19775390625, 0.0001045893513946794]}} +{"t": 38.387104, "tracked": true, "track_id": 1, "bbox": [62.66413116455078, 21.28105354309082, 596.1260986328125, 479.480712890625], "det_conf": 0.9058617949485779, "mean_kpt_conf": 0.9496543678370389, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6464980571794189, "right_lift": -0.8864700100530852, "left_bend": 0.6314625112434782, "right_bend": 0.8435302809815146}, "keypoints": {"0": [286.31982421875, 133.37747192382812, 0.9992768168449402], "1": [306.9482421875, 108.69366455078125, 0.9978582262992859], "2": [261.48236083984375, 109.51637268066406, 0.9970543384552002], "3": [334.25860595703125, 120.9873046875, 0.8971654176712036], "4": [227.01028442382812, 122.37042236328125, 0.8700577020645142], "5": [379.7892150878906, 238.1060333251953, 0.9938690066337585], "6": [179.65345764160156, 237.56454467773438, 0.994925856590271], "7": [517.802734375, 355.0592956542969, 0.9174600839614868], "8": [102.03718566894531, 386.23907470703125, 0.9105334281921387], "9": [552.0215454101562, 240.38304138183594, 0.9439497590065002], "10": [153.7525634765625, 351.00299072265625, 0.9240474104881287], "11": [357.4405517578125, 480.0, 0.12023241817951202], "12": [225.63958740234375, 480.0, 0.12422902882099152], "13": [424.48345947265625, 401.17572021484375, 0.0012934068217873573], "14": [235.8948211669922, 393.82586669921875, 0.0014336536405608058], "15": [472.33642578125, 409.26220703125, 0.0001373182312818244], "16": [255.88717651367188, 408.2611999511719, 0.00014754667063243687]}} +{"t": 38.455182, "tracked": true, "track_id": 1, "bbox": [63.15650177001953, 21.539541244506836, 595.0699462890625, 479.37994384765625], "det_conf": 0.9082615971565247, "mean_kpt_conf": 0.9500957293943926, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6748469928350056, "right_lift": -0.9233235283420091, "left_bend": 0.684639062470913, "right_bend": 0.8385715298898441}, "keypoints": {"0": [286.23760986328125, 133.1763916015625, 0.9994391798973083], "1": [307.5829162597656, 108.1568603515625, 0.9978353381156921], "2": [261.3636779785156, 108.25878143310547, 0.9975952506065369], "3": [334.4646911621094, 118.26107788085938, 0.8439587950706482], "4": [223.94862365722656, 117.61428833007812, 0.8692637085914612], "5": [385.0865478515625, 227.11521911621094, 0.9949402809143066], "6": [177.5960235595703, 228.36383056640625, 0.9954113364219666], "7": [521.8297729492188, 352.1640625, 0.9402370452880859], "8": [113.5482177734375, 382.3568115234375, 0.9295963048934937], "9": [539.0182495117188, 246.12408447265625, 0.9517711997032166], "10": [150.78643798828125, 352.88470458984375, 0.9310045838356018], "11": [373.3768005371094, 480.0, 0.16241303086280823], "12": [233.4224090576172, 480.0, 0.15950533747673035], "13": [440.3134765625, 398.6476135253906, 0.0011364823440089822], "14": [225.36624145507812, 389.9420166015625, 0.0011523897992447019], "15": [489.54034423828125, 419.09295654296875, 0.00010014514555223286], "16": [243.57611083984375, 411.8452453613281, 0.00010020398622145876]}} +{"t": 38.519013, "tracked": true, "track_id": 1, "bbox": [64.81185150146484, 22.245317459106445, 592.0316772460938, 479.3055725097656], "det_conf": 0.9055041670799255, "mean_kpt_conf": 0.9459515268152411, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7086283786382539, "right_lift": -0.9349804527123385, "left_bend": 0.6971197240851681, "right_bend": 0.8587608756388428}, "keypoints": {"0": [286.411865234375, 132.67469787597656, 0.9993659853935242], "1": [307.5815734863281, 108.25634765625, 0.9975355863571167], "2": [261.899658203125, 108.25763702392578, 0.9973741769790649], "3": [334.2100830078125, 119.57127380371094, 0.8399227857589722], "4": [224.82843017578125, 118.63873291015625, 0.8715421557426453], "5": [385.5361022949219, 233.2399444580078, 0.9952762126922607], "6": [174.50900268554688, 232.1178436279297, 0.99518221616745], "7": [515.6553955078125, 363.9210510253906, 0.9359878897666931], "8": [115.012939453125, 388.9483337402344, 0.9123309254646301], "9": [535.5423583984375, 246.8626251220703, 0.9466384053230286], "10": [150.20147705078125, 355.2014465332031, 0.9143104553222656], "11": [369.0888977050781, 480.0, 0.157701775431633], "12": [227.854736328125, 480.0, 0.14561991393566132], "13": [441.796875, 399.7836608886719, 0.0012121264589950442], "14": [230.80186462402344, 391.4462890625, 0.0011667584767565131], "15": [486.5950622558594, 411.28094482421875, 0.00010977842612192035], "16": [256.82208251953125, 407.5934753417969, 0.00010587638826109469]}} +{"t": 38.552774, "tracked": true, "track_id": 1, "bbox": [64.19316864013672, 22.304914474487305, 588.9882202148438, 479.34490966796875], "det_conf": 0.9097069501876831, "mean_kpt_conf": 0.9496062289584767, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7175673082895446, "right_lift": -0.9316733024605566, "left_bend": 0.720004268348663, "right_bend": 0.866995461597458}, "keypoints": {"0": [286.07342529296875, 132.72557067871094, 0.9993876218795776], "1": [307.95001220703125, 107.98812103271484, 0.9978305697441101], "2": [261.55889892578125, 108.54084777832031, 0.9974435567855835], "3": [335.9481201171875, 118.92756652832031, 0.8715348839759827], "4": [225.6739044189453, 118.978515625, 0.8676245212554932], "5": [388.2753601074219, 230.12918090820312, 0.9951881170272827], "6": [175.40541076660156, 230.31385803222656, 0.9958285689353943], "7": [520.1536865234375, 365.99859619140625, 0.9320212602615356], "8": [112.67041015625, 391.1973571777344, 0.922069251537323], "9": [532.6724853515625, 251.74974060058594, 0.9448994994163513], "10": [153.2694854736328, 350.9421081542969, 0.9218406677246094], "11": [369.9945373535156, 480.0, 0.15679144859313965], "12": [227.96209716796875, 480.0, 0.1557319462299347], "13": [438.2298889160156, 399.8310546875, 0.0012284741969779134], "14": [227.38510131835938, 391.1726989746094, 0.0012822437565773726], "15": [481.3599853515625, 415.981689453125, 0.00011406820703996345], "16": [249.91323852539062, 410.4660949707031, 0.00011757225001929328]}} +{"t": 38.59025, "tracked": true, "track_id": 1, "bbox": [64.73894500732422, 21.890575408935547, 585.9603271484375, 479.366455078125], "det_conf": 0.9022550582885742, "mean_kpt_conf": 0.9482814290306785, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6570155479453393, "right_lift": -0.9020272432500315, "left_bend": 0.6676377449518768, "right_bend": 0.8368657345708036}, "keypoints": {"0": [286.55804443359375, 134.02310180664062, 0.9992789626121521], "1": [308.5915832519531, 109.87187194824219, 0.9975938200950623], "2": [262.1162109375, 109.06100463867188, 0.9973860383033752], "3": [335.4574279785156, 122.827880859375, 0.8760546445846558], "4": [226.09596252441406, 120.16122436523438, 0.8886670470237732], "5": [379.1385192871094, 238.3838653564453, 0.9938995838165283], "6": [174.5863494873047, 234.98069763183594, 0.9948700666427612], "7": [518.36669921875, 359.723388671875, 0.9129793047904968], "8": [100.48568725585938, 389.81982421875, 0.905170202255249], "9": [541.9075927734375, 237.45269775390625, 0.943244457244873], "10": [156.74224853515625, 350.3382568359375, 0.9219515919685364], "11": [353.5897216796875, 480.0, 0.11003436148166656], "12": [219.4394989013672, 480.0, 0.11279978603124619], "13": [419.30206298828125, 402.1527404785156, 0.0012730075977742672], "14": [232.92333984375, 391.00927734375, 0.0013912632130086422], "15": [464.23028564453125, 414.5704345703125, 0.00014045694842934608], "16": [257.15679931640625, 406.20318603515625, 0.00014743107021786273]}} +{"t": 38.653947, "tracked": true, "track_id": 1, "bbox": [70.20381164550781, 22.267704010009766, 579.231201171875, 479.41290283203125], "det_conf": 0.9148353934288025, "mean_kpt_conf": 0.9424683126536283, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6778066680183218, "right_lift": -0.9052245433601852, "left_bend": 0.7054671458964422, "right_bend": 0.8674149464074922}, "keypoints": {"0": [285.6354064941406, 135.94964599609375, 0.999065101146698], "1": [307.3982238769531, 110.25901794433594, 0.9977164268493652], "2": [261.9085693359375, 111.2574462890625, 0.9957962036132812], "3": [336.86920166015625, 119.905029296875, 0.9209486246109009], "4": [228.7911376953125, 120.751708984375, 0.8174142837524414], "5": [387.7007751464844, 237.44346618652344, 0.9942769408226013], "6": [177.86102294921875, 241.04476928710938, 0.9945857524871826], "7": [520.6471557617188, 360.00469970703125, 0.9107570648193359], "8": [105.07460021972656, 396.0997314453125, 0.8832831382751465], "9": [532.4759521484375, 241.2521514892578, 0.9438157677650452], "10": [163.02699279785156, 345.7433776855469, 0.9094921350479126], "11": [364.8168029785156, 480.0, 0.1430579274892807], "12": [229.39637756347656, 480.0, 0.13460129499435425], "13": [423.5806884765625, 409.724609375, 0.0016431559342890978], "14": [250.95169067382812, 403.7372131347656, 0.001719395979307592], "15": [448.7261047363281, 417.9114074707031, 0.00016623950796201825], "16": [270.4013366699219, 413.63037109375, 0.0001771292882040143]}} +{"t": 38.717623, "tracked": true, "track_id": 1, "bbox": [69.29438781738281, 23.357406616210938, 569.0538940429688, 479.2315368652344], "det_conf": 0.919171154499054, "mean_kpt_conf": 0.9358318610624834, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6834412226878552, "right_lift": -0.9130331799747335, "left_bend": 0.7201951839446377, "right_bend": 0.8641470544402614}, "keypoints": {"0": [283.24468994140625, 137.44845581054688, 0.9988656044006348], "1": [306.0809020996094, 111.4415283203125, 0.997367799282074], "2": [260.3252868652344, 112.04081726074219, 0.9952059388160706], "3": [336.4842529296875, 120.28323364257812, 0.9267011284828186], "4": [228.7447509765625, 119.67582702636719, 0.8122416138648987], "5": [385.8199462890625, 238.482177734375, 0.9929840564727783], "6": [176.7393798828125, 240.60025024414062, 0.9940841794013977], "7": [517.1307373046875, 361.4171447753906, 0.8809632658958435], "8": [107.31596374511719, 396.0014953613281, 0.8590176701545715], "9": [524.847900390625, 234.44284057617188, 0.9364021420478821], "10": [165.85601806640625, 344.2562255859375, 0.9003170728683472], "11": [360.3597717285156, 480.0, 0.10494758933782578], "12": [228.38055419921875, 480.0, 0.10359388589859009], "13": [415.6784973144531, 398.8321533203125, 0.0018078078282997012], "14": [264.36944580078125, 391.54681396484375, 0.002012412529438734], "15": [437.9630126953125, 411.3260192871094, 0.00021334535267669708], "16": [300.10205078125, 405.797607421875, 0.00023961649276316166]}} +{"t": 38.752234, "tracked": true, "track_id": 1, "bbox": [71.12522888183594, 22.886432647705078, 563.6578979492188, 478.9520263671875], "det_conf": 0.9216558933258057, "mean_kpt_conf": 0.93677880005403, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6794566806473937, "right_lift": -0.9070201933139651, "left_bend": 0.7303496625444905, "right_bend": 0.868837270501553}, "keypoints": {"0": [281.9408264160156, 137.65380859375, 0.9988969564437866], "1": [305.6366271972656, 111.77658081054688, 0.9977518916130066], "2": [259.6773681640625, 112.00802612304688, 0.9946703314781189], "3": [337.5849914550781, 120.26055908203125, 0.9419524073600769], "4": [229.65921020507812, 118.60543823242188, 0.7662283778190613], "5": [385.34033203125, 233.8698272705078, 0.9931749701499939], "6": [180.64254760742188, 237.14508056640625, 0.9938941597938538], "7": [516.4118041992188, 355.2484436035156, 0.8992995023727417], "8": [107.6876220703125, 394.28973388671875, 0.8700496554374695], "9": [519.3115234375, 231.12362670898438, 0.9435911178588867], "10": [166.32568359375, 342.43402099609375, 0.905057430267334], "11": [361.2278137207031, 480.0, 0.12316618114709854], "12": [230.35763549804688, 480.0, 0.11842679977416992], "13": [412.6735534667969, 404.02227783203125, 0.0018463474698364735], "14": [255.2252197265625, 395.50811767578125, 0.001963640796020627], "15": [440.087158203125, 420.749755859375, 0.00020584522280842066], "16": [282.2823486328125, 411.12646484375, 0.0002260674227727577]}} +{"t": 38.816216, "tracked": true, "track_id": 1, "bbox": [72.09468078613281, 22.273658752441406, 557.3280639648438, 479.124755859375], "det_conf": 0.9295332431793213, "mean_kpt_conf": 0.9311404390768572, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6996331207531329, "right_lift": -0.9178566334363077, "left_bend": 0.7461882675253458, "right_bend": 0.8609135484560081}, "keypoints": {"0": [280.600341796875, 138.53646850585938, 0.998777449131012], "1": [304.7425537109375, 111.81150817871094, 0.9975979924201965], "2": [258.4051513671875, 112.33566284179688, 0.9943596720695496], "3": [337.76544189453125, 118.65283203125, 0.9451842904090881], "4": [228.98687744140625, 117.38861083984375, 0.7634888887405396], "5": [388.1195983886719, 235.20899963378906, 0.9926493763923645], "6": [177.17095947265625, 237.28709411621094, 0.9936920404434204], "7": [515.575439453125, 360.0124206542969, 0.8781424164772034], "8": [108.87565612792969, 395.21954345703125, 0.851298451423645], "9": [515.764404296875, 230.64120483398438, 0.9353252053260803], "10": [165.92681884765625, 344.604248046875, 0.8920290470123291], "11": [358.47930908203125, 480.0, 0.10803234577178955], "12": [224.7994842529297, 480.0, 0.10631189495325089], "13": [408.5982666015625, 403.5945129394531, 0.0018676528707146645], "14": [254.44638061523438, 394.88275146484375, 0.002051249146461487], "15": [427.0148010253906, 419.0947570800781, 0.00022236631775740534], "16": [288.3595275878906, 411.7457275390625, 0.00025007870863191783]}} +{"t": 38.886601, "tracked": true, "track_id": 1, "bbox": [72.99138641357422, 22.262052536010742, 555.6504516601562, 479.4178771972656], "det_conf": 0.9312316179275513, "mean_kpt_conf": 0.9294384663755243, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6946266401244532, "right_lift": -0.9037951909973522, "left_bend": 0.7703689472405741, "right_bend": 0.8624557701028509}, "keypoints": {"0": [279.87225341796875, 138.01907348632812, 0.9988433122634888], "1": [304.2012939453125, 111.33056640625, 0.9979748129844666], "2": [257.70428466796875, 112.51087951660156, 0.9941303133964539], "3": [338.784423828125, 118.92112731933594, 0.9577080607414246], "4": [229.6815948486328, 119.0433349609375, 0.7229552865028381], "5": [391.8059997558594, 233.7076416015625, 0.9925639033317566], "6": [181.19866943359375, 237.05291748046875, 0.9937904477119446], "7": [521.4613647460938, 358.9033203125, 0.878447949886322], "8": [106.1468505859375, 395.550537109375, 0.856097400188446], "9": [510.6605224609375, 226.65219116210938, 0.9371242523193359], "10": [163.4574432373047, 347.62542724609375, 0.8941873908042908], "11": [365.40155029296875, 480.0, 0.10496658831834793], "12": [232.15216064453125, 480.0, 0.10550227016210556], "13": [407.0492248535156, 404.25909423828125, 0.0018068349454551935], "14": [254.62701416015625, 393.43829345703125, 0.0020021952223032713], "15": [427.5771179199219, 421.9591979980469, 0.00021565292263403535], "16": [284.5246887207031, 412.1596984863281, 0.0002485417644493282]}} +{"t": 38.951012, "tracked": true, "track_id": 1, "bbox": [73.4044418334961, 21.82038116455078, 551.2457275390625, 479.36944580078125], "det_conf": 0.930703341960907, "mean_kpt_conf": 0.9272305152632974, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7077521806818954, "right_lift": -0.9110813953545588, "left_bend": 0.7646696752151916, "right_bend": 0.8661827924689294}, "keypoints": {"0": [281.098388671875, 138.78199768066406, 0.9987698197364807], "1": [305.0229797363281, 111.21319580078125, 0.9977363348007202], "2": [258.1959228515625, 112.93794250488281, 0.9941084384918213], "3": [339.0122985839844, 117.52857971191406, 0.9513116478919983], "4": [228.93478393554688, 118.97708129882812, 0.7437427639961243], "5": [391.40130615234375, 236.71249389648438, 0.9922846555709839], "6": [179.45098876953125, 239.0531005859375, 0.9935610294342041], "7": [518.231689453125, 363.77471923828125, 0.8653644919395447], "8": [107.86737060546875, 397.2634582519531, 0.8398677110671997], "9": [511.9195556640625, 224.13731384277344, 0.9338016510009766], "10": [165.42401123046875, 346.2195129394531, 0.888987123966217], "11": [363.6719055175781, 480.0, 0.09623683989048004], "12": [230.48013305664062, 480.0, 0.09638158977031708], "13": [407.94781494140625, 403.61785888671875, 0.001849680906161666], "14": [260.2079162597656, 393.95989990234375, 0.0020549518521875143], "15": [428.0096435546875, 414.766845703125, 0.00022416893625631928], "16": [298.39129638671875, 409.7680358886719, 0.00025742160505615175]}} +{"t": 39.016092, "tracked": true, "track_id": 1, "bbox": [74.24937438964844, 22.825176239013672, 549.2998046875, 479.59228515625], "det_conf": 0.9346777200698853, "mean_kpt_conf": 0.924818450754339, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7140496106162927, "right_lift": -0.9112346070561047, "left_bend": 0.7755082095787893, "right_bend": 0.8681174756497191}, "keypoints": {"0": [279.8750305175781, 138.2452850341797, 0.9987634420394897], "1": [304.5341796875, 111.11459350585938, 0.9979267120361328], "2": [257.74896240234375, 112.52430725097656, 0.9936020970344543], "3": [339.981689453125, 118.5201416015625, 0.9595704674720764], "4": [230.14486694335938, 119.00381469726562, 0.7067236304283142], "5": [392.81707763671875, 236.4450225830078, 0.9924156665802002], "6": [179.66358947753906, 238.89114379882812, 0.9932399988174438], "7": [518.5072631835938, 364.6405029296875, 0.8730953931808472], "8": [107.04598999023438, 399.5457763671875, 0.8350571393966675], "9": [508.6375732421875, 224.415771484375, 0.9375738501548767], "10": [165.71937561035156, 346.83148193359375, 0.8850345611572266], "11": [361.2077941894531, 480.0, 0.09418581426143646], "12": [226.6053466796875, 480.0, 0.09120678901672363], "13": [404.05419921875, 401.48626708984375, 0.0018534880364313722], "14": [251.49099731445312, 391.19769287109375, 0.0019813217222690582], "15": [424.2392272949219, 417.884765625, 0.00022890136460773647], "16": [286.615966796875, 410.9076843261719, 0.0002574780664872378]}} +{"t": 39.081452, "tracked": true, "track_id": 1, "bbox": [74.04280853271484, 22.28929328918457, 550.6527709960938, 479.8155517578125], "det_conf": 0.9301543235778809, "mean_kpt_conf": 0.9266077713532881, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6868891603441631, "right_lift": -0.9090470201686213, "left_bend": 0.7587063160814274, "right_bend": 0.8587951725251799}, "keypoints": {"0": [280.59576416015625, 138.94395446777344, 0.9987415671348572], "1": [305.4974060058594, 111.37887573242188, 0.997788667678833], "2": [257.7320556640625, 112.23788452148438, 0.9937897324562073], "3": [340.2215881347656, 118.09103393554688, 0.9541389346122742], "4": [228.03111267089844, 117.60456848144531, 0.7303451299667358], "5": [389.9677734375, 236.63409423828125, 0.9922048449516296], "6": [180.4606170654297, 240.11827087402344, 0.9933528900146484], "7": [517.9188232421875, 357.56524658203125, 0.8703895211219788], "8": [108.89051818847656, 396.25360107421875, 0.8383450508117676], "9": [510.4320373535156, 222.9281005859375, 0.935896635055542], "10": [165.72341918945312, 348.6375732421875, 0.8876925110816956], "11": [364.42779541015625, 480.0, 0.09955495595932007], "12": [232.2748260498047, 480.0, 0.09783848375082016], "13": [407.298828125, 405.9130859375, 0.001804238767363131], "14": [260.6600646972656, 395.92022705078125, 0.0019496295135468245], "15": [429.44146728515625, 414.9187316894531, 0.00022283961880020797], "16": [297.7264099121094, 406.2764892578125, 0.0002517660614103079]}} +{"t": 39.142773, "tracked": true, "track_id": 1, "bbox": [74.99247741699219, 22.64181900024414, 552.6368408203125, 479.86578369140625], "det_conf": 0.9308093190193176, "mean_kpt_conf": 0.92508972232992, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6862928721396447, "right_lift": -0.9085376133720162, "left_bend": 0.773402506461301, "right_bend": 0.8598901302713772}, "keypoints": {"0": [279.9871826171875, 138.23849487304688, 0.9987157583236694], "1": [304.5323791503906, 111.75628662109375, 0.9978522062301636], "2": [258.4114074707031, 112.46902465820312, 0.9932218790054321], "3": [339.31280517578125, 119.21539306640625, 0.9595954418182373], "4": [230.8240203857422, 118.14164733886719, 0.6972256898880005], "5": [391.84521484375, 234.64161682128906, 0.9928212761878967], "6": [182.24085998535156, 238.5847625732422, 0.9933473467826843], "7": [522.3263549804688, 357.7615966796875, 0.8813409209251404], "8": [109.388916015625, 397.0056457519531, 0.8381555676460266], "9": [508.63177490234375, 224.67584228515625, 0.9385116696357727], "10": [169.29078674316406, 346.5917053222656, 0.8851991891860962], "11": [367.74444580078125, 480.0, 0.10991813987493515], "12": [235.76065063476562, 480.0, 0.10423750430345535], "13": [412.22052001953125, 406.4525146484375, 0.0019205359276384115], "14": [267.7210388183594, 395.72625732421875, 0.0020265085622668266], "15": [434.1368103027344, 418.651611328125, 0.00022743985755369067], "16": [303.3468322753906, 406.9503479003906, 0.00025548998382873833]}} +{"t": 39.179027, "tracked": true, "track_id": 1, "bbox": [75.77162170410156, 22.948965072631836, 553.59423828125, 479.6421203613281], "det_conf": 0.930151641368866, "mean_kpt_conf": 0.9299433610656045, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7038746528318864, "right_lift": -0.9148865525216487, "left_bend": 0.767760273089445, "right_bend": 0.86861388798413}, "keypoints": {"0": [280.58673095703125, 138.243408203125, 0.99885094165802], "1": [305.1654052734375, 111.762939453125, 0.997956395149231], "2": [258.5440368652344, 112.41555786132812, 0.9940252900123596], "3": [340.0530700683594, 120.3724365234375, 0.9572358131408691], "4": [230.1502227783203, 119.31817626953125, 0.7170659303665161], "5": [393.7742614746094, 237.93258666992188, 0.9930261373519897], "6": [181.00611877441406, 239.9585723876953, 0.9939450621604919], "7": [520.2848510742188, 363.29449462890625, 0.883983314037323], "8": [111.28988647460938, 397.94891357421875, 0.8589884638786316], "9": [512.0604248046875, 227.19491577148438, 0.9386562705039978], "10": [167.80682373046875, 346.08782958984375, 0.8956433534622192], "11": [366.5072326660156, 480.0, 0.10976845771074295], "12": [230.49343872070312, 480.0, 0.10860593616962433], "13": [413.66845703125, 404.6563720703125, 0.0017810234567150474], "14": [251.77474975585938, 393.97857666015625, 0.0019628782756626606], "15": [433.6308898925781, 418.7469787597656, 0.00020760517509188503], "16": [280.4477233886719, 409.5426025390625, 0.00023818013141863048]}} +{"t": 39.242975, "tracked": true, "track_id": 1, "bbox": [76.68273162841797, 23.601301193237305, 554.4786376953125, 479.4917907714844], "det_conf": 0.9253867864608765, "mean_kpt_conf": 0.9324960816990245, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7196024469087964, "right_lift": -0.9111224035718263, "left_bend": 0.7544459865782293, "right_bend": 0.8658130038990938}, "keypoints": {"0": [279.81768798828125, 138.65484619140625, 0.9988682270050049], "1": [304.3572692871094, 112.23361206054688, 0.9978116154670715], "2": [257.4278564453125, 112.73863220214844, 0.9943349361419678], "3": [338.99591064453125, 121.12387084960938, 0.9499642252922058], "4": [228.6981201171875, 119.63729858398438, 0.7418271899223328], "5": [388.80523681640625, 239.43492126464844, 0.9927629828453064], "6": [182.4632568359375, 239.31344604492188, 0.9941413998603821], "7": [512.00439453125, 367.10797119140625, 0.8794012069702148], "8": [110.84844970703125, 397.6346740722656, 0.8677996397018433], "9": [512.5321655273438, 230.52133178710938, 0.9367148876190186], "10": [168.1267852783203, 346.9461364746094, 0.9038305878639221], "11": [365.6612548828125, 480.0, 0.10866312682628632], "12": [234.10214233398438, 480.0, 0.11115321516990662], "13": [418.42132568359375, 403.3555603027344, 0.0018192839343100786], "14": [263.6845703125, 393.0382080078125, 0.002107464475557208], "15": [442.4488220214844, 413.69171142578125, 0.0002090277266688645], "16": [292.40869140625, 406.7926025390625, 0.00024782735272310674]}} +{"t": 39.312692, "tracked": true, "track_id": 1, "bbox": [77.2139892578125, 24.2684383392334, 557.1823120117188, 479.37652587890625], "det_conf": 0.9224905371665955, "mean_kpt_conf": 0.9296718673272566, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7201699340088704, "right_lift": -0.9043222603039922, "left_bend": 0.7548814257594604, "right_bend": 0.8498079600965012}, "keypoints": {"0": [280.4073181152344, 138.92218017578125, 0.9987888932228088], "1": [304.4869079589844, 111.86180114746094, 0.9978538155555725], "2": [258.3504943847656, 113.22976684570312, 0.9938037395477295], "3": [340.1279602050781, 119.15092468261719, 0.9566712379455566], "4": [230.8502655029297, 119.3719482421875, 0.7287870645523071], "5": [393.26220703125, 240.853759765625, 0.9928309917449951], "6": [180.86000061035156, 241.11512756347656, 0.9940990209579468], "7": [514.4601440429688, 366.6585998535156, 0.8736258745193481], "8": [108.21452331542969, 395.0213317871094, 0.8557484149932861], "9": [514.8959350585938, 235.14344787597656, 0.9361643195152283], "10": [170.7473907470703, 346.69464111328125, 0.898017168045044], "11": [364.0628967285156, 480.0, 0.11552364379167557], "12": [229.30902099609375, 480.0, 0.11674746870994568], "13": [416.41192626953125, 408.33868408203125, 0.0019193480256944895], "14": [262.4265441894531, 400.17626953125, 0.0022067429963499308], "15": [434.6234130859375, 414.83367919921875, 0.0002167018537875265], "16": [294.5705261230469, 412.40472412109375, 0.00025628606090322137]}} +{"t": 39.346185, "tracked": true, "track_id": 1, "bbox": [69.57445526123047, 24.05756378173828, 557.714599609375, 479.7688293457031], "det_conf": 0.9179786443710327, "mean_kpt_conf": 0.9289513663812117, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.767300295583529, "right_lift": -0.8915931705213657, "left_bend": 0.7437760860887274, "right_bend": 0.8375836742309042}, "keypoints": {"0": [280.31561279296875, 135.37391662597656, 0.9988442659378052], "1": [302.6081848144531, 109.56942749023438, 0.9976531863212585], "2": [258.03594970703125, 113.43234252929688, 0.994021475315094], "3": [339.583251953125, 118.68267822265625, 0.9375289678573608], "4": [233.4951171875, 124.87135314941406, 0.7242180705070496], "5": [397.8660583496094, 236.579345703125, 0.9915281534194946], "6": [188.44046020507812, 232.22251892089844, 0.9904080033302307], "7": [507.30181884765625, 367.51910400390625, 0.8972283005714417], "8": [108.68264770507812, 389.25799560546875, 0.8501193523406982], "9": [522.6324462890625, 227.13717651367188, 0.9403597712516785], "10": [157.22171020507812, 356.7158203125, 0.896555483341217], "11": [363.7022705078125, 480.0, 0.09885946661233902], "12": [229.98228454589844, 480.0, 0.0953499972820282], "13": [404.63250732421875, 412.09466552734375, 0.002280856715515256], "14": [246.64712524414062, 403.55145263671875, 0.0022768431808799505], "15": [436.9325866699219, 440.051513671875, 0.00025231202016584575], "16": [291.41632080078125, 451.8588562011719, 0.00025701132835820317]}} +{"t": 39.408998, "tracked": true, "track_id": 1, "bbox": [72.85133361816406, 24.351848602294922, 564.2230834960938, 480.0], "det_conf": 0.913237988948822, "mean_kpt_conf": 0.937955151904713, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7201283628438511, "right_lift": -0.9358072516070739, "left_bend": 0.7463024274935764, "right_bend": 0.8614393841446437}, "keypoints": {"0": [280.7769470214844, 137.14358520507812, 0.9990472197532654], "1": [304.68023681640625, 111.77669525146484, 0.9978232383728027], "2": [258.40252685546875, 112.94701385498047, 0.9952431321144104], "3": [338.78955078125, 120.81303405761719, 0.9357280135154724], "4": [229.38885498046875, 121.13877868652344, 0.7543034553527832], "5": [395.3740539550781, 231.60311889648438, 0.9934318661689758], "6": [181.1910400390625, 233.93380737304688, 0.9951825737953186], "7": [520.3121337890625, 361.27471923828125, 0.9047724008560181], "8": [122.34658813476562, 390.1470642089844, 0.9032341837882996], "9": [524.053466796875, 237.44937133789062, 0.9351279139518738], "10": [160.71038818359375, 352.5547790527344, 0.9036126732826233], "11": [374.12066650390625, 480.0, 0.149415984749794], "12": [233.6138153076172, 480.0, 0.15985850989818573], "13": [430.4717102050781, 405.24871826171875, 0.0014480712125077844], "14": [239.717041015625, 396.3310852050781, 0.0016564778052270412], "15": [464.4223327636719, 418.01043701171875, 0.00014827428094577044], "16": [274.4142150878906, 413.09393310546875, 0.00017099599062930793]}} +{"t": 39.445954, "tracked": true, "track_id": 1, "bbox": [73.75792694091797, 23.657503128051758, 569.1690063476562, 480.0], "det_conf": 0.9154326319694519, "mean_kpt_conf": 0.9414885802702471, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7578239762542898, "right_lift": -0.9389755120298817, "left_bend": 0.7685554718645593, "right_bend": 0.826792076591842}, "keypoints": {"0": [280.960205078125, 137.8517608642578, 0.9991785883903503], "1": [304.7843322753906, 111.58124542236328, 0.9982519745826721], "2": [258.4570007324219, 113.44163513183594, 0.9953203797340393], "3": [339.4810485839844, 117.55514526367188, 0.945648193359375], "4": [230.26611328125, 119.21150207519531, 0.7209774255752563], "5": [396.60772705078125, 222.91473388671875, 0.9943846464157104], "6": [184.43321228027344, 225.49142456054688, 0.9957318902015686], "7": [516.63525390625, 362.32537841796875, 0.9281005263328552], "8": [124.21955871582031, 389.8570556640625, 0.9262225031852722], "9": [518.5911254882812, 242.19361877441406, 0.940950334072113], "10": [161.92391967773438, 359.64715576171875, 0.9116079211235046], "11": [379.51202392578125, 480.0, 0.19122716784477234], "12": [237.19625854492188, 480.0, 0.2027623951435089], "13": [435.6507568359375, 410.50604248046875, 0.0014021131210029125], "14": [223.74472045898438, 401.10516357421875, 0.0015641475329175591], "15": [473.7141418457031, 427.5921630859375, 0.000129919164464809], "16": [245.22694396972656, 423.59197998046875, 0.000148124061524868]}} +{"t": 39.508371, "tracked": true, "track_id": 1, "bbox": [72.34217071533203, 24.16107749938965, 573.1783447265625, 479.8586730957031], "det_conf": 0.9107468724250793, "mean_kpt_conf": 0.9365774122151461, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7230362805464319, "right_lift": -0.9132583235347569, "left_bend": 0.7211973725345024, "right_bend": 0.8310144833197205}, "keypoints": {"0": [281.62353515625, 138.43673706054688, 0.998993456363678], "1": [305.3939514160156, 111.40219116210938, 0.9981415271759033], "2": [259.0982666015625, 114.36061096191406, 0.9951441287994385], "3": [340.9010925292969, 118.58644104003906, 0.9574289917945862], "4": [233.01144409179688, 122.39306640625, 0.7613047957420349], "5": [392.6758117675781, 235.5268096923828, 0.9928376078605652], "6": [183.88880920410156, 234.87823486328125, 0.9948176741600037], "7": [517.6781005859375, 366.3604431152344, 0.8854950666427612], "8": [113.51551818847656, 392.6396484375, 0.8877502679824829], "9": [533.1145629882812, 230.67015075683594, 0.9310479760169983], "10": [167.47369384765625, 354.0916748046875, 0.8993900418281555], "11": [359.93438720703125, 480.0, 0.10812274366617203], "12": [225.0791015625, 480.0, 0.11970985680818558], "13": [416.8374328613281, 405.44952392578125, 0.001521933707408607], "14": [241.76220703125, 396.4884033203125, 0.001851976616308093], "15": [452.0970153808594, 412.556640625, 0.00018589719547890127], "16": [277.2658386230469, 415.20941162109375, 0.00022396855638362467]}} +{"t": 39.571102, "tracked": true, "track_id": 1, "bbox": [73.80934143066406, 24.556015014648438, 574.7003784179688, 479.906494140625], "det_conf": 0.913093090057373, "mean_kpt_conf": 0.9431478435342963, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7463771813994536, "right_lift": -0.9389159569514594, "left_bend": 0.7415046498126865, "right_bend": 0.8440502428394}, "keypoints": {"0": [281.8638610839844, 137.7628631591797, 0.9992246627807617], "1": [305.0228576660156, 111.54414367675781, 0.998263418674469], "2": [259.16534423828125, 113.48725128173828, 0.9958853125572205], "3": [338.6700439453125, 118.18867492675781, 0.9435747861862183], "4": [230.64682006835938, 120.27230834960938, 0.7582353353500366], "5": [395.6136779785156, 227.22393798828125, 0.9937514662742615], "6": [186.08018493652344, 228.42459106445312, 0.9959969520568848], "7": [517.3246459960938, 363.72149658203125, 0.9127430319786072], "8": [127.57699584960938, 388.0356140136719, 0.9274333715438843], "9": [527.5891723632812, 241.6553955078125, 0.9346348643302917], "10": [163.48365783691406, 355.9320983886719, 0.9148830771446228], "11": [377.32940673828125, 480.0, 0.16403017938137054], "12": [237.40521240234375, 480.0, 0.18926282227039337], "13": [426.8497009277344, 410.5207824707031, 0.0012766052968800068], "14": [220.04798889160156, 400.9010314941406, 0.001547807129099965], "15": [465.5345764160156, 425.79583740234375, 0.00012122381303925067], "16": [244.58743286132812, 423.436767578125, 0.00014525672304444015]}} +{"t": 39.606892, "tracked": true, "track_id": 1, "bbox": [75.75403594970703, 25.147075653076172, 573.1074829101562, 479.5264587402344], "det_conf": 0.9143226146697998, "mean_kpt_conf": 0.9386854605241255, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7125188898301791, "right_lift": -0.9095816238775908, "left_bend": 0.7116754887370758, "right_bend": 0.8538908686906271}, "keypoints": {"0": [282.4860534667969, 138.58621215820312, 0.9990500807762146], "1": [306.2335205078125, 111.50846862792969, 0.9980688691139221], "2": [259.4189453125, 113.83343505859375, 0.9956037998199463], "3": [340.8343811035156, 119.27932739257812, 0.9497727155685425], "4": [231.75804138183594, 121.93960571289062, 0.783694863319397], "5": [389.0660400390625, 238.27230834960938, 0.9921132326126099], "6": [186.5301971435547, 235.9919891357422, 0.9948663711547852], "7": [516.029541015625, 367.2019958496094, 0.876643180847168], "8": [115.19160461425781, 392.151611328125, 0.8937560319900513], "9": [534.024169921875, 227.4796905517578, 0.9316050410270691], "10": [167.06298828125, 349.92474365234375, 0.910365879535675], "11": [358.84100341796875, 480.0, 0.1009383276104927], "12": [227.70632934570312, 480.0, 0.11789575964212418], "13": [411.5433654785156, 410.19171142578125, 0.0014386291150003672], "14": [239.91448974609375, 399.3718566894531, 0.0018169302493333817], "15": [453.6144104003906, 414.90673828125, 0.000170206229086034], "16": [274.3252258300781, 415.28656005859375, 0.00020844359823968261]}} +{"t": 39.671979, "tracked": true, "track_id": 1, "bbox": [76.55509185791016, 24.841455459594727, 570.4056396484375, 479.3283386230469], "det_conf": 0.9172471761703491, "mean_kpt_conf": 0.9404301805929705, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.724044742888062, "right_lift": -0.9182611909050378, "left_bend": 0.7242520513240097, "right_bend": 0.8111660896050158}, "keypoints": {"0": [283.4568176269531, 137.2218017578125, 0.9990360736846924], "1": [306.4101867675781, 111.04771423339844, 0.9980276226997375], "2": [260.779296875, 113.66159057617188, 0.9957006573677063], "3": [339.5229797363281, 118.82699584960938, 0.949824333190918], "4": [233.35171508789062, 122.23611450195312, 0.7919350862503052], "5": [390.3302307128906, 232.50137329101562, 0.9926478862762451], "6": [186.1084747314453, 231.19921875, 0.9952400922775269], "7": [517.3223876953125, 365.80706787109375, 0.8851594924926758], "8": [117.23377990722656, 390.918701171875, 0.9033918976783752], "9": [531.3882446289062, 232.51805114746094, 0.9281955361366272], "10": [170.2827606201172, 356.88397216796875, 0.905573308467865], "11": [362.49945068359375, 480.0, 0.11682264506816864], "12": [230.16896057128906, 480.0, 0.13716641068458557], "13": [411.8354187011719, 407.8973388671875, 0.001563066616654396], "14": [236.24868774414062, 396.89947509765625, 0.0019740089774131775], "15": [450.49090576171875, 416.6060791015625, 0.00018226404790766537], "16": [269.17559814453125, 416.1219787597656, 0.00022348665515892208]}} +{"t": 39.707471, "tracked": true, "track_id": 1, "bbox": [76.37907409667969, 24.98089599609375, 569.0336303710938, 479.0890197753906], "det_conf": 0.913903534412384, "mean_kpt_conf": 0.9389432018453424, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7041734977309841, "right_lift": -0.9226316964005632, "left_bend": 0.7220123710259965, "right_bend": 0.8023844817931219}, "keypoints": {"0": [283.312255859375, 137.31716918945312, 0.9989830851554871], "1": [306.4205017089844, 111.32888793945312, 0.9978838562965393], "2": [260.6639099121094, 113.52450561523438, 0.9956430196762085], "3": [338.80279541015625, 118.95309448242188, 0.9479885101318359], "4": [232.7254180908203, 121.56924438476562, 0.7960042357444763], "5": [387.2644958496094, 232.39125061035156, 0.9922133088111877], "6": [187.1505126953125, 230.42234802246094, 0.9949808716773987], "7": [518.69873046875, 362.74176025390625, 0.8793430328369141], "8": [121.00953674316406, 388.645263671875, 0.8966323733329773], "9": [530.1839599609375, 225.98452758789062, 0.9280848503112793], "10": [171.87850952148438, 357.175048828125, 0.9006180763244629], "11": [359.10992431640625, 480.0, 0.1193850114941597], "12": [230.4146728515625, 480.0, 0.14028622210025787], "13": [401.94793701171875, 415.00433349609375, 0.0016413414850831032], "14": [237.40145874023438, 401.46160888671875, 0.002042133128270507], "15": [445.0790100097656, 420.997802734375, 0.00019031186820939183], "16": [277.4352722167969, 417.0136413574219, 0.0002302303910255432]}} +{"t": 39.770631, "tracked": true, "track_id": 1, "bbox": [73.39889526367188, 25.7475528717041, 565.5646362304688, 479.06829833984375], "det_conf": 0.9134290218353271, "mean_kpt_conf": 0.9350489703091708, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7113608174747318, "right_lift": -0.9139709481815665, "left_bend": 0.7259305318586479, "right_bend": 0.7840594562610788}, "keypoints": {"0": [284.91845703125, 138.65740966796875, 0.998977541923523], "1": [307.9376525878906, 112.06462097167969, 0.997718334197998], "2": [261.55426025390625, 114.20928955078125, 0.995901882648468], "3": [340.23779296875, 120.24104309082031, 0.9372299313545227], "4": [232.05908203125, 122.78950500488281, 0.8160107731819153], "5": [389.5999450683594, 239.45858764648438, 0.9908773303031921], "6": [184.38319396972656, 233.5694580078125, 0.9939384460449219], "7": [517.0047607421875, 368.4103698730469, 0.8529012799263], "8": [116.40191650390625, 386.6893005371094, 0.8728742599487305], "9": [528.5663452148438, 227.12728881835938, 0.9279916286468506], "10": [174.9034423828125, 356.6355895996094, 0.9011172652244568], "11": [356.9730529785156, 480.0, 0.0842413529753685], "12": [226.75277709960938, 480.0, 0.0994146391749382], "13": [397.7938232421875, 405.82427978515625, 0.0016346392221748829], "14": [241.95626831054688, 392.00823974609375, 0.00203698524273932], "15": [435.14422607421875, 420.1347961425781, 0.00020173589291516691], "16": [289.39862060546875, 419.9671630859375, 0.0002424174454063177]}} +{"t": 39.836718, "tracked": true, "track_id": 1, "bbox": [73.4576644897461, 25.740306854248047, 561.8104248046875, 479.10992431640625], "det_conf": 0.9122500419616699, "mean_kpt_conf": 0.9367197535254739, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7181706528920736, "right_lift": -0.9084386794390308, "left_bend": 0.7269602180896504, "right_bend": 0.7687035961444098}, "keypoints": {"0": [283.5166320800781, 136.37515258789062, 0.9989801049232483], "1": [306.8118591308594, 110.854248046875, 0.9976831674575806], "2": [260.6819152832031, 112.70236206054688, 0.9958435893058777], "3": [340.13861083984375, 121.06707763671875, 0.9366713166236877], "4": [232.15223693847656, 122.81488037109375, 0.8120746612548828], "5": [388.958251953125, 239.17974853515625, 0.9910488128662109], "6": [184.76841735839844, 233.68438720703125, 0.9942185878753662], "7": [511.5081787109375, 365.6575927734375, 0.8606800436973572], "8": [115.12315368652344, 385.0377502441406, 0.8839423060417175], "9": [523.410400390625, 230.99021911621094, 0.9276852607727051], "10": [173.0189666748047, 359.6749267578125, 0.9050894379615784], "11": [357.7400207519531, 480.0, 0.09352810680866241], "12": [227.78387451171875, 480.0, 0.11111398041248322], "13": [402.768310546875, 405.34423828125, 0.0016625520074740052], "14": [247.27662658691406, 392.545654296875, 0.002110704779624939], "15": [439.95465087890625, 417.61175537109375, 0.000202602575882338], "16": [293.3749694824219, 417.819091796875, 0.0002472661144565791]}} +{"t": 39.872762, "tracked": true, "track_id": 1, "bbox": [73.03865051269531, 25.885725021362305, 559.9546508789062, 479.3288269042969], "det_conf": 0.9163984656333923, "mean_kpt_conf": 0.9376598759130998, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.698897270071558, "right_lift": -0.915041394226104, "left_bend": 0.7232793343492544, "right_bend": 0.7538912473554978}, "keypoints": {"0": [284.3660888671875, 137.40286254882812, 0.9989842772483826], "1": [307.3994140625, 111.27420043945312, 0.9978019595146179], "2": [261.31048583984375, 113.42359924316406, 0.9958783388137817], "3": [339.9679260253906, 119.04217529296875, 0.9442352056503296], "4": [232.16676330566406, 121.69949340820312, 0.812099277973175], "5": [390.8338317871094, 235.7091064453125, 0.991696834564209], "6": [184.38790893554688, 231.99942016601562, 0.9949597120285034], "7": [518.1597900390625, 360.1288757324219, 0.8629151582717896], "8": [117.9375, 382.745361328125, 0.8923762440681458], "9": [528.0018920898438, 224.42926025390625, 0.9235453605651855], "10": [171.45263671875, 361.2193603515625, 0.8997662663459778], "11": [360.7763977050781, 480.0, 0.11345599591732025], "12": [229.23110961914062, 480.0, 0.13845035433769226], "13": [397.93768310546875, 415.7253112792969, 0.0016471430426463485], "14": [239.15260314941406, 401.9676513671875, 0.0021157488226890564], "15": [433.458740234375, 420.65576171875, 0.00019194067863281816], "16": [286.052490234375, 419.164306640625, 0.0002365998225286603]}} +{"t": 39.935098, "tracked": true, "track_id": 1, "bbox": [70.21403503417969, 26.0230770111084, 557.190673828125, 479.35028076171875], "det_conf": 0.9173710942268372, "mean_kpt_conf": 0.9380076039921154, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7256007845908313, "right_lift": -0.9173867407394922, "left_bend": 0.7478802847537848, "right_bend": 0.7118363881050734}, "keypoints": {"0": [284.2998962402344, 135.93304443359375, 0.9990171194076538], "1": [307.0641174316406, 109.97726440429688, 0.9978513717651367], "2": [261.2293701171875, 112.18353271484375, 0.9959874749183655], "3": [339.3935241699219, 118.62982177734375, 0.943565309047699], "4": [231.95030212402344, 121.33209228515625, 0.8091042041778564], "5": [392.4216613769531, 236.58392333984375, 0.9917288422584534], "6": [182.51321411132812, 229.62083435058594, 0.9946954846382141], "7": [516.4310913085938, 367.3487243652344, 0.8671588897705078], "8": [116.48548889160156, 381.81536865234375, 0.8915867209434509], "9": [520.9971923828125, 229.7341766357422, 0.9269559383392334], "10": [173.21458435058594, 366.95654296875, 0.900432288646698], "11": [362.18145751953125, 480.0, 0.1013670340180397], "12": [227.80856323242188, 480.0, 0.12173354625701904], "13": [403.91729736328125, 407.97210693359375, 0.001604946330189705], "14": [237.72293090820312, 392.6312561035156, 0.0020289411768317223], "15": [441.0213623046875, 419.97918701171875, 0.00019411597168073058], "16": [286.6419677734375, 419.496826171875, 0.00023774088185746223]}} +{"t": 39.968544, "tracked": true, "track_id": 1, "bbox": [74.17083740234375, 25.25339698791504, 558.0587768554688, 479.29217529296875], "det_conf": 0.9164624214172363, "mean_kpt_conf": 0.9337773648175326, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6935473874559972, "right_lift": -0.9130819305809766, "left_bend": 0.7516995846369701, "right_bend": 0.7655820762254292}, "keypoints": {"0": [284.336669921875, 136.83181762695312, 0.9988154172897339], "1": [307.5997619628906, 110.71437072753906, 0.9975415468215942], "2": [261.31988525390625, 111.91438293457031, 0.9949471354484558], "3": [339.8628845214844, 119.250732421875, 0.9451761245727539], "4": [231.16281127929688, 119.89517211914062, 0.7905604243278503], "5": [392.0715026855469, 237.4208221435547, 0.9923275113105774], "6": [183.0334014892578, 237.34812927246094, 0.9945043325424194], "7": [517.897705078125, 358.5550537109375, 0.8632510900497437], "8": [115.45315551757812, 388.6720886230469, 0.8713020086288452], "9": [514.718994140625, 227.96316528320312, 0.9292464852333069], "10": [171.45205688476562, 364.0441589355469, 0.8938789367675781], "11": [364.7713623046875, 480.0, 0.12497366219758987], "12": [233.86788940429688, 480.0, 0.1367693394422531], "13": [402.4443359375, 415.4008483886719, 0.0019741198047995567], "14": [260.83087158203125, 403.52239990234375, 0.0023946771398186684], "15": [417.14642333984375, 425.61553955078125, 0.00022107444237917662], "16": [298.17279052734375, 420.3663330078125, 0.0002677484299056232]}} +{"t": 40.036973, "tracked": true, "track_id": 1, "bbox": [74.7743148803711, 25.1877498626709, 557.4085083007812, 479.45257568359375], "det_conf": 0.9154450297355652, "mean_kpt_conf": 0.9276060461997986, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6718012345050786, "right_lift": -0.9114596248360776, "left_bend": 0.7227928619779034, "right_bend": 0.7260483772044732}, "keypoints": {"0": [283.8424072265625, 136.3419647216797, 0.9986376166343689], "1": [307.458984375, 110.73312377929688, 0.9973005652427673], "2": [261.0545959472656, 111.52601623535156, 0.9941732287406921], "3": [339.37060546875, 119.90000915527344, 0.9455264806747437], "4": [230.94949340820312, 119.60542297363281, 0.7833154797554016], "5": [387.53204345703125, 238.29676818847656, 0.9927104711532593], "6": [182.07948303222656, 238.35902404785156, 0.9935752749443054], "7": [515.4078369140625, 354.2728271484375, 0.8692548274993896], "8": [113.795654296875, 389.64617919921875, 0.8368111848831177], "9": [520.3529052734375, 219.63949584960938, 0.9293097853660583], "10": [167.26596069335938, 373.9125061035156, 0.8630515933036804], "11": [358.8494873046875, 480.0, 0.12851285934448242], "12": [232.22750854492188, 480.0, 0.12567441165447235], "13": [395.68975830078125, 417.4521179199219, 0.0021689990535378456], "14": [269.9464416503906, 405.4588317871094, 0.002323129214346409], "15": [413.4580993652344, 420.2109680175781, 0.0002502220741007477], "16": [317.2981872558594, 415.27734375, 0.00027821207186207175]}} +{"t": 40.101692, "tracked": true, "track_id": 1, "bbox": [75.66084289550781, 26.118467330932617, 556.068115234375, 479.6570739746094], "det_conf": 0.9179750084877014, "mean_kpt_conf": 0.9304048148068514, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6975882840388387, "right_lift": -0.9144241357357946, "left_bend": 0.743887936668564, "right_bend": 0.7047664768218307}, "keypoints": {"0": [283.57586669921875, 136.07078552246094, 0.9987308382987976], "1": [306.8241271972656, 110.262451171875, 0.9974168539047241], "2": [260.8169860839844, 111.36074829101562, 0.9946742057800293], "3": [338.9828186035156, 119.08522033691406, 0.9463164806365967], "4": [230.8565216064453, 119.30361938476562, 0.7922505140304565], "5": [391.6279296875, 239.0098419189453, 0.9928154945373535], "6": [179.5091094970703, 237.44349670410156, 0.9943915009498596], "7": [515.5372924804688, 359.64886474609375, 0.8632557392120361], "8": [112.36087036132812, 389.1441955566406, 0.855873703956604], "9": [516.3290405273438, 223.83135986328125, 0.9253427982330322], "10": [168.80296325683594, 376.13214111328125, 0.8733848333358765], "11": [364.2393798828125, 480.0, 0.1253286600112915], "12": [232.4718017578125, 480.0, 0.13082803785800934], "13": [404.62969970703125, 416.06756591796875, 0.0019838137086480856], "14": [267.8648376464844, 403.8310852050781, 0.002297234022989869], "15": [418.5152587890625, 420.03564453125, 0.0002312591386726126], "16": [314.43743896484375, 416.965576171875, 0.00027225373196415603]}} +{"t": 40.16678, "tracked": true, "track_id": 1, "bbox": [74.21281433105469, 25.91754150390625, 555.638916015625, 479.8207702636719], "det_conf": 0.9172696471214294, "mean_kpt_conf": 0.9326479218222878, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6884461403423691, "right_lift": -0.9061362036720426, "left_bend": 0.7374301904298747, "right_bend": 0.664620470858439}, "keypoints": {"0": [284.1345520019531, 136.3390350341797, 0.9988364577293396], "1": [306.987060546875, 110.58563232421875, 0.9975870847702026], "2": [260.64581298828125, 111.84304809570312, 0.9950733780860901], "3": [338.46075439453125, 119.81863403320312, 0.9447015523910522], "4": [229.72593688964844, 120.72991943359375, 0.7978371381759644], "5": [389.5693359375, 239.19232177734375, 0.9924942255020142], "6": [181.88026428222656, 236.15711975097656, 0.994471549987793], "7": [515.0756225585938, 358.3234558105469, 0.8635537624359131], "8": [111.30169677734375, 387.3531188964844, 0.8689826130867004], "9": [516.9462890625, 219.09893798828125, 0.9262571334838867], "10": [172.50970458984375, 382.41937255859375, 0.8793322443962097], "11": [363.54620361328125, 480.0, 0.12935970723628998], "12": [234.3682861328125, 480.0, 0.1412821114063263], "13": [391.8044738769531, 424.57080078125, 0.0018407090101391077], "14": [256.4830017089844, 409.68939208984375, 0.0021686989348381758], "15": [410.7532958984375, 428.1196594238281, 0.00020421443332452327], "16": [299.234130859375, 424.4587097167969, 0.0002422175748506561]}} +{"t": 40.201079, "tracked": true, "track_id": 1, "bbox": [68.87542724609375, 26.772974014282227, 553.04296875, 479.1717224121094], "det_conf": 0.9216387867927551, "mean_kpt_conf": 0.9373732588507913, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.746873593977845, "right_lift": -0.9072072445549085, "left_bend": 0.7398847175199175, "right_bend": 0.6024299053446321}, "keypoints": {"0": [283.56439208984375, 134.6150665283203, 0.9990252256393433], "1": [305.98187255859375, 109.743408203125, 0.9975679516792297], "2": [259.5333557128906, 112.63229370117188, 0.9957684278488159], "3": [338.5285339355469, 120.29135131835938, 0.9237577319145203], "4": [229.572998046875, 125.27632141113281, 0.8148956894874573], "5": [390.94671630859375, 234.6881103515625, 0.9919261336326599], "6": [185.52951049804688, 229.41412353515625, 0.9931475520133972], "7": [500.60858154296875, 357.8576354980469, 0.8890385627746582], "8": [116.22146606445312, 378.8772888183594, 0.88242506980896], "9": [512.4483642578125, 226.2598876953125, 0.9323341250419617], "10": [164.37423706054688, 384.3128662109375, 0.8912193775177002], "11": [357.3853759765625, 480.0, 0.1265174001455307], "12": [228.22314453125, 480.0, 0.1396387815475464], "13": [374.9963073730469, 426.0679016113281, 0.0017545252339914441], "14": [234.83572387695312, 413.8397521972656, 0.0018949862569570541], "15": [402.78204345703125, 448.372314453125, 0.00017199988360516727], "16": [290.83026123046875, 457.2398986816406, 0.0001828963286243379]}} +{"t": 40.235286, "tracked": true, "track_id": 1, "bbox": [72.55135345458984, 25.858928680419922, 554.6702270507812, 479.31793212890625], "det_conf": 0.918403148651123, "mean_kpt_conf": 0.9337656823071566, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.666819231126009, "right_lift": -0.9069025814661408, "left_bend": 0.7329978312132102, "right_bend": 0.6561093199161889}, "keypoints": {"0": [282.70574951171875, 136.5116424560547, 0.9988414645195007], "1": [306.1611328125, 111.63949584960938, 0.9975312948226929], "2": [259.9951171875, 111.614990234375, 0.9951842427253723], "3": [337.3283386230469, 122.16749572753906, 0.9424691796302795], "4": [229.39682006835938, 120.0797119140625, 0.799664318561554], "5": [385.49853515625, 238.92135620117188, 0.9923511147499084], "6": [181.7674102783203, 234.92701721191406, 0.9940820336341858], "7": [516.424072265625, 356.0729675292969, 0.8704236745834351], "8": [111.05996704101562, 387.11932373046875, 0.8681904673576355], "9": [516.1469116210938, 220.9989013671875, 0.9311935901641846], "10": [174.15170288085938, 383.6135559082031, 0.8814911246299744], "11": [358.17767333984375, 480.0, 0.12125565856695175], "12": [230.94921875, 480.0, 0.1289321482181549], "13": [391.5223388671875, 420.2623596191406, 0.0018292919266968966], "14": [255.90573120117188, 403.40423583984375, 0.0021093927789479494], "15": [415.7531433105469, 430.22100830078125, 0.00021092448150739074], "16": [296.2378234863281, 420.5409240722656, 0.00024572861730121076]}} +{"t": 40.302982, "tracked": true, "track_id": 1, "bbox": [71.22737121582031, 25.734560012817383, 554.2762451171875, 479.4817810058594], "det_conf": 0.9160605072975159, "mean_kpt_conf": 0.9313056848265908, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6721222112034028, "right_lift": -0.9026879313647685, "left_bend": 0.7324813189574878, "right_bend": 0.6359730173851814}, "keypoints": {"0": [282.7344055175781, 136.6455078125, 0.9988136291503906], "1": [305.8914794921875, 110.77015686035156, 0.9975939393043518], "2": [259.3197937011719, 112.36940002441406, 0.9949927926063538], "3": [338.02215576171875, 120.22442626953125, 0.9459801912307739], "4": [229.55992126464844, 121.69029235839844, 0.7922289967536926], "5": [387.202880859375, 237.76133728027344, 0.9923824667930603], "6": [182.37335205078125, 236.53213500976562, 0.9938246011734009], "7": [516.7179565429688, 355.32647705078125, 0.8688860535621643], "8": [109.61886596679688, 389.15875244140625, 0.8578264117240906], "9": [517.6341552734375, 218.7784423828125, 0.9296218156814575], "10": [171.15380859375, 390.244873046875, 0.8722116351127625], "11": [359.6918640136719, 480.0, 0.11245650053024292], "12": [232.98837280273438, 480.0, 0.11608997732400894], "13": [398.0190734863281, 417.079345703125, 0.0017418042989447713], "14": [268.132568359375, 402.99005126953125, 0.0019913276191800833], "15": [419.525390625, 426.10333251953125, 0.0002148682833649218], "16": [311.6365966796875, 422.59088134765625, 0.00025068651302717626]}} +{"t": 40.365463, "tracked": true, "track_id": 1, "bbox": [73.81805419921875, 26.06308937072754, 555.8282470703125, 479.0525817871094], "det_conf": 0.9167932868003845, "mean_kpt_conf": 0.9351852536201477, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6577153566482045, "right_lift": -0.9040997110246871, "left_bend": 0.7268051136283756, "right_bend": 0.6234110738899552}, "keypoints": {"0": [283.3096618652344, 136.94549560546875, 0.9988898634910583], "1": [305.81329345703125, 111.08029174804688, 0.9975801706314087], "2": [259.5527648925781, 112.3797607421875, 0.995495080947876], "3": [336.761474609375, 119.98014831542969, 0.9393648505210876], "4": [228.09866333007812, 121.24642944335938, 0.8138131499290466], "5": [387.2894592285156, 237.5852813720703, 0.9922646284103394], "6": [181.55052185058594, 236.65174865722656, 0.9943722486495972], "7": [516.7391357421875, 350.6143798828125, 0.8668363094329834], "8": [111.39276123046875, 385.0870666503906, 0.8758668899536133], "9": [517.4259033203125, 219.8642120361328, 0.9283376932144165], "10": [173.4822998046875, 388.4320068359375, 0.8842169046401978], "11": [360.9978942871094, 480.0, 0.13063989579677582], "12": [232.3857421875, 480.0, 0.14358966052532196], "13": [391.50726318359375, 425.2110290527344, 0.001762903993949294], "14": [253.15963745117188, 411.01959228515625, 0.002097500255331397], "15": [410.65472412109375, 432.55078125, 0.00019608279399108142], "16": [291.0538024902344, 428.1293640136719, 0.00023226237681228667]}} +{"t": 40.427903, "tracked": true, "track_id": 1, "bbox": [74.48413848876953, 25.918231964111328, 554.6373901367188, 478.9842224121094], "det_conf": 0.9102923274040222, "mean_kpt_conf": 0.9320858554406599, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6687292012224265, "right_lift": -0.9114119886963242, "left_bend": 0.7331150479202297, "right_bend": 0.60266726662319}, "keypoints": {"0": [281.4206848144531, 135.58502197265625, 0.9988448619842529], "1": [304.8232421875, 110.92048645019531, 0.9975948929786682], "2": [258.4696044921875, 110.99380493164062, 0.9950354099273682], "3": [336.4671325683594, 122.41879272460938, 0.9484756588935852], "4": [228.007568359375, 120.64207458496094, 0.7934134602546692], "5": [388.7820129394531, 241.13137817382812, 0.9926273226737976], "6": [180.86196899414062, 236.3450927734375, 0.9946182370185852], "7": [517.8743896484375, 357.2405090332031, 0.8608481287956238], "8": [112.92413330078125, 386.8192138671875, 0.8716750741004944], "9": [517.8947143554688, 217.79257202148438, 0.9249836206436157], "10": [174.92556762695312, 393.13751220703125, 0.8748277425765991], "11": [364.20611572265625, 480.0, 0.1195162832736969], "12": [235.79554748535156, 480.0, 0.13355621695518494], "13": [387.9791259765625, 422.5325622558594, 0.0017155109671875834], "14": [259.98553466796875, 404.6448974609375, 0.0020807001274079084], "15": [404.8674011230469, 429.4515686035156, 0.00019913926371373236], "16": [307.1839904785156, 421.20257568359375, 0.0002427136932965368]}} +{"t": 40.466779, "tracked": true, "track_id": 1, "bbox": [74.70051574707031, 26.148866653442383, 554.16796875, 478.1201477050781], "det_conf": 0.9113628268241882, "mean_kpt_conf": 0.93447622385892, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6735039145825222, "right_lift": -0.9125470609916095, "left_bend": 0.7353272088783935, "right_bend": 0.5895552629401356}, "keypoints": {"0": [282.143798828125, 136.90811157226562, 0.9988577365875244], "1": [304.95257568359375, 111.06472778320312, 0.9976412057876587], "2": [258.7393798828125, 112.51068115234375, 0.9951606392860413], "3": [336.7848205566406, 119.69537353515625, 0.944937527179718], "4": [228.290771484375, 120.96971130371094, 0.7965145111083984], "5": [388.55096435546875, 236.52487182617188, 0.9927698969841003], "6": [181.0751953125, 235.39273071289062, 0.9943549633026123], "7": [514.8743896484375, 351.6239013671875, 0.8765848875045776], "8": [113.59161376953125, 385.9702453613281, 0.8755090832710266], "9": [514.8265380859375, 219.93539428710938, 0.929819643497467], "10": [176.21963500976562, 394.794677734375, 0.8770883679389954], "11": [362.4939880371094, 480.0, 0.1485646814107895], "12": [232.4542236328125, 480.0, 0.15815918147563934], "13": [394.7314758300781, 429.1865234375, 0.001902543823234737], "14": [253.87896728515625, 415.0531921386719, 0.00220097484998405], "15": [412.5187683105469, 437.1477355957031, 0.00020837722695432603], "16": [293.1990661621094, 433.8633728027344, 0.00024350572493858635]}} +{"t": 40.528596, "tracked": true, "track_id": 1, "bbox": [75.20392608642578, 25.647645950317383, 551.3475341796875, 477.0846252441406], "det_conf": 0.9083243608474731, "mean_kpt_conf": 0.946217650716955, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6949217573446356, "right_lift": -0.919330438187511, "left_bend": 0.7491179957282482, "right_bend": 0.5835401944514387}, "keypoints": {"0": [282.0132141113281, 134.43006896972656, 0.9991944432258606], "1": [303.64715576171875, 110.53115844726562, 0.9977002739906311], "2": [258.5907287597656, 111.46430969238281, 0.9965621829032898], "3": [333.5428771972656, 122.00979614257812, 0.9165986180305481], "4": [226.6724853515625, 122.86583709716797, 0.8280435800552368], "5": [387.8070068359375, 235.3397216796875, 0.9933142066001892], "6": [181.9242706298828, 230.08303833007812, 0.9957146048545837], "7": [512.7598876953125, 356.0937805175781, 0.9020254015922546], "8": [119.52806091308594, 375.86376953125, 0.9213170409202576], "9": [510.9249267578125, 227.92860412597656, 0.9415092468261719], "10": [169.482421875, 383.00390625, 0.9164145588874817], "11": [367.41015625, 480.0, 0.17719997465610504], "12": [234.01925659179688, 480.0, 0.20653338730335236], "13": [404.57391357421875, 414.4947814941406, 0.0019914847798645496], "14": [233.92376708984375, 397.74761962890625, 0.0023935099598020315], "15": [445.8152160644531, 430.0522155761719, 0.00020016569760628045], "16": [278.2984313964844, 425.22509765625, 0.00023568235337734222]}} +{"t": 40.596426, "tracked": true, "track_id": 1, "bbox": [76.51689147949219, 26.68018341064453, 551.4277954101562, 476.99365234375], "det_conf": 0.9109863042831421, "mean_kpt_conf": 0.9351145950230685, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6787485298396337, "right_lift": -0.9100190037524335, "left_bend": 0.7521053101799811, "right_bend": 0.5193017746467612}, "keypoints": {"0": [282.6960754394531, 135.67491149902344, 0.9989585876464844], "1": [305.3701171875, 110.297607421875, 0.9976890087127686], "2": [259.10107421875, 111.16790771484375, 0.9957014918327332], "3": [336.7782287597656, 120.40162658691406, 0.9444808959960938], "4": [227.6732177734375, 120.44082641601562, 0.8004212379455566], "5": [391.47784423828125, 241.3797607421875, 0.9925701022148132], "6": [181.25656127929688, 231.96771240234375, 0.9945616126060486], "7": [520.7928466796875, 360.9002685546875, 0.865667998790741], "8": [114.87965393066406, 377.67230224609375, 0.8828801512718201], "9": [514.3380126953125, 220.53939819335938, 0.9297671914100647], "10": [174.40599060058594, 400.5434265136719, 0.8835622668266296], "11": [364.8023376464844, 480.0, 0.12219969183206558], "12": [233.45736694335938, 480.0, 0.13816888630390167], "13": [393.8951110839844, 422.602294921875, 0.0016922268550843], "14": [253.62686157226562, 401.05206298828125, 0.0020810707937926054], "15": [416.16229248046875, 429.0349426269531, 0.00019497910398058593], "16": [301.43658447265625, 422.66650390625, 0.000239408909692429]}} +{"t": 40.659287, "tracked": true, "track_id": 1, "bbox": [77.10182189941406, 26.141443252563477, 547.9068603515625, 478.28875732421875], "det_conf": 0.9159678220748901, "mean_kpt_conf": 0.9380645806139166, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6686013789097458, "right_lift": -0.9005377546296437, "left_bend": 0.7180801992793643, "right_bend": 0.5132141145118441}, "keypoints": {"0": [283.82763671875, 133.42501831054688, 0.9990121126174927], "1": [305.6476745605469, 110.16146850585938, 0.9976147413253784], "2": [260.4337158203125, 110.77226257324219, 0.9962980151176453], "3": [334.57330322265625, 123.93510437011719, 0.9351933002471924], "4": [229.64016723632812, 124.14125061035156, 0.8324176669120789], "5": [383.41558837890625, 240.92083740234375, 0.9908333420753479], "6": [183.24508666992188, 226.55697631835938, 0.9937566518783569], "7": [515.74072265625, 359.8964538574219, 0.8657468557357788], "8": [114.43244934082031, 369.0858154296875, 0.8882163166999817], "9": [522.3878784179688, 219.19302368164062, 0.9305731654167175], "10": [172.3282470703125, 394.1307067871094, 0.8890482187271118], "11": [349.798583984375, 480.0, 0.08422534167766571], "12": [224.01104736328125, 480.0, 0.10183694958686829], "13": [373.69134521484375, 404.120361328125, 0.0015216490719467402], "14": [229.17010498046875, 379.54376220703125, 0.001856079907156527], "15": [418.6202392578125, 421.8221435546875, 0.00020830710127484053], "16": [287.8709716796875, 415.49383544921875, 0.00024683339870534837]}} +{"t": 40.692735, "tracked": true, "track_id": 1, "bbox": [78.42798614501953, 26.27189826965332, 551.479248046875, 478.3448791503906], "det_conf": 0.9098879098892212, "mean_kpt_conf": 0.9406448115002025, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6565372832495874, "right_lift": -0.9013453559868809, "left_bend": 0.7188356780016698, "right_bend": 0.47004901523398074}, "keypoints": {"0": [283.49951171875, 133.98768615722656, 0.9990373849868774], "1": [305.86383056640625, 110.34478759765625, 0.9978234767913818], "2": [259.8496398925781, 110.46421813964844, 0.9959270358085632], "3": [336.7327880859375, 123.85292053222656, 0.944644033908844], "4": [228.2183837890625, 123.01286315917969, 0.7999817132949829], "5": [388.40826416015625, 243.4299774169922, 0.9930359721183777], "6": [181.7498321533203, 232.80809020996094, 0.9948433637619019], "7": [517.0357055664062, 355.3873291015625, 0.892164409160614], "8": [114.44659423828125, 372.8757629394531, 0.9056508541107178], "9": [520.934326171875, 219.70860290527344, 0.9349055886268616], "10": [167.32464599609375, 404.7181091308594, 0.8890790939331055], "11": [355.1161193847656, 480.0, 0.1512404978275299], "12": [222.64208984375, 480.0, 0.16825959086418152], "13": [390.7431640625, 424.51861572265625, 0.001604416873306036], "14": [228.39234924316406, 402.28900146484375, 0.0019301982829347253], "15": [421.0657653808594, 428.88739013671875, 0.00018418210675008595], "16": [264.3183898925781, 422.530517578125, 0.00022034610447008163]}} +{"t": 40.727779, "tracked": true, "track_id": 1, "bbox": [76.361083984375, 26.22946548461914, 553.4207763671875, 478.2623596191406], "det_conf": 0.9133923649787903, "mean_kpt_conf": 0.9376526204022494, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.675239332003689, "right_lift": -0.9058411648071686, "left_bend": 0.7304818830253103, "right_bend": 0.44364943878175506}, "keypoints": {"0": [284.6872253417969, 134.2515411376953, 0.9990142583847046], "1": [306.2948913574219, 109.60111999511719, 0.9977049231529236], "2": [260.8204345703125, 110.34857177734375, 0.9958821535110474], "3": [336.0116271972656, 120.56576538085938, 0.9394128322601318], "4": [228.56004333496094, 121.09600830078125, 0.8034102320671082], "5": [389.0317077636719, 241.9847412109375, 0.992866039276123], "6": [181.82379150390625, 229.84286499023438, 0.9944121241569519], "7": [515.4729614257812, 357.7361755371094, 0.8850098848342896], "8": [116.3541259765625, 369.8397216796875, 0.8938125967979431], "9": [517.8785400390625, 217.96339416503906, 0.9327099919319153], "10": [165.54725646972656, 404.54974365234375, 0.8799437880516052], "11": [355.8476257324219, 480.0, 0.1334364414215088], "12": [224.08596801757812, 480.0, 0.14677903056144714], "13": [382.9486083984375, 420.3817138671875, 0.0016133401077240705], "14": [226.04400634765625, 397.265869140625, 0.0018693632446229458], "15": [410.75531005859375, 424.8850402832031, 0.0001917811605380848], "16": [269.14312744140625, 420.75396728515625, 0.0002222921175416559]}} +{"t": 40.763191, "tracked": true, "track_id": 1, "bbox": [77.53707885742188, 25.8765869140625, 549.42041015625, 478.9233093261719], "det_conf": 0.9165149927139282, "mean_kpt_conf": 0.9389842640269886, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6815226947386284, "right_lift": -0.9077799372294689, "left_bend": 0.723298756399555, "right_bend": 0.4759954847927225}, "keypoints": {"0": [284.4396667480469, 133.55941772460938, 0.9990436434745789], "1": [306.7690734863281, 109.75601196289062, 0.9976136684417725], "2": [260.4922180175781, 110.2080078125, 0.9963856935501099], "3": [335.2916259765625, 122.37353515625, 0.9282124638557434], "4": [228.1785125732422, 122.32843017578125, 0.834290623664856], "5": [381.0146484375, 237.01312255859375, 0.991455614566803], "6": [182.84109497070312, 223.64608764648438, 0.9935945868492126], "7": [512.941650390625, 359.87677001953125, 0.8821197748184204], "8": [114.08012390136719, 372.46075439453125, 0.8893222808837891], "9": [519.76171875, 218.86520385742188, 0.9338545203208923], "10": [165.1396942138672, 400.904052734375, 0.882934033870697], "11": [347.7845153808594, 480.0, 0.0894971415400505], "12": [222.16915893554688, 480.0, 0.10246448218822479], "13": [368.9991760253906, 403.4771423339844, 0.0015460897702723742], "14": [217.108642578125, 378.436279296875, 0.0017359176417812705], "15": [417.2064514160156, 420.7374267578125, 0.0002097002579830587], "16": [271.75140380859375, 413.02923583984375, 0.00023268084623850882]}} +{"t": 40.825753, "tracked": true, "track_id": 1, "bbox": [80.37535095214844, 25.180648803710938, 548.5120849609375, 479.166748046875], "det_conf": 0.9212693572044373, "mean_kpt_conf": 0.9403439326719805, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6825263950066593, "right_lift": -0.8964588378102928, "left_bend": 0.7072275049833985, "right_bend": 0.4370023033015484}, "keypoints": {"0": [284.8076477050781, 131.48985290527344, 0.9989954829216003], "1": [305.8291931152344, 108.56695556640625, 0.9976097345352173], "2": [260.7835693359375, 109.8802490234375, 0.9962819218635559], "3": [334.46527099609375, 122.16641235351562, 0.9353065490722656], "4": [229.64459228515625, 124.371826171875, 0.8345130681991577], "5": [380.9249572753906, 239.21920776367188, 0.9910632371902466], "6": [184.582763671875, 223.01907348632812, 0.9941264390945435], "7": [505.388427734375, 355.4514465332031, 0.8784875273704529], "8": [116.56546020507812, 360.62005615234375, 0.904628574848175], "9": [519.3765869140625, 216.30177307128906, 0.9273250102996826], "10": [172.23471069335938, 403.5579833984375, 0.8854457139968872], "11": [346.01312255859375, 480.0, 0.11434631049633026], "12": [220.61102294921875, 480.0, 0.1397194266319275], "13": [371.1953430175781, 413.450927734375, 0.0015752509934827685], "14": [215.41746520996094, 388.5390930175781, 0.0019250024342909455], "15": [421.73150634765625, 418.5126037597656, 0.00020973045320715755], "16": [270.9471435546875, 417.6134033203125, 0.0002476450172252953]}} +{"t": 40.861467, "tracked": true, "track_id": 1, "bbox": [81.62594604492188, 25.513874053955078, 548.259765625, 479.33221435546875], "det_conf": 0.9221377968788147, "mean_kpt_conf": 0.9371549216183749, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6762537749688103, "right_lift": -0.9173757139113803, "left_bend": 0.7115257724036398, "right_bend": 0.432484632898947}, "keypoints": {"0": [284.97418212890625, 132.24517822265625, 0.9989681243896484], "1": [306.26007080078125, 109.22406005859375, 0.9972615242004395], "2": [261.2391662597656, 109.8653564453125, 0.9964144229888916], "3": [333.7337646484375, 122.81753540039062, 0.9196361303329468], "4": [228.92393493652344, 123.59730529785156, 0.8527825474739075], "5": [381.6912536621094, 239.5592498779297, 0.9918157458305359], "6": [179.13067626953125, 226.59413146972656, 0.9933537244796753], "7": [509.75946044921875, 357.12445068359375, 0.8807963728904724], "8": [117.0181884765625, 369.7531433105469, 0.8790785670280457], "9": [520.5358276367188, 219.48983764648438, 0.9298551082611084], "10": [165.55824279785156, 404.51385498046875, 0.8687418699264526], "11": [342.35260009765625, 480.0, 0.09666160494089127], "12": [214.05007934570312, 480.0, 0.10606925934553146], "13": [372.4715576171875, 402.281494140625, 0.0016668338794261217], "14": [218.2408905029297, 379.80096435546875, 0.0018350922036916018], "15": [412.3083190917969, 416.8822021484375, 0.00022726210590917617], "16": [276.34454345703125, 414.0349426269531, 0.0002460472169332206]}} +{"t": 40.894835, "tracked": true, "track_id": 1, "bbox": [84.66697692871094, 24.972248077392578, 547.6265869140625, 479.33551025390625], "det_conf": 0.9294028282165527, "mean_kpt_conf": 0.9361286867748607, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6917788310823458, "right_lift": -0.9139665015041059, "left_bend": 0.7304697800146313, "right_bend": 0.4255166908112607}, "keypoints": {"0": [285.0688171386719, 132.819580078125, 0.9989537000656128], "1": [306.0005798339844, 108.41775512695312, 0.9974068999290466], "2": [260.86663818359375, 110.815673828125, 0.9963202476501465], "3": [334.37188720703125, 119.4195556640625, 0.9273188710212708], "4": [229.59426879882812, 123.70135498046875, 0.841590940952301], "5": [384.134521484375, 235.4828338623047, 0.991119921207428], "6": [182.5229034423828, 222.29635620117188, 0.9932182431221008], "7": [511.97760009765625, 357.9561462402344, 0.8716108202934265], "8": [118.98226928710938, 365.4099426269531, 0.8816915154457092], "9": [517.491943359375, 219.85093688964844, 0.9271976947784424], "10": [171.4306640625, 405.433837890625, 0.8709867000579834], "11": [346.5028991699219, 480.0, 0.09259594976902008], "12": [219.42529296875, 480.0, 0.10641980916261673], "13": [372.3260803222656, 402.38134765625, 0.0016470137052237988], "14": [221.81724548339844, 379.2989196777344, 0.0019048313843086362], "15": [413.035888671875, 418.32958984375, 0.00023043157125357538], "16": [281.26171875, 418.75531005859375, 0.00026049098232761025]}} +{"t": 40.956753, "tracked": true, "track_id": 1, "bbox": [86.15569305419922, 24.58225440979004, 546.5708618164062, 479.4068603515625], "det_conf": 0.9276599287986755, "mean_kpt_conf": 0.937388848174702, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7003579285810579, "right_lift": -0.9166415805725923, "left_bend": 0.7242283862035737, "right_bend": 0.41129762008230625}, "keypoints": {"0": [285.18939208984375, 131.07725524902344, 0.9989651441574097], "1": [305.7807312011719, 107.97418212890625, 0.9973770380020142], "2": [261.51837158203125, 109.31353759765625, 0.9963248372077942], "3": [333.4207458496094, 120.98112487792969, 0.9272112250328064], "4": [229.98605346679688, 123.11785888671875, 0.8461505770683289], "5": [384.74163818359375, 239.0541534423828, 0.9917963743209839], "6": [180.63583374023438, 222.652099609375, 0.9936560392379761], "7": [508.5868835449219, 360.5685729980469, 0.8771951794624329], "8": [118.9517822265625, 364.1100158691406, 0.8881765604019165], "9": [518.4383544921875, 222.95220947265625, 0.9260076880455017], "10": [174.7769775390625, 410.172119140625, 0.8684166669845581], "11": [345.9322509765625, 480.0, 0.10795114189386368], "12": [216.45660400390625, 478.3681640625, 0.12424001097679138], "13": [370.2814636230469, 408.87542724609375, 0.0016980908112600446], "14": [214.12222290039062, 384.6898193359375, 0.0019553692545741796], "15": [408.647705078125, 422.0638732910156, 0.00021840650879312307], "16": [272.1322021484375, 422.335693359375, 0.0002455080102663487]}} +{"t": 41.023296, "tracked": true, "track_id": 1, "bbox": [89.62480163574219, 23.931102752685547, 546.4576416015625, 479.29071044921875], "det_conf": 0.9382287859916687, "mean_kpt_conf": 0.939228583465923, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6921723077254394, "right_lift": -0.9242581996096251, "left_bend": 0.7156038865641056, "right_bend": 0.4136235429844234}, "keypoints": {"0": [285.4596862792969, 130.6424560546875, 0.9990196228027344], "1": [305.6766662597656, 107.18499755859375, 0.9971699118614197], "2": [261.084716796875, 108.9273681640625, 0.9967086315155029], "3": [332.3242492675781, 119.36639404296875, 0.9056194424629211], "4": [228.71859741210938, 122.44586181640625, 0.8618054986000061], "5": [379.2696228027344, 235.6154022216797, 0.9913269877433777], "6": [184.84912109375, 218.67303466796875, 0.992958664894104], "7": [507.4226989746094, 358.51971435546875, 0.8816278576850891], "8": [125.80374145507812, 361.62158203125, 0.8915297985076904], "9": [519.4893188476562, 220.42031860351562, 0.9326524138450623], "10": [183.37350463867188, 406.58544921875, 0.8810955882072449], "11": [340.96466064453125, 480.0, 0.11369010806083679], "12": [217.86212158203125, 478.7665100097656, 0.12978072464466095], "13": [364.5013427734375, 414.81317138671875, 0.00179757468868047], "14": [217.3059539794922, 389.54302978515625, 0.0020669251680374146], "15": [408.2994079589844, 431.48907470703125, 0.00021847941388841718], "16": [272.4611511230469, 431.45166015625, 0.00024136922729667276]}} +{"t": 41.088362, "tracked": true, "track_id": 1, "bbox": [92.78998565673828, 22.865325927734375, 546.0983276367188, 479.2960510253906], "det_conf": 0.9384082555770874, "mean_kpt_conf": 0.9354841058904474, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7065018106409361, "right_lift": -0.9415764676086705, "left_bend": 0.7303462900220353, "right_bend": 0.3934466260613926}, "keypoints": {"0": [283.9034729003906, 128.36312866210938, 0.9989656209945679], "1": [304.6495361328125, 105.926513671875, 0.9970958232879639], "2": [259.82781982421875, 106.50457763671875, 0.9963059425354004], "3": [331.24652099609375, 121.16914367675781, 0.9095796942710876], "4": [227.46884155273438, 121.83517456054688, 0.844617486000061], "5": [380.762451171875, 238.02110290527344, 0.9921019673347473], "6": [182.69110107421875, 220.0829620361328, 0.9920614957809448], "7": [508.2938232421875, 365.33453369140625, 0.8896853923797607], "8": [129.2833251953125, 369.3929748535156, 0.8732744455337524], "9": [517.1634521484375, 219.84519958496094, 0.934819757938385], "10": [184.61676025390625, 413.980224609375, 0.8618175387382507], "11": [343.533935546875, 480.0, 0.09901544451713562], "12": [218.31039428710938, 476.2547607421875, 0.10337305814027786], "13": [369.82470703125, 404.8511962890625, 0.0017819460481405258], "14": [221.31253051757812, 378.2301025390625, 0.0018890603678300977], "15": [409.12646484375, 428.2685546875, 0.00022580914082936943], "16": [278.45538330078125, 425.385498046875, 0.00023805073578841984]}} +{"t": 41.156898, "tracked": true, "track_id": 1, "bbox": [94.17181396484375, 21.988161087036133, 545.1433715820312, 479.8265380859375], "det_conf": 0.9387853145599365, "mean_kpt_conf": 0.9361352920532227, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7064968636040688, "right_lift": -0.9191243656161361, "left_bend": 0.7162296043517933, "right_bend": 0.42487544296809565}, "keypoints": {"0": [282.3790588378906, 127.38996887207031, 0.9988921284675598], "1": [301.350830078125, 102.75041198730469, 0.9969322681427002], "2": [256.6787109375, 106.50440979003906, 0.9962109327316284], "3": [330.1507568359375, 115.46757507324219, 0.9041889905929565], "4": [224.92465209960938, 122.95751953125, 0.8427137136459351], "5": [383.5047607421875, 242.78976440429688, 0.9915329813957214], "6": [186.46145629882812, 222.04812622070312, 0.9914480447769165], "7": [508.66571044921875, 367.7350769042969, 0.8783959746360779], "8": [125.69781494140625, 363.8094177246094, 0.8798022866249084], "9": [524.5072021484375, 217.75048828125, 0.9336138367652893], "10": [194.1346435546875, 414.86529541015625, 0.8837570548057556], "11": [347.38543701171875, 480.0, 0.10532420873641968], "12": [222.5376739501953, 480.0, 0.11632318049669266], "13": [378.246337890625, 419.4202880859375, 0.002130072331055999], "14": [232.14950561523438, 393.34423828125, 0.0025094349402934313], "15": [415.6275634765625, 421.2169189453125, 0.0002774571185000241], "16": [280.5198669433594, 430.4917297363281, 0.00031277918606065214]}} +{"t": 41.190631, "tracked": true, "track_id": 1, "bbox": [95.47956085205078, 22.685522079467773, 544.7257080078125, 480.0], "det_conf": 0.9409835934638977, "mean_kpt_conf": 0.9393752217292786, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6895131723794714, "right_lift": -0.9156594214533418, "left_bend": 0.7017447366515068, "right_bend": 0.40782446490172636}, "keypoints": {"0": [280.93048095703125, 126.52200317382812, 0.9989810585975647], "1": [299.9060974121094, 102.87092590332031, 0.9969592094421387], "2": [255.0060272216797, 105.68605041503906, 0.9966533780097961], "3": [328.2090148925781, 117.56285095214844, 0.8929644227027893], "4": [222.4642791748047, 123.376953125, 0.857119619846344], "5": [379.04144287109375, 243.619140625, 0.9915516376495361], "6": [185.89212036132812, 222.94375610351562, 0.9917974472045898], "7": [503.97344970703125, 362.5552978515625, 0.8858722448348999], "8": [124.54757690429688, 362.6875305175781, 0.8944461345672607], "9": [522.9015502929688, 214.33721923828125, 0.9342446327209473], "10": [190.6893310546875, 418.7640380859375, 0.8925376534461975], "11": [345.80181884765625, 480.0, 0.11731137335300446], "12": [221.78094482421875, 480.0, 0.1309771090745926], "13": [386.1756286621094, 424.0950927734375, 0.0020279092714190483], "14": [232.57186889648438, 397.7235107421875, 0.00244863866828382], "15": [426.4366149902344, 424.0139465332031, 0.00025519830523990095], "16": [272.1498718261719, 431.4377746582031, 0.000291123753413558]}} +{"t": 41.252299, "tracked": true, "track_id": 1, "bbox": [97.65763854980469, 21.460796356201172, 542.7266235351562, 480.0], "det_conf": 0.9419320821762085, "mean_kpt_conf": 0.9399638067592274, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7014859418137877, "right_lift": -0.9224796045406658, "left_bend": 0.7167010523592332, "right_bend": 0.3914623183011374}, "keypoints": {"0": [280.3148498535156, 124.8819580078125, 0.9989792108535767], "1": [298.4340515136719, 101.13667297363281, 0.9969043135643005], "2": [253.76954650878906, 105.02598571777344, 0.9966166615486145], "3": [326.74090576171875, 115.88595581054688, 0.8924368023872375], "4": [221.4323272705078, 124.50912475585938, 0.8517265319824219], "5": [380.777099609375, 242.82595825195312, 0.9918023943901062], "6": [187.783447265625, 222.25003051757812, 0.9918040037155151], "7": [503.501708984375, 363.62237548828125, 0.8893008828163147], "8": [131.18701171875, 357.4906005859375, 0.8993788361549377], "9": [517.8494873046875, 215.70166015625, 0.9341731071472168], "10": [189.54702758789062, 410.49267578125, 0.8964791297912598], "11": [347.4163513183594, 480.0, 0.1340896189212799], "12": [223.01513671875, 480.0, 0.1499382108449936], "13": [389.3550109863281, 426.8779296875, 0.002118763979524374], "14": [232.78451538085938, 400.6221923828125, 0.0026029811706393957], "15": [425.94940185546875, 423.9530944824219, 0.0002583988243713975], "16": [269.5250244140625, 434.05072021484375, 0.0002984505845233798]}} +{"t": 41.289878, "tracked": true, "track_id": 1, "bbox": [99.30874633789062, 21.24630355834961, 541.3904418945312, 480.0], "det_conf": 0.943621814250946, "mean_kpt_conf": 0.938040478663011, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7077876203243364, "right_lift": -0.9303075414778565, "left_bend": 0.7312787502094796, "right_bend": 0.38611590374470584}, "keypoints": {"0": [279.5985107421875, 123.83573913574219, 0.9989868998527527], "1": [298.9500427246094, 100.37290954589844, 0.9967682361602783], "2": [253.27598571777344, 103.0079345703125, 0.9966647028923035], "3": [326.9077453613281, 116.57688903808594, 0.88436359167099], "4": [220.06259155273438, 122.32191467285156, 0.8562095761299133], "5": [381.10076904296875, 241.4394073486328, 0.9917231202125549], "6": [184.29100036621094, 220.9955596923828, 0.9908650517463684], "7": [506.1387939453125, 366.71856689453125, 0.8878430128097534], "8": [128.35171508789062, 362.8808288574219, 0.8838872313499451], "9": [515.022705078125, 218.28021240234375, 0.9381906986236572], "10": [181.89254760742188, 411.1168518066406, 0.8929431438446045], "11": [347.25390625, 480.0, 0.10818830877542496], "12": [222.4087371826172, 479.12493896484375, 0.1158735379576683], "13": [384.1780700683594, 416.8375244140625, 0.00217667524702847], "14": [237.74989318847656, 389.76507568359375, 0.0025274036452174187], "15": [414.610107421875, 432.35076904296875, 0.0002645352797117084], "16": [280.5089111328125, 437.418212890625, 0.0002934699004981667]}} +{"t": 41.352, "tracked": true, "track_id": 1, "bbox": [99.73754119873047, 20.876131057739258, 538.7744140625, 480.0], "det_conf": 0.9435016512870789, "mean_kpt_conf": 0.938002347946167, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7289360110338247, "right_lift": -0.9328111463658963, "left_bend": 0.7192490112492244, "right_bend": 0.37264943756261154}, "keypoints": {"0": [278.3043212890625, 122.87153625488281, 0.9988700747489929], "1": [297.3509521484375, 99.29635620117188, 0.9968254566192627], "2": [251.62374877929688, 103.11712646484375, 0.996245801448822], "3": [326.5532531738281, 114.82196044921875, 0.9027707576751709], "4": [219.30380249023438, 123.25674438476562, 0.847723662853241], "5": [381.61456298828125, 240.3473663330078, 0.9916625022888184], "6": [184.26148986816406, 220.78855895996094, 0.9917653203010559], "7": [498.22235107421875, 364.51019287109375, 0.8837109804153442], "8": [130.85659790039062, 359.02783203125, 0.8926770687103271], "9": [516.9542846679688, 218.93873596191406, 0.9290952682495117], "10": [185.2202606201172, 411.61016845703125, 0.88667893409729], "11": [349.19927978515625, 480.0, 0.13927966356277466], "12": [223.1384735107422, 476.5976257324219, 0.15628258883953094], "13": [385.317138671875, 422.48846435546875, 0.0025040372274816036], "14": [232.71661376953125, 398.40045166015625, 0.003056138288229704], "15": [414.5824279785156, 425.1988220214844, 0.00030155788408592343], "16": [275.4423522949219, 437.59796142578125, 0.00034905457869172096]}} +{"t": 41.414663, "tracked": true, "track_id": 1, "bbox": [101.29113006591797, 20.552175521850586, 538.0409545898438, 480.0], "det_conf": 0.941092312335968, "mean_kpt_conf": 0.9381133968179877, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7139460604775217, "right_lift": -0.9319807519132284, "left_bend": 0.7188252126083258, "right_bend": 0.37691417005723926}, "keypoints": {"0": [277.6750183105469, 123.30888366699219, 0.998927891254425], "1": [296.7540588378906, 99.53216552734375, 0.9967209696769714], "2": [250.94081115722656, 103.075439453125, 0.9965683221817017], "3": [325.6505126953125, 115.13430786132812, 0.8866813778877258], "4": [218.17384338378906, 122.88273620605469, 0.8580188155174255], "5": [379.1783447265625, 240.55723571777344, 0.9915396571159363], "6": [184.32444763183594, 221.61691284179688, 0.9910402894020081], "7": [499.49835205078125, 363.23919677734375, 0.8858769536018372], "8": [130.0112762451172, 361.2520751953125, 0.8886879086494446], "9": [515.2095947265625, 217.866943359375, 0.933834969997406], "10": [185.66587829589844, 413.8999328613281, 0.8913502097129822], "11": [346.3521728515625, 479.2752685546875, 0.12684890627861023], "12": [221.58056640625, 474.77862548828125, 0.1377801150083542], "13": [390.956787109375, 420.2314147949219, 0.002390460576862097], "14": [238.6966552734375, 396.0802001953125, 0.0028682821430265903], "15": [421.246826171875, 426.9768371582031, 0.0002857246436178684], "16": [276.24737548828125, 437.74884033203125, 0.0003245376574341208]}} +{"t": 41.450649, "tracked": true, "track_id": 1, "bbox": [101.62626647949219, 19.7852783203125, 537.928955078125, 480.0], "det_conf": 0.9412150382995605, "mean_kpt_conf": 0.9415975321422924, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7181035536207078, "right_lift": -0.9319280219140301, "left_bend": 0.7144368818692555, "right_bend": 0.3444707056243333}, "keypoints": {"0": [278.2334289550781, 121.81730651855469, 0.9989757537841797], "1": [296.8843688964844, 98.85346984863281, 0.9969910383224487], "2": [251.69808959960938, 102.16508483886719, 0.9966173768043518], "3": [325.5741271972656, 115.278076171875, 0.9005138278007507], "4": [219.2216033935547, 122.90629577636719, 0.853739321231842], "5": [379.2975158691406, 240.46437072753906, 0.9918965697288513], "6": [185.43601989746094, 221.0721435546875, 0.9924485683441162], "7": [495.594970703125, 360.4661865234375, 0.8933602571487427], "8": [131.99314880371094, 358.41070556640625, 0.9094612002372742], "9": [513.998046875, 216.7975311279297, 0.930191695690155], "10": [185.2193145751953, 420.1999206542969, 0.8933772444725037], "11": [347.6470031738281, 480.0, 0.16197340190410614], "12": [221.397216796875, 477.45660400390625, 0.18488521873950958], "13": [390.6446533203125, 431.78204345703125, 0.002333126263692975], "14": [225.16336059570312, 406.82763671875, 0.002908300142735243], "15": [425.3194274902344, 430.7872314453125, 0.0002591481024865061], "16": [258.46990966796875, 441.758544921875, 0.0003033054817933589]}} +{"t": 41.516124, "tracked": true, "track_id": 1, "bbox": [101.20074462890625, 20.033935546875, 536.2474975585938, 480.0], "det_conf": 0.9398096203804016, "mean_kpt_conf": 0.9391539096832275, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7239935281583773, "right_lift": -0.9377853261177617, "left_bend": 0.7134076475097352, "right_bend": 0.37300562655960745}, "keypoints": {"0": [276.3014831542969, 121.09382629394531, 0.9988390803337097], "1": [295.3723449707031, 98.53639221191406, 0.9967756867408752], "2": [250.20887756347656, 101.43247985839844, 0.996160626411438], "3": [324.8555603027344, 115.58674621582031, 0.9062286615371704], "4": [218.5081329345703, 121.93525695800781, 0.8502882719039917], "5": [380.88153076171875, 241.65599060058594, 0.9920043349266052], "6": [183.08599853515625, 222.42337036132812, 0.9925251007080078], "7": [493.941162109375, 360.31884765625, 0.8838545680046082], "8": [132.09561157226562, 360.1419372558594, 0.9006859660148621], "9": [514.1840209960938, 215.76739501953125, 0.9257763624191284], "10": [194.4141082763672, 418.6139831542969, 0.8875543475151062], "11": [352.9329528808594, 480.0, 0.1672077476978302], "12": [225.94300842285156, 478.84088134765625, 0.1914321333169937], "13": [393.6785888671875, 431.65240478515625, 0.0026883266400545835], "14": [240.2664794921875, 408.2788391113281, 0.0034260235261172056], "15": [418.84326171875, 429.9466247558594, 0.0003116154402960092], "16": [279.9471435546875, 441.6978454589844, 0.00037357848486863077]}} +{"t": 41.55019, "tracked": true, "track_id": 1, "bbox": [100.47669982910156, 19.733238220214844, 535.4140014648438, 480.0], "det_conf": 0.9424446821212769, "mean_kpt_conf": 0.9389811266552318, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7259806354753892, "right_lift": -0.944919236777539, "left_bend": 0.7230520843384265, "right_bend": 0.352764978687897}, "keypoints": {"0": [276.3710632324219, 122.28631591796875, 0.9988976716995239], "1": [294.66448974609375, 99.05690002441406, 0.9963460564613342], "2": [250.43209838867188, 102.06480407714844, 0.9964953064918518], "3": [322.3983154296875, 114.12034606933594, 0.8761404156684875], "4": [217.32131958007812, 120.5826416015625, 0.8657270669937134], "5": [379.7232666015625, 241.97654724121094, 0.9929367899894714], "6": [180.91786193847656, 220.72354125976562, 0.9924766421318054], "7": [497.41217041015625, 366.2138366699219, 0.8934545516967773], "8": [132.49176025390625, 360.5287780761719, 0.8985636234283447], "9": [514.0671997070312, 217.75689697265625, 0.930827260017395], "10": [188.0572509765625, 417.2852478027344, 0.8869270086288452], "11": [348.9625244140625, 480.0, 0.16890624165534973], "12": [220.671875, 476.4334716796875, 0.18419356644153595], "13": [389.1926574707031, 429.0313415527344, 0.002827779157087207], "14": [229.21055603027344, 403.466064453125, 0.0033551747910678387], "15": [417.9176025390625, 425.3780517578125, 0.00031604134710505605], "16": [269.570556640625, 435.70660400390625, 0.00035346203367225826]}} +{"t": 41.586289, "tracked": true, "track_id": 1, "bbox": [100.65941619873047, 18.82020378112793, 534.8990478515625, 480.0], "det_conf": 0.9417403936386108, "mean_kpt_conf": 0.9377880855040117, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7167053782830551, "right_lift": -0.9425327732255798, "left_bend": 0.7321203504517905, "right_bend": 0.3456539571561675}, "keypoints": {"0": [276.550537109375, 120.35716247558594, 0.9989437460899353], "1": [295.15423583984375, 97.65728759765625, 0.9968984127044678], "2": [250.3343048095703, 100.66693115234375, 0.9964194297790527], "3": [323.9896545410156, 115.46034240722656, 0.9028078317642212], "4": [218.23635864257812, 122.42214965820312, 0.8423761129379272], "5": [382.7884216308594, 243.57077026367188, 0.9920748472213745], "6": [184.17115783691406, 222.26055908203125, 0.991596519947052], "7": [503.5345153808594, 367.6636047363281, 0.8865976929664612], "8": [134.43045043945312, 362.57879638671875, 0.8930320143699646], "9": [514.2381591796875, 214.65089416503906, 0.931978166103363], "10": [189.5844268798828, 422.3505554199219, 0.8829441666603088], "11": [348.06768798828125, 480.0, 0.12881247699260712], "12": [219.7689666748047, 475.0019836425781, 0.14291507005691528], "13": [384.7214660644531, 423.2726135253906, 0.0022644363343715668], "14": [223.05072021484375, 395.4407958984375, 0.0027328971773386], "15": [414.0566101074219, 427.5313415527344, 0.0002677785523701459], "16": [259.24505615234375, 435.8361511230469, 0.00030743604293093085]}} +{"t": 41.649607, "tracked": true, "track_id": 1, "bbox": [101.00739288330078, 18.72005844116211, 533.5045166015625, 480.0], "det_conf": 0.9402717351913452, "mean_kpt_conf": 0.9380532611500133, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6816450856319218, "right_lift": -0.9350610233464356, "left_bend": 0.7216089660425442, "right_bend": 0.35391495544864443}, "keypoints": {"0": [276.3182373046875, 118.12258911132812, 0.9989023208618164], "1": [294.6356506347656, 96.65689086914062, 0.996518611907959], "2": [250.4842071533203, 98.59622192382812, 0.996480405330658], "3": [322.1959228515625, 115.87773132324219, 0.8882043957710266], "4": [218.0575714111328, 120.614990234375, 0.8601268529891968], "5": [379.78814697265625, 240.98580932617188, 0.9918859004974365], "6": [185.19602966308594, 220.71670532226562, 0.9914482831954956], "7": [504.89178466796875, 357.533935546875, 0.8835288286209106], "8": [133.07583618164062, 358.19873046875, 0.8916695713996887], "9": [512.5576782226562, 215.19210815429688, 0.9327400326728821], "10": [195.38255310058594, 425.14862060546875, 0.8870806694030762], "11": [350.5680236816406, 476.1765441894531, 0.13167625665664673], "12": [226.9437713623047, 470.44873046875, 0.14669471979141235], "13": [384.3311767578125, 421.12939453125, 0.0025578299537301064], "14": [242.4777069091797, 393.16094970703125, 0.0031373833771795034], "15": [410.3043212890625, 430.1082763671875, 0.0003037299611605704], "16": [281.0757141113281, 433.88458251953125, 0.00035262765595689416]}} +{"t": 41.715479, "tracked": true, "track_id": 1, "bbox": [101.38458251953125, 17.869199752807617, 532.9667358398438, 479.9059143066406], "det_conf": 0.9413591623306274, "mean_kpt_conf": 0.9355257207697089, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6941997244326573, "right_lift": -0.9403102787351896, "left_bend": 0.7230724287749571, "right_bend": 0.3612621838313484}, "keypoints": {"0": [275.86480712890625, 118.53215026855469, 0.9988642930984497], "1": [294.64581298828125, 96.63554382324219, 0.9964284300804138], "2": [249.81527709960938, 98.53793334960938, 0.9963984489440918], "3": [322.7328186035156, 115.419189453125, 0.8807525634765625], "4": [216.7694549560547, 119.89866638183594, 0.8604034185409546], "5": [379.81182861328125, 240.2556610107422, 0.9915760159492493], "6": [184.29129028320312, 221.06272888183594, 0.9907470941543579], "7": [501.83441162109375, 357.9412841796875, 0.8803755044937134], "8": [133.18206787109375, 362.27911376953125, 0.8830481767654419], "9": [511.42987060546875, 213.87179565429688, 0.9309616684913635], "10": [198.51229858398438, 427.31146240234375, 0.8812273144721985], "11": [353.5210266113281, 471.6229248046875, 0.1292104572057724], "12": [228.8048095703125, 466.684814453125, 0.14093656837940216], "13": [386.9404296875, 421.28753662109375, 0.0026155204977840185], "14": [242.28713989257812, 394.7401123046875, 0.003111289581283927], "15": [411.8963623046875, 431.001708984375, 0.00030426151352003217], "16": [278.99951171875, 435.91156005859375, 0.00034485611831769347]}} +{"t": 41.779705, "tracked": true, "track_id": 1, "bbox": [101.09378814697266, 17.73535919189453, 531.751220703125, 479.98681640625], "det_conf": 0.9410687685012817, "mean_kpt_conf": 0.9362888498739763, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6800188176370124, "right_lift": -0.9493048417141591, "left_bend": 0.7210804590252634, "right_bend": 0.327583572619191}, "keypoints": {"0": [276.46588134765625, 118.60972595214844, 0.9988528490066528], "1": [295.2928771972656, 96.86332702636719, 0.996338963508606], "2": [250.2841796875, 98.86582946777344, 0.9965212345123291], "3": [323.1756591796875, 115.31410217285156, 0.8805611729621887], "4": [216.3465576171875, 120.48585510253906, 0.8681790232658386], "5": [380.632080078125, 239.72593688964844, 0.9928686022758484], "6": [179.4834442138672, 224.70135498046875, 0.9915797710418701], "7": [503.98602294921875, 354.13348388671875, 0.8938813209533691], "8": [132.87039184570312, 365.4648742675781, 0.8816249966621399], "9": [511.4733581542969, 213.6421356201172, 0.9304401278495789], "10": [187.20399475097656, 428.76068115234375, 0.8683292865753174], "11": [349.03125, 472.71087646484375, 0.16008761525154114], "12": [219.72103881835938, 469.4436950683594, 0.1636292189359665], "13": [394.3385009765625, 422.7009582519531, 0.002892801770940423], "14": [237.87379455566406, 398.8005676269531, 0.003252205206081271], "15": [416.26763916015625, 422.3320007324219, 0.00033598518348298967], "16": [274.1676025390625, 427.562255859375, 0.0003645296092145145]}} +{"t": 41.843441, "tracked": true, "track_id": 1, "bbox": [100.5798568725586, 17.216726303100586, 532.3241577148438, 479.8946838378906], "det_conf": 0.941548764705658, "mean_kpt_conf": 0.938294156031175, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6880546989300398, "right_lift": -0.9387236427186919, "left_bend": 0.7371376363546894, "right_bend": 0.37293837763072385}, "keypoints": {"0": [276.2611389160156, 117.12380981445312, 0.9989463686943054], "1": [294.27105712890625, 95.04632568359375, 0.9965521097183228], "2": [249.8357391357422, 97.52424621582031, 0.9967488050460815], "3": [321.45513916015625, 113.52780151367188, 0.8771345615386963], "4": [216.06494140625, 119.49639892578125, 0.8685892224311829], "5": [381.04229736328125, 238.35284423828125, 0.992042601108551], "6": [180.98516845703125, 219.219970703125, 0.9913380146026611], "7": [507.78106689453125, 358.52392578125, 0.8872033357620239], "8": [128.69073486328125, 361.64581298828125, 0.8916197419166565], "9": [509.7964172363281, 212.65231323242188, 0.9337601661682129], "10": [198.58543395996094, 426.89849853515625, 0.8873007893562317], "11": [353.4609680175781, 476.94049072265625, 0.11934905499219894], "12": [225.06307983398438, 471.9378662109375, 0.1307976394891739], "13": [391.3841247558594, 415.27203369140625, 0.00229060766287148], "14": [236.05615234375, 387.706298828125, 0.002747471909970045], "15": [420.4271240234375, 425.6824645996094, 0.00028347171610221267], "16": [273.0730285644531, 430.07025146484375, 0.00032223519519902766]}} +{"t": 41.878773, "tracked": true, "track_id": 1, "bbox": [100.07767486572266, 17.660314559936523, 533.3843383789062, 479.93963623046875], "det_conf": 0.940887987613678, "mean_kpt_conf": 0.9363101395693693, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6857942606012976, "right_lift": -0.9423583278142179, "left_bend": 0.7199903983917832, "right_bend": 0.3457384134224744}, "keypoints": {"0": [276.12701416015625, 116.5548095703125, 0.9988833069801331], "1": [294.2883605957031, 94.5806884765625, 0.9966412782669067], "2": [249.6192169189453, 97.07879638671875, 0.996461808681488], "3": [322.24688720703125, 113.20402526855469, 0.8901354670524597], "4": [215.97341918945312, 119.55947875976562, 0.8633646368980408], "5": [381.8856201171875, 239.45172119140625, 0.9922263622283936], "6": [180.0860595703125, 225.41978454589844, 0.992002010345459], "7": [502.20257568359375, 352.8251647949219, 0.8843847513198853], "8": [130.18923950195312, 365.945556640625, 0.8876855373382568], "9": [511.26666259765625, 212.65341186523438, 0.9252332448959351], "10": [191.5482940673828, 432.47613525390625, 0.8723931312561035], "11": [357.36712646484375, 480.0, 0.14188739657402039], "12": [227.85189819335938, 477.9595947265625, 0.15486206114292145], "13": [395.77606201171875, 425.2918395996094, 0.002335516968742013], "14": [240.32467651367188, 402.5422058105469, 0.002774725900962949], "15": [418.6744689941406, 423.8532409667969, 0.00028017250588163733], "16": [278.7293701171875, 431.62677001953125, 0.0003184461093042046]}} +{"t": 41.945992, "tracked": true, "track_id": 1, "bbox": [98.73400115966797, 16.975603103637695, 535.9907836914062, 479.97467041015625], "det_conf": 0.9392953515052795, "mean_kpt_conf": 0.9373287992043928, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6971679698047778, "right_lift": -0.9528998528804182, "left_bend": 0.7208054928721679, "right_bend": 0.36771161644782036}, "keypoints": {"0": [275.4891052246094, 116.71939086914062, 0.9988916516304016], "1": [294.510498046875, 94.77549743652344, 0.9965265393257141], "2": [249.09201049804688, 96.42025756835938, 0.9964026212692261], "3": [322.484130859375, 113.42300415039062, 0.8792131543159485], "4": [214.4089813232422, 117.63308715820312, 0.8637973070144653], "5": [381.6329650878906, 238.71575927734375, 0.9933880567550659], "6": [176.89706420898438, 223.94259643554688, 0.9918187856674194], "7": [502.48760986328125, 356.2427062988281, 0.9011455178260803], "8": [130.15289306640625, 370.80938720703125, 0.8832132816314697], "9": [513.7938842773438, 211.1336669921875, 0.9339905381202698], "10": [193.9787139892578, 427.2120666503906, 0.8722293376922607], "11": [356.4429931640625, 480.0, 0.16934341192245483], "12": [224.54074096679688, 478.0311584472656, 0.1708189994096756], "13": [394.1976318359375, 427.11187744140625, 0.0029223866295069456], "14": [234.4625244140625, 404.175537109375, 0.0031743135768920183], "15": [414.7522888183594, 429.83544921875, 0.0003290403983555734], "16": [270.69464111328125, 435.3325500488281, 0.0003481502353679389]}} +{"t": 42.013837, "tracked": true, "track_id": 1, "bbox": [98.98651123046875, 17.05524444580078, 543.7489624023438, 480.0], "det_conf": 0.9373387098312378, "mean_kpt_conf": 0.9353658827868375, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7068400976707048, "right_lift": -0.9567706497407311, "left_bend": 0.7079352861590094, "right_bend": 0.345688075033875}, "keypoints": {"0": [275.7095947265625, 118.30718994140625, 0.9989075660705566], "1": [295.7007751464844, 95.30705261230469, 0.9971247315406799], "2": [249.64718627929688, 97.31306457519531, 0.9960337281227112], "3": [323.7348327636719, 111.32278442382812, 0.9095718264579773], "4": [216.41612243652344, 115.83041381835938, 0.8406575918197632], "5": [377.0787353515625, 230.28314208984375, 0.9933559894561768], "6": [178.3268585205078, 219.9541015625, 0.9923801422119141], "7": [502.81365966796875, 355.92327880859375, 0.9053918719291687], "8": [131.95510864257812, 372.5005187988281, 0.8777709007263184], "9": [521.2344970703125, 216.94126892089844, 0.9291369318962097], "10": [182.03570556640625, 422.03277587890625, 0.8486934304237366], "11": [356.7014465332031, 474.704833984375, 0.1338714063167572], "12": [228.16598510742188, 475.079833984375, 0.13055835664272308], "13": [409.00714111328125, 404.4564514160156, 0.001870255800895393], "14": [241.1119842529297, 384.93121337890625, 0.0019592824392020702], "15": [446.08172607421875, 407.1600341796875, 0.00023292677360586822], "16": [284.9551086425781, 412.0494384765625, 0.00024697513435967267]}} +{"t": 42.078382, "tracked": true, "track_id": 1, "bbox": [97.48051452636719, 16.64374542236328, 550.4774780273438, 480.0], "det_conf": 0.9329683780670166, "mean_kpt_conf": 0.9371980266137556, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7018958858392845, "right_lift": -0.9555588023685525, "left_bend": 0.7032833741215789, "right_bend": 0.36256989392265}, "keypoints": {"0": [275.1271057128906, 117.22769165039062, 0.9989975094795227], "1": [295.061767578125, 94.9180908203125, 0.9974563717842102], "2": [249.282958984375, 96.74153137207031, 0.996274471282959], "3": [323.40704345703125, 113.12930297851562, 0.9215034246444702], "4": [217.25485229492188, 117.17961120605469, 0.834764301776886], "5": [376.6796875, 234.14842224121094, 0.9927789568901062], "6": [180.4598846435547, 220.21133422851562, 0.992612361907959], "7": [506.954345703125, 362.52392578125, 0.8992303609848022], "8": [133.02560424804688, 373.96356201171875, 0.8864251971244812], "9": [527.36376953125, 217.087890625, 0.9309946298599243], "10": [191.2301788330078, 426.1563720703125, 0.8581407070159912], "11": [353.43609619140625, 480.0, 0.1198519840836525], "12": [226.57656860351562, 480.0, 0.12464340776205063], "13": [402.0546875, 410.89251708984375, 0.0016226379666477442], "14": [235.62628173828125, 387.90496826171875, 0.001820059958845377], "15": [447.66766357421875, 417.50091552734375, 0.00020392335136421025], "16": [280.94964599609375, 420.8834228515625, 0.00022801177692599595]}} +{"t": 42.144735, "tracked": true, "track_id": 1, "bbox": [96.41120910644531, 17.31363868713379, 558.7254638671875, 480.0], "det_conf": 0.9322652816772461, "mean_kpt_conf": 0.9391063885255293, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6888056709400509, "right_lift": -0.9569933705788958, "left_bend": 0.685759730042197, "right_bend": 0.36140775634480754}, "keypoints": {"0": [274.47198486328125, 116.78974914550781, 0.9990328550338745], "1": [294.60894775390625, 94.63958740234375, 0.997368574142456], "2": [248.63961791992188, 95.71571350097656, 0.996505618095398], "3": [322.37628173828125, 112.7353515625, 0.9090221524238586], "4": [215.41268920898438, 115.27095031738281, 0.8507674336433411], "5": [374.2736511230469, 232.22142028808594, 0.9930342435836792], "6": [177.80572509765625, 221.36663818359375, 0.992966890335083], "7": [504.6776123046875, 356.1244201660156, 0.9054051637649536], "8": [130.96920776367188, 375.8675842285156, 0.8930516242980957], "9": [528.90185546875, 220.1150360107422, 0.9308872818946838], "10": [186.67984008789062, 425.6981201171875, 0.8621284365653992], "11": [352.7668151855469, 480.0, 0.13749395310878754], "12": [224.77182006835938, 480.0, 0.14209964871406555], "13": [401.045166015625, 417.4574890136719, 0.0016130205476656556], "14": [229.06039428710938, 396.94647216796875, 0.0017727661179378629], "15": [443.6387939453125, 423.7311096191406, 0.00019063858781009912], "16": [268.3746337890625, 425.4239807128906, 0.00020720710745081306]}} +{"t": 42.210042, "tracked": true, "track_id": 1, "bbox": [94.73430633544922, 16.66231918334961, 571.14404296875, 480.0], "det_conf": 0.9297695755958557, "mean_kpt_conf": 0.9410102259029042, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6911419106833907, "right_lift": -0.9568136119569752, "left_bend": 0.6717448827841002, "right_bend": 0.3692179182101605}, "keypoints": {"0": [274.78741455078125, 117.19931030273438, 0.9991101622581482], "1": [294.37060546875, 94.83894348144531, 0.9974585175514221], "2": [248.9221954345703, 95.67362976074219, 0.9966800212860107], "3": [321.55450439453125, 112.44400024414062, 0.9030256271362305], "4": [215.00205993652344, 114.51356506347656, 0.8522654175758362], "5": [374.0501403808594, 234.92703247070312, 0.9934125542640686], "6": [177.45306396484375, 221.40896606445312, 0.9932966828346252], "7": [505.01287841796875, 360.167724609375, 0.9104712009429932], "8": [131.29202270507812, 373.3428955078125, 0.9009370803833008], "9": [536.0437622070312, 223.65635681152344, 0.9327282309532166], "10": [185.18191528320312, 419.27294921875, 0.8717269897460938], "11": [353.19122314453125, 480.0, 0.13963858783245087], "12": [223.49407958984375, 480.0, 0.14501529932022095], "13": [406.1787414550781, 416.52166748046875, 0.0014916307991370559], "14": [222.565185546875, 395.5762023925781, 0.0016502700746059418], "15": [453.4819030761719, 417.33465576171875, 0.0001688941556494683], "16": [259.0612487792969, 419.93658447265625, 0.0001835682924138382]}} +{"t": 42.272748, "tracked": true, "track_id": 1, "bbox": [93.80500030517578, 16.5944766998291, 582.9938354492188, 479.70233154296875], "det_conf": 0.9278499484062195, "mean_kpt_conf": 0.9420098174702037, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6725153984049652, "right_lift": -0.9532898055623762, "left_bend": 0.6436039408189418, "right_bend": 0.33241725316710163}, "keypoints": {"0": [274.2966613769531, 116.91694641113281, 0.9991255402565002], "1": [294.06512451171875, 94.48226928710938, 0.9976063966751099], "2": [248.29595947265625, 95.52789306640625, 0.9964861869812012], "3": [322.03729248046875, 112.60859680175781, 0.9118257164955139], "4": [215.18336486816406, 115.23263549804688, 0.8374689221382141], "5": [372.9554443359375, 235.069580078125, 0.9939215183258057], "6": [179.81442260742188, 223.08644104003906, 0.9932888150215149], "7": [508.0794982910156, 357.8571472167969, 0.9219213128089905], "8": [131.8715057373047, 374.39385986328125, 0.903937816619873], "9": [546.9105224609375, 226.02932739257812, 0.937289297580719], "10": [178.5238037109375, 425.74700927734375, 0.8692364692687988], "11": [350.5984802246094, 480.0, 0.14089921116828918], "12": [222.73538208007812, 480.0, 0.13987703621387482], "13": [411.45855712890625, 411.79541015625, 0.001389782060869038], "14": [225.89993286132812, 391.99066162109375, 0.0014976148959249258], "15": [462.6492919921875, 409.356689453125, 0.00016148942813742906], "16": [258.94000244140625, 413.1383361816406, 0.0001734930119710043]}} +{"t": 42.307076, "tracked": true, "track_id": 1, "bbox": [92.74845123291016, 16.69606590270996, 585.0951538085938, 479.6281433105469], "det_conf": 0.9221106171607971, "mean_kpt_conf": 0.9442257176746022, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.691107323865788, "right_lift": -0.9495146629249116, "left_bend": 0.6369475305313164, "right_bend": 0.355884310861724}, "keypoints": {"0": [274.6834716796875, 116.047119140625, 0.9991593360900879], "1": [293.84869384765625, 94.02330017089844, 0.9975008368492126], "2": [248.7965087890625, 94.6834716796875, 0.9966719150543213], "3": [320.80682373046875, 112.02621459960938, 0.8954592943191528], "4": [215.0006103515625, 113.6470947265625, 0.8548166155815125], "5": [372.601318359375, 232.88565063476562, 0.9942803382873535], "6": [178.39031982421875, 220.76068115234375, 0.9940592050552368], "7": [502.28424072265625, 356.89056396484375, 0.9250621795654297], "8": [127.282470703125, 375.4439697265625, 0.917219877243042], "9": [547.47216796875, 226.15414428710938, 0.9337354898452759], "10": [181.3609619140625, 428.0780944824219, 0.8785178065299988], "11": [359.38970947265625, 480.0, 0.1554347574710846], "12": [230.116455078125, 480.0, 0.15956979990005493], "13": [421.0821838378906, 411.77923583984375, 0.0013796850107610226], "14": [230.40602111816406, 393.690673828125, 0.0015363701386377215], "15": [469.1488342285156, 408.32598876953125, 0.0001516808697488159], "16": [258.2112731933594, 413.75836181640625, 0.00016595884517300874]}} +{"t": 42.372957, "tracked": true, "track_id": 1, "bbox": [92.03921508789062, 16.71845245361328, 586.9375, 479.5035400390625], "det_conf": 0.9212625622749329, "mean_kpt_conf": 0.9439365105195479, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6837368852553414, "right_lift": -0.9458668456261672, "left_bend": 0.636743943516575, "right_bend": 0.3575901383216849}, "keypoints": {"0": [274.5026550292969, 117.47821044921875, 0.9991750121116638], "1": [294.2823791503906, 94.38397216796875, 0.9977407455444336], "2": [248.5328369140625, 95.73530578613281, 0.9966574907302856], "3": [322.5298156738281, 110.84687805175781, 0.9116098284721375], "4": [215.46453857421875, 113.72834777832031, 0.8431442975997925], "5": [372.9631042480469, 233.2322235107422, 0.9938983917236328], "6": [180.0213623046875, 220.60260009765625, 0.9939466118812561], "7": [505.4754638671875, 357.39288330078125, 0.9199621081352234], "8": [127.85330200195312, 372.63861083984375, 0.9136038422584534], "9": [550.0431518554688, 224.36727905273438, 0.934752881526947], "10": [178.2605438232422, 422.29901123046875, 0.8788104057312012], "11": [354.6978759765625, 480.0, 0.14538367092609406], "12": [226.56771850585938, 480.0, 0.1518430858850479], "13": [412.71600341796875, 413.3443603515625, 0.0013486319221556187], "14": [224.45657348632812, 394.1986083984375, 0.001516525517217815], "15": [465.7101745605469, 407.92120361328125, 0.0001527850836282596], "16": [255.913818359375, 413.61773681640625, 0.0001688886695774272]}} +{"t": 42.441233, "tracked": true, "track_id": 1, "bbox": [91.54509735107422, 17.05388069152832, 589.0115966796875, 479.28399658203125], "det_conf": 0.9168561100959778, "mean_kpt_conf": 0.9442319273948669, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6814622000677105, "right_lift": -0.9461922250564027, "left_bend": 0.6344393666042079, "right_bend": 0.3842979905011497}, "keypoints": {"0": [275.48663330078125, 116.37890625, 0.9991870522499084], "1": [294.6048583984375, 94.63334655761719, 0.9976542592048645], "2": [250.05751037597656, 94.83763122558594, 0.9967067837715149], "3": [321.1142272949219, 113.2181396484375, 0.9028921723365784], "4": [216.59567260742188, 113.974609375, 0.8496219515800476], "5": [370.922607421875, 235.99069213867188, 0.9941735863685608], "6": [178.03579711914062, 221.836181640625, 0.9936269521713257], "7": [504.3214416503906, 360.2044677734375, 0.9259257912635803], "8": [125.44485473632812, 375.60736083984375, 0.9099153876304626], "9": [549.5831298828125, 226.93603515625, 0.9389495253562927], "10": [181.2394256591797, 421.941162109375, 0.8778977394104004], "11": [349.61151123046875, 480.0, 0.1344263255596161], "12": [220.90701293945312, 480.0, 0.1337742954492569], "13": [411.9182434082031, 406.83111572265625, 0.0013290137285366654], "14": [219.15530395507812, 387.1610107421875, 0.0014217293355613947], "15": [466.6595458984375, 406.2648620605469, 0.00015572377014905214], "16": [248.77464294433594, 409.66156005859375, 0.00016513156879227608]}} +{"t": 42.504428, "tracked": true, "track_id": 1, "bbox": [92.53343963623047, 17.1722469329834, 589.580810546875, 479.257080078125], "det_conf": 0.921509325504303, "mean_kpt_conf": 0.9442624937404286, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6658544386712415, "right_lift": -0.9475176245059427, "left_bend": 0.6250014412770424, "right_bend": 0.40939756827469687}, "keypoints": {"0": [275.3302917480469, 117.2723388671875, 0.9992067217826843], "1": [294.5669250488281, 95.46234130859375, 0.9975106716156006], "2": [250.03091430664062, 95.16604614257812, 0.9968603849411011], "3": [320.3594665527344, 113.49932861328125, 0.8855863809585571], "4": [216.09573364257812, 112.92259216308594, 0.8605504631996155], "5": [367.4571533203125, 234.39405822753906, 0.9941807389259338], "6": [179.61940002441406, 221.26866149902344, 0.9934988021850586], "7": [505.9322509765625, 357.9787292480469, 0.9265846610069275], "8": [126.55105590820312, 378.5493469238281, 0.9090487360954285], "9": [552.558349609375, 224.44448852539062, 0.9408835172653198], "10": [186.14035034179688, 420.20208740234375, 0.8829763531684875], "11": [351.14788818359375, 480.0, 0.1272783726453781], "12": [226.30618286132812, 480.0, 0.125410258769989], "13": [413.7377624511719, 405.9085693359375, 0.0013042110949754715], "14": [230.090576171875, 386.1865234375, 0.0013900481862947345], "15": [471.643798828125, 406.0940856933594, 0.00015210320998448879], "16": [259.75897216796875, 406.3558349609375, 0.00015996820002328604]}} +{"t": 42.572117, "tracked": true, "track_id": 1, "bbox": [91.95372772216797, 17.207595825195312, 590.40966796875, 478.9266357421875], "det_conf": 0.9202637672424316, "mean_kpt_conf": 0.9467559998685663, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6792982215934558, "right_lift": -0.938328653871727, "left_bend": 0.6245297540899407, "right_bend": 0.4109979701635065}, "keypoints": {"0": [275.8051452636719, 117.99273681640625, 0.9992291927337646], "1": [294.8989562988281, 95.56098937988281, 0.9978410005569458], "2": [250.22418212890625, 96.57257080078125, 0.9967233538627625], "3": [322.2653503417969, 113.09991455078125, 0.9105861186981201], "4": [217.888427734375, 115.3199462890625, 0.842773973941803], "5": [371.1128234863281, 234.99786376953125, 0.9940326809883118], "6": [182.6036834716797, 220.87948608398438, 0.9940237402915955], "7": [506.19354248046875, 360.0350646972656, 0.925762414932251], "8": [126.20797729492188, 373.9338073730469, 0.9200939536094666], "9": [555.6110229492188, 226.9669189453125, 0.9402792453765869], "10": [185.90615844726562, 417.7025146484375, 0.8929703235626221], "11": [353.2701416015625, 480.0, 0.12524281442165375], "12": [227.64111328125, 480.0, 0.13068202137947083], "13": [418.95416259765625, 401.32281494140625, 0.0012333409395068884], "14": [230.61172485351562, 382.3044738769531, 0.0014200559817254543], "15": [478.5654602050781, 401.2492980957031, 0.00014728240785188973], "16": [259.50665283203125, 406.80224609375, 0.00016601487004663795]}} +{"t": 42.64237, "tracked": true, "track_id": 1, "bbox": [92.4929428100586, 18.3784122467041, 593.9610595703125, 479.2276611328125], "det_conf": 0.9173139929771423, "mean_kpt_conf": 0.9474975520914252, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.694765164277387, "right_lift": -0.9616125153360668, "left_bend": 0.6640964454233297, "right_bend": 0.3433115457821095}, "keypoints": {"0": [275.86883544921875, 117.74855041503906, 0.9992666840553284], "1": [295.0100402832031, 96.27476501464844, 0.9976166486740112], "2": [250.10037231445312, 96.69019317626953, 0.996440589427948], "3": [321.8220520019531, 115.33013916015625, 0.8846538662910461], "4": [214.70596313476562, 116.7979507446289, 0.8179517388343811], "5": [379.7899169921875, 232.5986328125, 0.9957112073898315], "6": [177.66583251953125, 224.9647979736328, 0.9948321580886841], "7": [509.8187255859375, 358.20330810546875, 0.9512884616851807], "8": [134.79501342773438, 375.19610595703125, 0.9282642602920532], "9": [540.2996826171875, 240.09686279296875, 0.9546836018562317], "10": [172.74281311035156, 412.00970458984375, 0.9017638564109802], "11": [373.1661376953125, 480.0, 0.24031509459018707], "12": [236.92929077148438, 480.0, 0.22239957749843597], "13": [441.73065185546875, 397.7779541015625, 0.0020628662314265966], "14": [233.32496643066406, 382.64361572265625, 0.0020132227800786495], "15": [495.8712158203125, 407.523681640625, 0.00020101931295357645], "16": [267.48309326171875, 409.88653564453125, 0.00020419301290530711]}} +{"t": 42.700099, "tracked": true, "track_id": 1, "bbox": [92.06936645507812, 18.14513397216797, 591.0565185546875, 479.2999267578125], "det_conf": 0.9173001646995544, "mean_kpt_conf": 0.9451626647602428, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6853224999369576, "right_lift": -0.9487925967732097, "left_bend": 0.6362342758967272, "right_bend": 0.39193188492919695}, "keypoints": {"0": [276.5868835449219, 117.513916015625, 0.999178946018219], "1": [296.02886962890625, 95.46832275390625, 0.997612714767456], "2": [250.93751525878906, 96.32666015625, 0.9966626763343811], "3": [322.9352722167969, 113.38217163085938, 0.9013705849647522], "4": [217.65481567382812, 115.29824829101562, 0.8490594625473022], "5": [371.2794189453125, 233.2734375, 0.9946739673614502], "6": [179.60321044921875, 220.43017578125, 0.9936099648475647], "7": [507.1064758300781, 361.0958251953125, 0.9337772727012634], "8": [127.53303527832031, 376.8209533691406, 0.9104447960853577], "9": [550.895263671875, 232.01536560058594, 0.9423731565475464], "10": [185.24354553222656, 421.69464111328125, 0.8780257701873779], "11": [350.3002014160156, 480.0, 0.14527583122253418], "12": [223.01864624023438, 480.0, 0.13814236223697662], "13": [418.77166748046875, 404.7637023925781, 0.0013783100293949246], "14": [231.07720947265625, 386.129150390625, 0.0014405600959435105], "15": [474.90521240234375, 403.9671630859375, 0.00015873713709879667], "16": [262.1564636230469, 407.9580078125, 0.0001661214482737705]}} +{"t": 42.737325, "tracked": true, "track_id": 1, "bbox": [92.95343017578125, 18.05794906616211, 588.8040161132812, 479.2428283691406], "det_conf": 0.9235522747039795, "mean_kpt_conf": 0.9434353275732561, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6703304926578351, "right_lift": -0.9441301848779605, "left_bend": 0.6383097816900649, "right_bend": 0.4016343922368571}, "keypoints": {"0": [275.98077392578125, 118.08761596679688, 0.9991589784622192], "1": [295.8981018066406, 96.01774597167969, 0.9976771473884583], "2": [250.3371124267578, 96.45574951171875, 0.9966645836830139], "3": [323.59869384765625, 114.77316284179688, 0.9097155332565308], "4": [217.20828247070312, 115.7386474609375, 0.843730628490448], "5": [374.0640563964844, 235.74606323242188, 0.9933856129646301], "6": [180.36727905273438, 221.14639282226562, 0.9932223558425903], "7": [511.4102783203125, 359.8155822753906, 0.9157294034957886], "8": [127.74443054199219, 371.89556884765625, 0.9065996408462524], "9": [551.8927612304688, 229.0120849609375, 0.9381208419799805], "10": [185.39678955078125, 415.2587890625, 0.8837838768959045], "11": [352.9683837890625, 480.0, 0.11102808266878128], "12": [225.05397033691406, 480.0, 0.11509135365486145], "13": [412.155029296875, 396.4100036621094, 0.0013368463842198253], "14": [227.244140625, 375.65716552734375, 0.0015139492461457849], "15": [465.77984619140625, 403.2559509277344, 0.00017112305795308203], "16": [260.67681884765625, 404.755126953125, 0.00019034199067391455]}} +{"t": 42.771276, "tracked": true, "track_id": 1, "bbox": [92.49947357177734, 18.11111831665039, 586.66357421875, 479.2200622558594], "det_conf": 0.9204412698745728, "mean_kpt_conf": 0.9480182799425992, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6662307540670415, "right_lift": -0.9323532871001935, "left_bend": 0.6311154646325132, "right_bend": 0.39744802316490946}, "keypoints": {"0": [276.5422058105469, 117.79910278320312, 0.9992326498031616], "1": [295.4826354980469, 96.37785339355469, 0.9978812336921692], "2": [251.04379272460938, 97.01254272460938, 0.9966345429420471], "3": [322.8917236328125, 115.6331787109375, 0.9163698554039001], "4": [218.66354370117188, 117.43829345703125, 0.8272438049316406], "5": [373.4117126464844, 236.69923400878906, 0.9942686557769775], "6": [184.64039611816406, 220.60813903808594, 0.99381422996521], "7": [510.76239013671875, 359.4049377441406, 0.933136522769928], "8": [128.60623168945312, 365.1077880859375, 0.9236948490142822], "9": [552.0628051757812, 233.61167907714844, 0.9461855888366699], "10": [180.54173278808594, 408.1561279296875, 0.899739146232605], "11": [351.4826354980469, 480.0, 0.14398552477359772], "12": [224.86639404296875, 480.0, 0.14652520418167114], "13": [415.87432861328125, 400.53851318359375, 0.0013669462641701102], "14": [222.1753692626953, 378.841552734375, 0.0015303726540878415], "15": [474.71661376953125, 400.462890625, 0.000160675379447639], "16": [245.856201171875, 402.0711669921875, 0.00017792063590604812]}} +{"t": 42.831624, "tracked": true, "track_id": 1, "bbox": [93.17509460449219, 17.73397445678711, 582.2993774414062, 479.1936950683594], "det_conf": 0.927829921245575, "mean_kpt_conf": 0.9451918710361827, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6991737303178993, "right_lift": -0.9430689656419193, "left_bend": 0.6552834996573516, "right_bend": 0.35946809673530966}, "keypoints": {"0": [277.3427429199219, 119.02963256835938, 0.9991599321365356], "1": [297.1812744140625, 95.76484680175781, 0.9977793097496033], "2": [251.20681762695312, 97.96464538574219, 0.9967024922370911], "3": [325.49932861328125, 112.09025573730469, 0.9191341996192932], "4": [218.79556274414062, 116.89608764648438, 0.8420751690864563], "5": [373.70562744140625, 233.2369384765625, 0.9933149218559265], "6": [182.70167541503906, 218.08404541015625, 0.9933070540428162], "7": [504.8709716796875, 361.50762939453125, 0.9195348024368286], "8": [130.59898376464844, 365.819580078125, 0.9116106033325195], "9": [542.59375, 233.41685485839844, 0.9396027326583862], "10": [179.70057678222656, 414.4473876953125, 0.8848893642425537], "11": [344.0792236328125, 480.0, 0.14119383692741394], "12": [217.52243041992188, 480.0, 0.14687927067279816], "13": [402.6591796875, 410.7218322753906, 0.0014633015962317586], "14": [215.95797729492188, 390.21380615234375, 0.001641406212002039], "15": [458.206787109375, 415.7079162597656, 0.00016810462693683803], "16": [249.4852294921875, 422.65966796875, 0.00018497687415219843]}} +{"t": 42.871287, "tracked": true, "track_id": 1, "bbox": [92.87430572509766, 17.7990665435791, 582.1087036132812, 479.4079895019531], "det_conf": 0.9258325099945068, "mean_kpt_conf": 0.9438385963439941, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7161197237152153, "right_lift": -0.95105195168749, "left_bend": 0.6722191523375299, "right_bend": 0.3707035457130165}, "keypoints": {"0": [276.5207214355469, 118.64617919921875, 0.9991726279258728], "1": [297.10565185546875, 95.62283325195312, 0.9978118538856506], "2": [250.1895294189453, 96.87213134765625, 0.9965869188308716], "3": [325.8848876953125, 113.29718017578125, 0.9180362820625305], "4": [216.5349578857422, 115.98699951171875, 0.8333525657653809], "5": [376.7880554199219, 235.78683471679688, 0.993956446647644], "6": [180.08192443847656, 219.93698120117188, 0.9932396411895752], "7": [506.5304870605469, 368.901611328125, 0.9236010313034058], "8": [130.13497924804688, 373.650146484375, 0.9056069254875183], "9": [542.1365356445312, 233.52210998535156, 0.9411757588386536], "10": [179.08108520507812, 416.611328125, 0.8796845078468323], "11": [352.6894836425781, 480.0, 0.14003755152225494], "12": [222.0287322998047, 480.0, 0.13904714584350586], "13": [411.2491455078125, 410.81451416015625, 0.0014567308826372027], "14": [218.9019012451172, 389.58056640625, 0.0015499531291425228], "15": [463.71295166015625, 416.1065673828125, 0.0001595539943082258], "16": [251.68209838867188, 420.6749267578125, 0.00017030071467161179]}} +{"t": 42.933038, "tracked": true, "track_id": 1, "bbox": [90.78245544433594, 17.844806671142578, 572.9204711914062, 479.91217041015625], "det_conf": 0.9325604438781738, "mean_kpt_conf": 0.9461190700531006, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7079156422038076, "right_lift": -0.9384393715883707, "left_bend": 0.6895611346912293, "right_bend": 0.36924435952066365}, "keypoints": {"0": [276.7118835449219, 118.54209899902344, 0.9991794228553772], "1": [297.2047424316406, 96.497802734375, 0.9977352619171143], "2": [251.14215087890625, 97.4090576171875, 0.9968792200088501], "3": [325.72735595703125, 115.37625122070312, 0.9201042652130127], "4": [218.52163696289062, 117.35504150390625, 0.8454627394676208], "5": [375.9134216308594, 237.4613494873047, 0.9925611615180969], "6": [181.03213500976562, 218.22027587890625, 0.9938420057296753], "7": [503.83685302734375, 365.6779479980469, 0.9062720537185669], "8": [127.47586059570312, 363.71221923828125, 0.9182092547416687], "9": [529.735107421875, 231.7514190673828, 0.9390570521354675], "10": [178.23541259765625, 412.2952880859375, 0.898007333278656], "11": [343.62225341796875, 480.0, 0.12799231708049774], "12": [215.54580688476562, 480.0, 0.14688153564929962], "13": [386.7485656738281, 408.8197937011719, 0.0016210598405450583], "14": [205.94671630859375, 383.5729064941406, 0.001953872386366129], "15": [438.7210998535156, 422.2137451171875, 0.00019861021428368986], "16": [244.82261657714844, 423.5626525878906, 0.00022984700626693666]}} +{"t": 42.998951, "tracked": true, "track_id": 1, "bbox": [91.39801025390625, 17.69802474975586, 560.3914794921875, 479.932373046875], "det_conf": 0.9313167333602905, "mean_kpt_conf": 0.9444983655756171, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7173677038640328, "right_lift": -0.9398953175684148, "left_bend": 0.7030110345499297, "right_bend": 0.34230636620648247}, "keypoints": {"0": [278.028076171875, 118.12380981445312, 0.9991610050201416], "1": [297.463134765625, 95.96298217773438, 0.9977409839630127], "2": [252.714111328125, 97.51596069335938, 0.996715784072876], "3": [325.37518310546875, 113.77865600585938, 0.9229195713996887], "4": [220.896728515625, 117.313232421875, 0.8337012529373169], "5": [377.0729675292969, 236.9834747314453, 0.9930250644683838], "6": [183.11048889160156, 217.637939453125, 0.9935698509216309], "7": [502.03729248046875, 365.6558532714844, 0.9123556017875671], "8": [130.60304260253906, 362.1676330566406, 0.9146587252616882], "9": [524.6444091796875, 227.53579711914062, 0.938215970993042], "10": [178.11843872070312, 415.5931701660156, 0.8874182105064392], "11": [344.1304931640625, 480.0, 0.14060696959495544], "12": [215.7589111328125, 480.0, 0.15368551015853882], "13": [392.1179504394531, 414.6904296875, 0.001555148744955659], "14": [205.9917755126953, 389.1928405761719, 0.0017889769515022635], "15": [443.531005859375, 421.2222595214844, 0.0001833143032854423], "16": [241.774169921875, 424.8128967285156, 0.00020582933211699128]}} +{"t": 43.062864, "tracked": true, "track_id": 1, "bbox": [91.3698501586914, 18.115108489990234, 546.6196899414062, 479.7926940917969], "det_conf": 0.9377895593643188, "mean_kpt_conf": 0.9415404579856179, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7417153922954877, "right_lift": -0.9439894723214542, "left_bend": 0.7151733442711331, "right_bend": 0.3660529556749807}, "keypoints": {"0": [278.74334716796875, 119.32467651367188, 0.9990322589874268], "1": [298.4595031738281, 96.26359558105469, 0.9975141286849976], "2": [252.96527099609375, 98.803466796875, 0.9964476823806763], "3": [326.7735900878906, 112.31681823730469, 0.919639527797699], "4": [221.03085327148438, 117.7537841796875, 0.841741681098938], "5": [376.4515380859375, 233.7380828857422, 0.992209792137146], "6": [182.10647583007812, 216.55532836914062, 0.9929520487785339], "7": [494.7803955078125, 364.593017578125, 0.9019998908042908], "8": [130.27545166015625, 364.8327941894531, 0.9032798409461975], "9": [516.7186889648438, 228.3365478515625, 0.9338784217834473], "10": [189.40914916992188, 420.70928955078125, 0.8782497644424438], "11": [344.51873779296875, 480.0, 0.1380486637353897], "12": [217.47874450683594, 479.614990234375, 0.15081867575645447], "13": [389.15338134765625, 413.56842041015625, 0.001828138716518879], "14": [214.51776123046875, 391.24334716796875, 0.0020954119972884655], "15": [436.71429443359375, 424.37677001953125, 0.00022363972675520927], "16": [257.04437255859375, 432.8623046875, 0.00025060048210434616]}} +{"t": 43.097851, "tracked": true, "track_id": 1, "bbox": [93.21405792236328, 17.76849937438965, 540.6932373046875, 479.8704833984375], "det_conf": 0.9414417147636414, "mean_kpt_conf": 0.9413580840284174, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.733692446871928, "right_lift": -0.9401817239685664, "left_bend": 0.7250873190349316, "right_bend": 0.371724348425697}, "keypoints": {"0": [277.76092529296875, 118.25802612304688, 0.9990757703781128], "1": [298.4043273925781, 96.09286499023438, 0.997532844543457], "2": [252.66293334960938, 96.91822814941406, 0.9965274930000305], "3": [326.7532958984375, 114.3800048828125, 0.9199090003967285], "4": [220.4468994140625, 116.08236694335938, 0.8399070501327515], "5": [377.1063232421875, 236.77459716796875, 0.9920166730880737], "6": [179.33045959472656, 217.0940399169922, 0.9926891922950745], "7": [496.0240173339844, 365.1798400878906, 0.8984637260437012], "8": [126.24705505371094, 363.59228515625, 0.8980484008789062], "9": [512.1712646484375, 227.33303833007812, 0.9376015663146973], "10": [181.68539428710938, 415.302978515625, 0.8831672072410583], "11": [340.4613037109375, 480.0, 0.11125631630420685], "12": [212.05958557128906, 480.0, 0.1220472902059555], "13": [377.4957275390625, 405.65313720703125, 0.0017178792040795088], "14": [207.62326049804688, 380.5644836425781, 0.001942180097103119], "15": [420.5746765136719, 427.3335266113281, 0.00022058343165554106], "16": [253.82167053222656, 429.9339599609375, 0.0002440067910356447]}} +{"t": 43.131194, "tracked": true, "track_id": 1, "bbox": [93.68563842773438, 17.974573135375977, 533.24609375, 479.7831115722656], "det_conf": 0.9419126510620117, "mean_kpt_conf": 0.9406819451938976, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7712679727224977, "right_lift": -0.947729646459583, "left_bend": 0.7424869418118342, "right_bend": 0.4102705329816151}, "keypoints": {"0": [277.98724365234375, 118.7784423828125, 0.9989950060844421], "1": [298.33447265625, 95.65203857421875, 0.997252881526947], "2": [252.4875946044922, 98.25364685058594, 0.9963427186012268], "3": [327.3433532714844, 112.20576477050781, 0.9152950644493103], "4": [220.76144409179688, 117.33731079101562, 0.8462256789207458], "5": [379.8634948730469, 236.12466430664062, 0.992281973361969], "6": [178.4852294921875, 216.164306640625, 0.9930577278137207], "7": [492.94183349609375, 373.14312744140625, 0.8931372165679932], "8": [128.45657348632812, 364.76171875, 0.8972286581993103], "9": [510.0486755371094, 230.110595703125, 0.9336047768592834], "10": [188.33786010742188, 406.3156433105469, 0.8840796947479248], "11": [342.6195068359375, 480.0, 0.12654468417167664], "12": [213.10418701171875, 480.0, 0.14112243056297302], "13": [379.83477783203125, 412.5466613769531, 0.001872514490969479], "14": [215.81234741210938, 389.8204650878906, 0.0021927610505372286], "15": [418.918212890625, 429.6400451660156, 0.00022237966186366975], "16": [268.6501770019531, 439.4122009277344, 0.0002513827639631927]}} +{"t": 43.165398, "tracked": true, "track_id": 1, "bbox": [90.06842803955078, 17.12677574157715, 529.3082885742188, 479.9028625488281], "det_conf": 0.9393573999404907, "mean_kpt_conf": 0.943590678951957, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7477251088018788, "right_lift": -0.9162893060636529, "left_bend": 0.7246888416330959, "right_bend": 0.3960524323556645}, "keypoints": {"0": [278.6733093261719, 118.00103759765625, 0.9989458918571472], "1": [297.0848388671875, 95.26625061035156, 0.9967993497848511], "2": [252.38287353515625, 98.76948547363281, 0.9964711666107178], "3": [325.32647705078125, 112.49130249023438, 0.899742603302002], "4": [220.15530395507812, 120.5767822265625, 0.8684177398681641], "5": [377.8984375, 241.31863403320312, 0.9920841455459595], "6": [180.88021850585938, 220.95620727539062, 0.9932669401168823], "7": [486.83441162109375, 363.989013671875, 0.8886551856994629], "8": [120.25209045410156, 359.6591796875, 0.9107037782669067], "9": [506.0622253417969, 226.29922485351562, 0.9331639409065247], "10": [185.1251678466797, 418.7327575683594, 0.9012467265129089], "11": [333.82025146484375, 480.0, 0.1510697305202484], "12": [208.3253936767578, 480.0, 0.17964313924312592], "13": [358.1194763183594, 427.381591796875, 0.002615724690258503], "14": [209.59600830078125, 404.3608093261719, 0.00329515989869833], "15": [385.4446105957031, 433.494384765625, 0.000307172944303602], "16": [251.35354614257812, 448.393310546875, 0.00035778884193859994]}} +{"t": 43.23112, "tracked": true, "track_id": 1, "bbox": [89.91775512695312, 17.313968658447266, 526.1134033203125, 479.7793273925781], "det_conf": 0.9409167766571045, "mean_kpt_conf": 0.9404320879416033, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7646987636527798, "right_lift": -0.9242309185552757, "left_bend": 0.7541117265029877, "right_bend": 0.3879640523272899}, "keypoints": {"0": [277.6278076171875, 118.56265258789062, 0.9988055229187012], "1": [297.0109558105469, 96.14804077148438, 0.9965343475341797], "2": [252.40591430664062, 99.06544494628906, 0.995872437953949], "3": [325.8491516113281, 113.95123291015625, 0.9097610116004944], "4": [221.526611328125, 120.303955078125, 0.8556629419326782], "5": [379.2857971191406, 241.3039093017578, 0.9918215870857239], "6": [179.9943389892578, 220.6222381591797, 0.9927911758422852], "7": [484.2767639160156, 365.89727783203125, 0.880495011806488], "8": [121.06283569335938, 363.2662048339844, 0.8973243236541748], "9": [494.56842041015625, 223.71632385253906, 0.9334030747413635], "10": [187.2717742919922, 424.1778869628906, 0.8922815322875977], "11": [332.5025939941406, 480.0, 0.1357116401195526], "12": [208.05740356445312, 475.519287109375, 0.16009020805358887], "13": [348.06793212890625, 421.702392578125, 0.0030644466169178486], "14": [216.70718383789062, 397.75823974609375, 0.0037832141388207674], "15": [368.763427734375, 440.7867431640625, 0.00036212161649018526], "16": [270.1978759765625, 453.7554016113281, 0.0004200351540930569]}} +{"t": 43.295629, "tracked": true, "track_id": 1, "bbox": [89.50354766845703, 17.840801239013672, 522.4595336914062, 480.0], "det_conf": 0.938696026802063, "mean_kpt_conf": 0.9387211745435541, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7870304769488455, "right_lift": -0.9413820307168751, "left_bend": 0.7737099382077174, "right_bend": 0.3883374623513973}, "keypoints": {"0": [277.548095703125, 118.5372314453125, 0.9987414479255676], "1": [297.415771484375, 96.25970458984375, 0.9959554672241211], "2": [251.931640625, 98.44381713867188, 0.995794415473938], "3": [325.4656066894531, 113.95462036132812, 0.8894654512405396], "4": [218.5592803955078, 118.68528747558594, 0.8696317672729492], "5": [380.85546875, 240.91477966308594, 0.9924033880233765], "6": [175.80426025390625, 220.12718200683594, 0.9931051135063171], "7": [481.85467529296875, 369.764892578125, 0.8788488507270813], "8": [123.60160827636719, 365.80303955078125, 0.8927738070487976], "9": [488.4305114746094, 227.20904541015625, 0.9303390979766846], "10": [188.90997314453125, 420.2435302734375, 0.8888741135597229], "11": [340.5635986328125, 480.0, 0.1527516096830368], "12": [213.91830444335938, 477.7967529296875, 0.17882134020328522], "13": [344.8397216796875, 426.34759521484375, 0.0034649232402443886], "14": [222.6416015625, 402.7261962890625, 0.004162265919148922], "15": [358.76885986328125, 445.3702697753906, 0.00038221594877541065], "16": [287.6718444824219, 456.7086181640625, 0.00043210433796048164]}} +{"t": 43.358559, "tracked": true, "track_id": 1, "bbox": [90.0560302734375, 17.944215774536133, 522.4585571289062, 479.80181884765625], "det_conf": 0.9395631551742554, "mean_kpt_conf": 0.9401658177375793, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7723193339167292, "right_lift": -0.9386396043138551, "left_bend": 0.765218382671782, "right_bend": 0.36223176001600504}, "keypoints": {"0": [277.7615051269531, 119.83575439453125, 0.9989711046218872], "1": [298.100341796875, 98.38958740234375, 0.9971653819084167], "2": [252.63571166992188, 99.57223510742188, 0.9961373209953308], "3": [325.7635498046875, 116.68948364257812, 0.9191791415214539], "4": [220.03492736816406, 119.71054077148438, 0.8465065956115723], "5": [376.774658203125, 237.24014282226562, 0.9916749596595764], "6": [178.2348175048828, 220.22857666015625, 0.993678629398346], "7": [479.85906982421875, 362.57037353515625, 0.8842379450798035], "8": [126.0791015625, 362.169677734375, 0.9039137363433838], "9": [486.3731384277344, 230.4821319580078, 0.9269575476646423], "10": [177.47781372070312, 413.52166748046875, 0.88340163230896], "11": [339.454345703125, 480.0, 0.1424327790737152], "12": [213.9503173828125, 480.0, 0.17114907503128052], "13": [350.37762451171875, 423.078857421875, 0.00198729382827878], "14": [208.13375854492188, 400.3988037109375, 0.0023765719961375], "15": [376.77923583984375, 442.66278076171875, 0.00021650834241881967], "16": [265.72998046875, 448.35382080078125, 0.00024873969960026443]}} +{"t": 43.391955, "tracked": true, "track_id": 1, "bbox": [91.00502014160156, 18.20197105407715, 522.7650146484375, 479.68316650390625], "det_conf": 0.9410285353660583, "mean_kpt_conf": 0.938884821805087, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7938497130477203, "right_lift": -0.9445708492139376, "left_bend": 0.7772606608041237, "right_bend": 0.38751862849953567}, "keypoints": {"0": [277.8522644042969, 118.9051513671875, 0.9989198446273804], "1": [298.16864013671875, 97.39752197265625, 0.9971737861633301], "2": [252.7948760986328, 99.10343933105469, 0.9958770275115967], "3": [326.2725830078125, 116.31982421875, 0.9261757135391235], "4": [221.129638671875, 120.21484375, 0.8365803360939026], "5": [378.619873046875, 238.764892578125, 0.9917352199554443], "6": [178.7266082763672, 219.3509521484375, 0.9935418367385864], "7": [481.2932434082031, 372.7976989746094, 0.8812021017074585], "8": [127.82635498046875, 365.79559326171875, 0.8976496458053589], "9": [487.8260192871094, 231.10809326171875, 0.928320050239563], "10": [183.815185546875, 411.8061828613281, 0.8805574774742126], "11": [341.01177978515625, 480.0, 0.1316986083984375], "12": [215.1280517578125, 479.1170654296875, 0.1570247858762741], "13": [354.2220458984375, 416.897216796875, 0.002189135644584894], "14": [212.39515686035156, 393.15484619140625, 0.002619275124743581], "15": [384.4602966308594, 438.38916015625, 0.0002522480208426714], "16": [275.29962158203125, 445.7969970703125, 0.00029268363141454756]}} +{"t": 43.428858, "tracked": true, "track_id": 1, "bbox": [91.22064208984375, 18.67736053466797, 523.7008056640625, 479.43353271484375], "det_conf": 0.9394301772117615, "mean_kpt_conf": 0.938092361796986, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7867732786547138, "right_lift": -0.9495110893281251, "left_bend": 0.7609092895572745, "right_bend": 0.3854130686012798}, "keypoints": {"0": [278.30047607421875, 120.46559143066406, 0.9988640546798706], "1": [298.7356872558594, 99.05264282226562, 0.9967994689941406], "2": [252.85963439941406, 100.426025390625, 0.9959715008735657], "3": [326.0708923339844, 117.49310302734375, 0.914506196975708], "4": [219.8958740234375, 120.82369995117188, 0.8575664758682251], "5": [377.21087646484375, 239.6365966796875, 0.9920783638954163], "6": [175.56272888183594, 219.7185821533203, 0.993582010269165], "7": [479.90130615234375, 370.5318908691406, 0.8768113255500793], "8": [127.82601928710938, 364.1932373046875, 0.893326461315155], "9": [492.0715637207031, 229.1897430419922, 0.9247180223464966], "10": [183.91824340820312, 409.47015380859375, 0.8747920989990234], "11": [333.7904357910156, 480.0, 0.1389351785182953], "12": [208.0596466064453, 477.7276611328125, 0.16489098966121674], "13": [342.7093811035156, 417.5320739746094, 0.0023636682890355587], "14": [208.13400268554688, 394.3310241699219, 0.0028321687132120132], "15": [362.69720458984375, 436.0545654296875, 0.0002722127246670425], "16": [271.978515625, 444.4283752441406, 0.00031137990299612284]}} +{"t": 43.495337, "tracked": true, "track_id": 1, "bbox": [88.3059310913086, 18.38575553894043, 526.1127319335938, 480.0], "det_conf": 0.9405054450035095, "mean_kpt_conf": 0.939544905315746, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7398141362742325, "right_lift": -0.9125201011189932, "left_bend": 0.7560407897696583, "right_bend": 0.4138311429902647}, "keypoints": {"0": [278.16766357421875, 119.728271484375, 0.9988572597503662], "1": [296.9993591308594, 97.72297668457031, 0.9964712858200073], "2": [252.457275390625, 100.43084716796875, 0.9961328506469727], "3": [324.5166320800781, 116.48872375488281, 0.8986715078353882], "4": [220.06924438476562, 122.79571533203125, 0.8632287979125977], "5": [379.0142822265625, 242.94163513183594, 0.991391658782959], "6": [179.68849182128906, 222.05279541015625, 0.9923071265220642], "7": [490.76971435546875, 365.8263854980469, 0.8749904632568359], "8": [116.79690551757812, 362.35931396484375, 0.8915923237800598], "9": [494.88201904296875, 221.15863037109375, 0.9351813793182373], "10": [183.74371337890625, 417.8497314453125, 0.8961693048477173], "11": [335.5726318359375, 480.0, 0.11396396160125732], "12": [212.07630920410156, 475.93157958984375, 0.13520076870918274], "13": [343.78692626953125, 418.1233215332031, 0.0027327437419444323], "14": [218.06143188476562, 392.1316833496094, 0.003323978977277875], "15": [367.63031005859375, 440.1335144042969, 0.0003262898535467684], "16": [273.6639404296875, 449.2379150390625, 0.00037341416464187205]}} +{"t": 43.557564, "tracked": true, "track_id": 1, "bbox": [88.00017547607422, 19.192609786987305, 528.0794067382812, 479.8332824707031], "det_conf": 0.9376686811447144, "mean_kpt_conf": 0.9402934854680841, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7810178152482953, "right_lift": -0.9391818742988192, "left_bend": 0.7480068771808133, "right_bend": 0.3917336548799737}, "keypoints": {"0": [277.73175048828125, 120.15675354003906, 0.9989558458328247], "1": [298.2710876464844, 98.40415954589844, 0.9971427321434021], "2": [252.48944091796875, 100.33171081542969, 0.9959589838981628], "3": [326.53924560546875, 116.82723999023438, 0.9248237013816833], "4": [220.94586181640625, 121.14096069335938, 0.8442031145095825], "5": [380.2176513671875, 238.1121826171875, 0.9927378296852112], "6": [178.06088256835938, 218.61685180664062, 0.9940035939216614], "7": [487.0673828125, 371.73968505859375, 0.8855327367782593], "8": [124.8216552734375, 364.2149353027344, 0.9018383622169495], "9": [503.9473571777344, 228.3199920654297, 0.9271285533905029], "10": [172.68331909179688, 403.77203369140625, 0.880902886390686], "11": [337.1390686035156, 480.0, 0.1375068724155426], "12": [210.8487091064453, 474.3216552734375, 0.16362129151821136], "13": [346.23382568359375, 414.0559997558594, 0.002149984473362565], "14": [206.44580078125, 390.8271484375, 0.0026012794114649296], "15": [366.0406188964844, 435.28741455078125, 0.00023263868934009224], "16": [262.6521301269531, 444.040283203125, 0.0002693936403375119]}} +{"t": 43.595337, "tracked": true, "track_id": 1, "bbox": [87.1755599975586, 20.37912368774414, 529.9307250976562, 480.0], "det_conf": 0.9353839159011841, "mean_kpt_conf": 0.938859305598519, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7444965908633784, "right_lift": -0.922087154632381, "left_bend": 0.7184628539164775, "right_bend": 0.39995455793372775}, "keypoints": {"0": [276.99554443359375, 120.00386047363281, 0.9988842606544495], "1": [296.31915283203125, 98.16775512695312, 0.996461808681488], "2": [251.17605590820312, 100.17779541015625, 0.9963616728782654], "3": [323.8033447265625, 116.98614501953125, 0.8884128332138062], "4": [218.18299865722656, 121.61137390136719, 0.8726447820663452], "5": [375.7348327636719, 243.58575439453125, 0.9918511509895325], "6": [176.9990234375, 221.347900390625, 0.992188572883606], "7": [486.7661437988281, 367.40118408203125, 0.880652904510498], "8": [117.07398986816406, 364.13507080078125, 0.8910955786705017], "9": [509.456298828125, 220.70578002929688, 0.9308107495307922], "10": [177.90533447265625, 416.5970458984375, 0.888088047504425], "11": [331.6186218261719, 480.0, 0.11949144303798676], "12": [206.98593139648438, 474.6021728515625, 0.13698984682559967], "13": [349.934814453125, 418.311767578125, 0.0025391490198671818], "14": [211.98477172851562, 393.5627746582031, 0.0030246328096836805], "15": [371.9773864746094, 433.0335998535156, 0.0003013888490386307], "16": [259.7195129394531, 443.885009765625, 0.00033590447856113315]}} +{"t": 43.658855, "tracked": true, "track_id": 1, "bbox": [88.63077545166016, 20.021146774291992, 537.903076171875, 480.0], "det_conf": 0.9345256686210632, "mean_kpt_conf": 0.9426079446619208, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7460280234513842, "right_lift": -0.935008345416966, "left_bend": 0.7248015096510113, "right_bend": 0.3721677610744791}, "keypoints": {"0": [277.304931640625, 120.1424560546875, 0.9990678429603577], "1": [297.60430908203125, 98.82510375976562, 0.9974287152290344], "2": [252.369140625, 99.97784423828125, 0.9964324235916138], "3": [325.46710205078125, 117.51235961914062, 0.9231215119361877], "4": [220.77105712890625, 120.07852172851562, 0.8420349359512329], "5": [376.44891357421875, 238.47601318359375, 0.9924387335777283], "6": [180.35459899902344, 217.30152893066406, 0.9938021898269653], "7": [491.57415771484375, 367.4515075683594, 0.8957267999649048], "8": [126.5413818359375, 359.185791015625, 0.910568118095398], "9": [510.67828369140625, 227.68325805664062, 0.9310272932052612], "10": [174.07080078125, 404.7335205078125, 0.8870388269424438], "11": [337.9061279296875, 480.0, 0.14413045346736908], "12": [212.41253662109375, 480.0, 0.16915905475616455], "13": [359.96136474609375, 422.4495849609375, 0.0017535323277115822], "14": [203.96340942382812, 396.37823486328125, 0.002101559191942215], "15": [396.9139709472656, 437.092041015625, 0.00019267891184426844], "16": [253.4405517578125, 440.73663330078125, 0.00022116360196378082]}} +{"t": 43.724524, "tracked": true, "track_id": 1, "bbox": [88.77234649658203, 20.00248146057129, 546.527099609375, 479.93670654296875], "det_conf": 0.9367204308509827, "mean_kpt_conf": 0.9467094161293723, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7344590033401496, "right_lift": -0.9238500887679766, "left_bend": 0.6994601009619803, "right_bend": 0.385767738264061}, "keypoints": {"0": [278.0594482421875, 119.41708374023438, 0.9991438388824463], "1": [297.3546142578125, 98.6787109375, 0.997665286064148], "2": [253.50558471679688, 99.76803588867188, 0.9966999888420105], "3": [324.22564697265625, 117.98825073242188, 0.9236101508140564], "4": [222.37533569335938, 120.5762939453125, 0.8416346311569214], "5": [373.7728271484375, 238.0643768310547, 0.9924310445785522], "6": [181.3843536376953, 215.52642822265625, 0.9937908053398132], "7": [492.64617919921875, 366.7127380371094, 0.9107506275177002], "8": [123.35195922851562, 355.5985412597656, 0.9215270280838013], "9": [520.2819213867188, 229.14306640625, 0.9378867149353027], "10": [171.24354553222656, 400.36175537109375, 0.8986634612083435], "11": [337.9173278808594, 480.0, 0.15181773900985718], "12": [211.31024169921875, 479.02838134765625, 0.17397697269916534], "13": [378.7516784667969, 416.5707092285156, 0.0017189696663990617], "14": [198.39015197753906, 390.7154541015625, 0.002029088791459799], "15": [433.1967468261719, 432.0368957519531, 0.00018813884526025504], "16": [239.4142303466797, 436.1165771484375, 0.00021389203902799636]}} +{"t": 43.789505, "tracked": true, "track_id": 1, "bbox": [86.83329010009766, 20.380586624145508, 554.7012939453125, 480.0], "det_conf": 0.9295620918273926, "mean_kpt_conf": 0.9480817859823053, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.706953479096436, "right_lift": -0.9275912887984946, "left_bend": 0.6906343129048637, "right_bend": 0.39518848456785827}, "keypoints": {"0": [278.0467834472656, 119.64138793945312, 0.9991939663887024], "1": [297.192626953125, 98.85177612304688, 0.9976539015769958], "2": [252.88479614257812, 99.55722045898438, 0.9970322847366333], "3": [323.4498596191406, 118.31111145019531, 0.9122782349586487], "4": [220.06736755371094, 120.52450561523438, 0.8573846817016602], "5": [371.9238586425781, 237.61715698242188, 0.9926244616508484], "6": [179.39686584472656, 219.68972778320312, 0.9940007328987122], "7": [496.6095886230469, 362.24884033203125, 0.9141215085983276], "8": [122.20750427246094, 361.68341064453125, 0.9237757325172424], "9": [521.0851440429688, 232.38522338867188, 0.9386174082756042], "10": [171.04888916015625, 403.8476257324219, 0.9022167325019836], "11": [339.3038330078125, 480.0, 0.14614377915859222], "12": [211.542724609375, 480.0, 0.1650615781545639], "13": [390.7149658203125, 414.5345458984375, 0.001522392500191927], "14": [203.48501586914062, 391.038330078125, 0.001798981218598783], "15": [446.1398010253906, 425.8011779785156, 0.00017109434702433646], "16": [238.3494873046875, 427.2669677734375, 0.0001938764180522412]}} +{"t": 43.856902, "tracked": true, "track_id": 1, "bbox": [86.11819458007812, 20.577449798583984, 564.2854614257812, 479.9903869628906], "det_conf": 0.9295724034309387, "mean_kpt_conf": 0.9463043267076666, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7232342573500316, "right_lift": -0.941844296639649, "left_bend": 0.6935323450289013, "right_bend": 0.37159615408630825}, "keypoints": {"0": [278.6109619140625, 120.04220581054688, 0.9992222785949707], "1": [298.151123046875, 98.58485412597656, 0.9975658655166626], "2": [253.2899627685547, 99.28813171386719, 0.9971796274185181], "3": [323.8080749511719, 117.39976501464844, 0.900235652923584], "4": [219.47950744628906, 119.35037231445312, 0.8680738210678101], "5": [373.3478088378906, 237.45831298828125, 0.9933658242225647], "6": [175.1619873046875, 219.49827575683594, 0.9936386942863464], "7": [499.3534851074219, 369.4178466796875, 0.9186490774154663], "8": [121.89205932617188, 368.797607421875, 0.9121462106704712], "9": [526.3963012695312, 236.335693359375, 0.9402665495872498], "10": [165.93817138671875, 409.5120849609375, 0.8890039920806885], "11": [337.2843322753906, 480.0, 0.12793657183647156], "12": [206.8012237548828, 480.0, 0.1344074010848999], "13": [387.332275390625, 408.8534851074219, 0.001452666474506259], "14": [199.21868896484375, 385.94696044921875, 0.0015748252626508474], "15": [438.29815673828125, 427.7632751464844, 0.00016706182213965803], "16": [239.99021911621094, 430.1224365234375, 0.00017625051259528846]}} +{"t": 43.92215, "tracked": true, "track_id": 1, "bbox": [85.80628967285156, 20.578828811645508, 576.3878784179688, 480.0], "det_conf": 0.9139577746391296, "mean_kpt_conf": 0.9482750459150835, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.707461267593582, "right_lift": -0.9338773801675004, "left_bend": 0.676548326081854, "right_bend": 0.3831601536765933}, "keypoints": {"0": [278.32025146484375, 120.70234680175781, 0.999270498752594], "1": [297.94696044921875, 99.35147094726562, 0.9976416826248169], "2": [253.21783447265625, 99.58982849121094, 0.9973182082176208], "3": [323.9994812011719, 118.39102172851562, 0.8974409699440002], "4": [219.46878051757812, 119.03843688964844, 0.8673020601272583], "5": [372.07354736328125, 240.1171112060547, 0.9933742880821228], "6": [177.5001983642578, 219.5062713623047, 0.9938608407974243], "7": [501.5018615722656, 369.67529296875, 0.9206233024597168], "8": [121.86262512207031, 364.8072509765625, 0.9199063777923584], "9": [532.7169189453125, 237.11001586914062, 0.9431251883506775], "10": [166.99424743652344, 405.4206237792969, 0.9011620879173279], "11": [337.82073974609375, 480.0, 0.13359123468399048], "12": [208.6996612548828, 480.0, 0.14289167523384094], "13": [394.61566162109375, 411.0670471191406, 0.0014124539447948337], "14": [203.81527709960938, 386.57470703125, 0.0015851816860958934], "15": [453.0743103027344, 424.0118713378906, 0.00015741238894406706], "16": [241.37832641601562, 424.8692321777344, 0.00017027878493536264]}} +{"t": 43.985489, "tracked": true, "track_id": 1, "bbox": [85.76494598388672, 21.335119247436523, 585.8359375, 480.0], "det_conf": 0.9131858348846436, "mean_kpt_conf": 0.9484291293404319, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7138973092588253, "right_lift": -0.9355707253023956, "left_bend": 0.6715405186321076, "right_bend": 0.3536467558415219}, "keypoints": {"0": [278.6057434082031, 120.66224670410156, 0.9992839694023132], "1": [298.45318603515625, 99.00425720214844, 0.9977279305458069], "2": [253.64083862304688, 99.50119018554688, 0.9972772002220154], "3": [324.97412109375, 117.60137939453125, 0.9028130769729614], "4": [220.38851928710938, 118.66104125976562, 0.8610566258430481], "5": [373.31939697265625, 239.42108154296875, 0.9939135909080505], "6": [177.79725646972656, 218.44723510742188, 0.9937899708747864], "7": [502.84283447265625, 371.46875, 0.9273946285247803], "8": [122.51290893554688, 364.9118347167969, 0.9189761281013489], "9": [537.5082397460938, 239.1025390625, 0.9446951746940613], "10": [161.73794555664062, 407.00946044921875, 0.8957921266555786], "11": [335.2642517089844, 480.0, 0.14059263467788696], "12": [204.9016876220703, 480.0, 0.14415909349918365], "13": [395.95343017578125, 410.207275390625, 0.0014182153390720487], "14": [198.6372528076172, 385.941650390625, 0.0015304062981158495], "15": [453.7840881347656, 423.19384765625, 0.00015104423800949007], "16": [232.76815795898438, 425.49163818359375, 0.00015887296467553824]}} +{"t": 44.019757, "tracked": true, "track_id": 1, "bbox": [84.77598571777344, 21.54625701904297, 586.6588134765625, 479.7843933105469], "det_conf": 0.9126613140106201, "mean_kpt_conf": 0.9498242031444203, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7111829817496848, "right_lift": -0.9403299396818904, "left_bend": 0.652817758309946, "right_bend": 0.36866288528515306}, "keypoints": {"0": [279.2550964355469, 120.24388122558594, 0.999285876750946], "1": [298.35955810546875, 99.4708251953125, 0.9975957274436951], "2": [254.35585021972656, 99.72927856445312, 0.997310996055603], "3": [323.3435974121094, 118.70053100585938, 0.8886051774024963], "4": [220.7303924560547, 119.64767456054688, 0.869551420211792], "5": [368.3492431640625, 237.56280517578125, 0.9942839741706848], "6": [178.21682739257812, 219.0249481201172, 0.9938952326774597], "7": [497.618896484375, 368.33587646484375, 0.9376968741416931], "8": [124.48977661132812, 367.50128173828125, 0.924596905708313], "9": [538.2272338867188, 242.0378875732422, 0.9468269944190979], "10": [164.9016876220703, 405.8958740234375, 0.898417055606842], "11": [333.24932861328125, 480.0, 0.1667790710926056], "12": [205.28964233398438, 480.0, 0.1648261547088623], "13": [402.4484558105469, 412.4557189941406, 0.0014915426727384329], "14": [202.17257690429688, 390.8475341796875, 0.0015607657842338085], "15": [465.58026123046875, 423.43701171875, 0.00015263525710906833], "16": [233.1512451171875, 426.13525390625, 0.00015613682626280934]}} +{"t": 44.08505, "tracked": true, "track_id": 1, "bbox": [86.6384048461914, 22.085786819458008, 585.9902954101562, 479.5765075683594], "det_conf": 0.9200501441955566, "mean_kpt_conf": 0.9506747343323447, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7142131056949126, "right_lift": -0.9287447628551523, "left_bend": 0.6424302172547321, "right_bend": 0.3803218529796981}, "keypoints": {"0": [280.10260009765625, 120.255126953125, 0.9992944002151489], "1": [299.5137939453125, 99.32965087890625, 0.9977924823760986], "2": [255.68939208984375, 99.38394165039062, 0.9971115589141846], "3": [325.51776123046875, 118.2935791015625, 0.9040772318840027], "4": [223.2698974609375, 118.30075073242188, 0.8538967967033386], "5": [370.1839599609375, 239.304443359375, 0.9944818019866943], "6": [181.428466796875, 218.24960327148438, 0.9942283630371094], "7": [498.3734130859375, 370.110107421875, 0.9391868114471436], "8": [122.758056640625, 365.2334899902344, 0.9277967810630798], "9": [544.8832397460938, 241.91697692871094, 0.9478501081466675], "10": [165.82681274414062, 405.8223876953125, 0.9017057418823242], "11": [337.9157409667969, 480.0, 0.16709737479686737], "12": [211.0274658203125, 480.0, 0.16666632890701294], "13": [407.58941650390625, 413.1358642578125, 0.0014158895937725902], "14": [210.18179321289062, 390.61334228515625, 0.0015054868999868631], "15": [474.421875, 418.80450439453125, 0.00014658915461041033], "16": [242.68215942382812, 422.01898193359375, 0.0001535070623503998]}} +{"t": 44.154593, "tracked": true, "track_id": 1, "bbox": [87.1744155883789, 21.949743270874023, 587.734619140625, 479.30279541015625], "det_conf": 0.914546549320221, "mean_kpt_conf": 0.9518427523699674, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7098258664378504, "right_lift": -0.919792077501581, "left_bend": 0.6442595612680282, "right_bend": 0.39786386148135344}, "keypoints": {"0": [280.44085693359375, 121.40997314453125, 0.9993475079536438], "1": [299.6922607421875, 100.95938110351562, 0.9978012442588806], "2": [256.5721740722656, 99.98802185058594, 0.9972623586654663], "3": [325.1920166015625, 120.48974609375, 0.8956562280654907], "4": [223.85336303710938, 118.11323547363281, 0.8526562452316284], "5": [369.722900390625, 243.74021911621094, 0.9947130084037781], "6": [181.38784790039062, 217.6923370361328, 0.9942231774330139], "7": [499.0197448730469, 374.0372314453125, 0.9429534077644348], "8": [120.15731811523438, 361.2154846191406, 0.9323809146881104], "9": [544.9974365234375, 242.40707397460938, 0.9518743753433228], "10": [164.58001708984375, 400.50189208984375, 0.9114018082618713], "11": [334.7821044921875, 480.0, 0.1638636738061905], "12": [206.87368774414062, 480.0, 0.16242150962352753], "13": [408.7204284667969, 412.577392578125, 0.0013298379490152001], "14": [204.1380615234375, 386.70111083984375, 0.001410476746968925], "15": [479.092041015625, 417.269775390625, 0.0001343155890936032], "16": [232.22247314453125, 417.59124755859375, 0.0001395805593347177]}} +{"t": 44.21826, "tracked": true, "track_id": 1, "bbox": [88.38017272949219, 21.872900009155273, 591.747802734375, 479.227294921875], "det_conf": 0.9171434640884399, "mean_kpt_conf": 0.9511365294456482, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7067936218562012, "right_lift": -0.9180770231565653, "left_bend": 0.6347542980950276, "right_bend": 0.38553587587847676}, "keypoints": {"0": [282.1369323730469, 121.42538452148438, 0.9993239641189575], "1": [300.7769470214844, 100.78854370117188, 0.9977789521217346], "2": [257.86871337890625, 100.46929931640625, 0.9972033500671387], "3": [325.872802734375, 119.86703491210938, 0.897031307220459], "4": [225.2376708984375, 119.19825744628906, 0.8543368577957153], "5": [369.3516540527344, 243.49636840820312, 0.9943501353263855], "6": [184.24578857421875, 217.76515197753906, 0.9938020706176758], "7": [498.77789306640625, 372.80804443359375, 0.9405511021614075], "8": [124.013916015625, 357.263671875, 0.9281789064407349], "9": [545.6836547851562, 248.7989959716797, 0.9511798024177551], "10": [169.16734313964844, 400.8023681640625, 0.9087653756141663], "11": [333.7007751464844, 480.0, 0.163793683052063], "12": [208.6707763671875, 480.0, 0.16169153153896332], "13": [406.9779968261719, 413.93243408203125, 0.0013640045654028654], "14": [209.94921875, 389.0037841796875, 0.0014459766680374742], "15": [478.8263244628906, 418.6820068359375, 0.00013970080181024969], "16": [241.84149169921875, 421.2772216796875, 0.00014533223293256015]}} +{"t": 44.284975, "tracked": true, "track_id": 1, "bbox": [90.8933334350586, 22.81162452697754, 601.69384765625, 479.2313537597656], "det_conf": 0.9120165705680847, "mean_kpt_conf": 0.9551083824851296, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7045518492376599, "right_lift": -0.9212191379586161, "left_bend": 0.6121371756608102, "right_bend": 0.4067018466375195}, "keypoints": {"0": [283.0541076660156, 120.83575439453125, 0.9993809461593628], "1": [301.7471008300781, 101.2088623046875, 0.9978253841400146], "2": [259.4022216796875, 99.79541015625, 0.9971691966056824], "3": [326.5243835449219, 121.17988586425781, 0.8893967866897583], "4": [226.5238494873047, 117.837890625, 0.8498764038085938], "5": [370.3067932128906, 241.5028533935547, 0.9958123564720154], "6": [184.16897583007812, 215.8321990966797, 0.9947816729545593], "7": [500.8870849609375, 371.14459228515625, 0.9587311744689941], "8": [123.68037414550781, 359.06341552734375, 0.9439546465873718], "9": [554.2886962890625, 254.55191040039062, 0.9584371447563171], "10": [176.12344360351562, 402.58502197265625, 0.9208264946937561], "11": [341.9661865234375, 480.0, 0.2101423293352127], "12": [214.64730834960938, 480.0, 0.19727270305156708], "13": [428.23956298828125, 408.1173400878906, 0.0014200913719832897], "14": [221.46090698242188, 384.615234375, 0.0014697926817461848], "15": [502.0837707519531, 411.18121337890625, 0.00013545619731303304], "16": [247.98092651367188, 411.98565673828125, 0.0001392583071719855]}} +{"t": 44.349049, "tracked": true, "track_id": 1, "bbox": [90.11497497558594, 24.436670303344727, 612.2454223632812, 479.4091796875], "det_conf": 0.909702718257904, "mean_kpt_conf": 0.9487173611467535, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6408197637423565, "right_lift": -0.9134415496464762, "left_bend": 0.5335887145314403, "right_bend": 0.4108975545581115}, "keypoints": {"0": [284.863037109375, 120.19346618652344, 0.9991887211799622], "1": [302.885009765625, 100.88145446777344, 0.9968926310539246], "2": [260.484619140625, 99.2003173828125, 0.9971402883529663], "3": [326.91265869140625, 122.36810302734375, 0.8437994718551636], "4": [226.94903564453125, 118.79716491699219, 0.8863648176193237], "5": [364.7718505859375, 247.53497314453125, 0.9945207834243774], "6": [187.77032470703125, 221.12173461914062, 0.9920454025268555], "7": [505.8966064453125, 365.3369140625, 0.9440183043479919], "8": [125.55384826660156, 360.7662353515625, 0.9188612699508667], "9": [576.9517822265625, 259.2240295410156, 0.9541159272193909], "10": [190.28334045410156, 415.1829833984375, 0.9089433550834656], "11": [325.4856872558594, 480.0, 0.1445537656545639], "12": [206.8832244873047, 477.23895263671875, 0.1300935298204422], "13": [412.2869567871094, 401.08599853515625, 0.0017343516228720546], "14": [232.37591552734375, 378.46246337890625, 0.0018193429568782449], "15": [475.31317138671875, 398.43414306640625, 0.0002107982145389542], "16": [250.51541137695312, 400.97613525390625, 0.0002115736569976434]}} +{"t": 44.415429, "tracked": true, "track_id": 1, "bbox": [92.85613250732422, 24.641775131225586, 615.6234130859375, 479.62225341796875], "det_conf": 0.9177815914154053, "mean_kpt_conf": 0.9536133083430204, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6913023826285527, "right_lift": -0.8908430378061646, "left_bend": 0.5236353047875197, "right_bend": 0.4227030642245305}, "keypoints": {"0": [287.8857421875, 120.21267700195312, 0.9992547631263733], "1": [304.410400390625, 100.6129150390625, 0.9975208640098572], "2": [262.53436279296875, 100.66168212890625, 0.9968457818031311], "3": [329.0634460449219, 121.8626708984375, 0.8813612461090088], "4": [229.77285766601562, 122.34159851074219, 0.8648956418037415], "5": [372.7032775878906, 249.8421630859375, 0.995233952999115], "6": [192.42227172851562, 221.28082275390625, 0.9937102794647217], "7": [503.51849365234375, 374.9974060058594, 0.9510031938552856], "8": [123.81105041503906, 355.81817626953125, 0.937462329864502], "9": [587.0899658203125, 273.5411376953125, 0.9526471495628357], "10": [188.15194702148438, 411.6190185546875, 0.9198111891746521], "11": [345.53167724609375, 480.0, 0.17975425720214844], "12": [223.97911071777344, 480.0, 0.171219602227211], "13": [431.92120361328125, 406.54327392578125, 0.0015780448447912931], "14": [241.0194549560547, 386.5477600097656, 0.0017573174554854631], "15": [496.9010314941406, 395.2032775878906, 0.0001752549287630245], "16": [258.386474609375, 407.63165283203125, 0.00018842393183149397]}} +{"t": 44.449649, "tracked": true, "track_id": 1, "bbox": [92.60618591308594, 25.183874130249023, 626.728759765625, 479.72564697265625], "det_conf": 0.9189683794975281, "mean_kpt_conf": 0.9536238962953741, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6567892636039859, "right_lift": -0.8961300955210183, "left_bend": 0.4611095202421306, "right_bend": 0.42073734791397965}, "keypoints": {"0": [289.43475341796875, 120.73329162597656, 0.9993059635162354], "1": [306.0010986328125, 101.21165466308594, 0.997330904006958], "2": [264.1077880859375, 100.26048278808594, 0.997246503829956], "3": [329.2120056152344, 121.80445861816406, 0.8451377153396606], "4": [228.9417724609375, 120.32705688476562, 0.888096809387207], "5": [372.1490478515625, 247.0902099609375, 0.9957367181777954], "6": [187.83370971679688, 221.802978515625, 0.9934998750686646], "7": [509.60546875, 366.81304931640625, 0.9587295055389404], "8": [122.63272094726562, 353.460693359375, 0.9369139075279236], "9": [592.4853515625, 292.33355712890625, 0.9560194611549377], "10": [185.77743530273438, 407.60772705078125, 0.9218454957008362], "11": [341.4757080078125, 480.0, 0.1887529343366623], "12": [216.12118530273438, 480.0, 0.16670460999011993], "13": [437.6004638671875, 399.59576416015625, 0.001543015823699534], "14": [236.2325439453125, 382.9014587402344, 0.00159935699775815], "15": [499.0611267089844, 394.0350036621094, 0.00016773812239989638], "16": [248.67938232421875, 402.71343994140625, 0.00016773189418017864]}} +{"t": 44.48324, "tracked": true, "track_id": 1, "bbox": [93.33162689208984, 25.21167755126953, 632.6687622070312, 479.7823486328125], "det_conf": 0.9201284646987915, "mean_kpt_conf": 0.9548517519777472, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6860980438281804, "right_lift": -0.8947526653377723, "left_bend": 0.4863272253879614, "right_bend": 0.41652677172129093}, "keypoints": {"0": [290.19219970703125, 121.12013244628906, 0.9993255138397217], "1": [307.00238037109375, 100.97770690917969, 0.997664213180542], "2": [265.1393127441406, 100.67935180664062, 0.9970145225524902], "3": [331.4674987792969, 121.05711364746094, 0.8754757046699524], "4": [231.3978271484375, 120.55905151367188, 0.8654082417488098], "5": [375.33221435546875, 249.10073852539062, 0.9959293007850647], "6": [190.52870178222656, 220.88946533203125, 0.993678867816925], "7": [510.1175842285156, 376.2138977050781, 0.960942268371582], "8": [123.38278198242188, 355.4261779785156, 0.9387292861938477], "9": [594.4920654296875, 294.11492919921875, 0.95793616771698], "10": [186.59161376953125, 411.444091796875, 0.921265184879303], "11": [342.7019958496094, 480.0, 0.19104458391666412], "12": [216.61834716796875, 480.0, 0.16839343309402466], "13": [437.78106689453125, 403.43865966796875, 0.001492753392085433], "14": [232.1319580078125, 385.08441162109375, 0.001534496434032917], "15": [504.744384765625, 396.77362060546875, 0.00015642963990103453], "16": [246.7867431640625, 407.97625732421875, 0.00015757157234475017]}} +{"t": 44.546711, "tracked": true, "track_id": 1, "bbox": [93.90035247802734, 25.018369674682617, 636.2605590820312, 479.8641662597656], "det_conf": 0.9201835989952087, "mean_kpt_conf": 0.957192827354778, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.693839249552044, "right_lift": -0.8800618523554868, "left_bend": 0.4165286605626648, "right_bend": 0.41769993953749657}, "keypoints": {"0": [289.7162780761719, 119.70671081542969, 0.9993177652359009], "1": [307.1224365234375, 100.52076721191406, 0.9980315566062927], "2": [265.02252197265625, 100.5408935546875, 0.9967504739761353], "3": [333.754150390625, 123.09907531738281, 0.9129415154457092], "4": [233.3348846435547, 123.60745239257812, 0.8472976684570312], "5": [379.7914123535156, 246.83055114746094, 0.9958831071853638], "6": [190.87643432617188, 223.75526428222656, 0.9944499731063843], "7": [506.9102783203125, 369.30853271484375, 0.9624731540679932], "8": [121.14654541015625, 352.9864807128906, 0.9474563598632812], "9": [588.4598999023438, 320.2303466796875, 0.9512727856636047], "10": [183.7594757080078, 411.7103271484375, 0.9232467412948608], "11": [345.8941955566406, 480.0, 0.22263570129871368], "12": [216.10910034179688, 479.2641296386719, 0.20539793372154236], "13": [451.6887512207031, 395.0274353027344, 0.0017452925676479936], "14": [235.47276306152344, 382.57305908203125, 0.0019424480851739645], "15": [514.1454467773438, 401.0887451171875, 0.00019700346456374973], "16": [245.19119262695312, 414.64935302734375, 0.00021428681793622673]}} +{"t": 44.583009, "tracked": true, "track_id": 1, "bbox": [91.80628204345703, 24.08734703063965, 638.5853881835938, 479.9540100097656], "det_conf": 0.9159688949584961, "mean_kpt_conf": 0.9558666998689825, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6969523899635311, "right_lift": -0.8672606703198222, "left_bend": 0.32846703314015, "right_bend": 0.42155057866426715}, "keypoints": {"0": [290.8207092285156, 119.63059997558594, 0.9992927312850952], "1": [308.3638000488281, 100.64968872070312, 0.9979901313781738], "2": [265.97802734375, 100.27351379394531, 0.9968122839927673], "3": [334.6287536621094, 122.78619384765625, 0.9075545072555542], "4": [233.39869689941406, 122.62843322753906, 0.8591932654380798], "5": [378.69732666015625, 244.1887969970703, 0.9953304529190063], "6": [190.5635986328125, 223.01010131835938, 0.9943209886550903], "7": [501.180419921875, 363.22772216796875, 0.958563506603241], "8": [118.87879943847656, 347.8847961425781, 0.9466804265975952], "9": [585.8468627929688, 340.6347351074219, 0.9394661784172058], "10": [180.09490966796875, 406.9572448730469, 0.9193292260169983], "11": [347.5127868652344, 480.0, 0.21740305423736572], "12": [217.9493408203125, 479.3001708984375, 0.20646892488002777], "13": [452.3042297363281, 395.04736328125, 0.0016092285513877869], "14": [235.2166748046875, 385.6809997558594, 0.0018320472445338964], "15": [512.5321044921875, 402.09552001953125, 0.00019220403919462115], "16": [243.3814697265625, 415.2377014160156, 0.00021103792823851109]}} +{"t": 44.644215, "tracked": true, "track_id": 1, "bbox": [88.57855987548828, 23.200542449951172, 630.3682250976562, 480.0], "det_conf": 0.9037339091300964, "mean_kpt_conf": 0.93597642400048, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7653251906283177, "right_lift": -0.869796813997353, "left_bend": 0.2255359847153485, "right_bend": 0.45595013093946674}, "keypoints": {"0": [292.071533203125, 116.61021423339844, 0.9991331696510315], "1": [310.5599670410156, 99.51942443847656, 0.9978232383728027], "2": [267.4378662109375, 97.35690307617188, 0.9967239499092102], "3": [336.713623046875, 125.89324951171875, 0.9068498611450195], "4": [233.86721801757812, 122.19686889648438, 0.8736666440963745], "5": [380.640869140625, 247.39707946777344, 0.9926320314407349], "6": [187.1172332763672, 226.37203979492188, 0.9925975799560547], "7": [486.77935791015625, 373.60113525390625, 0.9178528785705566], "8": [113.62364196777344, 355.9285583496094, 0.9126460552215576], "9": [567.6427612304688, 386.90020751953125, 0.8485523462295532], "10": [181.69500732421875, 408.1501159667969, 0.857262909412384], "11": [353.8043212890625, 469.8815002441406, 0.1537369191646576], "12": [221.46258544921875, 469.87353515625, 0.15606237947940826], "13": [462.48748779296875, 399.67669677734375, 0.001431146403774619], "14": [248.01451110839844, 394.146240234375, 0.0017683455953374505], "15": [514.808837890625, 419.34173583984375, 0.00021393464703578502], "16": [259.1981506347656, 430.5473937988281, 0.00024920282885432243]}} +{"t": 44.711636, "tracked": true, "track_id": 1, "bbox": [82.21516418457031, 22.749439239501953, 632.2379150390625, 480.0], "det_conf": 0.9046647548675537, "mean_kpt_conf": 0.9318928501822732, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7821813931000791, "right_lift": -0.8770559549587781, "left_bend": 0.11446131487004689, "right_bend": 0.41905002990520185}, "keypoints": {"0": [292.67584228515625, 118.76161193847656, 0.9991945624351501], "1": [311.739501953125, 99.15760803222656, 0.9980071187019348], "2": [268.23651123046875, 98.23806762695312, 0.9969435334205627], "3": [338.382568359375, 121.01640319824219, 0.911226212978363], "4": [234.84896850585938, 119.47015380859375, 0.8748275637626648], "5": [384.3464660644531, 242.95697021484375, 0.9931486248970032], "6": [185.26739501953125, 223.95632934570312, 0.9923266768455505], "7": [491.48187255859375, 377.4553527832031, 0.921147882938385], "8": [113.19007873535156, 355.549560546875, 0.9025256633758545], "9": [571.4060668945312, 425.2088928222656, 0.8252277970314026], "10": [170.5099334716797, 409.5306091308594, 0.8362457156181335], "11": [349.64202880859375, 463.8548278808594, 0.13951118290424347], "12": [213.79539489746094, 464.00909423828125, 0.13366647064685822], "13": [464.038330078125, 391.5496826171875, 0.0014832590240985155], "14": [241.74368286132812, 389.20294189453125, 0.0017327566165477037], "15": [513.3252563476562, 424.20123291015625, 0.00023974171199370176], "16": [256.1446533203125, 437.56463623046875, 0.00026644993340596557]}} +{"t": 44.776447, "tracked": true, "track_id": 1, "bbox": [73.6685562133789, 20.140594482421875, 616.9752197265625, 480.0], "det_conf": 0.8884975910186768, "mean_kpt_conf": 0.9318636872551658, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8123731584846879, "right_lift": -0.8606215512005473, "left_bend": 0.022507900009375754, "right_bend": 0.419522106118262}, "keypoints": {"0": [291.7856140136719, 117.54637145996094, 0.9991777539253235], "1": [312.36981201171875, 98.89653015136719, 0.9979656934738159], "2": [267.75128173828125, 96.29861450195312, 0.9971393346786499], "3": [339.17626953125, 122.13861083984375, 0.9143089056015015], "4": [233.66818237304688, 116.920166015625, 0.8895707726478577], "5": [381.5245361328125, 243.106201171875, 0.9934563040733337], "6": [179.83253479003906, 219.2121124267578, 0.9925258159637451], "7": [481.7276306152344, 382.69976806640625, 0.9256170392036438], "8": [104.26631164550781, 346.91864013671875, 0.9062831997871399], "9": [556.4234619140625, 472.59796142578125, 0.8002085089683533], "10": [158.43019104003906, 401.2711181640625, 0.8342472314834595], "11": [332.8034973144531, 465.0298767089844, 0.15062953531742096], "12": [194.4557342529297, 461.83355712890625, 0.14276790618896484], "13": [449.804443359375, 390.722900390625, 0.0016377415740862489], "14": [219.6271209716797, 386.86883544921875, 0.0018819441320374608], "15": [489.8016357421875, 430.9085693359375, 0.00029381507192738354], "16": [224.22235107421875, 438.2332763671875, 0.0003168595430906862]}} +{"t": 44.845927, "tracked": true, "track_id": 1, "bbox": [73.21692657470703, 20.42652702331543, 581.3204345703125, 480.0], "det_conf": 0.8630493879318237, "mean_kpt_conf": 0.9264208782802928, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8680601248758881, "right_lift": -0.8725508981283886, "left_bend": 0.016428206593480224, "right_bend": 0.4217135824815983}, "keypoints": {"0": [291.35638427734375, 115.74101257324219, 0.99907386302948], "1": [310.3319091796875, 98.94541931152344, 0.9974763989448547], "2": [268.404541015625, 94.7530517578125, 0.9971244931221008], "3": [333.93780517578125, 123.333251953125, 0.9079540371894836], "4": [233.08157348632812, 115.17059326171875, 0.8963300585746765], "5": [383.30462646484375, 247.974609375, 0.992377758026123], "6": [175.35540771484375, 217.5313720703125, 0.9939013719558716], "7": [469.1465148925781, 398.06939697265625, 0.8930253982543945], "8": [103.01690673828125, 346.735107421875, 0.9160731434822083], "9": [509.8257141113281, 478.5693359375, 0.7559496164321899], "10": [164.53256225585938, 404.7757568359375, 0.8413435220718384], "11": [337.2489318847656, 467.2221984863281, 0.1556025743484497], "12": [196.26626586914062, 459.44061279296875, 0.17377415299415588], "13": [428.8494567871094, 406.38641357421875, 0.0017360943602398038], "14": [209.15402221679688, 394.5264587402344, 0.002314082346856594], "15": [449.86285400390625, 445.98150634765625, 0.0002917366800829768], "16": [213.26318359375, 445.0135192871094, 0.00035247340565547347]}} +{"t": 44.90852, "tracked": true, "track_id": 1, "bbox": [70.89324951171875, 19.965513229370117, 539.4828491210938, 479.9471130371094], "det_conf": 0.85739666223526, "mean_kpt_conf": 0.9348519173535433, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9154544006889823, "right_lift": -0.8674930501241134, "left_bend": 0.028205719941812757, "right_bend": 0.42814613391591494}, "keypoints": {"0": [290.3515319824219, 115.24180603027344, 0.9990259408950806], "1": [308.76025390625, 97.48329162597656, 0.9971622824668884], "2": [267.069580078125, 94.18531799316406, 0.9970882534980774], "3": [332.068115234375, 119.63450622558594, 0.8974351286888123], "4": [231.41372680664062, 113.66452026367188, 0.9093979001045227], "5": [379.9488525390625, 246.6165313720703, 0.9921892881393433], "6": [172.45053100585938, 219.2996368408203, 0.9949461817741394], "7": [446.59869384765625, 398.2358093261719, 0.8956317901611328], "8": [98.12533569335938, 348.9140319824219, 0.9316339492797852], "9": [472.9522705078125, 476.30657958984375, 0.789482593536377], "10": [156.50621032714844, 402.9092712402344, 0.8793777823448181], "11": [333.82421875, 475.2682800292969, 0.16855138540267944], "12": [193.25001525878906, 468.5547180175781, 0.20180435478687286], "13": [411.0619812011719, 415.434326171875, 0.0017206758493557572], "14": [196.3739776611328, 406.8251953125, 0.002339801983907819], "15": [417.4784240722656, 447.7240295410156, 0.00025786724290810525], "16": [196.35000610351562, 451.06597900390625, 0.00031230514287017286]}} +{"t": 44.972599, "tracked": true, "track_id": 1, "bbox": [63.691890716552734, 18.18166160583496, 509.08282470703125, 479.7746887207031], "det_conf": 0.9320847392082214, "mean_kpt_conf": 0.9223710732026533, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9455032579458157, "right_lift": -0.8729406256176883, "left_bend": 0.08046073453429232, "right_bend": 0.45532107337295996}, "keypoints": {"0": [286.82305908203125, 115.92622375488281, 0.9988584518432617], "1": [306.328369140625, 97.64060974121094, 0.9966238737106323], "2": [264.214111328125, 93.41561889648438, 0.9971195459365845], "3": [329.5141906738281, 119.37828063964844, 0.895140528678894], "4": [227.51937866210938, 110.69242858886719, 0.9157671332359314], "5": [379.19903564453125, 252.0821533203125, 0.9883686304092407], "6": [162.14312744140625, 218.7286376953125, 0.9954349398612976], "7": [434.1188659667969, 411.5565490722656, 0.8083434700965881], "8": [87.99044799804688, 351.42108154296875, 0.925787627696991], "9": [438.3283996582031, 464.80889892578125, 0.7423011064529419], "10": [158.14334106445312, 404.747314453125, 0.8823364973068237], "11": [327.95904541015625, 474.1604309082031, 0.12448392063379288], "12": [185.15997314453125, 463.7349853515625, 0.18585464358329773], "13": [374.2230224609375, 421.8053283691406, 0.0019174333428964019], "14": [184.70266723632812, 406.8793029785156, 0.0031586752738803625], "15": [363.912353515625, 457.145263671875, 0.00030305140535347164], "16": [200.76116943359375, 456.9013366699219, 0.0004223115392960608]}} +{"t": 45.008868, "tracked": true, "track_id": 1, "bbox": [60.11435317993164, 17.802539825439453, 504.814208984375, 479.7375183105469], "det_conf": 0.9249436259269714, "mean_kpt_conf": 0.9293307282707908, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9289467868900595, "right_lift": -0.8553183883315394, "left_bend": 0.03603687913722016, "right_bend": 0.463540487303456}, "keypoints": {"0": [285.3990783691406, 115.608154296875, 0.9989830851554871], "1": [305.0028991699219, 97.02336120605469, 0.9969544410705566], "2": [262.57208251953125, 92.7857666015625, 0.9973600506782532], "3": [328.41082763671875, 118.18611145019531, 0.889330267906189], "4": [225.84042358398438, 109.37040710449219, 0.9175194501876831], "5": [374.0954895019531, 247.43093872070312, 0.9885883331298828], "6": [163.4776153564453, 214.9856414794922, 0.9952398538589478], "7": [435.4937438964844, 401.4927062988281, 0.837052583694458], "8": [83.650634765625, 346.7693176269531, 0.93460613489151], "9": [452.165771484375, 462.6781005859375, 0.7708861827850342], "10": [156.23828125, 403.00872802734375, 0.896117627620697], "11": [322.6131591796875, 468.82513427734375, 0.12984701991081238], "12": [181.70578002929688, 458.9057922363281, 0.18783818185329437], "13": [375.4154357910156, 414.3216552734375, 0.0019263230497017503], "14": [173.05780029296875, 400.2982177734375, 0.003083085408434272], "15": [375.3173522949219, 454.46356201171875, 0.00030408636666834354], "16": [175.96878051757812, 454.13018798828125, 0.0004115588089916855]}} +{"t": 45.074353, "tracked": true, "track_id": 1, "bbox": [55.14910888671875, 16.854753494262695, 484.919921875, 479.6424560546875], "det_conf": 0.9297512173652649, "mean_kpt_conf": 0.9250725616108287, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9505564809230013, "right_lift": -0.8461268453540502, "left_bend": 0.1843232473692622, "right_bend": 0.4946216956218474}, "keypoints": {"0": [280.921875, 114.88226318359375, 0.9990531802177429], "1": [301.89385986328125, 96.32192993164062, 0.9971199035644531], "2": [257.21600341796875, 92.12210083007812, 0.9974930286407471], "3": [327.70367431640625, 120.04991149902344, 0.8942769765853882], "4": [218.84585571289062, 111.57856750488281, 0.9114216566085815], "5": [377.3419189453125, 251.62808227539062, 0.9874552488327026], "6": [159.47308349609375, 220.43795776367188, 0.9963353872299194], "7": [428.54534912109375, 408.35479736328125, 0.7838113307952881], "8": [75.31587219238281, 354.04046630859375, 0.9433209300041199], "9": [417.66015625, 448.7371826171875, 0.7544903755187988], "10": [153.2308349609375, 404.9784851074219, 0.9110201597213745], "11": [331.19683837890625, 475.8758239746094, 0.151031956076622], "12": [188.419921875, 464.95843505859375, 0.25094035267829895], "13": [352.2665710449219, 434.2369384765625, 0.002224217401817441], "14": [175.85980224609375, 417.16046142578125, 0.004166026599705219], "15": [333.9884033203125, 470.1502685546875, 0.00030384695855900645], "16": [181.0281219482422, 466.97650146484375, 0.0004672509676311165]}} +{"t": 45.139363, "tracked": true, "track_id": 1, "bbox": [50.0912971496582, 15.726622581481934, 475.6571960449219, 479.5640869140625], "det_conf": 0.9324536919593811, "mean_kpt_conf": 0.9184939969669689, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9570857986315563, "right_lift": -0.8531909774316042, "left_bend": 0.13399608407912295, "right_bend": 0.5112645134299855}, "keypoints": {"0": [278.4141540527344, 115.06698608398438, 0.9989722967147827], "1": [299.41595458984375, 95.9146728515625, 0.9969115853309631], "2": [254.64170837402344, 91.45751953125, 0.9973959922790527], "3": [324.79193115234375, 118.38331604003906, 0.881750762462616], "4": [215.5965118408203, 109.19676208496094, 0.917970597743988], "5": [374.86505126953125, 249.46011352539062, 0.986920952796936], "6": [152.1838836669922, 220.1722412109375, 0.995831310749054], "7": [421.92755126953125, 404.88494873046875, 0.770920991897583], "8": [68.92173767089844, 356.3660583496094, 0.9324932098388672], "9": [415.86212158203125, 452.4105224609375, 0.7272593379020691], "10": [154.4146728515625, 404.56231689453125, 0.8970069289207458], "11": [329.3001708984375, 474.6386413574219, 0.12657497823238373], "12": [183.1882781982422, 465.3770751953125, 0.20652835071086884], "13": [353.4199523925781, 424.0916748046875, 0.0020510100293904543], "14": [171.06723022460938, 410.76837158203125, 0.003687577787786722], "15": [326.46685791015625, 465.05767822265625, 0.0003145605733152479], "16": [173.8717498779297, 464.09686279296875, 0.00046503241173923016]}} +{"t": 45.205177, "tracked": true, "track_id": 1, "bbox": [47.47511291503906, 14.803257942199707, 471.7371520996094, 479.6401062011719], "det_conf": 0.9302318692207336, "mean_kpt_conf": 0.9244568131186746, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9455034997640642, "right_lift": -0.8401396876016083, "left_bend": 0.10756796018709755, "right_bend": 0.49264944631802726}, "keypoints": {"0": [276.6155700683594, 113.61210632324219, 0.9990230798721313], "1": [297.688720703125, 95.74546813964844, 0.9969227910041809], "2": [252.68775939941406, 90.23262023925781, 0.9976480603218079], "3": [321.8074951171875, 119.439697265625, 0.875564455986023], "4": [212.9370574951172, 108.19950866699219, 0.9271858930587769], "5": [368.55706787109375, 247.30465698242188, 0.9878678321838379], "6": [149.55364990234375, 216.19662475585938, 0.9958393573760986], "7": [420.8666687011719, 399.1999206542969, 0.8034239411354065], "8": [63.82769775390625, 348.9874572753906, 0.9378738403320312], "9": [420.49151611328125, 458.9762878417969, 0.7453629970550537], "10": [146.23580932617188, 404.9251708984375, 0.902312695980072], "11": [323.74749755859375, 479.96533203125, 0.15059007704257965], "12": [179.99815368652344, 470.4273681640625, 0.23198547959327698], "13": [357.6843566894531, 433.8274230957031, 0.001901694806292653], "14": [176.95291137695312, 419.03460693359375, 0.003313932567834854], "15": [333.5185546875, 473.7169494628906, 0.0002729932020884007], "16": [176.04855346679688, 468.96844482421875, 0.00039308363921009004]}} +{"t": 45.275528, "tracked": true, "track_id": 1, "bbox": [46.639923095703125, 14.088415145874023, 473.8042297363281, 479.7515563964844], "det_conf": 0.927903950214386, "mean_kpt_conf": 0.9293206008997831, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9460455273237144, "right_lift": -0.851458809306751, "left_bend": 0.09783096475648884, "right_bend": 0.5066219606355227}, "keypoints": {"0": [274.9087219238281, 113.76904296875, 0.9990441203117371], "1": [295.8089904785156, 94.57200622558594, 0.9969488978385925], "2": [250.9920196533203, 89.80592346191406, 0.9976014494895935], "3": [320.31561279296875, 115.93928527832031, 0.8728355765342712], "4": [211.01223754882812, 106.02085876464844, 0.9278261661529541], "5": [368.734130859375, 246.0901336669922, 0.9891680479049683], "6": [145.82090759277344, 218.1012420654297, 0.9961637258529663], "7": [420.89898681640625, 398.3901062011719, 0.8209245800971985], "8": [62.15354919433594, 353.9448547363281, 0.9399867057800293], "9": [422.2513732910156, 458.1007385253906, 0.7722777724266052], "10": [149.0127410888672, 404.9809875488281, 0.9097495675086975], "11": [324.7101135253906, 479.1160888671875, 0.16353081166744232], "12": [178.23220825195312, 471.1883850097656, 0.24518883228302002], "13": [356.7513427734375, 435.61846923828125, 0.0020067146979272366], "14": [172.49755859375, 424.0939025878906, 0.0033720871433615685], "15": [331.1837158203125, 471.7278747558594, 0.00026436030748300254], "16": [173.852783203125, 470.1053466796875, 0.00036971172085031867]}} +{"t": 45.335675, "tracked": true, "track_id": 1, "bbox": [48.2337646484375, 13.122175216674805, 483.18243408203125, 479.7873840332031], "det_conf": 0.9263806939125061, "mean_kpt_conf": 0.9215957251462069, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.954123971292628, "right_lift": -0.8559980541505887, "left_bend": 0.19589221036289367, "right_bend": 0.5128139692365299}, "keypoints": {"0": [276.9201965332031, 113.52798461914062, 0.9990131855010986], "1": [298.896728515625, 94.17141723632812, 0.9970651268959045], "2": [251.9081268310547, 89.59432983398438, 0.9975600242614746], "3": [325.239990234375, 117.20916748046875, 0.886777400970459], "4": [211.02120971679688, 107.94061279296875, 0.9217275381088257], "5": [375.433349609375, 248.7730255126953, 0.9873964190483093], "6": [148.4891815185547, 220.83050537109375, 0.9961578249931335], "7": [424.1897277832031, 404.14306640625, 0.7712695002555847], "8": [65.41659545898438, 358.3795471191406, 0.934625506401062], "9": [410.7629089355469, 445.8668212890625, 0.7421438694000244], "10": [152.5574951171875, 406.33184814453125, 0.9038165807723999], "11": [334.42138671875, 480.0, 0.14968791604042053], "12": [186.60841369628906, 472.34747314453125, 0.24284780025482178], "13": [358.331787109375, 439.86212158203125, 0.002047706861048937], "14": [182.4913787841797, 426.0985107421875, 0.00374344433657825], "15": [328.6778564453125, 474.7904052734375, 0.00027941970620304346], "16": [188.25257873535156, 472.10186767578125, 0.0004217905516270548]}} +{"t": 45.401728, "tracked": true, "track_id": 1, "bbox": [53.369625091552734, 12.464984893798828, 497.52813720703125, 479.6299743652344], "det_conf": 0.9268118143081665, "mean_kpt_conf": 0.9358177889477123, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9418537383191042, "right_lift": -0.8813054452837911, "left_bend": 0.052540239915330876, "right_bend": 0.48617423831551587}, "keypoints": {"0": [280.62481689453125, 111.90916442871094, 0.9989867806434631], "1": [300.98486328125, 91.33009338378906, 0.9972407817840576], "2": [256.2912902832031, 89.154541015625, 0.9971796274185181], "3": [327.07305908203125, 110.96621704101562, 0.9126750230789185], "4": [219.28123474121094, 106.58433532714844, 0.9152163863182068], "5": [379.8144836425781, 243.91412353515625, 0.9910852313041687], "6": [154.0692596435547, 218.8349151611328, 0.9962365031242371], "7": [436.71307373046875, 403.39764404296875, 0.8546072840690613], "8": [80.52505493164062, 355.99566650390625, 0.938747763633728], "9": [448.29779052734375, 467.92803955078125, 0.7884756326675415], "10": [156.14566040039062, 400.87518310546875, 0.9035446643829346], "11": [330.8641357421875, 480.0, 0.1678369641304016], "12": [182.166015625, 475.6941833496094, 0.2360887974500656], "13": [383.11785888671875, 430.60577392578125, 0.0018467726185917854], "14": [184.4895782470703, 423.61431884765625, 0.0029873347375541925], "15": [364.2896423339844, 464.40826416015625, 0.0002485417644493282], "16": [193.74887084960938, 471.4355163574219, 0.00034326317836530507]}} +{"t": 45.437137, "tracked": true, "track_id": 1, "bbox": [57.46329116821289, 10.968802452087402, 509.83587646484375, 479.4560852050781], "det_conf": 0.9197922945022583, "mean_kpt_conf": 0.9339208115230907, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9284977756784297, "right_lift": -0.864497981499397, "left_bend": 0.06983220193308523, "right_bend": 0.4852096013536898}, "keypoints": {"0": [284.12109375, 111.40878295898438, 0.9990824460983276], "1": [303.61700439453125, 90.77961730957031, 0.9973190426826477], "2": [260.0690612792969, 88.47653198242188, 0.9974937438964844], "3": [328.703369140625, 110.2650146484375, 0.903225839138031], "4": [223.061767578125, 105.6644287109375, 0.9181506633758545], "5": [380.74066162109375, 246.03067016601562, 0.9905089139938354], "6": [158.79351806640625, 218.70889282226562, 0.9960673451423645], "7": [444.1570129394531, 404.59765625, 0.8450433611869812], "8": [79.95291137695312, 354.30902099609375, 0.9370072484016418], "9": [454.16339111328125, 466.18572998046875, 0.78557950258255], "10": [155.96383666992188, 403.3639221191406, 0.9036508202552795], "11": [329.63092041015625, 480.0, 0.14430302381515503], "12": [182.83535766601562, 476.41204833984375, 0.20666629076004028], "13": [384.4765625, 430.29595947265625, 0.0016411305405199528], "14": [184.54278564453125, 420.42486572265625, 0.0026775645092129707], "15": [374.4132080078125, 462.2839050292969, 0.00023092821356840432], "16": [190.92681884765625, 467.1912841796875, 0.0003190416900906712]}} +{"t": 45.499493, "tracked": true, "track_id": 1, "bbox": [69.18119812011719, 9.107858657836914, 516.0438232421875, 478.9193420410156], "det_conf": 0.9098138213157654, "mean_kpt_conf": 0.9223653674125671, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9348144971110263, "right_lift": -0.9066134593712704, "left_bend": 0.07569236698899832, "right_bend": 0.440088599908862}, "keypoints": {"0": [294.4782409667969, 110.40655517578125, 0.9989858269691467], "1": [314.03570556640625, 89.927490234375, 0.9971785545349121], "2": [268.90924072265625, 87.96885681152344, 0.9972422122955322], "3": [339.54547119140625, 110.88107299804688, 0.9055517911911011], "4": [230.99801635742188, 108.02226257324219, 0.9148176312446594], "5": [395.29022216796875, 246.1701202392578, 0.9910803437232971], "6": [172.54678344726562, 222.24884033203125, 0.9953774213790894], "7": [458.6836242675781, 413.0386047363281, 0.8358978033065796], "8": [106.40110778808594, 364.3671875, 0.9183160662651062], "9": [466.1666259765625, 472.4630126953125, 0.728860080242157], "10": [161.90321350097656, 404.31207275390625, 0.8627113103866577], "11": [349.54345703125, 480.0, 0.12942945957183838], "12": [200.78497314453125, 476.9841003417969, 0.1751219928264618], "13": [414.5348815917969, 421.99224853515625, 0.0015743955736979842], "14": [199.8308868408203, 413.8121643066406, 0.0024312783498317003], "15": [399.2561950683594, 451.9284362792969, 0.00025468060630373657], "16": [199.673583984375, 457.0450439453125, 0.0003396519459784031]}} +{"t": 45.532848, "tracked": true, "track_id": 1, "bbox": [75.6868667602539, 8.647841453552246, 518.17431640625, 479.04608154296875], "det_conf": 0.9219560623168945, "mean_kpt_conf": 0.9336870800365101, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9310605767504456, "right_lift": -0.9034591911132139, "left_bend": 0.09123728690436618, "right_bend": 0.44321173786326784}, "keypoints": {"0": [300.5768737792969, 109.69694519042969, 0.9991468191146851], "1": [318.8622131347656, 89.07745361328125, 0.9971369504928589], "2": [274.2867431640625, 87.57267761230469, 0.9976763129234314], "3": [342.4677734375, 109.62832641601562, 0.8791388273239136], "4": [234.57455444335938, 108.22528076171875, 0.9269977807998657], "5": [399.17987060546875, 244.50494384765625, 0.9927235245704651], "6": [176.5040283203125, 220.98423767089844, 0.9958707690238953], "7": [465.18145751953125, 412.9276123046875, 0.8719133734703064], "8": [108.71305847167969, 363.85821533203125, 0.9331104755401611], "9": [470.38336181640625, 472.6673583984375, 0.7844933867454529], "10": [164.52464294433594, 403.8232421875, 0.8923496603965759], "11": [354.7198181152344, 480.0, 0.15864741802215576], "12": [205.92486572265625, 474.9972839355469, 0.20436497032642365], "13": [420.3017578125, 422.438232421875, 0.0018131107790395617], "14": [204.47999572753906, 414.269775390625, 0.0026810646522790194], "15": [403.9324645996094, 454.7059326171875, 0.00025216341600753367], "16": [199.4041290283203, 460.59405517578125, 0.0003226683766115457]}} +{"t": 45.569314, "tracked": true, "track_id": 1, "bbox": [82.40801239013672, 7.0399956703186035, 525.7762451171875, 478.63226318359375], "det_conf": 0.9266452193260193, "mean_kpt_conf": 0.9497754573822021, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9097281667102947, "right_lift": -0.9082205915752272, "left_bend": 0.21469003558105415, "right_bend": 0.38516039506887}, "keypoints": {"0": [305.1591491699219, 110.0318603515625, 0.9992725253105164], "1": [325.14251708984375, 88.275390625, 0.9978380799293518], "2": [280.0425109863281, 87.96192932128906, 0.9975783228874207], "3": [351.251953125, 105.89939880371094, 0.9258530139923096], "4": [243.8154296875, 106.19697570800781, 0.9003961086273193], "5": [408.5825500488281, 231.09017944335938, 0.9945467710494995], "6": [186.43553161621094, 213.38946533203125, 0.9972684383392334], "7": [485.08819580078125, 398.7168884277344, 0.9137771725654602], "8": [118.15849304199219, 361.5658874511719, 0.9566138386726379], "9": [472.2520751953125, 449.7742919921875, 0.8508021235466003], "10": [169.40582275390625, 413.55291748046875, 0.9135836362838745], "11": [361.7060852050781, 480.0, 0.20548883080482483], "12": [213.8653106689453, 475.594482421875, 0.2618268132209778], "13": [422.731201171875, 410.1378479003906, 0.0018188700778409839], "14": [208.4505615234375, 399.15484619140625, 0.0026811042334884405], "15": [417.27490234375, 449.6565246582031, 0.00024291651789098978], "16": [211.2905731201172, 450.12713623046875, 0.0003222821978852153]}} +{"t": 45.635596, "tracked": true, "track_id": 1, "bbox": [95.23959350585938, 6.783132553100586, 551.7501220703125, 478.9620666503906], "det_conf": 0.9262450933456421, "mean_kpt_conf": 0.9314814914356578, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9160472505667472, "right_lift": -0.8988460956990939, "left_bend": 0.06193921752936473, "right_bend": 0.3637736251287817}, "keypoints": {"0": [320.5733642578125, 107.94999694824219, 0.999143123626709], "1": [339.515869140625, 85.291015625, 0.9975784420967102], "2": [294.490478515625, 85.39167785644531, 0.99739670753479], "3": [365.4588623046875, 101.4559326171875, 0.9003506898880005], "4": [257.08203125, 102.94660949707031, 0.9089898467063904], "5": [419.9918212890625, 230.17935180664062, 0.992624044418335], "6": [205.24984741210938, 213.275390625, 0.9954948425292969], "7": [491.04547119140625, 392.4663391113281, 0.8851304650306702], "8": [136.70895385742188, 353.847412109375, 0.9340529441833496], "9": [510.44488525390625, 480.0, 0.7610448598861694], "10": [180.7133026123047, 407.25543212890625, 0.8744904398918152], "11": [379.3451843261719, 474.30072021484375, 0.17234142124652863], "12": [233.54080200195312, 470.648193359375, 0.2155401110649109], "13": [447.7209167480469, 407.610595703125, 0.0020127524621784687], "14": [219.95236206054688, 404.356201171875, 0.002879912732169032], "15": [440.5288391113281, 443.8749694824219, 0.0003309856401756406], "16": [208.03591918945312, 452.9379577636719, 0.000415128335589543]}} +{"t": 45.703045, "tracked": true, "track_id": 1, "bbox": [112.37641906738281, 2.6952545642852783, 563.4769287109375, 477.4783630371094], "det_conf": 0.9357982873916626, "mean_kpt_conf": 0.9452558593316511, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9078083180934422, "right_lift": -0.8943826081438719, "left_bend": 0.1495086967549464, "right_bend": 0.367301641707444}, "keypoints": {"0": [335.0325012207031, 104.33453369140625, 0.9993345141410828], "1": [354.101318359375, 81.83236694335938, 0.9980765581130981], "2": [309.0243225097656, 82.63162231445312, 0.9977697134017944], "3": [379.900634765625, 98.32656860351562, 0.9247246384620667], "4": [272.35394287109375, 101.51821899414062, 0.9053598642349243], "5": [437.3646240234375, 225.342041015625, 0.9946889877319336], "6": [215.65774536132812, 210.675537109375, 0.9971559047698975], "7": [515.2763061523438, 393.9909362792969, 0.9137025475502014], "8": [141.85983276367188, 358.2345886230469, 0.9528346657752991], "9": [512.6453857421875, 465.2044982910156, 0.8174676895141602], "10": [184.3039093017578, 409.64373779296875, 0.8966993689537048], "11": [390.01556396484375, 480.0, 0.20034146308898926], "12": [241.59027099609375, 480.0, 0.24915167689323425], "13": [454.195068359375, 412.9895324707031, 0.0014391060685738921], "14": [230.804931640625, 405.9447326660156, 0.0020486570429056883], "15": [448.56036376953125, 447.1136779785156, 0.00020678156579378992], "16": [225.11358642578125, 451.6854553222656, 0.0002639336744323373]}} +{"t": 45.766403, "tracked": true, "track_id": 1, "bbox": [124.11060333251953, 4.089881420135498, 589.0549926757812, 478.8458557128906], "det_conf": 0.9314039945602417, "mean_kpt_conf": 0.9237587939609181, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9016961874101741, "right_lift": -0.8901420130163304, "left_bend": 0.1440108626142217, "right_bend": 0.42529204050227326}, "keypoints": {"0": [351.20416259765625, 102.56724548339844, 0.9991932511329651], "1": [370.90460205078125, 80.84205627441406, 0.9975664615631104], "2": [323.759033203125, 79.66494750976562, 0.9978949427604675], "3": [396.31195068359375, 101.82998657226562, 0.8956975340843201], "4": [284.2403259277344, 101.32223510742188, 0.9253734946250916], "5": [449.0618591308594, 237.12181091308594, 0.9899959564208984], "6": [234.66082763671875, 214.60337829589844, 0.9946788549423218], "7": [530.3790893554688, 406.7066650390625, 0.8259192109107971], "8": [161.65167236328125, 357.22113037109375, 0.9130950570106506], "9": [529.9903564453125, 480.0, 0.7453530430793762], "10": [209.00808715820312, 397.7479248046875, 0.8765789270401001], "11": [399.99371337890625, 480.0, 0.09737955778837204], "12": [257.93878173828125, 474.443359375, 0.13506415486335754], "13": [458.82806396484375, 412.05316162109375, 0.0015815814258530736], "14": [255.84461975097656, 401.3771667480469, 0.002469800878316164], "15": [451.0794677734375, 457.8760681152344, 0.0002845328417606652], "16": [248.57015991210938, 457.56280517578125, 0.00037767968024127185]}} +{"t": 45.827447, "tracked": true, "track_id": 1, "bbox": [136.82196044921875, 0.22351956367492676, 610.0875854492188, 478.3475036621094], "det_conf": 0.9330049157142639, "mean_kpt_conf": 0.9383827610449358, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8879912517135848, "right_lift": -0.9135822708386869, "left_bend": 0.20462310623876107, "right_bend": 0.397384764594856}, "keypoints": {"0": [363.55950927734375, 101.73675537109375, 0.9992338418960571], "1": [384.185791015625, 80.3221435546875, 0.9977613687515259], "2": [337.2012939453125, 78.58474731445312, 0.9977279305458069], "3": [409.7906494140625, 100.64825439453125, 0.9225817918777466], "4": [298.4931640625, 98.84883117675781, 0.9142686724662781], "5": [465.0349426269531, 232.20046997070312, 0.9929686188697815], "6": [241.5943145751953, 215.2393341064453, 0.9966719150543213], "7": [551.08154296875, 398.35662841796875, 0.8747469186782837], "8": [175.6973876953125, 363.2823181152344, 0.9360367655754089], "9": [541.2772216796875, 457.2348937988281, 0.8028258681297302], "10": [219.5212860107422, 403.3910827636719, 0.887386679649353], "11": [414.27593994140625, 480.0, 0.1302926242351532], "12": [266.9964294433594, 480.0, 0.17351970076560974], "13": [472.52813720703125, 409.52825927734375, 0.0013042718637734652], "14": [265.9001159667969, 398.4507141113281, 0.0019474881701171398], "15": [468.40118408203125, 446.5791931152344, 0.00020820087229367346], "16": [275.21746826171875, 441.7388916015625, 0.0002753502340056002]}} +{"t": 45.863647, "tracked": true, "track_id": 1, "bbox": [143.96939086914062, 0.0, 619.82373046875, 477.5969543457031], "det_conf": 0.9359374642372131, "mean_kpt_conf": 0.9430884393778715, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8903712520118331, "right_lift": -0.9005706653822212, "left_bend": 0.2761611032409715, "right_bend": 0.4077289062885857}, "keypoints": {"0": [370.39202880859375, 100.86439514160156, 0.9993166923522949], "1": [389.90106201171875, 79.57606506347656, 0.9978446960449219], "2": [343.4857482910156, 78.42538452148438, 0.9979740977287292], "3": [414.74945068359375, 100.25604248046875, 0.9183157682418823], "4": [303.8276672363281, 100.13919067382812, 0.9176492691040039], "5": [474.0091552734375, 234.10108947753906, 0.9936698079109192], "6": [246.21307373046875, 215.12081909179688, 0.9969569444656372], "7": [559.4763793945312, 401.2620849609375, 0.8823411464691162], "8": [176.78384399414062, 358.95458984375, 0.9422851800918579], "9": [537.5638427734375, 453.8287353515625, 0.8247376084327698], "10": [222.00387573242188, 400.21087646484375, 0.9028816223144531], "11": [421.8861083984375, 480.0, 0.1508914828300476], "12": [272.1067199707031, 480.0, 0.2000863254070282], "13": [476.6530456542969, 416.40869140625, 0.0013972530141472816], "14": [269.77972412109375, 402.8609619140625, 0.0020950622856616974], "15": [466.685791015625, 450.796630859375, 0.00020271792891435325], "16": [274.9364318847656, 446.1829528808594, 0.00026863033417612314]}} +{"t": 45.897259, "tracked": true, "track_id": 1, "bbox": [153.1063232421875, 0.39556148648262024, 626.7508544921875, 479.17974853515625], "det_conf": 0.9430602788925171, "mean_kpt_conf": 0.9074759212407199, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8831799656166458, "right_lift": -0.9017753275063286, "left_bend": 0.15813551868856857, "right_bend": 0.4301355240023546}, "keypoints": {"0": [376.8651428222656, 99.87347412109375, 0.9992231130599976], "1": [396.36181640625, 78.00213623046875, 0.9975998997688293], "2": [349.3748779296875, 76.46263122558594, 0.9980819225311279], "3": [421.53839111328125, 99.4390869140625, 0.881663978099823], "4": [308.46759033203125, 98.3231201171875, 0.9307147860527039], "5": [479.7639465332031, 236.989013671875, 0.9899522662162781], "6": [254.52743530273438, 217.73098754882812, 0.9937896132469177], "7": [567.8235473632812, 402.8030700683594, 0.7959374189376831], "8": [185.2869873046875, 362.1978759765625, 0.8811749219894409], "9": [567.162109375, 479.7090759277344, 0.68603515625], "10": [233.6622314453125, 400.2424621582031, 0.8280620574951172], "11": [428.5271911621094, 479.9857177734375, 0.07832134515047073], "12": [278.751953125, 474.00604248046875, 0.10336041450500488], "13": [491.097412109375, 404.8514709472656, 0.0014016859931871295], "14": [274.02728271484375, 396.271728515625, 0.0020728043746203184], "15": [477.5352478027344, 450.87420654296875, 0.00028673652559518814], "16": [265.2734069824219, 449.6921081542969, 0.0003614392480812967]}} +{"t": 45.96511, "tracked": true, "track_id": 1, "bbox": [161.9649658203125, 0.82438725233078, 638.0904541015625, 480.0], "det_conf": 0.945854663848877, "mean_kpt_conf": 0.9197129715572704, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.888774979106315, "right_lift": -0.8985817963726068, "left_bend": 0.18265843321642944, "right_bend": 0.46315350764815544}, "keypoints": {"0": [386.4175720214844, 98.99761962890625, 0.9992313385009766], "1": [406.1134033203125, 76.28897094726562, 0.9978306889533997], "2": [359.417724609375, 75.81353759765625, 0.9978494644165039], "3": [432.9142150878906, 96.11105346679688, 0.9165655970573425], "4": [320.4298400878906, 96.76399230957031, 0.9165765047073364], "5": [497.7242736816406, 236.68190002441406, 0.9917379021644592], "6": [263.54498291015625, 217.37387084960938, 0.9954663515090942], "7": [584.7864379882812, 405.5042419433594, 0.8120565414428711], "8": [193.58285522460938, 360.6414794921875, 0.905497133731842], "9": [577.844970703125, 476.3213195800781, 0.7242451310157776], "10": [246.8451385498047, 394.78289794921875, 0.8597860336303711], "11": [443.7376708984375, 480.0, 0.10689102113246918], "12": [290.83184814453125, 480.0, 0.14839977025985718], "13": [492.8978271484375, 423.73968505859375, 0.0014107292518019676], "14": [289.48974609375, 414.43890380859375, 0.0022450063843280077], "15": [465.10614013671875, 462.45257568359375, 0.000229228098760359], "16": [286.1520690917969, 462.9158020019531, 0.0003107840893790126]}} +{"t": 46.027486, "tracked": true, "track_id": 1, "bbox": [169.7663116455078, 0.18737894296646118, 640.0, 478.95672607421875], "det_conf": 0.9475357532501221, "mean_kpt_conf": 0.9253015734932639, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8849724204198459, "right_lift": -0.9143890725829954, "left_bend": 0.25828796954059796, "right_bend": 0.4479943922537856}, "keypoints": {"0": [394.7319641113281, 98.00416564941406, 0.9992141723632812], "1": [415.7186584472656, 75.37678527832031, 0.9979197382926941], "2": [367.394287109375, 74.29266357421875, 0.9976963400840759], "3": [442.53704833984375, 95.24847412109375, 0.9313200116157532], "4": [327.4543151855469, 94.78584289550781, 0.9102318286895752], "5": [506.37005615234375, 231.6524658203125, 0.9921994805335999], "6": [269.5749816894531, 215.32179260253906, 0.9963425993919373], "7": [595.5169677734375, 401.0794372558594, 0.8217839598655701], "8": [203.60784912109375, 364.31927490234375, 0.9115193486213684], "9": [579.00439453125, 449.7519226074219, 0.7588691711425781], "10": [252.31466674804688, 396.2430114746094, 0.86122065782547], "11": [458.4023132324219, 480.0, 0.10152777284383774], "12": [305.6694641113281, 480.0, 0.1422857940196991], "13": [495.22198486328125, 411.42498779296875, 0.0012438803678378463], "14": [299.66162109375, 399.6688537597656, 0.0019054074073210359], "15": [474.2240905761719, 447.548095703125, 0.0002042444102698937], "16": [314.28076171875, 442.81927490234375, 0.0002772294683381915]}} +{"t": 46.093772, "tracked": true, "track_id": 1, "bbox": [174.39707946777344, 0.0, 640.0, 478.6483459472656], "det_conf": 0.9491427540779114, "mean_kpt_conf": 0.9288747906684875, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8949845172523855, "right_lift": -0.915406483617164, "left_bend": 0.4053294955523789, "right_bend": 0.5015758987437224}, "keypoints": {"0": [400.9054260253906, 96.73858642578125, 0.9991928935050964], "1": [423.3644104003906, 72.40983581542969, 0.9979168772697449], "2": [372.9472351074219, 71.69134521484375, 0.9975544810295105], "3": [451.9767761230469, 90.78656005859375, 0.935575008392334], "4": [332.35394287109375, 90.64067077636719, 0.9019148349761963], "5": [513.5170288085938, 230.10488891601562, 0.9918427467346191], "6": [274.50225830078125, 212.91390991210938, 0.9964368343353271], "7": [599.65625, 402.9220886230469, 0.8103516697883606], "8": [207.14297485351562, 366.0975646972656, 0.9126498103141785], "9": [571.516357421875, 429.6578369140625, 0.7931556105613708], "10": [263.53851318359375, 390.5638427734375, 0.8810319304466248], "11": [459.42083740234375, 480.0, 0.09694501757621765], "12": [306.6138610839844, 480.0, 0.14112916588783264], "13": [484.5677795410156, 412.8800048828125, 0.0013491701101884246], "14": [300.2477111816406, 399.01678466796875, 0.002122404519468546], "15": [458.9720458984375, 448.1186828613281, 0.000210413068998605], "16": [318.0106506347656, 443.36865234375, 0.00029232108499854803]}} +{"t": 46.12923, "tracked": true, "track_id": 1, "bbox": [174.91390991210938, 0.0, 640.0, 479.11578369140625], "det_conf": 0.9507465362548828, "mean_kpt_conf": 0.9240203553980048, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9068855826534745, "right_lift": -0.9133870242123937, "left_bend": 0.48957453970308984, "right_bend": 0.4799993612134441}, "keypoints": {"0": [403.2034912109375, 95.34869384765625, 0.9991812109947205], "1": [425.7076416015625, 71.83206176757812, 0.9979782700538635], "2": [375.4897766113281, 71.07496643066406, 0.9974766373634338], "3": [454.33447265625, 92.00086975097656, 0.943298876285553], "4": [335.7186279296875, 91.88948059082031, 0.8948448896408081], "5": [518.3350830078125, 231.08221435546875, 0.9916609525680542], "6": [275.8721618652344, 211.8155517578125, 0.9964495897293091], "7": [600.7117309570312, 408.37286376953125, 0.7928638458251953], "8": [206.86045837402344, 366.6560974121094, 0.9075162410736084], "9": [569.1488647460938, 424.31512451171875, 0.7752885818481445], "10": [257.5338439941406, 393.1727600097656, 0.8676648139953613], "11": [461.3070068359375, 480.0, 0.08658090233802795], "12": [307.6897277832031, 478.5145568847656, 0.12936192750930786], "13": [479.279296875, 407.12579345703125, 0.0013607563450932503], "14": [299.700439453125, 391.10565185546875, 0.002173122949898243], "15": [447.885498046875, 447.0717468261719, 0.00022388229263015091], "16": [321.40484619140625, 442.5574035644531, 0.0003172673168592155]}} +{"t": 46.190612, "tracked": true, "track_id": 1, "bbox": [174.11558532714844, 0.0, 640.0, 478.38116455078125], "det_conf": 0.9511516690254211, "mean_kpt_conf": 0.9213293140584772, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9102239571175383, "right_lift": -0.8940012364975657, "left_bend": 0.5669367699128367, "right_bend": 0.5092775282134598}, "keypoints": {"0": [404.1130065917969, 94.05764770507812, 0.9991544485092163], "1": [427.72332763671875, 70.52323913574219, 0.9982206225395203], "2": [376.3587646484375, 70.29252624511719, 0.9972254037857056], "3": [459.18896484375, 91.89450073242188, 0.9576536417007446], "4": [338.3706970214844, 92.45245361328125, 0.8763144016265869], "5": [522.1519775390625, 230.54104614257812, 0.9909579753875732], "6": [280.2674560546875, 210.37611389160156, 0.9965476393699646], "7": [601.9127197265625, 405.85443115234375, 0.7727181315422058], "8": [203.6353759765625, 363.2763671875, 0.9099705219268799], "9": [574.875244140625, 411.80645751953125, 0.7664299607276917], "10": [258.67547607421875, 388.8830871582031, 0.8694297075271606], "11": [464.05047607421875, 480.0, 0.09195881336927414], "12": [311.2776184082031, 475.0162353515625, 0.14472761750221252], "13": [477.13800048828125, 406.6292724609375, 0.0015465483302250504], "14": [301.18585205078125, 390.0777893066406, 0.0026320519391447306], "15": [446.8326110839844, 445.10467529296875, 0.00026310584507882595], "16": [320.2577209472656, 442.85107421875, 0.0003961895708926022]}} +{"t": 46.25738, "tracked": true, "track_id": 1, "bbox": [167.47201538085938, 0.0, 639.5227661132812, 476.8885498046875], "det_conf": 0.9518349170684814, "mean_kpt_conf": 0.9319643107327548, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9148691428140393, "right_lift": -0.8881261677020593, "left_bend": 0.5557799967530971, "right_bend": 0.47681816921211895}, "keypoints": {"0": [404.41473388671875, 90.22666931152344, 0.9992639422416687], "1": [428.2227783203125, 68.05316162109375, 0.9983525276184082], "2": [377.02288818359375, 66.23193359375, 0.9974888563156128], "3": [458.7599792480469, 91.23435974121094, 0.9598629474639893], "4": [337.70074462890625, 88.72088623046875, 0.8835436105728149], "5": [522.3525390625, 231.61505126953125, 0.9930833578109741], "6": [273.2503967285156, 208.33763122558594, 0.9973152279853821], "7": [599.2181396484375, 405.7868957519531, 0.8187001347541809], "8": [194.93704223632812, 359.66961669921875, 0.9272059202194214], "9": [566.7408447265625, 413.7475280761719, 0.79499351978302], "10": [248.42994689941406, 392.4938049316406, 0.8817973732948303], "11": [459.14630126953125, 480.0, 0.133969247341156], "12": [301.0580139160156, 480.0, 0.20200444757938385], "13": [471.99322509765625, 420.8915710449219, 0.0016402399633079767], "14": [288.830810546875, 401.80975341796875, 0.0026801584754139185], "15": [439.770263671875, 455.021240234375, 0.00024334696354344487], "16": [310.0526428222656, 448.9459228515625, 0.0003549288085196167]}} +{"t": 46.29287, "tracked": true, "track_id": 1, "bbox": [164.32003784179688, 0.0, 639.3876953125, 477.475341796875], "det_conf": 0.9523093104362488, "mean_kpt_conf": 0.9174161011522467, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.911977452104007, "right_lift": -0.8979302522645336, "left_bend": 0.4685744176152162, "right_bend": 0.5467884338712147}, "keypoints": {"0": [403.78863525390625, 88.80056762695312, 0.9991795420646667], "1": [428.0644226074219, 66.61367797851562, 0.9981932044029236], "2": [377.07806396484375, 64.11216735839844, 0.9974638223648071], "3": [457.9964599609375, 89.62368774414062, 0.9557057619094849], "4": [337.7505187988281, 85.11590576171875, 0.8963222503662109], "5": [521.5747680664062, 229.76431274414062, 0.991951584815979], "6": [269.405517578125, 208.96299743652344, 0.9968805313110352], "7": [602.167724609375, 408.925048828125, 0.769334077835083], "8": [190.47755432128906, 369.98486328125, 0.901048481464386], "9": [571.3660888671875, 426.6199951171875, 0.7363615036010742], "10": [254.30172729492188, 390.3424072265625, 0.8491363525390625], "11": [459.9601135253906, 480.0, 0.08847339451313019], "12": [301.4380187988281, 480.0, 0.13630250096321106], "13": [473.2984313964844, 418.05975341796875, 0.001221817801706493], "14": [298.00286865234375, 401.75335693359375, 0.00200581643730402], "15": [435.3240966796875, 457.17144775390625, 0.00019712767971213907], "16": [320.8037109375, 448.3095703125, 0.0002859761589206755]}} +{"t": 46.326791, "tracked": true, "track_id": 1, "bbox": [160.16822814941406, 0.0, 639.2977905273438, 478.0980224609375], "det_conf": 0.9508185386657715, "mean_kpt_conf": 0.9226388551972129, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9149220330296647, "right_lift": -0.90181231559967, "left_bend": 0.4922122081968854, "right_bend": 0.4901388389454381}, "keypoints": {"0": [404.28338623046875, 87.84867858886719, 0.999270498752594], "1": [427.7361755371094, 65.38455200195312, 0.9981842637062073], "2": [376.92266845703125, 62.64039611816406, 0.9977662563323975], "3": [456.16204833984375, 87.70950317382812, 0.9476745128631592], "4": [335.006591796875, 83.27001953125, 0.9064202904701233], "5": [523.1290283203125, 231.18936157226562, 0.9930612444877625], "6": [264.2100830078125, 208.69598388671875, 0.9971135854721069], "7": [602.07958984375, 410.1490478515625, 0.793929934501648], "8": [188.69329833984375, 366.2927551269531, 0.9075638651847839], "9": [567.72314453125, 426.3211975097656, 0.7542082667350769], "10": [242.7062530517578, 394.26373291015625, 0.8538346886634827], "11": [461.109375, 480.0, 0.10150100290775299], "12": [296.9649658203125, 480.0, 0.150739386677742], "13": [474.71881103515625, 420.6226806640625, 0.0012402512365952134], "14": [285.4877014160156, 403.10443115234375, 0.0019266182789579034], "15": [435.1213073730469, 456.0350646972656, 0.00018539978191256523], "16": [309.90447998046875, 447.7720642089844, 0.00025605817791074514]}} +{"t": 46.390214, "tracked": true, "track_id": 1, "bbox": [149.26744079589844, 0.0, 639.0945434570312, 476.4489440917969], "det_conf": 0.9414501786231995, "mean_kpt_conf": 0.9201644008809869, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8910508665037985, "right_lift": -0.9104195583479983, "left_bend": 0.43250927456523586, "right_bend": 0.5315902879640435}, "keypoints": {"0": [399.6746520996094, 83.00181579589844, 0.9993008375167847], "1": [422.28326416015625, 60.449676513671875, 0.9977365732192993], "2": [371.9571838378906, 56.689605712890625, 0.9982150793075562], "3": [447.69403076171875, 82.33740234375, 0.9086692929267883], "4": [327.3219299316406, 75.91960144042969, 0.9364549517631531], "5": [510.7198181152344, 225.86056518554688, 0.9921693205833435], "6": [257.980224609375, 205.44354248046875, 0.9965812563896179], "7": [600.951171875, 402.9923400878906, 0.7752341032028198], "8": [184.8795166015625, 366.31988525390625, 0.893196165561676], "9": [560.5496215820312, 435.8758544921875, 0.7588709592819214], "10": [251.05226135253906, 388.782958984375, 0.8653798699378967], "11": [453.90618896484375, 480.0, 0.07560844719409943], "12": [294.8521423339844, 480.0, 0.11133280396461487], "13": [475.51031494140625, 411.24749755859375, 0.0012296014465391636], "14": [301.07806396484375, 395.062255859375, 0.0019053855212405324], "15": [439.80975341796875, 457.06353759765625, 0.000198287409148179], "16": [327.815673828125, 442.8648376464844, 0.0002659737947396934]}} +{"t": 46.423833, "tracked": true, "track_id": 1, "bbox": [142.4761199951172, 0.0, 636.1305541992188, 474.5705261230469], "det_conf": 0.9254326224327087, "mean_kpt_conf": 0.9403607032515786, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9256541948687023, "right_lift": -0.8928137273260116, "left_bend": 0.6432619385759186, "right_bend": 0.5113539178427001}, "keypoints": {"0": [394.18463134765625, 81.98080444335938, 0.999397873878479], "1": [417.9461975097656, 59.867645263671875, 0.9982008934020996], "2": [368.21417236328125, 55.86454772949219, 0.9979990124702454], "3": [445.8382873535156, 81.70257568359375, 0.9372001886367798], "4": [326.8521423339844, 73.7176513671875, 0.9131745100021362], "5": [508.37322998046875, 224.96861267089844, 0.9946091175079346], "6": [252.68841552734375, 200.922119140625, 0.998099148273468], "7": [580.146728515625, 400.556884765625, 0.8379777669906616], "8": [171.11331176757812, 362.61651611328125, 0.9369420409202576], "9": [541.3299560546875, 398.1457824707031, 0.82949298620224], "10": [242.6245880126953, 395.5493469238281, 0.9008741974830627], "11": [449.7515563964844, 480.0, 0.14237506687641144], "12": [288.5033874511719, 480.0, 0.2101009488105774], "13": [459.869140625, 416.8253479003906, 0.0014892705949023366], "14": [286.53936767578125, 397.8576965332031, 0.002352027455344796], "15": [422.594482421875, 452.3699035644531, 0.00020152537035755813], "16": [316.943603515625, 442.7059326171875, 0.0002829451987054199]}} +{"t": 46.488116, "tracked": true, "track_id": 1, "bbox": [129.82711791992188, 0.0, 634.3095092773438, 472.9292907714844], "det_conf": 0.9328435659408569, "mean_kpt_conf": 0.9291633855212819, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9186206236832075, "right_lift": -0.8882559362605089, "left_bend": 0.4087247313954525, "right_bend": 0.5300161228714573}, "keypoints": {"0": [386.2181091308594, 77.08079528808594, 0.9993100166320801], "1": [410.81329345703125, 54.235443115234375, 0.9981257319450378], "2": [359.9355773925781, 49.82106018066406, 0.9979841709136963], "3": [439.510498046875, 77.74444580078125, 0.9398103356361389], "4": [318.54248046875, 68.38816833496094, 0.9182329773902893], "5": [503.8830261230469, 227.40440368652344, 0.9925907850265503], "6": [243.4774169921875, 199.7921142578125, 0.9970839619636536], "7": [583.166748046875, 411.72271728515625, 0.787997305393219], "8": [159.52005004882812, 362.1428527832031, 0.9072474837303162], "9": [547.9042358398438, 441.002685546875, 0.7928193211555481], "10": [235.30963134765625, 392.6749267578125, 0.8895951509475708], "11": [445.7056884765625, 480.0, 0.07828464359045029], "12": [283.34332275390625, 480.0, 0.11731754243373871], "13": [474.0022888183594, 413.3936767578125, 0.0012900528963655233], "14": [308.070068359375, 395.51934814453125, 0.0021252876613289118], "15": [432.09674072265625, 466.54583740234375, 0.0001989250013139099], "16": [341.36273193359375, 455.2690124511719, 0.0002878535015042871]}} +{"t": 46.556045, "tracked": true, "track_id": 1, "bbox": [108.6572036743164, 0.0, 633.521728515625, 475.0987243652344], "det_conf": 0.9141606688499451, "mean_kpt_conf": 0.9313331517306241, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9066092317158057, "right_lift": -0.8977174974052531, "left_bend": 0.4617423658274869, "right_bend": 0.538824169075535}, "keypoints": {"0": [378.8064880371094, 69.60232543945312, 0.99933260679245], "1": [402.50872802734375, 48.43492126464844, 0.9979131817817688], "2": [352.2333068847656, 43.20133972167969, 0.9982550740242004], "3": [428.79571533203125, 74.87416076660156, 0.9246724247932434], "4": [309.2727355957031, 64.52937316894531, 0.9352407455444336], "5": [491.7523193359375, 223.930419921875, 0.9930282235145569], "6": [231.6753692626953, 196.80609130859375, 0.9969633221626282], "7": [578.7217407226562, 410.7850646972656, 0.8037164211273193], "8": [148.74050903320312, 365.79583740234375, 0.9036646485328674], "9": [541.7108154296875, 433.77349853515625, 0.8049935102462769], "10": [224.94863891601562, 392.26275634765625, 0.8868845105171204], "11": [431.0711669921875, 480.0, 0.07281378656625748], "12": [268.067138671875, 478.3293151855469, 0.10323154181241989], "13": [471.1868896484375, 409.18011474609375, 0.0011670887470245361], "14": [297.32806396484375, 390.5335998535156, 0.0018177692545577884], "15": [436.0343017578125, 461.73406982421875, 0.00017161668802145869], "16": [326.7966003417969, 446.96258544921875, 0.0002353134477743879]}} +{"t": 46.622298, "tracked": true, "track_id": 1, "bbox": [96.33992767333984, 0.0, 626.66650390625, 475.7603454589844], "det_conf": 0.9215506315231323, "mean_kpt_conf": 0.9323807900602167, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9193171525217807, "right_lift": -0.8629882952802762, "left_bend": 0.2959487574786237, "right_bend": 0.5946644332165031}, "keypoints": {"0": [368.7464904785156, 65.29330444335938, 0.9993641972541809], "1": [394.82708740234375, 41.03181457519531, 0.9981440305709839], "2": [341.62109375, 35.64961242675781, 0.9982733726501465], "3": [424.58880615234375, 64.29023742675781, 0.9166010618209839], "4": [296.7133483886719, 52.45390319824219, 0.93682461977005], "5": [484.19927978515625, 215.5637664794922, 0.9919537901878357], "6": [216.16046142578125, 194.39315795898438, 0.9970690608024597], "7": [559.7644653320312, 392.09564208984375, 0.7885626554489136], "8": [117.90737915039062, 362.22222900390625, 0.9073303937911987], "9": [531.724853515625, 440.4718933105469, 0.8107269406318665], "10": [217.47506713867188, 385.77117919921875, 0.9113385677337646], "11": [434.16949462890625, 478.8761291503906, 0.07036326080560684], "12": [266.3882751464844, 475.2607727050781, 0.10341750085353851], "13": [471.994384765625, 404.44525146484375, 0.0011728124227374792], "14": [304.87188720703125, 395.2701416015625, 0.001907688332721591], "15": [426.0135498046875, 461.06634521484375, 0.0001652037026360631], "16": [330.7596740722656, 451.74298095703125, 0.00023370556300505996]}} +{"t": 46.687192, "tracked": true, "track_id": 1, "bbox": [77.21516418457031, 0.0, 621.3499755859375, 477.92822265625], "det_conf": 0.9242376089096069, "mean_kpt_conf": 0.9398191191933372, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8957406091334703, "right_lift": -0.8794630217243325, "left_bend": 0.3052459138903906, "right_bend": 0.537569153244569}, "keypoints": {"0": [358.8688659667969, 58.4212646484375, 0.9993995428085327], "1": [384.21099853515625, 37.046905517578125, 0.9982141256332397], "2": [332.7073974609375, 30.222000122070312, 0.9983218312263489], "3": [411.9385681152344, 64.64315795898438, 0.9277827739715576], "4": [288.5383605957031, 50.519317626953125, 0.9359647035598755], "5": [472.1771240234375, 215.07766723632812, 0.9937605261802673], "6": [203.28912353515625, 192.5078125, 0.9971538782119751], "7": [560.5606079101562, 393.154052734375, 0.8441767692565918], "8": [110.34542846679688, 364.24346923828125, 0.9103620052337646], "9": [530.948486328125, 447.58404541015625, 0.8352358937263489], "10": [201.6629180908203, 400.50909423828125, 0.8976382613182068], "11": [411.00439453125, 480.0, 0.06948334723711014], "12": [241.3926239013672, 480.0, 0.09074302017688751], "13": [460.6312255859375, 401.15032958984375, 0.000910417758859694], "14": [279.6170349121094, 388.14947509765625, 0.001316560315899551], "15": [424.77142333984375, 456.50799560546875, 0.0001305999467149377], "16": [307.0443420410156, 439.9675598144531, 0.00016991663142107427]}} +{"t": 46.7219, "tracked": true, "track_id": 1, "bbox": [65.99097442626953, 0.0, 621.333740234375, 478.1042785644531], "det_conf": 0.9135007262229919, "mean_kpt_conf": 0.9383634491400286, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9059333871161057, "right_lift": -0.8731338948564091, "left_bend": 0.3913216561056048, "right_bend": 0.5224729868886141}, "keypoints": {"0": [356.1379089355469, 57.728302001953125, 0.9994246959686279], "1": [381.4364929199219, 34.2520751953125, 0.9981541037559509], "2": [329.1123352050781, 28.518310546875, 0.9983787536621094], "3": [409.56610107421875, 59.11775207519531, 0.9231326580047607], "4": [284.0610046386719, 47.10626220703125, 0.9367033839225769], "5": [469.77117919921875, 218.4270782470703, 0.9938666224479675], "6": [199.8474578857422, 190.60501098632812, 0.9970484375953674], "7": [555.978515625, 402.8729248046875, 0.8298560976982117], "8": [105.12249755859375, 360.26837158203125, 0.8999495506286621], "9": [518.9888305664062, 439.36602783203125, 0.8464457392692566], "10": [189.81008911132812, 399.99298095703125, 0.8990378975868225], "11": [400.00909423828125, 480.0, 0.061097923666238785], "12": [231.81553649902344, 480.0, 0.08012836426496506], "13": [439.5330810546875, 409.6759948730469, 0.0008426382555626333], "14": [272.2158203125, 392.5560302734375, 0.0011940628755837679], "15": [400.6672668457031, 455.1656188964844, 0.0001123050824389793], "16": [307.5367736816406, 441.94427490234375, 0.00014308089157566428]}} +{"t": 46.78497, "tracked": true, "track_id": 1, "bbox": [58.749019622802734, 0.7082242369651794, 609.983642578125, 477.1521301269531], "det_conf": 0.9220097661018372, "mean_kpt_conf": 0.9265613935210488, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9324741434456527, "right_lift": -0.8395589974486881, "left_bend": 0.39216849178745167, "right_bend": 0.5671494098013214}, "keypoints": {"0": [346.6077880859375, 51.594207763671875, 0.9990758895874023], "1": [376.4722595214844, 26.76214599609375, 0.9974344372749329], "2": [319.774658203125, 19.1773681640625, 0.9974900484085083], "3": [411.3121643066406, 59.0777587890625, 0.9229962229728699], "4": [274.90423583984375, 41.96221923828125, 0.9325222373008728], "5": [470.22845458984375, 226.3850860595703, 0.9895846247673035], "6": [184.94564819335938, 197.61431884765625, 0.9961684346199036], "7": [535.4467163085938, 394.7354736328125, 0.7417966723442078], "8": [81.79025268554688, 357.02911376953125, 0.879941463470459], "9": [485.62017822265625, 437.4206237792969, 0.826441764831543], "10": [190.54104614257812, 398.382080078125, 0.9087235331535339], "11": [398.1090393066406, 480.0, 0.05147695168852806], "12": [218.43023681640625, 474.7234191894531, 0.07672570645809174], "13": [429.7567138671875, 405.2904052734375, 0.0012680876534432173], "14": [252.26602172851562, 391.00018310546875, 0.002033959375694394], "15": [386.20404052734375, 480.0, 0.0001712180528556928], "16": [288.4124755859375, 470.2958984375, 0.00023742216581013054]}} +{"t": 46.852407, "tracked": true, "track_id": 1, "bbox": [34.31108856201172, 0.0, 609.0191650390625, 478.3515319824219], "det_conf": 0.9242725372314453, "mean_kpt_conf": 0.9297772591764276, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9210362344341241, "right_lift": -0.8649628663918659, "left_bend": 0.44252490440365205, "right_bend": 0.5467116159716516}, "keypoints": {"0": [341.474609375, 46.25129699707031, 0.9994181394577026], "1": [367.9676818847656, 22.877853393554688, 0.9982792139053345], "2": [313.1163024902344, 16.7059326171875, 0.9984336495399475], "3": [397.4223327636719, 52.785186767578125, 0.916252613067627], "4": [264.7261962890625, 40.36308288574219, 0.9347720742225647], "5": [459.5335998535156, 214.55145263671875, 0.9920845031738281], "6": [174.21595764160156, 187.55364990234375, 0.9957987666130066], "7": [538.7537841796875, 401.8916015625, 0.8030399084091187], "8": [72.09762573242188, 363.56451416015625, 0.8607069849967957], "9": [489.44476318359375, 434.24151611328125, 0.8451098799705505], "10": [174.30947875976562, 404.267333984375, 0.8836541175842285], "11": [389.4898376464844, 469.69232177734375, 0.03898879140615463], "12": [209.8331298828125, 463.2011413574219, 0.04706341773271561], "13": [436.2723083496094, 382.9013671875, 0.0009051036322489381], "14": [250.077880859375, 367.7702941894531, 0.001173872034996748], "15": [401.71417236328125, 451.63909912109375, 0.00013446436787489802], "16": [287.1412353515625, 440.5262451171875, 0.00016212662740144879]}} +{"t": 46.920535, "tracked": true, "track_id": 1, "bbox": [23.05449104309082, 0.04620323330163956, 612.8480224609375, 478.7448425292969], "det_conf": 0.9345533847808838, "mean_kpt_conf": 0.94079651073976, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9242471222599189, "right_lift": -0.8756636656248171, "left_bend": 0.4074755954786804, "right_bend": 0.52124149261445}, "keypoints": {"0": [333.9986267089844, 43.850921630859375, 0.9994753003120422], "1": [361.771240234375, 20.679443359375, 0.9985576272010803], "2": [305.9196472167969, 14.198272705078125, 0.998441755771637], "3": [392.8938293457031, 51.08714294433594, 0.9334856271743774], "4": [259.1319580078125, 37.44154357910156, 0.9255354404449463], "5": [453.79449462890625, 208.93960571289062, 0.9931208491325378], "6": [169.36117553710938, 179.68096923828125, 0.9962183833122253], "7": [533.3792724609375, 401.59808349609375, 0.8485186100006104], "8": [69.29360961914062, 361.1297912597656, 0.8938223123550415], "9": [495.15087890625, 432.6646728515625, 0.8652466535568237], "10": [166.70262145996094, 406.66192626953125, 0.8963390588760376], "11": [381.3343200683594, 475.693603515625, 0.045449722558259964], "12": [199.6591796875, 467.9097900390625, 0.054680246859788895], "13": [433.5708923339844, 382.1206970214844, 0.000779940455686301], "14": [227.11842346191406, 365.3668212890625, 0.0010110036237165332], "15": [403.59619140625, 456.1180725097656, 0.000111207235022448], "16": [255.16525268554688, 444.3453369140625, 0.00013443693751469254]}} +{"t": 46.985401, "tracked": true, "track_id": 1, "bbox": [19.378320693969727, 0.0, 613.3521728515625, 478.65838623046875], "det_conf": 0.9328696131706238, "mean_kpt_conf": 0.94153292612596, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9106551773427134, "right_lift": -0.8770664286070888, "left_bend": 0.4189174883916643, "right_bend": 0.4922972760650989}, "keypoints": {"0": [331.6138916015625, 43.02008056640625, 0.9995079040527344], "1": [356.7729187011719, 19.196029663085938, 0.9982824325561523], "2": [302.3717346191406, 13.017074584960938, 0.9986034035682678], "3": [383.77752685546875, 46.93031311035156, 0.8953076004981995], "4": [251.83599853515625, 35.04829406738281, 0.9387065172195435], "5": [448.96441650390625, 206.9680633544922, 0.9943718910217285], "6": [161.1522674560547, 179.64761352539062, 0.9960147142410278], "7": [535.410400390625, 397.50225830078125, 0.8739824891090393], "8": [63.52024841308594, 357.9058837890625, 0.8875535726547241], "9": [491.5845642089844, 432.9902038574219, 0.8798456788063049], "10": [149.47314453125, 407.7230224609375, 0.8946859836578369], "11": [379.8972473144531, 480.0, 0.048233453184366226], "12": [195.6844482421875, 475.56768798828125, 0.05142143741250038], "13": [434.083984375, 378.44720458984375, 0.0007820078753866255], "14": [220.2327117919922, 362.12255859375, 0.0008860572706907988], "15": [399.91790771484375, 447.33099365234375, 0.00011100699339294806], "16": [246.70733642578125, 435.263916015625, 0.00011943377467105165]}} +{"t": 47.050471, "tracked": true, "track_id": 1, "bbox": [15.080641746520996, 0.0, 615.3748779296875, 478.2463073730469], "det_conf": 0.9212939739227295, "mean_kpt_conf": 0.9339351058006287, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9161496104675468, "right_lift": -0.8993220592343375, "left_bend": 0.45390725015363326, "right_bend": 0.5188385005546619}, "keypoints": {"0": [326.9231262207031, 41.01884460449219, 0.9994348883628845], "1": [353.5655517578125, 16.71722412109375, 0.998185932636261], "2": [298.7771301269531, 9.539337158203125, 0.9984079003334045], "3": [381.97259521484375, 43.676483154296875, 0.9140260219573975], "4": [248.64959716796875, 28.795791625976562, 0.9358806610107422], "5": [451.18408203125, 209.95672607421875, 0.994438886642456], "6": [151.802490234375, 181.25564575195312, 0.9962032437324524], "7": [535.7252197265625, 403.1834716796875, 0.8438845276832581], "8": [64.72805786132812, 360.3324890136719, 0.860935628414154], "9": [482.72454833984375, 436.2083740234375, 0.8569904565811157], "10": [156.13656616210938, 398.2698669433594, 0.8748980164527893], "11": [379.10687255859375, 480.0, 0.04561449959874153], "12": [189.35647583007812, 480.0, 0.04997006803750992], "13": [429.8866882324219, 392.9034423828125, 0.0006922645261511207], "14": [225.72372436523438, 376.2987060546875, 0.0008105386514216661], "15": [386.1573486328125, 454.82305908203125, 9.34188356040977e-05], "16": [270.2471618652344, 439.6737060546875, 0.00010347778152208775]}} +{"t": 47.118555, "tracked": true, "track_id": 1, "bbox": [7.457586765289307, 0.49920034408569336, 616.3785400390625, 478.306884765625], "det_conf": 0.9168022871017456, "mean_kpt_conf": 0.9317251172932711, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9184598237973627, "right_lift": -0.8849136031380352, "left_bend": 0.4559322465831309, "right_bend": 0.4982175411107578}, "keypoints": {"0": [324.9877624511719, 38.934906005859375, 0.999411940574646], "1": [352.7264709472656, 13.7099609375, 0.9982689619064331], "2": [295.20263671875, 7.540618896484375, 0.9981696605682373], "3": [383.6456298828125, 41.2987060546875, 0.9200024604797363], "4": [244.75735473632812, 29.184402465820312, 0.9165728092193604], "5": [451.3614807128906, 205.6883544921875, 0.9936652183532715], "6": [155.07493591308594, 179.56234741210938, 0.9955346584320068], "7": [533.886962890625, 397.32830810546875, 0.8391813635826111], "8": [61.794219970703125, 356.79144287109375, 0.8596122860908508], "9": [482.27386474609375, 428.6235656738281, 0.8556548953056335], "10": [133.52182006835938, 395.05816650390625, 0.8729020357131958], "11": [372.6187744140625, 480.0, 0.0402512401342392], "12": [184.8465118408203, 474.3558349609375, 0.04473463445901871], "13": [408.48797607421875, 379.8255920410156, 0.0006860772846266627], "14": [203.15997314453125, 363.196533203125, 0.0007958535570651293], "15": [356.0461120605469, 443.6997375488281, 9.838250116445124e-05], "16": [231.91749572753906, 430.44830322265625, 0.00010850954276975244]}} +{"t": 47.183539, "tracked": true, "track_id": 1, "bbox": [5.312324047088623, 0.14872711896896362, 617.4717407226562, 477.96661376953125], "det_conf": 0.9187535643577576, "mean_kpt_conf": 0.9338905161077325, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9228614879587627, "right_lift": -0.8998070063246767, "left_bend": 0.47958390719860755, "right_bend": 0.5174840869380195}, "keypoints": {"0": [324.21142578125, 37.703125, 0.9994317889213562], "1": [351.83355712890625, 12.717422485351562, 0.9981644749641418], "2": [294.45574951171875, 6.3228607177734375, 0.9982737302780151], "3": [381.4136047363281, 40.62730407714844, 0.9079920649528503], "4": [243.55905151367188, 27.82861328125, 0.9257741570472717], "5": [449.8645935058594, 204.28599548339844, 0.9946503043174744], "6": [148.9730682373047, 176.122802734375, 0.9955676198005676], "7": [533.37451171875, 404.39422607421875, 0.8619815707206726], "8": [59.1812744140625, 361.3106994628906, 0.8593411445617676], "9": [489.343017578125, 426.1816101074219, 0.8631024360656738], "10": [132.1597137451172, 391.868408203125, 0.8685163855552673], "11": [369.10736083984375, 480.0, 0.04065245762467384], "12": [178.088134765625, 480.0, 0.0417342334985733], "13": [414.5264892578125, 377.28887939453125, 0.0006337867816910148], "14": [200.71307373046875, 360.8497009277344, 0.0006925687193870544], "15": [362.36358642578125, 447.58990478515625, 8.94387558219023e-05], "16": [232.31008911132812, 435.8603210449219, 9.344815043732524e-05]}} +{"t": 47.274151, "tracked": true, "track_id": 1, "bbox": [4.8850789070129395, 0.0, 618.69091796875, 478.10504150390625], "det_conf": 0.9224075675010681, "mean_kpt_conf": 0.9307893026958812, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9315330996870561, "right_lift": -0.897437306912864, "left_bend": 0.4264519962538436, "right_bend": 0.5087798691913323}, "keypoints": {"0": [322.8137512207031, 35.94309997558594, 0.9991632699966431], "1": [350.87359619140625, 10.56072998046875, 0.9976832866668701], "2": [293.8233947753906, 4.5455322265625, 0.9972583055496216], "3": [382.0234069824219, 38.55793762207031, 0.9316664338111877], "4": [244.749755859375, 26.14642333984375, 0.911986231803894], "5": [459.2658386230469, 204.926513671875, 0.9953781366348267], "6": [144.39247131347656, 177.42276000976562, 0.9962862730026245], "7": [538.300537109375, 407.3797302246094, 0.8639132380485535], "8": [53.51519775390625, 362.2989501953125, 0.8663364052772522], "9": [493.4362487792969, 438.2874450683594, 0.8328990936279297], "10": [124.74043273925781, 394.9029846191406, 0.8461116552352905], "11": [376.42681884765625, 480.0, 0.05016041174530983], "12": [175.32662963867188, 480.0, 0.05275142937898636], "13": [423.93768310546875, 384.13238525390625, 0.0005662436014972627], "14": [191.38075256347656, 369.8882141113281, 0.0006383914733305573], "15": [362.1214904785156, 450.95947265625, 7.382356852758676e-05], "16": [220.4984130859375, 442.3162536621094, 7.967391866259277e-05]}} +{"t": 47.335139, "tracked": true, "track_id": 1, "bbox": [4.556373119354248, 0.0, 618.262451171875, 478.452392578125], "det_conf": 0.924809455871582, "mean_kpt_conf": 0.9324472113089128, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9289805205446698, "right_lift": -0.895247432869592, "left_bend": 0.4071706321541044, "right_bend": 0.4668306335674102}, "keypoints": {"0": [323.2437744140625, 34.08711242675781, 0.9993044137954712], "1": [351.2336120605469, 9.119125366210938, 0.9979619979858398], "2": [293.1268310546875, 3.059722900390625, 0.9977803826332092], "3": [382.25335693359375, 37.52140808105469, 0.9215258359909058], "4": [242.00123596191406, 25.69976806640625, 0.9139948487281799], "5": [455.0855407714844, 202.9473114013672, 0.9952740669250488], "6": [144.7935333251953, 175.47811889648438, 0.9959190487861633], "7": [533.9317016601562, 400.8421630859375, 0.8753586411476135], "8": [55.30293273925781, 355.2845458984375, 0.8687019348144531], "9": [489.7723388671875, 435.8836669921875, 0.8426728248596191], "10": [118.15083312988281, 395.2156066894531, 0.8484253287315369], "11": [370.42010498046875, 480.0, 0.05892622843384743], "12": [171.33961486816406, 480.0, 0.059426214545965195], "13": [422.36358642578125, 390.3740539550781, 0.0005717125604860485], "14": [188.40774536132812, 375.5202941894531, 0.0006179917836561799], "15": [364.09088134765625, 448.39312744140625, 7.189220195868984e-05], "16": [213.54354858398438, 439.67181396484375, 7.48004240449518e-05]}} +{"t": 47.395611, "tracked": true, "track_id": 1, "bbox": [4.533954620361328, 0.17568747699260712, 618.458984375, 478.67645263671875], "det_conf": 0.9263178110122681, "mean_kpt_conf": 0.9267241033640775, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.932198001841446, "right_lift": -0.9059199482180914, "left_bend": 0.374806083699454, "right_bend": 0.46941809211008034}, "keypoints": {"0": [323.39630126953125, 34.094879150390625, 0.9992673993110657], "1": [351.6553649902344, 7.75177001953125, 0.9977409839630127], "2": [292.7799377441406, 1.661376953125, 0.9976282715797424], "3": [382.51171875, 34.08747863769531, 0.898342490196228], "4": [239.91961669921875, 21.845657348632812, 0.9113308191299438], "5": [454.73248291015625, 202.25914001464844, 0.995317816734314], "6": [142.27020263671875, 176.23867797851562, 0.9951009154319763], "7": [532.7771606445312, 403.26300048828125, 0.8784265518188477], "8": [55.39036560058594, 362.1080017089844, 0.8407703638076782], "9": [495.96392822265625, 438.50994873046875, 0.8472028970718384], "10": [119.37593078613281, 399.88458251953125, 0.8328366279602051], "11": [374.603271484375, 480.0, 0.057347387075424194], "12": [174.91941833496094, 480.0, 0.052308499813079834], "13": [426.05792236328125, 393.4525451660156, 0.0005953128566034138], "14": [196.80850219726562, 381.2268371582031, 0.0005804802640341222], "15": [363.3296813964844, 449.5578918457031, 7.277642725966871e-05], "16": [225.0474090576172, 443.04302978515625, 6.993936403887346e-05]}} +{"t": 47.45075, "tracked": true, "track_id": 1, "bbox": [3.329318046569824, 0.23176605999469757, 617.1282348632812, 478.5741271972656], "det_conf": 0.9265941381454468, "mean_kpt_conf": 0.9182900948957964, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9358257299570564, "right_lift": -0.8983402536672239, "left_bend": 0.47305669932238825, "right_bend": 0.4918774852945521}, "keypoints": {"0": [322.8649597167969, 32.769134521484375, 0.9989898800849915], "1": [352.6192626953125, 6.29901123046875, 0.9969090819358826], "2": [292.87530517578125, 0.0, 0.9967515468597412], "3": [384.7292175292969, 34.15913391113281, 0.8945403099060059], "4": [240.57867431640625, 19.102691650390625, 0.8953867554664612], "5": [457.3194580078125, 204.49575805664062, 0.9938315153121948], "6": [142.0611572265625, 174.280517578125, 0.9948246479034424], "7": [534.8300170898438, 410.2942810058594, 0.837108314037323], "8": [49.63050842285156, 363.29510498046875, 0.8378596305847168], "9": [488.7025451660156, 432.283935546875, 0.8214743137359619], "10": [112.92430114746094, 396.273681640625, 0.8335150480270386], "11": [372.5657958984375, 480.0, 0.04007349908351898], "12": [171.62954711914062, 479.1138916015625, 0.041710689663887024], "13": [415.4314880371094, 382.55224609375, 0.0005474091158248484], "14": [188.25210571289062, 365.72528076171875, 0.0006002325098961592], "15": [352.1474609375, 445.159423828125, 7.31977925170213e-05], "16": [217.19351196289062, 433.7888488769531, 7.676106906728819e-05]}} +{"t": 47.511298, "tracked": true, "track_id": 1, "bbox": [2.808542251586914, 0.25412988662719727, 616.1167602539062, 478.52197265625], "det_conf": 0.927575945854187, "mean_kpt_conf": 0.9238007068634033, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9340935033541986, "right_lift": -0.8920891855673091, "left_bend": 0.44732015642502393, "right_bend": 0.4983028730497589}, "keypoints": {"0": [322.9411926269531, 31.185638427734375, 0.9987772107124329], "1": [352.26715087890625, 5.02557373046875, 0.9962375164031982], "2": [293.0680236816406, 0.0, 0.995854914188385], "3": [383.70928955078125, 33.47691345214844, 0.880897045135498], "4": [240.62380981445312, 18.399276733398438, 0.8764954805374146], "5": [455.85382080078125, 203.71737670898438, 0.9939209222793579], "6": [141.16302490234375, 172.82469177246094, 0.9939193725585938], "7": [534.866943359375, 410.43939208984375, 0.8733614683151245], "8": [45.614044189453125, 361.4635009765625, 0.8410142064094543], "9": [488.29803466796875, 437.76141357421875, 0.8603351712226868], "10": [110.38235473632812, 394.7049255371094, 0.8509944677352905], "11": [372.6185302734375, 480.0, 0.04815007746219635], "12": [171.0454559326172, 480.0, 0.044924601912498474], "13": [425.14227294921875, 388.7061462402344, 0.0005608896026387811], "14": [192.14508056640625, 372.0112609863281, 0.0005541861755773425], "15": [368.57965087890625, 452.6216125488281, 6.542974733747542e-05], "16": [218.81436157226562, 440.9477844238281, 6.390800990629941e-05]}} +{"t": 47.571272, "tracked": true, "track_id": 1, "bbox": [2.5129234790802, 0.46545496582984924, 614.6467895507812, 478.68463134765625], "det_conf": 0.9284690022468567, "mean_kpt_conf": 0.9108856049450961, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9406629908080264, "right_lift": -0.8970717312517734, "left_bend": 0.4532798735792775, "right_bend": 0.4785600427673003}, "keypoints": {"0": [322.565673828125, 28.026199340820312, 0.9982032775878906], "1": [353.308837890625, 1.8631134033203125, 0.9949878454208374], "2": [292.2999267578125, 0.0, 0.9933285713195801], "3": [386.6966552734375, 31.943923950195312, 0.8718076348304749], "4": [239.35107421875, 15.618545532226562, 0.8157758116722107], "5": [458.42657470703125, 204.8304443359375, 0.9925069212913513], "6": [141.11346435546875, 172.7095947265625, 0.9917024970054626], "7": [533.430908203125, 412.7438659667969, 0.8641533851623535], "8": [48.107391357421875, 361.5214538574219, 0.8111010789871216], "9": [486.44781494140625, 437.9850158691406, 0.8561332821846008], "10": [107.00447082519531, 395.6401062011719, 0.8300413489341736], "11": [372.18756103515625, 480.0, 0.04730404168367386], "12": [169.8982391357422, 480.0, 0.04252389818429947], "13": [416.111328125, 391.52044677734375, 0.000575660087633878], "14": [190.67140197753906, 373.7611083984375, 0.000545211136341095], "15": [352.1749267578125, 450.8798828125, 6.868900527479127e-05], "16": [219.9263916015625, 438.448974609375, 6.578204192919657e-05]}} +{"t": 47.63133, "tracked": true, "track_id": 1, "bbox": [2.254056453704834, 0.51242995262146, 613.6031494140625, 478.5390930175781], "det_conf": 0.9247447848320007, "mean_kpt_conf": 0.902603187344291, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9465971669907286, "right_lift": -0.8992768129247469, "left_bend": 0.5299324712450127, "right_bend": 0.503249847654146}, "keypoints": {"0": [322.0477294921875, 27.752227783203125, 0.9973898530006409], "1": [352.9803161621094, 2.0518798828125, 0.9928621649742126], "2": [292.9745178222656, 0.0, 0.9906469583511353], "3": [386.14410400390625, 32.94502258300781, 0.8689967393875122], "4": [241.0234375, 14.398696899414062, 0.8073545694351196], "5": [459.462158203125, 208.57489013671875, 0.9918031096458435], "6": [138.0946807861328, 174.2423858642578, 0.9916718602180481], "7": [530.5595703125, 417.31158447265625, 0.8422905802726746], "8": [45.49322509765625, 364.635986328125, 0.7974991202354431], "9": [478.60150146484375, 429.71026611328125, 0.8359252214431763], "10": [110.13973999023438, 395.265869140625, 0.8121948838233948], "11": [372.58837890625, 480.0, 0.046705614775419235], "12": [167.4261932373047, 480.0, 0.04358672350645065], "13": [418.4940490722656, 397.1679992675781, 0.0005579188582487404], "14": [190.56204223632812, 378.2018127441406, 0.000545889197383076], "15": [355.4471435546875, 453.27581787109375, 6.452995876315981e-05], "16": [225.26910400390625, 439.74737548828125, 6.336923979688436e-05]}} +{"t": 47.696024, "tracked": true, "track_id": 1, "bbox": [1.6119645833969116, 0.3648175597190857, 610.9833984375, 478.2284240722656], "det_conf": 0.9246482849121094, "mean_kpt_conf": 0.8999589627439325, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9493017426971745, "right_lift": -0.8989529810224778, "left_bend": 0.5223566504572219, "right_bend": 0.48509979459555397}, "keypoints": {"0": [323.24688720703125, 26.3687744140625, 0.9964148998260498], "1": [354.5804138183594, 0.9074249267578125, 0.9895888566970825], "2": [294.08978271484375, 0.0, 0.9866834282875061], "3": [387.51300048828125, 32.6363525390625, 0.8412235379219055], "4": [241.47869873046875, 13.073211669921875, 0.7784557342529297], "5": [461.01519775390625, 208.94273376464844, 0.9913422465324402], "6": [137.03851318359375, 173.11618041992188, 0.990856409072876], "7": [530.202880859375, 417.87091064453125, 0.8505930304527283], "8": [44.430267333984375, 363.1661376953125, 0.803824245929718], "9": [476.78973388671875, 431.484130859375, 0.8491682410240173], "10": [106.21820068359375, 396.93975830078125, 0.8213979601860046], "11": [367.98712158203125, 480.0, 0.04674343019723892], "12": [162.66207885742188, 480.0, 0.043641407042741776], "13": [402.9515380859375, 397.359375, 0.0005206780624575913], "14": [184.927001953125, 377.2101135253906, 0.0005040043615736067], "15": [329.4618225097656, 453.5086364746094, 5.6165466958191246e-05], "16": [221.41148376464844, 439.1722412109375, 5.443150439532474e-05]}} +{"t": 47.755416, "tracked": true, "track_id": 1, "bbox": [1.4252610206604004, 0.3264942765235901, 610.7385864257812, 477.8720397949219], "det_conf": 0.9238162636756897, "mean_kpt_conf": 0.8805493766611273, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9589767585198161, "right_lift": -0.899480220510108, "left_bend": 0.5905217833996087, "right_bend": 0.5183442592879653}, "keypoints": {"0": [324.64764404296875, 24.307113647460938, 0.9930526614189148], "1": [355.1358642578125, 0.0, 0.9787130355834961], "2": [293.9661560058594, 0.0, 0.975915789604187], "3": [388.2273254394531, 28.057754516601562, 0.7809404730796814], "4": [240.51771545410156, 13.3497314453125, 0.7444885969161987], "5": [463.85870361328125, 210.48074340820312, 0.9872485995292664], "6": [139.03195190429688, 175.29901123046875, 0.9891164898872375], "7": [526.9749755859375, 423.99151611328125, 0.796756386756897], "8": [46.811248779296875, 365.13427734375, 0.7963762283325195], "9": [465.0850524902344, 424.17987060546875, 0.819684624671936], "10": [111.70014953613281, 392.15582275390625, 0.8237502574920654], "11": [368.18133544921875, 480.0, 0.038301900029182434], "12": [163.027099609375, 480.0, 0.040857549756765366], "13": [396.49700927734375, 398.572265625, 0.00045214188867248595], "14": [184.68032836914062, 379.61260986328125, 0.0004990883753634989], "15": [319.5205993652344, 445.22802734375, 4.8793433961691335e-05], "16": [222.68603515625, 438.7039794921875, 5.157759369467385e-05]}} +{"t": 47.820421, "tracked": true, "track_id": 1, "bbox": [2.8910014629364014, 0.19764932990074158, 609.1819458007812, 477.7718200683594], "det_conf": 0.9207143187522888, "mean_kpt_conf": 0.8890626159581271, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.950239378506197, "right_lift": -0.8988151023793842, "left_bend": 0.5455636617770019, "right_bend": 0.5361488681244618}, "keypoints": {"0": [325.30279541015625, 23.592575073242188, 0.9958745837211609], "1": [355.05267333984375, 0.0, 0.9873621463775635], "2": [294.0197448730469, 0.0, 0.9866216778755188], "3": [387.7309875488281, 29.42669677734375, 0.7952814698219299], "4": [240.56570434570312, 17.149459838867188, 0.7857980132102966], "5": [460.3093566894531, 206.44790649414062, 0.9870761036872864], "6": [141.4071044921875, 176.24600219726562, 0.9890994429588318], "7": [529.798583984375, 418.41265869140625, 0.8010988235473633], "8": [48.08049011230469, 367.61724853515625, 0.7930865287780762], "9": [473.6409606933594, 428.263671875, 0.8269389271736145], "10": [112.47409057617188, 390.40814208984375, 0.8314510583877563], "11": [368.1263427734375, 480.0, 0.035209864377975464], "12": [166.6895751953125, 480.0, 0.03638935089111328], "13": [408.81011962890625, 386.3505859375, 0.000543437316082418], "14": [196.3895263671875, 370.75872802734375, 0.0005955063970759511], "15": [340.96844482421875, 442.49383544921875, 6.713237235089764e-05], "16": [231.50485229492188, 436.7354736328125, 7.081220246618614e-05]}} +{"t": 47.87583, "tracked": true, "track_id": 1, "bbox": [3.381223201751709, 0.0, 607.3904418945312, 477.7803955078125], "det_conf": 0.9206531047821045, "mean_kpt_conf": 0.8791273453018882, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9617839292469723, "right_lift": -0.8972682806926541, "left_bend": 0.5904211291868277, "right_bend": 0.5502433444260881}, "keypoints": {"0": [327.2218933105469, 23.124313354492188, 0.9934397339820862], "1": [358.30682373046875, 0.0, 0.9801493287086487], "2": [296.602294921875, 0.0, 0.977319061756134], "3": [392.32666015625, 28.136444091796875, 0.7784666419029236], "4": [244.08102416992188, 13.6629638671875, 0.7329662442207336], "5": [463.70135498046875, 210.1041259765625, 0.9845779538154602], "6": [144.41983032226562, 174.3577117919922, 0.9880962371826172], "7": [525.5150756835938, 427.2311096191406, 0.7757256031036377], "8": [49.6385498046875, 366.9896240234375, 0.7907184362411499], "9": [466.6270751953125, 426.835693359375, 0.8276422619819641], "10": [117.75209045410156, 388.01556396484375, 0.841299295425415], "11": [366.8479309082031, 480.0, 0.029763799160718918], "12": [167.093994140625, 479.9967041015625, 0.03310049697756767], "13": [393.09088134765625, 386.88043212890625, 0.0004983101971447468], "14": [197.35848999023438, 368.1378173828125, 0.0005770658608525991], "15": [319.3505859375, 440.64984130859375, 5.901592885493301e-05], "16": [240.58888244628906, 434.71185302734375, 6.492734974017367e-05]}} +{"t": 47.935277, "tracked": true, "track_id": 1, "bbox": [3.714024543762207, 0.02691791020333767, 607.9542846679688, 478.0184631347656], "det_conf": 0.9213564991950989, "mean_kpt_conf": 0.8976261886683378, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9547346598601251, "right_lift": -0.8866294726884008, "left_bend": 0.591499347500859, "right_bend": 0.5753193480681833}, "keypoints": {"0": [327.32098388671875, 24.2301025390625, 0.995682954788208], "1": [359.1275634765625, 0.0, 0.9862748384475708], "2": [297.49566650390625, 0.0, 0.9857268929481506], "3": [393.6682434082031, 30.69537353515625, 0.7927975654602051], "4": [246.03518676757812, 14.29791259765625, 0.7827560305595398], "5": [457.9658203125, 207.159912109375, 0.9841238856315613], "6": [147.79812622070312, 173.1041717529297, 0.9900500774383545], "7": [523.66259765625, 418.022705078125, 0.7888166904449463], "8": [47.0069580078125, 366.33270263671875, 0.8320173621177673], "9": [469.143310546875, 418.81744384765625, 0.8544670343399048], "10": [121.14646911621094, 384.8037414550781, 0.8811747431755066], "11": [364.17584228515625, 480.0, 0.029844895005226135], "12": [168.79400634765625, 475.3193054199219, 0.03545130789279938], "13": [397.61163330078125, 383.5299987792969, 0.0005325794918462634], "14": [198.6446990966797, 365.0909423828125, 0.0006529540405608714], "15": [339.89794921875, 447.3346862792969, 6.186485552461818e-05], "16": [237.53512573242188, 437.35968017578125, 7.066412945277989e-05]}} +{"t": 47.995567, "tracked": true, "track_id": 1, "bbox": [4.510882377624512, 0.2842118740081787, 608.3391723632812, 478.12432861328125], "det_conf": 0.9248343110084534, "mean_kpt_conf": 0.8953579339114103, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9611504516022352, "right_lift": -0.8849236242996258, "left_bend": 0.5568516511195887, "right_bend": 0.5737277418135257}, "keypoints": {"0": [328.1187744140625, 24.736587524414062, 0.9964563250541687], "1": [361.25128173828125, 0.0, 0.9903115034103394], "2": [298.68896484375, 0.0, 0.9861128926277161], "3": [398.8621520996094, 27.94384765625, 0.8440598845481873], "4": [248.18746948242188, 11.238845825195312, 0.722665011882782], "5": [464.7532653808594, 210.13247680664062, 0.986611008644104], "6": [148.91433715820312, 176.589599609375, 0.9901160597801208], "7": [525.1206665039062, 420.338623046875, 0.8006114363670349], "8": [49.263580322265625, 365.9313659667969, 0.8071685433387756], "9": [467.1588134765625, 426.21575927734375, 0.8582925200462341], "10": [112.94677734375, 382.3854064941406, 0.8665320873260498], "11": [367.12811279296875, 480.0, 0.03458891436457634], "12": [169.42018127441406, 480.0, 0.037635061889886856], "13": [396.0822448730469, 400.57623291015625, 0.0004895047168247402], "14": [206.28172302246094, 382.7638244628906, 0.0005536681856028736], "15": [324.33892822265625, 447.9857482910156, 5.4350337450159714e-05], "16": [248.00921630859375, 438.11590576171875, 5.955959568382241e-05]}} +{"t": 48.055445, "tracked": true, "track_id": 1, "bbox": [4.891702651977539, 0.29244935512542725, 615.6793823242188, 477.5635681152344], "det_conf": 0.9201341271400452, "mean_kpt_conf": 0.9099417979067023, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9774506546014285, "right_lift": -0.8388193543605679, "left_bend": 0.495745125050604, "right_bend": 0.5874585674514112}, "keypoints": {"0": [329.6087646484375, 22.92974853515625, 0.9980341792106628], "1": [365.0261535644531, 0.0, 0.9956606030464172], "2": [298.9966125488281, 0.0, 0.9930031895637512], "3": [408.8866882324219, 25.595016479492188, 0.9100046753883362], "4": [248.17752075195312, 12.824630737304688, 0.7991007566452026], "5": [474.30133056640625, 209.97645568847656, 0.9844859838485718], "6": [146.38462829589844, 177.65652465820312, 0.9946513772010803], "7": [516.9813232421875, 407.53662109375, 0.7306510806083679], "8": [33.036956787109375, 352.30108642578125, 0.8676367402076721], "9": [461.32489013671875, 420.34136962890625, 0.8347890973091125], "10": [126.5423583984375, 381.32061767578125, 0.9013420939445496], "11": [381.11798095703125, 480.0, 0.03993646427989006], "12": [174.32455444335938, 480.0, 0.06004688888788223], "13": [392.5743408203125, 406.38006591796875, 0.0005200603045523167], "14": [193.61000061035156, 392.73681640625, 0.0007835839642211795], "15": [331.2433166503906, 448.3015441894531, 5.943346695858054e-05], "16": [245.7035675048828, 449.6651611328125, 8.066646114457399e-05]}} +{"t": 48.117421, "tracked": true, "track_id": 1, "bbox": [4.99275541305542, 0.8552205562591553, 614.7251586914062, 477.18438720703125], "det_conf": 0.9217727780342102, "mean_kpt_conf": 0.9067982977086847, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.959853896307395, "right_lift": -0.883500532556135, "left_bend": 0.5413295946613484, "right_bend": 0.572945040421379}, "keypoints": {"0": [333.5363464355469, 25.64434814453125, 0.9971134662628174], "1": [366.083984375, 0.0, 0.9915632009506226], "2": [304.6792297363281, 0.0, 0.9896982312202454], "3": [400.86737060546875, 28.020477294921875, 0.8392552733421326], "4": [251.73651123046875, 7.8520355224609375, 0.800390362739563], "5": [464.080322265625, 209.70266723632812, 0.9893229603767395], "6": [146.5648193359375, 172.89459228515625, 0.9914436936378479], "7": [524.1597900390625, 415.2906188964844, 0.8244459629058838], "8": [47.041839599609375, 360.60369873046875, 0.8098390698432922], "9": [465.414794921875, 424.4381103515625, 0.8727302551269531], "10": [128.4670867919922, 382.1207275390625, 0.8689787983894348], "11": [366.0411682128906, 480.0, 0.04002952575683594], "12": [164.8300323486328, 479.89599609375, 0.040922388434410095], "13": [396.72222900390625, 396.2096252441406, 0.0006137842428870499], "14": [191.3104248046875, 377.055419921875, 0.0006323342095129192], "15": [333.98876953125, 446.32977294921875, 6.700387893943116e-05], "16": [233.97000122070312, 433.1350402832031, 6.7419525294099e-05]}} +{"t": 48.177898, "tracked": true, "track_id": 1, "bbox": [5.107861042022705, 1.3178316354751587, 618.5125732421875, 476.8267822265625], "det_conf": 0.924934983253479, "mean_kpt_conf": 0.9268882382999767, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9718593821416955, "right_lift": -0.8143606116024277, "left_bend": 0.4258552095962925, "right_bend": 0.5882115350211106}, "keypoints": {"0": [331.97308349609375, 24.973236083984375, 0.9991400241851807], "1": [368.14532470703125, 0.0, 0.9982619881629944], "2": [301.8500061035156, 0.0, 0.9968540072441101], "3": [412.8069763183594, 27.888107299804688, 0.9463637471199036], "4": [251.30116271972656, 12.346328735351562, 0.8587352633476257], "5": [473.7881164550781, 211.797607421875, 0.9887672066688538], "6": [149.453369140625, 178.22726440429688, 0.9963537454605103], "7": [519.8484497070312, 401.82916259765625, 0.7599549293518066], "8": [27.884231567382812, 348.8132019042969, 0.8828141689300537], "9": [468.6668701171875, 427.8746337890625, 0.8553515672683716], "10": [134.60618591308594, 386.8104248046875, 0.9131739735603333], "11": [385.05609130859375, 480.0, 0.04092058166861534], "12": [180.05747985839844, 480.0, 0.061190444976091385], "13": [395.8127136230469, 405.2611999511719, 0.0005617956048808992], "14": [195.77760314941406, 390.45709228515625, 0.0008262008777819574], "15": [347.80804443359375, 450.2483215332031, 6.797186506446451e-05], "16": [249.0194854736328, 446.9462890625, 9.133682033279911e-05]}} +{"t": 48.236149, "tracked": true, "track_id": 1, "bbox": [4.950232982635498, 1.0007152557373047, 619.4814453125, 476.34490966796875], "det_conf": 0.927613377571106, "mean_kpt_conf": 0.9256686514074152, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9733272185606444, "right_lift": -0.8101248500094002, "left_bend": 0.4332750006210912, "right_bend": 0.6026601686633791}, "keypoints": {"0": [335.4217529296875, 24.931854248046875, 0.9991699457168579], "1": [371.0157470703125, 0.0, 0.9983172416687012], "2": [304.8083801269531, 0.0, 0.9971076846122742], "3": [414.1675720214844, 30.642913818359375, 0.9476751089096069], "4": [252.68301391601562, 14.870010375976562, 0.8721808195114136], "5": [477.3201904296875, 214.416748046875, 0.9890030026435852], "6": [149.09146118164062, 179.97506713867188, 0.9963662624359131], "7": [522.33447265625, 405.39129638671875, 0.7504902482032776], "8": [26.769775390625, 349.00634765625, 0.8751698732376099], "9": [460.2520751953125, 434.702392578125, 0.8472007513046265], "10": [137.62542724609375, 383.77410888671875, 0.9096742272377014], "11": [388.20318603515625, 480.0, 0.03902288153767586], "12": [180.8662109375, 480.0, 0.057975515723228455], "13": [398.1595153808594, 402.83642578125, 0.0005853195325471461], "14": [197.07269287109375, 386.9852294921875, 0.0008532415959052742], "15": [347.46490478515625, 452.60992431640625, 7.237736281240359e-05], "16": [250.36741638183594, 447.1080322265625, 9.673000749899074e-05]}} +{"t": 48.297171, "tracked": true, "track_id": 1, "bbox": [6.422410011291504, 1.068387508392334, 618.6980590820312, 475.83953857421875], "det_conf": 0.9231681227684021, "mean_kpt_conf": 0.9218636913733049, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9718213552992546, "right_lift": -0.8101878587412873, "left_bend": 0.45387509477096755, "right_bend": 0.611720944186152}, "keypoints": {"0": [336.85101318359375, 24.855499267578125, 0.9987648725509644], "1": [370.2633972167969, 0.0, 0.9973334074020386], "2": [306.1325378417969, 0.0, 0.9961137771606445], "3": [410.8553466796875, 27.777938842773438, 0.935141384601593], "4": [254.4776611328125, 15.168777465820312, 0.8869168162345886], "5": [476.4566650390625, 209.60043334960938, 0.9883807897567749], "6": [151.53419494628906, 175.69155883789062, 0.9965387582778931], "7": [523.4736328125, 403.442138671875, 0.731505811214447], "8": [27.624923706054688, 346.9554138183594, 0.8859759569168091], "9": [465.99658203125, 426.59027099609375, 0.8176626563072205], "10": [149.6605682373047, 381.43267822265625, 0.9061663746833801], "11": [393.40863037109375, 480.0, 0.043587151914834976], "12": [187.47740173339844, 480.0, 0.06914263218641281], "13": [406.8638916015625, 408.4112854003906, 0.0005396331544034183], "14": [202.26242065429688, 394.0391540527344, 0.000852916797157377], "15": [360.1370544433594, 453.243408203125, 6.39986974420026e-05], "16": [252.2394561767578, 453.25457763671875, 8.952989446697757e-05]}} +{"t": 48.356071, "tracked": true, "track_id": 1, "bbox": [9.316302299499512, 1.362935185432434, 621.090087890625, 476.7270202636719], "det_conf": 0.925574779510498, "mean_kpt_conf": 0.9121833606199785, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.969790719267901, "right_lift": -0.7911456296898298, "left_bend": 0.38636667716708384, "right_bend": 0.620581055851283}, "keypoints": {"0": [335.9439697265625, 27.166458129882812, 0.9989312291145325], "1": [370.05712890625, 0.0, 0.9980331063270569], "2": [304.9664611816406, 0.0, 0.9965219497680664], "3": [414.47210693359375, 29.482406616210938, 0.9478399157524109], "4": [256.0359802246094, 20.64019775390625, 0.8702982068061829], "5": [479.6485290527344, 208.51910400390625, 0.9852924942970276], "6": [158.80567932128906, 179.1015625, 0.9961225390434265], "7": [527.1936645507812, 397.53741455078125, 0.6808603405952454], "8": [29.5784912109375, 346.25799560546875, 0.8775383830070496], "9": [473.6931457519531, 434.40789794921875, 0.7839354872703552], "10": [158.68951416015625, 383.2865905761719, 0.8986433148384094], "11": [399.3444519042969, 480.0, 0.036553654819726944], "12": [197.1533660888672, 480.0, 0.062480755150318146], "13": [404.890380859375, 408.5065002441406, 0.00048450048780068755], "14": [210.35757446289062, 397.2182312011719, 0.0008294322760775685], "15": [359.506103515625, 455.4661865234375, 6.587136158486828e-05], "16": [256.8608093261719, 459.1900634765625, 9.848876652540639e-05]}} +{"t": 48.419364, "tracked": true, "track_id": 1, "bbox": [11.985755920410156, 1.0914684534072876, 619.814208984375, 476.74041748046875], "det_conf": 0.9217632412910461, "mean_kpt_conf": 0.9168830622326244, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9689679314888582, "right_lift": -0.8042776973775299, "left_bend": 0.4361460877386721, "right_bend": 0.653561066733}, "keypoints": {"0": [336.6284484863281, 29.023696899414062, 0.9992122650146484], "1": [371.15069580078125, 0.0, 0.9984623193740845], "2": [304.8282165527344, 0.0, 0.9975107908248901], "3": [415.03204345703125, 30.11688232421875, 0.9474551677703857], "4": [253.534423828125, 19.993637084960938, 0.8974505066871643], "5": [478.82281494140625, 210.07830810546875, 0.9875732064247131], "6": [155.51065063476562, 181.22610473632812, 0.9966567754745483], "7": [527.4146728515625, 400.55780029296875, 0.6780056953430176], "8": [28.521240234375, 353.09674072265625, 0.8745410442352295], "9": [471.1235046386719, 427.77581787109375, 0.8000607490539551], "10": [169.76535034179688, 375.0090637207031, 0.9087851643562317], "11": [401.2515563964844, 480.0, 0.0369211882352829], "12": [199.01885986328125, 480.0, 0.06278536468744278], "13": [402.81634521484375, 408.544677734375, 0.0005671434919349849], "14": [219.1927490234375, 397.80126953125, 0.000969685846939683], "15": [351.5852966308594, 455.7428894042969, 7.504211680497974e-05], "16": [269.04998779296875, 457.5809020996094, 0.000111690882476978]}} +{"t": 48.477558, "tracked": true, "track_id": 1, "bbox": [16.91643524169922, 0.7220481038093567, 618.7261352539062, 477.16815185546875], "det_conf": 0.9218796491622925, "mean_kpt_conf": 0.915288735519756, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9676075934916726, "right_lift": -0.8081103912081136, "left_bend": 0.47424368062179667, "right_bend": 0.6444303481801755}, "keypoints": {"0": [338.1248779296875, 30.427734375, 0.9990710020065308], "1": [370.1000671386719, 0.5941619873046875, 0.9979250431060791], "2": [305.79852294921875, 0.0, 0.9974343180656433], "3": [410.6351318359375, 28.514007568359375, 0.9325472116470337], "4": [253.82008361816406, 21.5101318359375, 0.9179617762565613], "5": [478.60595703125, 209.05487060546875, 0.9874037504196167], "6": [155.26461791992188, 180.644775390625, 0.9970591068267822], "7": [528.7366943359375, 401.1925354003906, 0.6576640605926514], "8": [30.338607788085938, 352.03472900390625, 0.8894591927528381], "9": [472.21240234375, 420.94189453125, 0.7791577577590942], "10": [171.8697509765625, 377.22186279296875, 0.9124928712844849], "11": [405.1647644042969, 480.0, 0.04029780626296997], "12": [202.6786651611328, 480.0, 0.07376761734485626], "13": [412.14178466796875, 415.350341796875, 0.0005316705210134387], "14": [224.48806762695312, 405.25927734375, 0.0009920955635607243], "15": [358.33441162109375, 457.25518798828125, 6.749280146323144e-05], "16": [272.4794616699219, 463.70880126953125, 0.00010566870332695544]}} +{"t": 48.536394, "tracked": true, "track_id": 1, "bbox": [20.597063064575195, 0.7803313732147217, 609.0042724609375, 477.7171630859375], "det_conf": 0.9192594885826111, "mean_kpt_conf": 0.9239026687361978, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9525005669864306, "right_lift": -0.8715737814207489, "left_bend": 0.49121838878942686, "right_bend": 0.6317360703085222}, "keypoints": {"0": [341.245849609375, 33.044219970703125, 0.9990729093551636], "1": [370.7356262207031, 6.6507110595703125, 0.9974356293678284], "2": [310.3963623046875, 1.604736328125, 0.997502863407135], "3": [404.0227355957031, 35.994384765625, 0.9202555418014526], "4": [259.18505859375, 25.866104125976562, 0.9298433661460876], "5": [468.4205627441406, 208.57077026367188, 0.99139004945755], "6": [160.94818115234375, 182.21112060546875, 0.9959474205970764], "7": [531.7706298828125, 406.7109375, 0.7531655430793762], "8": [59.6729736328125, 362.2544250488281, 0.8409246802330017], "9": [458.5222473144531, 432.3779296875, 0.8417418003082275], "10": [177.51959228515625, 373.90380859375, 0.8956495523452759], "11": [381.51922607421875, 480.0, 0.03275425359606743], "12": [192.6776123046875, 475.75537109375, 0.04353151470422745], "13": [402.12078857421875, 391.29290771484375, 0.0007089721038937569], "14": [242.4387664794922, 379.19134521484375, 0.00099275354295969], "15": [334.81982421875, 453.36956787109375, 9.381449490319937e-05], "16": [294.6414489746094, 447.5048828125, 0.00011837603960884735]}} +{"t": 48.595371, "tracked": true, "track_id": 1, "bbox": [22.588354110717773, 0.35463276505470276, 606.8265380859375, 478.7530517578125], "det_conf": 0.9242343902587891, "mean_kpt_conf": 0.9301551309498873, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9543197123523153, "right_lift": -0.8760502164561407, "left_bend": 0.4686333622212342, "right_bend": 0.624381321285324}, "keypoints": {"0": [343.3115234375, 33.33592224121094, 0.9992737174034119], "1": [372.6845397949219, 7.279388427734375, 0.997940719127655], "2": [311.81500244140625, 2.4390716552734375, 0.9980927109718323], "3": [405.67596435546875, 37.04345703125, 0.9210178256034851], "4": [259.7342529296875, 27.618118286132812, 0.9399523735046387], "5": [470.346435546875, 206.33470153808594, 0.9920801520347595], "6": [160.65750122070312, 180.76177978515625, 0.9965571165084839], "7": [533.3171997070312, 407.4618225097656, 0.7752537131309509], "8": [58.9822998046875, 365.47540283203125, 0.8689492344856262], "9": [474.7610778808594, 432.35455322265625, 0.8407318592071533], "10": [174.97207641601562, 378.571533203125, 0.9018570184707642], "11": [386.26580810546875, 480.0, 0.03654498979449272], "12": [194.03305053710938, 475.9498291015625, 0.049901604652404785], "13": [409.810302734375, 391.16925048828125, 0.0006749253370799124], "14": [231.0420379638672, 380.60418701171875, 0.0009616296738386154], "15": [346.01202392578125, 455.8497314453125, 8.64553585415706e-05], "16": [276.384521484375, 452.9153137207031, 0.00010981916420860216]}} +{"t": 48.657743, "tracked": true, "track_id": 1, "bbox": [23.733131408691406, 0.0, 601.09326171875, 479.3792724609375], "det_conf": 0.9247134327888489, "mean_kpt_conf": 0.9273628159002825, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.95804604752328, "right_lift": -0.8684203470270461, "left_bend": 0.44225798701693964, "right_bend": 0.6145824256180461}, "keypoints": {"0": [343.74395751953125, 33.40519714355469, 0.9992737174034119], "1": [373.7627258300781, 8.16595458984375, 0.9981641173362732], "2": [313.5113220214844, 3.18994140625, 0.9981330037117004], "3": [408.0897216796875, 38.447540283203125, 0.9353293776512146], "4": [263.8407897949219, 28.270828247070312, 0.9346082210540771], "5": [466.9398498535156, 206.58114624023438, 0.990921139717102], "6": [165.08424377441406, 180.6040802001953, 0.9964679479598999], "7": [525.9427490234375, 403.80609130859375, 0.7588569521903992], "8": [61.957733154296875, 361.2252502441406, 0.8638443946838379], "9": [466.7118225097656, 434.04949951171875, 0.8304564356803894], "10": [176.59469604492188, 379.58624267578125, 0.894935667514801], "11": [379.88800048828125, 480.0, 0.040515001863241196], "12": [192.4403076171875, 475.7904052734375, 0.056313060224056244], "13": [407.830322265625, 397.33306884765625, 0.0007835974683985114], "14": [235.3668212890625, 386.3467102050781, 0.001134204212576151], "15": [353.8494873046875, 456.10809326171875, 0.00010850840772036463], "16": [285.0303649902344, 452.0291748046875, 0.00014053357881493866]}} +{"t": 48.715555, "tracked": true, "track_id": 1, "bbox": [24.956933975219727, 0.0, 590.70654296875, 480.0], "det_conf": 0.9258325695991516, "mean_kpt_conf": 0.9298659346320413, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.964827819322211, "right_lift": -0.8660222646396568, "left_bend": 0.45244732699529355, "right_bend": 0.6136663388783608}, "keypoints": {"0": [344.6337585449219, 34.66081237792969, 0.9993172883987427], "1": [375.4296875, 9.126708984375, 0.998222291469574], "2": [314.84454345703125, 3.3998260498046875, 0.9982190728187561], "3": [409.9613952636719, 38.13639831542969, 0.9349567890167236], "4": [264.77215576171875, 25.997955322265625, 0.9353352189064026], "5": [464.45489501953125, 206.37191772460938, 0.9904622435569763], "6": [167.33920288085938, 178.83575439453125, 0.996865451335907], "7": [517.9859619140625, 402.8408203125, 0.7508824467658997], "8": [63.60365295410156, 358.5083923339844, 0.8791221380233765], "9": [453.25531005859375, 431.3913269042969, 0.8366231918334961], "10": [177.41293334960938, 377.6360778808594, 0.9085191488265991], "11": [378.9871826171875, 480.0, 0.0428229384124279], "12": [194.7781982421875, 475.8399658203125, 0.0643911361694336], "13": [395.87811279296875, 402.4375915527344, 0.0008267459343187511], "14": [232.30210876464844, 389.5191650390625, 0.0012477552518248558], "15": [345.1386413574219, 457.22015380859375, 0.00010995579941663891], "16": [287.0351867675781, 450.02960205078125, 0.00014653493417426944]}} +{"t": 48.778073, "tracked": true, "track_id": 1, "bbox": [25.104679107666016, 0.0, 587.1472778320312, 480.0], "det_conf": 0.9246490001678467, "mean_kpt_conf": 0.9311161041259766, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9697089589641664, "right_lift": -0.8599978360285743, "left_bend": 0.4173816709655404, "right_bend": 0.6025007505127764}, "keypoints": {"0": [346.860595703125, 35.4173583984375, 0.9993491768836975], "1": [376.92950439453125, 9.801116943359375, 0.9981997013092041], "2": [316.1005859375, 4.4010009765625, 0.9982993006706238], "3": [410.5329895019531, 38.54444885253906, 0.9263561367988586], "4": [264.9077453613281, 27.569610595703125, 0.9384618401527405], "5": [465.58831787109375, 207.205322265625, 0.9912253022193909], "6": [169.51690673828125, 177.24948120117188, 0.9967600703239441], "7": [515.809326171875, 406.57940673828125, 0.7704606056213379], "8": [64.18930053710938, 354.7566833496094, 0.8837714791297913], "9": [456.9197082519531, 439.2353515625, 0.8321226835250854], "10": [169.9678955078125, 377.6916198730469, 0.9072708487510681], "11": [379.5784606933594, 480.0, 0.04527650028467178], "12": [195.2665557861328, 478.58123779296875, 0.06554816663265228], "13": [398.55780029296875, 404.9913330078125, 0.000730114639736712], "14": [228.4464569091797, 391.59136962890625, 0.0010699628619477153], "15": [342.195556640625, 457.1756591796875, 9.408881305716932e-05], "16": [273.2788391113281, 452.9544982910156, 0.00012159950711065903]}} +{"t": 48.836292, "tracked": true, "track_id": 1, "bbox": [25.750680923461914, 0.0, 584.0426635742188, 480.0], "det_conf": 0.9244441986083984, "mean_kpt_conf": 0.9338286844166842, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9741427510607265, "right_lift": -0.8575993601106002, "left_bend": 0.42164787578840207, "right_bend": 0.5773933325613313}, "keypoints": {"0": [346.73236083984375, 36.144256591796875, 0.9993398785591125], "1": [378.0512390136719, 11.31109619140625, 0.9982966780662537], "2": [317.0633239746094, 4.4159088134765625, 0.9981194138526917], "3": [412.2850341796875, 41.27423095703125, 0.9349622130393982], "4": [266.7771911621094, 26.77197265625, 0.9259476661682129], "5": [463.6181945800781, 206.97784423828125, 0.9912187457084656], "6": [171.25286865234375, 174.47047424316406, 0.9964917302131653], "7": [509.619384765625, 405.3182678222656, 0.7913374900817871], "8": [64.52774047851562, 352.42913818359375, 0.8821154832839966], "9": [448.80328369140625, 436.5213928222656, 0.8488131165504456], "10": [164.19198608398438, 382.939697265625, 0.9054731130599976], "11": [376.26849365234375, 480.0, 0.04309005290269852], "12": [193.72174072265625, 470.9183044433594, 0.05947628989815712], "13": [393.5802307128906, 389.5671081542969, 0.0008813681197352707], "14": [222.4192657470703, 373.4624938964844, 0.001207193243317306], "15": [342.1357116699219, 451.14849853515625, 0.00012486048217397183], "16": [269.5277099609375, 442.4610595703125, 0.00015553338744211942]}} +{"t": 48.895427, "tracked": true, "track_id": 1, "bbox": [25.935754776000977, 0.0, 579.6229248046875, 480.0], "det_conf": 0.9166238903999329, "mean_kpt_conf": 0.9317949956113641, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9748698979602314, "right_lift": -0.8582150157256625, "left_bend": 0.40654283739273134, "right_bend": 0.5619141318955972}, "keypoints": {"0": [346.0440368652344, 35.825286865234375, 0.9992738366127014], "1": [376.9993896484375, 11.486801147460938, 0.9981868863105774], "2": [316.99163818359375, 4.43768310546875, 0.9979404807090759], "3": [410.552978515625, 41.35835266113281, 0.9351302981376648], "4": [267.15606689453125, 26.814559936523438, 0.9211751818656921], "5": [461.21282958984375, 206.01251220703125, 0.991640567779541], "6": [169.55923461914062, 176.62030029296875, 0.996057391166687], "7": [505.81201171875, 401.17987060546875, 0.8083963990211487], "8": [64.0457763671875, 353.0374755859375, 0.8622698783874512], "9": [439.3207092285156, 439.09716796875, 0.8507683873176575], "10": [152.3592987060547, 384.7256164550781, 0.8889056444168091], "11": [372.31793212890625, 480.0, 0.05038059130311012], "12": [189.55575561523438, 473.14080810546875, 0.06167298182845116], "13": [399.78961181640625, 391.62841796875, 0.0010320983128622174], "14": [224.67442321777344, 377.46612548828125, 0.0012600189074873924], "15": [347.77362060546875, 452.24981689453125, 0.00014869436563458294], "16": [270.5536804199219, 442.6000671386719, 0.00017095328075811267]}} +{"t": 48.955532, "tracked": true, "track_id": 1, "bbox": [24.848054885864258, 0.0, 579.563232421875, 480.0], "det_conf": 0.9140579700469971, "mean_kpt_conf": 0.9360581040382385, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9747922702214431, "right_lift": -0.8562181928348619, "left_bend": 0.41711556068125927, "right_bend": 0.5626586184994771}, "keypoints": {"0": [345.2227783203125, 36.69926452636719, 0.9993083477020264], "1": [376.3074035644531, 13.037017822265625, 0.9983362555503845], "2": [316.2056884765625, 5.9268798828125, 0.9978867173194885], "3": [410.5622863769531, 44.46421813964844, 0.9461074471473694], "4": [267.4326477050781, 30.041671752929688, 0.9102045297622681], "5": [463.7196044921875, 208.96397399902344, 0.9926678538322449], "6": [170.6595458984375, 176.2173309326172, 0.9962654709815979], "7": [508.93060302734375, 406.491943359375, 0.8291702270507812], "8": [66.69804382324219, 348.5194091796875, 0.8753279447555542], "9": [441.6183166503906, 441.99853515625, 0.857642412185669], "10": [144.00640869140625, 376.3930969238281, 0.8937219381332397], "11": [367.9344482421875, 480.0, 0.052584677934646606], "12": [183.28021240234375, 476.21234130859375, 0.0634971335530281], "13": [399.4297180175781, 384.27056884765625, 0.001018580049276352], "14": [214.0210723876953, 367.352783203125, 0.0012556076981127262], "15": [344.22894287109375, 446.7179870605469, 0.00015585687651764601], "16": [253.71397399902344, 436.14306640625, 0.0001811857509892434]}} +{"t": 49.022735, "tracked": true, "track_id": 1, "bbox": [24.387540817260742, 0.0, 586.5343627929688, 480.0], "det_conf": 0.9069469571113586, "mean_kpt_conf": 0.926237323067405, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9886973473957775, "right_lift": -0.775269096978086, "left_bend": 0.36335428064036607, "right_bend": 0.5841005622000658}, "keypoints": {"0": [340.7550354003906, 35.10191345214844, 0.999322772026062], "1": [373.86456298828125, 9.67987060546875, 0.9986186027526855], "2": [312.91717529296875, 4.54473876953125, 0.9979128241539001], "3": [415.22027587890625, 40.666839599609375, 0.9569590091705322], "4": [267.3634338378906, 28.266632080078125, 0.9019513130187988], "5": [469.58544921875, 211.76296997070312, 0.9890571236610413], "6": [169.85629272460938, 176.80259704589844, 0.9973044395446777], "7": [497.4976806640625, 395.8331298828125, 0.735125720500946], "8": [41.883148193359375, 333.87786865234375, 0.9096673727035522], "9": [445.931640625, 429.6011962890625, 0.794609010219574], "10": [137.5879364013672, 376.5533752441406, 0.9080823659896851], "11": [377.37152099609375, 480.0, 0.06315834075212479], "12": [186.96800231933594, 477.0243225097656, 0.10650435835123062], "13": [386.5367126464844, 413.62139892578125, 0.0007557328790426254], "14": [195.74459838867188, 398.5148620605469, 0.0012672353768721223], "15": [337.87646484375, 453.15826416015625, 9.848782792687416e-05], "16": [232.05165100097656, 453.9575500488281, 0.00014291127445176244]}} +{"t": 49.075909, "tracked": true, "track_id": 1, "bbox": [22.73941993713379, 0.0, 581.0885009765625, 480.0], "det_conf": 0.9103280901908875, "mean_kpt_conf": 0.9262244863943621, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9828894814558222, "right_lift": -0.8498285275623045, "left_bend": 0.44033365794065255, "right_bend": 0.5404021905235221}, "keypoints": {"0": [340.9692077636719, 36.10096740722656, 0.9992318153381348], "1": [374.5816650390625, 11.152236938476562, 0.9983841180801392], "2": [313.5237121582031, 3.4062957763671875, 0.9973847270011902], "3": [413.01361083984375, 41.72021484375, 0.956364631652832], "4": [267.80731201171875, 24.014053344726562, 0.8779036402702332], "5": [462.48992919921875, 212.10458374023438, 0.9917894601821899], "6": [172.66143798828125, 172.453369140625, 0.9957180619239807], "7": [500.5823974609375, 415.3697509765625, 0.7995666861534119], "8": [64.52987670898438, 346.8043212890625, 0.8537874221801758], "9": [434.0748291015625, 441.37249755859375, 0.8413997888565063], "10": [139.90322875976562, 381.2088928222656, 0.8769389986991882], "11": [361.8788146972656, 480.0, 0.04544558748602867], "12": [179.41612243652344, 472.0290832519531, 0.05557539686560631], "13": [391.22021484375, 387.0997009277344, 0.0010256984969601035], "14": [211.71893310546875, 365.83477783203125, 0.001277018105611205], "15": [338.30548095703125, 444.939453125, 0.0001671500940574333], "16": [252.47515869140625, 433.08917236328125, 0.0001978473737835884]}} +{"t": 49.135864, "tracked": true, "track_id": 1, "bbox": [21.714723587036133, 0.0, 590.2783203125, 479.95904541015625], "det_conf": 0.9125998020172119, "mean_kpt_conf": 0.924232239072973, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9844224235957213, "right_lift": -0.782151517361943, "left_bend": 0.4232161909776142, "right_bend": 0.5327403642333992}, "keypoints": {"0": [339.42108154296875, 34.9439697265625, 0.9993489384651184], "1": [373.23529052734375, 8.100234985351562, 0.9986525177955627], "2": [310.39581298828125, 3.3358917236328125, 0.9979469180107117], "3": [415.6462707519531, 38.8580322265625, 0.9554003477096558], "4": [264.4352111816406, 27.413070678710938, 0.8818531632423401], "5": [467.406005859375, 213.77243041992188, 0.9878255724906921], "6": [175.55117797851562, 176.2296905517578, 0.9965407252311707], "7": [501.3629150390625, 403.89892578125, 0.7317319512367249], "8": [50.80857849121094, 332.81683349609375, 0.8951966166496277], "9": [441.8409423828125, 430.33441162109375, 0.8144389390945435], "10": [125.32302856445312, 380.5601806640625, 0.9076189398765564], "11": [374.92401123046875, 480.0, 0.05076160654425621], "12": [190.02200317382812, 473.78253173828125, 0.08045706152915955], "13": [396.9056701660156, 405.3176574707031, 0.0008119161939248443], "14": [212.42599487304688, 385.7823791503906, 0.0013106288388371468], "15": [355.5341491699219, 445.84063720703125, 0.00011730025289580226], "16": [248.9176025390625, 444.25775146484375, 0.00016818511357996613]}} +{"t": 49.195335, "tracked": true, "track_id": 1, "bbox": [19.86236000061035, 0.0, 597.9326171875, 479.407958984375], "det_conf": 0.9157649278640747, "mean_kpt_conf": 0.9300648028200323, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9804317826842831, "right_lift": -0.8029811987673505, "left_bend": 0.45161858125277593, "right_bend": 0.5288450956796842}, "keypoints": {"0": [339.21929931640625, 35.048095703125, 0.999420166015625], "1": [372.72613525390625, 8.445770263671875, 0.9987087249755859], "2": [309.84844970703125, 3.1654510498046875, 0.9982240796089172], "3": [413.7076110839844, 38.51812744140625, 0.9526016116142273], "4": [262.0276184082031, 26.34454345703125, 0.8940540552139282], "5": [467.4537353515625, 211.5706329345703, 0.989445149898529], "6": [171.7373809814453, 174.46920776367188, 0.9969311952590942], "7": [506.1306457519531, 404.196044921875, 0.7579441666603088], "8": [52.60737609863281, 334.969970703125, 0.9068484306335449], "9": [444.03192138671875, 426.874267578125, 0.823958694934845], "10": [125.60292053222656, 379.5129089355469, 0.9125765562057495], "11": [376.1166687011719, 480.0, 0.05769336596131325], "12": [187.03515625, 474.4934997558594, 0.09011388570070267], "13": [403.3320007324219, 407.6807861328125, 0.0007921751821413636], "14": [204.4333953857422, 387.37384033203125, 0.0012668980052694678], "15": [362.5572204589844, 448.2409973144531, 0.00010633908823365346], "16": [237.9581298828125, 444.0671691894531, 0.0001505929685663432]}} +{"t": 49.258897, "tracked": true, "track_id": 1, "bbox": [18.86458396911621, 0.0, 602.0349731445312, 478.793701171875], "det_conf": 0.9167873859405518, "mean_kpt_conf": 0.926597692749717, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9811203349371294, "right_lift": -0.7987712968323659, "left_bend": 0.43923582716317555, "right_bend": 0.5273467282810996}, "keypoints": {"0": [338.6185302734375, 33.520721435546875, 0.999397873878479], "1": [371.8621520996094, 6.5516357421875, 0.9986854195594788], "2": [308.9630126953125, 1.3533477783203125, 0.9981124401092529], "3": [412.9559631347656, 36.49662780761719, 0.9538568258285522], "4": [260.80108642578125, 24.889190673828125, 0.8916665315628052], "5": [469.94464111328125, 212.31985473632812, 0.989180862903595], "6": [169.36117553710938, 177.54794311523438, 0.9969092011451721], "7": [506.8527526855469, 399.5567932128906, 0.7409988641738892], "8": [51.90576171875, 333.48974609375, 0.8998242616653442], "9": [443.52947998046875, 425.25518798828125, 0.8155103921890259], "10": [121.16595458984375, 376.8770751953125, 0.9084319472312927], "11": [378.25970458984375, 480.0, 0.051346831023693085], "12": [186.96490478515625, 479.53924560546875, 0.08159346133470535], "13": [397.9836120605469, 406.97137451171875, 0.0006754266214556992], "14": [202.5758056640625, 388.62408447265625, 0.001084197429008782], "15": [347.2359924316406, 444.59759521484375, 9.161212074104697e-05], "16": [238.50973510742188, 441.7177734375, 0.00012999984028283507]}} +{"t": 49.315516, "tracked": true, "track_id": 1, "bbox": [18.293628692626953, 0.2912643551826477, 600.3926391601562, 478.44140625], "det_conf": 0.9207004904747009, "mean_kpt_conf": 0.9258016347885132, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9835724412598801, "right_lift": -0.8133003732155635, "left_bend": 0.47696310337150827, "right_bend": 0.5677178802750216}, "keypoints": {"0": [336.51416015625, 33.554473876953125, 0.9993422627449036], "1": [371.03497314453125, 6.8489837646484375, 0.9986250400543213], "2": [307.7508850097656, 0.7354736328125, 0.9977643489837646], "3": [413.4893493652344, 38.23240661621094, 0.9533690810203552], "4": [260.78857421875, 23.888580322265625, 0.8687741756439209], "5": [468.6044921875, 211.7880096435547, 0.9886140823364258], "6": [170.01095581054688, 176.68115234375, 0.9964765906333923], "7": [504.0101318359375, 404.7040100097656, 0.7485188841819763], "8": [51.68040466308594, 342.0833435058594, 0.8946719765663147], "9": [437.3974304199219, 421.98870849609375, 0.8276558518409729], "10": [128.07022094726562, 375.1261291503906, 0.9100056886672974], "11": [380.115966796875, 480.0, 0.045437246561050415], "12": [189.40760803222656, 477.7221984863281, 0.0700569748878479], "13": [399.3507080078125, 398.7319030761719, 0.0007119064684957266], "14": [201.93441772460938, 379.4177551269531, 0.0011031810427084565], "15": [351.3529052734375, 445.7337341308594, 0.0001004668083623983], "16": [233.9341278076172, 438.5370788574219, 0.00014005170669406652]}} +{"t": 49.379357, "tracked": true, "track_id": 1, "bbox": [17.28912353515625, 0.5705113410949707, 598.1873168945312, 478.3790588378906], "det_conf": 0.9150950908660889, "mean_kpt_conf": 0.927678254517642, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9824159755703565, "right_lift": -0.8179631350911972, "left_bend": 0.4434460004236816, "right_bend": 0.5579038079818806}, "keypoints": {"0": [335.119873046875, 31.918548583984375, 0.9993763566017151], "1": [369.8846740722656, 5.5670623779296875, 0.9987428784370422], "2": [306.06207275390625, 0.0, 0.9979447722434998], "3": [413.07659912109375, 37.34632873535156, 0.9592739343643188], "4": [258.965576171875, 23.809860229492188, 0.8761886358261108], "5": [468.2852478027344, 210.8970489501953, 0.9894573092460632], "6": [166.90380859375, 177.0069580078125, 0.9968697428703308], "7": [504.61199951171875, 402.04315185546875, 0.7567102909088135], "8": [51.995697021484375, 340.3919677734375, 0.9012691974639893], "9": [439.93194580078125, 426.794189453125, 0.8211397528648376], "10": [129.03695678710938, 375.8203125, 0.9074879288673401], "11": [376.2158203125, 480.0, 0.054989997297525406], "12": [183.13906860351562, 480.0, 0.08506923913955688], "13": [400.6124267578125, 406.91729736328125, 0.0007059348281472921], "14": [198.04898071289062, 388.92315673828125, 0.0011169007048010826], "15": [353.0888671875, 446.49151611328125, 9.788644820218906e-05], "16": [231.1712646484375, 440.5998840332031, 0.00013837371079716831]}} +{"t": 49.439464, "tracked": true, "track_id": 1, "bbox": [16.57598304748535, 0.5426338315010071, 592.6927490234375, 478.3803405761719], "det_conf": 0.9203529953956604, "mean_kpt_conf": 0.9237409288232977, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9860605750739418, "right_lift": -0.8190389048053964, "left_bend": 0.4596880194366894, "right_bend": 0.5583354834552449}, "keypoints": {"0": [334.34356689453125, 32.010467529296875, 0.9993584752082825], "1": [369.601318359375, 5.92303466796875, 0.9987372756004333], "2": [305.67877197265625, 0.02154541015625, 0.997876763343811], "3": [413.7397766113281, 38.404083251953125, 0.9613651633262634], "4": [259.4378662109375, 24.430908203125, 0.8713476657867432], "5": [468.9517822265625, 211.22874450683594, 0.9885635375976562], "6": [167.73997497558594, 177.447265625, 0.9968962669372559], "7": [501.035400390625, 401.366455078125, 0.7352969646453857], "8": [53.925262451171875, 339.9233093261719, 0.9014923572540283], "9": [435.75030517578125, 421.1194152832031, 0.8054813146591187], "10": [127.5087890625, 373.47418212890625, 0.9047344326972961], "11": [377.7796936035156, 480.0, 0.05356933921575546], "12": [184.56195068359375, 480.0, 0.08678760379552841], "13": [399.82098388671875, 407.68853759765625, 0.0006791548221372068], "14": [196.647216796875, 389.73394775390625, 0.0011182223679497838], "15": [351.94097900390625, 447.4742126464844, 9.38777593546547e-05], "16": [230.83323669433594, 441.79876708984375, 0.0001368359080515802]}} +{"t": 49.499686, "tracked": true, "track_id": 1, "bbox": [14.779919624328613, 0.3484605848789215, 585.6829833984375, 478.76885986328125], "det_conf": 0.9145753979682922, "mean_kpt_conf": 0.9231461069800637, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9885047927280883, "right_lift": -0.8220375248394133, "left_bend": 0.49288736815926737, "right_bend": 0.5464669656374582}, "keypoints": {"0": [333.9161071777344, 31.761016845703125, 0.9992372989654541], "1": [369.2338562011719, 4.5722808837890625, 0.9984117746353149], "2": [305.0919494628906, 0.0, 0.9975062012672424], "3": [413.44439697265625, 35.3570556640625, 0.9529845118522644], "4": [258.4375305175781, 21.787490844726562, 0.8576717972755432], "5": [467.58905029296875, 211.3143310546875, 0.9872004985809326], "6": [166.20071411132812, 174.96701049804688, 0.9965332746505737], "7": [497.0933837890625, 404.21905517578125, 0.7295333743095398], "8": [53.761199951171875, 337.285400390625, 0.9012504816055298], "9": [426.4250793457031, 416.6494445800781, 0.8214936852455139], "10": [127.706298828125, 373.90631103515625, 0.9127842783927917], "11": [371.69085693359375, 480.0, 0.05082908272743225], "12": [178.45864868164062, 479.8416748046875, 0.08311658352613449], "13": [395.5830383300781, 403.9095458984375, 0.0007399553433060646], "14": [194.1226806640625, 384.37713623046875, 0.001230360590852797], "15": [346.85382080078125, 442.7503967285156, 0.00010482178186066449], "16": [230.82284545898438, 438.522216796875, 0.00015336090291384608]}} +{"t": 49.560774, "tracked": true, "track_id": 1, "bbox": [13.933111190795898, 0.2766295373439789, 585.6019897460938, 478.74969482421875], "det_conf": 0.9077646732330322, "mean_kpt_conf": 0.9201225692575629, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9866678290282548, "right_lift": -0.8139404383963774, "left_bend": 0.4150720662740081, "right_bend": 0.519777933627191}, "keypoints": {"0": [333.8068542480469, 30.224884033203125, 0.9992319345474243], "1": [369.2174072265625, 3.2281036376953125, 0.9984444975852966], "2": [304.9071350097656, 0.0, 0.9974033236503601], "3": [413.5158386230469, 34.14854431152344, 0.9529238939285278], "4": [258.2989196777344, 19.993423461914062, 0.8494350910186768], "5": [465.85552978515625, 210.16416931152344, 0.9874760508537292], "6": [168.954345703125, 173.63414001464844, 0.9961680769920349], "7": [497.40570068359375, 401.4397888183594, 0.738037109375], "8": [54.98341369628906, 333.31365966796875, 0.8922197222709656], "9": [431.946044921875, 431.4833984375, 0.8085964322090149], "10": [123.46684265136719, 376.03582763671875, 0.9014121294021606], "11": [370.4153747558594, 480.0, 0.0540885403752327], "12": [180.55245971679688, 480.0, 0.08382957428693771], "13": [393.3269348144531, 409.6457824707031, 0.000713073241058737], "14": [198.63136291503906, 390.17449951171875, 0.0011327146785333753], "15": [342.98358154296875, 445.2899169921875, 0.00010266837489325553], "16": [231.61642456054688, 439.5462646484375, 0.00014515759539790452]}} +{"t": 49.626322, "tracked": true, "track_id": 1, "bbox": [11.71410083770752, 0.19974111020565033, 585.2496337890625, 478.8115234375], "det_conf": 0.9105163216590881, "mean_kpt_conf": 0.9256077625534751, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9877089493683764, "right_lift": -0.8192390304868084, "left_bend": 0.4650461774872529, "right_bend": 0.5299543578863071}, "keypoints": {"0": [334.4757995605469, 30.26385498046875, 0.9993183612823486], "1": [370.3652038574219, 1.9311370849609375, 0.9985645413398743], "2": [303.9775390625, 0.0, 0.9977489113807678], "3": [415.54364013671875, 32.061004638671875, 0.9498136639595032], "4": [255.81565856933594, 20.290557861328125, 0.8585503697395325], "5": [466.77850341796875, 207.85691833496094, 0.9870581030845642], "6": [168.0369873046875, 172.052978515625, 0.9964266419410706], "7": [497.7880554199219, 403.8106689453125, 0.7443536520004272], "8": [52.980621337890625, 336.4235534667969, 0.9082449078559875], "9": [434.21173095703125, 421.18426513671875, 0.8250373601913452], "10": [121.91204833984375, 375.581298828125, 0.9165688753128052], "11": [370.2500915527344, 480.0, 0.04773468151688576], "12": [177.78134155273438, 480.0, 0.07783772051334381], "13": [393.0240173339844, 400.6290283203125, 0.0006468860665336251], "14": [184.79843139648438, 381.42242431640625, 0.0010663865832611918], "15": [347.1585998535156, 437.324462890625, 9.721157402964309e-05], "16": [213.0650177001953, 435.1047058105469, 0.0001403911883244291]}} +{"t": 49.68392, "tracked": true, "track_id": 1, "bbox": [11.262150764465332, 0.008423597551882267, 584.7595825195312, 478.44366455078125], "det_conf": 0.9084296226501465, "mean_kpt_conf": 0.9223249121145769, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9886059778500464, "right_lift": -0.8135403521690853, "left_bend": 0.45893034757059314, "right_bend": 0.5364755148378348}, "keypoints": {"0": [333.08917236328125, 29.937789916992188, 0.9992746710777283], "1": [369.8634338378906, 2.27142333984375, 0.9985461235046387], "2": [304.5221252441406, 0.0, 0.9974441528320312], "3": [416.2442321777344, 33.588531494140625, 0.9554381966590881], "4": [258.51177978515625, 17.882766723632812, 0.8376142382621765], "5": [467.4140625, 212.11508178710938, 0.9866505861282349], "6": [168.86192321777344, 174.35015869140625, 0.9963513612747192], "7": [496.94512939453125, 406.06494140625, 0.7332398891448975], "8": [52.24284362792969, 337.50225830078125, 0.9012529850006104], "9": [429.9597473144531, 425.3359375, 0.8247932195663452], "10": [120.78504943847656, 375.48193359375, 0.9149686098098755], "11": [371.48504638671875, 480.0, 0.04801306128501892], "12": [179.50259399414062, 480.0, 0.07800517976284027], "13": [395.13519287109375, 409.9912414550781, 0.0006393160438165069], "14": [193.279541015625, 389.2607116699219, 0.0010503868106752634], "15": [348.6877746582031, 445.99493408203125, 9.016777039505541e-05], "16": [224.39987182617188, 438.723876953125, 0.00013115079491399229]}} +{"t": 49.743436, "tracked": true, "track_id": 1, "bbox": [10.75672435760498, 0.1134105771780014, 584.887451171875, 478.2915344238281], "det_conf": 0.9134367108345032, "mean_kpt_conf": 0.9199335846033964, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9886781468508453, "right_lift": -0.8183286373492477, "left_bend": 0.4695603190344075, "right_bend": 0.5339950742617138}, "keypoints": {"0": [332.43927001953125, 29.304244995117188, 0.9991717338562012], "1": [369.71405029296875, 2.288604736328125, 0.9983742237091064], "2": [305.07537841796875, 0.0, 0.9969257712364197], "3": [415.92498779296875, 34.58872985839844, 0.9533542394638062], "4": [259.693359375, 15.51904296875, 0.8158762454986572], "5": [465.9245910644531, 213.3655548095703, 0.98628830909729], "6": [167.5833282470703, 173.80348205566406, 0.9957030415534973], "7": [495.083251953125, 405.489501953125, 0.7416138052940369], "8": [52.520233154296875, 337.63006591796875, 0.8856635093688965], "9": [428.9088439941406, 422.12249755859375, 0.8376664519309998], "10": [122.24734497070312, 376.2216796875, 0.9086320996284485], "11": [370.2318115234375, 480.0, 0.04539317637681961], "12": [178.92047119140625, 480.0, 0.06880555301904678], "13": [392.20819091796875, 405.19189453125, 0.0007016452727839351], "14": [195.445556640625, 383.1806640625, 0.0010634773643687367], "15": [346.4375, 445.76116943359375, 9.930157102644444e-05], "16": [232.9445343017578, 434.7891845703125, 0.00013699127885047346]}} +{"t": 49.799178, "tracked": true, "track_id": 1, "bbox": [10.73341178894043, 0.30357789993286133, 585.9247436523438, 477.96734619140625], "det_conf": 0.9121736288070679, "mean_kpt_conf": 0.9195412505756725, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9894074231376353, "right_lift": -0.8283109239787251, "left_bend": 0.458822688488764, "right_bend": 0.5501181556967623}, "keypoints": {"0": [333.1016540527344, 29.537567138671875, 0.9991216063499451], "1": [369.0635986328125, 1.94940185546875, 0.9981719255447388], "2": [303.92388916015625, 0.0, 0.9968512654304504], "3": [413.0691223144531, 32.71795654296875, 0.9423521757125854], "4": [255.18753051757812, 16.424591064453125, 0.8278580904006958], "5": [466.36859130859375, 211.1320343017578, 0.9863743782043457], "6": [162.54901123046875, 175.68359375, 0.9958338737487793], "7": [494.95562744140625, 405.9736022949219, 0.7419499754905701], "8": [49.062103271484375, 343.464599609375, 0.8894909620285034], "9": [426.74249267578125, 425.22296142578125, 0.8281432390213013], "10": [120.6573486328125, 376.93084716796875, 0.9088062644004822], "11": [375.0579833984375, 480.0, 0.04638166353106499], "12": [180.38668823242188, 480.0, 0.07156188786029816], "13": [391.1829833984375, 407.8380126953125, 0.0006352042546495795], "14": [190.95423889160156, 389.1024475097656, 0.0009650141000747681], "15": [337.292724609375, 444.80499267578125, 8.758647891227156e-05], "16": [226.2796630859375, 437.1568298339844, 0.00012012021761620417]}} +{"t": 49.859466, "tracked": true, "track_id": 1, "bbox": [10.077293395996094, 0.3159443140029907, 588.194580078125, 477.7583312988281], "det_conf": 0.9105590581893921, "mean_kpt_conf": 0.9246778813275424, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9866350826658504, "right_lift": -0.8147637153256955, "left_bend": 0.4163417084392371, "right_bend": 0.5315004903501642}, "keypoints": {"0": [333.58551025390625, 28.40533447265625, 0.9991998076438904], "1": [369.7396240234375, 1.0901336669921875, 0.9983701109886169], "2": [304.7716979980469, 0.0, 0.9971593618392944], "3": [414.21099853515625, 32.57319641113281, 0.9479233622550964], "4": [256.7709655761719, 15.671722412109375, 0.8360270857810974], "5": [465.01409912109375, 211.28536987304688, 0.9866241216659546], "6": [165.02769470214844, 174.342529296875, 0.995855987071991], "7": [496.2179870605469, 400.2250061035156, 0.7581023573875427], "8": [50.4361572265625, 335.3741455078125, 0.8931431174278259], "9": [432.09722900390625, 429.360595703125, 0.8442375063896179], "10": [123.21597290039062, 376.998046875, 0.9148138761520386], "11": [371.26043701171875, 480.0, 0.05221898481249809], "12": [178.40304565429688, 480.0, 0.07860024273395538], "13": [393.5225524902344, 407.95269775390625, 0.0007455656304955482], "14": [191.54855346679688, 388.5959167480469, 0.0011164906900376081], "15": [348.46209716796875, 447.5934143066406, 0.00010215333895757794], "16": [227.3492431640625, 439.3693542480469, 0.00013874338765162975]}} +{"t": 49.919384, "tracked": true, "track_id": 1, "bbox": [10.617042541503906, 0.36900824308395386, 589.79345703125, 477.8992919921875], "det_conf": 0.9154927730560303, "mean_kpt_conf": 0.9248062751509927, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9833213809879838, "right_lift": -0.8302120473948271, "left_bend": 0.4438073476048781, "right_bend": 0.5648644475279483}, "keypoints": {"0": [333.36572265625, 29.340652465820312, 0.9991629123687744], "1": [370.36895751953125, 1.661041259765625, 0.9982855916023254], "2": [305.0501708984375, 0.0, 0.9970296621322632], "3": [415.134521484375, 32.491851806640625, 0.9464062452316284], "4": [257.29669189453125, 14.189224243164062, 0.8430230021476746], "5": [465.18109130859375, 209.42727661132812, 0.987653911113739], "6": [162.34463500976562, 175.79209899902344, 0.9958648681640625], "7": [500.1799621582031, 398.64984130859375, 0.7614036202430725], "8": [48.97993469238281, 344.627197265625, 0.8810654878616333], "9": [434.3651428222656, 423.37982177734375, 0.8521669507026672], "10": [132.44068908691406, 378.6934814453125, 0.9108067750930786], "11": [372.7112121582031, 480.0, 0.05182964354753494], "12": [180.006591796875, 480.0, 0.07434307038784027], "13": [394.5909118652344, 408.1924133300781, 0.0008025235729292035], "14": [205.6880340576172, 390.92950439453125, 0.0011597261764109135], "15": [345.18768310546875, 452.4654846191406, 0.0001069372083293274], "16": [248.63731384277344, 442.3443298339844, 0.00014189314970280975]}} +{"t": 49.982673, "tracked": true, "track_id": 1, "bbox": [10.56462574005127, 0.3302784562110901, 586.8680419921875, 478.0699157714844], "det_conf": 0.9120000004768372, "mean_kpt_conf": 0.9220221855423667, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9866365216306047, "right_lift": -0.8110167446981628, "left_bend": 0.4445120117523836, "right_bend": 0.5739283668148973}, "keypoints": {"0": [333.5294494628906, 28.308929443359375, 0.9990884065628052], "1": [370.72357177734375, 0.3532562255859375, 0.9980822801589966], "2": [304.96966552734375, 0.0, 0.9968095421791077], "3": [416.9272155761719, 32.481536865234375, 0.9420729875564575], "4": [257.9699401855469, 15.446990966796875, 0.8319377303123474], "5": [467.21466064453125, 212.41278076171875, 0.9844207763671875], "6": [164.18914794921875, 176.4989471435547, 0.9958447813987732], "7": [498.56463623046875, 402.2474060058594, 0.7274017333984375], "8": [45.473541259765625, 341.07427978515625, 0.8945457339286804], "9": [434.9259033203125, 424.61474609375, 0.8470847010612488], "10": [127.04301452636719, 374.8572998046875, 0.9249553680419922], "11": [372.135986328125, 480.0, 0.043975312262773514], "12": [179.49169921875, 480.0, 0.07139614969491959], "13": [391.187255859375, 405.17144775390625, 0.0007239066180773079], "14": [202.29234313964844, 387.1754150390625, 0.0011766001116484404], "15": [342.94354248046875, 449.11456298828125, 9.846884495345876e-05], "16": [243.84979248046875, 441.9481201171875, 0.0001419776090187952]}} +{"t": 50.042822, "tracked": true, "track_id": 1, "bbox": [11.868025779724121, 0.04866965487599373, 582.85498046875, 478.49627685546875], "det_conf": 0.9078278541564941, "mean_kpt_conf": 0.9164159189571034, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9893270910427608, "right_lift": -0.8232061334096402, "left_bend": 0.42116994744786335, "right_bend": 0.552943128985735}, "keypoints": {"0": [334.0284423828125, 26.682601928710938, 0.9988928437232971], "1": [370.7898864746094, 0.0, 0.9977194666862488], "2": [306.2290344238281, 0.0, 0.9961829781532288], "3": [415.8912658691406, 32.36590576171875, 0.9402445554733276], "4": [259.6506652832031, 14.574447631835938, 0.82368403673172], "5": [464.8149108886719, 212.0401611328125, 0.9847837090492249], "6": [163.89498901367188, 177.01930236816406, 0.9954121708869934], "7": [492.6577453613281, 401.0823974609375, 0.7287920713424683], "8": [50.18798828125, 341.89031982421875, 0.876017689704895], "9": [423.73150634765625, 429.72833251953125, 0.8328220844268799], "10": [130.3271484375, 379.36749267578125, 0.9060235023498535], "11": [367.13800048828125, 480.0, 0.04949364438652992], "12": [176.52413940429688, 480.0, 0.07480959594249725], "13": [388.3812255859375, 412.73681640625, 0.0007469292031601071], "14": [208.83282470703125, 395.49853515625, 0.0011409998405724764], "15": [335.94696044921875, 449.9864807128906, 0.00010077481420012191], "16": [254.98358154296875, 441.9339599609375, 0.00013894104631617665]}} +{"t": 50.102016, "tracked": true, "track_id": 1, "bbox": [12.796711921691895, 0.0, 580.6370239257812, 478.7615661621094], "det_conf": 0.9081227779388428, "mean_kpt_conf": 0.9166719588366422, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9899217831138816, "right_lift": -0.8097846565370559, "left_bend": 0.4161729134347551, "right_bend": 0.574111221927607}, "keypoints": {"0": [335.7137451171875, 25.697967529296875, 0.9990198612213135], "1": [371.95050048828125, 0.0, 0.9979345798492432], "2": [306.51007080078125, 0.0, 0.99678635597229], "3": [416.9618225097656, 30.75115966796875, 0.9385389089584351], "4": [259.0025939941406, 15.525924682617188, 0.8477886319160461], "5": [465.821533203125, 211.7197265625, 0.9840666055679321], "6": [166.43145751953125, 176.75711059570312, 0.9955534338951111], "7": [493.00848388671875, 401.7625732421875, 0.7065098881721497], "8": [47.69097900390625, 340.6394348144531, 0.879129946231842], "9": [425.81591796875, 430.603271484375, 0.8254505395889282], "10": [133.7761993408203, 376.44696044921875, 0.912612795829773], "11": [369.5661926269531, 480.0, 0.04409385100007057], "12": [180.33758544921875, 480.0, 0.07025868445634842], "13": [387.03558349609375, 408.28515625, 0.0007455840823240578], "14": [209.1134490966797, 391.73846435546875, 0.001197748351842165], "15": [334.903076171875, 447.790771484375, 0.00010471997666172683], "16": [249.6207275390625, 443.36053466796875, 0.0001488499838160351]}} +{"t": 50.162365, "tracked": true, "track_id": 1, "bbox": [12.944647789001465, 0.02287749946117401, 584.4794311523438, 478.94085693359375], "det_conf": 0.9083841443061829, "mean_kpt_conf": 0.9190413680943575, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9896366530810856, "right_lift": -0.8236043881452308, "left_bend": 0.4391936916756629, "right_bend": 0.5716019945220054}, "keypoints": {"0": [337.0320739746094, 26.191513061523438, 0.9991955161094666], "1": [372.95574951171875, 0.0, 0.9982931017875671], "2": [308.2893981933594, 0.0, 0.9974443912506104], "3": [417.26617431640625, 30.812835693359375, 0.9463416337966919], "4": [260.1654052734375, 14.49298095703125, 0.8680832386016846], "5": [471.4134826660156, 213.2957305908203, 0.9868447780609131], "6": [162.2843017578125, 177.85284423828125, 0.9965142607688904], "7": [499.571533203125, 407.358154296875, 0.7134965062141418], "8": [47.2203369140625, 344.94219970703125, 0.8883352875709534], "9": [432.80535888671875, 430.60992431640625, 0.8080325126647949], "10": [128.47161865234375, 377.217529296875, 0.9068738222122192], "11": [377.51153564453125, 480.0, 0.04693925753235817], "12": [179.7119140625, 480.0, 0.07542672008275986], "13": [404.813720703125, 415.57183837890625, 0.0006082347244955599], "14": [203.39593505859375, 398.87506103515625, 0.0009886547923088074], "15": [352.7213134765625, 449.1612548828125, 8.193698158720508e-05], "16": [243.5486602783203, 443.8233947753906, 0.00011734992585843429]}} +{"t": 50.226128, "tracked": true, "track_id": 1, "bbox": [14.163774490356445, 0.0, 572.4056396484375, 479.0569152832031], "det_conf": 0.9067866206169128, "mean_kpt_conf": 0.916797399520874, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.984943202170276, "right_lift": -0.8577076952046264, "left_bend": 0.426742417718911, "right_bend": 0.563857202157046}, "keypoints": {"0": [337.9878234863281, 25.889999389648438, 0.9985264539718628], "1": [371.0372314453125, 1.0516204833984375, 0.9970073103904724], "2": [309.5196838378906, 0.0, 0.9945787191390991], "3": [409.978271484375, 33.93035888671875, 0.9346429109573364], "4": [261.6221008300781, 18.282394409179688, 0.8064455389976501], "5": [462.7680969238281, 208.80833435058594, 0.9879898428916931], "6": [164.2003631591797, 175.4381103515625, 0.9939314126968384], "7": [498.09307861328125, 410.066162109375, 0.8022310733795166], "8": [57.80853271484375, 352.92578125, 0.8489347696304321], "9": [429.51446533203125, 439.3762512207031, 0.8447846174240112], "10": [135.6034393310547, 380.3912048339844, 0.8756987452507019], "11": [363.35894775390625, 480.0, 0.05285120755434036], "12": [172.44760131835938, 480.0, 0.06427104026079178], "13": [390.2639465332031, 407.0486755371094, 0.0007752787787467241], "14": [189.81619262695312, 390.702880859375, 0.0009242825326509774], "15": [340.31927490234375, 452.3511962890625, 0.00010417964949738234], "16": [225.95230102539062, 443.780029296875, 0.00011926249862881377]}} +{"t": 50.281003, "tracked": true, "track_id": 1, "bbox": [13.523676872253418, 0.0, 580.5083618164062, 479.0559387207031], "det_conf": 0.908892810344696, "mean_kpt_conf": 0.9161147204312411, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9899657584128091, "right_lift": -0.8257865343283081, "left_bend": 0.4376505066016521, "right_bend": 0.5743068547946981}, "keypoints": {"0": [338.4375, 25.377838134765625, 0.9989901185035706], "1": [373.052001953125, 0.0, 0.9977587461471558], "2": [308.88409423828125, 0.0, 0.9968982934951782], "3": [415.3826904296875, 29.967987060546875, 0.936229944229126], "4": [259.5706787109375, 15.955612182617188, 0.8725871443748474], "5": [470.30792236328125, 212.08425903320312, 0.9862426519393921], "6": [162.1137237548828, 179.20379638671875, 0.9961751699447632], "7": [497.250732421875, 400.83905029296875, 0.7067240476608276], "8": [50.90541076660156, 342.03558349609375, 0.8792009949684143], "9": [430.82623291015625, 424.1610107421875, 0.8050612807273865], "10": [132.5955352783203, 373.322265625, 0.9013935327529907], "11": [374.70904541015625, 480.0, 0.05129014328122139], "12": [178.9669189453125, 480.0, 0.08119573444128036], "13": [394.30645751953125, 415.92437744140625, 0.000678125477861613], "14": [204.1007080078125, 401.6768798828125, 0.0010816636495292187], "15": [336.09954833984375, 448.91571044921875, 8.7228741904255e-05], "16": [248.5962371826172, 447.5936279296875, 0.00012221957149449736]}} +{"t": 50.338988, "tracked": true, "track_id": 1, "bbox": [14.047228813171387, 0.22675935924053192, 588.3749389648438, 479.0581970214844], "det_conf": 0.9054644107818604, "mean_kpt_conf": 0.9174879843538458, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9894256613485777, "right_lift": -0.8230255078921888, "left_bend": 0.4380684339703293, "right_bend": 0.5596460320502764}, "keypoints": {"0": [339.4950866699219, 25.268173217773438, 0.9989614486694336], "1": [373.8445739746094, 0.0, 0.997672975063324], "2": [309.3233337402344, 0.0, 0.9968461394309998], "3": [416.3870849609375, 29.338607788085938, 0.930532693862915], "4": [259.3940734863281, 17.01898193359375, 0.8638319373130798], "5": [472.2950744628906, 209.15476989746094, 0.9856508374214172], "6": [163.9609375, 176.052978515625, 0.9962049126625061], "7": [500.48828125, 401.48040771484375, 0.7166330814361572], "8": [50.44371032714844, 340.536865234375, 0.8950295448303223], "9": [434.459716796875, 424.8459167480469, 0.803527295589447], "10": [131.10226440429688, 376.237548828125, 0.9074769616127014], "11": [379.03582763671875, 480.0, 0.05713311955332756], "12": [181.57022094726562, 480.0, 0.09301441162824631], "13": [401.22296142578125, 414.9809265136719, 0.0006993371644057333], "14": [198.3086395263672, 399.95074462890625, 0.0011542652500793338], "15": [346.5953674316406, 445.7431640625, 9.08074143808335e-05], "16": [234.43548583984375, 445.55059814453125, 0.0001304249744862318]}} +{"t": 50.399114, "tracked": true, "track_id": 1, "bbox": [15.227550506591797, 0.2363961786031723, 588.19775390625, 479.2633972167969], "det_conf": 0.9089702367782593, "mean_kpt_conf": 0.9125613678585399, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9907218596936832, "right_lift": -0.8163294633847319, "left_bend": 0.44017898140949985, "right_bend": 0.5753131173874257}, "keypoints": {"0": [340.5912170410156, 24.921432495117188, 0.998795747756958], "1": [374.41229248046875, 0.0, 0.9972604513168335], "2": [310.544677734375, 0.0, 0.996455192565918], "3": [416.6333923339844, 29.19879150390625, 0.9220677018165588], "4": [260.9797058105469, 17.507278442382812, 0.8603249788284302], "5": [472.9729919433594, 211.70465087890625, 0.9836530685424805], "6": [163.52462768554688, 178.7078857421875, 0.9958755373954773], "7": [499.2377624511719, 403.16973876953125, 0.6946086883544922], "8": [48.056243896484375, 341.9046325683594, 0.8888333439826965], "9": [434.3623046875, 424.9759521484375, 0.7942491173744202], "10": [130.10198974609375, 374.5954284667969, 0.9060512185096741], "11": [377.3207702636719, 480.0, 0.05164582282304764], "12": [179.03494262695312, 480.0, 0.08539403975009918], "13": [402.52105712890625, 414.09893798828125, 0.000676018709782511], "14": [197.62936401367188, 400.20391845703125, 0.0011309388792142272], "15": [347.87896728515625, 444.5579833984375, 9.227705595549196e-05], "16": [233.64013671875, 446.57275390625, 0.0001332617102889344]}} +{"t": 50.459287, "tracked": true, "track_id": 1, "bbox": [15.456483840942383, 0.05389876663684845, 588.0220336914062, 478.99847412109375], "det_conf": 0.9162716269493103, "mean_kpt_conf": 0.914650635285811, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9891977375717634, "right_lift": -0.8191219325813213, "left_bend": 0.447006084174267, "right_bend": 0.5926231049557275}, "keypoints": {"0": [341.7428894042969, 24.62799072265625, 0.9987105131149292], "1": [374.3970031738281, 0.0, 0.996960461139679], "2": [310.8933410644531, 0.0, 0.9963395595550537], "3": [414.92230224609375, 29.97869873046875, 0.9202313423156738], "4": [260.5924072265625, 20.642654418945312, 0.8772546648979187], "5": [474.5069274902344, 211.3205108642578, 0.984931468963623], "6": [163.16384887695312, 179.7759552001953, 0.996095597743988], "7": [503.42242431640625, 406.4475402832031, 0.7017338871955872], "8": [47.224761962890625, 345.33563232421875, 0.8905080556869507], "9": [434.5794677734375, 428.77362060546875, 0.7921838164329529], "10": [134.11419677734375, 374.12347412109375, 0.9062076210975647], "11": [380.8719482421875, 480.0, 0.04931437969207764], "12": [182.1595916748047, 480.0, 0.08140414953231812], "13": [405.7897644042969, 411.929931640625, 0.0006193349836394191], "14": [202.73373413085938, 399.0537414550781, 0.0010426377411931753], "15": [349.5833740234375, 446.27105712890625, 8.0131932918448e-05], "16": [238.90379333496094, 450.1611328125, 0.00011608815111685544]}} +{"t": 50.519079, "tracked": true, "track_id": 1, "bbox": [15.15930461883545, 0.11343542486429214, 589.9785766601562, 479.07958984375], "det_conf": 0.9094098210334778, "mean_kpt_conf": 0.9096559286117554, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9921131962132557, "right_lift": -0.8220026052196755, "left_bend": 0.4390708669636959, "right_bend": 0.5705937708059207}, "keypoints": {"0": [342.0587158203125, 25.616806030273438, 0.9985503554344177], "1": [375.3027038574219, 0.0, 0.9965695142745972], "2": [311.39019775390625, 0.0, 0.995935320854187], "3": [416.56231689453125, 28.805953979492188, 0.9153723120689392], "4": [260.4081115722656, 18.294357299804688, 0.868975043296814], "5": [476.81280517578125, 213.01898193359375, 0.9838306903839111], "6": [161.49325561523438, 179.3870849609375, 0.9962136149406433], "7": [501.2974853515625, 406.81646728515625, 0.6781616806983948], "8": [49.35211181640625, 341.2535400390625, 0.8929789662361145], "9": [431.7641906738281, 429.6347351074219, 0.7748404145240784], "10": [133.87982177734375, 375.4175720214844, 0.9047873020172119], "11": [383.35137939453125, 480.0, 0.053985174745321274], "12": [181.91896057128906, 480.0, 0.09372153133153915], "13": [405.8898010253906, 420.017333984375, 0.0006102703628130257], "14": [201.9463348388672, 406.31280517578125, 0.0010768367210403085], "15": [346.2406005859375, 444.70208740234375, 7.734764949418604e-05], "16": [243.80210876464844, 448.8795166015625, 0.00011579837155295536]}} +{"t": 50.583728, "tracked": true, "track_id": 1, "bbox": [15.375529289245605, 0.1498396247625351, 593.4171142578125, 478.80560302734375], "det_conf": 0.902380645275116, "mean_kpt_conf": 0.9133155671032992, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9918499010491051, "right_lift": -0.8019581872244073, "left_bend": 0.4484664380947269, "right_bend": 0.5997512555071937}, "keypoints": {"0": [341.3734436035156, 26.0341796875, 0.9988245368003845], "1": [375.1651611328125, 0.0, 0.9973338842391968], "2": [311.4810791015625, 0.0, 0.9965113997459412], "3": [417.40234375, 30.501708984375, 0.9278194904327393], "4": [262.23919677734375, 18.541030883789062, 0.8672674298286438], "5": [475.1865234375, 212.70660400390625, 0.9842550754547119], "6": [165.04922485351562, 177.46432495117188, 0.9962872266769409], "7": [500.1717834472656, 407.2068176269531, 0.6829290390014648], "8": [43.63555908203125, 340.4571533203125, 0.8953174352645874], "9": [430.134765625, 428.08056640625, 0.7871608138084412], "10": [131.57423400878906, 370.2694091796875, 0.9127649068832397], "11": [382.961669921875, 480.0, 0.049542561173439026], "12": [185.18252563476562, 480.0, 0.08633321523666382], "13": [403.06256103515625, 417.4253234863281, 0.0006079603335820138], "14": [204.96961975097656, 401.9007873535156, 0.0010707275941967964], "15": [346.20684814453125, 448.3179931640625, 7.78285029809922e-05], "16": [240.5114288330078, 449.1795654296875, 0.00011698502930812538]}} +{"t": 50.641089, "tracked": true, "track_id": 1, "bbox": [14.493955612182617, 0.0, 594.38720703125, 478.6989440917969], "det_conf": 0.9094138741493225, "mean_kpt_conf": 0.915636273947629, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9926994169741467, "right_lift": -0.8158112856907944, "left_bend": 0.41940195598055624, "right_bend": 0.5977924069155287}, "keypoints": {"0": [341.4596252441406, 27.053634643554688, 0.9988388419151306], "1": [376.74365234375, 0.0, 0.9973757266998291], "2": [311.55712890625, 0.0, 0.9964624047279358], "3": [421.2316589355469, 28.956069946289062, 0.9258708953857422], "4": [262.1480712890625, 16.742752075195312, 0.8565598726272583], "5": [478.0465087890625, 212.2376251220703, 0.9843027591705322], "6": [163.1850128173828, 177.75637817382812, 0.9963016510009766], "7": [501.77716064453125, 407.5491027832031, 0.7004119157791138], "8": [46.478546142578125, 342.38970947265625, 0.9020561575889587], "9": [437.558837890625, 432.76153564453125, 0.7969438433647156], "10": [131.27745056152344, 369.5009460449219, 0.9168749451637268], "11": [378.9927062988281, 480.0, 0.05075449496507645], "12": [176.57110595703125, 480.0, 0.08797721564769745], "13": [402.6510009765625, 416.7852478027344, 0.0005628392100334167], "14": [190.95632934570312, 402.9812927246094, 0.0009896208066493273], "15": [345.10565185546875, 445.62213134765625, 7.105083204805851e-05], "16": [224.99148559570312, 448.2004699707031, 0.00010581511742202565]}} +{"t": 50.700136, "tracked": true, "track_id": 1, "bbox": [14.7078275680542, 0.0, 591.9087524414062, 478.79150390625], "det_conf": 0.9166427850723267, "mean_kpt_conf": 0.9166269519112327, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9899425412634765, "right_lift": -0.8048725911666129, "left_bend": 0.447163975475173, "right_bend": 0.6096125214980632}, "keypoints": {"0": [342.0123596191406, 25.351104736328125, 0.9986510872840881], "1": [375.78851318359375, 0.0, 0.9968917965888977], "2": [312.9933166503906, 0.0, 0.9959856867790222], "3": [417.9582214355469, 29.918685913085938, 0.9297469258308411], "4": [264.5904541015625, 17.353500366210938, 0.8661444187164307], "5": [476.47930908203125, 214.334716796875, 0.9854558110237122], "6": [163.9349822998047, 178.69290161132812, 0.9965755343437195], "7": [504.25445556640625, 408.6925048828125, 0.7023745775222778], "8": [43.938629150390625, 341.4398193359375, 0.9014875888824463], "9": [431.23394775390625, 431.9168701171875, 0.7949666976928711], "10": [133.27064514160156, 368.1927795410156, 0.9146163463592529], "11": [376.9135437011719, 480.0, 0.05304894596338272], "12": [176.306640625, 480.0, 0.09130349010229111], "13": [403.37152099609375, 422.39276123046875, 0.0005454385536722839], "14": [196.06594848632812, 406.5919189453125, 0.0009583603241480887], "15": [349.9398498535156, 449.0079040527344, 6.597257743123919e-05], "16": [231.31185913085938, 448.65576171875, 9.838202822720632e-05]}} +{"t": 50.76099, "tracked": true, "track_id": 1, "bbox": [14.531438827514648, 0.1533420979976654, 594.4449462890625, 478.6671142578125], "det_conf": 0.9155567288398743, "mean_kpt_conf": 0.9151335196061567, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9902644432063505, "right_lift": -0.8071227221890097, "left_bend": 0.4510039120852525, "right_bend": 0.6216889029406453}, "keypoints": {"0": [342.18206787109375, 25.468429565429688, 0.9988541603088379], "1": [376.31768798828125, 0.0, 0.9973982572555542], "2": [311.73333740234375, 0.0, 0.9966458678245544], "3": [419.350830078125, 28.902694702148438, 0.9323285222053528], "4": [262.0375061035156, 18.38336181640625, 0.8767688870429993], "5": [480.399658203125, 214.61553955078125, 0.9852249026298523], "6": [161.74197387695312, 180.879638671875, 0.9966250658035278], "7": [508.02642822265625, 411.153076171875, 0.6788927912712097], "8": [41.39628601074219, 345.4060974121094, 0.8951109051704407], "9": [437.06048583984375, 432.6070556640625, 0.7924875020980835], "10": [132.68145751953125, 368.640869140625, 0.916131854057312], "11": [383.2722473144531, 480.0, 0.04412032663822174], "12": [180.64581298828125, 480.0, 0.07805132865905762], "13": [403.64617919921875, 415.9957275390625, 0.0005395392654463649], "14": [202.2985076904297, 402.2288818359375, 0.000969366286881268], "15": [342.9520263671875, 447.5588073730469, 6.809272599639371e-05], "16": [241.33319091796875, 450.70574951171875, 0.00010357847349951044]}} +{"t": 50.822445, "tracked": true, "track_id": 1, "bbox": [15.432099342346191, 0.39348071813583374, 597.3416748046875, 478.5672302246094], "det_conf": 0.9196640253067017, "mean_kpt_conf": 0.9064948179505088, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9896598184043923, "right_lift": -0.8267107248825959, "left_bend": 0.4609870838951919, "right_bend": 0.6240198345073554}, "keypoints": {"0": [340.8623352050781, 27.946060180664062, 0.9984917640686035], "1": [374.0879821777344, 0.0, 0.9966320395469666], "2": [310.70208740234375, 0.0, 0.9954877495765686], "3": [415.0932922363281, 28.132278442382812, 0.9246998429298401], "4": [261.04095458984375, 18.052597045898438, 0.8730309009552002], "5": [478.9026184082031, 210.93002319335938, 0.986270010471344], "6": [160.59722900390625, 179.840087890625, 0.996042013168335], "7": [507.73138427734375, 409.84088134765625, 0.6784656643867493], "8": [44.84245300292969, 349.9273376464844, 0.8671426773071289], "9": [436.5546875, 429.27117919921875, 0.7672663927078247], "10": [137.60887145996094, 369.5001525878906, 0.8879139423370361], "11": [387.53485107421875, 480.0, 0.042763181030750275], "12": [185.9374237060547, 480.0, 0.06915320456027985], "13": [400.54522705078125, 411.3197021484375, 0.000567579350899905], "14": [203.23403930664062, 399.322998046875, 0.000920801714528352], "15": [334.43402099609375, 449.0797119140625, 7.395822467515245e-05], "16": [244.9105682373047, 452.7115783691406, 0.00010407529043732211]}} +{"t": 50.880051, "tracked": true, "track_id": 1, "bbox": [15.701519966125488, 0.2830688953399658, 601.7254638671875, 478.22271728515625], "det_conf": 0.9273909330368042, "mean_kpt_conf": 0.9135951508175243, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9883850665226142, "right_lift": -0.8250926041413665, "left_bend": 0.4722928444915704, "right_bend": 0.6161912605685993}, "keypoints": {"0": [341.8608093261719, 28.544357299804688, 0.99857497215271], "1": [375.19879150390625, 0.0, 0.9966936111450195], "2": [310.9384765625, 0.0, 0.9957693815231323], "3": [417.0315856933594, 26.428787231445312, 0.9177723526954651], "4": [259.7005920410156, 17.470046997070312, 0.8708038926124573], "5": [482.302490234375, 210.28695678710938, 0.9864944219589233], "6": [158.9276123046875, 180.72238159179688, 0.9963439106941223], "7": [512.5089111328125, 406.74365234375, 0.7046282887458801], "8": [43.607086181640625, 349.1304016113281, 0.8881096839904785], "9": [440.71527099609375, 424.28277587890625, 0.7897986769676208], "10": [135.69500732421875, 371.21783447265625, 0.904557466506958], "11": [393.006103515625, 480.0, 0.053229931741952896], "12": [185.7882843017578, 480.0, 0.08663496375083923], "13": [414.92718505859375, 422.52191162109375, 0.0005229642847552896], "14": [199.91783142089844, 411.4134521484375, 0.0008619152358733118], "15": [352.7369384765625, 450.8687744140625, 6.062232205295004e-05], "16": [236.99911499023438, 456.169921875, 8.621464075986296e-05]}} +{"t": 50.939522, "tracked": true, "track_id": 1, "bbox": [14.54811954498291, 0.17118123173713684, 607.4307861328125, 478.19757080078125], "det_conf": 0.9226388931274414, "mean_kpt_conf": 0.9056375189261003, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9868462075724853, "right_lift": -0.8205631429622153, "left_bend": 0.511648398223234, "right_bend": 0.6270186783036962}, "keypoints": {"0": [342.4938049316406, 28.294830322265625, 0.9981651902198792], "1": [374.9978332519531, 0.0, 0.9952817559242249], "2": [311.0885925292969, 0.0, 0.994873583316803], "3": [415.2222900390625, 25.96435546875, 0.8927590847015381], "4": [259.0101623535156, 17.410919189453125, 0.8735005855560303], "5": [482.64520263671875, 212.4280242919922, 0.9838948845863342], "6": [158.70835876464844, 180.2147216796875, 0.9960681200027466], "7": [515.7265625, 414.3693542480469, 0.6581133604049683], "8": [39.299530029296875, 351.6458740234375, 0.8867563605308533], "9": [443.14105224609375, 423.547607421875, 0.7737113833427429], "10": [133.3165740966797, 371.6219787597656, 0.9088883996009827], "11": [393.23272705078125, 480.0, 0.04021494835615158], "12": [186.85618591308594, 480.0, 0.07124174386262894], "13": [409.89276123046875, 413.75439453125, 0.0005008110892958939], "14": [199.7667236328125, 400.62646484375, 0.0008898095111362636], "15": [344.6167907714844, 446.87237548828125, 5.994952516630292e-05], "16": [234.885498046875, 452.4913024902344, 8.939441613620147e-05]}} +{"t": 51.004557, "tracked": true, "track_id": 1, "bbox": [14.437944412231445, 0.20449313521385193, 610.18701171875, 478.4151611328125], "det_conf": 0.9277275204658508, "mean_kpt_conf": 0.908345493403348, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9871777637672772, "right_lift": -0.8225161092646974, "left_bend": 0.5273823403243597, "right_bend": 0.6405545372796291}, "keypoints": {"0": [340.67510986328125, 28.70013427734375, 0.9985804557800293], "1": [374.301513671875, 0.0, 0.9966713786125183], "2": [309.78802490234375, 0.0, 0.9958271384239197], "3": [416.4568176269531, 26.107391357421875, 0.919318437576294], "4": [258.815673828125, 17.072845458984375, 0.8748096823692322], "5": [483.2886962890625, 210.59677124023438, 0.9852065443992615], "6": [157.6101837158203, 181.18243408203125, 0.9964389801025391], "7": [515.5092163085938, 409.8602294921875, 0.6567641496658325], "8": [38.23175048828125, 353.827880859375, 0.8827391862869263], "9": [436.32122802734375, 415.753662109375, 0.7789123058319092], "10": [134.2469024658203, 369.6589050292969, 0.9065321683883667], "11": [393.31298828125, 480.0, 0.03813653439283371], "12": [186.02078247070312, 480.0, 0.0673896074295044], "13": [406.58154296875, 409.9454345703125, 0.0005057213711552322], "14": [198.07244873046875, 397.58935546875, 0.000887294125277549], "15": [341.9427490234375, 446.27337646484375, 6.284291885094717e-05], "16": [236.9590606689453, 449.8951416015625, 9.36827200348489e-05]}} +{"t": 51.063118, "tracked": true, "track_id": 1, "bbox": [14.428849220275879, 0.08526769280433655, 612.3428955078125, 478.73089599609375], "det_conf": 0.929972231388092, "mean_kpt_conf": 0.9113162159919739, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9846799261453623, "right_lift": -0.8112535561691481, "left_bend": 0.5049211088101969, "right_bend": 0.6303741543818041}, "keypoints": {"0": [341.424072265625, 27.208648681640625, 0.9983534812927246], "1": [374.72576904296875, 0.0, 0.9961185455322266], "2": [310.2611389160156, 0.0, 0.9952174425125122], "3": [417.05126953125, 26.936050415039062, 0.9033063650131226], "4": [259.20770263671875, 19.061965942382812, 0.8552948832511902], "5": [480.9900817871094, 208.04214477539062, 0.9818524718284607], "6": [159.9539031982422, 180.0653839111328, 0.9960498213768005], "7": [515.6089477539062, 403.5356140136719, 0.6792967319488525], "8": [36.548797607421875, 351.287841796875, 0.9020209312438965], "9": [444.77349853515625, 414.9530029296875, 0.7969002723693848], "10": [134.27499389648438, 372.6207275390625, 0.9200674295425415], "11": [392.6960144042969, 480.0, 0.046056270599365234], "12": [186.1865234375, 480.0, 0.08316897600889206], "13": [412.98040771484375, 410.46624755859375, 0.0005667803343385458], "14": [192.0699462890625, 399.1840515136719, 0.0010208003222942352], "15": [360.6595764160156, 446.4236755371094, 6.972932169446722e-05], "16": [222.8462677001953, 451.47967529296875, 0.00010591201862553135]}} +{"t": 51.12313, "tracked": true, "track_id": 1, "bbox": [13.949212074279785, 0.0, 611.7242431640625, 478.6199035644531], "det_conf": 0.9307893514633179, "mean_kpt_conf": 0.9082731875506315, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9824073227375854, "right_lift": -0.822195218026195, "left_bend": 0.5269104512657066, "right_bend": 0.6225772241938072}, "keypoints": {"0": [341.3296203613281, 26.592941284179688, 0.9981034994125366], "1": [375.60009765625, 0.0, 0.9953963160514832], "2": [311.1502380371094, 0.0, 0.9942795038223267], "3": [417.492919921875, 27.54315185546875, 0.894645631313324], "4": [259.1462707519531, 14.2049560546875, 0.8403941988945007], "5": [481.83447265625, 212.3155517578125, 0.9826704859733582], "6": [156.277099609375, 181.2139892578125, 0.9957131147384644], "7": [518.5185546875, 405.2931213378906, 0.6845820546150208], "8": [38.083953857421875, 351.9393615722656, 0.887389063835144], "9": [446.09515380859375, 412.80206298828125, 0.8049440979957581], "10": [133.07064819335938, 373.22528076171875, 0.9128870964050293], "11": [393.77423095703125, 480.0, 0.04903517663478851], "12": [185.27879333496094, 480.0, 0.08295715600252151], "13": [413.339111328125, 422.7081604003906, 0.0005373171297833323], "14": [199.86793518066406, 408.6116943359375, 0.000906419416423887], "15": [355.4922180175781, 453.2470703125, 5.955157757853158e-05], "16": [239.36895751953125, 451.5233154296875, 8.65997644723393e-05]}} +{"t": 51.184785, "tracked": true, "track_id": 1, "bbox": [12.984872817993164, 0.0, 616.0335083007812, 478.78948974609375], "det_conf": 0.9277075529098511, "mean_kpt_conf": 0.9102719751271334, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9836568190703094, "right_lift": -0.8212306706066087, "left_bend": 0.5321013371352105, "right_bend": 0.6326094739795525}, "keypoints": {"0": [341.0086364746094, 24.83575439453125, 0.9982169270515442], "1": [375.06951904296875, 0.0, 0.9959627985954285], "2": [309.554931640625, 0.0, 0.994674801826477], "3": [418.3303527832031, 25.50933837890625, 0.914069414138794], "4": [257.7272033691406, 16.775146484375, 0.8501297831535339], "5": [487.0354309082031, 207.98939514160156, 0.9835712909698486], "6": [156.69723510742188, 180.35354614257812, 0.9963898062705994], "7": [522.711669921875, 402.8935546875, 0.6771673560142517], "8": [37.89935302734375, 351.3333740234375, 0.9020243287086487], "9": [448.7955322265625, 408.833740234375, 0.7863339781761169], "10": [134.7492218017578, 370.0224914550781, 0.9144512414932251], "11": [400.1643371582031, 480.0, 0.0517021045088768], "12": [187.63389587402344, 480.0, 0.09377363324165344], "13": [418.2830505371094, 418.771728515625, 0.0005040499963797629], "14": [192.4959259033203, 407.2335205078125, 0.0009222794906236231], "15": [359.4664001464844, 450.59619140625, 5.691637852578424e-05], "16": [226.74339294433594, 454.64306640625, 8.7904860265553e-05]}} +{"t": 51.243991, "tracked": true, "track_id": 1, "bbox": [13.763226509094238, 0.0, 614.8545532226562, 478.90521240234375], "det_conf": 0.9295796751976013, "mean_kpt_conf": 0.9134516390887174, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9799359585638159, "right_lift": -0.8177922091421606, "left_bend": 0.5340255396097099, "right_bend": 0.6334358862472338}, "keypoints": {"0": [340.08734130859375, 22.668045043945312, 0.9973783493041992], "1": [373.3679504394531, 0.0, 0.9937089681625366], "2": [309.1861572265625, 0.0, 0.9918809533119202], "3": [414.43060302734375, 25.601837158203125, 0.8855946660041809], "4": [257.5914001464844, 15.348526000976562, 0.8232599496841431], "5": [481.4368896484375, 203.76414489746094, 0.9821904897689819], "6": [157.27818298339844, 175.34815979003906, 0.9954272508621216], "7": [520.98046875, 398.1832275390625, 0.7244494557380676], "8": [35.33489990234375, 348.62689208984375, 0.9049112796783447], "9": [448.28076171875, 405.0197448730469, 0.8255895376205444], "10": [135.6197052001953, 368.3331604003906, 0.9235771298408508], "11": [397.0611267089844, 480.0, 0.054827217012643814], "12": [188.1320037841797, 480.0, 0.09228243678808212], "13": [415.56854248046875, 406.9116516113281, 0.0006219714414328337], "14": [190.39614868164062, 394.1628723144531, 0.0010492167202755809], "15": [361.63275146484375, 451.525634765625, 6.957349978620186e-05], "16": [219.92257690429688, 452.266845703125, 0.00010122515959665179]}} +{"t": 51.303654, "tracked": true, "track_id": 1, "bbox": [13.869866371154785, 0.0, 616.4715576171875, 478.96929931640625], "det_conf": 0.9271759986877441, "mean_kpt_conf": 0.9021844159473072, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9823960413439577, "right_lift": -0.8195848147042912, "left_bend": 0.5382147411422658, "right_bend": 0.6282083699260743}, "keypoints": {"0": [340.33441162109375, 21.641265869140625, 0.9970723390579224], "1": [373.44757080078125, 0.0, 0.9934091567993164], "2": [308.6719970703125, 0.0, 0.9912774562835693], "3": [415.851806640625, 25.81890869140625, 0.9032930731773376], "4": [257.58990478515625, 18.68994140625, 0.8269403576850891], "5": [488.1649169921875, 210.35836791992188, 0.9812584519386292], "6": [156.3873291015625, 183.81707763671875, 0.9955317974090576], "7": [524.8389892578125, 403.21978759765625, 0.6630396842956543], "8": [38.77496337890625, 352.05511474609375, 0.8871982097625732], "9": [447.9007873535156, 408.4487609863281, 0.7804050445556641], "10": [134.13002014160156, 372.1134948730469, 0.9046030044555664], "11": [398.3656921386719, 480.0, 0.04662998393177986], "12": [186.47042846679688, 480.0, 0.0825016126036644], "13": [416.95794677734375, 416.4037170410156, 0.0004643714928533882], "14": [199.88778686523438, 405.814697265625, 0.0008407175191678107], "15": [352.28179931640625, 450.43865966796875, 5.120283822179772e-05], "16": [236.75497436523438, 456.9136657714844, 7.88061588536948e-05]}} +{"t": 51.363175, "tracked": true, "track_id": 1, "bbox": [13.642431259155273, 0.0, 615.49169921875, 478.86328125], "det_conf": 0.9290708899497986, "mean_kpt_conf": 0.8958051042123274, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9842219101828632, "right_lift": -0.8322297690588022, "left_bend": 0.5309547889171413, "right_bend": 0.6308657226898027}, "keypoints": {"0": [342.5745544433594, 20.1878662109375, 0.9940669536590576], "1": [374.3298645019531, 0.0, 0.9843564629554749], "2": [310.758544921875, 0.0, 0.982633113861084], "3": [413.8052673339844, 21.92041015625, 0.8216930031776428], "4": [257.7928771972656, 15.217742919921875, 0.7877765893936157], "5": [486.5639343261719, 204.95559692382812, 0.9773270487785339], "6": [156.0863494873047, 179.5872802734375, 0.9944698810577393], "7": [521.777587890625, 400.83184814453125, 0.6972830295562744], "8": [41.07763671875, 352.22137451171875, 0.9025700688362122], "9": [445.56524658203125, 406.9900207519531, 0.7955149412155151], "10": [134.28115844726562, 368.84979248046875, 0.9161650538444519], "11": [399.2506408691406, 480.0, 0.056415826082229614], "12": [185.58937072753906, 480.0, 0.09864994138479233], "13": [419.2384338378906, 414.6378173828125, 0.0004898856277577579], "14": [186.73171997070312, 405.47314453125, 0.0008675960707478225], "15": [355.47589111328125, 448.06060791015625, 4.9580787162994966e-05], "16": [215.18878173828125, 455.789306640625, 7.369984086835757e-05]}} +{"t": 51.424101, "tracked": true, "track_id": 1, "bbox": [16.164264678955078, 0.0, 614.8265991210938, 478.6227722167969], "det_conf": 0.9289507269859314, "mean_kpt_conf": 0.8867847377603705, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9846254194067001, "right_lift": -0.8258442765621233, "left_bend": 0.5226896684204269, "right_bend": 0.6382516347003766}, "keypoints": {"0": [341.76824951171875, 19.03082275390625, 0.9931517839431763], "1": [374.48883056640625, 0.0, 0.983806848526001], "2": [310.147216796875, 0.0, 0.9791386723518372], "3": [416.12457275390625, 22.611083984375, 0.8338776230812073], "4": [259.01153564453125, 16.30078125, 0.7579399347305298], "5": [487.683837890625, 205.93785095214844, 0.9735704064369202], "6": [157.7025604248047, 181.6700439453125, 0.9938182234764099], "7": [522.41015625, 401.6820373535156, 0.6626356244087219], "8": [38.190582275390625, 356.6985778808594, 0.8896962404251099], "9": [458.6184997558594, 408.359619140625, 0.7798302173614502], "10": [134.84487915039062, 372.76983642578125, 0.9071665406227112], "11": [399.77056884765625, 480.0, 0.047061577439308167], "12": [188.74417114257812, 480.0, 0.08474932610988617], "13": [410.70355224609375, 405.94500732421875, 0.0005218195728957653], "14": [191.56478881835938, 398.69134521484375, 0.0009436426917091012], "15": [345.6156311035156, 441.935546875, 5.809542926726863e-05], "16": [224.35374450683594, 452.4242248535156, 8.848271681927145e-05]}} +{"t": 51.485399, "tracked": true, "track_id": 1, "bbox": [18.641460418701172, 0.04701949656009674, 613.3119506835938, 478.36376953125], "det_conf": 0.9294952154159546, "mean_kpt_conf": 0.8906547427177429, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9864084664867185, "right_lift": -0.8102110759992596, "left_bend": 0.47340916791066534, "right_bend": 0.6246781282268176}, "keypoints": {"0": [341.5350646972656, 20.01409912109375, 0.9944355487823486], "1": [375.27716064453125, 0.0, 0.9878275394439697], "2": [310.9332580566406, 0.0, 0.9812295436859131], "3": [418.2122802734375, 24.165191650390625, 0.8559998273849487], "4": [260.7317199707031, 14.668701171875, 0.7284985184669495], "5": [486.3868408203125, 207.11669921875, 0.9747807383537292], "6": [160.15402221679688, 179.88955688476562, 0.9930487871170044], "7": [518.044677734375, 397.16741943359375, 0.689189076423645], "8": [37.626678466796875, 349.2574768066406, 0.8806548118591309], "9": [455.1804504394531, 413.12542724609375, 0.8045658469200134], "10": [135.1295623779297, 372.56036376953125, 0.9069719314575195], "11": [395.516357421875, 480.0, 0.04693162441253662], "12": [187.1284637451172, 480.0, 0.07852452248334885], "13": [398.8070068359375, 405.7546081542969, 0.0005384570686146617], "14": [186.38674926757812, 396.07696533203125, 0.0008878003573045135], "15": [330.5039978027344, 441.5858154296875, 6.053375545889139e-05], "16": [216.0351104736328, 447.6633605957031, 8.672106923768297e-05]}} diff --git a/Camera_Recorder/RawPose/test2.pose.jsonl b/Camera_Recorder/RawPose/test2.pose.jsonl new file mode 100644 index 0000000..5850774 --- /dev/null +++ b/Camera_Recorder/RawPose/test2.pose.jsonl @@ -0,0 +1,1019 @@ +{"meta": {"format": "g1_camera_pose_raw_v1", "created_unix": 1773226859.2872612, "source": "0", "model": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/Models/yolo11n-pose.pt", "kpt_conf": 0.35, "dataset_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/DataG1/test2.jsonl", "config_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/camera_recorder_config.json", "joint_config_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/joint.json", "pose_mapping_file": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Camera_Recorder/pose_mapping.json"}} +{"t": 12.315318, "tracked": true, "track_id": 1, "bbox": [155.9248046875, 63.50054931640625, 544.1593017578125, 480.0], "det_conf": 0.9258037805557251, "mean_kpt_conf": 0.8483773976564407, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": false, "right_ready": true, "left_lift": null, "right_lift": -0.9671929949477734, "left_bend": null, "right_bend": 0.11633967350804748}, "keypoints": {"0": [312.59027099609375, 165.160400390625, 0.9981948733329773], "1": [332.3305358886719, 139.24896240234375, 0.9981676340103149], "2": [294.5965270996094, 145.5711669921875, 0.990868330001831], "3": [374.4066467285156, 140.66941833496094, 0.9802657961845398], "4": [281.91717529296875, 152.01527404785156, 0.6094515323638916], "5": [456.07989501953125, 252.41061401367188, 0.9854592084884644], "6": [242.44549560546875, 256.8323974609375, 0.9930534958839417], "7": [499.46002197265625, 428.73516845703125, 0.6446530222892761], "8": [199.91554260253906, 418.752685546875, 0.8120697140693665], "9": [479.3473205566406, 480.0, 0.3421628177165985], "10": [206.5953826904297, 480.0, 0.4715903699398041], "11": [427.9708251953125, 480.0, 0.08952321112155914], "12": [281.9747314453125, 480.0, 0.1353255659341812], "13": [470.9563293457031, 437.84759521484375, 0.0013346290215849876], "14": [238.93548583984375, 442.9306335449219, 0.0022331401705741882], "15": [445.2054443359375, 466.3155517578125, 0.00034354752278886735], "16": [235.80264282226562, 480.0, 0.0005283039063215256]}} +{"t": 12.351944, "tracked": true, "track_id": 1, "bbox": [155.63943481445312, 63.7459602355957, 543.71240234375, 479.9614562988281], "det_conf": 0.9231522679328918, "mean_kpt_conf": 0.8048334473913367, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9714441463247768, "right_lift": -0.9671267938052717, "left_bend": 0.18327260177506488, "right_bend": 0.12273575327564429}, "keypoints": {"0": [312.4603576660156, 165.2935791015625, 0.9981642365455627], "1": [332.02520751953125, 139.34654235839844, 0.9981587529182434], "2": [294.5772399902344, 146.20587158203125, 0.9904663562774658], "3": [374.5110168457031, 140.29360961914062, 0.9802743792533875], "4": [282.46160888671875, 152.76239013671875, 0.6036888360977173], "5": [456.97674560546875, 249.59535217285156, 0.9863414168357849], "6": [242.04037475585938, 257.3468017578125, 0.9931307435035706], "7": [499.7476806640625, 424.71173095703125, 0.669668436050415], "8": [199.10556030273438, 420.6353759765625, 0.814460277557373], "9": [480.4253234863281, 480.0, 0.3512744605541229], "10": [206.7742156982422, 480.0, 0.46754002571105957], "11": [430.51568603515625, 480.0, 0.09910693019628525], "12": [283.38702392578125, 480.0, 0.14391915500164032], "13": [476.1946105957031, 437.80267333984375, 0.001357951550744474], "14": [241.23641967773438, 445.72283935546875, 0.002195232082158327], "15": [450.506591796875, 466.73284912109375, 0.0003398704284336418], "16": [237.6345672607422, 480.0, 0.000510243815369904]}} +{"t": 12.397872, "tracked": true, "track_id": 1, "bbox": [155.35208129882812, 64.2332534790039, 543.7413940429688, 480.0], "det_conf": 0.9220805764198303, "mean_kpt_conf": 0.8208132846788927, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9627704163378529, "right_lift": -0.9678697337720534, "left_bend": 0.10617208085986916, "right_bend": 0.12018621345684931}, "keypoints": {"0": [314.62554931640625, 166.74264526367188, 0.9981824159622192], "1": [334.776123046875, 140.5590362548828, 0.9980831146240234], "2": [296.03021240234375, 146.5634765625, 0.9909017086029053], "3": [375.7971496582031, 141.64913940429688, 0.9760854244232178], "4": [281.349609375, 152.5504150390625, 0.636060357093811], "5": [453.5093688964844, 248.9111785888672, 0.9866895079612732], "6": [240.0769500732422, 260.01959228515625, 0.9925926327705383], "7": [499.49847412109375, 412.70550537109375, 0.7100977301597595], "8": [198.5492401123047, 419.8647766113281, 0.8155735731124878], "9": [495.4678649902344, 480.0, 0.41546347737312317], "10": [206.007568359375, 480.0, 0.5092161893844604], "11": [428.02398681640625, 480.0, 0.1002575233578682], "12": [282.31817626953125, 480.0, 0.13573981821537018], "13": [473.4923095703125, 426.611083984375, 0.0015324463602155447], "14": [241.588623046875, 438.059814453125, 0.0022787016350775957], "15": [443.1642150878906, 459.3843688964844, 0.00038521530223079026], "16": [236.75262451171875, 480.0, 0.0005403717514127493]}} +{"t": 12.450891, "tracked": true, "track_id": 1, "bbox": [155.13145446777344, 64.07742309570312, 543.5354614257812, 480.0], "det_conf": 0.9199749231338501, "mean_kpt_conf": 0.8161455474116586, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9652599574222736, "right_lift": -0.9679571557213883, "left_bend": 0.130163996993652, "right_bend": 0.1196552419762277}, "keypoints": {"0": [315.1129455566406, 166.50027465820312, 0.9981507658958435], "1": [334.8573913574219, 140.74720764160156, 0.9980533123016357], "2": [296.7721862792969, 146.86798095703125, 0.9908788800239563], "3": [375.2742919921875, 142.71240234375, 0.9774162173271179], "4": [282.62005615234375, 153.85430908203125, 0.6369701623916626], "5": [454.4212646484375, 250.9503936767578, 0.9866081476211548], "6": [241.38204956054688, 259.2055969238281, 0.9928985834121704], "7": [500.11700439453125, 419.75909423828125, 0.6936177015304565], "8": [199.7070770263672, 419.84722900390625, 0.8184112906455994], "9": [491.3472595214844, 480.0, 0.3884982764720917], "10": [207.0869598388672, 480.0, 0.4960976839065552], "11": [427.70831298828125, 480.0, 0.09519857913255692], "12": [282.2951965332031, 480.0, 0.1340761035680771], "13": [471.6444091796875, 427.2604675292969, 0.0014675460988655686], "14": [239.00588989257812, 436.0775146484375, 0.002273222664371133], "15": [442.65380859375, 460.79150390625, 0.00037865701597183943], "16": [234.17147827148438, 480.0, 0.0005477065569721162]}} +{"t": 12.513353, "tracked": true, "track_id": 1, "bbox": [154.5592041015625, 64.13099670410156, 544.0686645507812, 480.0], "det_conf": 0.9248220920562744, "mean_kpt_conf": 0.8219559653238817, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9623445546478802, "right_lift": -0.9666247779090507, "left_bend": 0.11964071231522078, "right_bend": 0.13803153986345665}, "keypoints": {"0": [318.0712890625, 164.99221801757812, 0.9981503486633301], "1": [338.24981689453125, 139.55355834960938, 0.9979833364486694], "2": [299.0763244628906, 145.312744140625, 0.9916728138923645], "3": [377.1346130371094, 143.212158203125, 0.9747889637947083], "4": [282.5665283203125, 153.76925659179688, 0.6801769137382507], "5": [452.84832763671875, 250.12203979492188, 0.9863889813423157], "6": [239.86212158203125, 260.50640869140625, 0.9930243492126465], "7": [499.3244323730469, 414.6572265625, 0.6965082287788391], "8": [197.39573669433594, 420.7314453125, 0.8217921257019043], "9": [492.73095703125, 480.0, 0.3920339047908783], "10": [207.84765625, 480.0, 0.5089956521987915], "11": [428.15948486328125, 480.0, 0.09799769520759583], "12": [283.1668395996094, 480.0, 0.1377994865179062], "13": [472.0076599121094, 425.555908203125, 0.0015159350587055087], "14": [241.65972900390625, 435.99822998046875, 0.002329279901459813], "15": [441.50103759765625, 461.33465576171875, 0.000394292117562145], "16": [236.2714080810547, 480.0, 0.0005639474838972092]}} +{"t": 12.551525, "tracked": true, "track_id": 1, "bbox": [154.61033630371094, 64.0889663696289, 543.6065673828125, 480.0], "det_conf": 0.9204747080802917, "mean_kpt_conf": 0.8161753903735768, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9620729627855593, "right_lift": -0.9691487245282557, "left_bend": 0.12169549327347257, "right_bend": 0.12639759819681706}, "keypoints": {"0": [319.7908020019531, 164.24099731445312, 0.9981961846351624], "1": [340.00164794921875, 138.7758331298828, 0.9980034232139587], "2": [300.416015625, 144.11976623535156, 0.9922704696655273], "3": [377.95306396484375, 142.935546875, 0.9742635488510132], "4": [282.8347473144531, 152.7526397705078, 0.6946622133255005], "5": [452.646240234375, 252.8946533203125, 0.9860557317733765], "6": [239.9416046142578, 260.5661315917969, 0.9929527640342712], "7": [500.55078125, 421.8424987792969, 0.6753957271575928], "8": [198.62777709960938, 423.01251220703125, 0.8118342757225037], "9": [494.36151123046875, 480.0, 0.36644819378852844], "10": [207.12677001953125, 480.0, 0.4878467619419098], "11": [426.33355712890625, 480.0, 0.09072547405958176], "12": [281.484619140625, 480.0, 0.12886737287044525], "13": [473.9835205078125, 429.0357666015625, 0.0014401025837287307], "14": [242.26300048828125, 437.3412170410156, 0.0022441467735916376], "15": [445.31463623046875, 462.8952331542969, 0.0003885866026394069], "16": [236.96168518066406, 480.0, 0.0005608443752862513]}} +{"t": 12.613247, "tracked": true, "track_id": 1, "bbox": [154.6980438232422, 63.8941535949707, 544.9160766601562, 479.9837951660156], "det_conf": 0.9224942922592163, "mean_kpt_conf": 0.8179698044603522, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.96342175378989, "right_lift": -0.970561439189852, "left_bend": 0.17494819041183368, "right_bend": 0.1382318439365324}, "keypoints": {"0": [323.1971130371094, 162.77664184570312, 0.9982964396476746], "1": [343.8917236328125, 137.8624725341797, 0.9980224370956421], "2": [303.6072082519531, 141.98968505859375, 0.993190348148346], "3": [380.4471740722656, 143.38198852539062, 0.9731137156486511], "4": [283.93634033203125, 150.70021057128906, 0.718633770942688], "5": [453.1077880859375, 254.7382049560547, 0.9857895970344543], "6": [239.32421875, 258.9053039550781, 0.9934705495834351], "7": [501.2203369140625, 427.7025451660156, 0.6615240573883057], "8": [198.38150024414062, 423.89105224609375, 0.8214172124862671], "9": [486.2776184082031, 480.0, 0.3552207052707672], "10": [209.2318878173828, 480.0, 0.4989890158176422], "11": [426.80291748046875, 480.0, 0.08952932059764862], "12": [280.85595703125, 480.0, 0.1326628029346466], "13": [476.1379699707031, 434.54022216796875, 0.0013548536226153374], "14": [242.06881713867188, 439.0406799316406, 0.0021959184668958187], "15": [450.0633544921875, 468.33551025390625, 0.0003635207540355623], "16": [237.23651123046875, 480.0, 0.0005390435107983649]}} +{"t": 12.681415, "tracked": true, "track_id": 1, "bbox": [154.44541931152344, 64.00922393798828, 544.9649658203125, 480.0], "det_conf": 0.9202648401260376, "mean_kpt_conf": 0.820300278338519, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.962784222574359, "right_lift": -0.9670012199509533, "left_bend": 0.15193993406661468, "right_bend": 0.13844151084795825}, "keypoints": {"0": [326.80218505859375, 163.0054168701172, 0.998221218585968], "1": [346.3853759765625, 137.346435546875, 0.9978752136230469], "2": [306.1582946777344, 142.77117919921875, 0.9931475520133972], "3": [381.55780029296875, 141.2124481201172, 0.9680212736129761], "4": [285.1307373046875, 152.00732421875, 0.7378776669502258], "5": [453.260986328125, 249.75950622558594, 0.9851572513580322], "6": [240.76559448242188, 259.3605041503906, 0.9928612112998962], "7": [500.7144775390625, 418.80255126953125, 0.6713804006576538], "8": [197.53915405273438, 423.42901611328125, 0.8134543299674988], "9": [488.07586669921875, 480.0, 0.3655438721179962], "10": [207.676513671875, 480.0, 0.4997630715370178], "11": [428.25164794921875, 480.0, 0.08712571859359741], "12": [283.556884765625, 480.0, 0.12456095218658447], "13": [475.3223876953125, 425.1255798339844, 0.001451880787499249], "14": [242.70423889160156, 434.2887268066406, 0.0022344114258885384], "15": [447.3667907714844, 462.49224853515625, 0.0003986994852311909], "16": [236.47169494628906, 480.0, 0.0005654448759742081]}} +{"t": 12.715591, "tracked": true, "track_id": 1, "bbox": [154.27622985839844, 64.16841125488281, 543.6956176757812, 480.0], "det_conf": 0.9195390343666077, "mean_kpt_conf": 0.8279741568998857, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9618910650215694, "right_lift": -0.9704914299023519, "left_bend": 0.1022029746738569, "right_bend": 0.13955260910721687}, "keypoints": {"0": [326.7969055175781, 163.48898315429688, 0.9981998205184937], "1": [346.75482177734375, 137.8563232421875, 0.9977722764015198], "2": [306.2915954589844, 142.4288330078125, 0.9930821657180786], "3": [381.60296630859375, 141.28762817382812, 0.9645572900772095], "4": [284.6329345703125, 150.19296264648438, 0.7491793036460876], "5": [450.6315612792969, 249.46575927734375, 0.9858077764511108], "6": [239.01522827148438, 259.6242370605469, 0.992725133895874], "7": [497.419677734375, 414.0584716796875, 0.6992327570915222], "8": [198.29444885253906, 423.511962890625, 0.8154184222221375], "9": [494.5084533691406, 480.0, 0.3979206085205078], "10": [209.44444274902344, 480.0, 0.5138201713562012], "11": [425.2425537109375, 478.83221435546875, 0.09316211193799973], "12": [281.00335693359375, 480.0, 0.12718920409679413], "13": [474.2588195800781, 423.8013916015625, 0.001553135341964662], "14": [242.54176330566406, 434.75140380859375, 0.002276249695569277], "15": [445.022705078125, 461.4527587890625, 0.00041304886690340936], "16": [237.68055725097656, 480.0, 0.0005622032913379371]}} +{"t": 12.776047, "tracked": true, "track_id": 1, "bbox": [154.26031494140625, 64.24340057373047, 544.9754028320312, 479.9845886230469], "det_conf": 0.9178844094276428, "mean_kpt_conf": 0.824010128324682, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.960821944220517, "right_lift": -0.9700293699321677, "left_bend": 0.13292225807765656, "right_bend": 0.139940431281887}, "keypoints": {"0": [328.1459655761719, 163.35354614257812, 0.9982150793075562], "1": [347.8423767089844, 137.71551513671875, 0.9977784752845764], "2": [307.7342529296875, 142.234130859375, 0.9931083917617798], "3": [382.3833923339844, 140.78689575195312, 0.9648569226264954], "4": [286.1444091796875, 149.61001586914062, 0.7438161969184875], "5": [453.2394714355469, 249.650390625, 0.98624587059021], "6": [239.3992919921875, 258.6065368652344, 0.9926595091819763], "7": [501.8976135253906, 418.32818603515625, 0.6938960552215576], "8": [197.69927978515625, 425.07684326171875, 0.8064843416213989], "9": [493.4114074707031, 480.0, 0.3894551992416382], "10": [208.50099182128906, 480.0, 0.4975953698158264], "11": [426.7449035644531, 480.0, 0.08933215588331223], "12": [281.17620849609375, 480.0, 0.1202467828989029], "13": [477.6101989746094, 424.49951171875, 0.0014983575092628598], "14": [244.34800720214844, 433.75067138671875, 0.0021759888622909784], "15": [448.0831604003906, 462.2451171875, 0.00040289750904776156], "16": [239.02349853515625, 480.0, 0.0005460656248033047]}} +{"t": 12.847715, "tracked": true, "track_id": 1, "bbox": [153.98782348632812, 64.40703582763672, 543.5755004882812, 479.9381103515625], "det_conf": 0.9200171828269958, "mean_kpt_conf": 0.8358169577338479, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9614007292236524, "right_lift": -0.9693055525744645, "left_bend": 0.1268864918845016, "right_bend": 0.14492822191899088}, "keypoints": {"0": [328.67364501953125, 163.9837646484375, 0.9982838034629822], "1": [348.501708984375, 138.41998291015625, 0.9978366494178772], "2": [308.17547607421875, 142.8132781982422, 0.9932360053062439], "3": [382.8921813964844, 141.12557983398438, 0.9642075896263123], "4": [286.007080078125, 149.76708984375, 0.7473134994506836], "5": [451.77618408203125, 247.74000549316406, 0.987185537815094], "6": [239.27711486816406, 258.5208740234375, 0.9931174516677856], "7": [499.066162109375, 412.97454833984375, 0.7330365777015686], "8": [197.2776641845703, 424.10467529296875, 0.8284648060798645], "9": [490.9925842285156, 480.0, 0.42379021644592285], "10": [209.01026916503906, 480.0, 0.5275143980979919], "11": [427.10467529296875, 480.0, 0.11026117205619812], "12": [281.673828125, 480.0, 0.1449800580739975], "13": [478.822509765625, 431.046630859375, 0.0015371710760518909], "14": [243.30267333984375, 441.6990661621094, 0.0021722360979765654], "15": [450.96826171875, 467.7728576660156, 0.0003751398471649736], "16": [236.28338623046875, 480.0, 0.0004979308578185737]}} +{"t": 12.911498, "tracked": true, "track_id": 1, "bbox": [154.18138122558594, 64.23567199707031, 543.140380859375, 479.9681701660156], "det_conf": 0.9233901500701904, "mean_kpt_conf": 0.8334652375091206, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9588533784570642, "right_lift": -0.9691150028298507, "left_bend": 0.09232517505251737, "right_bend": 0.1378993555280932}, "keypoints": {"0": [329.69525146484375, 163.28121948242188, 0.9982094764709473], "1": [349.71649169921875, 137.94564819335938, 0.9976801872253418], "2": [309.14520263671875, 141.8482666015625, 0.9933081865310669], "3": [383.4705810546875, 141.6391143798828, 0.9610757231712341], "4": [286.22406005859375, 149.21514892578125, 0.7651994228363037], "5": [451.46917724609375, 249.11268615722656, 0.9864835143089294], "6": [238.84507751464844, 258.92315673828125, 0.9927889704704285], "7": [499.225341796875, 410.40496826171875, 0.7166740298271179], "8": [197.54660034179688, 421.21624755859375, 0.8197491765022278], "9": [499.0731201171875, 480.0, 0.41473516821861267], "10": [208.4892120361328, 480.0, 0.5222137570381165], "11": [425.4033508300781, 478.5796203613281, 0.10053638368844986], "12": [280.55560302734375, 480.0, 0.13362336158752441], "13": [472.1597900390625, 423.7743225097656, 0.0016195616917684674], "14": [239.88690185546875, 434.45477294921875, 0.0022882267367094755], "15": [440.5280456542969, 462.1310729980469, 0.0004183559794910252], "16": [233.89674377441406, 479.7811279296875, 0.0005513689247891307]}} +{"t": 12.97922, "tracked": true, "track_id": 1, "bbox": [153.99143981933594, 64.51786804199219, 542.979736328125, 480.0], "det_conf": 0.9231643676757812, "mean_kpt_conf": 0.8366749259558591, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9612816331063162, "right_lift": -0.9683233288806491, "left_bend": 0.09577533786428502, "right_bend": 0.14821999048105944}, "keypoints": {"0": [330.5998840332031, 162.9014892578125, 0.9982120990753174], "1": [350.2432556152344, 137.88565063476562, 0.9976466298103333], "2": [310.0901184082031, 142.17703247070312, 0.9934371113777161], "3": [383.5835266113281, 142.0247344970703, 0.9614065885543823], "4": [287.3262939453125, 150.4828338623047, 0.7738552689552307], "5": [451.499267578125, 249.6045379638672, 0.9868582487106323], "6": [239.15896606445312, 259.1123046875, 0.9932977557182312], "7": [497.96490478515625, 411.6937255859375, 0.7212570905685425], "8": [197.43165588378906, 420.9288024902344, 0.830088198184967], "9": [496.4819641113281, 480.0, 0.41649147868156433], "10": [210.2247314453125, 480.0, 0.530873715877533], "11": [424.889404296875, 479.70989990234375, 0.109700046479702], "12": [280.4309387207031, 480.0, 0.14790818095207214], "13": [471.60546875, 428.0821228027344, 0.001645373529754579], "14": [240.94796752929688, 438.69195556640625, 0.002366364700719714], "15": [441.5339050292969, 464.08074951171875, 0.0004099791985936463], "16": [237.01634216308594, 480.0, 0.0005470695323310792]}} +{"t": 13.043426, "tracked": true, "track_id": 1, "bbox": [153.89979553222656, 64.43184661865234, 543.80810546875, 480.0], "det_conf": 0.917124330997467, "mean_kpt_conf": 0.8320772512392565, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9615176523409932, "right_lift": -0.9695615954349228, "left_bend": 0.11635673005526123, "right_bend": 0.14191107142881915}, "keypoints": {"0": [331.5909423828125, 162.59024047851562, 0.9982736110687256], "1": [351.59930419921875, 138.19129943847656, 0.997623860836029], "2": [311.0447082519531, 141.67599487304688, 0.9940713047981262], "3": [384.1560363769531, 144.17408752441406, 0.9592782258987427], "4": [287.17822265625, 150.82742309570312, 0.7905066013336182], "5": [451.0008239746094, 253.0717315673828, 0.9864482283592224], "6": [238.86033630371094, 259.4861145019531, 0.9934365749359131], "7": [497.8944396972656, 417.1851501464844, 0.6997113227844238], "8": [197.93521118164062, 421.5438232421875, 0.8293896913528442], "9": [492.401611328125, 480.0, 0.38638338446617126], "10": [209.69143676757812, 480.0, 0.5177269577980042], "11": [425.41314697265625, 480.0, 0.10433699190616608], "12": [280.77154541015625, 480.0, 0.145181804895401], "13": [474.7320861816406, 431.1672058105469, 0.0015382826095446944], "14": [242.38645935058594, 438.7016906738281, 0.002290986943989992], "15": [446.64764404296875, 466.3905029296875, 0.0003979235189035535], "16": [238.246826171875, 480.0, 0.0005433844635263085]}} +{"t": 13.110803, "tracked": true, "track_id": 1, "bbox": [153.85983276367188, 64.63133239746094, 542.7626342773438, 479.95819091796875], "det_conf": 0.9236065149307251, "mean_kpt_conf": 0.8498785170641813, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9528768399014037, "right_lift": -0.9698937842821882, "left_bend": 0.08374878117551658, "right_bend": 0.13510872206009672}, "keypoints": {"0": [333.01531982421875, 162.50619506835938, 0.9982613921165466], "1": [353.2411193847656, 138.19837951660156, 0.9975034594535828], "2": [312.2308044433594, 141.24945068359375, 0.9939563870429993], "3": [385.0842590332031, 143.9514617919922, 0.9542838335037231], "4": [287.0367431640625, 149.95233154296875, 0.8032060265541077], "5": [449.42608642578125, 248.96871948242188, 0.9879088997840881], "6": [237.88400268554688, 260.28900146484375, 0.9935425519943237], "7": [498.31036376953125, 402.5192565917969, 0.7590434551239014], "8": [197.8988037109375, 419.5369873046875, 0.8449038863182068], "9": [501.807861328125, 480.0, 0.4571506381034851], "10": [208.80471801757812, 480.0, 0.558903157711029], "11": [425.28857421875, 478.93096923828125, 0.13031065464019775], "12": [280.8757019042969, 480.0, 0.16795819997787476], "13": [472.87506103515625, 428.7152099609375, 0.0017553846118971705], "14": [240.65806579589844, 440.2527770996094, 0.0023928938899189234], "15": [441.84942626953125, 465.7972717285156, 0.000406997132813558], "16": [234.59788513183594, 480.0, 0.000518235785420984]}} +{"t": 13.172604, "tracked": true, "track_id": 1, "bbox": [153.7557830810547, 64.60464477539062, 543.244140625, 480.0], "det_conf": 0.9218955636024475, "mean_kpt_conf": 0.83034301887859, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9640501489290788, "right_lift": -0.9722669222069957, "left_bend": 0.1460656654928218, "right_bend": 0.14202037648111407}, "keypoints": {"0": [334.6866149902344, 162.0962371826172, 0.9984079003334045], "1": [354.9095764160156, 138.07302856445312, 0.9975321292877197], "2": [314.02471923828125, 140.6198272705078, 0.9949448704719543], "3": [386.251953125, 144.80560302734375, 0.9516620635986328], "4": [288.3912658691406, 149.3217010498047, 0.8151894807815552], "5": [452.13348388671875, 255.72967529296875, 0.9866732358932495], "6": [238.5733642578125, 257.1341552734375, 0.9937029480934143], "7": [499.4565124511719, 427.42059326171875, 0.6851236820220947], "8": [198.607177734375, 423.2826232910156, 0.8308910727500916], "9": [489.348388671875, 480.0, 0.3665142059326172], "10": [210.70257568359375, 480.0, 0.5131316184997559], "11": [425.698486328125, 480.0, 0.1037210077047348], "12": [279.7220153808594, 480.0, 0.14698892831802368], "13": [477.4650573730469, 438.64984130859375, 0.0014570727944374084], "14": [241.52932739257812, 441.9261169433594, 0.002210636157542467], "15": [452.7698059082031, 472.5111389160156, 0.0003625487443059683], "16": [237.76693725585938, 480.0, 0.000497206870932132]}} +{"t": 13.236121, "tracked": true, "track_id": 1, "bbox": [153.90745544433594, 64.88619995117188, 543.061767578125, 480.0], "det_conf": 0.9217106103897095, "mean_kpt_conf": 0.8312291177836332, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9591009243113436, "right_lift": -0.9703196117791322, "left_bend": 0.12007727633704746, "right_bend": 0.13661746759994467}, "keypoints": {"0": [336.5131530761719, 161.62310791015625, 0.9983083009719849], "1": [356.60333251953125, 137.7947998046875, 0.997357189655304], "2": [315.56396484375, 140.42007446289062, 0.9948506951332092], "3": [387.1264343261719, 144.924072265625, 0.9468062520027161], "4": [289.108154296875, 149.99874877929688, 0.8274585604667664], "5": [451.1839599609375, 252.85073852539062, 0.9862099289894104], "6": [238.24661254882812, 258.82354736328125, 0.9932774901390076], "7": [499.40576171875, 416.2396545410156, 0.69216388463974], "8": [197.55703735351562, 422.0892028808594, 0.8238141536712646], "9": [493.6359558105469, 480.0, 0.3740397095680237], "10": [208.3914031982422, 480.0, 0.5092341303825378], "11": [423.886962890625, 480.0, 0.10465361177921295], "12": [278.70452880859375, 480.0, 0.14385446906089783], "13": [472.72576904296875, 430.8802795410156, 0.0015830722404643893], "14": [238.95106506347656, 437.6598205566406, 0.0023001364897936583], "15": [443.90850830078125, 468.0552062988281, 0.00041014220914803445], "16": [233.3842010498047, 480.0, 0.0005413734470494092]}} +{"t": 13.272566, "tracked": true, "track_id": 1, "bbox": [154.04312133789062, 64.8685302734375, 543.1339111328125, 479.9790954589844], "det_conf": 0.9211171865463257, "mean_kpt_conf": 0.8687067866325379, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": false, "right_ready": true, "left_lift": null, "right_lift": -0.9715043411994687, "left_bend": null, "right_bend": 0.13861003730249105}, "keypoints": {"0": [337.06695556640625, 161.2761688232422, 0.9983450174331665], "1": [357.5947570800781, 137.72930908203125, 0.9973635077476501], "2": [316.222900390625, 139.64920043945312, 0.9951868653297424], "3": [387.9238586425781, 145.76156616210938, 0.9454972743988037], "4": [289.23870849609375, 149.11105346679688, 0.8336566686630249], "5": [451.42120361328125, 255.681884765625, 0.9852305054664612], "6": [238.1632843017578, 258.1304931640625, 0.9931469559669495], "7": [499.2351379394531, 425.0697021484375, 0.651307225227356], "8": [197.48052978515625, 424.8808898925781, 0.8095022439956665], "9": [488.5164794921875, 480.0, 0.33131861686706543], "10": [208.43338012695312, 480.0, 0.4778316020965576], "11": [424.17315673828125, 480.0, 0.09216096997261047], "12": [278.89013671875, 480.0, 0.13136695325374603], "13": [472.6973876953125, 435.2991638183594, 0.001462526386603713], "14": [239.80169677734375, 438.8349914550781, 0.002194270258769393], "15": [446.0511779785156, 472.5555114746094, 0.000396321207517758], "16": [235.8120574951172, 480.0, 0.0005346801481209695]}} +{"t": 13.337144, "tracked": true, "track_id": 1, "bbox": [153.25363159179688, 64.47232818603516, 542.718017578125, 479.917236328125], "det_conf": 0.925087571144104, "mean_kpt_conf": 0.8367644575509158, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9555379063266066, "right_lift": -0.9677453098322184, "left_bend": 0.07872670558643692, "right_bend": 0.13697753063025503}, "keypoints": {"0": [338.5699768066406, 160.66412353515625, 0.9982705116271973], "1": [359.0193176269531, 137.63980102539062, 0.9971893429756165], "2": [317.7474670410156, 139.19273376464844, 0.9949277639389038], "3": [388.5703430175781, 145.9652099609375, 0.9408428072929382], "4": [290.31121826171875, 148.80453491210938, 0.8428618907928467], "5": [448.8174133300781, 251.50717163085938, 0.9861544966697693], "6": [238.762939453125, 257.7749328613281, 0.9932464361190796], "7": [497.2386474609375, 408.41900634765625, 0.7106584310531616], "8": [196.82080078125, 418.88800048828125, 0.8325405120849609], "9": [500.9635314941406, 480.0, 0.38680794835090637], "10": [207.66708374023438, 480.0, 0.5209088921546936], "11": [422.43450927734375, 478.9892883300781, 0.11486094444990158], "12": [278.91290283203125, 480.0, 0.15523487329483032], "13": [469.7076416015625, 429.9570007324219, 0.0016789281507954001], "14": [237.08334350585938, 437.5167236328125, 0.0023730641696602106], "15": [441.6796875, 469.0903015136719, 0.0004241980204824358], "16": [229.9295654296875, 480.0, 0.0005447412841022015]}} +{"t": 13.372587, "tracked": true, "track_id": 1, "bbox": [153.3313751220703, 64.42866516113281, 543.2533569335938, 479.96954345703125], "det_conf": 0.920911431312561, "mean_kpt_conf": 0.8329294703223489, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9531814294951249, "right_lift": -0.9698566462699069, "left_bend": 0.0869071359779377, "right_bend": 0.12249196406492623}, "keypoints": {"0": [338.8555908203125, 160.393798828125, 0.9982976317405701], "1": [359.401611328125, 137.615966796875, 0.9971103072166443], "2": [317.9223327636719, 138.73394775390625, 0.9951770305633545], "3": [388.4060974121094, 146.87640380859375, 0.9360265135765076], "4": [289.7760009765625, 148.86109924316406, 0.850257158279419], "5": [448.75140380859375, 252.69448852539062, 0.9858012795448303], "6": [238.4034423828125, 258.28253173828125, 0.9930151700973511], "7": [498.906982421875, 410.78814697265625, 0.6964960098266602], "8": [197.67596435546875, 420.38214111328125, 0.8247624635696411], "9": [501.273681640625, 480.0, 0.373619019985199], "10": [205.9962921142578, 480.0, 0.5116615891456604], "11": [422.47747802734375, 478.3055419921875, 0.10414877533912659], "12": [278.7813415527344, 480.0, 0.14155185222625732], "13": [469.9940185546875, 426.3816833496094, 0.001644466770812869], "14": [236.5630645751953, 432.92144775390625, 0.002332677599042654], "15": [441.27777099609375, 468.1000061035156, 0.00043050781823694706], "16": [228.46885681152344, 477.1362609863281, 0.0005521209095604718]}} +{"t": 13.437544, "tracked": true, "track_id": 1, "bbox": [153.82838439941406, 64.92401123046875, 543.321044921875, 480.0], "det_conf": 0.9243487119674683, "mean_kpt_conf": 0.8666656941175461, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": false, "right_ready": true, "left_lift": null, "right_lift": -0.9699463763011473, "left_bend": null, "right_bend": 0.1152204937648778}, "keypoints": {"0": [340.099853515625, 160.2255859375, 0.9984461665153503], "1": [360.54632568359375, 137.6612548828125, 0.997246265411377], "2": [319.3476257324219, 138.60311889648438, 0.9958196878433228], "3": [389.364990234375, 147.73971557617188, 0.9363654851913452], "4": [290.9590148925781, 149.046630859375, 0.8508789539337158], "5": [452.48748779296875, 258.2705383300781, 0.9848856329917908], "6": [239.38743591308594, 256.6255187988281, 0.9931027889251709], "7": [501.58050537109375, 429.9502868652344, 0.6324751377105713], "8": [197.79547119140625, 422.42437744140625, 0.8091992735862732], "9": [485.3663024902344, 480.0, 0.3076115548610687], "10": [204.51544189453125, 480.0, 0.4682375490665436], "11": [425.30987548828125, 480.0, 0.08875278383493423], "12": [279.6500244140625, 480.0, 0.12893465161323547], "13": [474.5301818847656, 437.0444641113281, 0.001399518339894712], "14": [238.23297119140625, 436.3475341796875, 0.002128956839442253], "15": [450.0102844238281, 475.4996337890625, 0.0003837636031676084], "16": [231.92254638671875, 480.0, 0.0005187843926250935]}} +{"t": 13.503671, "tracked": true, "track_id": 1, "bbox": [153.30726623535156, 64.94074249267578, 543.809326171875, 479.9522705078125], "det_conf": 0.9278765320777893, "mean_kpt_conf": 0.8285672745921395, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9514324291045134, "right_lift": -0.968375862569593, "left_bend": 0.09968573652153188, "right_bend": 0.11134228780838795}, "keypoints": {"0": [340.46087646484375, 160.35902404785156, 0.9983603358268738], "1": [361.00738525390625, 138.29251098632812, 0.9970274567604065], "2": [320.0846252441406, 138.39427185058594, 0.9955390095710754], "3": [389.031494140625, 148.33270263671875, 0.9300629496574402], "4": [291.38079833984375, 148.01490783691406, 0.8592687845230103], "5": [448.75714111328125, 254.80319213867188, 0.9855554103851318], "6": [238.97901916503906, 257.3857727050781, 0.9930786490440369], "7": [500.12445068359375, 413.5535888671875, 0.6822306513786316], "8": [197.41336059570312, 418.7158203125, 0.8228539824485779], "9": [500.10906982421875, 480.0, 0.35171499848365784], "10": [203.415771484375, 480.0, 0.4985477924346924], "11": [422.0235290527344, 479.72772216796875, 0.10149502754211426], "12": [278.4977722167969, 480.0, 0.14022693037986755], "13": [467.914306640625, 429.4641418457031, 0.0015884276945143938], "14": [234.10765075683594, 433.0672302246094, 0.002266806550323963], "15": [441.5530090332031, 470.70611572265625, 0.0004204236902296543], "16": [226.565673828125, 475.61700439453125, 0.0005381066584959626]}} +{"t": 13.570282, "tracked": true, "track_id": 1, "bbox": [153.52761840820312, 64.75846099853516, 542.6367797851562, 479.9306335449219], "det_conf": 0.9266536235809326, "mean_kpt_conf": 0.867645901441574, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": false, "right_ready": true, "left_lift": null, "right_lift": -0.9662045926326686, "left_bend": null, "right_bend": 0.11965211870600456}, "keypoints": {"0": [341.81396484375, 160.1284637451172, 0.9984416365623474], "1": [362.3330383300781, 137.67831420898438, 0.9971567392349243], "2": [321.4560241699219, 137.9818878173828, 0.9958705306053162], "3": [390.67633056640625, 147.47781372070312, 0.9321058988571167], "4": [292.7853698730469, 147.37921142578125, 0.8576576709747314], "5": [451.6530456542969, 258.37371826171875, 0.9844547510147095], "6": [239.6673583984375, 256.3246765136719, 0.9931166172027588], "7": [500.45025634765625, 427.70166015625, 0.632197380065918], "8": [195.66458129882812, 421.257080078125, 0.8103569149971008], "9": [486.72509765625, 480.0, 0.31013408303260803], "10": [202.46055603027344, 480.0, 0.47510087490081787], "11": [421.7974853515625, 480.0, 0.08475500345230103], "12": [276.65716552734375, 480.0, 0.12382262200117111], "13": [469.19488525390625, 434.52557373046875, 0.0013985470868647099], "14": [232.695556640625, 434.00689697265625, 0.002105810446664691], "15": [445.8812255859375, 473.771240234375, 0.00039105676114559174], "16": [226.01080322265625, 477.44818115234375, 0.000520777830388397]}} +{"t": 13.635112, "tracked": true, "track_id": 1, "bbox": [151.71975708007812, 64.59561920166016, 543.1724243164062, 480.0], "det_conf": 0.9300714135169983, "mean_kpt_conf": 0.8767033100128174, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": false, "right_ready": true, "left_lift": null, "right_lift": -0.9644475676567726, "left_bend": null, "right_bend": 0.10746630572580575}, "keypoints": {"0": [342.2899169921875, 159.8187255859375, 0.9984789490699768], "1": [362.8481750488281, 137.6556396484375, 0.9971359968185425], "2": [321.8687744140625, 137.50677490234375, 0.995902955532074], "3": [390.69189453125, 147.84974670410156, 0.9288316369056702], "4": [292.7983703613281, 146.89224243164062, 0.8624072074890137], "5": [450.9279479980469, 256.5596923828125, 0.9852427244186401], "6": [240.15969848632812, 255.35491943359375, 0.9932756423950195], "7": [503.0369873046875, 419.07391357421875, 0.6690577268600464], "8": [195.94805908203125, 416.70172119140625, 0.8284270167350769], "9": [501.4617919921875, 480.0, 0.34641897678375244], "10": [200.39662170410156, 480.0, 0.5082732439041138], "11": [422.3951416015625, 480.0, 0.09395021200180054], "12": [278.004150390625, 480.0, 0.13442102074623108], "13": [466.6334228515625, 430.63897705078125, 0.001482742140069604], "14": [229.6123809814453, 431.04974365234375, 0.0021747436840087175], "15": [442.7915954589844, 472.4260559082031, 0.0003937823639716953], "16": [221.34780883789062, 475.9940490722656, 0.0005127806216478348]}} +{"t": 13.671372, "tracked": true, "track_id": 1, "bbox": [150.08416748046875, 64.97026824951172, 542.3870849609375, 480.0], "det_conf": 0.9266967177391052, "mean_kpt_conf": 0.8761235177516937, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": false, "right_ready": true, "left_lift": null, "right_lift": -0.9636931813761314, "left_bend": null, "right_bend": 0.1030413849705249}, "keypoints": {"0": [342.40252685546875, 159.88189697265625, 0.9984121322631836], "1": [363.0959777832031, 137.83969116210938, 0.9970301389694214], "2": [322.1546325683594, 137.44650268554688, 0.9957426190376282], "3": [390.7566833496094, 147.8444366455078, 0.9262253642082214], "4": [292.9237365722656, 146.47691345214844, 0.8644805550575256], "5": [449.7407531738281, 254.22164916992188, 0.9849981665611267], "6": [239.27537536621094, 256.6853332519531, 0.9931294322013855], "7": [500.8436279296875, 411.81109619140625, 0.6736140251159668], "8": [194.5935516357422, 417.9498291015625, 0.8237355351448059], "9": [499.21820068359375, 480.0, 0.34852319955825806], "10": [197.91160583496094, 480.0, 0.5038672089576721], "11": [422.3445129394531, 480.0, 0.09645237028598785], "12": [278.26373291015625, 480.0, 0.13541826605796814], "13": [466.2054443359375, 428.20941162109375, 0.0015469504287466407], "14": [231.10093688964844, 431.376953125, 0.002211230807006359], "15": [439.60662841796875, 472.23150634765625, 0.0004117146017961204], "16": [222.31895446777344, 475.42828369140625, 0.0005253792623989284]}} +{"t": 13.732188, "tracked": true, "track_id": 1, "bbox": [148.980224609375, 64.9775390625, 543.3384399414062, 479.9627380371094], "det_conf": 0.9266457557678223, "mean_kpt_conf": 0.8388839851726185, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9487393162876323, "right_lift": -0.962222146597756, "left_bend": 0.09875740204239299, "right_bend": 0.09384389621147551}, "keypoints": {"0": [342.4782409667969, 159.9906768798828, 0.9985163807868958], "1": [363.3274230957031, 137.76138305664062, 0.9971444010734558], "2": [322.3634338378906, 137.19764709472656, 0.9958691000938416], "3": [391.15576171875, 147.0477294921875, 0.9255614876747131], "4": [293.0050964355469, 145.22799682617188, 0.86455237865448], "5": [449.6157531738281, 252.66290283203125, 0.9863612651824951], "6": [239.41802978515625, 255.79563903808594, 0.993633508682251], "7": [501.65277099609375, 408.8662109375, 0.7101340889930725], "8": [193.79299926757812, 417.04046630859375, 0.8422628045082092], "9": [502.4578857421875, 480.0, 0.3805409073829651], "10": [194.9939422607422, 480.0, 0.5331475138664246], "11": [422.53765869140625, 479.85491943359375, 0.11108803749084473], "12": [277.90948486328125, 480.0, 0.15262135863304138], "13": [466.9849853515625, 431.8702392578125, 0.0015510331140831113], "14": [227.7791748046875, 435.4731140136719, 0.002163848141208291], "15": [442.03411865234375, 474.4648132324219, 0.0003746609145309776], "16": [216.41175842285156, 477.0636901855469, 0.00046887059579603374]}} +{"t": 13.79644, "tracked": true, "track_id": 1, "bbox": [147.23411560058594, 64.72737884521484, 540.903076171875, 479.96160888671875], "det_conf": 0.9247539043426514, "mean_kpt_conf": 0.8422864323312585, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9480212707895642, "right_lift": -0.9549732744340207, "left_bend": 0.08572381333105236, "right_bend": 0.08144556840942056}, "keypoints": {"0": [342.8328552246094, 159.2329559326172, 0.9985424280166626], "1": [363.32318115234375, 137.30368041992188, 0.9972265362739563], "2": [322.5726013183594, 136.94549560546875, 0.9958784580230713], "3": [390.773193359375, 147.08023071289062, 0.9279468655586243], "4": [293.2143859863281, 146.02882385253906, 0.8659542798995972], "5": [448.8370056152344, 251.84571838378906, 0.986412525177002], "6": [240.12420654296875, 255.68743896484375, 0.993800699710846], "7": [499.9613037109375, 404.1582946777344, 0.7208008170127869], "8": [191.38589477539062, 412.56329345703125, 0.8511810302734375], "9": [504.1009216308594, 480.0, 0.38437619805336], "10": [188.32501220703125, 480.0, 0.5430309176445007], "11": [420.9659423828125, 479.21502685546875, 0.11758381128311157], "12": [277.4181823730469, 480.0, 0.162689208984375], "13": [461.51409912109375, 431.1751403808594, 0.001565891900099814], "14": [223.21249389648438, 435.650390625, 0.0021805872675031424], "15": [435.78857421875, 474.7474365234375, 0.0003736034268513322], "16": [210.22804260253906, 478.5110168457031, 0.00046617304906249046]}} +{"t": 13.832463, "tracked": true, "track_id": 1, "bbox": [145.71728515625, 64.63456726074219, 540.8071899414062, 479.9795227050781], "det_conf": 0.9245699048042297, "mean_kpt_conf": 0.8494179492646997, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9473881678850615, "right_lift": -0.9524761745089778, "left_bend": 0.07429297092779841, "right_bend": 0.07928150393094884}, "keypoints": {"0": [342.7013244628906, 159.32379150390625, 0.9985836744308472], "1": [363.259033203125, 137.4102783203125, 0.9972530007362366], "2": [322.5079650878906, 136.87060546875, 0.9959437251091003], "3": [390.7666015625, 147.15963745117188, 0.9276800155639648], "4": [293.2157897949219, 145.6470947265625, 0.866707980632782], "5": [448.05950927734375, 252.22903442382812, 0.9867894053459167], "6": [240.53392028808594, 255.4861602783203, 0.9941569566726685], "7": [499.26202392578125, 403.77740478515625, 0.7347103357315063], "8": [190.60186767578125, 411.61566162109375, 0.863861620426178], "9": [506.3268737792969, 480.0, 0.40548041462898254], "10": [186.6407012939453, 477.05078125, 0.5724303126335144], "11": [421.44866943359375, 480.0, 0.1280103623867035], "12": [278.1651306152344, 480.0, 0.17766155302524567], "13": [464.71087646484375, 434.6334228515625, 0.0015789594035595655], "14": [224.24156188964844, 438.8946533203125, 0.002218447858467698], "15": [441.64385986328125, 476.07684326171875, 0.0003549806133378297], "16": [209.75689697265625, 479.71728515625, 0.00044605100993067026]}} +{"t": 13.896988, "tracked": true, "track_id": 1, "bbox": [141.2006378173828, 64.96778869628906, 542.446533203125, 480.0], "det_conf": 0.9225344061851501, "mean_kpt_conf": 0.840246094898744, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.950779374126571, "right_lift": -0.951982203577738, "left_bend": 0.1095385325648682, "right_bend": 0.05813803051178099}, "keypoints": {"0": [342.61883544921875, 159.7669219970703, 0.9986997842788696], "1": [363.1118469238281, 137.61312866210938, 0.9973867535591125], "2": [322.45330810546875, 137.1907958984375, 0.9963307976722717], "3": [390.7080383300781, 147.2450714111328, 0.9260554909706116], "4": [293.0458068847656, 145.81106567382812, 0.8655079007148743], "5": [449.9311218261719, 254.68283081054688, 0.9865664839744568], "6": [240.62069702148438, 254.57652282714844, 0.9940046668052673], "7": [502.03900146484375, 414.5670166015625, 0.7074689865112305], "8": [189.5714111328125, 413.3139953613281, 0.8530474305152893], "9": [500.13629150390625, 480.0, 0.37015464901924133], "10": [181.48924255371094, 475.8618469238281, 0.5474840998649597], "11": [421.8834228515625, 480.0, 0.11236266046762466], "12": [277.09375, 480.0, 0.15878306329250336], "13": [467.60888671875, 436.38079833984375, 0.0014386778930202127], "14": [222.4995880126953, 437.1959228515625, 0.0020579600241035223], "15": [446.9189147949219, 477.38006591796875, 0.00033412629272788763], "16": [206.6961669921875, 479.1495056152344, 0.0004248416516929865]}} +{"t": 13.931903, "tracked": true, "track_id": 1, "bbox": [137.50392150878906, 64.92588806152344, 543.33984375, 480.0], "det_conf": 0.9246368408203125, "mean_kpt_conf": 0.8418894816528667, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9488166283038202, "right_lift": -0.9448102211075269, "left_bend": 0.11703169210473545, "right_bend": 0.046565698504499285}, "keypoints": {"0": [342.8062744140625, 159.98731994628906, 0.9987706542015076], "1": [362.87921142578125, 137.37826538085938, 0.9975277781486511], "2": [322.3959045410156, 137.49681091308594, 0.9964560866355896], "3": [390.4839782714844, 146.1977996826172, 0.9287242293357849], "4": [293.0196533203125, 146.07110595703125, 0.863403856754303], "5": [451.095947265625, 254.57919311523438, 0.9865971207618713], "6": [241.99952697753906, 254.01986694335938, 0.9942155480384827], "7": [504.339111328125, 414.5335998535156, 0.7061912417411804], "8": [187.81503295898438, 410.28125, 0.8596226572990417], "9": [501.30340576171875, 480.0, 0.3719123899936676], "10": [175.3308563232422, 476.08465576171875, 0.5573627352714539], "11": [422.51055908203125, 480.0, 0.11249379068613052], "12": [277.88751220703125, 480.0, 0.16253182291984558], "13": [463.2818908691406, 438.08209228515625, 0.0013978241477161646], "14": [217.30303955078125, 437.9221496582031, 0.0020223516039550304], "15": [442.8818054199219, 477.6412048339844, 0.0003170885902363807], "16": [199.42770385742188, 480.0, 0.0004065250395797193]}} +{"t": 13.967547, "tracked": true, "track_id": 1, "bbox": [133.31466674804688, 65.19818878173828, 542.9780883789062, 480.0], "det_conf": 0.9247691631317139, "mean_kpt_conf": 0.8492760549892079, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9455431465996348, "right_lift": -0.9391916914906286, "left_bend": 0.09421834022381245, "right_bend": 0.04845168667296855}, "keypoints": {"0": [342.7827453613281, 159.7186279296875, 0.998784601688385], "1": [362.9217834472656, 137.73989868164062, 0.997562050819397], "2": [322.331298828125, 137.6506805419922, 0.9965205192565918], "3": [390.29840087890625, 147.6352081298828, 0.9290591478347778], "4": [292.9931640625, 147.2674560546875, 0.8690373301506042], "5": [448.952880859375, 252.4917449951172, 0.9866660237312317], "6": [242.18313598632812, 254.63531494140625, 0.994562566280365], "7": [501.89996337890625, 406.2989501953125, 0.7271148562431335], "8": [185.62332153320312, 409.3282165527344, 0.8762719035148621], "9": [504.5205078125, 480.0, 0.38522660732269287], "10": [172.2265625, 475.9942321777344, 0.5812309980392456], "11": [423.40869140625, 480.0, 0.12869413197040558], "12": [279.5250244140625, 480.0, 0.18602077662944794], "13": [468.370361328125, 438.5760498046875, 0.0014207316562533379], "14": [218.76211547851562, 440.53436279296875, 0.0020768572576344013], "15": [449.75872802734375, 479.80816650390625, 0.0003101429610978812], "16": [196.38824462890625, 480.0, 0.00040089801768772304]}} +{"t": 14.029347, "tracked": true, "track_id": 1, "bbox": [120.89730072021484, 64.84886932373047, 544.0628051757812, 479.9937744140625], "det_conf": 0.9236122965812683, "mean_kpt_conf": 0.8592989200895483, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9317993973127746, "right_lift": -0.9136249047044603, "left_bend": 0.15713673915943457, "right_bend": 0.00241575272535426}, "keypoints": {"0": [341.88909912109375, 159.38818359375, 0.9987339377403259], "1": [361.3572998046875, 137.93533325195312, 0.9974209070205688], "2": [322.24676513671875, 137.12850952148438, 0.9961691498756409], "3": [387.52447509765625, 148.52072143554688, 0.9372965097427368], "4": [293.1900329589844, 147.090576171875, 0.8339481949806213], "5": [447.0881652832031, 255.47299194335938, 0.985121488571167], "6": [245.78102111816406, 253.0506591796875, 0.9948541522026062], "7": [504.311767578125, 402.37322998046875, 0.7251688241958618], "8": [183.92724609375, 392.0495910644531, 0.8996292948722839], "9": [495.5012512207031, 474.1117248535156, 0.4308492839336395], "10": [152.49191284179688, 461.2724609375, 0.6530963778495789], "11": [415.00860595703125, 475.4944152832031, 0.14554515480995178], "12": [274.9554138183594, 472.2524108886719, 0.21979863941669464], "13": [446.95684814453125, 440.05889892578125, 0.0016181699465960264], "14": [205.2501220703125, 434.2384338378906, 0.002494369400665164], "15": [427.97711181640625, 477.722900390625, 0.00031567696714773774], "16": [176.65794372558594, 472.9490051269531, 0.0004301396547816694]}} +{"t": 14.100112, "tracked": true, "track_id": 1, "bbox": [95.62633514404297, 64.54110717773438, 544.191162109375, 480.0], "det_conf": 0.9202541708946228, "mean_kpt_conf": 0.9022820266810331, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.931130659982789, "right_lift": -0.9071729818820959, "left_bend": 0.10313283951168797, "right_bend": 0.2358845492686322}, "keypoints": {"0": [342.5754699707031, 159.9369659423828, 0.9986591339111328], "1": [362.11907958984375, 137.8090057373047, 0.9969052672386169], "2": [322.7059020996094, 137.45541381835938, 0.995676577091217], "3": [388.6119384765625, 146.54542541503906, 0.9270544648170471], "4": [293.206298828125, 146.22372436523438, 0.8477987051010132], "5": [446.47265625, 253.33837890625, 0.9874240756034851], "6": [242.13400268554688, 256.8840026855469, 0.9961993098258972], "7": [498.917724609375, 387.2432861328125, 0.8020322918891907], "8": [184.69485473632812, 380.72540283203125, 0.9347086548805237], "9": [502.9295349121094, 468.5628662109375, 0.6032333970069885], "10": [158.49771118164062, 391.6615295410156, 0.8354104161262512], "11": [416.6225280761719, 475.97509765625, 0.22331765294075012], "12": [276.32330322265625, 476.861572265625, 0.3283490538597107], "13": [460.36181640625, 437.8900451660156, 0.0022205852437764406], "14": [234.30496215820312, 443.42669677734375, 0.003677229629829526], "15": [432.54046630859375, 473.718017578125, 0.00031223069527186453], "16": [217.22776794433594, 475.1977233886719, 0.0004442023055162281]}} +{"t": 14.16251, "tracked": true, "track_id": 1, "bbox": [91.36012268066406, 64.49057006835938, 544.4962158203125, 480.0], "det_conf": 0.9261369109153748, "mean_kpt_conf": 0.8939508145505731, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9341114069052358, "right_lift": -0.8701597829943609, "left_bend": 0.1284130959711314, "right_bend": 0.4367169168411958}, "keypoints": {"0": [342.401123046875, 158.975830078125, 0.9988034963607788], "1": [361.91046142578125, 137.31320190429688, 0.9973375201225281], "2": [322.9841613769531, 136.93301391601562, 0.9960636496543884], "3": [388.18109130859375, 147.5546875, 0.9359300136566162], "4": [294.5955810546875, 147.12985229492188, 0.8448678851127625], "5": [447.4825134277344, 254.6192626953125, 0.9874393343925476], "6": [241.88003540039062, 257.3969421386719, 0.9963705539703369], "7": [502.82098388671875, 399.4230651855469, 0.7745031714439392], "8": [167.9084930419922, 388.01995849609375, 0.9278632998466492], "9": [499.9578857421875, 473.9714660644531, 0.5512757897377014], "10": [133.31216430664062, 376.69085693359375, 0.8230042457580566], "11": [416.2193603515625, 477.99505615234375, 0.18464331328868866], "12": [275.984375, 477.82293701171875, 0.2818945050239563], "13": [457.5577392578125, 436.2383117675781, 0.002011271193623543], "14": [230.9669647216797, 439.7974548339844, 0.0033589047379791737], "15": [428.02691650390625, 475.87371826171875, 0.0003002480079885572], "16": [202.22113037109375, 472.8011779785156, 0.00043150378041900694]}} +{"t": 14.226047, "tracked": true, "track_id": 1, "bbox": [88.43412780761719, 64.5561752319336, 545.5608520507812, 479.97998046875], "det_conf": 0.9298648238182068, "mean_kpt_conf": 0.8904220190915194, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9353551170065261, "right_lift": -0.8639989765739706, "left_bend": 0.19007533465133633, "right_bend": 0.6202639844963762}, "keypoints": {"0": [342.8187561035156, 159.31961059570312, 0.9988254904747009], "1": [362.4854431152344, 137.16043090820312, 0.9972648620605469], "2": [323.17816162109375, 136.74288940429688, 0.996220052242279], "3": [388.47418212890625, 147.10108947753906, 0.9265120029449463], "4": [294.0001220703125, 146.53341674804688, 0.8485643267631531], "5": [448.0225524902344, 253.3661651611328, 0.9864729642868042], "6": [240.76231384277344, 257.6988830566406, 0.9960552453994751], "7": [505.1776123046875, 404.5076904296875, 0.7493679523468018], "8": [161.1694793701172, 394.28082275390625, 0.9181836247444153], "9": [489.447998046875, 470.030517578125, 0.545599639415741], "10": [131.52120971679688, 356.49761962890625, 0.8315760493278503], "11": [418.4554138183594, 475.8993835449219, 0.14609090983867645], "12": [277.5948791503906, 476.28961181640625, 0.2279338836669922], "13": [459.7818908691406, 427.906005859375, 0.0019504143856465816], "14": [235.1009521484375, 431.79974365234375, 0.0032560997642576694], "15": [427.31036376953125, 474.8347473144531, 0.0003024758188985288], "16": [200.09976196289062, 468.1803283691406, 0.0004330506781116128]}} +{"t": 14.260933, "tracked": true, "track_id": 1, "bbox": [88.27388000488281, 64.47036743164062, 546.02099609375, 479.98687744140625], "det_conf": 0.9290417432785034, "mean_kpt_conf": 0.8968967036767439, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9366796513425371, "right_lift": -0.8620507685203523, "left_bend": 0.1453838260245821, "right_bend": 0.6293005658735061}, "keypoints": {"0": [342.5860595703125, 159.39031982421875, 0.9987350106239319], "1": [362.7481689453125, 137.12045288085938, 0.9971705079078674], "2": [322.92962646484375, 136.48146057128906, 0.9957985281944275], "3": [389.2382507324219, 146.85580444335938, 0.9292199015617371], "4": [294.0711975097656, 145.76927185058594, 0.8455306887626648], "5": [446.08526611328125, 251.8877410888672, 0.986492931842804], "6": [241.00640869140625, 258.2634582519531, 0.9960850477218628], "7": [500.5641174316406, 397.6075134277344, 0.7682418823242188], "8": [161.877685546875, 392.85308837890625, 0.9220458269119263], "9": [493.49652099609375, 468.7889099121094, 0.5795806646347046], "10": [133.3246612548828, 353.9451904296875, 0.8469627499580383], "11": [418.1094665527344, 473.4792175292969, 0.15590474009513855], "12": [279.251953125, 475.4920349121094, 0.2388424128293991], "13": [460.9644775390625, 424.34716796875, 0.0021324625704437494], "14": [242.95486450195312, 431.4744567871094, 0.0035270850639790297], "15": [426.77978515625, 472.8843994140625, 0.0003231128503102809], "16": [210.9658660888672, 468.3258361816406, 0.00046142854262143373]}} +{"t": 14.324966, "tracked": true, "track_id": 1, "bbox": [88.00337219238281, 64.0804672241211, 545.7359008789062, 480.0], "det_conf": 0.9303686022758484, "mean_kpt_conf": 0.9060032205148176, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9342641815038403, "right_lift": -0.8304205938931605, "left_bend": 0.1829930305710993, "right_bend": 0.6891244518181282}, "keypoints": {"0": [342.5759582519531, 159.62042236328125, 0.9988282322883606], "1": [362.5172424316406, 137.01336669921875, 0.9973756074905396], "2": [322.86517333984375, 136.41656494140625, 0.9957979321479797], "3": [388.6803894042969, 146.64297485351562, 0.932612955570221], "4": [293.82470703125, 145.5525665283203, 0.8393389582633972], "5": [447.297607421875, 253.14956665039062, 0.9874795079231262], "6": [240.47454833984375, 258.18212890625, 0.9962648749351501], "7": [504.40032958984375, 402.761962890625, 0.784961998462677], "8": [151.79632568359375, 390.3582763671875, 0.9257519841194153], "9": [489.2130432128906, 473.91729736328125, 0.6300274133682251], "10": [127.95443725585938, 331.6415100097656, 0.8775959610939026], "11": [421.81292724609375, 474.1552734375, 0.14414410293102264], "12": [283.04302978515625, 475.7129821777344, 0.22012846171855927], "13": [461.69488525390625, 421.2577209472656, 0.002112782094627619], "14": [250.414306640625, 427.81195068359375, 0.0034430071245878935], "15": [425.2261962890625, 474.13507080078125, 0.0003005125909112394], "16": [215.89431762695312, 466.89569091796875, 0.0004281588480807841]}} +{"t": 14.394234, "tracked": true, "track_id": 1, "bbox": [87.14265441894531, 63.90914535522461, 545.925048828125, 480.0], "det_conf": 0.9241156578063965, "mean_kpt_conf": 0.9138415997678583, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.93559112495995, "right_lift": -0.8088081546662539, "left_bend": 0.20357385194318384, "right_bend": 0.7094276083778027}, "keypoints": {"0": [342.57330322265625, 159.6358184814453, 0.9989055395126343], "1": [362.47381591796875, 136.83123779296875, 0.9974455833435059], "2": [322.5990295410156, 136.3372802734375, 0.9958785772323608], "3": [388.03521728515625, 146.6083221435547, 0.9274565577507019], "4": [292.8649597167969, 145.72531127929688, 0.8414116501808167], "5": [446.6544189453125, 251.61671447753906, 0.9883254766464233], "6": [238.93080139160156, 257.7095947265625, 0.9963285326957703], "7": [504.81201171875, 405.7203369140625, 0.8063035011291504], "8": [141.79917907714844, 391.29998779296875, 0.9285338521003723], "9": [485.1187744140625, 474.5477294921875, 0.6733947992324829], "10": [117.91337585449219, 309.525146484375, 0.8982735276222229], "11": [424.3843078613281, 470.4953918457031, 0.1381756067276001], "12": [285.7322998046875, 472.8399658203125, 0.20565658807754517], "13": [463.4584045410156, 415.28411865234375, 0.002201355993747711], "14": [254.74679565429688, 423.3428955078125, 0.003440871136263013], "15": [425.28326416015625, 475.69024658203125, 0.0002877491933759302], "16": [215.40869140625, 467.0011291503906, 0.00039865178405307233]}} +{"t": 14.459632, "tracked": true, "track_id": 1, "bbox": [86.03216552734375, 63.47069549560547, 546.1396484375, 479.8518371582031], "det_conf": 0.9186146259307861, "mean_kpt_conf": 0.922318388115276, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9285638708584737, "right_lift": -0.797041186574046, "left_bend": 0.294288526353107, "right_bend": 0.7425206611871482}, "keypoints": {"0": [342.2882080078125, 159.73635864257812, 0.9991607666015625], "1": [362.23748779296875, 136.40408325195312, 0.9980247020721436], "2": [321.46380615234375, 136.3907470703125, 0.9964959025382996], "3": [388.6358947753906, 145.158935546875, 0.932621419429779], "4": [290.7845458984375, 145.44097900390625, 0.8352813124656677], "5": [448.4210205078125, 249.83126831054688, 0.9906576871871948], "6": [236.25608825683594, 255.44532775878906, 0.9968394041061401], "7": [509.640380859375, 402.98394775390625, 0.8371707201004028], "8": [134.61245727539062, 389.5914001464844, 0.9349982738494873], "9": [479.67681884765625, 452.49090576171875, 0.7156233191490173], "10": [119.74085998535156, 297.7181396484375, 0.9086287617683411], "11": [424.72113037109375, 480.0, 0.13200201094150543], "12": [280.9728698730469, 480.0, 0.18906311690807343], "13": [468.75537109375, 408.9579772949219, 0.001334496191702783], "14": [240.89822387695312, 414.4208679199219, 0.0019890828989446163], "15": [439.1228942871094, 460.84759521484375, 0.00017797152395360172], "16": [194.81642150878906, 450.9912109375, 0.00023868275457061827]}} +{"t": 14.52626, "tracked": true, "track_id": 1, "bbox": [88.35045623779297, 62.79170227050781, 546.599853515625, 479.87451171875], "det_conf": 0.9203046560287476, "mean_kpt_conf": 0.9159097617322748, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.933171724952749, "right_lift": -0.8050041609886833, "left_bend": 0.23009960941141944, "right_bend": 0.7250698577999257}, "keypoints": {"0": [342.60369873046875, 158.59483337402344, 0.9989842772483826], "1": [362.49981689453125, 136.13742065429688, 0.9972336888313293], "2": [322.48541259765625, 136.02894592285156, 0.9965353012084961], "3": [388.0146484375, 147.31956481933594, 0.9060177206993103], "4": [291.6050109863281, 147.40603637695312, 0.8525218367576599], "5": [448.5254821777344, 251.6627960205078, 0.9870429039001465], "6": [235.98863220214844, 258.3352966308594, 0.9965537786483765], "7": [506.0249328613281, 400.9456481933594, 0.7971729040145874], "8": [145.15733337402344, 381.5838623046875, 0.9410046935081482], "9": [481.98089599609375, 465.76190185546875, 0.6865766048431396], "10": [124.03616333007812, 290.8072814941406, 0.9153636693954468], "11": [421.533203125, 470.0116271972656, 0.1600276231765747], "12": [279.97412109375, 472.3556823730469, 0.24567309021949768], "13": [461.900390625, 422.09979248046875, 0.002209500642493367], "14": [259.57037353515625, 431.29876708984375, 0.003806424792855978], "15": [415.8498229980469, 480.0, 0.00025110392016358674], "16": [222.92190551757812, 476.8515625, 0.0003703710390254855]}} +{"t": 14.589145, "tracked": true, "track_id": 1, "bbox": [89.7628173828125, 62.660919189453125, 549.55615234375, 479.8606872558594], "det_conf": 0.9192221164703369, "mean_kpt_conf": 0.9148429686372931, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.93307482575147, "right_lift": -0.8064574415687247, "left_bend": 0.24990638179372823, "right_bend": 0.7414943585760368}, "keypoints": {"0": [342.1904602050781, 159.15505981445312, 0.9990143775939941], "1": [362.2771301269531, 136.23211669921875, 0.9972251653671265], "2": [322.1205749511719, 135.89144897460938, 0.9966345429420471], "3": [387.76348876953125, 146.71441650390625, 0.8985885381698608], "4": [290.8585510253906, 146.12332153320312, 0.8568341732025146], "5": [449.0857238769531, 250.91253662109375, 0.9869012236595154], "6": [233.9656524658203, 259.2577209472656, 0.9965831637382507], "7": [507.105224609375, 401.42462158203125, 0.7897253632545471], "8": [142.1422882080078, 384.49468994140625, 0.9394522905349731], "9": [479.5958251953125, 463.49591064453125, 0.6841292381286621], "10": [123.33224487304688, 280.8072204589844, 0.9181845784187317], "11": [424.9035339355469, 470.02288818359375, 0.14952348172664642], "12": [281.83782958984375, 473.5460205078125, 0.231649711728096], "13": [467.57025146484375, 420.8851318359375, 0.002145227510482073], "14": [265.20013427734375, 431.78485107421875, 0.003726798575371504], "15": [418.7390441894531, 480.0, 0.00023985604639165103], "16": [227.6072998046875, 478.5683288574219, 0.0003557328600436449]}} +{"t": 14.659609, "tracked": true, "track_id": 1, "bbox": [91.61231994628906, 62.84675598144531, 548.6323852539062, 479.80084228515625], "det_conf": 0.9211615920066833, "mean_kpt_conf": 0.9167639829895713, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9345681122084423, "right_lift": -0.8061541988362678, "left_bend": 0.22568923086974899, "right_bend": 0.7475502016497799}, "keypoints": {"0": [341.9774169921875, 159.2796630859375, 0.9989994168281555], "1": [362.200927734375, 136.3253936767578, 0.9971840977668762], "2": [321.8130798339844, 135.84735107421875, 0.9965643286705017], "3": [387.6199951171875, 146.73867797851562, 0.8962056040763855], "4": [290.4417419433594, 145.84014892578125, 0.8589677810668945], "5": [447.17584228515625, 250.0851287841797, 0.9869619607925415], "6": [234.12742614746094, 259.0215148925781, 0.9966356158256531], "7": [504.2590026855469, 400.03021240234375, 0.7976749539375305], "8": [141.78907775878906, 384.8255615234375, 0.9424719214439392], "9": [481.2702331542969, 463.945068359375, 0.6906004548072815], "10": [124.39451599121094, 276.985107421875, 0.9221376776695251], "11": [423.733154296875, 470.05120849609375, 0.15523985028266907], "12": [281.5909729003906, 474.0015563964844, 0.23992232978343964], "13": [466.513427734375, 420.79229736328125, 0.002171027008444071], "14": [262.8662109375, 432.845458984375, 0.003767519723623991], "15": [417.953125, 480.0, 0.0002395927149336785], "16": [221.96109008789062, 478.824462890625, 0.000354037678334862]}} +{"t": 14.724064, "tracked": true, "track_id": 1, "bbox": [96.4690170288086, 63.612022399902344, 546.2900390625, 479.75018310546875], "det_conf": 0.917957603931427, "mean_kpt_conf": 0.920597190206701, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9386228224303842, "right_lift": -0.780355648106084, "left_bend": 0.14020882628561393, "right_bend": 0.745717503957728}, "keypoints": {"0": [341.1357727050781, 158.96994018554688, 0.9988682270050049], "1": [361.34295654296875, 136.5604248046875, 0.9975578784942627], "2": [320.93963623046875, 136.42385864257812, 0.9955350160598755], "3": [387.19622802734375, 147.42263793945312, 0.9344203472137451], "4": [291.3180236816406, 147.16311645507812, 0.8414941430091858], "5": [442.6928405761719, 252.1968994140625, 0.9893348813056946], "6": [233.72225952148438, 258.7464599609375, 0.996677041053772], "7": [499.21954345703125, 406.0104675292969, 0.8310415148735046], "8": [131.39938354492188, 386.43499755859375, 0.935351550579071], "9": [493.1121826171875, 474.99774169921875, 0.6962726712226868], "10": [117.23878479003906, 272.16156005859375, 0.9100158214569092], "11": [417.40399169921875, 473.30670166015625, 0.16943222284317017], "12": [278.0124206542969, 477.08026123046875, 0.24363385140895844], "13": [460.66143798828125, 420.0218505859375, 0.0024066120386123657], "14": [250.62515258789062, 433.1171875, 0.003702850779518485], "15": [424.5673828125, 475.6029052734375, 0.0002903958084061742], "16": [210.40213012695312, 470.90399169921875, 0.00039842951809987426]}} +{"t": 14.786062, "tracked": true, "track_id": 1, "bbox": [105.68414306640625, 63.09699630737305, 546.1428833007812, 479.4694519042969], "det_conf": 0.9189929366111755, "mean_kpt_conf": 0.9174435843120922, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9333753171259491, "right_lift": -0.7833241394236349, "left_bend": 0.2640277096390007, "right_bend": 0.7841798105716007}, "keypoints": {"0": [339.6094970703125, 158.90570068359375, 0.9990432858467102], "1": [360.5700988769531, 136.38600158691406, 0.9980850219726562], "2": [318.9308166503906, 136.39068603515625, 0.9960126876831055], "3": [388.4549560546875, 147.3942413330078, 0.9473629593849182], "4": [289.1708068847656, 147.30210876464844, 0.8255157470703125], "5": [447.7474670410156, 252.98507690429688, 0.9902828931808472], "6": [229.96722412109375, 256.84722900390625, 0.9968773126602173], "7": [507.2279968261719, 407.67266845703125, 0.8211703300476074], "8": [126.7164306640625, 386.9583740234375, 0.9290912747383118], "9": [483.8033447265625, 454.6712341308594, 0.6862562298774719], "10": [125.88119506835938, 271.2501525878906, 0.9021816849708557], "11": [420.515869140625, 480.0, 0.13849101960659027], "12": [274.0989685058594, 480.0, 0.2004471719264984], "13": [470.20953369140625, 414.103759765625, 0.0013722843723371625], "14": [244.83419799804688, 421.78375244140625, 0.002133393194526434], "15": [440.90826416015625, 462.4233093261719, 0.00018752455071080476], "16": [205.10379028320312, 454.6040954589844, 0.00026200118009001017]}} +{"t": 14.821149, "tracked": true, "track_id": 1, "bbox": [109.13848114013672, 63.627254486083984, 545.1981811523438, 479.6316223144531], "det_conf": 0.9182060360908508, "mean_kpt_conf": 0.9196427410299127, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9356692862336153, "right_lift": -0.7905311499647915, "left_bend": 0.16711624056957247, "right_bend": 0.7946363371094751}, "keypoints": {"0": [340.0831298828125, 158.96533203125, 0.9987772107124329], "1": [360.4422912597656, 136.71176147460938, 0.9974076151847839], "2": [319.7857360839844, 136.75033569335938, 0.9952968955039978], "3": [386.5736083984375, 148.2223663330078, 0.9328135848045349], "4": [290.07470703125, 148.1461944580078, 0.8408516645431519], "5": [442.7938537597656, 252.1543426513672, 0.989030659198761], "6": [231.20376586914062, 259.36968994140625, 0.9964970946311951], "7": [501.15277099609375, 406.8951416015625, 0.8252500891685486], "8": [132.06581115722656, 387.3397216796875, 0.9320982098579407], "9": [490.16558837890625, 473.13800048828125, 0.6976193189620972], "10": [133.82139587402344, 261.5134582519531, 0.9104278087615967], "11": [417.5185546875, 471.85137939453125, 0.1642845869064331], "12": [276.87158203125, 476.4681091308594, 0.23564739525318146], "13": [463.7821960449219, 418.8868713378906, 0.002436339855194092], "14": [256.97039794921875, 433.156982421875, 0.003815220668911934], "15": [425.75421142578125, 476.0377197265625, 0.00029674737015739083], "16": [218.22933959960938, 471.16363525390625, 0.00041350346873514354]}} +{"t": 14.884883, "tracked": true, "track_id": 1, "bbox": [110.48414611816406, 62.8541374206543, 547.7657470703125, 479.8616027832031], "det_conf": 0.9162841439247131, "mean_kpt_conf": 0.9192160313779657, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9265205202156719, "right_lift": -0.7802079214272054, "left_bend": 0.19525870196976614, "right_bend": 0.7997780098527147}, "keypoints": {"0": [340.6715087890625, 158.452392578125, 0.998968243598938], "1": [360.71356201171875, 136.45965576171875, 0.9972872734069824], "2": [320.2900085449219, 136.29177856445312, 0.9964512586593628], "3": [385.80694580078125, 149.24578857421875, 0.9007554650306702], "4": [289.1856994628906, 148.688232421875, 0.860576331615448], "5": [444.5802307128906, 250.40731811523438, 0.9867864847183228], "6": [231.4897003173828, 257.5990905761719, 0.9965716600418091], "7": [505.4947509765625, 400.41241455078125, 0.8057382106781006], "8": [135.55404663085938, 377.25909423828125, 0.9458523988723755], "9": [490.2409973144531, 466.2460021972656, 0.6947613954544067], "10": [141.5739288330078, 248.67420959472656, 0.9276276230812073], "11": [423.28045654296875, 470.4384765625, 0.16137799620628357], "12": [281.69580078125, 475.13970947265625, 0.24947425723075867], "13": [470.26898193359375, 420.68310546875, 0.002174577908590436], "14": [270.1075134277344, 434.8612365722656, 0.003904450684785843], "15": [424.85552978515625, 480.0, 0.00024216908786911517], "16": [228.45127868652344, 480.0, 0.0003689948352985084]}} +{"t": 14.91836, "tracked": true, "track_id": 1, "bbox": [109.57469940185547, 62.633567810058594, 552.0438842773438, 479.89593505859375], "det_conf": 0.916586697101593, "mean_kpt_conf": 0.9289206483147361, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9232257500986046, "right_lift": -0.7586070678282424, "left_bend": 0.3736015987527906, "right_bend": 0.8003877840172525}, "keypoints": {"0": [339.9992370605469, 159.4545440673828, 0.9992133378982544], "1": [360.8573303222656, 136.36447143554688, 0.9980775117874146], "2": [318.68182373046875, 136.5652618408203, 0.9968230724334717], "3": [388.6311340332031, 147.72958374023438, 0.9281171560287476], "4": [287.1171569824219, 148.1275634765625, 0.8355891108512878], "5": [450.4617004394531, 252.92120361328125, 0.9896473288536072], "6": [229.967041015625, 258.0837097167969, 0.9972526431083679], "7": [512.29296875, 401.47821044921875, 0.8293637633323669], "8": [127.15399169921875, 377.7904052734375, 0.9504074454307556], "9": [473.516845703125, 440.73016357421875, 0.7535131573677063], "10": [137.96311950683594, 247.10543823242188, 0.9401226043701172], "11": [425.076904296875, 480.0, 0.16157235205173492], "12": [277.19171142578125, 480.0, 0.24545949697494507], "13": [470.43011474609375, 426.151123046875, 0.0013140190858393908], "14": [256.22442626953125, 433.76641845703125, 0.002282527508214116], "15": [430.1786193847656, 478.8212890625, 0.00014216848649084568], "16": [209.87440490722656, 469.33740234375, 0.00021467701299116015]}} +{"t": 14.95469, "tracked": true, "track_id": 1, "bbox": [108.08100128173828, 62.72509002685547, 554.8349609375, 480.0], "det_conf": 0.9150828123092651, "mean_kpt_conf": 0.9272793423045765, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.924155609988818, "right_lift": -0.7597676155581587, "left_bend": 0.3691558345253619, "right_bend": 0.8026133151714614}, "keypoints": {"0": [339.6711730957031, 159.2595977783203, 0.9991981387138367], "1": [360.5780029296875, 135.76187133789062, 0.9980902075767517], "2": [318.4097900390625, 136.31399536132812, 0.9967260360717773], "3": [388.879638671875, 146.59812927246094, 0.9320300817489624], "4": [287.2182922363281, 147.5321502685547, 0.832253098487854], "5": [452.4136657714844, 254.1896209716797, 0.9898658394813538], "6": [228.44607543945312, 258.9357604980469, 0.9973257780075073], "7": [514.3499755859375, 404.02301025390625, 0.822675883769989], "8": [127.34213256835938, 377.07806396484375, 0.9482600688934326], "9": [478.58172607421875, 441.0758056640625, 0.7460559010505676], "10": [139.29356384277344, 241.2013702392578, 0.9375917315483093], "11": [425.6634521484375, 480.0, 0.16189135611057281], "12": [276.22296142578125, 480.0, 0.2463507056236267], "13": [471.5179443359375, 428.2557067871094, 0.001320435549132526], "14": [259.2034606933594, 436.8438415527344, 0.002319090301170945], "15": [429.3464660644531, 477.77850341796875, 0.00014250751701183617], "16": [217.88050842285156, 470.4546203613281, 0.00021751517488155514]}} +{"t": 14.98837, "tracked": true, "track_id": 1, "bbox": [106.8723373413086, 62.48722457885742, 550.6669311523438, 480.0], "det_conf": 0.9144048094749451, "mean_kpt_conf": 0.9140269214456732, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9283935094935877, "right_lift": -0.7397349020635959, "left_bend": 0.22318925243566207, "right_bend": 0.800994775881707}, "keypoints": {"0": [340.76263427734375, 159.20162963867188, 0.9989463686943054], "1": [360.53662109375, 135.90567016601562, 0.9973620772361755], "2": [319.5669250488281, 136.58468627929688, 0.9963076114654541], "3": [386.2824401855469, 146.8932647705078, 0.9022906422615051], "4": [287.81829833984375, 147.92440795898438, 0.8518792390823364], "5": [446.0366516113281, 252.30282592773438, 0.98530513048172], "6": [232.0459747314453, 256.4178161621094, 0.9963010549545288], "7": [506.7543029785156, 403.9984436035156, 0.7777735590934753], "8": [131.37704467773438, 367.0858154296875, 0.9412370920181274], "9": [485.76324462890625, 467.2479248046875, 0.679643988609314], "10": [146.91629028320312, 230.06649780273438, 0.9272493720054626], "11": [426.07989501953125, 473.57293701171875, 0.14284461736679077], "12": [284.9040222167969, 477.4237060546875, 0.2293064296245575], "13": [467.3798828125, 423.9406433105469, 0.002055204240605235], "14": [275.19342041015625, 437.3314514160156, 0.003797686891630292], "15": [421.48260498046875, 480.0, 0.0002392786118434742], "16": [235.9295654296875, 480.0, 0.0003747656010091305]}} +{"t": 15.051322, "tracked": true, "track_id": 1, "bbox": [103.73873901367188, 62.75015640258789, 551.632568359375, 480.0], "det_conf": 0.9124627709388733, "mean_kpt_conf": 0.9114354198629205, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9252505164637619, "right_lift": -0.7344889887365639, "left_bend": 0.24368079610942947, "right_bend": 0.8056709744317454}, "keypoints": {"0": [341.098876953125, 158.98606872558594, 0.9989504814147949], "1": [360.9657287597656, 135.97454833984375, 0.9973410964012146], "2": [319.98968505859375, 136.57720947265625, 0.9964838027954102], "3": [386.50225830078125, 147.35195922851562, 0.9004650115966797], "4": [287.831298828125, 148.1039581298828, 0.8589960932731628], "5": [446.564208984375, 252.92660522460938, 0.9850282669067383], "6": [229.42037963867188, 256.15545654296875, 0.9962922930717468], "7": [508.6549072265625, 404.3657531738281, 0.7651757001876831], "8": [128.76541137695312, 365.09698486328125, 0.9379453659057617], "9": [485.2506103515625, 463.5727233886719, 0.666358232498169], "10": [147.716064453125, 225.9723663330078, 0.9227532744407654], "11": [425.35205078125, 473.7093811035156, 0.14378829300403595], "12": [282.6834716796875, 477.5223388671875, 0.23127125203609467], "13": [468.272705078125, 426.9300842285156, 0.0020609323401004076], "14": [277.9280090332031, 439.8212890625, 0.003831659210845828], "15": [423.69500732421875, 480.0, 0.00023952123592607677], "16": [244.1888427734375, 480.0, 0.0003767041489481926]}} +{"t": 15.118683, "tracked": true, "track_id": 1, "bbox": [102.66621398925781, 63.88863754272461, 547.7410278320312, 479.76580810546875], "det_conf": 0.9095046520233154, "mean_kpt_conf": 0.9172603758898649, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9270474977922114, "right_lift": -0.7266191853785989, "left_bend": 0.33398209944609597, "right_bend": 0.8156912706245364}, "keypoints": {"0": [339.9974365234375, 159.08920288085938, 0.9989922642707825], "1": [360.7211608886719, 136.1416778564453, 0.9980132579803467], "2": [318.5877380371094, 136.78582763671875, 0.995925784111023], "3": [388.28118896484375, 146.88002014160156, 0.9439750909805298], "4": [287.5106201171875, 147.62689208984375, 0.8289813995361328], "5": [448.02008056640625, 255.35736083984375, 0.9896172285079956], "6": [225.3314208984375, 253.82809448242188, 0.9966121315956116], "7": [511.602783203125, 412.56536865234375, 0.8059716820716858], "8": [114.47293090820312, 371.0728759765625, 0.9235934019088745], "9": [479.73260498046875, 453.21685791015625, 0.6967026591300964], "10": [140.0334014892578, 229.30787658691406, 0.9114792346954346], "11": [421.2178955078125, 480.0, 0.133877232670784], "12": [274.19158935546875, 480.0, 0.19487343728542328], "13": [469.5870361328125, 421.938720703125, 0.0013675548834726214], "14": [261.27264404296875, 428.7743225097656, 0.002173468004912138], "15": [440.4385681152344, 467.0355529785156, 0.0001828004460548982], "16": [230.3464813232422, 459.48187255859375, 0.0002611888339743018]}} +{"t": 15.181849, "tracked": true, "track_id": 1, "bbox": [102.37042999267578, 64.37969207763672, 548.28759765625, 479.7601623535156], "det_conf": 0.9127540588378906, "mean_kpt_conf": 0.9086996750398115, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9283221980040258, "right_lift": -0.7193528390570546, "left_bend": 0.21269711772806368, "right_bend": 0.8136587401297019}, "keypoints": {"0": [341.7471618652344, 159.0672607421875, 0.9988765120506287], "1": [361.7033386230469, 136.0904541015625, 0.9972311854362488], "2": [320.546142578125, 136.92869567871094, 0.9963556528091431], "3": [387.42095947265625, 147.26129150390625, 0.8987889885902405], "4": [288.4094543457031, 148.32363891601562, 0.8623866438865662], "5": [445.8678283691406, 252.41531372070312, 0.9842875003814697], "6": [228.34664916992188, 254.58843994140625, 0.9962138533592224], "7": [506.2149658203125, 403.1014404296875, 0.7573031187057495], "8": [126.88568115234375, 359.6582946777344, 0.9374826550483704], "9": [487.88787841796875, 465.1306457519531, 0.6478127241134644], "10": [153.20953369140625, 217.03713989257812, 0.9189575910568237], "11": [422.4453125, 473.269287109375, 0.1498265415430069], "12": [279.7304992675781, 477.2817077636719, 0.24211928248405457], "13": [466.6181640625, 428.53411865234375, 0.002112314337864518], "14": [277.8448181152344, 442.814453125, 0.003995309118181467], "15": [422.44012451171875, 480.0, 0.0002518529654480517], "16": [246.04913330078125, 480.0, 0.0003999166074208915]}} +{"t": 15.249397, "tracked": true, "track_id": 1, "bbox": [102.22586822509766, 64.36522674560547, 550.3436279296875, 479.7809753417969], "det_conf": 0.912446916103363, "mean_kpt_conf": 0.9101659005338495, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.925143000759995, "right_lift": -0.7112677356288468, "left_bend": 0.21971366714830107, "right_bend": 0.8244962241899854}, "keypoints": {"0": [342.7132873535156, 159.53530883789062, 0.9989284873008728], "1": [362.0643310546875, 136.363037109375, 0.9971749782562256], "2": [321.5500183105469, 137.02232360839844, 0.9965672492980957], "3": [386.8515625, 146.7630157470703, 0.8823293447494507], "4": [288.60406494140625, 147.40577697753906, 0.8719638586044312], "5": [444.8803405761719, 252.64419555664062, 0.9843820929527283], "6": [227.93475341796875, 254.64520263671875, 0.9961399435997009], "7": [506.1707763671875, 402.01092529296875, 0.7612826228141785], "8": [124.12835693359375, 359.6842041015625, 0.937446117401123], "9": [487.5617370605469, 461.9847412109375, 0.6623700857162476], "10": [157.8876953125, 214.2806396484375, 0.9232401251792908], "11": [423.2801513671875, 472.7944030761719, 0.14564967155456543], "12": [280.4403076171875, 477.095703125, 0.23356379568576813], "13": [466.4405822753906, 428.5576477050781, 0.002080020261928439], "14": [275.933349609375, 443.0830383300781, 0.0038437964394688606], "15": [424.1329345703125, 480.0, 0.00024214692530222237], "16": [241.57467651367188, 480.0, 0.0003751423500943929]}} +{"t": 15.28331, "tracked": true, "track_id": 1, "bbox": [102.09127044677734, 64.81206512451172, 547.6578369140625, 479.5879821777344], "det_conf": 0.9132670164108276, "mean_kpt_conf": 0.918822938745672, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.925849344445411, "right_lift": -0.7248758915473296, "left_bend": 0.2590165018531892, "right_bend": 0.8370727678171124}, "keypoints": {"0": [340.56298828125, 159.20025634765625, 0.9989232420921326], "1": [361.1074523925781, 136.945068359375, 0.9978461265563965], "2": [319.7142028808594, 136.92437744140625, 0.9957560896873474], "3": [387.7608642578125, 147.96414184570312, 0.9386312961578369], "4": [288.8252868652344, 147.0067901611328, 0.8374844789505005], "5": [445.52178955078125, 254.02786254882812, 0.9893445372581482], "6": [225.91824340820312, 251.2951202392578, 0.9965261816978455], "7": [508.26947021484375, 407.76165771484375, 0.814328134059906], "8": [118.11006164550781, 364.7366638183594, 0.9285017848014832], "9": [485.4046630859375, 458.1206970214844, 0.6958195567131042], "10": [154.3434600830078, 221.69667053222656, 0.9138908982276917], "11": [420.2752685546875, 480.0, 0.14530499279499054], "12": [274.8260498046875, 480.0, 0.21112173795700073], "13": [468.9448547363281, 421.383056640625, 0.0014561039861291647], "14": [261.7087097167969, 429.6048583984375, 0.002335436875000596], "15": [439.99432373046875, 470.1428527832031, 0.0001948129356605932], "16": [230.53424072265625, 462.57940673828125, 0.00027825607685372233]}} +{"t": 15.348374, "tracked": true, "track_id": 1, "bbox": [102.66456604003906, 65.11206817626953, 545.8246459960938, 479.4216003417969], "det_conf": 0.9140375256538391, "mean_kpt_conf": 0.9263054457577792, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9257000417236984, "right_lift": -0.710476851037523, "left_bend": 0.2707208260925371, "right_bend": 0.8467863921151267}, "keypoints": {"0": [340.9033203125, 159.50509643554688, 0.9990118741989136], "1": [361.2688903808594, 137.1397247314453, 0.9980218410491943], "2": [319.9842834472656, 137.07411193847656, 0.9958581328392029], "3": [387.93988037109375, 147.97129821777344, 0.9397599101066589], "4": [288.7857971191406, 146.82676696777344, 0.832759439945221], "5": [446.0337219238281, 254.04054260253906, 0.9903077483177185], "6": [226.06915283203125, 250.24090576171875, 0.9966981410980225], "7": [508.947265625, 408.00689697265625, 0.8398037552833557], "8": [114.72738647460938, 362.6516418457031, 0.9372060298919678], "9": [483.8835754394531, 458.268310546875, 0.7337945103645325], "10": [159.66966247558594, 216.9971923828125, 0.9261385202407837], "11": [422.28179931640625, 480.0, 0.1572263538837433], "12": [275.60565185546875, 480.0, 0.22385580837726593], "13": [469.76318359375, 423.72589111328125, 0.0014082433190196753], "14": [256.9905090332031, 431.41009521484375, 0.0022029904648661613], "15": [442.65789794921875, 472.0470886230469, 0.00017440476221963763], "16": [220.2047882080078, 463.7965393066406, 0.00024509403738193214]}} +{"t": 15.385186, "tracked": true, "track_id": 1, "bbox": [102.47602844238281, 65.04273223876953, 546.093017578125, 479.3157653808594], "det_conf": 0.9148680567741394, "mean_kpt_conf": 0.9234180829741738, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9246423414450337, "right_lift": -0.7088641950793485, "left_bend": 0.3192409186545058, "right_bend": 0.8544345279817266}, "keypoints": {"0": [341.11474609375, 159.3023223876953, 0.998954176902771], "1": [361.280517578125, 137.37368774414062, 0.9979089498519897], "2": [320.30853271484375, 137.35565185546875, 0.9957964420318604], "3": [387.6097106933594, 148.7746124267578, 0.9389786720275879], "4": [289.22393798828125, 147.7957305908203, 0.8340697288513184], "5": [445.3375244140625, 254.4552001953125, 0.9897878170013428], "6": [226.09222412109375, 249.8538055419922, 0.9965075850486755], "7": [508.8492736816406, 408.6568908691406, 0.8270201683044434], "8": [113.99105834960938, 362.5142822265625, 0.931837797164917], "9": [477.320068359375, 453.5552978515625, 0.7250595092773438], "10": [162.4921417236328, 218.8578338623047, 0.9216780662536621], "11": [420.2752685546875, 480.0, 0.14709608256816864], "12": [274.7021179199219, 480.0, 0.21073612570762634], "13": [467.7112121582031, 421.1819152832031, 0.0014432362513616681], "14": [260.2840270996094, 427.27764892578125, 0.0022704144939780235], "15": [441.33953857421875, 468.5148620605469, 0.0001872627908596769], "16": [225.69390869140625, 459.211669921875, 0.00026461019297130406]}} +{"t": 15.449152, "tracked": true, "track_id": 1, "bbox": [102.23379516601562, 65.17059326171875, 545.3643188476562, 479.4443054199219], "det_conf": 0.9165750741958618, "mean_kpt_conf": 0.9238642129031095, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9239937372249833, "right_lift": -0.7112814151132532, "left_bend": 0.3318004501498501, "right_bend": 0.8624553102791247}, "keypoints": {"0": [342.3321838378906, 159.65975952148438, 0.9989786148071289], "1": [362.2515869140625, 137.34140014648438, 0.9977877140045166], "2": [321.23773193359375, 137.18508911132812, 0.9960565567016602], "3": [387.85675048828125, 147.9654541015625, 0.9275919198989868], "4": [288.949951171875, 146.61660766601562, 0.8469668030738831], "5": [445.7664794921875, 255.11221313476562, 0.9897586107254028], "6": [225.19082641601562, 248.6021728515625, 0.996330201625824], "7": [509.78143310546875, 409.78857421875, 0.824914813041687], "8": [115.06874084472656, 360.03619384765625, 0.929533839225769], "9": [478.36431884765625, 451.11737060546875, 0.7318592667579651], "10": [167.08279418945312, 216.3699951171875, 0.9227280020713806], "11": [420.0686340332031, 480.0, 0.14115221798419952], "12": [273.667724609375, 480.0, 0.2004847675561905], "13": [466.02752685546875, 420.69940185546875, 0.0014431799063459039], "14": [258.5646057128906, 425.9527587890625, 0.0022315746173262596], "15": [438.25054931640625, 468.2075500488281, 0.00018633517902344465], "16": [225.24830627441406, 459.1766357421875, 0.0002576460246928036]}} +{"t": 15.509098, "tracked": true, "track_id": 1, "bbox": [101.69879913330078, 64.94438171386719, 545.5615234375, 479.7449645996094], "det_conf": 0.915582001209259, "mean_kpt_conf": 0.9201817891814492, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9285515637782166, "right_lift": -0.7028968581006303, "left_bend": 0.3706020126999991, "right_bend": 0.8583859491336076}, "keypoints": {"0": [342.546875, 159.32513427734375, 0.9989443421363831], "1": [362.64215087890625, 136.86361694335938, 0.9978275895118713], "2": [321.76202392578125, 136.75946044921875, 0.9958729147911072], "3": [389.0029602050781, 147.1237335205078, 0.9350435733795166], "4": [290.2170104980469, 145.72311401367188, 0.835084855556488], "5": [447.97320556640625, 256.11175537109375, 0.9894071221351624], "6": [225.78164672851562, 248.49588012695312, 0.9963971972465515], "7": [510.0529479980469, 411.40191650390625, 0.8104901313781738], "8": [115.1026611328125, 357.86859130859375, 0.9278580546379089], "9": [471.56195068359375, 450.0025634765625, 0.7158548831939697], "10": [166.83880615234375, 214.55520629882812, 0.9192190170288086], "11": [420.335205078125, 480.0, 0.14238642156124115], "12": [273.016845703125, 480.0, 0.2070009559392929], "13": [466.3626708984375, 426.1015625, 0.0014002688694745302], "14": [260.3113708496094, 430.197509765625, 0.0022362384479492903], "15": [436.5546875, 469.7293395996094, 0.00018433143850415945], "16": [228.03167724609375, 460.1210632324219, 0.00026235287077724934]}} +{"t": 15.545279, "tracked": true, "track_id": 1, "bbox": [101.78125, 64.72689819335938, 545.1810913085938, 479.8865661621094], "det_conf": 0.9137447476387024, "mean_kpt_conf": 0.9245856675234708, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9230963328766086, "right_lift": -0.7047706964230991, "left_bend": 0.27379044845396455, "right_bend": 0.853097160994882}, "keypoints": {"0": [343.0467529296875, 158.55787658691406, 0.9989301562309265], "1": [363.1658630371094, 137.1696014404297, 0.9977790713310242], "2": [322.7439880371094, 136.36328125, 0.9957993626594543], "3": [388.7430419921875, 149.0882568359375, 0.9339159727096558], "4": [291.55810546875, 146.35565185546875, 0.8428122401237488], "5": [445.36279296875, 254.87677001953125, 0.9898226261138916], "6": [226.22012329101562, 249.34109497070312, 0.9965240359306335], "7": [507.881103515625, 404.9420471191406, 0.832329511642456], "8": [116.56199645996094, 358.2782287597656, 0.9339356422424316], "9": [483.08831787109375, 454.31146240234375, 0.7265069484710693], "10": [165.23013305664062, 214.87747192382812, 0.922086775302887], "11": [418.12896728515625, 480.0, 0.15226568281650543], "12": [272.2665710449219, 480.0, 0.2165239453315735], "13": [467.2143249511719, 419.1322021484375, 0.0014826242113485932], "14": [258.15838623046875, 426.0345458984375, 0.0023206640034914017], "15": [439.3358154296875, 467.68499755859375, 0.0001955150655703619], "16": [224.65316772460938, 458.25103759765625, 0.00027318979846313596]}} +{"t": 15.610107, "tracked": true, "track_id": 1, "bbox": [102.83489990234375, 64.9283447265625, 545.5076904296875, 480.0], "det_conf": 0.9109354019165039, "mean_kpt_conf": 0.9156986962665211, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9291602201543239, "right_lift": -0.692177312159747, "left_bend": 0.3221416925951905, "right_bend": 0.8271300460097087}, "keypoints": {"0": [345.0657653808594, 158.8474578857422, 0.9989839196205139], "1": [364.9432678222656, 136.82064819335938, 0.9977381229400635], "2": [324.5885925292969, 136.2271728515625, 0.9962653517723083], "3": [390.46124267578125, 147.27403259277344, 0.9263918399810791], "4": [292.66571044921875, 144.96539306640625, 0.8494217395782471], "5": [447.8724060058594, 257.115966796875, 0.9887735843658447], "6": [227.4989776611328, 248.8017120361328, 0.9964994192123413], "7": [507.78143310546875, 407.6934814453125, 0.7974677085876465], "8": [118.85862731933594, 352.9939270019531, 0.9294852614402771], "9": [477.2841491699219, 449.22601318359375, 0.679253876209259], "10": [156.00897216796875, 215.1239776611328, 0.9124048352241516], "11": [418.69317626953125, 480.0, 0.16206982731819153], "12": [271.7816467285156, 480.0, 0.23937658965587616], "13": [467.8375244140625, 435.01129150390625, 0.0014176880940794945], "14": [257.797607421875, 439.29241943359375, 0.0023209089413285255], "15": [440.0313720703125, 475.22381591796875, 0.00018376285152044147], "16": [227.03982543945312, 466.40325927734375, 0.0002628783986438066]}} +{"t": 15.678004, "tracked": true, "track_id": 1, "bbox": [100.58934020996094, 63.75122833251953, 552.8236083984375, 480.0], "det_conf": 0.9062498211860657, "mean_kpt_conf": 0.9015866897322915, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9297218909311641, "right_lift": -0.635986145068272, "left_bend": 0.26975440622754615, "right_bend": 0.7639227630429815}, "keypoints": {"0": [349.8038024902344, 157.11944580078125, 0.9989662170410156], "1": [368.4528503417969, 135.7528839111328, 0.9970864653587341], "2": [329.42681884765625, 135.26904296875, 0.9968782663345337], "3": [391.08367919921875, 149.37417602539062, 0.8789355754852295], "4": [295.9884948730469, 147.7823028564453, 0.8786577582359314], "5": [449.9170837402344, 259.0191345214844, 0.9837685227394104], "6": [233.7351837158203, 253.50076293945312, 0.9962887763977051], "7": [509.0470886230469, 408.2998046875, 0.7275757789611816], "8": [122.36373901367188, 345.2859802246094, 0.9361522793769836], "9": [480.81243896484375, 463.83966064453125, 0.6093001365661621], "10": [142.73191833496094, 200.59585571289062, 0.9138438105583191], "11": [425.5679626464844, 476.42059326171875, 0.14483055472373962], "12": [283.72235107421875, 476.92584228515625, 0.24039258062839508], "13": [464.3240966796875, 434.0977783203125, 0.0020716004073619843], "14": [278.8066711425781, 442.49932861328125, 0.003921214025467634], "15": [420.74224853515625, 480.0, 0.0002516563981771469], "16": [244.31210327148438, 479.8037109375, 0.00039698273758403957]}} +{"t": 15.742378, "tracked": true, "track_id": 1, "bbox": [90.55101013183594, 64.331298828125, 559.8636474609375, 480.0], "det_conf": 0.9066534638404846, "mean_kpt_conf": 0.9335347468202765, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9212202922309094, "right_lift": -0.6103193046926205, "left_bend": 0.4085318116440354, "right_bend": 0.7105787106419711}, "keypoints": {"0": [352.56402587890625, 157.60443115234375, 0.9993263483047485], "1": [372.1864929199219, 135.82894897460938, 0.997900128364563], "2": [331.4451599121094, 134.3533477783203, 0.9974489808082581], "3": [395.69610595703125, 148.8114471435547, 0.8969990611076355], "4": [296.148681640625, 145.74794006347656, 0.8684384226799011], "5": [454.55755615234375, 259.8348083496094, 0.9901297688484192], "6": [234.90414428710938, 253.75112915039062, 0.9975281357765198], "7": [515.07275390625, 403.13018798828125, 0.8385401368141174], "8": [115.17369079589844, 345.9979248046875, 0.9576852321624756], "9": [470.93963623046875, 439.328857421875, 0.7734928131103516], "10": [115.90060424804688, 203.15673828125, 0.951393187046051], "11": [429.1340026855469, 480.0, 0.1941514015197754], "12": [283.12249755859375, 480.0, 0.2910466194152832], "13": [466.3929138183594, 440.64031982421875, 0.001389691373333335], "14": [266.3394775390625, 442.6702880859375, 0.0023199154529720545], "15": [428.8379821777344, 480.0, 0.00012853843509219587], "16": [225.66671752929688, 467.97576904296875, 0.00018652626022230834]}} +{"t": 15.812346, "tracked": true, "track_id": 1, "bbox": [58.12201690673828, 63.55291748046875, 558.7970581054688, 480.0], "det_conf": 0.8928057551383972, "mean_kpt_conf": 0.8876952975988388, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9154640677817316, "right_lift": -0.5764547653124124, "left_bend": 0.3453591021971316, "right_bend": 0.6540019954905147}, "keypoints": {"0": [353.136962890625, 157.361328125, 0.999350368976593], "1": [373.9742431640625, 136.25054931640625, 0.9981512427330017], "2": [332.4808044433594, 133.98577880859375, 0.997448742389679], "3": [398.32568359375, 150.21133422851562, 0.9195679426193237], "4": [297.6105041503906, 145.57431030273438, 0.8639031052589417], "5": [454.3760986328125, 259.67730712890625, 0.9907037019729614], "6": [234.03773498535156, 255.38685607910156, 0.9979447722434998], "7": [514.6251220703125, 396.7445373535156, 0.8490651845932007], "8": [109.611572265625, 343.16497802734375, 0.9624044895172119], "9": [480.542236328125, 439.6904296875, 0.7634360194206238], "10": [90.83879089355469, 200.20938110351562, 0.9493116140365601], "11": [425.446533203125, 480.0, 0.24509678781032562], "12": [278.5274963378906, 480.0, 0.361056387424469], "13": [460.35284423828125, 451.195068359375, 0.0014491057954728603], "14": [254.8634033203125, 454.20379638671875, 0.002392746042460203], "15": [425.97808837890625, 480.0, 0.00012589246034622192], "16": [214.72560119628906, 470.549072265625, 0.00018207765242550522]}} +{"t": 15.873952, "tracked": true, "track_id": 1, "bbox": [25.24633026123047, 63.46063995361328, 559.7692260742188, 480.0], "det_conf": 0.8999808430671692, "mean_kpt_conf": 0.888400008281072, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.914876584066911, "right_lift": -0.5464913000292364, "left_bend": 0.4172379518008924, "right_bend": 0.6171049348375021}, "keypoints": {"0": [354.65850830078125, 157.24664306640625, 0.9994021654129028], "1": [375.73309326171875, 136.39549255371094, 0.9982615113258362], "2": [333.97564697265625, 133.75498962402344, 0.9976484179496765], "3": [400.1390686035156, 150.9668731689453, 0.9238336086273193], "4": [298.26434326171875, 145.68197631835938, 0.8617837429046631], "5": [457.6969299316406, 262.4042663574219, 0.991155743598938], "6": [232.28688049316406, 254.34329223632812, 0.9980278611183167], "7": [518.4685668945312, 400.115234375, 0.8495469093322754], "8": [101.41497802734375, 339.74432373046875, 0.9623297452926636], "9": [475.464111328125, 434.579345703125, 0.7706090807914734], "10": [72.77778625488281, 205.5668182373047, 0.9494998455047607], "11": [424.3334655761719, 480.0, 0.24393367767333984], "12": [274.2054443359375, 480.0, 0.3587014675140381], "13": [457.3575439453125, 452.21771240234375, 0.0013969370629638433], "14": [247.81350708007812, 450.4647521972656, 0.0022568644490092993], "15": [424.5822448730469, 480.0, 0.00011839467333629727], "16": [209.55905151367188, 465.2656555175781, 0.00016895712178666145]}} +{"t": 15.907711, "tracked": true, "track_id": 1, "bbox": [15.765381813049316, 63.45600891113281, 560.5755615234375, 480.0], "det_conf": 0.9004830121994019, "mean_kpt_conf": 0.9360458146442067, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9130732141268723, "right_lift": -0.536410144834409, "left_bend": 0.38519797536088746, "right_bend": 0.6000461298111205}, "keypoints": {"0": [355.341552734375, 157.324951171875, 0.9994133710861206], "1": [376.1104431152344, 135.74403381347656, 0.9982954859733582], "2": [333.9950866699219, 133.94259643554688, 0.9977318644523621], "3": [400.5303039550781, 149.28131103515625, 0.9235744476318359], "4": [297.89483642578125, 145.99351501464844, 0.8669955134391785], "5": [459.38360595703125, 261.55670166015625, 0.9911762475967407], "6": [231.97496032714844, 254.05438232421875, 0.9979928731918335], "7": [521.0352783203125, 399.5976257324219, 0.8471060395240784], "8": [99.50738525390625, 338.24932861328125, 0.9608842730522156], "9": [481.4042053222656, 438.8580322265625, 0.7653511166572571], "10": [66.22157287597656, 208.9029541015625, 0.9479827284812927], "11": [424.3307800292969, 480.0, 0.23459692299365997], "12": [273.5211486816406, 480.0, 0.34527578949928284], "13": [456.7977294921875, 449.74127197265625, 0.0013706693425774574], "14": [247.24197387695312, 448.9082336425781, 0.0022030367981642485], "15": [421.32843017578125, 480.0, 0.00011934975191252306], "16": [209.49366760253906, 466.718994140625, 0.00016916329332161695]}} +{"t": 15.975049, "tracked": true, "track_id": 1, "bbox": [0.0, 61.79008102416992, 563.167236328125, 480.0], "det_conf": 0.9044066667556763, "mean_kpt_conf": 0.8667761112252871, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9251986245932944, "right_lift": -0.4311853942781047, "left_bend": 0.289270257179971, "right_bend": 0.4711764366993695}, "keypoints": {"0": [356.45074462890625, 156.84732055664062, 0.9991938471794128], "1": [375.7784423828125, 134.3399658203125, 0.9974678754806519], "2": [334.6240539550781, 134.69366455078125, 0.9974870681762695], "3": [398.65972900390625, 146.23788452148438, 0.8920082449913025], "4": [297.8975524902344, 147.60775756835938, 0.8735254406929016], "5": [456.13311767578125, 262.99176025390625, 0.9852293133735657], "6": [240.02073669433594, 253.357421875, 0.9974800944328308], "7": [511.71502685546875, 398.503173828125, 0.7476553916931152], "8": [109.55935668945312, 315.7040100097656, 0.9538562893867493], "9": [481.69873046875, 450.9847106933594, 0.6556100249290466], "10": [46.10926818847656, 208.97369384765625, 0.9322533011436462], "11": [427.6976318359375, 480.0, 0.22576437890529633], "12": [289.2734069824219, 480.0, 0.36954644322395325], "13": [453.26910400390625, 454.22894287109375, 0.0022582458332180977], "14": [294.1876220703125, 455.77850341796875, 0.00437490688636899], "15": [411.13763427734375, 477.3365478515625, 0.00020870172011200339], "16": [279.3536682128906, 472.7929992675781, 0.0003411154611967504]}} +{"t": 16.037487, "tracked": true, "track_id": 1, "bbox": [0.0, 62.167091369628906, 560.7727661132812, 480.0], "det_conf": 0.9087257385253906, "mean_kpt_conf": 0.8711333051323891, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9208860090737335, "right_lift": -0.4163796037438683, "left_bend": 0.2879657938629212, "right_bend": 0.45219547743479704}, "keypoints": {"0": [356.5789794921875, 157.655029296875, 0.9992045760154724], "1": [376.42291259765625, 134.58334350585938, 0.9975757002830505], "2": [334.6353454589844, 135.06773376464844, 0.9974231719970703], "3": [400.2155456542969, 145.59042358398438, 0.9010658860206604], "4": [298.1280822753906, 147.12449645996094, 0.8656899333000183], "5": [457.3599853515625, 262.685546875, 0.9857714176177979], "6": [240.91586303710938, 253.06082153320312, 0.9975671768188477], "7": [513.927490234375, 396.31292724609375, 0.7608752846717834], "8": [110.05438232421875, 312.9910888671875, 0.956108033657074], "9": [484.16619873046875, 450.24810791015625, 0.6757333874702454], "10": [42.41566467285156, 209.6717529296875, 0.9361222386360168], "11": [427.8658447265625, 480.0, 0.23526403307914734], "12": [289.412841796875, 480.0, 0.3804628551006317], "13": [454.49383544921875, 455.091796875, 0.00223010266199708], "14": [296.6803283691406, 456.3612060546875, 0.00431087939068675], "15": [412.61669921875, 475.9071960449219, 0.00020208954811096191], "16": [283.655029296875, 471.470703125, 0.00033156233257614076]}} +{"t": 16.104484, "tracked": true, "track_id": 1, "bbox": [0.0, 62.20601272583008, 563.7960205078125, 479.72900390625], "det_conf": 0.909619152545929, "mean_kpt_conf": 0.8655139108498892, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9228115538520172, "right_lift": -0.4338495894261034, "left_bend": 0.3132892605311665, "right_bend": 0.4635490090875192}, "keypoints": {"0": [356.04132080078125, 156.16476440429688, 0.9992109537124634], "1": [375.8251037597656, 133.43344116210938, 0.9976279139518738], "2": [333.9247131347656, 134.0257568359375, 0.9974925518035889], "3": [399.5491638183594, 145.6268310546875, 0.9027650952339172], "4": [297.3048095703125, 147.53475952148438, 0.8655543327331543], "5": [458.63055419921875, 261.9637756347656, 0.985233724117279], "6": [240.2968292236328, 252.8388671875, 0.9975020289421082], "7": [515.822265625, 398.9577941894531, 0.7421969771385193], "8": [109.81991577148438, 315.6671447753906, 0.9535559415817261], "9": [481.81439208984375, 449.887451171875, 0.6471461057662964], "10": [42.27793884277344, 208.71595764160156, 0.9303010106086731], "11": [430.4229431152344, 480.0, 0.22271455824375153], "12": [290.6714172363281, 479.89703369140625, 0.3675802946090698], "13": [456.32537841796875, 453.59454345703125, 0.002192873740568757], "14": [295.5992126464844, 454.4654235839844, 0.004313157871365547], "15": [413.0643310546875, 477.96990966796875, 0.0002040256658801809], "16": [280.1459655761719, 472.6366271972656, 0.000339571968652308]}} +{"t": 16.170634, "tracked": true, "track_id": 1, "bbox": [0.0, 61.38577651977539, 567.1525268554688, 479.4548034667969], "det_conf": 0.9062445163726807, "mean_kpt_conf": 0.8708362604180971, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9217515961032426, "right_lift": -0.4146505747062073, "left_bend": 0.29220047910526986, "right_bend": 0.4686058119142003}, "keypoints": {"0": [355.4436950683594, 155.72158813476562, 0.9992269277572632], "1": [375.11273193359375, 133.03811645507812, 0.997825026512146], "2": [333.2452392578125, 134.00732421875, 0.9973769187927246], "3": [399.44189453125, 145.68402099609375, 0.9148417711257935], "4": [297.30462646484375, 148.42568969726562, 0.8541833162307739], "5": [458.65533447265625, 262.22393798828125, 0.9858196973800659], "6": [241.18545532226562, 252.8980712890625, 0.9976152181625366], "7": [516.0782470703125, 398.7176818847656, 0.76246577501297], "8": [107.50299072265625, 313.8131103515625, 0.9582571387290955], "9": [485.1131591796875, 452.8304443359375, 0.666617214679718], "10": [45.08253479003906, 206.3409423828125, 0.9360246658325195], "11": [430.598876953125, 480.0, 0.23113694787025452], "12": [290.8652648925781, 480.0, 0.37978145480155945], "13": [456.7149658203125, 453.7945556640625, 0.002086675027385354], "14": [292.53472900390625, 455.08660888671875, 0.004127753432840109], "15": [416.39971923828125, 476.4171447753906, 0.0001911548024509102], "16": [273.7939147949219, 472.352783203125, 0.0003216830373276025]}} +{"t": 16.205046, "tracked": true, "track_id": 1, "bbox": [0.0, 61.444828033447266, 563.7396850585938, 479.5720520019531], "det_conf": 0.9055638313293457, "mean_kpt_conf": 0.8739114155371984, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9209117948688872, "right_lift": -0.42882087034447003, "left_bend": 0.2644425135593415, "right_bend": 0.486705801530474}, "keypoints": {"0": [354.9038391113281, 155.35345458984375, 0.9992246627807617], "1": [374.4683837890625, 133.03329467773438, 0.9977633953094482], "2": [332.78125, 133.98809814453125, 0.9973981380462646], "3": [398.2405090332031, 146.11166381835938, 0.9083600640296936], "4": [296.94342041015625, 148.827392578125, 0.8618751764297485], "5": [456.0354919433594, 259.4082336425781, 0.9860166907310486], "6": [240.28524780273438, 252.48828125, 0.997624933719635], "7": [513.5826416015625, 395.3748474121094, 0.7753654718399048], "8": [106.40217590332031, 316.0398864746094, 0.9600189328193665], "9": [488.3749694824219, 450.28271484375, 0.6746969819068909], "10": [46.474700927734375, 202.30856323242188, 0.9379755258560181], "11": [430.0096435546875, 480.0, 0.24217569828033447], "12": [291.3092956542969, 479.61553955078125, 0.3906170129776001], "13": [458.06982421875, 451.64593505859375, 0.0021972248796373606], "14": [293.7936706542969, 455.56494140625, 0.004293286707252264], "15": [417.595458984375, 479.27734375, 0.00019448963575996459], "16": [272.39642333984375, 476.1280822753906, 0.00032325921347364783]}} +{"t": 16.239884, "tracked": true, "track_id": 1, "bbox": [3.3197197914123535, 62.459571838378906, 559.9148559570312, 479.6050720214844], "det_conf": 0.8972201347351074, "mean_kpt_conf": 0.9111113060604442, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9217621021530191, "right_lift": -0.4743754037234133, "left_bend": 0.24854709207222273, "right_bend": 0.553787335350659}, "keypoints": {"0": [353.3871765136719, 154.88351440429688, 0.999077320098877], "1": [372.9039611816406, 133.81576538085938, 0.9977217316627502], "2": [333.0066833496094, 133.309326171875, 0.9968981742858887], "3": [396.44451904296875, 147.68833923339844, 0.929531455039978], "4": [299.85833740234375, 146.84226989746094, 0.8577480912208557], "5": [454.4150085449219, 261.52557373046875, 0.9867743253707886], "6": [234.7660369873047, 251.65374755859375, 0.9973142743110657], "7": [513.0408325195312, 400.8891906738281, 0.7667648196220398], "8": [104.54818725585938, 321.8236389160156, 0.9465937614440918], "9": [488.6410827636719, 461.51348876953125, 0.6297193169593811], "10": [64.68034362792969, 203.61111450195312, 0.9140810966491699], "11": [419.0753479003906, 480.0, 0.20428772270679474], "12": [276.7070007324219, 479.37811279296875, 0.32362714409828186], "13": [452.8133544921875, 442.06890869140625, 0.0022324305027723312], "14": [269.7283630371094, 444.7933349609375, 0.003971517086029053], "15": [414.482421875, 473.07672119140625, 0.00025103235384449363], "16": [247.76983642578125, 464.985107421875, 0.00038800836773589253]}} +{"t": 16.273219, "tracked": true, "track_id": 1, "bbox": [10.37094497680664, 62.53997802734375, 558.6246948242188, 479.74102783203125], "det_conf": 0.898485541343689, "mean_kpt_conf": 0.93339003757997, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9090925663757482, "right_lift": -0.5184949377128218, "left_bend": 0.3482941380826923, "right_bend": 0.5882561620792206}, "keypoints": {"0": [352.57794189453125, 156.5386962890625, 0.9993765950202942], "1": [373.3902282714844, 135.18063354492188, 0.9983283877372742], "2": [331.7129211425781, 133.38919067382812, 0.9975230097770691], "3": [398.34234619140625, 149.08108520507812, 0.9338535070419312], "4": [297.205078125, 145.69789123535156, 0.8553367853164673], "5": [456.7323303222656, 261.41571044921875, 0.9906418919563293], "6": [233.0164794921875, 253.65614318847656, 0.9979111552238464], "7": [518.9307861328125, 397.1452941894531, 0.8397247195243835], "8": [101.7437744140625, 333.25592041015625, 0.9597079157829285], "9": [483.3217468261719, 442.60296630859375, 0.7502371072769165], "10": [66.10498046875, 203.38540649414062, 0.944649338722229], "11": [420.51861572265625, 480.0, 0.23012083768844604], "12": [272.241943359375, 480.0, 0.3426932394504547], "13": [454.65960693359375, 447.55694580078125, 0.0014105290174484253], "14": [248.21180725097656, 447.248046875, 0.002321662148460746], "15": [419.63153076171875, 480.0, 0.00012896861881017685], "16": [210.29275512695312, 465.31671142578125, 0.00018724867550190538]}} +{"t": 16.334632, "tracked": true, "track_id": 1, "bbox": [23.012685775756836, 62.72711181640625, 558.9271850585938, 479.79510498046875], "det_conf": 0.8918666839599609, "mean_kpt_conf": 0.9321090416474775, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9106207038797783, "right_lift": -0.5221429809169861, "left_bend": 0.3934483596943495, "right_bend": 0.6216673834855603}, "keypoints": {"0": [351.0321044921875, 156.43963623046875, 0.9993320107460022], "1": [371.5414123535156, 134.8739471435547, 0.9982022047042847], "2": [330.4298095703125, 133.29615783691406, 0.9973620772361755], "3": [396.2987365722656, 148.46145629882812, 0.9297292828559875], "4": [296.3365173339844, 145.23556518554688, 0.853532612323761], "5": [455.1455383300781, 261.42791748046875, 0.9900801777839661], "6": [231.64755249023438, 253.81509399414062, 0.9977693557739258], "7": [517.0416259765625, 397.82183837890625, 0.8297905325889587], "8": [102.482666015625, 332.89337158203125, 0.9568268060684204], "9": [477.1700439453125, 435.775146484375, 0.7552405595779419], "10": [78.96067810058594, 193.4675750732422, 0.9453338384628296], "11": [420.9938659667969, 480.0, 0.21481670439243317], "12": [273.5074768066406, 480.0, 0.32278740406036377], "13": [456.59283447265625, 444.6824951171875, 0.0014985986053943634], "14": [256.6864013671875, 445.4637451171875, 0.0024922785814851522], "15": [421.0042724609375, 480.0, 0.00013736079563386738], "16": [222.30421447753906, 465.5997619628906, 0.00020180015417281538]}} +{"t": 16.400817, "tracked": true, "track_id": 1, "bbox": [40.8349494934082, 61.753753662109375, 558.2578125, 479.7992248535156], "det_conf": 0.8858782649040222, "mean_kpt_conf": 0.931796745820479, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9099371484773033, "right_lift": -0.5630149859932797, "left_bend": 0.38479177377235757, "right_bend": 0.6493761037974133}, "keypoints": {"0": [348.55810546875, 156.4875946044922, 0.9993118047714233], "1": [369.2447814941406, 134.4245147705078, 0.9982646107673645], "2": [328.16357421875, 133.37503051757812, 0.99715256690979], "3": [395.1678466796875, 147.0988006591797, 0.9368589520454407], "4": [295.1463317871094, 144.84909057617188, 0.8398545384407043], "5": [456.5755615234375, 258.6309509277344, 0.9903766512870789], "6": [231.51388549804688, 255.85604858398438, 0.9978765249252319], "7": [518.8240966796875, 395.20184326171875, 0.8333261609077454], "8": [108.81539916992188, 339.4441223144531, 0.9585564136505127], "9": [477.209716796875, 437.1675109863281, 0.7526646256446838], "10": [90.08195495605469, 194.74713134765625, 0.945521354675293], "11": [425.6722717285156, 480.0, 0.2277478128671646], "12": [276.46575927734375, 480.0, 0.34207096695899963], "13": [463.0935974121094, 446.1434631347656, 0.0014872199390083551], "14": [258.3293762207031, 450.0994567871094, 0.002538705710321665], "15": [423.90460205078125, 480.0, 0.00013416325964499265], "16": [221.06167602539062, 467.93243408203125, 0.00020212096569593996]}} +{"t": 16.46721, "tracked": true, "track_id": 1, "bbox": [73.4055404663086, 62.658931732177734, 557.668701171875, 479.74822998046875], "det_conf": 0.9050474762916565, "mean_kpt_conf": 0.9347803430123762, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9128593735542463, "right_lift": -0.5926519980637562, "left_bend": 0.3295567121433955, "right_bend": 0.6719713984659456}, "keypoints": {"0": [347.71234130859375, 156.8271026611328, 0.9992901086807251], "1": [367.7519836425781, 134.52017211914062, 0.998099148273468], "2": [327.3116149902344, 133.72267150878906, 0.99704509973526], "3": [392.85455322265625, 146.20907592773438, 0.9267781972885132], "4": [294.5577697753906, 144.43252563476562, 0.8456005454063416], "5": [453.6152648925781, 256.53277587890625, 0.990628182888031], "6": [233.27511596679688, 254.34461975097656, 0.997757613658905], "7": [515.3117065429688, 394.479736328125, 0.8481723070144653], "8": [116.71444702148438, 340.10931396484375, 0.9600318074226379], "9": [480.61102294921875, 443.6278381347656, 0.7697228193283081], "10": [103.16488647460938, 196.51788330078125, 0.9494579434394836], "11": [426.43035888671875, 480.0, 0.2224094420671463], "12": [280.3164978027344, 480.0, 0.32884570956230164], "13": [467.4823913574219, 439.3519592285156, 0.001528755179606378], "14": [266.5959777832031, 445.4269714355469, 0.0025896686129271984], "15": [427.94989013671875, 480.0, 0.00013756488624494523], "16": [230.36825561523438, 469.04229736328125, 0.00020503778068814427]}} +{"t": 16.536416, "tracked": true, "track_id": 1, "bbox": [92.90298461914062, 62.013580322265625, 559.0748901367188, 479.8383483886719], "det_conf": 0.9045931696891785, "mean_kpt_conf": 0.9330378662456166, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9114179939443771, "right_lift": -0.6115232492963472, "left_bend": 0.4259022177056554, "right_bend": 0.7186270802425148}, "keypoints": {"0": [346.93988037109375, 157.15625, 0.999268114566803], "1": [366.93243408203125, 134.50918579101562, 0.9980021119117737], "2": [325.9827575683594, 134.09515380859375, 0.997060239315033], "3": [392.4838562011719, 146.00729370117188, 0.9198026061058044], "4": [292.4938659667969, 144.87835693359375, 0.8438462615013123], "5": [454.7298583984375, 256.93951416015625, 0.9899880290031433], "6": [232.06051635742188, 253.34591674804688, 0.997523844242096], "7": [518.5027465820312, 398.19427490234375, 0.8344472646713257], "8": [117.12214660644531, 342.17950439453125, 0.9570368528366089], "9": [471.1770935058594, 434.6867370605469, 0.7757551074028015], "10": [121.31561279296875, 196.8802947998047, 0.9506860971450806], "11": [428.7491455078125, 480.0, 0.20299744606018066], "12": [281.3475036621094, 480.0, 0.30561500787734985], "13": [469.6889953613281, 440.7641296386719, 0.0014534855727106333], "14": [271.5651550292969, 444.54534912109375, 0.002523353323340416], "15": [430.06634521484375, 480.0, 0.0001320995215792209], "16": [235.3542022705078, 468.6809997558594, 0.00020066714205313474]}} +{"t": 16.60002, "tracked": true, "track_id": 1, "bbox": [97.42295837402344, 61.95405197143555, 553.0086059570312, 479.83575439453125], "det_conf": 0.9101971387863159, "mean_kpt_conf": 0.9075663143938238, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9269930059491065, "right_lift": -0.588211346047161, "left_bend": 0.23118362593178168, "right_bend": 0.7318885380431985}, "keypoints": {"0": [345.6317443847656, 156.978759765625, 0.9988753199577332], "1": [365.1156921386719, 134.44143676757812, 0.9973216652870178], "2": [325.0581359863281, 134.89047241210938, 0.9961985945701599], "3": [390.1394958496094, 146.45558166503906, 0.9130083918571472], "4": [293.17626953125, 146.55484008789062, 0.852482795715332], "5": [449.09979248046875, 258.0719299316406, 0.9841774702072144], "6": [231.87628173828125, 253.43283081054688, 0.9964906573295593], "7": [507.5560302734375, 402.54437255859375, 0.7443007826805115], "8": [120.80667114257812, 334.21905517578125, 0.9392725825309753], "9": [485.72882080078125, 463.89691162109375, 0.6411215662956238], "10": [135.41958618164062, 188.06829833984375, 0.9199796319007874], "11": [423.8891296386719, 474.0442810058594, 0.16151221096515656], "12": [283.0083923339844, 475.65667724609375, 0.264229953289032], "13": [465.13153076171875, 434.62237548828125, 0.0022595643531531096], "14": [289.8320617675781, 445.94903564453125, 0.0043289936147630215], "15": [420.61102294921875, 480.0, 0.00026195618556812406], "16": [266.23455810546875, 479.67657470703125, 0.0004272938531357795]}} +{"t": 16.666867, "tracked": true, "track_id": 1, "bbox": [98.24491119384766, 63.96760559082031, 554.6951293945312, 479.9046936035156], "det_conf": 0.9110311269760132, "mean_kpt_conf": 0.9301754290407355, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.915019232475726, "right_lift": -0.6124027325649603, "left_bend": 0.3744138220952722, "right_bend": 0.762863378973345}, "keypoints": {"0": [344.6253967285156, 157.03176879882812, 0.9991287589073181], "1": [364.91217041015625, 134.78025817871094, 0.9979273080825806], "2": [324.0437316894531, 134.7621612548828, 0.996537446975708], "3": [391.4300537109375, 146.8809356689453, 0.9315109252929688], "4": [292.2290344238281, 146.12826538085938, 0.8354369401931763], "5": [453.2821350097656, 256.40960693359375, 0.9892622828483582], "6": [229.24014282226562, 252.4290771484375, 0.9973898530006409], "7": [515.2550048828125, 396.97711181640625, 0.8251895308494568], "8": [118.34994506835938, 338.3310546875, 0.9547709226608276], "9": [473.1728210449219, 441.1632080078125, 0.7586017847061157], "10": [143.62060546875, 188.15643310546875, 0.9461739659309387], "11": [424.7281494140625, 480.0, 0.1991325467824936], "12": [277.3276062011719, 480.0, 0.3036355972290039], "13": [468.68695068359375, 437.43304443359375, 0.0015127157093957067], "14": [276.5608825683594, 444.059814453125, 0.0027449463959783316], "15": [427.16766357421875, 480.0, 0.0001514962932560593], "16": [246.56857299804688, 471.1603698730469, 0.00023933974443934858]}} +{"t": 16.700318, "tracked": true, "track_id": 1, "bbox": [97.37630462646484, 64.0439453125, 556.8961181640625, 480.0], "det_conf": 0.9108039140701294, "mean_kpt_conf": 0.9249778877605092, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9191004278742626, "right_lift": -0.6106034322428281, "left_bend": 0.4026618327280737, "right_bend": 0.7606853570553007}, "keypoints": {"0": [345.13330078125, 157.5225830078125, 0.9990997314453125], "1": [365.42340087890625, 134.6575469970703, 0.9978659749031067], "2": [324.1666564941406, 135.03594970703125, 0.9965454936027527], "3": [392.1421203613281, 145.8070068359375, 0.9294366240501404], "4": [291.96966552734375, 145.86773681640625, 0.8373802304267883], "5": [453.8018798828125, 257.4606018066406, 0.9883273243904114], "6": [229.27508544921875, 252.39968872070312, 0.9972368478775024], "7": [515.069091796875, 400.37274169921875, 0.8000149726867676], "8": [117.72886657714844, 338.4046936035156, 0.948970377445221], "9": [470.890869140625, 438.4068298339844, 0.7386956214904785], "10": [142.3246612548828, 188.046142578125, 0.9411835670471191], "11": [424.178466796875, 480.0, 0.18248024582862854], "12": [277.25250244140625, 480.0, 0.2846840023994446], "13": [465.68707275390625, 439.4161071777344, 0.00150019908323884], "14": [278.4962158203125, 445.2252502441406, 0.002753953216597438], "15": [424.26495361328125, 478.89971923828125, 0.00015577024896629155], "16": [252.27151489257812, 471.0206604003906, 0.00024794129421934485]}} +{"t": 16.762398, "tracked": true, "track_id": 1, "bbox": [94.70368957519531, 62.67015075683594, 556.8668823242188, 480.0], "det_conf": 0.9135321974754333, "mean_kpt_conf": 0.9273894049904563, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9163694157816027, "right_lift": -0.573247533492226, "left_bend": 0.3701499431491755, "right_bend": 0.7331347874398191}, "keypoints": {"0": [345.4024353027344, 157.48452758789062, 0.9991707801818848], "1": [365.6044921875, 134.6753387451172, 0.998050332069397], "2": [324.5024719238281, 134.88479614257812, 0.9966899156570435], "3": [392.0840148925781, 146.23031616210938, 0.9335672855377197], "4": [292.38299560546875, 145.99935913085938, 0.8371722102165222], "5": [453.6912841796875, 258.3775329589844, 0.9888190627098083], "6": [229.58009338378906, 252.67459106445312, 0.9973422884941101], "7": [515.5723876953125, 400.02423095703125, 0.8108553886413574], "8": [111.40798950195312, 335.3489074707031, 0.9511821866035461], "9": [474.23193359375, 444.3131103515625, 0.7446908950805664], "10": [129.70584106445312, 186.05050659179688, 0.943743109703064], "11": [424.8625793457031, 480.0, 0.17705519497394562], "12": [278.2548828125, 480.0, 0.2750796973705292], "13": [466.9124755859375, 436.5093078613281, 0.0014352116268128157], "14": [278.3626708984375, 442.25537109375, 0.002589101903140545], "15": [426.6509704589844, 478.4635009765625, 0.00015056825941428542], "16": [249.97335815429688, 470.0657043457031, 0.0002373907045694068]}} +{"t": 16.799229, "tracked": true, "track_id": 1, "bbox": [93.4438247680664, 62.434471130371094, 556.3700561523438, 480.0], "det_conf": 0.91242915391922, "mean_kpt_conf": 0.9264271042563699, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9114704707367131, "right_lift": -0.5442780089627147, "left_bend": 0.3784259297114827, "right_bend": 0.7036344449300483}, "keypoints": {"0": [345.59576416015625, 158.1483154296875, 0.999173104763031], "1": [365.95477294921875, 135.16226196289062, 0.9980199337005615], "2": [324.909912109375, 135.02987670898438, 0.9967001080513], "3": [392.43182373046875, 145.792236328125, 0.9322493672370911], "4": [292.63861083984375, 144.7676544189453, 0.8326513171195984], "5": [453.2757873535156, 257.8323974609375, 0.9884529709815979], "6": [231.3065643310547, 251.32504272460938, 0.9973534345626831], "7": [515.588623046875, 395.900146484375, 0.8081396222114563], "8": [113.37225341796875, 327.84033203125, 0.9531987905502319], "9": [472.68951416015625, 440.5942687988281, 0.7405489683151245], "10": [122.88890075683594, 179.82870483398438, 0.9442105293273926], "11": [424.5693664550781, 480.0, 0.19334574043750763], "12": [278.8594970703125, 480.0, 0.3008453845977783], "13": [465.869384765625, 441.215576171875, 0.00148763635661453], "14": [277.01776123046875, 445.77520751953125, 0.0027049975469708443], "15": [426.1183776855469, 479.5716552734375, 0.00015031536167953163], "16": [247.36708068847656, 469.290771484375, 0.00023831255384720862]}} +{"t": 16.862883, "tracked": true, "track_id": 1, "bbox": [85.51641082763672, 61.645687103271484, 556.1678466796875, 480.0], "det_conf": 0.9073150157928467, "mean_kpt_conf": 0.9263841184702787, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9119202430322532, "right_lift": -0.5004121811118564, "left_bend": 0.3724176142461261, "right_bend": 0.6692328081097295}, "keypoints": {"0": [346.8227233886719, 157.94696044921875, 0.999180257320404], "1": [367.1504211425781, 134.80242919921875, 0.998035728931427], "2": [326.0345153808594, 134.6008758544922, 0.996678352355957], "3": [393.36883544921875, 145.50564575195312, 0.9342941045761108], "4": [293.6805419921875, 144.35104370117188, 0.8293535113334656], "5": [454.1699523925781, 259.8087158203125, 0.9881905317306519], "6": [232.49253845214844, 250.00234985351562, 0.9973141551017761], "7": [516.1796875, 397.60699462890625, 0.8053472638130188], "8": [110.99639892578125, 320.2253112792969, 0.9529157876968384], "9": [474.7803039550781, 442.30291748046875, 0.7439811825752258], "10": [112.09004211425781, 176.05752563476562, 0.9449344277381897], "11": [423.39837646484375, 480.0, 0.18094561994075775], "12": [278.7655029296875, 480.0, 0.2851545512676239], "13": [461.2146911621094, 438.86712646484375, 0.0014716793084517121], "14": [277.1985778808594, 441.4804382324219, 0.0026643238961696625], "15": [421.24224853515625, 478.1222229003906, 0.00015366493607871234], "16": [251.44943237304688, 468.03875732421875, 0.00024350690364371985]}} +{"t": 16.924936, "tracked": true, "track_id": 1, "bbox": [68.97102355957031, 61.20437240600586, 557.5433959960938, 480.0], "det_conf": 0.9011507034301758, "mean_kpt_conf": 0.926042610948736, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9043744165847515, "right_lift": -0.429964641657625, "left_bend": 0.4148726103421142, "right_bend": 0.6202780485074192}, "keypoints": {"0": [347.6116943359375, 157.65780639648438, 0.9992086291313171], "1": [367.4494934082031, 134.6147003173828, 0.9980654120445251], "2": [326.9720764160156, 134.45632934570312, 0.9967341423034668], "3": [393.0302429199219, 145.95553588867188, 0.9365671277046204], "4": [294.7691955566406, 145.0254669189453, 0.8247727155685425], "5": [455.23492431640625, 263.43115234375, 0.988278865814209], "6": [233.17103576660156, 250.45849609375, 0.9972208738327026], "7": [519.5428466796875, 399.71661376953125, 0.8000907301902771], "8": [105.63470458984375, 311.1954650878906, 0.9493321180343628], "9": [471.9844970703125, 440.4556884765625, 0.7516363263130188], "10": [96.04391479492188, 167.37872314453125, 0.944561779499054], "11": [421.75921630859375, 480.0, 0.1605118066072464], "12": [278.3869323730469, 480.0, 0.25231611728668213], "13": [459.95343017578125, 432.92840576171875, 0.0014795870520174503], "14": [284.4015197753906, 433.00164794921875, 0.0026275645941495895], "15": [419.41693115234375, 472.2491149902344, 0.00016001869516912848], "16": [263.2291564941406, 461.1574401855469, 0.00025213262415491045]}} +{"t": 16.96098, "tracked": true, "track_id": 1, "bbox": [61.127777099609375, 60.503360748291016, 559.414794921875, 480.0], "det_conf": 0.8994125127792358, "mean_kpt_conf": 0.9286263151602312, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9053513635003217, "right_lift": -0.4329378180259995, "left_bend": 0.4357499850764091, "right_bend": 0.6251397297254261}, "keypoints": {"0": [347.30828857421875, 157.98020935058594, 0.9992372989654541], "1": [367.2369384765625, 134.75465393066406, 0.9981203675270081], "2": [326.4707946777344, 134.7187957763672, 0.9968034029006958], "3": [392.8854064941406, 146.1240234375, 0.9370706677436829], "4": [293.9042663574219, 145.40638732910156, 0.8240721821784973], "5": [455.6961669921875, 264.0736999511719, 0.9888476133346558], "6": [231.5731201171875, 250.02810668945312, 0.9972715973854065], "7": [520.8189697265625, 402.9107971191406, 0.8100415468215942], "8": [103.706787109375, 311.4400329589844, 0.9508048295974731], "9": [472.51763916015625, 438.9060974121094, 0.7657977342605591], "10": [95.67030334472656, 164.42837524414062, 0.9468222260475159], "11": [420.93121337890625, 480.0, 0.1609364002943039], "12": [275.98797607421875, 480.0, 0.2501758933067322], "13": [459.7471923828125, 431.80987548828125, 0.0014824584359303117], "14": [280.22222900390625, 431.2410888671875, 0.0025927347596734762], "15": [420.5636291503906, 471.60626220703125, 0.00015504282782785594], "16": [258.90374755859375, 460.770263671875, 0.0002419133816147223]}} +{"t": 17.026495, "tracked": true, "track_id": 1, "bbox": [54.01041793823242, 59.14912414550781, 560.2842407226562, 480.0], "det_conf": 0.8970673680305481, "mean_kpt_conf": 0.9237511049617421, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.902752916500488, "right_lift": -0.4095673317426572, "left_bend": 0.4184721422746286, "right_bend": 0.6370128138287559}, "keypoints": {"0": [347.1477355957031, 157.82179260253906, 0.9991752505302429], "1": [367.4494323730469, 134.63626098632812, 0.9980587363243103], "2": [326.4633483886719, 134.59429931640625, 0.9967027306556702], "3": [393.3553161621094, 146.50564575195312, 0.9393788576126099], "4": [294.11175537109375, 145.4449462890625, 0.8310364484786987], "5": [457.02178955078125, 264.9646911621094, 0.9883135557174683], "6": [227.25015258789062, 250.4149169921875, 0.9971362352371216], "7": [523.11279296875, 403.6663818359375, 0.788881242275238], "8": [97.84030151367188, 308.51336669921875, 0.943553626537323], "9": [474.2399597167969, 444.89801025390625, 0.739307165145874], "10": [99.13681030273438, 155.24200439453125, 0.9397183060646057], "11": [419.2791442871094, 480.0, 0.1392153799533844], "12": [272.18896484375, 480.0, 0.21834689378738403], "13": [462.9017333984375, 426.08135986328125, 0.0014330564299598336], "14": [289.0005798339844, 427.278076171875, 0.002553664380684495], "15": [419.0776062011719, 470.0904541015625, 0.00016669313481543213], "16": [273.76214599609375, 460.12091064453125, 0.00026438425993546844]}} +{"t": 17.060722, "tracked": true, "track_id": 1, "bbox": [55.09294128417969, 58.56197738647461, 559.3112182617188, 480.0], "det_conf": 0.898128867149353, "mean_kpt_conf": 0.9224067330360413, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9070423811394484, "right_lift": -0.3987440139156225, "left_bend": 0.42946984052185083, "right_bend": 0.6260747346449764}, "keypoints": {"0": [347.11181640625, 158.44891357421875, 0.9991508722305298], "1": [367.8958435058594, 135.119873046875, 0.9980243444442749], "2": [326.60589599609375, 134.72938537597656, 0.9965531826019287], "3": [394.26324462890625, 146.48583984375, 0.940214216709137], "4": [294.4175109863281, 144.46722412109375, 0.8225222229957581], "5": [456.00738525390625, 265.3395690917969, 0.9878764152526855], "6": [229.1107635498047, 249.90379333496094, 0.9971092343330383], "7": [520.09375, 403.4004211425781, 0.7833101749420166], "8": [100.58108520507812, 305.78924560546875, 0.9431989789009094], "9": [469.93377685546875, 442.0227355957031, 0.7386808395385742], "10": [98.40679931640625, 151.2813720703125, 0.9398335814476013], "11": [419.59033203125, 480.0, 0.14364749193191528], "12": [274.622314453125, 480.0, 0.22638770937919617], "13": [462.00091552734375, 429.34759521484375, 0.0014913652557879686], "14": [294.11383056640625, 429.81640625, 0.002673481358215213], "15": [418.96380615234375, 469.7952575683594, 0.00017205187759827822], "16": [281.5318603515625, 458.68621826171875, 0.00027528699138201773]}} +{"t": 17.096054, "tracked": true, "track_id": 1, "bbox": [57.369956970214844, 57.94496536254883, 558.762451171875, 479.9692077636719], "det_conf": 0.9000049829483032, "mean_kpt_conf": 0.9233975518833507, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9031328439314619, "right_lift": -0.3900246540872352, "left_bend": 0.4049165260969799, "right_bend": 0.630393067387386}, "keypoints": {"0": [346.76129150390625, 158.13882446289062, 0.999133288860321], "1": [367.3062744140625, 135.03152465820312, 0.9979044198989868], "2": [326.5436096191406, 134.4384765625, 0.9965962767601013], "3": [392.9459533691406, 146.5580291748047, 0.9361050724983215], "4": [294.4393310546875, 143.99270629882812, 0.8356907963752747], "5": [454.1434326171875, 266.3140869140625, 0.988174319267273], "6": [226.68643188476562, 249.97576904296875, 0.997113823890686], "7": [519.305908203125, 403.3790283203125, 0.7855206727981567], "8": [99.23956298828125, 303.9583740234375, 0.941974401473999], "9": [473.7265625, 445.2063903808594, 0.740019679069519], "10": [100.63987731933594, 148.08692932128906, 0.9391403198242188], "11": [415.0614929199219, 480.0, 0.14194786548614502], "12": [270.4006042480469, 480.0, 0.22115851938724518], "13": [460.2771911621094, 428.26611328125, 0.0015207004034891725], "14": [296.094482421875, 429.5911865234375, 0.0027109794318675995], "15": [416.018798828125, 469.86431884765625, 0.0001778280275175348], "16": [287.1262512207031, 459.58062744140625, 0.00028179941000416875]}} +{"t": 17.159974, "tracked": true, "track_id": 1, "bbox": [61.83872985839844, 56.6475830078125, 559.627197265625, 479.9232177734375], "det_conf": 0.9009220004081726, "mean_kpt_conf": 0.9182711948047985, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9000534849720291, "right_lift": -0.3430773139541219, "left_bend": 0.436505657575985, "right_bend": 0.6134532246521651}, "keypoints": {"0": [347.04534912109375, 157.9644012451172, 0.9991105198860168], "1": [367.365966796875, 134.56036376953125, 0.9978755712509155], "2": [326.25848388671875, 134.33212280273438, 0.996612012386322], "3": [393.02874755859375, 145.93405151367188, 0.9356105327606201], "4": [293.27215576171875, 144.3127899169922, 0.833767294883728], "5": [456.15948486328125, 267.4151611328125, 0.9873595833778381], "6": [226.20272827148438, 249.3863067626953, 0.9968385696411133], "7": [521.72119140625, 402.82550048828125, 0.7634140849113464], "8": [98.91154479980469, 295.8787841796875, 0.9357323050498962], "9": [467.6973876953125, 443.92681884765625, 0.7210785746574402], "10": [99.86891174316406, 142.27734375, 0.9335840940475464], "11": [416.0585632324219, 480.0, 0.13284504413604736], "12": [270.09649658203125, 480.0, 0.20879855751991272], "13": [459.90020751953125, 428.1318359375, 0.0014761298662051558], "14": [296.9248046875, 427.9149475097656, 0.0026498690713196993], "15": [412.9019775390625, 467.594482421875, 0.00018189007823821157], "16": [289.33941650390625, 457.3074035644531, 0.0002902098058257252]}} +{"t": 17.227525, "tracked": true, "track_id": 1, "bbox": [63.02296829223633, 55.891788482666016, 558.05859375, 479.92242431640625], "det_conf": 0.8974332809448242, "mean_kpt_conf": 0.9170181480321017, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9045441645010741, "right_lift": -0.31181685382364766, "left_bend": 0.3879600259577668, "right_bend": 0.6021784986646745}, "keypoints": {"0": [346.84735107421875, 158.32569885253906, 0.9990622401237488], "1": [366.8217468261719, 134.43360900878906, 0.9978309273719788], "2": [325.7032470703125, 135.11846923828125, 0.9964588284492493], "3": [392.631591796875, 144.68795776367188, 0.936292290687561], "4": [292.9783630371094, 144.98727416992188, 0.8346307873725891], "5": [455.655517578125, 266.4033203125, 0.9870815873146057], "6": [225.71551513671875, 248.23622131347656, 0.9968013763427734], "7": [519.0064086914062, 400.79913330078125, 0.7624004483222961], "8": [99.44407653808594, 289.6758728027344, 0.9361355900764465], "9": [474.497314453125, 445.94232177734375, 0.7095462679862976], "10": [100.041259765625, 136.49757385253906, 0.9309592843055725], "11": [414.650390625, 480.0, 0.14171162247657776], "12": [268.9527587890625, 480.0, 0.22214548289775848], "13": [459.8484802246094, 428.084228515625, 0.0015512286918237805], "14": [297.00006103515625, 430.22283935546875, 0.002809127327054739], "15": [412.46728515625, 465.0924072265625, 0.0001930253638420254], "16": [292.40008544921875, 460.24346923828125, 0.00030969944782555103]}} +{"t": 17.289089, "tracked": true, "track_id": 1, "bbox": [64.77711486816406, 55.19586944580078, 558.65234375, 479.9406433105469], "det_conf": 0.9016132354736328, "mean_kpt_conf": 0.9167303768071261, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8988112291872433, "right_lift": -0.29338622975840084, "left_bend": 0.41731758023774007, "right_bend": 0.6044780842685996}, "keypoints": {"0": [346.2069396972656, 157.88406372070312, 0.9990476965904236], "1": [366.42266845703125, 134.22540283203125, 0.9978813529014587], "2": [325.1657409667969, 134.79739379882812, 0.9963282942771912], "3": [392.7261962890625, 145.29922485351562, 0.9418439865112305], "4": [292.9948425292969, 145.23695373535156, 0.8209977149963379], "5": [455.7703552246094, 267.0948486328125, 0.9865241050720215], "6": [226.86785888671875, 246.37033081054688, 0.9966121315956116], "7": [521.3469848632812, 401.56024169921875, 0.7590160369873047], "8": [99.331787109375, 285.5100402832031, 0.9354342818260193], "9": [471.2142639160156, 444.95684814453125, 0.717679500579834], "10": [103.86335754394531, 136.78758239746094, 0.9326690435409546], "11": [413.7799072265625, 480.0, 0.12998813390731812], "12": [269.15704345703125, 480.0, 0.20626422762870789], "13": [460.726806640625, 424.27215576171875, 0.0015002005966380239], "14": [302.0597229003906, 423.6926574707031, 0.0027712066657841206], "15": [416.265869140625, 463.88372802734375, 0.00019364400941412896], "16": [299.5666198730469, 457.1605224609375, 0.0003179759078193456]}} +{"t": 17.35413, "tracked": true, "track_id": 1, "bbox": [68.6443862915039, 54.40944290161133, 558.4268798828125, 479.9354248046875], "det_conf": 0.9077820777893066, "mean_kpt_conf": 0.9185828945853494, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8918532572587109, "right_lift": -0.27238394376353714, "left_bend": 0.36506816151922505, "right_bend": 0.6012931845584257}, "keypoints": {"0": [345.52874755859375, 157.9010009765625, 0.9989976286888123], "1": [366.19024658203125, 134.0847930908203, 0.9978638291358948], "2": [324.6385803222656, 134.88064575195312, 0.9961438179016113], "3": [393.14337158203125, 144.73703002929688, 0.9452582001686096], "4": [293.1880187988281, 144.88336181640625, 0.8216379284858704], "5": [456.038330078125, 264.7486267089844, 0.9868223667144775], "6": [224.7766571044922, 245.53353881835938, 0.9966138005256653], "7": [522.6356811523438, 396.05926513671875, 0.7706533670425415], "8": [97.40510559082031, 281.59088134765625, 0.935836672782898], "9": [479.25628662109375, 449.97509765625, 0.7221648693084717], "10": [103.69917297363281, 133.06698608398438, 0.9324193596839905], "11": [412.19122314453125, 480.0, 0.13410833477973938], "12": [266.8243408203125, 480.0, 0.20815367996692657], "13": [464.0521240234375, 420.278076171875, 0.0015396528178825974], "14": [307.9017333984375, 422.623291015625, 0.002835646504536271], "15": [416.1138000488281, 463.68994140625, 0.0002043472632067278], "16": [308.66094970703125, 459.0495300292969, 0.00033556504058651626]}} +{"t": 17.388942, "tracked": true, "track_id": 1, "bbox": [69.53911590576172, 54.27117919921875, 561.6163330078125, 479.94146728515625], "det_conf": 0.9088228940963745, "mean_kpt_conf": 0.9148312211036682, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.895729295099884, "right_lift": -0.2701496866278627, "left_bend": 0.38794150500472646, "right_bend": 0.6069060501563187}, "keypoints": {"0": [345.40521240234375, 158.03985595703125, 0.9989810585975647], "1": [365.7530212402344, 133.8623046875, 0.997796893119812], "2": [324.2156066894531, 135.04840087890625, 0.9961735606193542], "3": [392.66363525390625, 144.0113525390625, 0.9428555965423584], "4": [292.5987243652344, 144.92816162109375, 0.8221925497055054], "5": [456.00604248046875, 266.4632263183594, 0.9862229228019714], "6": [224.96214294433594, 244.51535034179688, 0.9964084029197693], "7": [522.7516479492188, 400.9346923828125, 0.7523009777069092], "8": [98.13333129882812, 280.10125732421875, 0.9309018850326538], "9": [477.6663818359375, 448.55816650390625, 0.7101525664329529], "10": [107.27372741699219, 133.59124755859375, 0.929157018661499], "11": [411.40997314453125, 480.0, 0.12419269979000092], "12": [266.6019287109375, 480.0, 0.19513572752475739], "13": [464.77825927734375, 421.10491943359375, 0.0015076271956786513], "14": [311.64776611328125, 421.68841552734375, 0.002823814284056425], "15": [418.6969909667969, 461.45721435546875, 0.00020506027794908732], "16": [315.4567565917969, 458.1998291015625, 0.00034087130916304886]}} +{"t": 17.454076, "tracked": true, "track_id": 1, "bbox": [72.4700698852539, 53.208309173583984, 556.2852783203125, 479.92047119140625], "det_conf": 0.9113683700561523, "mean_kpt_conf": 0.9161391041495583, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.895495610489463, "right_lift": -0.2793020885132411, "left_bend": 0.33893632333141277, "right_bend": 0.6173714792713353}, "keypoints": {"0": [343.67559814453125, 158.09136962890625, 0.9989184141159058], "1": [364.4171142578125, 134.30477905273438, 0.9977567791938782], "2": [323.11224365234375, 135.33877563476562, 0.995924711227417], "3": [391.6983642578125, 144.60011291503906, 0.9464823603630066], "4": [292.6131896972656, 144.9069061279297, 0.8215753436088562], "5": [453.81512451171875, 264.67242431640625, 0.9867435693740845], "6": [222.67642211914062, 244.17491149902344, 0.9965194463729858], "7": [520.3435668945312, 398.5297546386719, 0.7656099200248718], "8": [97.59271240234375, 280.55902099609375, 0.9329543709754944], "9": [480.91851806640625, 455.7208251953125, 0.7077414393424988], "10": [110.49072265625, 130.36622619628906, 0.9273037910461426], "11": [406.4338684082031, 480.0, 0.13130375742912292], "12": [261.52838134765625, 480.0, 0.20308764278888702], "13": [463.15289306640625, 418.7193908691406, 0.0015623242361471057], "14": [309.16754150390625, 421.812744140625, 0.002920164493843913], "15": [415.4217529296875, 461.58294677734375, 0.00021784288401249796], "16": [312.87005615234375, 458.738525390625, 0.0003610757412388921]}} +{"t": 17.52342, "tracked": true, "track_id": 1, "bbox": [74.99117279052734, 53.405521392822266, 558.5546264648438, 479.8169250488281], "det_conf": 0.9148966670036316, "mean_kpt_conf": 0.9138371402567084, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8919879503937099, "right_lift": -0.24787282114307654, "left_bend": 0.3452513157475329, "right_bend": 0.6054294219877006}, "keypoints": {"0": [343.61248779296875, 157.70217895507812, 0.9989263415336609], "1": [364.24884033203125, 133.95480346679688, 0.9979230761528015], "2": [322.7021179199219, 135.50772094726562, 0.9957601428031921], "3": [392.28179931640625, 145.1033935546875, 0.9527435898780823], "4": [292.61212158203125, 146.64756774902344, 0.8034344911575317], "5": [455.2571105957031, 265.7088928222656, 0.9864193797111511], "6": [225.960693359375, 244.6075439453125, 0.9963284134864807], "7": [522.4082641601562, 398.20928955078125, 0.7633522748947144], "8": [99.57330322265625, 276.9447021484375, 0.9314357042312622], "9": [482.02777099609375, 455.305419921875, 0.7017122507095337], "10": [111.47950744628906, 129.78778076171875, 0.9241728782653809], "11": [409.186767578125, 480.0, 0.13362228870391846], "12": [265.16162109375, 480.0, 0.2059735804796219], "13": [463.9503173828125, 420.95074462890625, 0.0015206285752356052], "14": [309.2455139160156, 423.0092468261719, 0.0028387533966451883], "15": [419.5428161621094, 461.7552795410156, 0.00021360690880101174], "16": [311.1513977050781, 459.5880432128906, 0.0003566126397345215]}} +{"t": 17.587062, "tracked": true, "track_id": 1, "bbox": [77.758056640625, 54.100486755371094, 558.3137817382812, 479.77203369140625], "det_conf": 0.9150826334953308, "mean_kpt_conf": 0.9125569516962225, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9070554362243869, "right_lift": -0.2884198439324243, "left_bend": 0.38513810677076815, "right_bend": 0.6151756894340977}, "keypoints": {"0": [344.23638916015625, 157.7774658203125, 0.9989689588546753], "1": [364.6589660644531, 133.54122924804688, 0.9979089498519897], "2": [323.0246276855469, 135.03114318847656, 0.9959677457809448], "3": [392.3525695800781, 143.50050354003906, 0.9479919075965881], "4": [292.1200256347656, 145.09288024902344, 0.8090292811393738], "5": [454.10247802734375, 265.6080322265625, 0.9859155416488647], "6": [227.17294311523438, 245.2440185546875, 0.9965215921401978], "7": [517.0897216796875, 401.31207275390625, 0.7479421496391296], "8": [99.89645385742188, 283.5823059082031, 0.9331393241882324], "9": [471.7413330078125, 447.57763671875, 0.6973640322685242], "10": [110.27207946777344, 134.0127716064453, 0.9273769855499268], "11": [411.1004638671875, 480.0, 0.13562586903572083], "12": [268.142822265625, 480.0, 0.21645969152450562], "13": [458.9114990234375, 428.7620849609375, 0.0015025674365460873], "14": [304.7304382324219, 429.99395751953125, 0.0028445173520594835], "15": [414.5397033691406, 463.21881103515625, 0.00020258691802155226], "16": [303.3177795410156, 460.4249267578125, 0.00033986245398409665]}} +{"t": 17.653743, "tracked": true, "track_id": 1, "bbox": [80.00518798828125, 55.02645492553711, 560.8109741210938, 479.80474853515625], "det_conf": 0.9173831343650818, "mean_kpt_conf": 0.915116548538208, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9071060338800653, "right_lift": -0.346713952910505, "left_bend": 0.41411608028626484, "right_bend": 0.6406160161359455}, "keypoints": {"0": [345.1502685546875, 158.1551513671875, 0.999030590057373], "1": [365.61669921875, 133.56787109375, 0.9979656934738159], "2": [323.7141418457031, 135.00759887695312, 0.9961716532707214], "3": [393.36676025390625, 143.34133911132812, 0.9446213841438293], "4": [292.0881042480469, 144.99208068847656, 0.8130152821540833], "5": [456.3790283203125, 265.1520690917969, 0.9863576889038086], "6": [226.882568359375, 247.5528106689453, 0.9965729713439941], "7": [520.3287353515625, 402.97308349609375, 0.7539100050926208], "8": [99.92816162109375, 294.4805603027344, 0.9330546259880066], "9": [471.4700012207031, 444.4826354980469, 0.7141342163085938], "10": [113.33531188964844, 141.98492431640625, 0.9314479231834412], "11": [415.1380615234375, 480.0, 0.12785620987415314], "12": [269.8055114746094, 480.0, 0.20310743153095245], "13": [462.21514892578125, 426.4172668457031, 0.001456349971704185], "14": [301.4363098144531, 428.3661804199219, 0.0027061672881245613], "15": [417.5172424316406, 464.0908508300781, 0.00018873607041314244], "16": [295.9336242675781, 460.451904296875, 0.00031143127125687897]}} +{"t": 17.689173, "tracked": true, "track_id": 1, "bbox": [81.19943237304688, 55.638999938964844, 560.2736206054688, 479.83203125], "det_conf": 0.9154843688011169, "mean_kpt_conf": 0.9125116575847972, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9140918729378869, "right_lift": -0.39131009275625783, "left_bend": 0.42136746535822533, "right_bend": 0.6568745881729432}, "keypoints": {"0": [345.1329650878906, 158.01416015625, 0.9990153312683105], "1": [365.8919372558594, 133.9180450439453, 0.9978475570678711], "2": [324.08660888671875, 134.53622436523438, 0.996268093585968], "3": [393.042236328125, 144.40176391601562, 0.9398674964904785], "4": [291.9197692871094, 144.26791381835938, 0.8260164856910706], "5": [455.5453186035156, 265.88525390625, 0.9861996173858643], "6": [224.17861938476562, 249.1068572998047, 0.996658205986023], "7": [517.6668090820312, 405.9191589355469, 0.7404984831809998], "8": [99.93980407714844, 301.93536376953125, 0.9297247529029846], "9": [467.7113037109375, 445.05657958984375, 0.6979140043258667], "10": [114.281494140625, 144.38888549804688, 0.9276182055473328], "11": [414.7706298828125, 480.0, 0.12122517824172974], "12": [268.2202453613281, 480.0, 0.1951131820678711], "13": [460.7744140625, 425.616455078125, 0.0014681057073175907], "14": [299.1452941894531, 428.0978088378906, 0.002728743012994528], "15": [414.621337890625, 465.41888427734375, 0.00019168079597875476], "16": [295.7601013183594, 459.80743408203125, 0.0003145140944980085]}} +{"t": 17.750658, "tracked": true, "track_id": 1, "bbox": [83.191650390625, 57.652442932128906, 558.9228515625, 479.84490966796875], "det_conf": 0.9173028469085693, "mean_kpt_conf": 0.9210548780181191, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9103819875439216, "right_lift": -0.43172553483335174, "left_bend": 0.38950783661685867, "right_bend": 0.6726038236060848}, "keypoints": {"0": [345.18304443359375, 156.71214294433594, 0.9990591406822205], "1": [365.740966796875, 133.51620483398438, 0.9978741407394409], "2": [324.2494812011719, 133.90231323242188, 0.9963741898536682], "3": [392.14764404296875, 145.31533813476562, 0.9383729100227356], "4": [292.11090087890625, 144.92739868164062, 0.8342300057411194], "5": [454.13873291015625, 262.7355651855469, 0.9875646233558655], "6": [224.67471313476562, 249.2209014892578, 0.9970008730888367], "7": [517.37060546875, 401.8595275878906, 0.7781606316566467], "8": [101.52700805664062, 308.1629333496094, 0.9404600262641907], "9": [473.57537841796875, 444.64288330078125, 0.7262465953826904], "10": [116.61653137207031, 151.21023559570312, 0.9362605214118958], "11": [418.10211181640625, 480.0, 0.14239776134490967], "12": [272.209228515625, 480.0, 0.22432781755924225], "13": [464.6065673828125, 425.7174377441406, 0.0015262142987921834], "14": [299.6299133300781, 430.01092529296875, 0.002801300026476383], "15": [420.36492919921875, 468.87005615234375, 0.0001825372746679932], "16": [293.0194091796875, 462.7255554199219, 0.0002963987353723496]}} +{"t": 17.817593, "tracked": true, "track_id": 1, "bbox": [84.42573547363281, 59.24407196044922, 559.2589721679688, 479.9267272949219], "det_conf": 0.9201547503471375, "mean_kpt_conf": 0.9229675152085044, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9057066290908758, "right_lift": -0.4497756570964696, "left_bend": 0.3774507904320698, "right_bend": 0.6852496027570019}, "keypoints": {"0": [344.26324462890625, 157.8179931640625, 0.9991024732589722], "1": [364.7271423339844, 133.45001220703125, 0.9980165958404541], "2": [322.93450927734375, 134.6093292236328, 0.9964138865470886], "3": [392.2124328613281, 142.8148193359375, 0.9399179816246033], "4": [290.8896484375, 144.01951599121094, 0.8260330557823181], "5": [455.46368408203125, 260.066650390625, 0.987826406955719], "6": [225.99557495117188, 248.82333374023438, 0.9970676302909851], "7": [520.3300170898438, 398.65869140625, 0.7870383858680725], "8": [103.5660400390625, 310.4774169921875, 0.9444236755371094], "9": [477.6139221191406, 444.69146728515625, 0.7364234328269958], "10": [121.26278686523438, 157.89364624023438, 0.9403791427612305], "11": [421.186767578125, 480.0, 0.15416201949119568], "12": [274.1151123046875, 480.0, 0.24273592233657837], "13": [466.8651428222656, 431.03533935546875, 0.0014546444872394204], "14": [294.3876953125, 436.2305603027344, 0.002690967870876193], "15": [423.3377990722656, 470.2112121582031, 0.00016473321011289954], "16": [281.515380859375, 465.6261291503906, 0.0002684482897166163]}} +{"t": 17.881312, "tracked": true, "track_id": 1, "bbox": [85.855712890625, 60.41218185424805, 560.0215454101562, 479.9494934082031], "det_conf": 0.9223107099533081, "mean_kpt_conf": 0.9279164509339766, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9075374049743112, "right_lift": -0.4737829655562735, "left_bend": 0.35786217407332593, "right_bend": 0.7093935988364183}, "keypoints": {"0": [344.2764892578125, 157.52230834960938, 0.9991089701652527], "1": [364.88140869140625, 133.870361328125, 0.998002827167511], "2": [322.95263671875, 134.45877075195312, 0.9964281916618347], "3": [392.0000915527344, 144.77346801757812, 0.9386569261550903], "4": [290.8394470214844, 144.7733154296875, 0.8302424550056458], "5": [452.6676940917969, 261.2629699707031, 0.9882932305335999], "6": [226.33563232421875, 248.15475463867188, 0.9970791339874268], "7": [517.23193359375, 400.78314208984375, 0.8067405819892883], "8": [104.3671875, 313.7734680175781, 0.9485177993774414], "9": [479.95379638671875, 445.8728332519531, 0.7585538029670715], "10": [129.03570556640625, 164.93568420410156, 0.9454570412635803], "11": [418.23382568359375, 480.0, 0.15483473241329193], "12": [272.5746765136719, 480.0, 0.24098801612854004], "13": [466.3294677734375, 428.4305419921875, 0.0014310366241261363], "14": [291.87896728515625, 432.4498291015625, 0.0026238220743834972], "15": [427.1201171875, 469.4818115234375, 0.00016323993622791022], "16": [277.0909118652344, 464.24639892578125, 0.00026355398586019874]}} +{"t": 17.950311, "tracked": true, "track_id": 1, "bbox": [86.1473617553711, 61.182289123535156, 556.4867553710938, 480.0], "det_conf": 0.9230372905731201, "mean_kpt_conf": 0.920325756072998, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9141674989248546, "right_lift": -0.48661171266594033, "left_bend": 0.4009623235175719, "right_bend": 0.7381517909826322}, "keypoints": {"0": [343.7272644042969, 157.48367309570312, 0.999035120010376], "1": [364.3567199707031, 134.11700439453125, 0.9979221224784851], "2": [322.5196838378906, 134.71978759765625, 0.9963611960411072], "3": [391.6597900390625, 145.42633056640625, 0.9395384788513184], "4": [290.4613037109375, 145.32510375976562, 0.8328122496604919], "5": [453.4790344238281, 262.1233215332031, 0.9871689081192017], "6": [224.065185546875, 247.84182739257812, 0.9968346953392029], "7": [516.4271240234375, 404.09197998046875, 0.772567629814148], "8": [102.98297119140625, 315.2854919433594, 0.9401174783706665], "9": [470.02032470703125, 445.4956359863281, 0.724559485912323], "10": [139.66656494140625, 165.3629608154297, 0.936665952205658], "11": [416.64569091796875, 480.0, 0.13930319249629974], "12": [269.31109619140625, 480.0, 0.22287115454673767], "13": [461.9110107421875, 429.00048828125, 0.001414477126672864], "14": [288.732666015625, 431.79705810546875, 0.002654331736266613], "15": [419.4581298828125, 470.1902770996094, 0.00017449808365199715], "16": [274.34515380859375, 464.022216796875, 0.0002859652740880847]}} +{"t": 17.985234, "tracked": true, "track_id": 1, "bbox": [86.49980926513672, 61.484619140625, 556.560546875, 480.0], "det_conf": 0.9234453439712524, "mean_kpt_conf": 0.9229938550428911, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9175018820718756, "right_lift": -0.5118427679893086, "left_bend": 0.3985570120342472, "right_bend": 0.7509152213376249}, "keypoints": {"0": [344.0082702636719, 157.56277465820312, 0.9990569949150085], "1": [364.03778076171875, 134.01593017578125, 0.9978535771369934], "2": [322.5981140136719, 134.96954345703125, 0.9964872598648071], "3": [390.7381286621094, 144.61886596679688, 0.9332700967788696], "4": [290.11993408203125, 145.4044189453125, 0.8425813317298889], "5": [453.2774658203125, 261.8279724121094, 0.9880214929580688], "6": [223.14073181152344, 248.289306640625, 0.9969821572303772], "7": [515.1907958984375, 404.6519775390625, 0.7847098112106323], "8": [104.944091796875, 318.7113342285156, 0.9430003762245178], "9": [472.3541259765625, 442.81292724609375, 0.7325624823570251], "10": [143.09762573242188, 169.8768310546875, 0.9384068250656128], "11": [416.90673828125, 480.0, 0.15281936526298523], "12": [268.48504638671875, 480.0, 0.24060039222240448], "13": [462.8736572265625, 432.49395751953125, 0.001422420609742403], "14": [284.7273864746094, 436.2081298828125, 0.0026403265073895454], "15": [420.44696044921875, 470.42926025390625, 0.00016702407447155565], "16": [269.5220947265625, 466.68438720703125, 0.0002694090362638235]}} +{"t": 18.046146, "tracked": true, "track_id": 1, "bbox": [87.46466827392578, 62.43669509887695, 555.8859252929688, 479.9269104003906], "det_conf": 0.9227486252784729, "mean_kpt_conf": 0.9230557192455638, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9138471320133212, "right_lift": -0.5258535825731439, "left_bend": 0.36867374206066933, "right_bend": 0.757614277968339}, "keypoints": {"0": [342.9627990722656, 158.1209716796875, 0.9990278482437134], "1": [363.0727233886719, 134.12786865234375, 0.9978170394897461], "2": [321.3110046386719, 135.4568328857422, 0.9963685274124146], "3": [390.1568908691406, 144.05816650390625, 0.933017373085022], "4": [288.9102478027344, 145.6016082763672, 0.8396077752113342], "5": [453.23004150390625, 260.9273681640625, 0.987981379032135], "6": [222.87522888183594, 248.5124969482422, 0.9968895316123962], "7": [516.669921875, 403.7008056640625, 0.7880740165710449], "8": [109.55953979492188, 318.5679931640625, 0.9428220391273499], "9": [477.43231201171875, 446.6657409667969, 0.7339580059051514], "10": [148.76809692382812, 168.52557373046875, 0.9380493760108948], "11": [416.560302734375, 480.0, 0.15106035768985748], "12": [267.95416259765625, 480.0, 0.23669663071632385], "13": [464.4259033203125, 429.58087158203125, 0.0014315206790342927], "14": [285.2401428222656, 434.81878662109375, 0.002674718853086233], "15": [420.5513000488281, 468.71746826171875, 0.0001720093860058114], "16": [270.8431091308594, 466.50604248046875, 0.0002786386467050761]}} +{"t": 18.083202, "tracked": true, "track_id": 1, "bbox": [87.29188537597656, 62.156768798828125, 556.7687377929688, 480.0], "det_conf": 0.9173612594604492, "mean_kpt_conf": 0.9195085547187112, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9159898227938219, "right_lift": -0.5211672275664014, "left_bend": 0.37498365538199546, "right_bend": 0.7609989507534438}, "keypoints": {"0": [342.5399169921875, 157.54519653320312, 0.998995840549469], "1": [362.85601806640625, 134.16290283203125, 0.9978500604629517], "2": [320.98193359375, 135.5147705078125, 0.9963207244873047], "3": [390.2137145996094, 145.26644897460938, 0.9385590553283691], "4": [288.9449768066406, 146.82943725585938, 0.8396809101104736], "5": [453.8592834472656, 260.96710205078125, 0.9877561330795288], "6": [221.3072509765625, 248.5395050048828, 0.9969586133956909], "7": [516.4568481445312, 403.8846435546875, 0.7763574719429016], "8": [107.09800720214844, 318.2820739746094, 0.9415532946586609], "9": [475.4307861328125, 446.60089111328125, 0.7082970142364502], "10": [149.0345458984375, 167.770263671875, 0.9322649836540222], "11": [417.043701171875, 480.0, 0.1550142914056778], "12": [267.2856140136719, 480.0, 0.24616745114326477], "13": [465.2237548828125, 432.49365234375, 0.0013915852177888155], "14": [286.14117431640625, 437.6994323730469, 0.002662643091753125], "15": [421.18048095703125, 471.44580078125, 0.00017246957577299327], "16": [273.66290283203125, 469.056396484375, 0.0002851686149369925]}} +{"t": 18.146977, "tracked": true, "track_id": 1, "bbox": [86.9344253540039, 62.256534576416016, 558.794189453125, 480.0], "det_conf": 0.9135386347770691, "mean_kpt_conf": 0.9226279692216353, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9225395985120352, "right_lift": -0.5174905459733891, "left_bend": 0.41507203711800356, "right_bend": 0.7612171204937466}, "keypoints": {"0": [342.298095703125, 159.82101440429688, 0.9990172386169434], "1": [362.49896240234375, 135.54832458496094, 0.9978535771369934], "2": [320.67657470703125, 137.14927673339844, 0.9962395429611206], "3": [390.1218566894531, 144.783203125, 0.937544047832489], "4": [288.61883544921875, 146.68539428710938, 0.8326078057289124], "5": [454.689697265625, 262.6611633300781, 0.9883031249046326], "6": [220.77975463867188, 248.31927490234375, 0.9970051646232605], "7": [515.606689453125, 408.2895202636719, 0.7848609685897827], "8": [105.5140380859375, 318.0279235839844, 0.9429050087928772], "9": [471.3951110839844, 442.81500244140625, 0.7345596551895142], "10": [148.55892944335938, 166.466064453125, 0.9380115270614624], "11": [417.1590270996094, 480.0, 0.15151239931583405], "12": [266.7267150878906, 480.0, 0.2393636703491211], "13": [463.71234130859375, 433.0364074707031, 0.0013805307680740952], "14": [285.53955078125, 437.1021728515625, 0.0026031022425740957], "15": [418.7120056152344, 469.8697509765625, 0.0001639734546188265], "16": [274.6529235839844, 468.58184814453125, 0.00026884835097007453]}} +{"t": 18.211804, "tracked": true, "track_id": 1, "bbox": [86.74471282958984, 61.502105712890625, 556.9837646484375, 480.0], "det_conf": 0.9208401441574097, "mean_kpt_conf": 0.9214544296264648, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.921644534147567, "right_lift": -0.47340182850447865, "left_bend": 0.4011546834361689, "right_bend": 0.7334780126094974}, "keypoints": {"0": [342.7415466308594, 158.52154541015625, 0.9989878535270691], "1": [362.8475341796875, 134.59487915039062, 0.9978850483894348], "2": [320.84796142578125, 136.47048950195312, 0.9960933327674866], "3": [390.50640869140625, 145.17959594726562, 0.941891610622406], "4": [289.2600402832031, 147.96505737304688, 0.8234055042266846], "5": [453.0343933105469, 262.430908203125, 0.9870954751968384], "6": [225.19442749023438, 247.73065185546875, 0.9967634677886963], "7": [512.927001953125, 404.68524169921875, 0.7788451910018921], "8": [107.80398559570312, 310.8209228515625, 0.9425598382949829], "9": [468.89324951171875, 442.4593505859375, 0.7339380979537964], "10": [144.07125854492188, 162.8403778076172, 0.9385333061218262], "11": [415.783447265625, 480.0, 0.14764034748077393], "12": [269.7157287597656, 480.0, 0.23581448197364807], "13": [460.927490234375, 428.92279052734375, 0.0014710691757500172], "14": [289.7856750488281, 432.51922607421875, 0.0028015011921525], "15": [417.5711669921875, 468.04052734375, 0.00018211116548627615], "16": [277.8997497558594, 467.19866943359375, 0.00030289977439679205]}} +{"t": 18.246998, "tracked": true, "track_id": 1, "bbox": [86.86175537109375, 61.004276275634766, 557.1921997070312, 480.0], "det_conf": 0.9210477471351624, "mean_kpt_conf": 0.9218102530999617, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9192294590309182, "right_lift": -0.47224135453978894, "left_bend": 0.4527119932921169, "right_bend": 0.7367276847792875}, "keypoints": {"0": [342.8002014160156, 158.70480346679688, 0.9990195035934448], "1": [363.0994873046875, 133.80075073242188, 0.9979196190834045], "2": [320.7497863769531, 135.65225219726562, 0.9961362481117249], "3": [391.19683837890625, 142.89869689941406, 0.940489649772644], "4": [288.7316589355469, 145.481689453125, 0.819247841835022], "5": [454.52728271484375, 262.3683166503906, 0.9870011806488037], "6": [224.56521606445312, 247.44015502929688, 0.9966762065887451], "7": [516.3228149414062, 406.643310546875, 0.7717560529708862], "8": [103.02093505859375, 312.55670166015625, 0.938984751701355], "9": [463.04473876953125, 439.546142578125, 0.750564694404602], "10": [141.73727416992188, 162.10556030273438, 0.9421170353889465], "11": [416.9832763671875, 480.0, 0.12702469527721405], "12": [270.1647644042969, 480.0, 0.2041947990655899], "13": [460.5624694824219, 426.2376708984375, 0.0013937299372628331], "14": [293.1834411621094, 428.66943359375, 0.002623304259032011], "15": [415.22381591796875, 465.68603515625, 0.00017304577340837568], "16": [280.7898254394531, 462.99237060546875, 0.00028617418138310313]}} +{"t": 18.308737, "tracked": true, "track_id": 1, "bbox": [86.73695373535156, 60.1074104309082, 557.9479370117188, 480.0], "det_conf": 0.9193044304847717, "mean_kpt_conf": 0.9243487824093212, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9188050735212221, "right_lift": -0.44827016083620347, "left_bend": 0.4552481968086687, "right_bend": 0.6973700801308662}, "keypoints": {"0": [343.78082275390625, 157.30397033691406, 0.9990680813789368], "1": [363.64892578125, 133.67544555664062, 0.997917115688324], "2": [322.40069580078125, 134.93711853027344, 0.9962524771690369], "3": [390.38323974609375, 144.88124084472656, 0.9412757158279419], "4": [290.7493591308594, 146.43960571289062, 0.8206510543823242], "5": [453.96728515625, 264.2793884277344, 0.9879608750343323], "6": [226.3610076904297, 248.09048461914062, 0.9970077872276306], "7": [515.53759765625, 407.60205078125, 0.7875555157661438], "8": [105.40310668945312, 308.7481994628906, 0.9451367855072021], "9": [464.4825134277344, 438.6480712890625, 0.7522045373916626], "10": [129.19674682617188, 156.6986083984375, 0.9428066611289978], "11": [417.09619140625, 480.0, 0.14776794612407684], "12": [271.69525146484375, 480.0, 0.23514336347579956], "13": [459.793212890625, 430.53143310546875, 0.0014813754241913557], "14": [292.4190673828125, 431.6943664550781, 0.002764103701338172], "15": [417.02471923828125, 469.7220458984375, 0.00017242171452380717], "16": [282.25445556640625, 465.13848876953125, 0.00028385603218339384]}} +{"t": 18.381344, "tracked": true, "track_id": 1, "bbox": [86.2259292602539, 59.3126335144043, 558.330322265625, 480.0], "det_conf": 0.9146985411643982, "mean_kpt_conf": 0.9201928810639814, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9070400354656974, "right_lift": -0.4306891750682172, "left_bend": 0.3860290075892137, "right_bend": 0.6720968475407159}, "keypoints": {"0": [344.6620178222656, 155.89791870117188, 0.9990875720977783], "1": [364.5180969238281, 133.06869506835938, 0.9979744553565979], "2": [323.7781066894531, 133.90420532226562, 0.9964361190795898], "3": [390.99224853515625, 145.4866943359375, 0.9423726201057434], "4": [292.56219482421875, 146.2705841064453, 0.8254847526550293], "5": [454.95245361328125, 263.3030700683594, 0.9876269698143005], "6": [227.60081481933594, 248.54736328125, 0.9970023036003113], "7": [519.5743408203125, 402.51556396484375, 0.7806209325790405], "8": [106.58738708496094, 306.297119140625, 0.9442915916442871], "9": [475.89874267578125, 446.8289794921875, 0.7160558104515076], "10": [120.84245300292969, 157.32955932617188, 0.9351685643196106], "11": [417.4629211425781, 480.0, 0.14977142214775085], "12": [271.4963073730469, 480.0, 0.23872756958007812], "13": [465.146484375, 428.7870788574219, 0.0014295984292402864], "14": [291.11126708984375, 431.15582275390625, 0.0027003632858395576], "15": [423.50323486328125, 470.025634765625, 0.00017588371702004224], "16": [278.1774597167969, 464.2673645019531, 0.00029098225058987737]}} +{"t": 18.441191, "tracked": true, "track_id": 1, "bbox": [83.9875259399414, 58.52534484863281, 557.9691772460938, 480.0], "det_conf": 0.9126366376876831, "mean_kpt_conf": 0.9206143726002086, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9079051172160691, "right_lift": -0.4429478947942265, "left_bend": 0.4145405961522826, "right_bend": 0.6697346289678806}, "keypoints": {"0": [346.40478515625, 156.087646484375, 0.9991311430931091], "1": [366.4156188964844, 132.80828857421875, 0.9978979825973511], "2": [325.21392822265625, 133.07723999023438, 0.9967124462127686], "3": [392.0412902832031, 144.55267333984375, 0.9318484663963318], "4": [292.2172546386719, 144.20816040039062, 0.8396398425102234], "5": [455.5936584472656, 263.399658203125, 0.9876871705055237], "6": [226.2833251953125, 248.7164306640625, 0.99695885181427], "7": [520.8219604492188, 404.6795654296875, 0.7760908603668213], "8": [103.75349426269531, 309.25347900390625, 0.9413467049598694], "9": [471.64862060546875, 446.18316650390625, 0.7229311466217041], "10": [115.17068481445312, 155.98268127441406, 0.9365134835243225], "11": [418.5469055175781, 480.0, 0.13652314245700836], "12": [271.558349609375, 480.0, 0.21699337661266327], "13": [462.34033203125, 427.7685546875, 0.001398749533109367], "14": [289.0160827636719, 429.4570617675781, 0.0025569640565663576], "15": [417.55230712890625, 470.5909423828125, 0.00016947359836194664], "16": [274.91766357421875, 462.1549072265625, 0.00027167913503944874]}} +{"t": 18.475422, "tracked": true, "track_id": 1, "bbox": [82.93952178955078, 58.63628387451172, 559.1334838867188, 480.0], "det_conf": 0.9078892469406128, "mean_kpt_conf": 0.9203412749550559, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.914400960264887, "right_lift": -0.4440476779042135, "left_bend": 0.4626821349277743, "right_bend": 0.6674741797656983}, "keypoints": {"0": [347.8771667480469, 155.1839599609375, 0.999138593673706], "1": [367.58746337890625, 132.17855834960938, 0.9978384375572205], "2": [326.32366943359375, 132.55181884765625, 0.996819019317627], "3": [392.78582763671875, 144.84658813476562, 0.9283442497253418], "4": [292.590087890625, 144.99612426757812, 0.8443012833595276], "5": [456.5835876464844, 265.78289794921875, 0.9877637028694153], "6": [226.04156494140625, 249.045166015625, 0.9969642758369446], "7": [520.0782470703125, 409.207275390625, 0.7716726064682007], "8": [103.0465087890625, 309.99993896484375, 0.9404078125953674], "9": [467.95196533203125, 440.0302734375, 0.7245757579803467], "10": [113.10580444335938, 157.86444091796875, 0.9359282851219177], "11": [417.33642578125, 480.0, 0.13686296343803406], "12": [269.393798828125, 480.0, 0.21764560043811798], "13": [460.71270751953125, 429.39447021484375, 0.0014107930473983288], "14": [285.26416015625, 429.1789855957031, 0.002564608119428158], "15": [417.5772705078125, 468.4343566894531, 0.00016860838513821363], "16": [272.1969909667969, 460.80987548828125, 0.0002685970102902502]}} +{"t": 18.511693, "tracked": true, "track_id": 1, "bbox": [81.80048370361328, 58.55723571777344, 559.3682250976562, 480.0], "det_conf": 0.9079436659812927, "mean_kpt_conf": 0.921982776034962, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.910955034497248, "right_lift": -0.4533571474712326, "left_bend": 0.43412186490224786, "right_bend": 0.6633693755310821}, "keypoints": {"0": [347.94244384765625, 155.0536651611328, 0.9991698265075684], "1": [367.4982604980469, 132.3932647705078, 0.9978445768356323], "2": [326.7234802246094, 132.39093017578125, 0.9969249367713928], "3": [392.2032470703125, 145.05609130859375, 0.9249001741409302], "4": [293.02349853515625, 144.43154907226562, 0.8486402034759521], "5": [455.4189147949219, 264.5590515136719, 0.9882898330688477], "6": [227.074951171875, 249.15969848632812, 0.9971011281013489], "7": [519.6741943359375, 406.4569091796875, 0.783564031124115], "8": [104.71737670898438, 311.3945007324219, 0.9439270496368408], "9": [471.0871887207031, 442.0437927246094, 0.7244760394096375], "10": [111.19416809082031, 159.84744262695312, 0.9369727373123169], "11": [418.6441650390625, 480.0, 0.15086399018764496], "12": [271.4465026855469, 480.0, 0.23677091300487518], "13": [462.87530517578125, 432.29852294921875, 0.001427894807420671], "14": [284.69158935546875, 432.77239990234375, 0.0025727946776896715], "15": [420.81695556640625, 470.31256103515625, 0.00016372535901609808], "16": [268.32672119140625, 461.42584228515625, 0.0002581348526291549]}} +{"t": 18.572686, "tracked": true, "track_id": 1, "bbox": [79.73596954345703, 58.520179748535156, 558.0877685546875, 480.0], "det_conf": 0.9024874567985535, "mean_kpt_conf": 0.9259315837513317, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9106911172120151, "right_lift": -0.438762020931531, "left_bend": 0.4056641701678439, "right_bend": 0.6571055674985021}, "keypoints": {"0": [349.2696533203125, 153.88690185546875, 0.999202311038971], "1": [368.66290283203125, 132.14321899414062, 0.9979242086410522], "2": [328.26666259765625, 131.71990966796875, 0.9970075488090515], "3": [392.8126220703125, 146.59963989257812, 0.9279488325119019], "4": [294.73565673828125, 145.28065490722656, 0.8529906868934631], "5": [455.9670715332031, 265.1623840332031, 0.9890286922454834], "6": [227.2559814453125, 248.97796630859375, 0.9972443580627441], "7": [519.7388916015625, 405.7533264160156, 0.8023431301116943], "8": [102.33163452148438, 309.97491455078125, 0.9483736753463745], "9": [473.99908447265625, 446.0491943359375, 0.7337708473205566], "10": [108.21072387695312, 160.61337280273438, 0.9394131302833557], "11": [417.7339782714844, 480.0, 0.15899944305419922], "12": [269.7778625488281, 480.0, 0.24591654539108276], "13": [463.8513488769531, 431.0406188964844, 0.001403819303959608], "14": [280.8229064941406, 431.3995056152344, 0.002499489113688469], "15": [422.53570556640625, 472.98431396484375, 0.00015938430442474782], "16": [261.6671142578125, 463.6032409667969, 0.0002488016034476459]}} +{"t": 18.636865, "tracked": true, "track_id": 1, "bbox": [80.1844253540039, 58.80147933959961, 558.98974609375, 479.897216796875], "det_conf": 0.9042288661003113, "mean_kpt_conf": 0.9234722690148787, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9069791564237917, "right_lift": -0.4562778969281713, "left_bend": 0.4209956898309165, "right_bend": 0.6628564829273964}, "keypoints": {"0": [350.6500549316406, 154.17535400390625, 0.9992092251777649], "1": [370.0297546386719, 132.19081115722656, 0.9978112578392029], "2": [329.3902282714844, 131.76087951660156, 0.9971996545791626], "3": [393.76019287109375, 145.93463134765625, 0.9166494011878967], "4": [294.6283874511719, 144.70452880859375, 0.8639650344848633], "5": [456.6199645996094, 263.7650146484375, 0.9887310862541199], "6": [226.88136291503906, 249.3755645751953, 0.9971633553504944], "7": [521.64404296875, 403.7909240722656, 0.7932689189910889], "8": [103.96429443359375, 312.4031982421875, 0.9454861283302307], "9": [471.9033508300781, 444.25677490234375, 0.7222598195075989], "10": [109.63163757324219, 162.62796020507812, 0.9364510774612427], "11": [419.12713623046875, 480.0, 0.15954463183879852], "12": [270.2322082519531, 480.0, 0.24567799270153046], "13": [465.3218688964844, 433.13787841796875, 0.001395174185745418], "14": [280.92633056640625, 433.93133544921875, 0.0024611027911305428], "15": [424.11541748046875, 473.390380859375, 0.0001562293036840856], "16": [261.83245849609375, 463.05010986328125, 0.0002402524696663022]}} +{"t": 18.673573, "tracked": true, "track_id": 1, "bbox": [81.94224548339844, 59.08866882324219, 559.6629028320312, 479.8314514160156], "det_conf": 0.9091938734054565, "mean_kpt_conf": 0.9263574426824396, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9099484011424402, "right_lift": -0.47515284244137324, "left_bend": 0.4105756849402195, "right_bend": 0.6701253910636841}, "keypoints": {"0": [350.35723876953125, 154.41334533691406, 0.9992111921310425], "1": [370.193115234375, 132.21005249023438, 0.9978424310684204], "2": [329.02337646484375, 131.7285919189453, 0.997144877910614], "3": [394.44305419921875, 145.68331909179688, 0.9179803133010864], "4": [294.40423583984375, 144.19236755371094, 0.8601177334785461], "5": [456.03961181640625, 263.0199890136719, 0.9889366626739502], "6": [227.15228271484375, 248.67327880859375, 0.9971812963485718], "7": [520.4290771484375, 404.29815673828125, 0.80424964427948], "8": [105.19720458984375, 314.52972412109375, 0.9475442171096802], "9": [475.116455078125, 443.13323974609375, 0.7396633625030518], "10": [111.09761047363281, 164.57241821289062, 0.9400601387023926], "11": [418.61376953125, 480.0, 0.16235925257205963], "12": [270.25830078125, 480.0, 0.2477995604276657], "13": [465.2113037109375, 432.06207275390625, 0.001425399212166667], "14": [281.1224365234375, 433.1907043457031, 0.0024960320442914963], "15": [424.4146728515625, 472.9093322753906, 0.0001564900594530627], "16": [262.1631164550781, 463.21710205078125, 0.00023972641793079674]}} +{"t": 18.707932, "tracked": true, "track_id": 1, "bbox": [83.51998901367188, 59.3074836730957, 556.8626708984375, 479.773681640625], "det_conf": 0.913783073425293, "mean_kpt_conf": 0.924834278496829, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9114131088499332, "right_lift": -0.4601656307603449, "left_bend": 0.42971096491459115, "right_bend": 0.6677181651207802}, "keypoints": {"0": [350.3443603515625, 154.27923583984375, 0.9991909861564636], "1": [369.5478515625, 131.9219970703125, 0.99779212474823], "2": [329.05120849609375, 131.86016845703125, 0.9970638155937195], "3": [393.57733154296875, 144.85879516601562, 0.9185343980789185], "4": [294.78411865234375, 144.35134887695312, 0.856745719909668], "5": [456.9772644042969, 263.22821044921875, 0.988653838634491], "6": [228.3601531982422, 248.44252014160156, 0.9971585273742676], "7": [520.6295166015625, 404.2113037109375, 0.7952919006347656], "8": [105.9698486328125, 311.8776550292969, 0.9471909403800964], "9": [470.33465576171875, 442.0433349609375, 0.7353405952453613], "10": [113.16590881347656, 164.29339599609375, 0.940214216709137], "11": [419.89739990234375, 480.0, 0.16015420854091644], "12": [271.9492492675781, 480.0, 0.24869170784950256], "13": [463.1582336425781, 432.7762451171875, 0.0014332031132653356], "14": [281.4218444824219, 433.17144775390625, 0.0025520508643239737], "15": [420.2498779296875, 472.1121826171875, 0.00015861519204918295], "16": [261.9598693847656, 462.945068359375, 0.0002462422417011112]}} +{"t": 18.772569, "tracked": true, "track_id": 1, "bbox": [86.83679962158203, 59.62895202636719, 557.7299194335938, 479.74163818359375], "det_conf": 0.9180831909179688, "mean_kpt_conf": 0.9257771643725309, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9072401821451384, "right_lift": -0.4655110073625069, "left_bend": 0.43392891168675884, "right_bend": 0.6830035262397385}, "keypoints": {"0": [349.7080383300781, 154.42752075195312, 0.9991857409477234], "1": [368.84234619140625, 132.58200073242188, 0.9977725148200989], "2": [328.34246826171875, 132.3146514892578, 0.9970408082008362], "3": [392.68115234375, 146.39991760253906, 0.9169116020202637], "4": [294.01324462890625, 145.4910888671875, 0.8554971218109131], "5": [454.9591369628906, 263.2430114746094, 0.9884236454963684], "6": [229.73956298828125, 248.03829956054688, 0.9970543384552002], "7": [519.8842163085938, 403.28302001953125, 0.799206018447876], "8": [108.67959594726562, 311.71295166015625, 0.948239266872406], "9": [469.2284240722656, 441.13165283203125, 0.7420457005500793], "10": [121.9581298828125, 165.73123168945312, 0.9421720504760742], "11": [421.0504150390625, 480.0, 0.16269800066947937], "12": [275.2630310058594, 480.0, 0.25233927369117737], "13": [464.63427734375, 433.3309326171875, 0.0014365871902555227], "14": [286.4557800292969, 432.947265625, 0.002577552804723382], "15": [425.36199951171875, 473.3890380859375, 0.00015750442980788648], "16": [267.2383728027344, 463.01861572265625, 0.0002464247227180749]}} +{"t": 18.841375, "tracked": true, "track_id": 1, "bbox": [88.64957427978516, 60.02457809448242, 556.42578125, 479.87091064453125], "det_conf": 0.9128698110580444, "mean_kpt_conf": 0.927222728729248, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9081368840413179, "right_lift": -0.505411945048131, "left_bend": 0.4173017956484077, "right_bend": 0.7131588355680615}, "keypoints": {"0": [348.289794921875, 154.9622802734375, 0.9991488456726074], "1": [367.9394226074219, 132.83566284179688, 0.9976372718811035], "2": [327.19195556640625, 132.18316650390625, 0.9969655871391296], "3": [391.8216552734375, 145.85250854492188, 0.9110721945762634], "4": [292.75262451171875, 143.75765991210938, 0.8622822761535645], "5": [452.3768615722656, 262.0857849121094, 0.9884397983551025], "6": [226.1698760986328, 248.1674041748047, 0.9970220923423767], "7": [517.1884155273438, 402.6673583984375, 0.8028386831283569], "8": [108.64398193359375, 317.005615234375, 0.9464970231056213], "9": [471.19195556640625, 440.76837158203125, 0.753986120223999], "10": [129.74996948242188, 167.01654052734375, 0.9435601234436035], "11": [418.82220458984375, 480.0, 0.15805521607398987], "12": [272.8438415527344, 480.0, 0.24245835840702057], "13": [464.7276306152344, 431.4383544921875, 0.0014838962815701962], "14": [289.6531066894531, 433.14306640625, 0.0026291045360267162], "15": [424.9878234863281, 474.34149169921875, 0.00016119728388730437], "16": [275.32958984375, 464.35400390625, 0.000249031581915915]}} +{"t": 18.901322, "tracked": true, "track_id": 1, "bbox": [89.90289306640625, 60.704978942871094, 557.736572265625, 479.9111022949219], "det_conf": 0.9168931841850281, "mean_kpt_conf": 0.9219810204072432, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9194378518156443, "right_lift": -0.526601455147966, "left_bend": 0.4571918135524346, "right_bend": 0.7429598339697849}, "keypoints": {"0": [347.28106689453125, 155.92422485351562, 0.9991031885147095], "1": [367.1250305175781, 133.1517333984375, 0.997734785079956], "2": [326.19207763671875, 133.00912475585938, 0.9967541098594666], "3": [392.4517822265625, 144.95074462890625, 0.9205682277679443], "4": [292.64727783203125, 143.61785888671875, 0.8474607467651367], "5": [453.73565673828125, 262.2528381347656, 0.9874144196510315], "6": [227.5857696533203, 247.17649841308594, 0.9969011545181274], "7": [515.3997192382812, 406.43182373046875, 0.7784056067466736], "8": [111.18606567382812, 319.28021240234375, 0.9440516829490662], "9": [464.9667053222656, 436.56927490234375, 0.733633816242218], "10": [143.03746032714844, 168.87176513671875, 0.9397634863853455], "11": [419.0101013183594, 480.0, 0.15309074521064758], "12": [272.0736999511719, 480.0, 0.24386854469776154], "13": [460.5434265136719, 435.7008056640625, 0.0014542124699801207], "14": [280.4250183105469, 436.12640380859375, 0.0026773239951580763], "15": [420.93115234375, 474.0756530761719, 0.00016344708274118602], "16": [261.1470947265625, 465.100830078125, 0.0002602318418212235]}} +{"t": 18.938004, "tracked": true, "track_id": 1, "bbox": [90.4911117553711, 61.60013961791992, 557.6364135742188, 479.90264892578125], "det_conf": 0.9184151291847229, "mean_kpt_conf": 0.9252725135196339, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9140683029119505, "right_lift": -0.5294235709588916, "left_bend": 0.4072397371526467, "right_bend": 0.7465779458349989}, "keypoints": {"0": [347.5153503417969, 155.33175659179688, 0.9990942478179932], "1": [367.46942138671875, 133.10675048828125, 0.9977008700370789], "2": [326.1755065917969, 132.92919921875, 0.9967631101608276], "3": [392.6395568847656, 145.88568115234375, 0.9186692833900452], "4": [292.39007568359375, 144.65896606445312, 0.8540378212928772], "5": [452.14886474609375, 260.6014709472656, 0.9879250526428223], "6": [227.65098571777344, 247.31040954589844, 0.9969385862350464], "7": [514.660888671875, 401.4936218261719, 0.7969193458557129], "8": [112.31112670898438, 319.2890625, 0.9470523595809937], "9": [471.332763671875, 438.6606140136719, 0.7417988181114197], "10": [145.01295471191406, 170.76910400390625, 0.941098153591156], "11": [418.0472106933594, 480.0, 0.17010498046875], "12": [272.176025390625, 480.0, 0.2634865343570709], "13": [461.9344177246094, 435.57666015625, 0.0014983587898314], "14": [282.6376953125, 437.8292236328125, 0.00272561376914382], "15": [422.705078125, 474.3631591796875, 0.00016569462604820728], "16": [262.5546875, 466.27740478515625, 0.0002607710484880954]}} +{"t": 19.001411, "tracked": true, "track_id": 1, "bbox": [91.39667510986328, 62.752967834472656, 555.4032592773438, 479.9317626953125], "det_conf": 0.9133257865905762, "mean_kpt_conf": 0.9229856566949324, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.910479935958255, "right_lift": -0.5380606538010266, "left_bend": 0.38636463293382667, "right_bend": 0.7548442680164958}, "keypoints": {"0": [346.7633056640625, 154.8894805908203, 0.9990597367286682], "1": [366.4198913574219, 132.96534729003906, 0.9976589679718018], "2": [325.7427062988281, 133.1759033203125, 0.9967108964920044], "3": [391.563720703125, 145.87881469726562, 0.9222172498703003], "4": [292.7189636230469, 145.42343139648438, 0.8562054634094238], "5": [454.076416015625, 259.1113586425781, 0.9881631731987], "6": [226.19918823242188, 247.39276123046875, 0.997056245803833], "7": [518.0291137695312, 399.9097900390625, 0.792203962802887], "8": [114.15663146972656, 318.91400146484375, 0.9473583698272705], "9": [474.455322265625, 443.3053894042969, 0.7195491194725037], "10": [149.43856811523438, 169.8961944580078, 0.936659038066864], "11": [420.0372009277344, 480.0, 0.17738822102546692], "12": [272.1583557128906, 480.0, 0.27654963731765747], "13": [466.58819580078125, 436.0057373046875, 0.0014813683228567243], "14": [285.2715759277344, 439.83807373046875, 0.0027808959130197763], "15": [424.08551025390625, 476.71527099609375, 0.00016626264550723135], "16": [266.7294006347656, 469.5284423828125, 0.0002678280870895833]}} +{"t": 19.066188, "tracked": true, "track_id": 1, "bbox": [90.59323120117188, 61.59505081176758, 556.427001953125, 480.0], "det_conf": 0.9118771553039551, "mean_kpt_conf": 0.9250669587742198, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9083439765858978, "right_lift": -0.5277435808295416, "left_bend": 0.40441963757305704, "right_bend": 0.7522286901788193}, "keypoints": {"0": [346.59002685546875, 155.33828735351562, 0.9990876913070679], "1": [366.1993408203125, 133.43533325195312, 0.9976202845573425], "2": [325.4795227050781, 133.157958984375, 0.9967771172523499], "3": [390.7523193359375, 146.47406005859375, 0.9149261116981506], "4": [291.6849670410156, 144.97918701171875, 0.857690691947937], "5": [451.9712829589844, 260.4237365722656, 0.988148033618927], "6": [225.97694396972656, 246.89393615722656, 0.996921181678772], "7": [516.5638427734375, 400.7128601074219, 0.7987650036811829], "8": [113.163818359375, 316.9859313964844, 0.9471973776817322], "9": [472.1812438964844, 440.57281494140625, 0.7383383512496948], "10": [149.25106811523438, 167.22500610351562, 0.9402647018432617], "11": [418.9871520996094, 480.0, 0.1680716872215271], "12": [272.3037414550781, 480.0, 0.2600060999393463], "13": [464.5143737792969, 433.39178466796875, 0.001473844749853015], "14": [285.16400146484375, 435.8244323730469, 0.002699177013710141], "15": [424.3368225097656, 475.039306640625, 0.00016463678912259638], "16": [267.31011962890625, 466.3328857421875, 0.00026015317416749895]}} +{"t": 19.102554, "tracked": true, "track_id": 1, "bbox": [89.59130096435547, 61.217430114746094, 558.9697265625, 480.0], "det_conf": 0.9145979285240173, "mean_kpt_conf": 0.9231537959792397, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9122854368273419, "right_lift": -0.5195579273240938, "left_bend": 0.42694434318397284, "right_bend": 0.749511047249237}, "keypoints": {"0": [346.7906494140625, 155.1256103515625, 0.9991034865379333], "1": [366.15838623046875, 132.90415954589844, 0.9976363182067871], "2": [325.50054931640625, 132.93756103515625, 0.9968788623809814], "3": [390.71514892578125, 145.64895629882812, 0.9152377843856812], "4": [291.6070556640625, 144.7748260498047, 0.8599118590354919], "5": [453.52880859375, 261.8101806640625, 0.9882142543792725], "6": [225.43374633789062, 245.99630737304688, 0.9969183206558228], "7": [517.9281616210938, 405.260009765625, 0.7885440587997437], "8": [110.70425415039062, 315.76007080078125, 0.945286214351654], "9": [470.963134765625, 441.0726318359375, 0.7285369038581848], "10": [146.38331604003906, 168.38613891601562, 0.9384236931800842], "11": [419.24896240234375, 480.0, 0.1603226661682129], "12": [271.38775634765625, 480.0, 0.25052788853645325], "13": [465.67919921875, 433.6550598144531, 0.001439946936443448], "14": [285.0292053222656, 434.4661560058594, 0.0026623872108757496], "15": [425.1354675292969, 473.92218017578125, 0.00016253418289124966], "16": [267.3116455078125, 466.0744934082031, 0.00025859056040644646]}} +{"t": 19.136161, "tracked": true, "track_id": 1, "bbox": [89.07122802734375, 61.01655197143555, 557.8901977539062, 480.0], "det_conf": 0.9170498251914978, "mean_kpt_conf": 0.9258348562500693, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9088649859142647, "right_lift": -0.5006394645213387, "left_bend": 0.40394980173235867, "right_bend": 0.7393250840143547}, "keypoints": {"0": [346.7718505859375, 155.3688507080078, 0.9991258978843689], "1": [366.6591491699219, 133.35821533203125, 0.99782395362854], "2": [325.685546875, 133.03549194335938, 0.9967898726463318], "3": [391.78643798828125, 146.69166564941406, 0.9249506592750549], "4": [292.3739013671875, 144.9669189453125, 0.8495864868164062], "5": [453.0760803222656, 261.86749267578125, 0.98813396692276], "6": [227.00802612304688, 246.03330993652344, 0.9970169067382812], "7": [517.9823608398438, 403.3021545410156, 0.7987055778503418], "8": [109.34622192382812, 314.081298828125, 0.9492207169532776], "9": [474.71575927734375, 442.1777038574219, 0.7405822277069092], "10": [143.6129150390625, 166.08261108398438, 0.9422471523284912], "11": [419.4991149902344, 480.0, 0.16363485157489777], "12": [272.8963928222656, 480.0, 0.2571943402290344], "13": [464.05462646484375, 434.12530517578125, 0.001414423226378858], "14": [284.489013671875, 434.89404296875, 0.0026229198556393385], "15": [426.1595764160156, 476.0065002441406, 0.00015894189709797502], "16": [266.1937255859375, 466.9009704589844, 0.0002551827346906066]}} +{"t": 19.197806, "tracked": true, "track_id": 1, "bbox": [87.77838897705078, 60.301212310791016, 558.3192138671875, 480.0], "det_conf": 0.9197713136672974, "mean_kpt_conf": 0.9277592680670999, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9100344650923088, "right_lift": -0.4889127339405643, "left_bend": 0.42320128613513047, "right_bend": 0.7111467172012953}, "keypoints": {"0": [347.24530029296875, 155.73123168945312, 0.9991428852081299], "1": [367.2294006347656, 133.0531005859375, 0.9978212118148804], "2": [325.9084167480469, 132.9327392578125, 0.9967772364616394], "3": [392.3895263671875, 145.59503173828125, 0.9252936840057373], "4": [292.1976013183594, 144.5089111328125, 0.8456968069076538], "5": [454.23944091796875, 262.2289733886719, 0.9884849190711975], "6": [227.2456817626953, 247.53311157226562, 0.9970340728759766], "7": [518.9442749023438, 404.2772216796875, 0.8040456771850586], "8": [108.40403747558594, 314.1398010253906, 0.9479487538337708], "9": [468.62109375, 444.03955078125, 0.7580644488334656], "10": [131.33079528808594, 164.9617462158203, 0.9450422525405884], "11": [419.78009033203125, 480.0, 0.15324857831001282], "12": [273.3878173828125, 480.0, 0.23795995116233826], "13": [464.25970458984375, 429.77264404296875, 0.0014324479270726442], "14": [289.06427001953125, 430.636962890625, 0.0025846948847174644], "15": [422.9107666015625, 472.3877868652344, 0.00016053479339461774], "16": [272.904541015625, 462.70037841796875, 0.0002539015840739012]}} +{"t": 19.234827, "tracked": true, "track_id": 1, "bbox": [87.24717712402344, 60.22825622558594, 558.2182006835938, 480.0], "det_conf": 0.9141159653663635, "mean_kpt_conf": 0.9264789277857001, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9086962574169092, "right_lift": -0.47254692591734293, "left_bend": 0.4327186980311941, "right_bend": 0.6966014660797808}, "keypoints": {"0": [347.3881530761719, 155.79653930664062, 0.9991357922554016], "1": [367.5150146484375, 133.1486358642578, 0.9977803826332092], "2": [326.3438720703125, 132.8290252685547, 0.9967893362045288], "3": [392.70989990234375, 145.43641662597656, 0.9245718717575073], "4": [292.65093994140625, 143.84820556640625, 0.8469564914703369], "5": [454.3841552734375, 262.62847900390625, 0.9883456230163574], "6": [225.85589599609375, 247.89944458007812, 0.9970859885215759], "7": [518.4371337890625, 402.05499267578125, 0.7986592650413513], "8": [106.86561584472656, 311.7008056640625, 0.9472233653068542], "9": [467.9530334472656, 439.80108642578125, 0.7515212297439575], "10": [125.70472717285156, 162.33306884765625, 0.9431988596916199], "11": [418.164794921875, 480.0, 0.15928393602371216], "12": [270.8130187988281, 480.0, 0.24746838212013245], "13": [463.954345703125, 432.4410400390625, 0.0014464270789176226], "14": [288.4652404785156, 433.4901123046875, 0.0026161985006183386], "15": [422.43463134765625, 473.04241943359375, 0.0001606305013410747], "16": [275.1903076171875, 463.3408508300781, 0.00025414596893824637]}} +{"t": 19.299282, "tracked": true, "track_id": 1, "bbox": [84.02070617675781, 58.735939025878906, 555.550537109375, 480.0], "det_conf": 0.912600576877594, "mean_kpt_conf": 0.9217471046881243, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.905869317550474, "right_lift": -0.4276477462380843, "left_bend": 0.3958165176834702, "right_bend": 0.6685944462265637}, "keypoints": {"0": [348.148681640625, 155.06005859375, 0.9991403818130493], "1": [367.4833068847656, 132.95455932617188, 0.9977138042449951], "2": [327.0317687988281, 132.6541290283203, 0.996971845626831], "3": [391.3311767578125, 145.9874267578125, 0.9188405275344849], "4": [292.9597473144531, 144.68417358398438, 0.8592698574066162], "5": [454.6185607910156, 263.290771484375, 0.9881283640861511], "6": [225.2273712158203, 246.9196319580078, 0.9969792366027832], "7": [519.756103515625, 402.6015625, 0.7857513427734375], "8": [102.87686157226562, 304.8024597167969, 0.943988025188446], "9": [470.9069519042969, 449.4665222167969, 0.7164101004600525], "10": [115.88710021972656, 156.94566345214844, 0.9360246658325195], "11": [418.0294494628906, 480.0, 0.15130393207073212], "12": [270.61688232421875, 480.0, 0.23600108921527863], "13": [464.0493469238281, 429.923828125, 0.0014168242923915386], "14": [288.6298828125, 430.6756591796875, 0.002563292160630226], "15": [418.97576904296875, 472.7298278808594, 0.00016942947695497423], "16": [273.483154296875, 463.0205993652344, 0.00026665805489756167]}} +{"t": 19.365406, "tracked": true, "track_id": 1, "bbox": [75.08253479003906, 58.25528335571289, 560.4664306640625, 480.0], "det_conf": 0.8940739631652832, "mean_kpt_conf": 0.9222682226787914, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9011510305187258, "right_lift": -0.41207542028586314, "left_bend": 0.41514212466017364, "right_bend": 0.6569993619881549}, "keypoints": {"0": [349.13372802734375, 154.80804443359375, 0.9991785883903503], "1": [368.7347412109375, 132.701171875, 0.9979190230369568], "2": [328.13262939453125, 132.46807861328125, 0.9969814419746399], "3": [393.31097412109375, 146.39373779296875, 0.9281376004219055], "4": [294.4817810058594, 145.1767578125, 0.8501812815666199], "5": [456.93157958984375, 264.84930419921875, 0.9882029891014099], "6": [226.42120361328125, 247.9467010498047, 0.9970815777778625], "7": [523.7440185546875, 403.7359619140625, 0.7865966558456421], "8": [100.82896423339844, 304.74688720703125, 0.9451693892478943], "9": [478.0698547363281, 443.39044189453125, 0.7195701003074646], "10": [111.21185302734375, 153.40313720703125, 0.9359318017959595], "11": [418.62347412109375, 480.0, 0.15186941623687744], "12": [269.8037109375, 480.0, 0.2378154695034027], "13": [465.7413330078125, 430.5687255859375, 0.0013863469939678907], "14": [283.8396301269531, 430.8321533203125, 0.0025092759169638157], "15": [426.06378173828125, 471.38446044921875, 0.00016049269470386207], "16": [267.62628173828125, 462.0914306640625, 0.0002542639849707484]}} +{"t": 19.431225, "tracked": true, "track_id": 1, "bbox": [55.54910659790039, 58.675933837890625, 561.4794921875, 480.0], "det_conf": 0.8874724507331848, "mean_kpt_conf": 0.9188880595293912, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.906168763877118, "right_lift": -0.3942798927291902, "left_bend": 0.463330547092973, "right_bend": 0.6213530469047773}, "keypoints": {"0": [349.5428161621094, 154.28500366210938, 0.999170184135437], "1": [369.06805419921875, 132.93405151367188, 0.9978935122489929], "2": [328.8049621582031, 132.17300415039062, 0.9969762563705444], "3": [393.1077880859375, 147.54293823242188, 0.9309636354446411], "4": [295.1235046386719, 145.5352783203125, 0.8470922708511353], "5": [456.4853820800781, 266.2586975097656, 0.9877756834030151], "6": [227.0931854248047, 248.65017700195312, 0.9971426129341125], "7": [520.546875, 403.5211486816406, 0.7710362672805786], "8": [98.50636291503906, 303.81854248046875, 0.9426293969154358], "9": [468.85174560546875, 435.3482666015625, 0.7052201628684998], "10": [94.9766845703125, 157.03561401367188, 0.9318686723709106], "11": [419.14715576171875, 480.0, 0.15641655027866364], "12": [271.70257568359375, 480.0, 0.24787506461143494], "13": [461.21282958984375, 434.1918640136719, 0.0014525168808177114], "14": [284.591552734375, 431.93756103515625, 0.0026140210684388876], "15": [421.3621826171875, 471.14825439453125, 0.00016889993275981396], "16": [271.5936584472656, 459.2857666015625, 0.0002677295415196568]}} +{"t": 19.497568, "tracked": true, "track_id": 1, "bbox": [43.04941177368164, 59.97987365722656, 559.9448852539062, 480.0], "det_conf": 0.8874614834785461, "mean_kpt_conf": 0.924766789783131, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9059796725712371, "right_lift": -0.39996816180465444, "left_bend": 0.3905020890320885, "right_bend": 0.6018343303084386}, "keypoints": {"0": [349.8349609375, 154.5327911376953, 0.999225378036499], "1": [369.41168212890625, 133.10513305664062, 0.9980006814002991], "2": [329.0683288574219, 132.43663024902344, 0.9970623850822449], "3": [393.5476989746094, 147.35415649414062, 0.9321746230125427], "4": [295.8832702636719, 145.630859375, 0.8476358652114868], "5": [455.3221435546875, 264.4837646484375, 0.9889785647392273], "6": [229.824951171875, 248.0770263671875, 0.9973498582839966], "7": [519.3170166015625, 401.4437255859375, 0.8024640679359436], "8": [99.94757080078125, 304.7547912597656, 0.9498429298400879], "9": [477.17108154296875, 443.2294006347656, 0.722375214099884], "10": [86.89512634277344, 162.59738159179688, 0.937325119972229], "11": [418.33782958984375, 480.0, 0.1775192767381668], "12": [272.9139404296875, 480.0, 0.27298039197921753], "13": [463.1007080078125, 434.837158203125, 0.0014720928156748414], "14": [283.95684814453125, 433.81365966796875, 0.002604639157652855], "15": [423.63720703125, 471.9234924316406, 0.0001630969491088763], "16": [265.4526672363281, 461.14361572265625, 0.0002546473406255245]}} +{"t": 19.562791, "tracked": true, "track_id": 1, "bbox": [32.26167297363281, 61.257694244384766, 563.4169921875, 480.0], "det_conf": 0.8871755003929138, "mean_kpt_conf": 0.9255745139988986, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9051600973093265, "right_lift": -0.434196192970658, "left_bend": 0.5526061495719514, "right_bend": 0.5927734338275836}, "keypoints": {"0": [349.7764892578125, 155.05722045898438, 0.9993535876274109], "1": [369.8250427246094, 133.94430541992188, 0.998271107673645], "2": [328.8332824707031, 132.6252899169922, 0.9973500967025757], "3": [395.241943359375, 147.8941650390625, 0.9344061613082886], "4": [294.5885314941406, 145.3935089111328, 0.8413439393043518], "5": [457.6618347167969, 266.3610534667969, 0.98967045545578], "6": [230.32830810546875, 250.4657745361328, 0.9975192546844482], "7": [519.3514404296875, 397.7249755859375, 0.795092761516571], "8": [101.06260681152344, 312.7720947265625, 0.9451532959938049], "9": [466.45281982421875, 412.5802001953125, 0.7445102334022522], "10": [78.52511596679688, 171.03543090820312, 0.9386487603187561], "11": [415.3217468261719, 480.0, 0.17824070155620575], "12": [266.9457702636719, 480.0, 0.2752937078475952], "13": [443.4933776855469, 442.6346740722656, 0.0010362520115450025], "14": [253.4140625, 436.61773681640625, 0.0017423533136025071], "15": [409.2035827636719, 469.1878967285156, 0.00010143900726689026], "16": [232.33474731445312, 454.6102294921875, 0.00015082016761880368]}} +{"t": 19.62757, "tracked": true, "track_id": 1, "bbox": [25.20245361328125, 62.16128921508789, 564.787841796875, 479.9294128417969], "det_conf": 0.88665372133255, "mean_kpt_conf": 0.9266616973009977, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9095095607088668, "right_lift": -0.43550012095157165, "left_bend": 0.5457631882155495, "right_bend": 0.5786352636379294}, "keypoints": {"0": [349.0373840332031, 155.31072998046875, 0.9993607401847839], "1": [369.1462707519531, 134.13299560546875, 0.9983215928077698], "2": [328.1783447265625, 132.9970703125, 0.9973025321960449], "3": [394.96612548828125, 148.03201293945312, 0.9387887716293335], "4": [294.4898376464844, 145.94851684570312, 0.8347920775413513], "5": [457.4466857910156, 266.9875793457031, 0.9898903369903564], "6": [230.84454345703125, 250.90814208984375, 0.997597873210907], "7": [517.8270263671875, 399.09906005859375, 0.8011835217475891], "8": [101.59506225585938, 313.43743896484375, 0.9471592903137207], "9": [466.7645263671875, 414.054931640625, 0.7491704225540161], "10": [72.86473083496094, 174.24856567382812, 0.9397115111351013], "11": [413.901123046875, 480.0, 0.1848943829536438], "12": [265.74847412109375, 480.0, 0.2852364480495453], "13": [441.9819641113281, 443.83880615234375, 0.0010458002798259258], "14": [249.74757385253906, 437.61285400390625, 0.0017579876584932208], "15": [408.7121887207031, 469.5049133300781, 0.00010032407590188086], "16": [228.42373657226562, 455.81256103515625, 0.00014940183609724045]}} +{"t": 19.662769, "tracked": true, "track_id": 1, "bbox": [24.237411499023438, 61.780128479003906, 566.490478515625, 479.8684387207031], "det_conf": 0.8868149518966675, "mean_kpt_conf": 0.9253881031816656, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9062059490562918, "right_lift": -0.43574180052637757, "left_bend": 0.5576935359777409, "right_bend": 0.579526361498435}, "keypoints": {"0": [348.7695007324219, 155.65841674804688, 0.9993638396263123], "1": [369.14031982421875, 133.89364624023438, 0.9983571171760559], "2": [328.0623779296875, 132.7490692138672, 0.9972822666168213], "3": [395.5072021484375, 146.7799530029297, 0.9404917359352112], "4": [294.7084655761719, 144.4058074951172, 0.8306624889373779], "5": [458.1490478515625, 266.931884765625, 0.9896842241287231], "6": [231.1834259033203, 250.7908172607422, 0.99755859375], "7": [519.5714111328125, 398.56976318359375, 0.7931432127952576], "8": [101.41804504394531, 313.6127014160156, 0.9447730779647827], "9": [468.91888427734375, 411.7911071777344, 0.7487397193908691], "10": [73.14016723632812, 174.84268188476562, 0.9392128586769104], "11": [414.746826171875, 480.0, 0.17754952609539032], "12": [266.7008972167969, 480.0, 0.27564430236816406], "13": [442.36431884765625, 444.97210693359375, 0.0010314426617696881], "14": [252.63760375976562, 438.59368896484375, 0.001740158535540104], "15": [408.56964111328125, 470.2696838378906, 9.925357153406367e-05], "16": [232.57179260253906, 456.430419921875, 0.00014844813267700374]}} +{"t": 19.699073, "tracked": true, "track_id": 1, "bbox": [24.406999588012695, 61.65853500366211, 566.4299926757812, 479.8368835449219], "det_conf": 0.8895407915115356, "mean_kpt_conf": 0.9285753802819685, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9071810175144972, "right_lift": -0.45756211360243615, "left_bend": 0.5576929460046551, "right_bend": 0.5864082519634899}, "keypoints": {"0": [348.6236572265625, 155.94558715820312, 0.9993911981582642], "1": [368.8862609863281, 133.93118286132812, 0.9983516931533813], "2": [327.9508361816406, 132.7250213623047, 0.9973804354667664], "3": [394.823486328125, 146.1278076171875, 0.9360312223434448], "4": [294.117431640625, 143.64573669433594, 0.8375744819641113], "5": [457.5599365234375, 266.0123596191406, 0.9903440475463867], "6": [229.53546142578125, 251.27529907226562, 0.9976881742477417], "7": [519.2081298828125, 398.935302734375, 0.8065877556800842], "8": [100.259033203125, 317.7996826171875, 0.9473473429679871], "9": [469.70904541015625, 411.7335205078125, 0.7613506317138672], "10": [70.93588256835938, 175.90951538085938, 0.9422821998596191], "11": [414.7907409667969, 480.0, 0.18142865598201752], "12": [265.5652160644531, 480.0, 0.2781364321708679], "13": [442.65167236328125, 443.93865966796875, 0.001030330895446241], "14": [248.2763671875, 438.6087646484375, 0.00170020607765764], "15": [409.2523498535156, 469.6068420410156, 9.505428897682577e-05], "16": [227.07003784179688, 455.78350830078125, 0.000139224182930775]}} +{"t": 19.758257, "tracked": true, "track_id": 1, "bbox": [23.84486198425293, 61.707984924316406, 566.2205200195312, 479.8727111816406], "det_conf": 0.8888567686080933, "mean_kpt_conf": 0.9259355176578868, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9026389134632907, "right_lift": -0.4503137505133419, "left_bend": 0.5593027317551743, "right_bend": 0.5817187723708903}, "keypoints": {"0": [348.6146545410156, 155.30587768554688, 0.9993706345558167], "1": [368.8460693359375, 133.49526977539062, 0.9983525276184082], "2": [327.75604248046875, 132.5662384033203, 0.9973334074020386], "3": [395.07476806640625, 146.27098083496094, 0.9398388862609863], "4": [294.0048828125, 144.52761840820312, 0.8333442211151123], "5": [459.8240966796875, 265.18963623046875, 0.9900457262992859], "6": [230.06121826171875, 250.87770080566406, 0.997631311416626], "7": [522.7377319335938, 397.13311767578125, 0.7974095344543457], "8": [102.16815185546875, 315.3797912597656, 0.9460607171058655], "9": [468.89215087890625, 411.3782043457031, 0.7471770644187927], "10": [72.50469970703125, 176.47329711914062, 0.9387266635894775], "11": [417.138427734375, 480.0, 0.1809438169002533], "12": [266.7715148925781, 480.0, 0.2800978720188141], "13": [444.46978759765625, 442.94866943359375, 0.0010202242992818356], "14": [248.47601318359375, 437.0286560058594, 0.0017154995584860444], "15": [409.5160827636719, 469.3164978027344, 9.714542102301493e-05], "16": [226.81979370117188, 455.0468444824219, 0.0001447399117751047]}} +{"t": 19.793169, "tracked": true, "track_id": 1, "bbox": [25.443401336669922, 61.3445930480957, 565.5177612304688, 479.8915100097656], "det_conf": 0.8867802619934082, "mean_kpt_conf": 0.9260988506403837, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9025521881214765, "right_lift": -0.44400647869741755, "left_bend": 0.547693882223259, "right_bend": 0.5817801073532087}, "keypoints": {"0": [347.97369384765625, 155.56854248046875, 0.9993749260902405], "1": [368.19378662109375, 134.0953826904297, 0.9983521699905396], "2": [327.3395690917969, 132.72434997558594, 0.9973606467247009], "3": [394.0830993652344, 147.1554412841797, 0.9385186433792114], "4": [293.707763671875, 144.46597290039062, 0.8353455066680908], "5": [456.6588439941406, 266.09466552734375, 0.9898257851600647], "6": [230.10426330566406, 251.03208923339844, 0.9975953698158264], "7": [519.0556640625, 396.8864440917969, 0.7968941330909729], "8": [100.67692565917969, 315.1672058105469, 0.9457618594169617], "9": [466.6929016113281, 412.81494140625, 0.7485053539276123], "10": [72.17657470703125, 176.8070831298828, 0.9395529627799988], "11": [414.041748046875, 480.0, 0.1801382452249527], "12": [265.94268798828125, 480.0, 0.2789827883243561], "13": [441.4480895996094, 444.2768859863281, 0.001034095766954124], "14": [249.72756958007812, 437.962646484375, 0.0017337952740490437], "15": [407.8736877441406, 470.0892333984375, 9.947784565156326e-05], "16": [227.83863830566406, 454.71868896484375, 0.00014772066788282245]}} +{"t": 19.857266, "tracked": true, "track_id": 1, "bbox": [28.07439613342285, 60.656593322753906, 567.5873413085938, 479.8734436035156], "det_conf": 0.8884042501449585, "mean_kpt_conf": 0.9257693832570856, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9003413491643685, "right_lift": -0.4358123841527205, "left_bend": 0.6042466979672189, "right_bend": 0.5954461125566881}, "keypoints": {"0": [347.3084716796875, 155.84646606445312, 0.9993675351142883], "1": [367.41943359375, 133.5721893310547, 0.99842369556427], "2": [326.61175537109375, 132.910888671875, 0.9972152709960938], "3": [394.201416015625, 145.63796997070312, 0.9447252154350281], "4": [293.6534729003906, 144.2247772216797, 0.8205556869506836], "5": [459.1468505859375, 266.1592102050781, 0.9896335601806641], "6": [230.565185546875, 251.05650329589844, 0.9975747466087341], "7": [522.7796630859375, 397.80743408203125, 0.7894687652587891], "8": [98.9541015625, 314.78466796875, 0.9447291493415833], "9": [464.3892822265625, 405.0106201171875, 0.7596002817153931], "10": [77.55900573730469, 174.25686645507812, 0.9421693086624146], "11": [417.83551025390625, 480.0, 0.16968752443790436], "12": [268.7364196777344, 480.0, 0.267036110162735], "13": [444.4099426269531, 443.7452087402344, 0.0010119465878233314], "14": [254.0243377685547, 436.93084716796875, 0.0017258083680644631], "15": [411.34844970703125, 468.81622314453125, 9.647427941672504e-05], "16": [232.98277282714844, 454.49951171875, 0.00014654206461273134]}} +{"t": 19.925087, "tracked": true, "track_id": 1, "bbox": [35.27888488769531, 60.582393646240234, 560.944580078125, 479.7998962402344], "det_conf": 0.8887547850608826, "mean_kpt_conf": 0.9263961044224825, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8955611656976498, "right_lift": -0.4045193524764966, "left_bend": 0.39084627020789464, "right_bend": 0.5942988285164583}, "keypoints": {"0": [347.84405517578125, 155.14566040039062, 0.9992424249649048], "1": [367.4115295410156, 132.85232543945312, 0.9980833530426025], "2": [327.10888671875, 132.552490234375, 0.9969821572303772], "3": [392.1492919921875, 145.3207244873047, 0.9352508187294006], "4": [294.2539978027344, 144.32054138183594, 0.8351672887802124], "5": [455.54345703125, 261.6759338378906, 0.989051878452301], "6": [230.98439025878906, 247.32537841796875, 0.9973220229148865], "7": [523.1236572265625, 397.69970703125, 0.8088276386260986], "8": [100.76914978027344, 304.9228515625, 0.9512314796447754], "9": [478.30133056640625, 444.22344970703125, 0.7378983497619629], "10": [83.95628356933594, 165.72853088378906, 0.9412997364997864], "11": [420.5804138183594, 480.0, 0.17496462166309357], "12": [275.45037841796875, 480.0, 0.26960062980651855], "13": [461.86785888671875, 432.01812744140625, 0.0014802803052589297], "14": [280.8138427734375, 430.9669494628906, 0.002600406063720584], "15": [421.8647766113281, 470.3292236328125, 0.00015824749425519258], "16": [258.1286926269531, 458.3221435546875, 0.0002465822035446763]}} +{"t": 19.990923, "tracked": true, "track_id": 1, "bbox": [42.48640441894531, 59.58430099487305, 560.6862182617188, 479.890625], "det_conf": 0.885309636592865, "mean_kpt_conf": 0.9232016151601617, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9026082247003611, "right_lift": -0.4146554338466176, "left_bend": 0.4402751142938883, "right_bend": 0.6126118957533739}, "keypoints": {"0": [347.7994384765625, 155.0531005859375, 0.9992319345474243], "1": [368.0921936035156, 132.9475555419922, 0.9981400966644287], "2": [327.00384521484375, 132.30068969726562, 0.9969402551651001], "3": [393.4411315917969, 146.45742797851562, 0.9383540153503418], "4": [293.8614501953125, 144.58340454101562, 0.8310703635215759], "5": [455.401123046875, 262.83099365234375, 0.988121509552002], "6": [229.82614135742188, 249.16690063476562, 0.9973471164703369], "7": [520.8692626953125, 400.10662841796875, 0.790812611579895], "8": [98.68515014648438, 308.9247131347656, 0.9494728446006775], "9": [471.26812744140625, 436.4722595214844, 0.7259249687194824], "10": [87.60371398925781, 159.00863647460938, 0.9398020505905151], "11": [422.7008361816406, 480.0, 0.1691819280385971], "12": [276.9198303222656, 480.0, 0.26808440685272217], "13": [462.8081359863281, 436.96295166015625, 0.0014369108248502016], "14": [283.2525329589844, 436.20556640625, 0.0025817856658250093], "15": [425.7415771484375, 474.6669616699219, 0.0001531939924461767], "16": [263.21893310546875, 461.293212890625, 0.0002442956902086735]}} +{"t": 20.024297, "tracked": true, "track_id": 1, "bbox": [51.869476318359375, 59.29212951660156, 559.867919921875, 479.89825439453125], "det_conf": 0.8851236701011658, "mean_kpt_conf": 0.9245474121787332, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9014864118881628, "right_lift": -0.4104119722493269, "left_bend": 0.3868604406511604, "right_bend": 0.6320564090158831}, "keypoints": {"0": [346.9798583984375, 154.99188232421875, 0.9992048144340515], "1": [366.9845275878906, 132.8755340576172, 0.9981550574302673], "2": [326.1922302246094, 132.69097900390625, 0.9967502355575562], "3": [392.78900146484375, 146.41363525390625, 0.9413852691650391], "4": [293.99481201171875, 145.3717803955078, 0.8238847851753235], "5": [454.6839599609375, 262.7966003417969, 0.9881873726844788], "6": [231.59381103515625, 248.44265747070312, 0.9973236322402954], "7": [520.5067749023438, 399.897705078125, 0.8004069328308105], "8": [102.19320678710938, 306.6809997558594, 0.9528506994247437], "9": [478.31597900390625, 443.60430908203125, 0.7297361493110657], "10": [101.00106811523438, 158.37771606445312, 0.9421365857124329], "11": [421.9161071777344, 480.0, 0.17883388698101044], "12": [277.31500244140625, 480.0, 0.2828093469142914], "13": [463.9532470703125, 437.87652587890625, 0.0014454273041337729], "14": [283.4795837402344, 438.16729736328125, 0.00265919859521091], "15": [428.210693359375, 474.9124755859375, 0.0001541098317829892], "16": [260.58441162109375, 464.11981201171875, 0.0002501967828720808]}} +{"t": 20.092552, "tracked": true, "track_id": 1, "bbox": [76.09310150146484, 59.338157653808594, 559.4014892578125, 479.8759765625], "det_conf": 0.9017107486724854, "mean_kpt_conf": 0.9244423617016185, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.909341790530787, "right_lift": -0.44623046349029827, "left_bend": 0.4281829947064289, "right_bend": 0.6429930096840232}, "keypoints": {"0": [347.4596252441406, 155.42178344726562, 0.9991928935050964], "1": [367.4270324707031, 132.77906799316406, 0.9980048537254333], "2": [326.55633544921875, 132.66757202148438, 0.9968110918998718], "3": [392.93768310546875, 144.92715454101562, 0.9336352348327637], "4": [293.6646728515625, 144.035400390625, 0.831419825553894], "5": [455.44329833984375, 261.4678649902344, 0.9881957769393921], "6": [231.25729370117188, 248.28298950195312, 0.997289776802063], "7": [519.087890625, 400.5730285644531, 0.7955068945884705], "8": [107.42755126953125, 310.0278625488281, 0.9510499835014343], "9": [468.8276672363281, 439.156494140625, 0.735149621963501], "10": [105.44239807128906, 161.03411865234375, 0.9426100254058838], "11": [423.47601318359375, 480.0, 0.17909123003482819], "12": [278.2571105957031, 480.0, 0.2823656499385834], "13": [464.5171813964844, 439.68890380859375, 0.001489943009801209], "14": [285.9820251464844, 440.07421875, 0.002725069411098957], "15": [424.62347412109375, 476.8006591796875, 0.00015409071056637913], "16": [265.30010986328125, 465.73162841796875, 0.00024781838874332607]}} +{"t": 20.157212, "tracked": true, "track_id": 1, "bbox": [86.39901733398438, 59.265750885009766, 557.1264038085938, 479.98046875], "det_conf": 0.9129155278205872, "mean_kpt_conf": 0.9244782274419611, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.912101888482311, "right_lift": -0.4743271248275046, "left_bend": 0.423643865509722, "right_bend": 0.6722306457260688}, "keypoints": {"0": [347.25103759765625, 155.781982421875, 0.9991635084152222], "1": [367.12579345703125, 132.86737060546875, 0.9979118704795837], "2": [326.122314453125, 132.94229125976562, 0.9967542290687561], "3": [392.5987548828125, 144.57406616210938, 0.928866446018219], "4": [293.169921875, 144.013427734375, 0.8346120119094849], "5": [454.1009521484375, 260.959228515625, 0.9879463315010071], "6": [231.169189453125, 247.29119873046875, 0.997088611125946], "7": [517.7667846679688, 402.60528564453125, 0.7945640683174133], "8": [108.45852661132812, 313.40704345703125, 0.9488627314567566], "9": [468.76922607421875, 440.8129577636719, 0.7406578660011292], "10": [115.38420104980469, 165.78012084960938, 0.9428328275680542], "11": [420.8031005859375, 480.0, 0.16066789627075195], "12": [276.444091796875, 480.0, 0.2538222372531891], "13": [461.60992431640625, 433.7236633300781, 0.001455393387004733], "14": [284.1304626464844, 434.065185546875, 0.00264531746506691], "15": [421.46533203125, 472.89935302734375, 0.00015967195213306695], "16": [262.0598449707031, 462.82281494140625, 0.000254205078817904]}} +{"t": 20.221131, "tracked": true, "track_id": 1, "bbox": [90.42839813232422, 60.082664489746094, 555.4228515625, 479.9525451660156], "det_conf": 0.917751133441925, "mean_kpt_conf": 0.927712928165089, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9151289012324637, "right_lift": -0.5015152388816867, "left_bend": 0.4324342327818995, "right_bend": 0.6937948108235543}, "keypoints": {"0": [346.94256591796875, 155.99093627929688, 0.9991718530654907], "1": [366.7432861328125, 133.10568237304688, 0.9978387951850891], "2": [325.7797546386719, 133.05010986328125, 0.9967929720878601], "3": [391.89056396484375, 144.7102508544922, 0.9231176376342773], "4": [292.2242431640625, 143.85678100585938, 0.8414700031280518], "5": [453.54132080078125, 261.1322937011719, 0.9888047575950623], "6": [229.30172729492188, 248.45115661621094, 0.9972265362739563], "7": [516.1439819335938, 403.23297119140625, 0.8081170320510864], "8": [111.18527221679688, 316.92169189453125, 0.9512033462524414], "9": [465.70672607421875, 439.794189453125, 0.755407989025116], "10": [123.85569763183594, 165.4874267578125, 0.9456912875175476], "11": [421.593994140625, 480.0, 0.17475615441799164], "12": [276.0119323730469, 480.0, 0.2706715166568756], "13": [463.16796875, 437.06781005859375, 0.0014785523526370525], "14": [284.0436096191406, 438.455322265625, 0.002655775984749198], "15": [422.12896728515625, 474.5320129394531, 0.0001537669450044632], "16": [263.16302490234375, 464.5688781738281, 0.0002417697396595031]}} +{"t": 20.285057, "tracked": true, "track_id": 1, "bbox": [91.19499206542969, 60.250732421875, 556.1795654296875, 479.96331787109375], "det_conf": 0.9172960519790649, "mean_kpt_conf": 0.9286462447860024, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9113548986720025, "right_lift": -0.5106283084376808, "left_bend": 0.4174427613606325, "right_bend": 0.7164617357285924}, "keypoints": {"0": [346.5756530761719, 156.0427703857422, 0.999157190322876], "1": [366.4383544921875, 133.28656005859375, 0.9978139400482178], "2": [325.50042724609375, 133.12890625, 0.9967787861824036], "3": [391.54510498046875, 145.22225952148438, 0.9226940870285034], "4": [292.092529296875, 143.95733642578125, 0.8444636464118958], "5": [453.6013488769531, 261.07354736328125, 0.9887734055519104], "6": [227.9623565673828, 247.19570922851562, 0.9970971345901489], "7": [518.0885620117188, 403.8521423339844, 0.8106207251548767], "8": [110.95028686523438, 316.6881103515625, 0.9501205682754517], "9": [470.45196533203125, 442.6579895019531, 0.7614119648933411], "10": [132.6709747314453, 167.01966857910156, 0.9461772441864014], "11": [420.9017639160156, 480.0, 0.16156819462776184], "12": [274.7115783691406, 480.0, 0.24974806606769562], "13": [464.880615234375, 431.21533203125, 0.0014566781464964151], "14": [286.09698486328125, 432.4996643066406, 0.002618814120069146], "15": [424.217041015625, 473.63720703125, 0.0001567179278936237], "16": [267.33526611328125, 463.9792175292969, 0.000246526236878708]}} +{"t": 20.354485, "tracked": true, "track_id": 1, "bbox": [90.67498779296875, 60.625980377197266, 556.1825561523438, 480.0], "det_conf": 0.9197086095809937, "mean_kpt_conf": 0.9279329722577875, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.917982568518083, "right_lift": -0.5049096563333542, "left_bend": 0.4219807972840894, "right_bend": 0.7203989384803875}, "keypoints": {"0": [346.4049072265625, 155.5953369140625, 0.9991292357444763], "1": [366.2884216308594, 132.73660278320312, 0.9979016780853271], "2": [325.06903076171875, 133.2560577392578, 0.9965811371803284], "3": [392.29302978515625, 144.99765014648438, 0.931627094745636], "4": [292.366455078125, 145.24916076660156, 0.8337370753288269], "5": [454.6483154296875, 261.1457824707031, 0.9887007474899292], "6": [228.67198181152344, 247.47486877441406, 0.9971091151237488], "7": [516.8074340820312, 405.013671875, 0.8090997934341431], "8": [110.50973510742188, 316.5934753417969, 0.9505125880241394], "9": [468.3076171875, 442.1087341308594, 0.7577495574951172], "10": [135.29605102539062, 165.9981689453125, 0.9451146721839905], "11": [419.6162109375, 480.0, 0.16151565313339233], "12": [273.0436096191406, 480.0, 0.251560777425766], "13": [462.7759704589844, 430.1416015625, 0.001439655665308237], "14": [282.3089294433594, 431.9088134765625, 0.0026230395305901766], "15": [421.4846496582031, 470.560302734375, 0.00016016510198824108], "16": [261.4051513671875, 463.24530029296875, 0.0002555923128966242]}} +{"t": 20.419056, "tracked": true, "track_id": 1, "bbox": [89.58348083496094, 60.39042663574219, 557.7273559570312, 480.0], "det_conf": 0.9198291301727295, "mean_kpt_conf": 0.9249799251556396, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9203696394905712, "right_lift": -0.4989412904795763, "left_bend": 0.46446578721523635, "right_bend": 0.7233181121924457}, "keypoints": {"0": [346.86181640625, 155.70962524414062, 0.999101996421814], "1": [366.6927490234375, 133.02320861816406, 0.9977745413780212], "2": [325.58966064453125, 133.059326171875, 0.9965800642967224], "3": [392.1432189941406, 145.64517211914062, 0.9260798096656799], "4": [292.314208984375, 144.87063598632812, 0.8379611372947693], "5": [453.3617858886719, 263.6554870605469, 0.9879041314125061], "6": [228.19122314453125, 248.2001190185547, 0.9969208240509033], "7": [514.6717529296875, 407.95391845703125, 0.7905440330505371], "8": [108.37672424316406, 317.1799621582031, 0.9451159238815308], "9": [461.01806640625, 438.2059326171875, 0.7533938884735107], "10": [135.9827117919922, 164.7793426513672, 0.9434028267860413], "11": [417.888916015625, 480.0, 0.14568153023719788], "12": [272.5234375, 480.0, 0.22991351783275604], "13": [458.09588623046875, 430.6297912597656, 0.0014554107328876853], "14": [284.3869934082031, 430.712158203125, 0.002637537894770503], "15": [416.83624267578125, 470.05731201171875, 0.00016630116442684084], "16": [265.97039794921875, 461.00018310546875, 0.00026396161410957575]}} +{"t": 20.483859, "tracked": true, "track_id": 1, "bbox": [89.02552032470703, 59.98550796508789, 557.9375610351562, 480.0], "det_conf": 0.9167947769165039, "mean_kpt_conf": 0.9235561381686818, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9182744098595433, "right_lift": -0.49756086750591694, "left_bend": 0.4893497993208322, "right_bend": 0.7103979728294451}, "keypoints": {"0": [347.74371337890625, 155.71484375, 0.9991443157196045], "1": [367.3288879394531, 132.7785186767578, 0.9977220892906189], "2": [326.4159240722656, 132.78021240234375, 0.996846616268158], "3": [392.12518310546875, 144.5785369873047, 0.9180009365081787], "4": [292.1977233886719, 143.81167602539062, 0.8473049402236938], "5": [454.594482421875, 263.2750549316406, 0.9881353378295898], "6": [227.341064453125, 248.20709228515625, 0.9970088601112366], "7": [516.9713134765625, 407.9393615722656, 0.7845058441162109], "8": [107.80329895019531, 316.7744445800781, 0.9442245364189148], "9": [457.2384033203125, 436.1009521484375, 0.7443726658821106], "10": [129.3348846435547, 164.2045135498047, 0.9418513774871826], "11": [420.172607421875, 480.0, 0.15110670030117035], "12": [273.3726501464844, 480.0, 0.23795153200626373], "13": [460.5856628417969, 435.48675537109375, 0.0014282240299507976], "14": [285.313720703125, 434.872802734375, 0.0025732999201864004], "15": [418.7037353515625, 472.24554443359375, 0.00015691904991399497], "16": [267.84039306640625, 461.7868347167969, 0.0002468595339450985]}} +{"t": 20.520176, "tracked": true, "track_id": 1, "bbox": [88.69180297851562, 60.110172271728516, 559.6437377929688, 480.0], "det_conf": 0.9181004762649536, "mean_kpt_conf": 0.9304199814796448, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9167224836760773, "right_lift": -0.4982102481043781, "left_bend": 0.46637067880416067, "right_bend": 0.6962175243751636}, "keypoints": {"0": [348.26654052734375, 155.82992553710938, 0.9992138147354126], "1": [367.78857421875, 132.59669494628906, 0.9978529214859009], "2": [326.73345947265625, 132.88809204101562, 0.9969660639762878], "3": [392.72216796875, 143.86788940429688, 0.9186103343963623], "4": [292.49066162109375, 143.82351684570312, 0.8456763625144958], "5": [454.7409973144531, 262.26409912109375, 0.9893697500228882], "6": [228.71168518066406, 247.87081909179688, 0.9972614049911499], "7": [517.5753173828125, 406.4395446777344, 0.8171201944351196], "8": [109.506591796875, 316.36602783203125, 0.9524588584899902], "9": [464.6263427734375, 436.5208740234375, 0.7717459201812744], "10": [123.815185546875, 166.046875, 0.9483441710472107], "11": [420.0159606933594, 480.0, 0.1748485267162323], "12": [272.932861328125, 480.0, 0.267387717962265], "13": [462.2989807128906, 438.0046081542969, 0.0014220081502571702], "14": [279.3994445800781, 438.0315856933594, 0.0025063701905310154], "15": [423.24853515625, 472.5675964355469, 0.0001446098176529631], "16": [258.5964660644531, 463.67950439453125, 0.00022336799884214997]}} +{"t": 20.58225, "tracked": true, "track_id": 1, "bbox": [86.98824310302734, 59.45378112792969, 559.5014038085938, 480.0], "det_conf": 0.9138818383216858, "mean_kpt_conf": 0.9251266446980563, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.91925355214886, "right_lift": -0.47595008747789985, "left_bend": 0.4952122419406678, "right_bend": 0.6754765913565799}, "keypoints": {"0": [349.2774353027344, 155.442138671875, 0.9991962313652039], "1": [369.0402526855469, 132.70651245117188, 0.9978577494621277], "2": [328.1973876953125, 132.41029357910156, 0.996944010257721], "3": [393.92645263671875, 144.8309326171875, 0.9222366213798523], "4": [294.3404846191406, 143.47406005859375, 0.8411034941673279], "5": [455.56414794921875, 263.62957763671875, 0.9883422255516052], "6": [230.43113708496094, 247.3819122314453, 0.9971215128898621], "7": [517.2135620117188, 407.5877685546875, 0.7932197451591492], "8": [108.2265625, 313.5162048339844, 0.9477713108062744], "9": [460.1693115234375, 433.0387268066406, 0.7494884729385376], "10": [116.54484558105469, 163.06304931640625, 0.9431117177009583], "11": [420.1958312988281, 480.0, 0.16023790836334229], "12": [274.09320068359375, 480.0, 0.25109100341796875], "13": [460.124267578125, 437.23468017578125, 0.0014410471776500344], "14": [280.83050537109375, 435.1711730957031, 0.002565701026469469], "15": [420.87451171875, 473.0481262207031, 0.00015441520372405648], "16": [260.8538513183594, 461.62158203125, 0.00024125557683873922]}} +{"t": 20.650242, "tracked": true, "track_id": 1, "bbox": [82.2850112915039, 59.127838134765625, 558.2115478515625, 480.0], "det_conf": 0.8965319395065308, "mean_kpt_conf": 0.9255174723538485, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9097261654926762, "right_lift": -0.4388401963346767, "left_bend": 0.39429013654565004, "right_bend": 0.6547446023321537}, "keypoints": {"0": [349.83984375, 154.72348022460938, 0.9992127418518066], "1": [369.3231201171875, 132.65435791015625, 0.9979979395866394], "2": [328.72137451171875, 132.53262329101562, 0.9969897270202637], "3": [393.9460144042969, 145.90802001953125, 0.9274098873138428], "4": [295.1958312988281, 145.15573120117188, 0.844890296459198], "5": [455.19915771484375, 262.1842346191406, 0.9883805513381958], "6": [231.18946838378906, 247.4850311279297, 0.9972423315048218], "7": [518.8917236328125, 401.7352294921875, 0.8030310273170471], "8": [104.71759033203125, 309.251220703125, 0.9519445896148682], "9": [476.35968017578125, 442.18170166015625, 0.7321509718894958], "10": [109.46206665039062, 160.27745056152344, 0.9414421319961548], "11": [420.7566223144531, 480.0, 0.17764568328857422], "12": [274.9096374511719, 480.0, 0.27709805965423584], "13": [461.8798828125, 437.1246337890625, 0.0014505318831652403], "14": [276.95159912109375, 437.7412414550781, 0.002600293606519699], "15": [425.0721740722656, 474.39141845703125, 0.000154687964823097], "16": [252.60302734375, 464.96856689453125, 0.00024267041590064764]}} +{"t": 20.715917, "tracked": true, "track_id": 1, "bbox": [62.12372970581055, 59.63427734375, 558.1190185546875, 480.0], "det_conf": 0.8775805234909058, "mean_kpt_conf": 0.9243810014291243, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.916401682658852, "right_lift": -0.4219494654426661, "left_bend": 0.4319037477935378, "right_bend": 0.6396415569838989}, "keypoints": {"0": [350.51422119140625, 154.4395751953125, 0.9992037415504456], "1": [370.44207763671875, 133.25997924804688, 0.9980143308639526], "2": [329.32647705078125, 132.54815673828125, 0.9969876408576965], "3": [394.9830017089844, 148.6302032470703, 0.9320563673973083], "4": [295.5733337402344, 146.7914581298828, 0.8438456654548645], "5": [455.35699462890625, 264.70111083984375, 0.9881659746170044], "6": [230.78933715820312, 247.84393310546875, 0.997281551361084], "7": [516.5372314453125, 404.7742919921875, 0.7964721322059631], "8": [102.84237670898438, 307.3916931152344, 0.9516564607620239], "9": [470.19012451171875, 438.2645568847656, 0.7249845862388611], "10": [103.30973815917969, 156.74630737304688, 0.9395225644111633], "11": [419.686767578125, 480.0, 0.17872850596904755], "12": [273.90045166015625, 480.0, 0.28125640749931335], "13": [459.2886657714844, 438.2750549316406, 0.0014778889017179608], "14": [276.8005676269531, 436.8569030761719, 0.002666670363396406], "15": [421.9718017578125, 476.11962890625, 0.00016096828039735556], "16": [254.34085083007812, 464.810791015625, 0.0002550460339989513]}} +{"t": 20.784047, "tracked": true, "track_id": 1, "bbox": [42.55038833618164, 59.796382904052734, 558.4600830078125, 480.0], "det_conf": 0.8780617713928223, "mean_kpt_conf": 0.9246503168886359, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9164052422967459, "right_lift": -0.42268538278765855, "left_bend": 0.4686859536581223, "right_bend": 0.6155084379252475}, "keypoints": {"0": [351.27386474609375, 154.90313720703125, 0.9992437362670898], "1": [371.20367431640625, 133.65338134765625, 0.9979727864265442], "2": [330.20330810546875, 132.56251525878906, 0.9971821308135986], "3": [395.13140869140625, 148.74606323242188, 0.9265308380126953], "4": [295.8418884277344, 146.18563842773438, 0.8517663478851318], "5": [454.64300537109375, 266.9361572265625, 0.9886806011199951], "6": [229.95933532714844, 249.1146240234375, 0.9973596930503845], "7": [516.1407470703125, 407.73968505859375, 0.7961096167564392], "8": [100.46441650390625, 309.5107727050781, 0.9495887160301208], "9": [469.40802001953125, 433.89031982421875, 0.7284364700317383], "10": [89.36659240722656, 158.84527587890625, 0.9382825493812561], "11": [416.7650146484375, 480.0, 0.17782007157802582], "12": [271.1579284667969, 480.0, 0.2757878601551056], "13": [457.00811767578125, 440.32330322265625, 0.0014927732991054654], "14": [275.3000183105469, 437.48699951171875, 0.0026095379143953323], "15": [421.1846923828125, 474.1761169433594, 0.00015804573195055127], "16": [255.4147186279297, 461.8236083984375, 0.00024363926786463708]}} +{"t": 20.848494, "tracked": true, "track_id": 1, "bbox": [33.20271682739258, 60.96479797363281, 560.9508056640625, 479.98931884765625], "det_conf": 0.8833040595054626, "mean_kpt_conf": 0.9206534949215975, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9152601357268939, "right_lift": -0.4164267448777366, "left_bend": 0.48284080908863514, "right_bend": 0.582991181008613}, "keypoints": {"0": [351.04644775390625, 154.79270935058594, 0.9992401599884033], "1": [370.6803894042969, 133.49237060546875, 0.9979231953620911], "2": [329.98480224609375, 132.46151733398438, 0.9972092509269714], "3": [394.4244384765625, 147.95436096191406, 0.9257779121398926], "4": [295.6683044433594, 145.68307495117188, 0.8483026623725891], "5": [455.9891357421875, 265.9026184082031, 0.988274097442627], "6": [232.14859008789062, 247.38107299804688, 0.9972358345985413], "7": [517.705322265625, 406.1148376464844, 0.780694842338562], "8": [102.44216918945312, 306.7904968261719, 0.9460952281951904], "9": [467.08721923828125, 431.73486328125, 0.7119999527931213], "10": [78.7784423828125, 167.92568969726562, 0.9344353079795837], "11": [421.07080078125, 480.0, 0.17460396885871887], "12": [276.66680908203125, 480.0, 0.2731860280036926], "13": [458.92742919921875, 438.671630859375, 0.0015549036907032132], "14": [281.380126953125, 433.4622802734375, 0.002732972614467144], "15": [420.89410400390625, 472.0244140625, 0.00016575514746364206], "16": [262.94000244140625, 458.57733154296875, 0.00025725524756126106]}} +{"t": 20.910421, "tracked": true, "track_id": 1, "bbox": [23.570083618164062, 62.06588363647461, 568.0667114257812, 479.9830322265625], "det_conf": 0.8865403532981873, "mean_kpt_conf": 0.9270157326351512, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9067855284041169, "right_lift": -0.4392406520030422, "left_bend": 0.6090079591829175, "right_bend": 0.5726613975331624}, "keypoints": {"0": [350.747314453125, 155.49203491210938, 0.9993732571601868], "1": [370.8764343261719, 134.58203125, 0.9982746839523315], "2": [329.7576904296875, 133.1968536376953, 0.9974390268325806], "3": [396.4134521484375, 148.8685302734375, 0.9351469874382019], "4": [295.38739013671875, 146.3511505126953, 0.8401699662208557], "5": [459.06805419921875, 268.216064453125, 0.9898617267608643], "6": [231.5247039794922, 250.83489990234375, 0.9976235032081604], "7": [520.0590209960938, 399.3990478515625, 0.7976951003074646], "8": [103.93984985351562, 313.215087890625, 0.9474210143089294], "9": [466.1785583496094, 404.410400390625, 0.7538978457450867], "10": [72.852783203125, 178.30860900878906, 0.940269947052002], "11": [415.7918395996094, 480.0, 0.19351045787334442], "12": [267.0423889160156, 480.0, 0.29844632744789124], "13": [443.59271240234375, 448.42889404296875, 0.0010514450259506702], "14": [251.7943115234375, 440.01202392578125, 0.001774843200109899], "15": [412.39031982421875, 471.4093017578125, 9.746916475705802e-05], "16": [234.066162109375, 456.7215270996094, 0.00014537174138240516]}} +{"t": 20.946475, "tracked": true, "track_id": 1, "bbox": [19.972423553466797, 62.315677642822266, 567.0859985351562, 479.98187255859375], "det_conf": 0.8857580423355103, "mean_kpt_conf": 0.9244443774223328, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9105535300474196, "right_lift": -0.43709384069379886, "left_bend": 0.6136109839304759, "right_bend": 0.5651269350069968}, "keypoints": {"0": [349.9830322265625, 155.9043426513672, 0.9993602633476257], "1": [370.3121643066406, 134.8633575439453, 0.9982364177703857], "2": [329.06207275390625, 133.3133544921875, 0.9973896145820618], "3": [396.00250244140625, 148.77365112304688, 0.9343335032463074], "4": [294.74224853515625, 145.7864532470703, 0.8369594216346741], "5": [457.8107604980469, 268.56683349609375, 0.9895026683807373], "6": [232.14866638183594, 249.95266723632812, 0.9975191354751587], "7": [517.78125, 400.66046142578125, 0.7874393463134766], "8": [104.88839721679688, 311.7980041503906, 0.9446395635604858], "9": [461.968017578125, 404.53204345703125, 0.74574875831604], "10": [71.03451538085938, 177.96707153320312, 0.9377594590187073], "11": [414.03662109375, 480.0, 0.18670769035816193], "12": [266.8169250488281, 480.0, 0.29030004143714905], "13": [438.796142578125, 448.6329650878906, 0.001067425822839141], "14": [250.995849609375, 438.974853515625, 0.0018011067295446992], "15": [406.5466003417969, 470.64794921875, 0.00010087653936352581], "16": [233.5392608642578, 454.97503662109375, 0.00015031019574962556]}} +{"t": 21.009763, "tracked": true, "track_id": 1, "bbox": [9.407870292663574, 61.895050048828125, 566.6409912109375, 480.0], "det_conf": 0.8866981863975525, "mean_kpt_conf": 0.8983521298928694, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9238643286401609, "right_lift": -0.3117840275037561, "left_bend": 0.36448888877543806, "right_bend": 0.4638169748525146}, "keypoints": {"0": [352.1292724609375, 154.65335083007812, 0.9990898370742798], "1": [371.0597229003906, 132.16326904296875, 0.9974179267883301], "2": [330.0259094238281, 133.37255859375, 0.9971317052841187], "3": [394.3374328613281, 145.5569305419922, 0.9078852534294128], "4": [294.1009521484375, 148.38136291503906, 0.8574962615966797], "5": [457.5573425292969, 266.41754150390625, 0.9830957055091858], "6": [235.927001953125, 250.9451141357422, 0.9970597624778748], "7": [514.71337890625, 404.388916015625, 0.6839371919631958], "8": [102.35017395019531, 294.7771301269531, 0.9417025446891785], "9": [473.18927001953125, 448.753662109375, 0.5991034507751465], "10": [46.453369140625, 173.1353759765625, 0.9179537892341614], "11": [431.0362548828125, 480.0, 0.1798119992017746], "12": [292.38653564453125, 476.21368408203125, 0.3107294738292694], "13": [457.436767578125, 449.18115234375, 0.0021995636634528637], "14": [316.6674499511719, 449.08538818359375, 0.004515666514635086], "15": [410.1654968261719, 475.4182434082031, 0.00022628286387771368], "16": [314.9540100097656, 472.46417236328125, 0.0003962875925935805]}} +{"t": 21.077667, "tracked": true, "track_id": 1, "bbox": [4.121822834014893, 62.0622444152832, 561.4859619140625, 479.9114074707031], "det_conf": 0.8952904343605042, "mean_kpt_conf": 0.9001224095171149, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9228859094684074, "right_lift": -0.33701185972576964, "left_bend": 0.3469446727651454, "right_bend": 0.4674594881428974}, "keypoints": {"0": [352.05950927734375, 154.27532958984375, 0.9990888833999634], "1": [370.8326721191406, 132.3102264404297, 0.997320830821991], "2": [330.1534729003906, 133.28895568847656, 0.997183084487915], "3": [393.3979187011719, 146.2607421875, 0.9036405086517334], "4": [294.1416320800781, 148.7161865234375, 0.8634855151176453], "5": [456.2333984375, 265.67413330078125, 0.9840719103813171], "6": [235.84312438964844, 250.57049560546875, 0.997126042842865], "7": [514.5281982421875, 405.38629150390625, 0.7002366185188293], "8": [104.77519226074219, 297.48651123046875, 0.9434139132499695], "9": [474.52362060546875, 453.3983154296875, 0.5994502902030945], "10": [46.75947570800781, 176.13876342773438, 0.9163289070129395], "11": [428.8241882324219, 479.5641174316406, 0.19466912746429443], "12": [290.49761962890625, 474.80438232421875, 0.3277342915534973], "13": [455.0546875, 450.84332275390625, 0.0022936281748116016], "14": [310.8973388671875, 450.48492431640625, 0.004601112566888332], "15": [408.27679443359375, 477.33538818359375, 0.00022911645646672696], "16": [306.6258544921875, 473.0187683105469, 0.0003920909366570413]}} +{"t": 21.141369, "tracked": true, "track_id": 1, "bbox": [4.7604780197143555, 61.85951614379883, 566.7455444335938, 479.83392333984375], "det_conf": 0.8975053429603577, "mean_kpt_conf": 0.8983331431042064, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9146920253548819, "right_lift": -0.3357569467699505, "left_bend": 0.379816728621558, "right_bend": 0.4674659204174413}, "keypoints": {"0": [351.46856689453125, 154.75076293945312, 0.9991140961647034], "1": [370.8282775878906, 131.979248046875, 0.9974964261054993], "2": [329.3786315917969, 133.11288452148438, 0.9972131848335266], "3": [394.6826171875, 144.90240478515625, 0.9103716015815735], "4": [293.1757507324219, 147.52748107910156, 0.855334997177124], "5": [458.92120361328125, 265.3936767578125, 0.9834291338920593], "6": [235.1639404296875, 251.52513122558594, 0.9971453547477722], "7": [519.75, 403.0638427734375, 0.6847391724586487], "8": [105.61569213867188, 297.7025146484375, 0.9422599673271179], "9": [476.26641845703125, 447.2682189941406, 0.5981813669204712], "10": [47.37925720214844, 175.4684600830078, 0.9163792729377747], "11": [431.53436279296875, 480.0, 0.18909892439842224], "12": [290.7122802734375, 475.9730224609375, 0.3250141143798828], "13": [457.374755859375, 452.6405029296875, 0.0021832981146872044], "14": [309.7518310546875, 452.24737548828125, 0.004479283466935158], "15": [411.182861328125, 476.8695373535156, 0.00021703267702832818], "16": [306.88671875, 471.9568176269531, 0.00037917756708338857]}} +{"t": 21.17534, "tracked": true, "track_id": 1, "bbox": [6.538434982299805, 61.777366638183594, 565.4789428710938, 479.8200378417969], "det_conf": 0.895134687423706, "mean_kpt_conf": 0.8994153250347484, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9194165952880988, "right_lift": -0.3164841620578474, "left_bend": 0.3740431336454219, "right_bend": 0.4651689604783143}, "keypoints": {"0": [351.4726867675781, 154.54205322265625, 0.9990980625152588], "1": [370.7807312011719, 132.21182250976562, 0.9975855350494385], "2": [329.312744140625, 133.45811462402344, 0.9970716238021851], "3": [394.8506164550781, 146.0098419189453, 0.9182286262512207], "4": [293.5948486328125, 148.94009399414062, 0.8474335074424744], "5": [457.6629638671875, 266.0376281738281, 0.9830991625785828], "6": [237.10789489746094, 251.1080322265625, 0.9971466660499573], "7": [516.5646362304688, 403.7371826171875, 0.6880860328674316], "8": [102.59091186523438, 295.9874267578125, 0.9439430832862854], "9": [472.888427734375, 448.69952392578125, 0.6029407978057861], "10": [47.284912109375, 175.85415649414062, 0.9189354777336121], "11": [431.5299072265625, 480.0, 0.19478808343410492], "12": [293.1658935546875, 476.4755554199219, 0.3357260823249817], "13": [454.0458679199219, 455.47894287109375, 0.002198018366470933], "14": [311.81396484375, 454.27130126953125, 0.004528237972408533], "15": [410.34173583984375, 478.18377685546875, 0.00021699130593333393], "16": [308.0628662109375, 473.40277099609375, 0.00038281892193481326]}} +{"t": 21.210996, "tracked": true, "track_id": 1, "bbox": [10.827034950256348, 62.46660232543945, 565.3594360351562, 479.80712890625], "det_conf": 0.8932563662528992, "mean_kpt_conf": 0.8589825903375944, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9132878414657345, "right_lift": -0.3378003209818603, "left_bend": 0.3489596431042793, "right_bend": 0.4776273355515373}, "keypoints": {"0": [351.0881042480469, 155.33021545410156, 0.9991375207901001], "1": [369.9816589355469, 132.78616333007812, 0.9974000453948975], "2": [329.21002197265625, 133.72747802734375, 0.9972654581069946], "3": [392.91650390625, 145.1485595703125, 0.900209367275238], "4": [292.8509826660156, 147.25711059570312, 0.8635805249214172], "5": [456.4049072265625, 263.8972473144531, 0.9848201870918274], "6": [235.00123596191406, 249.90151977539062, 0.9973112344741821], "7": [517.588134765625, 401.0832824707031, 0.7166527509689331], "8": [105.49085998535156, 296.3824157714844, 0.9490596055984497], "9": [478.54425048828125, 449.6849365234375, 0.6216318607330322], "10": [51.67121887207031, 174.1836700439453, 0.9243273138999939], "11": [431.747314453125, 480.0, 0.21327854692935944], "12": [292.09124755859375, 476.45623779296875, 0.3563952147960663], "13": [457.0469055175781, 455.39617919921875, 0.0022357210982590914], "14": [309.2567138671875, 455.61767578125, 0.00452430872246623], "15": [411.34344482421875, 479.3222961425781, 0.0002068813773803413], "16": [303.7919616699219, 474.30145263671875, 0.00035558483796194196]}} +{"t": 21.244518, "tracked": true, "track_id": 1, "bbox": [16.20298194885254, 62.159507751464844, 564.1414184570312, 479.7811279296875], "det_conf": 0.8900708556175232, "mean_kpt_conf": 0.9295569116419012, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9009982390332977, "right_lift": -0.4061823857010412, "left_bend": 0.4635933859653312, "right_bend": 0.5487533507334419}, "keypoints": {"0": [349.3993225097656, 157.61453247070312, 0.9993343949317932], "1": [369.04071044921875, 135.52639770507812, 0.9981605410575867], "2": [328.48309326171875, 135.05648803710938, 0.9973490238189697], "3": [393.50341796875, 147.73434448242188, 0.9328739643096924], "4": [294.4281005859375, 146.65826416015625, 0.8413305282592773], "5": [457.5538330078125, 264.1504821777344, 0.9902384281158447], "6": [231.439697265625, 249.10545349121094, 0.9977093935012817], "7": [523.1962890625, 400.4820556640625, 0.8196198344230652], "8": [100.44857788085938, 307.3312683105469, 0.9561630487442017], "9": [473.34857177734375, 431.9501647949219, 0.7486222982406616], "10": [64.03767395019531, 173.22103881835938, 0.9437245726585388], "11": [423.76654052734375, 480.0, 0.22216610610485077], "12": [277.00665283203125, 480.0, 0.3350400924682617], "13": [459.5025634765625, 447.0009765625, 0.0015493526589125395], "14": [273.08026123046875, 442.6224365234375, 0.00265493243932724], "15": [422.5047912597656, 475.562744140625, 0.00014071754412725568], "16": [251.7493896484375, 461.7928161621094, 0.00021469216153491288]}} +{"t": 21.307142, "tracked": true, "track_id": 1, "bbox": [22.25322723388672, 62.458133697509766, 565.5988159179688, 479.8585205078125], "det_conf": 0.8890476226806641, "mean_kpt_conf": 0.9276067343625155, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9025115288187726, "right_lift": -0.47128349229130356, "left_bend": 0.6193489066673388, "right_bend": 0.583804736667883}, "keypoints": {"0": [347.6288146972656, 158.38217163085938, 0.9993985891342163], "1": [368.2075500488281, 136.3038330078125, 0.9983281493186951], "2": [327.27398681640625, 134.667236328125, 0.9974220991134644], "3": [394.6041259765625, 147.4402313232422, 0.9334654808044434], "4": [293.43560791015625, 143.87689208984375, 0.8326447606086731], "5": [456.76708984375, 265.8983459472656, 0.9899560213088989], "6": [231.1705322265625, 251.4207305908203, 0.9976722598075867], "7": [518.769775390625, 395.8323974609375, 0.7980051636695862], "8": [103.69038391113281, 319.53924560546875, 0.9475868940353394], "9": [462.72235107421875, 399.7781677246094, 0.7654871940612793], "10": [72.23092651367188, 183.62828063964844, 0.9437074661254883], "11": [416.9739990234375, 480.0, 0.19723784923553467], "12": [269.0098571777344, 480.0, 0.30473592877388], "13": [440.45928955078125, 452.1116027832031, 0.0010769438231363893], "14": [248.71627807617188, 444.3159484863281, 0.0017964347498491406], "15": [408.372802734375, 473.721923828125, 9.247948764823377e-05], "16": [227.04043579101562, 456.61883544921875, 0.00013650099572259933]}} +{"t": 21.376995, "tracked": true, "track_id": 1, "bbox": [30.16393280029297, 62.59477996826172, 562.2151489257812, 479.9263610839844], "det_conf": 0.8892198204994202, "mean_kpt_conf": 0.9273398464376276, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9020012700917877, "right_lift": -0.42907830238006156, "left_bend": 0.45522953646041386, "right_bend": 0.5842004676135325}, "keypoints": {"0": [347.4744567871094, 157.38021850585938, 0.9992958307266235], "1": [367.6418762207031, 135.07888793945312, 0.9981829524040222], "2": [327.1945495605469, 134.01893615722656, 0.9970741271972656], "3": [393.01129150390625, 147.0308837890625, 0.9378272891044617], "4": [294.2170715332031, 144.29571533203125, 0.827085554599762], "5": [455.74700927734375, 263.95172119140625, 0.9894077181816101], "6": [232.63644409179688, 250.23782348632812, 0.9976085424423218], "7": [520.6571655273438, 399.56561279296875, 0.8083071708679199], "8": [102.80882263183594, 311.90972900390625, 0.9541486501693726], "9": [467.8379821777344, 434.70684814453125, 0.7470651865005493], "10": [77.80128479003906, 173.65753173828125, 0.9447352886199951], "11": [424.8410949707031, 480.0, 0.2009631097316742], "12": [279.8809509277344, 480.0, 0.31146323680877686], "13": [459.8958435058594, 446.67156982421875, 0.0014914433704689145], "14": [278.19354248046875, 443.20208740234375, 0.0026166255120187998], "15": [423.1083984375, 477.34271240234375, 0.0001407957897754386], "16": [255.5209197998047, 461.1549072265625, 0.00021988083608448505]}} +{"t": 21.439523, "tracked": true, "track_id": 1, "bbox": [38.51425552368164, 61.157100677490234, 561.229248046875, 479.8978576660156], "det_conf": 0.8810133337974548, "mean_kpt_conf": 0.9242647615346041, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9046673797785819, "right_lift": -0.4280934350132988, "left_bend": 0.46679471553542146, "right_bend": 0.606757413812544}, "keypoints": {"0": [347.252685546875, 156.94094848632812, 0.9992450475692749], "1": [367.5594787597656, 134.91018676757812, 0.9981377124786377], "2": [326.8945007324219, 134.07943725585938, 0.9969016313552856], "3": [393.20477294921875, 147.72238159179688, 0.9394509196281433], "4": [294.33819580078125, 145.2962646484375, 0.8228816986083984], "5": [455.0653991699219, 264.036376953125, 0.988598108291626], "6": [232.72938537597656, 249.90367126464844, 0.9975305199623108], "7": [519.7509765625, 401.3665771484375, 0.7959191799163818], "8": [103.81161499023438, 310.9712219238281, 0.9531955718994141], "9": [468.7099914550781, 432.27618408203125, 0.7327200174331665], "10": [88.08503723144531, 164.54660034179688, 0.9423319697380066], "11": [424.9970397949219, 480.0, 0.19723790884017944], "12": [280.9006652832031, 480.0, 0.31116610765457153], "13": [461.3089904785156, 447.56561279296875, 0.0015028385678306222], "14": [283.27728271484375, 444.9353332519531, 0.002724820515140891], "15": [426.49951171875, 478.5919189453125, 0.00014670254313386977], "16": [262.9287414550781, 463.6005554199219, 0.00023579181288369]}} +{"t": 21.505617, "tracked": true, "track_id": 1, "bbox": [64.8019027709961, 62.013038635253906, 558.8004150390625, 479.87939453125], "det_conf": 0.8955985903739929, "mean_kpt_conf": 0.9270634380253878, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9083209325278871, "right_lift": -0.45750452446877177, "left_bend": 0.43516433161149803, "right_bend": 0.626723785837158}, "keypoints": {"0": [347.59600830078125, 157.50894165039062, 0.9992200136184692], "1": [367.22930908203125, 134.99365234375, 0.9979288578033447], "2": [327.3270568847656, 134.40585327148438, 0.996866762638092], "3": [391.9941711425781, 146.3125457763672, 0.9273455142974854], "4": [294.69927978515625, 144.44281005859375, 0.8346039652824402], "5": [453.4495849609375, 262.43695068359375, 0.9887897968292236], "6": [233.0597381591797, 250.16062927246094, 0.9974036812782288], "7": [516.7050170898438, 399.8020324707031, 0.8066954612731934], "8": [108.88262939453125, 314.05078125, 0.9527441263198853], "9": [467.6241455078125, 435.9823913574219, 0.7506716251373291], "10": [97.53044128417969, 167.0497283935547, 0.9454280138015747], "11": [422.7436828613281, 480.0, 0.18878450989723206], "12": [279.668701171875, 480.0, 0.29274603724479675], "13": [460.95343017578125, 441.320556640625, 0.0015636798925697803], "14": [283.267578125, 441.22601318359375, 0.002767588011920452], "15": [422.2783203125, 476.2481689453125, 0.00015340228856075555], "16": [261.11175537109375, 463.4525451660156, 0.00023956074437592179]}} +{"t": 21.571732, "tracked": true, "track_id": 1, "bbox": [84.37957763671875, 62.400325775146484, 556.53271484375, 479.9438781738281], "det_conf": 0.90850830078125, "mean_kpt_conf": 0.9284864230589434, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9044412604140739, "right_lift": -0.4779508167468576, "left_bend": 0.369487851586702, "right_bend": 0.6539894962992204}, "keypoints": {"0": [347.3257751464844, 157.09765625, 0.9992218017578125], "1": [367.11279296875, 134.86318969726562, 0.9980049729347229], "2": [326.76776123046875, 134.31422424316406, 0.9968622922897339], "3": [392.18304443359375, 146.88070678710938, 0.9292641878128052], "4": [294.1360778808594, 145.08984375, 0.8349172472953796], "5": [453.1941223144531, 260.63494873046875, 0.9888949394226074], "6": [233.8130645751953, 249.00888061523438, 0.9973885416984558], "7": [517.8263549804688, 397.663330078125, 0.8187341690063477], "8": [113.31787109375, 314.5731506347656, 0.9564143419265747], "9": [476.7402038574219, 444.5032958984375, 0.747453510761261], "10": [111.21463012695312, 170.01145935058594, 0.9461946487426758], "11": [423.9459228515625, 480.0, 0.19848525524139404], "12": [280.5150146484375, 480.0, 0.3066997230052948], "13": [464.0141906738281, 441.3036193847656, 0.0014813181478530169], "14": [280.08184814453125, 442.53765869140625, 0.0026693069376051426], "15": [426.9703369140625, 479.15313720703125, 0.00014763139188289642], "16": [253.9931640625, 467.2234802246094, 0.00023284195049200207]}} +{"t": 21.638143, "tracked": true, "track_id": 1, "bbox": [90.50554656982422, 62.81058883666992, 558.5196533203125, 480.0], "det_conf": 0.9136145710945129, "mean_kpt_conf": 0.9233713962815024, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9124054780725372, "right_lift": -0.5107150638559892, "left_bend": 0.4593753340406561, "right_bend": 0.6940352004373291}, "keypoints": {"0": [347.2532958984375, 157.50599670410156, 0.999150276184082], "1": [367.0738220214844, 135.20530700683594, 0.9977436065673828], "2": [326.788818359375, 134.57174682617188, 0.9968252182006836], "3": [391.8673400878906, 147.07225036621094, 0.9200913310050964], "4": [293.56658935546875, 144.88705444335938, 0.8449059128761292], "5": [452.78070068359375, 262.8063659667969, 0.9881784319877625], "6": [229.64877319335938, 250.20387268066406, 0.9971693158149719], "7": [515.9268798828125, 403.5751953125, 0.7894734144210815], "8": [110.97207641601562, 320.7010803222656, 0.9468342661857605], "9": [464.0567321777344, 435.3270568847656, 0.736285924911499], "10": [122.09974670410156, 169.70736694335938, 0.9404276609420776], "11": [420.69256591796875, 480.0, 0.17098981142044067], "12": [275.953857421875, 480.0, 0.267578661441803], "13": [460.4848327636719, 439.77178955078125, 0.0015167421661317348], "14": [283.64947509765625, 440.0640869140625, 0.0027234526351094246], "15": [421.4376525878906, 475.4512939453125, 0.0001594412897247821], "16": [264.307861328125, 463.06292724609375, 0.0002499419206287712]}} +{"t": 21.701214, "tracked": true, "track_id": 1, "bbox": [93.17550659179688, 63.56289291381836, 556.8587036132812, 479.86993408203125], "det_conf": 0.916503369808197, "mean_kpt_conf": 0.9292505112561312, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9136212987422481, "right_lift": -0.5199101404321818, "left_bend": 0.42194706265061394, "right_bend": 0.7123028336911572}, "keypoints": {"0": [347.0103759765625, 157.87623596191406, 0.999177873134613], "1": [366.7655334472656, 135.65977478027344, 0.997767448425293], "2": [326.63604736328125, 134.94253540039062, 0.9968744516372681], "3": [391.3185729980469, 147.19383239746094, 0.9170721769332886], "4": [293.4315185546875, 144.68170166015625, 0.849903404712677], "5": [451.206298828125, 261.0971374511719, 0.9892573952674866], "6": [229.21128845214844, 248.57489013671875, 0.9973100423812866], "7": [514.288330078125, 402.85284423828125, 0.8169660568237305], "8": [110.03352355957031, 321.11083984375, 0.9528635740280151], "9": [465.5351257324219, 440.99627685546875, 0.7582740783691406], "10": [128.37060546875, 169.3211669921875, 0.9462891221046448], "11": [419.6343078613281, 480.0, 0.18793560564517975], "12": [274.9698486328125, 480.0, 0.2864161729812622], "13": [460.7497253417969, 440.7705078125, 0.0015152061823755503], "14": [280.5741882324219, 441.92462158203125, 0.0026741705369204283], "15": [421.73822021484375, 477.80487060546875, 0.0001518294884590432], "16": [256.38043212890625, 465.4193115234375, 0.0002339175989618525]}} +{"t": 21.765661, "tracked": true, "track_id": 1, "bbox": [93.36746978759766, 63.41886901855469, 557.0299072265625, 479.9849548339844], "det_conf": 0.9145466685295105, "mean_kpt_conf": 0.9278094876896251, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.907824419282039, "right_lift": -0.5220537784678972, "left_bend": 0.4073170754138064, "right_bend": 0.7189553040947652}, "keypoints": {"0": [346.95257568359375, 157.84068298339844, 0.9991592168807983], "1": [366.91510009765625, 135.9035186767578, 0.9977952241897583], "2": [326.778564453125, 135.01177978515625, 0.9968103766441345], "3": [391.87469482421875, 147.9667510986328, 0.9211252927780151], "4": [293.9329528808594, 144.9917449951172, 0.8469839096069336], "5": [452.43212890625, 261.2260437011719, 0.9889799356460571], "6": [229.18353271484375, 249.1055908203125, 0.9972959160804749], "7": [516.723876953125, 400.40704345703125, 0.812171459197998], "8": [112.24617004394531, 320.6810302734375, 0.9525418877601624], "9": [471.8237609863281, 440.0985107421875, 0.748825192451477], "10": [133.2492218017578, 170.1278076171875, 0.9442159533500671], "11": [421.37835693359375, 480.0, 0.18823620676994324], "12": [275.7147216796875, 480.0, 0.2891501486301422], "13": [464.2035827636719, 439.7397155761719, 0.0014965166337788105], "14": [281.98760986328125, 441.4634704589844, 0.0026946135330945253], "15": [425.86627197265625, 477.34527587890625, 0.000153559900354594], "16": [259.513916015625, 465.09161376953125, 0.0002405915001872927]}} +{"t": 21.801324, "tracked": true, "track_id": 1, "bbox": [93.32894897460938, 63.48727035522461, 556.753173828125, 480.0], "det_conf": 0.9156995415687561, "mean_kpt_conf": 0.9272194667295977, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9137320465255063, "right_lift": -0.525621536345597, "left_bend": 0.4463746179905619, "right_bend": 0.7227219314944827}, "keypoints": {"0": [347.234130859375, 158.2052001953125, 0.9991546869277954], "1": [367.0137939453125, 135.6539306640625, 0.9978064894676208], "2": [326.81915283203125, 135.29461669921875, 0.9967597126960754], "3": [392.2967529296875, 146.81454467773438, 0.9216997623443604], "4": [294.0239562988281, 145.02352905273438, 0.8417305946350098], "5": [453.04302978515625, 261.5860595703125, 0.9886602163314819], "6": [229.98016357421875, 249.34652709960938, 0.9972067475318909], "7": [515.8301391601562, 402.7825927734375, 0.8060136437416077], "8": [112.16972351074219, 322.13641357421875, 0.9506089687347412], "9": [466.09222412109375, 435.86126708984375, 0.7549800276756287], "10": [134.4511260986328, 170.87904357910156, 0.9447932839393616], "11": [420.5518798828125, 480.0, 0.17687810957431793], "12": [274.95343017578125, 480.0, 0.2737556993961334], "13": [461.9706726074219, 438.62481689453125, 0.0014914164785295725], "14": [279.8634033203125, 439.8734436035156, 0.0026728545781224966], "15": [424.2262268066406, 474.55767822265625, 0.0001540836674394086], "16": [256.99224853515625, 463.6060485839844, 0.00024090849910862744]}} +{"t": 21.83583, "tracked": true, "track_id": 1, "bbox": [93.05091094970703, 63.33818054199219, 557.0655517578125, 480.0], "det_conf": 0.9130074381828308, "mean_kpt_conf": 0.924567699432373, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9118945851757108, "right_lift": -0.5284386015232259, "left_bend": 0.4602790133891757, "right_bend": 0.7229808673167248}, "keypoints": {"0": [347.21392822265625, 158.25656127929688, 0.9991230368614197], "1": [367.0975036621094, 135.52149963378906, 0.9977399110794067], "2": [326.76202392578125, 135.34104919433594, 0.996711015701294], "3": [392.683837890625, 146.344970703125, 0.9215883612632751], "4": [294.02044677734375, 144.94544982910156, 0.8410609364509583], "5": [454.02777099609375, 261.1542053222656, 0.9881579279899597], "6": [229.7272491455078, 249.92318725585938, 0.99710613489151], "7": [517.1751098632812, 401.45703125, 0.7932525277137756], "8": [113.17546081542969, 322.4703369140625, 0.9470557570457458], "9": [463.60614013671875, 434.13165283203125, 0.7462301850318909], "10": [134.9779815673828, 171.85177612304688, 0.9422188997268677], "11": [420.95184326171875, 480.0, 0.17106179893016815], "12": [275.1029052734375, 480.0, 0.2663937509059906], "13": [463.5415954589844, 438.308349609375, 0.001505314838141203], "14": [284.9629821777344, 439.9163818359375, 0.0027289274148643017], "15": [423.82757568359375, 474.42529296875, 0.00015830226766411215], "16": [264.739013671875, 463.5909423828125, 0.00024993380066007376]}} +{"t": 21.898502, "tracked": true, "track_id": 1, "bbox": [92.44468688964844, 63.17228698730469, 557.4248657226562, 480.0], "det_conf": 0.9173269271850586, "mean_kpt_conf": 0.9302982633764093, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9075947130471098, "right_lift": -0.5165119361045137, "left_bend": 0.40228063387669816, "right_bend": 0.7181141153810168}, "keypoints": {"0": [348.0364074707031, 158.16650390625, 0.9991926550865173], "1": [367.9996337890625, 136.0034942626953, 0.9978512525558472], "2": [327.628662109375, 135.17855834960938, 0.9969052672386169], "3": [392.95965576171875, 147.89120483398438, 0.9194051027297974], "4": [294.49603271484375, 145.0643310546875, 0.8480863571166992], "5": [452.37451171875, 261.82916259765625, 0.989238977432251], "6": [230.39105224609375, 248.4637908935547, 0.9972844123840332], "7": [517.2518920898438, 402.07623291015625, 0.8214347958564758], "8": [111.3441162109375, 320.2734375, 0.95416659116745], "9": [474.9511413574219, 440.7216796875, 0.7626523375511169], "10": [132.85272216796875, 170.30906677246094, 0.947063148021698], "11": [419.5376281738281, 480.0, 0.18583594262599945], "12": [274.2716064453125, 480.0, 0.28317025303840637], "13": [462.2685852050781, 438.8149719238281, 0.0014667963841930032], "14": [277.49774169921875, 439.8084716796875, 0.002599587431177497], "15": [426.20147705078125, 475.72283935546875, 0.0001494215102866292], "16": [252.09022521972656, 463.9114074707031, 0.00023072899784892797]}} +{"t": 21.936442, "tracked": true, "track_id": 1, "bbox": [91.98323059082031, 63.19508743286133, 557.8167114257812, 480.0], "det_conf": 0.921596884727478, "mean_kpt_conf": 0.9298041029409929, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9114459401373026, "right_lift": -0.5161618211688505, "left_bend": 0.4248024888076405, "right_bend": 0.7124842375400504}, "keypoints": {"0": [348.6892395019531, 158.0083770751953, 0.9991996884346008], "1": [368.51739501953125, 135.7420196533203, 0.9978517293930054], "2": [328.1788330078125, 135.12841796875, 0.9969417452812195], "3": [393.4499206542969, 147.45753479003906, 0.9193307161331177], "4": [294.87353515625, 145.21438598632812, 0.8459399342536926], "5": [453.9773254394531, 261.57830810546875, 0.9893982410430908], "6": [230.75369262695312, 248.18231201171875, 0.9972848892211914], "7": [517.974609375, 403.35577392578125, 0.8213645815849304], "8": [111.77066040039062, 319.8870849609375, 0.9541001915931702], "9": [468.63494873046875, 441.66839599609375, 0.7601684927940369], "10": [130.5367889404297, 170.75218200683594, 0.946264922618866], "11": [419.6251525878906, 480.0, 0.18452690541744232], "12": [273.2085876464844, 480.0, 0.2807891368865967], "13": [461.9171142578125, 438.2943115234375, 0.001436202903278172], "14": [274.02655029296875, 438.43463134765625, 0.002532942919060588], "15": [423.88446044921875, 474.5849609375, 0.0001485656830482185], "16": [246.3063201904297, 462.13336181640625, 0.0002284138899995014]}} +{"t": 21.99813, "tracked": true, "track_id": 1, "bbox": [90.29727172851562, 62.996376037597656, 560.052001953125, 480.0], "det_conf": 0.9185056090354919, "mean_kpt_conf": 0.9263302033597772, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9138544735043482, "right_lift": -0.49257331807434335, "left_bend": 0.47704102724508557, "right_bend": 0.6895075156782131}, "keypoints": {"0": [350.0415954589844, 157.68057250976562, 0.9991889595985413], "1": [369.89111328125, 135.76370239257812, 0.9978390336036682], "2": [329.29644775390625, 135.0377197265625, 0.9969235062599182], "3": [394.7414245605469, 148.58355712890625, 0.9205154180526733], "4": [295.665771484375, 146.30844116210938, 0.8416773080825806], "5": [454.2624206542969, 264.3504638671875, 0.9885438084602356], "6": [232.89137268066406, 249.18109130859375, 0.997154712677002], "7": [516.8115234375, 405.12603759765625, 0.8037595152854919], "8": [111.48623657226562, 317.8963928222656, 0.9501643776893616], "9": [465.13165283203125, 432.70782470703125, 0.7507501840591431], "10": [123.33770751953125, 170.6444854736328, 0.9431154131889343], "11": [420.77581787109375, 480.0, 0.1788068413734436], "12": [276.28948974609375, 480.0, 0.2755149006843567], "13": [460.35528564453125, 441.0649108886719, 0.0014653624966740608], "14": [279.263916015625, 439.049072265625, 0.0025879177264869213], "15": [425.60528564453125, 473.6508483886719, 0.000153337066876702], "16": [256.3627014160156, 460.9056701660156, 0.00023736605362500995]}} +{"t": 22.066016, "tracked": true, "track_id": 1, "bbox": [88.046630859375, 62.4488525390625, 561.0322265625, 480.0], "det_conf": 0.9147753715515137, "mean_kpt_conf": 0.9249859668991782, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9101105843654974, "right_lift": -0.47674893972352395, "left_bend": 0.4081786789517595, "right_bend": 0.6706271891971957}, "keypoints": {"0": [351.7613220214844, 157.92681884765625, 0.999193012714386], "1": [371.2164611816406, 135.60562133789062, 0.9977719187736511], "2": [330.6279296875, 135.2822265625, 0.9970563650131226], "3": [395.4687805175781, 147.63414001464844, 0.9123243689537048], "4": [296.5482177734375, 146.43484497070312, 0.853715717792511], "5": [454.8749084472656, 263.1226501464844, 0.9883557558059692], "6": [233.72073364257812, 249.178466796875, 0.9970216155052185], "7": [518.1071166992188, 402.005615234375, 0.8024131059646606], "8": [111.65725708007812, 315.3798522949219, 0.9481720328330994], "9": [473.37213134765625, 440.90301513671875, 0.7383485436439514], "10": [117.28213500976562, 171.55227661132812, 0.940473198890686], "11": [420.1435241699219, 480.0, 0.1716919094324112], "12": [276.13983154296875, 480.0, 0.26207807660102844], "13": [461.7182922363281, 436.5995178222656, 0.0014577466063201427], "14": [280.84600830078125, 436.728271484375, 0.0025462068151682615], "15": [423.46075439453125, 472.279296875, 0.0001602798147359863], "16": [256.61920166015625, 462.0988464355469, 0.0002440037642372772]}} +{"t": 22.129636, "tracked": true, "track_id": 1, "bbox": [84.04513549804688, 62.23819351196289, 560.221435546875, 480.0], "det_conf": 0.9051772356033325, "mean_kpt_conf": 0.9271880442445929, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9064181840662118, "right_lift": -0.45012956820347794, "left_bend": 0.4474298132364993, "right_bend": 0.6321681526304586}, "keypoints": {"0": [352.25823974609375, 157.608642578125, 0.999240517616272], "1": [371.93109130859375, 135.86849975585938, 0.9978237152099609], "2": [331.4618835449219, 134.83421325683594, 0.9971629977226257], "3": [395.85723876953125, 148.5727996826172, 0.9139857888221741], "4": [297.0843200683594, 145.9175567626953, 0.8489854335784912], "5": [454.6972351074219, 264.0025329589844, 0.9887950420379639], "6": [235.17877197265625, 248.19239807128906, 0.9972687363624573], "7": [518.8662109375, 401.707275390625, 0.8112534284591675], "8": [111.43949890136719, 310.5675354003906, 0.9534072279930115], "9": [470.380126953125, 434.9656677246094, 0.7474296689033508], "10": [104.03897094726562, 167.52906799316406, 0.9437159299850464], "11": [420.8462219238281, 480.0, 0.19442015886306763], "12": [277.4796142578125, 480.0, 0.29654476046562195], "13": [459.8743896484375, 443.0976867675781, 0.001487692934460938], "14": [278.1037292480469, 440.1513977050781, 0.0025925252120941877], "15": [425.50555419921875, 474.1548156738281, 0.00015085497580002993], "16": [254.31158447265625, 460.0392761230469, 0.00023008578864391893]}} +{"t": 22.194319, "tracked": true, "track_id": 1, "bbox": [69.81455993652344, 62.91958999633789, 562.8262939453125, 480.0], "det_conf": 0.894366443157196, "mean_kpt_conf": 0.9279845302755182, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9057765228743486, "right_lift": -0.4342533534514606, "left_bend": 0.45438071095528637, "right_bend": 0.6197383856733103}, "keypoints": {"0": [352.67431640625, 157.93614196777344, 0.9992722868919373], "1": [372.7571105957031, 136.419189453125, 0.9980307221412659], "2": [332.02801513671875, 135.24815368652344, 0.9971829652786255], "3": [397.30615234375, 149.83206176757812, 0.9258416891098022], "4": [298.18524169921875, 146.8730926513672, 0.841074526309967], "5": [455.835205078125, 264.7588806152344, 0.988831639289856], "6": [236.20387268066406, 248.5316925048828, 0.9974555373191833], "7": [520.2861938476562, 402.5226745605469, 0.8125067353248596], "8": [107.32307434082031, 310.6625671386719, 0.9564399719238281], "9": [472.3638916015625, 433.98187255859375, 0.7460035085678101], "10": [96.79609680175781, 166.79275512695312, 0.9451902508735657], "11": [421.46759033203125, 480.0, 0.20096361637115479], "12": [277.7071228027344, 480.0, 0.3108334243297577], "13": [459.7880859375, 445.4426574707031, 0.001465320703573525], "14": [274.79718017578125, 441.63116455078125, 0.0025942197535187006], "15": [428.5655822753906, 476.1990966796875, 0.000144590376294218], "16": [248.451904296875, 461.03857421875, 0.00022467883536592126]}} +{"t": 22.230961, "tracked": true, "track_id": 1, "bbox": [57.185550689697266, 62.245872497558594, 560.6397705078125, 480.0], "det_conf": 0.886009931564331, "mean_kpt_conf": 0.9299520362507213, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8958309007613909, "right_lift": -0.4216227145184377, "left_bend": 0.3835270205970246, "right_bend": 0.6210737970412699}, "keypoints": {"0": [352.8526611328125, 158.37841796875, 0.9993036985397339], "1": [372.7523193359375, 136.93434143066406, 0.9979729056358337], "2": [332.2292175292969, 135.2345733642578, 0.9973804354667664], "3": [396.21490478515625, 150.1734619140625, 0.9134181141853333], "4": [297.4774475097656, 145.96243286132812, 0.8589970469474792], "5": [453.5170593261719, 264.8388977050781, 0.9893368482589722], "6": [234.27200317382812, 247.99221801757812, 0.9974604845046997], "7": [520.978515625, 400.83062744140625, 0.8236913681030273], "8": [105.16925048828125, 308.02130126953125, 0.9576307535171509], "9": [483.7642822265625, 441.22967529296875, 0.7482298016548157], "10": [97.09886169433594, 161.0858154296875, 0.9460509419441223], "11": [419.5252380371094, 480.0, 0.20381349325180054], "12": [275.8442077636719, 480.0, 0.3092014193534851], "13": [458.68084716796875, 444.6826171875, 0.0014524022117257118], "14": [271.7208557128906, 442.23687744140625, 0.0025073038414120674], "15": [427.4447021484375, 477.335205078125, 0.0001420933986082673], "16": [243.61370849609375, 462.01324462890625, 0.0002142285811714828]}} +{"t": 22.293857, "tracked": true, "track_id": 1, "bbox": [37.715721130371094, 62.55086898803711, 562.10302734375, 480.0], "det_conf": 0.8832783102989197, "mean_kpt_conf": 0.9266181642358954, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.902498716108121, "right_lift": -0.4086715329392602, "left_bend": 0.4566327031596594, "right_bend": 0.5940516431767995}, "keypoints": {"0": [353.169189453125, 157.82717895507812, 0.9992823004722595], "1": [373.4410400390625, 136.44076538085938, 0.9980059266090393], "2": [332.2598876953125, 134.75865173339844, 0.9972909092903137], "3": [397.4722595214844, 150.4830322265625, 0.9220191836357117], "4": [297.48492431640625, 146.6143798828125, 0.8491454124450684], "5": [455.2764587402344, 266.05242919921875, 0.9885022640228271], "6": [234.8795623779297, 248.74295043945312, 0.9973211884498596], "7": [520.2755737304688, 402.25543212890625, 0.8039819598197937], "8": [101.41213989257812, 308.50567626953125, 0.9523870348930359], "9": [472.5729675292969, 433.6112060546875, 0.7417095303535461], "10": [83.43952941894531, 166.08016967773438, 0.9431540966033936], "11": [420.4111328125, 480.0, 0.18298888206481934], "12": [277.0729675292969, 480.0, 0.28300702571868896], "13": [457.15997314453125, 441.3460998535156, 0.0014705299399793148], "14": [276.3433837890625, 436.5981750488281, 0.002538925502449274], "15": [424.0148010253906, 474.6470947265625, 0.0001499887730460614], "16": [251.12716674804688, 458.13262939453125, 0.00022859865566715598]}} +{"t": 22.328304, "tracked": true, "track_id": 1, "bbox": [32.460906982421875, 63.31339645385742, 561.4818725585938, 480.0], "det_conf": 0.8865155577659607, "mean_kpt_conf": 0.9289693236351013, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9005982954207024, "right_lift": -0.4170465592499467, "left_bend": 0.4234080122576416, "right_bend": 0.5852806412061935}, "keypoints": {"0": [352.97119140625, 157.86349487304688, 0.9993038177490234], "1": [373.228515625, 136.3075714111328, 0.9980175495147705], "2": [332.37908935546875, 134.526611328125, 0.9973410964012146], "3": [397.1376037597656, 149.4228515625, 0.9211962223052979], "4": [297.6699523925781, 145.2606658935547, 0.8526061773300171], "5": [454.7410583496094, 265.36932373046875, 0.9893368482589722], "6": [234.07810974121094, 248.883056640625, 0.9975179433822632], "7": [520.0220947265625, 400.63140869140625, 0.8167126178741455], "8": [102.1192626953125, 309.43304443359375, 0.9548971056938171], "9": [478.0478820800781, 435.29351806640625, 0.7477990388870239], "10": [79.05374145507812, 168.54559326171875, 0.9439341425895691], "11": [419.18994140625, 480.0, 0.2050471156835556], "12": [275.3209228515625, 480.0, 0.31058740615844727], "13": [455.59027099609375, 446.08270263671875, 0.0015075168339535594], "14": [271.85455322265625, 442.227783203125, 0.0025547759141772985], "15": [423.3212890625, 475.73822021484375, 0.00014407536946237087], "16": [247.6866455078125, 459.7328796386719, 0.00021559145534411073]}} +{"t": 22.364851, "tracked": true, "track_id": 1, "bbox": [28.333646774291992, 63.87656784057617, 562.0902709960938, 479.9949645996094], "det_conf": 0.8892452716827393, "mean_kpt_conf": 0.9294777891852639, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8990815674700372, "right_lift": -0.3954404968873228, "left_bend": 0.4083075208900745, "right_bend": 0.5624130740091657}, "keypoints": {"0": [352.88250732421875, 157.58462524414062, 0.999315619468689], "1": [373.16748046875, 136.70213317871094, 0.9980894923210144], "2": [332.41156005859375, 134.6327667236328, 0.9973636269569397], "3": [397.1789855957031, 151.0001678466797, 0.9283398389816284], "4": [298.2509460449219, 146.347412109375, 0.848739504814148], "5": [454.88336181640625, 266.9862365722656, 0.9895070195198059], "6": [235.68624877929688, 248.09722900390625, 0.9975650310516357], "7": [520.167724609375, 401.0622863769531, 0.8198950886726379], "8": [103.02497863769531, 305.21221923828125, 0.9568067789077759], "9": [478.7744140625, 438.948486328125, 0.7447195649147034], "10": [74.72354125976562, 172.7364501953125, 0.9439141154289246], "11": [418.0953369140625, 480.0, 0.21436433494091034], "12": [275.233154296875, 480.0, 0.32500582933425903], "13": [455.5621032714844, 448.19586181640625, 0.0014857661444693804], "14": [272.7616271972656, 442.09625244140625, 0.0025593391619622707], "15": [423.9861145019531, 477.4156188964844, 0.00014386122347787023], "16": [248.54067993164062, 460.34063720703125, 0.0002185556513722986]}} +{"t": 22.429703, "tracked": true, "track_id": 1, "bbox": [21.624181747436523, 64.31346130371094, 561.6300659179688, 480.0], "det_conf": 0.8891898989677429, "mean_kpt_conf": 0.9295288595286283, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9043236029080245, "right_lift": -0.40785648834664756, "left_bend": 0.4411737509654922, "right_bend": 0.5565208897249823}, "keypoints": {"0": [353.0874938964844, 157.37405395507812, 0.9993360638618469], "1": [373.1483154296875, 136.15126037597656, 0.9981279969215393], "2": [332.34393310546875, 134.58583068847656, 0.9974393844604492], "3": [397.06903076171875, 149.92819213867188, 0.9280482530593872], "4": [297.801025390625, 146.58518981933594, 0.8502681851387024], "5": [455.5806884765625, 266.27581787109375, 0.9896734952926636], "6": [234.74365234375, 249.16058349609375, 0.9976619482040405], "7": [519.6887817382812, 402.09588623046875, 0.8186240792274475], "8": [100.83299255371094, 308.9783020019531, 0.956800103187561], "9": [475.1921081542969, 434.2545166015625, 0.745084285736084], "10": [67.3704833984375, 173.72708129882812, 0.9437536597251892], "11": [418.31134033203125, 480.0, 0.22036324441432953], "12": [274.1480407714844, 480.0, 0.3338609039783478], "13": [453.5134582519531, 450.37322998046875, 0.00151218066457659], "14": [266.95318603515625, 444.8536682128906, 0.0025741704739630222], "15": [421.8699951171875, 477.6748352050781, 0.00014010393351782113], "16": [241.51712036132812, 461.721923828125, 0.000210753787541762]}} +{"t": 22.494214, "tracked": true, "track_id": 1, "bbox": [14.689221382141113, 64.42546081542969, 565.6653442382812, 480.0], "det_conf": 0.8958238959312439, "mean_kpt_conf": 0.9016835418614474, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9177319057834799, "right_lift": -0.34986264407048245, "left_bend": 0.35543368175420775, "right_bend": 0.48456107561665585}, "keypoints": {"0": [354.1045837402344, 157.02767944335938, 0.999118983745575], "1": [373.5567626953125, 134.58615112304688, 0.99724280834198], "2": [332.1040344238281, 134.9091339111328, 0.9973576664924622], "3": [396.4668273925781, 146.87246704101562, 0.8863509297370911], "4": [294.8201904296875, 147.53924560546875, 0.8698300719261169], "5": [455.7292175292969, 265.1800537109375, 0.9832059741020203], "6": [237.30751037597656, 249.3390655517578, 0.9970778226852417], "7": [514.7203369140625, 401.4790954589844, 0.7009380459785461], "8": [108.82632446289062, 297.32232666015625, 0.9465844631195068], "9": [477.8143005371094, 444.57647705078125, 0.6176515817642212], "10": [57.72344970703125, 178.4224853515625, 0.9231606125831604], "11": [429.27227783203125, 480.0, 0.20572707056999207], "12": [291.1788330078125, 475.90673828125, 0.34764906764030457], "13": [453.91363525390625, 456.6042175292969, 0.002247546799480915], "14": [308.1548156738281, 455.4437255859375, 0.004554383922368288], "15": [411.629150390625, 478.8472900390625, 0.00021321215899661183], "16": [303.6774597167969, 473.1637878417969, 0.0003637355112005025]}} +{"t": 22.557556, "tracked": true, "track_id": 1, "bbox": [11.811333656311035, 63.58702850341797, 570.6541748046875, 479.9738464355469], "det_conf": 0.8992272019386292, "mean_kpt_conf": 0.8572578753034273, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9195656442490464, "right_lift": -0.3483406158878815, "left_bend": 0.390616105781643, "right_bend": 0.47969394686011035}, "keypoints": {"0": [354.1309814453125, 156.62074279785156, 0.9991334080696106], "1": [373.042724609375, 134.72218322753906, 0.9972195625305176], "2": [332.2680358886719, 135.12649536132812, 0.997384250164032], "3": [395.2860107421875, 147.99139404296875, 0.8882161378860474], "4": [295.25799560546875, 149.01890563964844, 0.8705453276634216], "5": [455.89691162109375, 266.93389892578125, 0.9841358661651611], "6": [237.74940490722656, 249.838134765625, 0.9971874356269836], "7": [515.03515625, 405.33160400390625, 0.706430971622467], "8": [107.92384338378906, 298.0833435058594, 0.9475895762443542], "9": [473.00592041015625, 444.2871398925781, 0.6211817860603333], "10": [55.35731506347656, 180.24368286132812, 0.923538088798523], "11": [429.0270690917969, 480.0, 0.21109166741371155], "12": [291.43133544921875, 476.60760498046875, 0.3545320928096771], "13": [452.52777099609375, 459.24853515625, 0.0022346717305481434], "14": [308.740234375, 456.2674560546875, 0.0045117284171283245], "15": [410.2325744628906, 480.0, 0.0002058852551272139], "16": [304.1216735839844, 473.93463134765625, 0.0003508738591335714]}} +{"t": 22.624717, "tracked": true, "track_id": 1, "bbox": [11.848405838012695, 63.49668884277344, 567.73681640625, 479.85406494140625], "det_conf": 0.9001752734184265, "mean_kpt_conf": 0.9015623168511824, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9165491950396686, "right_lift": -0.37029897970189646, "left_bend": 0.3594784213288813, "right_bend": 0.49349950563163925}, "keypoints": {"0": [354.2113952636719, 157.01458740234375, 0.9991379976272583], "1": [373.38494873046875, 134.5080108642578, 0.9972423315048218], "2": [332.06085205078125, 135.18240356445312, 0.9974581599235535], "3": [395.9971008300781, 146.87283325195312, 0.8836556077003479], "4": [294.73828125, 148.43954467773438, 0.8757049441337585], "5": [456.1629638671875, 264.9477233886719, 0.9837557077407837], "6": [236.5272979736328, 250.54571533203125, 0.9971369504928589], "7": [516.51708984375, 403.2685241699219, 0.7023760676383972], "8": [107.71826171875, 301.8937683105469, 0.946015477180481], "9": [478.1174011230469, 447.2360534667969, 0.6128877997398376], "10": [56.78807067871094, 181.34945678710938, 0.9218144416809082], "11": [428.90423583984375, 480.0, 0.20106548070907593], "12": [290.1371154785156, 477.67742919921875, 0.3392848074436188], "13": [454.7274169921875, 456.07958984375, 0.0021798124071210623], "14": [307.5610046386719, 455.62353515625, 0.0044008963741362095], "15": [411.37109375, 479.7662658691406, 0.00020853265596088022], "16": [301.626220703125, 474.50250244140625, 0.0003535243449732661]}} +{"t": 22.691558, "tracked": true, "track_id": 1, "bbox": [15.975381851196289, 63.76595687866211, 563.1937866210938, 479.744873046875], "det_conf": 0.8926527500152588, "mean_kpt_conf": 0.9296978332779624, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9056258941025483, "right_lift": -0.4166827420504541, "left_bend": 0.4365153272310259, "right_bend": 0.5553961739915013}, "keypoints": {"0": [352.4219970703125, 157.04478454589844, 0.9993461966514587], "1": [372.0646667480469, 135.9222412109375, 0.9981521964073181], "2": [331.45599365234375, 134.82659912109375, 0.9974907636642456], "3": [395.8360290527344, 149.94085693359375, 0.9290586709976196], "4": [296.88897705078125, 147.85797119140625, 0.853603184223175], "5": [455.8326416015625, 266.5976867675781, 0.990069568157196], "6": [233.33941650390625, 250.94740295410156, 0.9977400302886963], "7": [519.447021484375, 402.44744873046875, 0.8211027979850769], "8": [101.49380493164062, 311.3815612792969, 0.9568498730659485], "9": [476.0794982910156, 434.56060791015625, 0.7410836815834045], "10": [66.21405029296875, 176.4621124267578, 0.9421792030334473], "11": [418.77813720703125, 480.0, 0.23375800251960754], "12": [273.4729919433594, 480.0, 0.3499467372894287], "13": [455.20904541015625, 453.5613708496094, 0.0015187604585662484], "14": [266.0920104980469, 449.24237060546875, 0.0025786294136196375], "15": [422.9587097167969, 479.15863037109375, 0.00013747545017395169], "16": [241.67123413085938, 465.2203369140625, 0.0002062577841570601]}} +{"t": 22.757469, "tracked": true, "track_id": 1, "bbox": [21.90398406982422, 63.73830795288086, 561.746337890625, 479.8238525390625], "det_conf": 0.8943570852279663, "mean_kpt_conf": 0.9320748773488131, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.903267309174386, "right_lift": -0.43717420793606115, "left_bend": 0.44514771696209554, "right_bend": 0.5678313558009157}, "keypoints": {"0": [351.01971435546875, 157.23541259765625, 0.9993426203727722], "1": [371.2288818359375, 136.32012939453125, 0.9981926083564758], "2": [330.3943786621094, 134.7852325439453, 0.9973756074905396], "3": [395.4967041015625, 150.80186462402344, 0.9334450364112854], "4": [296.35809326171875, 147.58645629882812, 0.8438853025436401], "5": [455.50421142578125, 265.1595458984375, 0.9904043674468994], "6": [233.1708984375, 250.22776794433594, 0.9977676868438721], "7": [520.3651123046875, 401.700439453125, 0.832507848739624], "8": [101.9586181640625, 314.0081787109375, 0.958977997303009], "9": [475.3650817871094, 433.5415954589844, 0.7558087706565857], "10": [68.53468322753906, 177.04396057128906, 0.9451158046722412], "11": [419.699462890625, 480.0, 0.23031094670295715], "12": [274.1812744140625, 480.0, 0.34350910782814026], "13": [456.6322021484375, 448.0013732910156, 0.0015260572545230389], "14": [265.4534912109375, 443.3843078613281, 0.0025808745995163918], "15": [423.88983154296875, 477.9954528808594, 0.00013869404210709035], "16": [238.30921936035156, 461.55157470703125, 0.00020863687677774578]}} +{"t": 22.821198, "tracked": true, "track_id": 1, "bbox": [29.006223678588867, 63.98609161376953, 557.501708984375, 479.90301513671875], "det_conf": 0.8889739513397217, "mean_kpt_conf": 0.9285911375826056, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9072167179660188, "right_lift": -0.4203635222917138, "left_bend": 0.4202482706478586, "right_bend": 0.5796709768829944}, "keypoints": {"0": [349.9474182128906, 157.4530487060547, 0.9992960691452026], "1": [369.94854736328125, 135.926513671875, 0.9981858134269714], "2": [329.39337158203125, 135.01318359375, 0.9971829652786255], "3": [394.8889465332031, 149.21913146972656, 0.9373217821121216], "4": [296.23382568359375, 147.12429809570312, 0.8384808897972107], "5": [455.37939453125, 264.9381408691406, 0.9896830320358276], "6": [233.2857208251953, 250.84576416015625, 0.9976599216461182], "7": [517.92138671875, 399.8182373046875, 0.8174068331718445], "8": [101.9595947265625, 311.68707275390625, 0.9560219645500183], "9": [471.9908447265625, 437.32073974609375, 0.7406724095344543], "10": [76.52943420410156, 174.701904296875, 0.9425908327102661], "11": [419.73193359375, 480.0, 0.2224406749010086], "12": [274.8586730957031, 480.0, 0.3371689021587372], "13": [456.59368896484375, 450.0596618652344, 0.0015128165250644088], "14": [270.4476623535156, 447.3709411621094, 0.0026231445372104645], "15": [420.78936767578125, 478.71954345703125, 0.00014324893709272146], "16": [244.2048797607422, 464.88580322265625, 0.00022005299979355186]}} +{"t": 22.855497, "tracked": true, "track_id": 1, "bbox": [34.2384147644043, 63.72795104980469, 558.06005859375, 479.8922424316406], "det_conf": 0.8838959336280823, "mean_kpt_conf": 0.9271667545491998, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9012309100778614, "right_lift": -0.42743850686361295, "left_bend": 0.4201618894897961, "right_bend": 0.5931321685204956}, "keypoints": {"0": [349.7145690917969, 157.9652099609375, 0.9992780089378357], "1": [369.8050537109375, 136.05282592773438, 0.9981010556221008], "2": [329.1768798828125, 135.0037078857422, 0.9971688389778137], "3": [394.55523681640625, 148.5064239501953, 0.9323228001594543], "4": [295.6693115234375, 145.90171813964844, 0.8430105447769165], "5": [454.915771484375, 264.2205810546875, 0.9893708229064941], "6": [232.8549041748047, 250.59530639648438, 0.997566819190979], "7": [519.927490234375, 399.4277648925781, 0.8090948462486267], "8": [102.163818359375, 312.386962890625, 0.9533530473709106], "9": [474.00830078125, 438.027587890625, 0.7376595139503479], "10": [81.08493041992188, 172.03729248046875, 0.9419080018997192], "11": [421.36444091796875, 480.0, 0.2065889686346054], "12": [277.162841796875, 480.0, 0.3156062960624695], "13": [457.40411376953125, 447.87396240234375, 0.0015089830849319696], "14": [276.189697265625, 445.6772155761719, 0.002617359859868884], "15": [420.3265686035156, 477.47515869140625, 0.0001456786849303171], "16": [251.53883361816406, 462.6859130859375, 0.00022358512796927243]}} +{"t": 22.922471, "tracked": true, "track_id": 1, "bbox": [46.82273864746094, 62.11809539794922, 558.6294555664062, 479.861572265625], "det_conf": 0.8813642263412476, "mean_kpt_conf": 0.9261293953115289, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9038510754727944, "right_lift": -0.4584902517640517, "left_bend": 0.4376477463890325, "right_bend": 0.6335891208879869}, "keypoints": {"0": [348.96466064453125, 157.67868041992188, 0.9992545247077942], "1": [368.84161376953125, 136.01588439941406, 0.998051643371582], "2": [328.32757568359375, 135.2918701171875, 0.9971229434013367], "3": [393.6880187988281, 148.96636962890625, 0.929368257522583], "4": [294.8730163574219, 147.0225830078125, 0.8419284224510193], "5": [454.8760986328125, 262.80047607421875, 0.9889645576477051], "6": [232.26132202148438, 250.4080810546875, 0.9974834322929382], "7": [519.452392578125, 399.22149658203125, 0.8068245649337769], "8": [106.22268676757812, 315.432861328125, 0.9541022181510925], "9": [470.9288635253906, 435.1983947753906, 0.7326457500457764], "10": [98.09033203125, 171.938232421875, 0.9416770339012146], "11": [423.6563720703125, 480.0, 0.20962178707122803], "12": [278.2662048339844, 480.0, 0.3224639892578125], "13": [461.7363586425781, 448.1179504394531, 0.001491588307544589], "14": [276.1236267089844, 446.90325927734375, 0.002650423673912883], "15": [426.39764404296875, 480.0, 0.0001448828261345625], "16": [250.52255249023438, 466.0993957519531, 0.00022610192536376417]}} +{"t": 22.985032, "tracked": true, "track_id": 1, "bbox": [74.91942596435547, 63.057247161865234, 556.5579223632812, 479.9308166503906], "det_conf": 0.8983765244483948, "mean_kpt_conf": 0.9271545030853965, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9133888898526213, "right_lift": -0.476548128808069, "left_bend": 0.43925912606400586, "right_bend": 0.6469508909776025}, "keypoints": {"0": [348.3191223144531, 157.60220336914062, 0.9991961121559143], "1": [368.0462646484375, 135.81234741210938, 0.9979193806648254], "2": [327.7012023925781, 135.23464965820312, 0.9968677163124084], "3": [392.9254150390625, 148.50999450683594, 0.9292379021644592], "4": [294.94293212890625, 146.89569091796875, 0.8374101519584656], "5": [452.4134216308594, 263.3396301269531, 0.9887069463729858], "6": [233.93675231933594, 250.25811767578125, 0.9973580241203308], "7": [513.9373168945312, 401.381591796875, 0.8076947927474976], "8": [110.01092529296875, 317.43292236328125, 0.9529281854629517], "9": [465.33074951171875, 435.35992431640625, 0.7474309802055359], "10": [105.0513916015625, 176.0497589111328, 0.9439493417739868], "11": [419.84674072265625, 480.0, 0.19566710293293], "12": [277.6285400390625, 480.0, 0.30229154229164124], "13": [457.31134033203125, 443.5823974609375, 0.0015434774104505777], "14": [278.74798583984375, 442.21673583984375, 0.002739805495366454], "15": [420.7933654785156, 475.58502197265625, 0.00015644441009499133], "16": [254.24093627929688, 463.01971435546875, 0.00024410962942056358]}} +{"t": 23.054405, "tracked": true, "track_id": 1, "bbox": [89.47347259521484, 63.95634841918945, 557.484130859375, 479.92889404296875], "det_conf": 0.9058505296707153, "mean_kpt_conf": 0.9234280586242676, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9102631438662658, "right_lift": -0.5145669542398598, "left_bend": 0.3840472356952813, "right_bend": 0.6783676994243124}, "keypoints": {"0": [347.6662902832031, 157.80709838867188, 0.9991624355316162], "1": [367.40997314453125, 135.7540283203125, 0.9978355765342712], "2": [327.268310546875, 135.42916870117188, 0.996853768825531], "3": [392.50006103515625, 147.5437774658203, 0.9248486757278442], "4": [294.7537841796875, 146.2083740234375, 0.8447999358177185], "5": [453.2401428222656, 261.02825927734375, 0.9884107112884521], "6": [231.84620666503906, 251.00985717773438, 0.997344434261322], "7": [515.99072265625, 398.98809814453125, 0.7984337210655212], "8": [113.86299133300781, 321.8131103515625, 0.9510484933853149], "9": [473.4384765625, 442.0329895019531, 0.7201942205429077], "10": [116.72842407226562, 177.52227783203125, 0.9387766718864441], "11": [422.1512756347656, 480.0, 0.1986943632364273], "12": [277.8418273925781, 480.0, 0.30825725197792053], "13": [464.012451171875, 445.1046142578125, 0.001513341790996492], "14": [282.234130859375, 447.43707275390625, 0.002758268965408206], "15": [426.0384216308594, 479.5124816894531, 0.0001554022019263357], "16": [260.1950378417969, 468.9881286621094, 0.00024563350598327816]}} +{"t": 23.120917, "tracked": true, "track_id": 1, "bbox": [94.28800964355469, 63.361083984375, 558.938720703125, 479.94805908203125], "det_conf": 0.9032975435256958, "mean_kpt_conf": 0.9233996543017301, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9129668236386558, "right_lift": -0.5416509201529365, "left_bend": 0.44047231818597204, "right_bend": 0.7105752816329661}, "keypoints": {"0": [346.4962158203125, 158.2822265625, 0.9991687536239624], "1": [366.70648193359375, 136.1991729736328, 0.9978860020637512], "2": [326.14227294921875, 135.43699645996094, 0.9968441724777222], "3": [392.3882141113281, 148.07269287109375, 0.9251596927642822], "4": [293.3849182128906, 145.58413696289062, 0.8381809592247009], "5": [452.325439453125, 261.3080139160156, 0.9881409406661987], "6": [231.36097717285156, 250.44747924804688, 0.9972900152206421], "7": [514.900634765625, 401.31866455078125, 0.7953810691833496], "8": [115.00881958007812, 325.42010498046875, 0.9516282677650452], "9": [465.9332275390625, 435.3472900390625, 0.727070689201355], "10": [128.2747039794922, 176.99691772460938, 0.9406456351280212], "11": [421.97137451171875, 480.0, 0.19606123864650726], "12": [276.70745849609375, 480.0, 0.30740460753440857], "13": [463.1203308105469, 447.474365234375, 0.0014696919824928045], "14": [275.8836975097656, 448.0986633300781, 0.0027023928705602884], "15": [427.88555908203125, 480.0, 0.0001489304704591632], "16": [249.29287719726562, 467.4693298339844, 0.00023703672923147678]}} +{"t": 23.181346, "tracked": true, "track_id": 1, "bbox": [96.0489730834961, 63.774803161621094, 558.274169921875, 479.8952331542969], "det_conf": 0.905476987361908, "mean_kpt_conf": 0.9277442260222002, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9124095897738426, "right_lift": -0.5651349487663101, "left_bend": 0.4134707056776735, "right_bend": 0.7450638036164062}, "keypoints": {"0": [346.4872131347656, 158.44407653808594, 0.9991499185562134], "1": [366.64788818359375, 136.1224822998047, 0.9978370070457458], "2": [326.0452575683594, 135.61715698242188, 0.9967457056045532], "3": [392.3798828125, 147.56951904296875, 0.9225838780403137], "4": [293.4840393066406, 145.4852294921875, 0.8418303728103638], "5": [452.3126525878906, 259.6884765625, 0.9885137677192688], "6": [230.0357666015625, 249.4683837890625, 0.9972001314163208], "7": [515.5478515625, 400.6595458984375, 0.8107262253761292], "8": [114.905029296875, 328.33447265625, 0.9519117474555969], "9": [470.33172607421875, 438.2450866699219, 0.7537496089935303], "10": [140.0486297607422, 181.235595703125, 0.9449381232261658], "11": [421.1887512207031, 480.0, 0.1809375286102295], "12": [275.6651306152344, 480.0, 0.280743271112442], "13": [462.5611572265625, 439.34283447265625, 0.0014452703762799501], "14": [277.8614807128906, 441.55584716796875, 0.0026142620481550694], "15": [426.03656005859375, 478.7807922363281, 0.00015030188660603017], "16": [253.96420288085938, 467.64349365234375, 0.0002358035126235336]}} +{"t": 23.217415, "tracked": true, "track_id": 1, "bbox": [96.56559753417969, 64.32422637939453, 556.1508178710938, 479.8787841796875], "det_conf": 0.9073449969291687, "mean_kpt_conf": 0.8971701589497653, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9255700628154232, "right_lift": -0.5221875575702307, "left_bend": 0.2822338984663082, "right_bend": 0.7289847181799538}, "keypoints": {"0": [347.1774597167969, 158.09600830078125, 0.9987976551055908], "1": [366.41217041015625, 135.67420959472656, 0.9970856308937073], "2": [326.78363037109375, 136.14842224121094, 0.9962552785873413], "3": [391.06768798828125, 147.02928161621094, 0.907702624797821], "4": [294.56610107421875, 146.7229461669922, 0.8559147119522095], "5": [450.5603332519531, 261.0909729003906, 0.982327938079834], "6": [230.80929565429688, 248.85189819335938, 0.9961490631103516], "7": [509.9555358886719, 406.3045349121094, 0.7002588510513306], "8": [118.697998046875, 317.49755859375, 0.9322221875190735], "9": [478.42083740234375, 464.2477111816406, 0.5941726565361023], "10": [143.26046752929688, 174.375, 0.9079851508140564], "11": [420.1528625488281, 478.378662109375, 0.14968813955783844], "12": [278.7082214355469, 477.0989685058594, 0.2535232603549957], "13": [461.40631103515625, 439.294677734375, 0.0021393653005361557], "14": [294.0789794921875, 445.9873046875, 0.004287059884518385], "15": [418.8379821777344, 480.0, 0.00027271435828879476], "16": [280.2052917480469, 477.8907775878906, 0.00045871196198277175]}} +{"t": 23.25145, "tracked": true, "track_id": 1, "bbox": [97.00312805175781, 65.58477783203125, 556.4594116210938, 479.8478698730469], "det_conf": 0.9086326956748962, "mean_kpt_conf": 0.8956124349073931, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.930139760482761, "right_lift": -0.5324175891075484, "left_bend": 0.3054091976681708, "right_bend": 0.7307457860155042}, "keypoints": {"0": [347.477294921875, 158.214599609375, 0.9988111257553101], "1": [366.6153564453125, 135.81646728515625, 0.9969794750213623], "2": [326.7247314453125, 136.22955322265625, 0.9963988065719604], "3": [390.8162841796875, 147.3579559326172, 0.901557445526123], "4": [293.58642578125, 147.03456115722656, 0.8634899258613586], "5": [451.3171691894531, 262.2269592285156, 0.9830335974693298], "6": [230.00448608398438, 248.64102172851562, 0.996213972568512], "7": [509.66796875, 410.03076171875, 0.695662796497345], "8": [119.96028137207031, 317.8562927246094, 0.9315649271011353], "9": [473.641845703125, 464.6044921875, 0.5832264423370361], "10": [143.4558868408203, 175.39535522460938, 0.9047982692718506], "11": [420.77630615234375, 480.0, 0.15138520300388336], "12": [278.3497619628906, 479.3748474121094, 0.25656402111053467], "13": [458.76287841796875, 441.6793212890625, 0.002091383095830679], "14": [290.7530212402344, 446.8116455078125, 0.00417981157079339], "15": [413.2254333496094, 480.0, 0.0002666181535460055], "16": [276.4921875, 477.2782287597656, 0.0004453300789464265]}} +{"t": 23.31571, "tracked": true, "track_id": 1, "bbox": [97.51482391357422, 67.09785461425781, 554.7594604492188, 479.805908203125], "det_conf": 0.9100118279457092, "mean_kpt_conf": 0.8952851674773477, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9261587719202169, "right_lift": -0.5445214673721961, "left_bend": 0.31467092601340296, "right_bend": 0.750335440966099}, "keypoints": {"0": [347.6892395019531, 158.744140625, 0.9988150596618652], "1": [366.4885559082031, 135.86868286132812, 0.9969190359115601], "2": [326.72607421875, 136.60818481445312, 0.9964720010757446], "3": [390.613525390625, 146.5367431640625, 0.893869161605835], "4": [293.22100830078125, 146.88311767578125, 0.8686100840568542], "5": [451.7176513671875, 262.2330322265625, 0.9828194975852966], "6": [229.52725219726562, 249.0510711669922, 0.9960628151893616], "7": [512.0422973632812, 410.37725830078125, 0.6910933256149292], "8": [120.4544677734375, 319.8620300292969, 0.9290087223052979], "9": [476.3923645019531, 462.2782897949219, 0.5893102288246155], "10": [151.3368377685547, 175.42015075683594, 0.9051569104194641], "11": [420.6038513183594, 480.0, 0.14452864229679108], "12": [277.23785400390625, 478.2623291015625, 0.2448183298110962], "13": [458.80133056640625, 441.47845458984375, 0.0020565034355968237], "14": [287.9322814941406, 447.1772155761719, 0.004087438806891441], "15": [414.4783630371094, 480.0, 0.0002598168211989105], "16": [272.4727478027344, 478.139892578125, 0.00042974232928827405]}} +{"t": 23.382028, "tracked": true, "track_id": 1, "bbox": [96.93450164794922, 66.00343322753906, 552.928466796875, 479.8619689941406], "det_conf": 0.9092521667480469, "mean_kpt_conf": 0.8946875658902255, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9313453517361555, "right_lift": -0.5552848557480683, "left_bend": 0.3268071592982656, "right_bend": 0.7577651981728832}, "keypoints": {"0": [347.40728759765625, 158.50213623046875, 0.9987789988517761], "1": [366.27618408203125, 135.7147216796875, 0.9968065023422241], "2": [326.3815612792969, 136.36114501953125, 0.9963716268539429], "3": [390.3184814453125, 146.43458557128906, 0.8896976709365845], "4": [292.5284423828125, 146.66165161132812, 0.8685468435287476], "5": [451.46026611328125, 260.78997802734375, 0.9824860095977783], "6": [228.54739379882812, 248.7570343017578, 0.9959512948989868], "7": [509.28411865234375, 408.68475341796875, 0.6906074285507202], "8": [120.84658813476562, 320.6669616699219, 0.9276447296142578], "9": [469.4151916503906, 460.69781494140625, 0.5899139046669006], "10": [153.48068237304688, 175.472900390625, 0.9047582149505615], "11": [421.9874572753906, 479.3069152832031, 0.14192160964012146], "12": [278.1755065917969, 477.96820068359375, 0.2401742935180664], "13": [458.77325439453125, 438.78289794921875, 0.0020781138446182013], "14": [288.75054931640625, 445.1993103027344, 0.0040964786894619465], "15": [412.95428466796875, 480.0, 0.0002644606283865869], "16": [274.8481140136719, 478.0118103027344, 0.0004348795337136835]}} +{"t": 23.44928, "tracked": true, "track_id": 1, "bbox": [96.11279296875, 64.65357971191406, 551.6249389648438, 479.9886169433594], "det_conf": 0.9114083647727966, "mean_kpt_conf": 0.8979576392607256, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9305181000205416, "right_lift": -0.5552952635515853, "left_bend": 0.303103446952732, "right_bend": 0.759969222114545}, "keypoints": {"0": [347.1405334472656, 158.7272186279297, 0.9987886548042297], "1": [365.80126953125, 135.84693908691406, 0.9968178272247314], "2": [326.19854736328125, 136.59857177734375, 0.9963807463645935], "3": [389.6007080078125, 146.25877380371094, 0.8871995806694031], "4": [292.6831970214844, 146.70852661132812, 0.8688932061195374], "5": [449.68121337890625, 259.96990966796875, 0.9825109839439392], "6": [228.74453735351562, 248.03445434570312, 0.9958425164222717], "7": [507.7069396972656, 407.3954162597656, 0.7049976587295532], "8": [120.5523681640625, 320.2744140625, 0.9296488165855408], "9": [472.19903564453125, 461.91778564453125, 0.6075467467308044], "10": [154.0447235107422, 175.93203735351562, 0.9089072942733765], "11": [418.7023620605469, 477.8791198730469, 0.13821512460708618], "12": [275.7729187011719, 476.6371765136719, 0.2315244823694229], "13": [456.97027587890625, 433.7080078125, 0.0021161665208637714], "14": [284.4396667480469, 440.7703552246094, 0.0041066729463636875], "15": [411.8495178222656, 479.15093994140625, 0.0002755582390818745], "16": [267.6416931152344, 476.716064453125, 0.00044653049553744495]}} +{"t": 23.484133, "tracked": true, "track_id": 1, "bbox": [96.11357879638672, 64.67202758789062, 553.1438598632812, 480.0], "det_conf": 0.9089227318763733, "mean_kpt_conf": 0.8906734206459739, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9342450474518699, "right_lift": -0.5518408509063728, "left_bend": 0.34140987106315185, "right_bend": 0.7555638579012024}, "keypoints": {"0": [347.236083984375, 158.85821533203125, 0.9987577199935913], "1": [366.17535400390625, 135.8798828125, 0.9968407154083252], "2": [326.340576171875, 136.5813446044922, 0.9963045120239258], "3": [390.6188049316406, 146.24581909179688, 0.8952654004096985], "4": [292.8908386230469, 146.47354125976562, 0.8627871870994568], "5": [452.0976257324219, 262.353515625, 0.981682538986206], "6": [229.06472778320312, 248.7213592529297, 0.9958940744400024], "7": [509.1712646484375, 411.8656311035156, 0.670328676700592], "8": [121.21414184570312, 320.0882263183594, 0.9242969751358032], "9": [467.55487060546875, 460.48846435546875, 0.5745999217033386], "10": [153.1903076171875, 175.94949340820312, 0.900649905204773], "11": [421.43682861328125, 479.6893615722656, 0.1360972821712494], "12": [277.7584228515625, 477.53857421875, 0.23491458594799042], "13": [457.49267578125, 440.5594482421875, 0.002075789263471961], "14": [288.9669189453125, 445.66070556640625, 0.004165136720985174], "15": [412.4350280761719, 480.0, 0.0002707671083044261], "16": [277.0830993652344, 477.1473388671875, 0.00045246959780342877]}} +{"t": 23.544763, "tracked": true, "track_id": 1, "bbox": [95.51260375976562, 65.94947052001953, 553.4700317382812, 480.0], "det_conf": 0.9095808863639832, "mean_kpt_conf": 0.900102436542511, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9289766843651739, "right_lift": -0.5412995610465087, "left_bend": 0.2759889865225201, "right_bend": 0.7513545528912836}, "keypoints": {"0": [347.6300354003906, 159.22647094726562, 0.9988152980804443], "1": [366.4554138183594, 136.20126342773438, 0.9969159364700317], "2": [326.62628173828125, 137.03060913085938, 0.9964158535003662], "3": [390.49468994140625, 146.37939453125, 0.8912500739097595], "4": [293.14288330078125, 146.8759765625, 0.8693910241127014], "5": [450.41436767578125, 260.81005859375, 0.9832367300987244], "6": [228.5552978515625, 248.43942260742188, 0.9960970282554626], "7": [509.0274353027344, 407.917724609375, 0.7142046689987183], "8": [119.38577270507812, 318.71929931640625, 0.9330938458442688], "9": [478.800048828125, 464.87774658203125, 0.6104517579078674], "10": [151.42494201660156, 173.86102294921875, 0.9112545847892761], "11": [419.83575439453125, 480.0, 0.14864659309387207], "12": [276.63311767578125, 479.3102111816406, 0.2474004477262497], "13": [460.33074951171875, 437.6583251953125, 0.0020981240086257458], "14": [288.86083984375, 445.3658447265625, 0.004103058949112892], "15": [415.9706726074219, 480.0, 0.0002656136639416218], "16": [274.5080261230469, 478.92950439453125, 0.0004339029546827078]}} +{"t": 23.608988, "tracked": true, "track_id": 1, "bbox": [94.87022399902344, 65.62654876708984, 552.4153442382812, 480.0], "det_conf": 0.9113544821739197, "mean_kpt_conf": 0.8992589603770863, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9305854959677784, "right_lift": -0.5309936923540283, "left_bend": 0.25852355350475653, "right_bend": 0.7359192029784388}, "keypoints": {"0": [347.8542175292969, 159.11236572265625, 0.9988089799880981], "1": [367.1187744140625, 136.22247314453125, 0.996980607509613], "2": [327.1474609375, 136.6167449951172, 0.9963268637657166], "3": [391.52423095703125, 146.58221435546875, 0.8958118557929993], "4": [294.2337646484375, 146.05966186523438, 0.8629246354103088], "5": [449.2606201171875, 260.6982116699219, 0.9823076725006104], "6": [230.524658203125, 247.9141845703125, 0.99601149559021], "7": [506.6694641113281, 406.6352233886719, 0.7089844942092896], "8": [118.70574951171875, 317.9836120605469, 0.9325501918792725], "9": [479.7940979003906, 464.111083984375, 0.6094179153442383], "10": [144.98416137695312, 174.7029266357422, 0.9117238521575928], "11": [418.4207458496094, 479.0215759277344, 0.1449553370475769], "12": [277.4593505859375, 477.75372314453125, 0.24331901967525482], "13": [458.3332824707031, 436.7294921875, 0.002146851271390915], "14": [290.54144287109375, 444.0484924316406, 0.004205543547868729], "15": [414.95672607421875, 480.0, 0.00027523215976543725], "16": [275.7156066894531, 478.0423889160156, 0.00045163059257902205]}} +{"t": 23.644854, "tracked": true, "track_id": 1, "bbox": [94.51241302490234, 64.81605529785156, 552.77490234375, 480.0], "det_conf": 0.90934157371521, "mean_kpt_conf": 0.8989829421043396, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9280695895092165, "right_lift": -0.517442273201872, "left_bend": 0.27505685667821067, "right_bend": 0.7280164342722738}, "keypoints": {"0": [348.8299255371094, 158.79367065429688, 0.9988334774971008], "1": [367.3646240234375, 135.74215698242188, 0.9970152378082275], "2": [327.9707946777344, 136.74179077148438, 0.9963615536689758], "3": [391.344482421875, 145.90771484375, 0.8961153030395508], "4": [295.0814514160156, 146.9014892578125, 0.8625670075416565], "5": [451.524658203125, 260.5134582519531, 0.9825736880302429], "6": [231.88406372070312, 248.04727172851562, 0.9960116147994995], "7": [510.28021240234375, 406.93731689453125, 0.7080560326576233], "8": [117.80712890625, 317.0281982421875, 0.9320923089981079], "9": [480.30560302734375, 464.1612548828125, 0.6079110503196716], "10": [142.44166564941406, 175.61810302734375, 0.9112750887870789], "11": [421.40069580078125, 477.6336364746094, 0.13921800255775452], "12": [279.87677001953125, 476.2350769042969, 0.23462679982185364], "13": [459.50567626953125, 434.11248779296875, 0.0020914108026772738], "14": [289.95001220703125, 441.1204833984375, 0.004078868310898542], "15": [416.67425537109375, 478.51226806640625, 0.0002679550088942051], "16": [274.2701416015625, 477.260986328125, 0.00043865374755114317]}} +{"t": 23.710949, "tracked": true, "track_id": 1, "bbox": [93.36239624023438, 64.36560821533203, 558.3400268554688, 479.9686584472656], "det_conf": 0.9060684442520142, "mean_kpt_conf": 0.929570815779946, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9162569475995541, "right_lift": -0.5579813276744248, "left_bend": 0.42836814671995627, "right_bend": 0.7330094915770871}, "keypoints": {"0": [348.0963134765625, 159.39450073242188, 0.9991971850395203], "1": [368.242919921875, 137.10426330566406, 0.9978660941123962], "2": [327.46044921875, 136.5016326904297, 0.9969657063484192], "3": [393.4654541015625, 148.62307739257812, 0.917188823223114], "4": [294.2495422363281, 146.40670776367188, 0.848922073841095], "5": [451.9499816894531, 260.42987060546875, 0.9888189435005188], "6": [230.28598022460938, 248.97349548339844, 0.9972485899925232], "7": [514.2227783203125, 402.8641052246094, 0.8187268972396851], "8": [112.28125, 328.3181457519531, 0.9540250897407532], "9": [470.9068603515625, 434.92657470703125, 0.7599327564239502], "10": [133.24148559570312, 179.65655517578125, 0.9463868141174316], "11": [419.19805908203125, 480.0, 0.18625080585479736], "12": [273.32696533203125, 480.0, 0.285697340965271], "13": [461.38409423828125, 440.024658203125, 0.0014434918994084], "14": [270.83990478515625, 441.3891906738281, 0.002555850427597761], "15": [427.03314208984375, 479.2176208496094, 0.000146788326674141], "16": [243.03436279296875, 468.2403564453125, 0.00022548018023371696]}} +{"t": 23.779351, "tracked": true, "track_id": 1, "bbox": [91.69290161132812, 64.70217895507812, 560.22314453125, 479.9861145019531], "det_conf": 0.9107385873794556, "mean_kpt_conf": 0.9303276430476796, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9075602052567604, "right_lift": -0.5427451854669233, "left_bend": 0.4245477651517714, "right_bend": 0.711596121076882}, "keypoints": {"0": [348.5338134765625, 159.27685546875, 0.9992252588272095], "1": [368.7019348144531, 136.84979248046875, 0.9978748559951782], "2": [327.9963073730469, 135.9703369140625, 0.9970491528511047], "3": [393.60986328125, 148.03457641601562, 0.914739727973938], "4": [294.35443115234375, 145.29576110839844, 0.8498003482818604], "5": [452.9503173828125, 259.6417541503906, 0.9891908168792725], "6": [230.583740234375, 249.2356414794922, 0.9972833395004272], "7": [518.0873413085938, 400.41973876953125, 0.822884738445282], "8": [110.109619140625, 327.0865173339844, 0.9538880586624146], "9": [471.385986328125, 437.449462890625, 0.764320433139801], "10": [123.66197204589844, 178.64743041992188, 0.9473473429679871], "11": [421.4051513671875, 480.0, 0.1817053109407425], "12": [275.35345458984375, 480.0, 0.27621427178382874], "13": [462.77069091796875, 437.28448486328125, 0.0014292688574641943], "14": [273.1559753417969, 438.39093017578125, 0.0024798691738396883], "15": [426.020751953125, 477.1683349609375, 0.00014466926222667098], "16": [243.5980224609375, 463.57916259765625, 0.00021910754730924964]}} +{"t": 23.843681, "tracked": true, "track_id": 1, "bbox": [88.88867950439453, 64.2725601196289, 560.5037231445312, 479.86541748046875], "det_conf": 0.9060497283935547, "mean_kpt_conf": 0.9273084889758717, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9118715014377909, "right_lift": -0.5204560914433873, "left_bend": 0.4848640286773571, "right_bend": 0.6872104888450838}, "keypoints": {"0": [349.0845947265625, 159.79608154296875, 0.9992424249649048], "1": [368.6290283203125, 136.5887451171875, 0.9978947043418884], "2": [328.1651916503906, 136.5440673828125, 0.9970669150352478], "3": [393.7169189453125, 146.57864379882812, 0.9159055948257446], "4": [294.5357666015625, 145.79733276367188, 0.8420618772506714], "5": [455.631103515625, 261.87506103515625, 0.9889252781867981], "6": [232.6619873046875, 250.30001831054688, 0.997261643409729], "7": [519.7916259765625, 404.4075927734375, 0.8061326146125793], "8": [109.5867919921875, 325.3159484863281, 0.9509402513504028], "9": [463.98956298828125, 432.7901306152344, 0.758416473865509], "10": [115.49212646484375, 180.49456787109375, 0.9465456008911133], "11": [424.7541809082031, 480.0, 0.17175999283790588], "12": [279.14056396484375, 480.0, 0.2661864161491394], "13": [463.7203063964844, 440.5706481933594, 0.0013849878450855613], "14": [279.5503845214844, 439.64837646484375, 0.002436418319121003], "15": [425.9853210449219, 474.5835266113281, 0.0001400077890139073], "16": [252.8489227294922, 462.2929992675781, 0.00021547307551372796]}} +{"t": 23.909276, "tracked": true, "track_id": 1, "bbox": [81.0736312866211, 63.552757263183594, 558.4267578125, 479.96502685546875], "det_conf": 0.902309000492096, "mean_kpt_conf": 0.92886052348397, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9059426054098875, "right_lift": -0.4995326428413629, "left_bend": 0.4137711361437654, "right_bend": 0.6552473843176745}, "keypoints": {"0": [348.36798095703125, 160.48484802246094, 0.9992641806602478], "1": [367.66888427734375, 137.63134765625, 0.9979953765869141], "2": [327.727294921875, 137.5579833984375, 0.9970955848693848], "3": [392.3642578125, 147.78172302246094, 0.9209838509559631], "4": [294.6686706542969, 147.12928771972656, 0.8431316614151001], "5": [454.1064453125, 261.4325866699219, 0.9893860816955566], "6": [233.01425170898438, 250.9814453125, 0.9973915815353394], "7": [518.9890747070312, 400.26080322265625, 0.8193690776824951], "8": [108.8721923828125, 322.56561279296875, 0.9542620778083801], "9": [473.78033447265625, 438.96923828125, 0.7531193494796753], "10": [103.84977722167969, 180.48829650878906, 0.945466935634613], "11": [422.37603759765625, 480.0, 0.19081971049308777], "12": [277.35784912109375, 480.0, 0.2911404073238373], "13": [460.53253173828125, 440.802490234375, 0.0014461156679317355], "14": [270.3959045410156, 441.2981262207031, 0.002503231866285205], "15": [423.041748046875, 476.0807800292969, 0.00014409351570066065], "16": [239.73895263671875, 464.60845947265625, 0.00021848836331628263]}} +{"t": 23.973505, "tracked": true, "track_id": 1, "bbox": [62.169883728027344, 63.621273040771484, 561.150634765625, 480.0], "det_conf": 0.8936408162117004, "mean_kpt_conf": 0.9292033043774691, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.908124935722082, "right_lift": -0.4781019482561308, "left_bend": 0.4631082289599605, "right_bend": 0.6370168515589638}, "keypoints": {"0": [348.71051025390625, 160.54364013671875, 0.9993020296096802], "1": [367.8247375488281, 137.647216796875, 0.9980728626251221], "2": [328.0491027832031, 137.592529296875, 0.9971792697906494], "3": [392.31036376953125, 147.89703369140625, 0.9230495691299438], "4": [294.6229248046875, 147.36932373046875, 0.8401810526847839], "5": [455.5228271484375, 263.0939025878906, 0.9897721409797668], "6": [232.62057495117188, 251.96739196777344, 0.9975740313529968], "7": [520.1117553710938, 403.18206787109375, 0.8184328079223633], "8": [104.76608276367188, 321.5645446777344, 0.9558089971542358], "9": [468.17095947265625, 434.878173828125, 0.754950225353241], "10": [94.7821044921875, 175.056884765625, 0.9469133615493774], "11": [424.89129638671875, 480.0, 0.1975884884595871], "12": [278.7020263671875, 480.0, 0.30318090319633484], "13": [460.05145263671875, 445.3254699707031, 0.0014338823966681957], "14": [268.7221984863281, 444.4464416503906, 0.0024753191974014044], "15": [422.7806396484375, 476.6114807128906, 0.00013588802539743483], "16": [237.33798217773438, 463.7622985839844, 0.00020661368034780025]}} +{"t": 24.036756, "tracked": true, "track_id": 1, "bbox": [47.31635665893555, 63.63731384277344, 559.0807495117188, 480.0], "det_conf": 0.8913354873657227, "mean_kpt_conf": 0.9304008429700678, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9029636365181742, "right_lift": -0.4680416391739333, "left_bend": 0.45990233534570013, "right_bend": 0.6323712566161945}, "keypoints": {"0": [348.3581237792969, 160.28314208984375, 0.9993202686309814], "1": [368.09759521484375, 137.2294464111328, 0.998267412185669], "2": [327.6806945800781, 137.2679901123047, 0.9971233010292053], "3": [393.68243408203125, 147.76980590820312, 0.9346958994865417], "4": [294.70123291015625, 147.40402221679688, 0.8295006155967712], "5": [457.1885986328125, 261.9093017578125, 0.9898096323013306], "6": [231.95950317382812, 252.87428283691406, 0.9976677298545837], "7": [523.072265625, 400.3505554199219, 0.8219018578529358], "8": [99.179443359375, 323.19921875, 0.9567018747329712], "9": [470.728271484375, 433.9124755859375, 0.7610032558441162], "10": [88.62063598632812, 175.18714904785156, 0.9484174251556396], "11": [426.7752685546875, 480.0, 0.1974548101425171], "12": [279.2681884765625, 480.0, 0.3037623465061188], "13": [461.91534423828125, 444.8642578125, 0.0013960252981632948], "14": [269.43023681640625, 445.02880859375, 0.0024120216257870197], "15": [425.34991455078125, 478.3514099121094, 0.00012980052269995213], "16": [237.20172119140625, 465.0741271972656, 0.00019935582531616092]}} +{"t": 24.07309, "tracked": true, "track_id": 1, "bbox": [38.33722686767578, 64.11931610107422, 560.4462890625, 480.0], "det_conf": 0.8888115882873535, "mean_kpt_conf": 0.9305794184858148, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9058274489365425, "right_lift": -0.48592375128433, "left_bend": 0.45044526465535123, "right_bend": 0.6244603719779864}, "keypoints": {"0": [347.966796875, 160.24783325195312, 0.9993011951446533], "1": [368.1236572265625, 137.5301513671875, 0.998216450214386], "2": [327.600830078125, 137.07510375976562, 0.9970757961273193], "3": [393.79022216796875, 148.4365234375, 0.936305046081543], "4": [294.8985290527344, 147.0380096435547, 0.8309532999992371], "5": [455.9486999511719, 262.35931396484375, 0.9900376796722412], "6": [231.7684783935547, 253.6107635498047, 0.9977275729179382], "7": [520.3409423828125, 400.0406494140625, 0.8239147663116455], "8": [102.73391723632812, 325.35089111328125, 0.956479549407959], "9": [470.421630859375, 433.6925048828125, 0.7596569657325745], "10": [85.640869140625, 179.18746948242188, 0.9467052817344666], "11": [423.4434814453125, 480.0, 0.2072245478630066], "12": [276.5596008300781, 480.0, 0.31536659598350525], "13": [459.55059814453125, 445.419921875, 0.0014730491675436497], "14": [267.5157470703125, 445.5548095703125, 0.002528661396354437], "15": [421.87652587890625, 477.48590087890625, 0.00013736236724071205], "16": [236.86648559570312, 463.4388732910156, 0.00020962390408385545]}} +{"t": 24.106809, "tracked": true, "track_id": 1, "bbox": [33.01777267456055, 64.37767028808594, 561.3447875976562, 479.98126220703125], "det_conf": 0.8921089768409729, "mean_kpt_conf": 0.9310046109286222, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9042351422315557, "right_lift": -0.48078740657190017, "left_bend": 0.47287024789530197, "right_bend": 0.6083495052343392}, "keypoints": {"0": [347.7591247558594, 159.8030548095703, 0.999319314956665], "1": [367.9935302734375, 137.3982696533203, 0.9982532858848572], "2": [327.42584228515625, 136.72738647460938, 0.9971008896827698], "3": [393.5810546875, 148.97872924804688, 0.9386492371559143], "4": [294.7859191894531, 147.17025756835938, 0.8258050680160522], "5": [455.71197509765625, 262.9868469238281, 0.9901806116104126], "6": [233.12228393554688, 252.7532958984375, 0.9977710247039795], "7": [521.1799926757812, 401.6136474609375, 0.8258052468299866], "8": [102.86863708496094, 324.1739807128906, 0.957675576210022], "9": [470.375732421875, 431.1383972167969, 0.7629236578941345], "10": [79.50175476074219, 180.44186401367188, 0.94756680727005], "11": [424.2126159667969, 480.0, 0.21294821798801422], "12": [278.5337219238281, 480.0, 0.3244728147983551], "13": [458.80670166015625, 447.27899169921875, 0.0014884326374158263], "14": [268.5796203613281, 445.2530212402344, 0.0025598211213946342], "15": [423.4210205078125, 478.34063720703125, 0.0001345635246252641], "16": [238.3506622314453, 462.68408203125, 0.00020647344354074448]}} +{"t": 24.140869, "tracked": true, "track_id": 1, "bbox": [29.906200408935547, 64.6302719116211, 561.9994506835938, 480.0], "det_conf": 0.8955413103103638, "mean_kpt_conf": 0.9299825158986178, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9051551587703787, "right_lift": -0.475153166224853, "left_bend": 0.4804148824227237, "right_bend": 0.6035905424075222}, "keypoints": {"0": [347.2165832519531, 159.76406860351562, 0.9993172883987427], "1": [367.6500244140625, 137.04798889160156, 0.9983558058738708], "2": [326.9368896484375, 136.72525024414062, 0.9969835877418518], "3": [394.1253356933594, 148.3545684814453, 0.9462741017341614], "4": [294.9585876464844, 147.2934112548828, 0.8119410276412964], "5": [457.7970886230469, 262.33685302734375, 0.9900022745132446], "6": [233.4123077392578, 253.7314910888672, 0.997803270816803], "7": [522.7465209960938, 400.63818359375, 0.8216506838798523], "8": [101.08699035644531, 325.18798828125, 0.9572964906692505], "9": [466.0193786621094, 431.6711120605469, 0.7622284889221191], "10": [76.50039672851562, 181.69772338867188, 0.9479546546936035], "11": [426.7083740234375, 480.0, 0.2078939825296402], "12": [280.1027526855469, 480.0, 0.3206386864185333], "13": [460.575927734375, 447.0894775390625, 0.001455069170333445], "14": [270.8802185058594, 445.48956298828125, 0.002533770864829421], "15": [423.5592956542969, 479.3102111816406, 0.00013246797607280314], "16": [240.58016967773438, 463.46551513671875, 0.00020688530639745295]}} +{"t": 24.20615, "tracked": true, "track_id": 1, "bbox": [25.2520751953125, 64.9901123046875, 560.4443969726562, 480.0], "det_conf": 0.8969709873199463, "mean_kpt_conf": 0.8863061641653379, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9023631276383448, "right_lift": -0.48646030479986074, "left_bend": 0.4017013022071191, "right_bend": 0.5866762362230072}, "keypoints": {"0": [346.6114807128906, 159.84365844726562, 0.9993368983268738], "1": [367.4920654296875, 136.66159057617188, 0.9984183311462402], "2": [326.20159912109375, 136.41107177734375, 0.9969582557678223], "3": [394.7297058105469, 147.08248901367188, 0.9494258165359497], "4": [294.5857238769531, 146.1490478515625, 0.809675931930542], "5": [456.83294677734375, 261.1311950683594, 0.9908830523490906], "6": [234.637451171875, 253.27223205566406, 0.9979591369628906], "7": [522.1497802734375, 397.88922119140625, 0.8449222445487976], "8": [106.21994018554688, 324.7725524902344, 0.9623153805732727], "9": [479.0062255859375, 438.436767578125, 0.7775238752365112], "10": [73.05793762207031, 186.7115478515625, 0.9511383175849915], "11": [423.3767395019531, 480.0, 0.23848912119865417], "12": [277.3653869628906, 480.0, 0.3571167290210724], "13": [459.5723571777344, 449.69775390625, 0.0014777614269405603], "14": [264.5127258300781, 449.6051025390625, 0.00254980125464499], "15": [423.3102722167969, 479.1680603027344, 0.00012790545588359237], "16": [232.1630401611328, 465.52886962890625, 0.00019751564832404256]}} +{"t": 24.269368, "tracked": true, "track_id": 1, "bbox": [23.65937614440918, 64.77662658691406, 560.6821899414062, 479.88995361328125], "det_conf": 0.8983405828475952, "mean_kpt_conf": 0.932990079576319, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9010789354757278, "right_lift": -0.4891647222402258, "left_bend": 0.42833868944531883, "right_bend": 0.586402791640109}, "keypoints": {"0": [346.5143737792969, 159.64682006835938, 0.9993411898612976], "1": [367.3362121582031, 136.57205200195312, 0.9984298348426819], "2": [326.04376220703125, 136.19960021972656, 0.997008740901947], "3": [394.2817077636719, 147.3970947265625, 0.9492846131324768], "4": [294.0858459472656, 146.3673095703125, 0.809995710849762], "5": [456.59844970703125, 261.4812316894531, 0.990483283996582], "6": [234.3221435546875, 253.8220977783203, 0.9978914856910706], "7": [522.50537109375, 398.42724609375, 0.8371705412864685], "8": [105.44627380371094, 326.1015625, 0.9604494571685791], "9": [474.964599609375, 436.37689208984375, 0.7730254530906677], "10": [71.53233337402344, 187.33042907714844, 0.9498105645179749], "11": [423.29290771484375, 480.0, 0.2255866676568985], "12": [277.1549987792969, 480.0, 0.341933935880661], "13": [457.6318359375, 448.80120849609375, 0.0014615439577028155], "14": [261.9354553222656, 447.9207763671875, 0.002512523205950856], "15": [422.4244384765625, 480.0, 0.00012783607235178351], "16": [229.35739135742188, 465.0079345703125, 0.000196953333215788]}} +{"t": 24.337953, "tracked": true, "track_id": 1, "bbox": [26.415390014648438, 64.5100326538086, 560.3643798828125, 479.724365234375], "det_conf": 0.8954375982284546, "mean_kpt_conf": 0.9298651597716592, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9062896699741918, "right_lift": -0.47942906363433135, "left_bend": 0.44110485153782214, "right_bend": 0.5889237224511135}, "keypoints": {"0": [346.17425537109375, 159.76199340820312, 0.9993067979812622], "1": [366.9963073730469, 136.92166137695312, 0.9983969330787659], "2": [325.92529296875, 136.45370483398438, 0.9968840479850769], "3": [394.02252197265625, 148.09698486328125, 0.9512755274772644], "4": [294.45782470703125, 146.77272033691406, 0.8071133494377136], "5": [455.9183349609375, 263.0812072753906, 0.9901177287101746], "6": [234.3392333984375, 254.31773376464844, 0.9978399276733398], "7": [520.14453125, 400.79931640625, 0.824237585067749], "8": [103.76715087890625, 325.6502685546875, 0.9575607180595398], "9": [469.46533203125, 437.08685302734375, 0.7591631412506104], "10": [72.28164672851562, 185.27392578125, 0.9466210007667542], "11": [421.85479736328125, 480.0, 0.2145778387784958], "12": [276.7679443359375, 480.0, 0.3294241726398468], "13": [455.9252624511719, 449.0290222167969, 0.0014683532062917948], "14": [265.4408874511719, 447.5487060546875, 0.0025529321283102036], "15": [419.31634521484375, 478.43328857421875, 0.00013486783427651972], "16": [233.745849609375, 462.9866943359375, 0.00021016906248405576]}} +{"t": 24.371636, "tracked": true, "track_id": 1, "bbox": [28.374509811401367, 64.55467987060547, 559.170654296875, 479.7147521972656], "det_conf": 0.8940569162368774, "mean_kpt_conf": 0.9301471547646956, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8981154200273025, "right_lift": -0.4772564218952696, "left_bend": 0.4263056622010316, "right_bend": 0.5942847690772984}, "keypoints": {"0": [346.3451843261719, 159.84637451171875, 0.9993151426315308], "1": [366.88079833984375, 137.06192016601562, 0.998363196849823], "2": [326.1220397949219, 136.5735626220703, 0.9969841837882996], "3": [393.32086181640625, 147.99356079101562, 0.9467487931251526], "4": [294.25103759765625, 146.624755859375, 0.8151723742485046], "5": [455.6568908691406, 261.58502197265625, 0.9899874329566956], "6": [233.7683563232422, 253.7373504638672, 0.997787594795227], "7": [522.3208618164062, 397.73193359375, 0.8252735137939453], "8": [103.43496704101562, 324.5213623046875, 0.9575619101524353], "9": [473.2957763671875, 437.93505859375, 0.7577450275421143], "10": [74.683837890625, 183.64695739746094, 0.9466795325279236], "11": [423.36334228515625, 480.0, 0.2131272405385971], "12": [278.0068664550781, 480.0, 0.3264530897140503], "13": [457.5040283203125, 447.4989929199219, 0.0014601919101551175], "14": [266.1459045410156, 446.86895751953125, 0.0025265361182391644], "15": [421.3205261230469, 479.5377502441406, 0.00013315184332896024], "16": [234.18441772460938, 463.79852294921875, 0.00020593356748577207]}} +{"t": 24.435375, "tracked": true, "track_id": 1, "bbox": [33.653072357177734, 64.43486022949219, 559.7740478515625, 479.8055725097656], "det_conf": 0.8903933167457581, "mean_kpt_conf": 0.928558430888436, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9053938706443705, "right_lift": -0.4824129530705819, "left_bend": 0.4324802254639045, "right_bend": 0.6158532448461834}, "keypoints": {"0": [346.0058898925781, 160.164794921875, 0.9992850422859192], "1": [366.6518249511719, 136.90066528320312, 0.9983388185501099], "2": [325.4902648925781, 136.74508666992188, 0.9968631267547607], "3": [393.59423828125, 147.292724609375, 0.9469602108001709], "4": [293.58551025390625, 146.45620727539062, 0.8138242959976196], "5": [455.7720947265625, 262.3009948730469, 0.9897051453590393], "6": [232.6571807861328, 253.9387664794922, 0.9977527260780334], "7": [520.6346435546875, 400.6192626953125, 0.817006528377533], "8": [102.60899353027344, 325.56085205078125, 0.956138014793396], "9": [472.41851806640625, 437.31976318359375, 0.7523461580276489], "10": [82.22067260742188, 180.29782104492188, 0.9459226727485657], "11": [423.3299560546875, 480.0, 0.20669697225093842], "12": [277.3787841796875, 480.0, 0.31986817717552185], "13": [458.01104736328125, 448.8153076171875, 0.0014455470954999328], "14": [267.7891540527344, 449.0073547363281, 0.0025389124639332294], "15": [420.9467468261719, 478.85638427734375, 0.00013451630366034806], "16": [236.76100158691406, 465.2347717285156, 0.00021056999685242772]}} +{"t": 24.503227, "tracked": true, "track_id": 1, "bbox": [43.98699951171875, 63.97223663330078, 557.259765625, 479.8748474121094], "det_conf": 0.8938232660293579, "mean_kpt_conf": 0.9254021969708529, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9049317096461837, "right_lift": -0.47819042032053893, "left_bend": 0.3988045119531957, "right_bend": 0.6204056156227366}, "keypoints": {"0": [344.99151611328125, 160.5080108642578, 0.9992426633834839], "1": [365.4992980957031, 137.0093994140625, 0.9982957243919373], "2": [324.67626953125, 137.15045166015625, 0.9966729879379272], "3": [392.8052062988281, 146.59556579589844, 0.9478188157081604], "4": [293.69720458984375, 146.17190551757812, 0.8087630867958069], "5": [454.7681884765625, 261.46966552734375, 0.9890021085739136], "6": [234.0035400390625, 253.34197998046875, 0.9976534247398376], "7": [519.2830200195312, 398.658203125, 0.8060992360115051], "8": [105.65321350097656, 323.2257995605469, 0.9545911550521851], "9": [476.10150146484375, 439.4945068359375, 0.7376465201377869], "10": [88.22256469726562, 179.06582641601562, 0.9436384439468384], "11": [424.1599426269531, 480.0, 0.20160362124443054], "12": [280.1577453613281, 480.0, 0.31662771105766296], "13": [459.8738098144531, 448.2298278808594, 0.0014595009852200747], "14": [274.6631774902344, 449.7064514160156, 0.0026341406628489494], "15": [423.2879638671875, 478.3576965332031, 0.0001410418190062046], "16": [246.5085906982422, 466.65484619140625, 0.0002256380394101143]}} +{"t": 24.565502, "tracked": true, "track_id": 1, "bbox": [60.10212326049805, 64.10113525390625, 555.3184814453125, 479.8817443847656], "det_conf": 0.9007664322853088, "mean_kpt_conf": 0.9227034232833169, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9084467449664302, "right_lift": -0.47021608807923854, "left_bend": 0.35911404777591294, "right_bend": 0.6359893474120585}, "keypoints": {"0": [345.08013916015625, 160.17242431640625, 0.9991948008537292], "1": [365.12451171875, 136.7293701171875, 0.9982692003250122], "2": [324.6159362792969, 137.56283569335938, 0.996547520160675], "3": [392.6164245605469, 146.46066284179688, 0.9490805864334106], "4": [294.2413024902344, 147.58047485351562, 0.8103731274604797], "5": [454.828125, 261.4096984863281, 0.9883974194526672], "6": [234.41842651367188, 253.84181213378906, 0.997526228427887], "7": [517.206298828125, 396.9770812988281, 0.7971624135971069], "8": [107.67730712890625, 321.3684387207031, 0.9527631402015686], "9": [477.1333312988281, 444.8492736816406, 0.7201712727546692], "10": [98.83766174316406, 179.69212341308594, 0.9402519464492798], "11": [422.91265869140625, 480.0, 0.19877251982688904], "12": [279.13519287109375, 480.0, 0.31440988183021545], "13": [461.35638427734375, 446.95806884765625, 0.0014541459968313575], "14": [276.5682678222656, 450.4894104003906, 0.002689001616090536], "15": [423.1608581542969, 477.41436767578125, 0.00014991742500569671], "16": [248.20565795898438, 469.4540710449219, 0.00024367874721065164]}} +{"t": 24.632691, "tracked": true, "track_id": 1, "bbox": [80.98550415039062, 64.2762680053711, 558.1949462890625, 479.88818359375], "det_conf": 0.9054672122001648, "mean_kpt_conf": 0.9222439852627841, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9125008468160809, "right_lift": -0.5058881973267644, "left_bend": 0.4327689077496684, "right_bend": 0.6647005121839812}, "keypoints": {"0": [345.10675048828125, 160.1156463623047, 0.999173104763031], "1": [365.1007385253906, 136.501220703125, 0.9981586337089539], "2": [324.1642150878906, 137.61509704589844, 0.9965470433235168], "3": [392.5977783203125, 146.16912841796875, 0.944379985332489], "4": [293.0888671875, 147.94403076171875, 0.8094801306724548], "5": [455.6990661621094, 261.1789855957031, 0.9880544543266296], "6": [234.0322265625, 253.15164184570312, 0.9973862767219543], "7": [518.1343994140625, 400.4500732421875, 0.7900195121765137], "8": [111.48951721191406, 325.01922607421875, 0.9507936239242554], "9": [468.61993408203125, 436.75335693359375, 0.7295000553131104], "10": [109.649169921875, 183.34661865234375, 0.9411910176277161], "11": [424.7527160644531, 480.0, 0.1889955997467041], "12": [280.3975830078125, 480.0, 0.30133605003356934], "13": [461.8939208984375, 446.993408203125, 0.0014328641118481755], "14": [279.5521545410156, 448.7667236328125, 0.0026669749058783054], "15": [423.70904541015625, 477.27789306640625, 0.00014824006939306855], "16": [254.1447296142578, 468.82379150390625, 0.00024211162235587835]}} +{"t": 24.699836, "tracked": true, "track_id": 1, "bbox": [90.8934326171875, 64.513916015625, 557.5310668945312, 479.91015625], "det_conf": 0.9107149243354797, "mean_kpt_conf": 0.9254825386134061, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9116902448540363, "right_lift": -0.5352873661491924, "left_bend": 0.4153108658756854, "right_bend": 0.6859920985003201}, "keypoints": {"0": [345.25506591796875, 159.84860229492188, 0.9991852641105652], "1": [365.3480224609375, 136.52310180664062, 0.9981042146682739], "2": [324.4277038574219, 137.15447998046875, 0.996625542640686], "3": [392.46728515625, 146.47506713867188, 0.9388976097106934], "4": [292.8457946777344, 147.21551513671875, 0.8169987201690674], "5": [454.861083984375, 259.8390808105469, 0.988602340221405], "6": [233.42388916015625, 252.82846069335938, 0.9974306225776672], "7": [517.576171875, 398.9964599609375, 0.8061977028846741], "8": [115.21754455566406, 327.7386169433594, 0.9540864825248718], "9": [469.69140625, 438.4753112792969, 0.7403943538665771], "10": [118.02793884277344, 183.36370849609375, 0.9437850713729858], "11": [424.1800231933594, 480.0, 0.19890578091144562], "12": [278.8055419921875, 480.0, 0.31182727217674255], "13": [463.112548828125, 445.98138427734375, 0.0014308214886114001], "14": [274.1393127441406, 448.6995849609375, 0.0026335520669817924], "15": [424.8624267578125, 478.2254638671875, 0.00014419508806895465], "16": [244.97219848632812, 468.63128662109375, 0.00023185127065517008]}} +{"t": 24.765115, "tracked": true, "track_id": 1, "bbox": [94.63029479980469, 64.64391326904297, 560.7138671875, 479.95416259765625], "det_conf": 0.9043551087379456, "mean_kpt_conf": 0.9243172678080472, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9182129350625454, "right_lift": -0.5519848309018017, "left_bend": 0.47468236285585663, "right_bend": 0.71900611102607}, "keypoints": {"0": [344.6709899902344, 160.41009521484375, 0.9991719722747803], "1": [364.8775939941406, 136.43836975097656, 0.9980968832969666], "2": [323.9027404785156, 137.22946166992188, 0.9965702295303345], "3": [392.47723388671875, 145.22915649414062, 0.9377714991569519], "4": [292.4620056152344, 145.93466186523438, 0.8160402178764343], "5": [455.41217041015625, 260.2511901855469, 0.9882534742355347], "6": [230.19418334960938, 252.00523376464844, 0.9973185658454895], "7": [517.3770141601562, 403.898681640625, 0.7935125827789307], "8": [109.51068115234375, 331.89385986328125, 0.9494361281394958], "9": [465.4440002441406, 431.38531494140625, 0.7475659251213074], "10": [125.04664611816406, 182.01116943359375, 0.9437524676322937], "11": [423.38330078125, 480.0, 0.17195217311382294], "12": [276.1658630371094, 480.0, 0.2736015021800995], "13": [462.8109130859375, 443.07928466796875, 0.0013854416320100427], "14": [275.6937561035156, 445.5351867675781, 0.0025439311284571886], "15": [424.76019287109375, 476.80950927734375, 0.00014256393478717655], "16": [249.93247985839844, 468.29205322265625, 0.00022918700415175408]}} +{"t": 24.79848, "tracked": true, "track_id": 1, "bbox": [95.67277526855469, 64.52771759033203, 557.0068359375, 479.93994140625], "det_conf": 0.9085537791252136, "mean_kpt_conf": 0.925384218042547, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.911837363680292, "right_lift": -0.5559303778212886, "left_bend": 0.37146362673530137, "right_bend": 0.7219910781529693}, "keypoints": {"0": [344.68060302734375, 160.033203125, 0.9991507530212402], "1": [365.10394287109375, 136.87002563476562, 0.9980695843696594], "2": [324.20635986328125, 137.20367431640625, 0.9965543746948242], "3": [392.4461975097656, 146.66665649414062, 0.9369680881500244], "4": [292.9452819824219, 146.43765258789062, 0.8231146931648254], "5": [452.83843994140625, 258.08740234375, 0.9882025122642517], "6": [231.42494201660156, 251.87086486816406, 0.9973556995391846], "7": [515.38232421875, 396.9977111816406, 0.8069109320640564], "8": [113.80036926269531, 330.538818359375, 0.9536390900611877], "9": [473.9263610839844, 442.04290771484375, 0.7362054586410522], "10": [129.7530517578125, 183.29872131347656, 0.9430552124977112], "11": [421.61834716796875, 480.0, 0.19766388833522797], "12": [275.8715515136719, 480.0, 0.309538334608078], "13": [463.51104736328125, 445.10382080078125, 0.0014336748281493783], "14": [272.6493225097656, 449.9933166503906, 0.0026514725759625435], "15": [427.18145751953125, 480.0, 0.00014611259393859655], "16": [243.06494140625, 471.9459228515625, 0.00023450670414604247]}} +{"t": 24.833796, "tracked": true, "track_id": 1, "bbox": [96.71000671386719, 64.58021545410156, 558.5784301757812, 479.8704833984375], "det_conf": 0.9036757946014404, "mean_kpt_conf": 0.9223365187644958, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9145788335159634, "right_lift": -0.5767216159264479, "left_bend": 0.4411378588790607, "right_bend": 0.7374155445272536}, "keypoints": {"0": [345.1099853515625, 159.83810424804688, 0.9991300702095032], "1": [365.23492431640625, 136.43499755859375, 0.9979382157325745], "2": [324.3236083984375, 137.0087127685547, 0.9966089725494385], "3": [392.2572326660156, 146.09356689453125, 0.9311792254447937], "4": [292.35345458984375, 146.44778442382812, 0.8284956812858582], "5": [454.7016906738281, 259.7287902832031, 0.9878344535827637], "6": [230.06320190429688, 252.81532287597656, 0.9972386360168457], "7": [517.191162109375, 401.0504150390625, 0.7878846526145935], "8": [116.80319213867188, 332.77154541015625, 0.948636531829834], "9": [468.09869384765625, 434.7266845703125, 0.7306854128837585], "10": [136.5087890625, 183.38504028320312, 0.940069854259491], "11": [423.07415771484375, 480.0, 0.18172292411327362], "12": [275.887451171875, 480.0, 0.2888028621673584], "13": [463.29681396484375, 445.422607421875, 0.001417409861460328], "14": [275.6343078613281, 449.2308654785156, 0.002643947722390294], "15": [424.5333251953125, 479.81488037109375, 0.00014751135313417763], "16": [251.3410186767578, 471.2740478515625, 0.00023784383665770292]}} +{"t": 24.89592, "tracked": true, "track_id": 1, "bbox": [97.37492370605469, 64.74512481689453, 556.58251953125, 479.7993469238281], "det_conf": 0.906287670135498, "mean_kpt_conf": 0.8931145017797296, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9327009529594703, "right_lift": -0.5440883075351389, "left_bend": 0.31473394667003113, "right_bend": 0.7297647484677346}, "keypoints": {"0": [346.02294921875, 158.8514404296875, 0.9987481832504272], "1": [364.9017333984375, 136.10830688476562, 0.9970484375953674], "2": [325.4693298339844, 137.24879455566406, 0.9960536956787109], "3": [389.857421875, 146.85980224609375, 0.912257969379425], "4": [293.5857849121094, 148.26046752929688, 0.8495771288871765], "5": [451.35992431640625, 261.8016357421875, 0.9822800755500793], "6": [230.52093505859375, 251.84616088867188, 0.9962183833122253], "7": [508.268798828125, 408.9771728515625, 0.6842374205589294], "8": [120.22232055664062, 323.37200927734375, 0.9286091923713684], "9": [469.88037109375, 462.77203369140625, 0.5772450566291809], "10": [141.6083984375, 178.4630126953125, 0.9019839763641357], "11": [420.48284912109375, 480.0, 0.14837156236171722], "12": [278.4022521972656, 479.34869384765625, 0.2543521821498871], "13": [457.4798278808594, 441.2986145019531, 0.002144078491255641], "14": [289.8312072753906, 448.5714111328125, 0.0043160500936210155], "15": [411.637451171875, 479.6991271972656, 0.00027647032402455807], "16": [275.4395751953125, 477.2169189453125, 0.0004674041992984712]}} +{"t": 24.930721, "tracked": true, "track_id": 1, "bbox": [97.57040405273438, 64.96461486816406, 553.8333129882812, 479.81402587890625], "det_conf": 0.9080132842063904, "mean_kpt_conf": 0.8972681110555475, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9308904673494711, "right_lift": -0.5485916963842968, "left_bend": 0.2876951816803613, "right_bend": 0.737325415837368}, "keypoints": {"0": [346.12506103515625, 159.020263671875, 0.9987632036209106], "1": [364.9457092285156, 135.93528747558594, 0.9971012473106384], "2": [325.3226623535156, 137.42950439453125, 0.9960494637489319], "3": [390.10406494140625, 146.15553283691406, 0.9117001891136169], "4": [293.4057312011719, 148.32479858398438, 0.8514103293418884], "5": [451.8018798828125, 260.26043701171875, 0.9827734231948853], "6": [230.14630126953125, 251.8376922607422, 0.9962562322616577], "7": [509.1767883300781, 406.468994140625, 0.7011350393295288], "8": [119.78729248046875, 324.2485656738281, 0.9316398501396179], "9": [475.88134765625, 463.31243896484375, 0.5958849191665649], "10": [143.96690368652344, 178.94886779785156, 0.907235324382782], "11": [421.2771301269531, 479.3269958496094, 0.15280865132808685], "12": [278.4681091308594, 479.2918701171875, 0.2585282623767853], "13": [458.9523010253906, 439.8300476074219, 0.0021537295542657375], "14": [288.49163818359375, 449.0147399902344, 0.004293798469007015], "15": [412.36566162109375, 480.0, 0.0002707565145101398], "16": [272.3572692871094, 479.9453125, 0.00045371719170361757]}} +{"t": 24.994086, "tracked": true, "track_id": 1, "bbox": [97.34268951416016, 65.72972869873047, 554.67822265625, 479.89666748046875], "det_conf": 0.9077273607254028, "mean_kpt_conf": 0.8963735374537382, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9290398917704793, "right_lift": -0.5546688129532045, "left_bend": 0.2721299116399354, "right_bend": 0.7377550226808767}, "keypoints": {"0": [346.2125244140625, 159.06161499023438, 0.9987659454345703], "1": [365.07147216796875, 136.1461181640625, 0.9970023036003113], "2": [325.3775329589844, 137.47425842285156, 0.9961785078048706], "3": [389.84796142578125, 146.35287475585938, 0.9055322408676147], "4": [292.9950866699219, 148.1156768798828, 0.8582097291946411], "5": [450.4698486328125, 260.365234375, 0.9830418825149536], "6": [229.5028533935547, 251.15301513671875, 0.9963294863700867], "7": [508.8358459472656, 406.92559814453125, 0.7021147012710571], "8": [121.57748413085938, 323.0973815917969, 0.933035135269165], "9": [479.35498046875, 464.11956787109375, 0.5854842066764832], "10": [144.9842529296875, 177.09454345703125, 0.9044147729873657], "11": [419.0453186035156, 480.0, 0.16488498449325562], "12": [276.5522766113281, 480.0, 0.2770466208457947], "13": [456.75677490234375, 444.1582336425781, 0.0021864697337150574], "14": [286.0274353027344, 453.08807373046875, 0.00437296973541379], "15": [411.1290283203125, 480.0, 0.0002706119848880917], "16": [270.6499328613281, 480.0, 0.00045173693797551095]}} +{"t": 25.061254, "tracked": true, "track_id": 1, "bbox": [97.11898040771484, 65.57162475585938, 555.7197265625, 480.0], "det_conf": 0.9064557552337646, "mean_kpt_conf": 0.8930505568330939, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9278531416866471, "right_lift": -0.5616227381071344, "left_bend": 0.2907957051209315, "right_bend": 0.7450851154373405}, "keypoints": {"0": [346.892333984375, 159.3476104736328, 0.9987817406654358], "1": [365.5726318359375, 136.06219482421875, 0.9968854784965515], "2": [325.8533020019531, 137.37460327148438, 0.9963717460632324], "3": [389.8913879394531, 145.763671875, 0.8949159979820251], "4": [292.62109375, 147.46603393554688, 0.8679124116897583], "5": [452.2552490234375, 260.9161376953125, 0.982742428779602], "6": [227.6954345703125, 251.1442413330078, 0.9961699843406677], "7": [511.843017578125, 409.1647644042969, 0.6859567761421204], "8": [120.34597778320312, 324.0115051269531, 0.9275339841842651], "9": [479.3573303222656, 464.4339599609375, 0.5753452181816101], "10": [146.18417358398438, 176.68240356445312, 0.9009403586387634], "11": [420.755859375, 480.0, 0.14814895391464233], "12": [276.24749755859375, 479.690673828125, 0.2512156069278717], "13": [458.5753479003906, 441.88592529296875, 0.0021051650401204824], "14": [287.03631591796875, 450.5802001953125, 0.004195984918624163], "15": [410.62786865234375, 480.0, 0.0002653135161381215], "16": [273.27239990234375, 480.0, 0.00043937357258982956]}} +{"t": 25.126959, "tracked": true, "track_id": 1, "bbox": [95.98332977294922, 65.22235870361328, 553.8789672851562, 480.0], "det_conf": 0.907800555229187, "mean_kpt_conf": 0.8983848745172675, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9315331803048983, "right_lift": -0.5502649336478838, "left_bend": 0.2853789514325222, "right_bend": 0.7327339139038915}, "keypoints": {"0": [346.411376953125, 158.77322387695312, 0.9987799525260925], "1": [365.66888427734375, 136.34207153320312, 0.9970408082008362], "2": [325.79107666015625, 137.02291870117188, 0.99615877866745], "3": [390.4090881347656, 147.5835723876953, 0.907822847366333], "4": [293.2686462402344, 147.95596313476562, 0.8550038933753967], "5": [450.7232971191406, 260.4758605957031, 0.9831743836402893], "6": [230.0201416015625, 250.67100524902344, 0.9963219165802002], "7": [507.7821350097656, 406.6363830566406, 0.709847629070282], "8": [121.5543212890625, 322.15081787109375, 0.9345224499702454], "9": [473.8382873535156, 465.3263854980469, 0.5957518815994263], "10": [143.32266235351562, 176.61558532714844, 0.9078090786933899], "11": [420.6537170410156, 479.61627197265625, 0.16430185735225677], "12": [278.2918701171875, 478.8323669433594, 0.2752983868122101], "13": [457.2640380859375, 442.37939453125, 0.002208526711910963], "14": [287.491943359375, 450.25238037109375, 0.00437956815585494], "15": [410.4775085449219, 480.0, 0.00027020671404898167], "16": [271.39788818359375, 479.8381042480469, 0.0004499971983022988]}} +{"t": 25.196557, "tracked": true, "track_id": 1, "bbox": [95.25625610351562, 63.80698776245117, 554.255126953125, 480.0], "det_conf": 0.9059696197509766, "mean_kpt_conf": 0.8927943056279962, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.93289506724056, "right_lift": -0.5404152741528402, "left_bend": 0.3016940005363734, "right_bend": 0.7318491356398735}, "keypoints": {"0": [347.364990234375, 159.2197265625, 0.9987956285476685], "1": [366.31854248046875, 136.09268188476562, 0.9970088601112366], "2": [326.6853332519531, 136.90264892578125, 0.996269702911377], "3": [390.886474609375, 146.1476593017578, 0.9015478491783142], "4": [294.0921630859375, 146.69044494628906, 0.8586843609809875], "5": [451.3838806152344, 261.82220458984375, 0.9818108081817627], "6": [230.60565185546875, 250.31190490722656, 0.9960359930992126], "7": [508.7265625, 410.357421875, 0.6787089109420776], "8": [117.83062744140625, 322.74530029296875, 0.9257407188415527], "9": [473.24114990234375, 464.5938720703125, 0.5821154713630676], "10": [140.82745361328125, 177.89157104492188, 0.9040190577507019], "11": [420.66259765625, 478.85369873046875, 0.13430443406105042], "12": [279.0879211425781, 477.56475830078125, 0.23132818937301636], "13": [456.1837158203125, 438.98858642578125, 0.0021040095016360283], "14": [291.45159912109375, 445.8539123535156, 0.004179157316684723], "15": [410.0794677734375, 480.0, 0.00027205602964386344], "16": [277.62152099609375, 478.3362121582031, 0.0004527161945588887]}} +{"t": 25.258915, "tracked": true, "track_id": 1, "bbox": [94.55304718017578, 64.25554656982422, 559.076171875, 480.0], "det_conf": 0.9049731492996216, "mean_kpt_conf": 0.9263219183141534, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9173552730756805, "right_lift": -0.5688893379786313, "left_bend": 0.4083578324319155, "right_bend": 0.7268638556146888}, "keypoints": {"0": [347.03656005859375, 159.68869018554688, 0.9991894364356995], "1": [367.0179138183594, 136.74916076660156, 0.9979085922241211], "2": [326.15789794921875, 136.859619140625, 0.9969136714935303], "3": [392.78460693359375, 146.98541259765625, 0.9206594824790955], "4": [293.3244934082031, 146.39889526367188, 0.8441371917724609], "5": [453.0497741699219, 258.7541809082031, 0.9885624647140503], "6": [230.91311645507812, 249.71841430664062, 0.9972642660140991], "7": [515.3494873046875, 402.32452392578125, 0.8083381056785583], "8": [113.9498291015625, 330.62554931640625, 0.9526617527008057], "9": [471.4410705566406, 439.1069030761719, 0.7407001852989197], "10": [129.89312744140625, 182.96932983398438, 0.9432059526443481], "11": [421.4139709472656, 480.0, 0.18647357821464539], "12": [275.3324279785156, 480.0, 0.28989043831825256], "13": [462.3209228515625, 441.9837341308594, 0.0014239366864785552], "14": [271.08514404296875, 444.73040771484375, 0.0025694817304611206], "15": [425.1258850097656, 480.0, 0.0001458784390706569], "16": [241.60748291015625, 470.56158447265625, 0.0002273886784678325]}} +{"t": 25.327413, "tracked": true, "track_id": 1, "bbox": [91.90718841552734, 64.21038818359375, 558.6866455078125, 479.898193359375], "det_conf": 0.9099881052970886, "mean_kpt_conf": 0.9288236607204784, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9098250284989845, "right_lift": -0.5533233091275815, "left_bend": 0.41414103041516337, "right_bend": 0.706502635401969}, "keypoints": {"0": [347.73980712890625, 159.52447509765625, 0.9992352724075317], "1": [367.94256591796875, 136.4373779296875, 0.9980424642562866], "2": [327.0235290527344, 136.29849243164062, 0.9969435334205627], "3": [394.0065612792969, 146.69374084472656, 0.9262225031852722], "4": [294.2853088378906, 145.6384735107422, 0.8361178040504456], "5": [455.3892822265625, 258.6487731933594, 0.9891353845596313], "6": [232.46505737304688, 250.73275756835938, 0.9973798394203186], "7": [520.395751953125, 401.16839599609375, 0.8175956010818481], "8": [111.03448486328125, 331.3966979980469, 0.9541208744049072], "9": [471.55487060546875, 442.1121826171875, 0.7554454207420349], "10": [120.21023559570312, 184.53668212890625, 0.9468215703964233], "11": [424.5960998535156, 480.0, 0.17938797175884247], "12": [278.17181396484375, 480.0, 0.27776315808296204], "13": [464.3584899902344, 439.0728759765625, 0.0013670203043147922], "14": [273.29327392578125, 441.1201171875, 0.0024275954347103834], "15": [425.70269775390625, 478.07537841796875, 0.00013859251339454204], "16": [240.80142211914062, 465.5977478027344, 0.00021491457300726324]}} +{"t": 25.388686, "tracked": true, "track_id": 1, "bbox": [87.96382141113281, 64.06486511230469, 557.6138305664062, 479.9803771972656], "det_conf": 0.9048826694488525, "mean_kpt_conf": 0.9306580370122736, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9098567659334367, "right_lift": -0.5448606193811462, "left_bend": 0.4102517733090868, "right_bend": 0.680843928131533}, "keypoints": {"0": [348.05126953125, 159.10324096679688, 0.9992484450340271], "1": [367.7557678222656, 136.19198608398438, 0.9979552030563354], "2": [327.4268798828125, 135.94992065429688, 0.9970189332962036], "3": [393.02099609375, 146.39047241210938, 0.9214293360710144], "4": [294.4516906738281, 145.39112854003906, 0.8414983749389648], "5": [454.595458984375, 259.5715026855469, 0.9895910620689392], "6": [232.89794921875, 251.28233337402344, 0.997459352016449], "7": [518.2847290039062, 399.2315979003906, 0.8255050182342529], "8": [113.45498657226562, 328.8943786621094, 0.9557760953903198], "9": [470.8139953613281, 440.01837158203125, 0.7636467814445496], "10": [112.31930541992188, 188.42852783203125, 0.9481098055839539], "11": [423.0835876464844, 480.0, 0.19600580632686615], "12": [277.3356628417969, 480.0, 0.2985040545463562], "13": [462.51123046875, 441.5560302734375, 0.0014319011243060231], "14": [271.5173645019531, 443.034912109375, 0.0025023440830409527], "15": [423.12713623046875, 477.65509033203125, 0.00013964738172944635], "16": [240.5797119140625, 465.6969299316406, 0.0002130197244696319]}} +{"t": 25.453735, "tracked": true, "track_id": 1, "bbox": [78.58499908447266, 63.82999038696289, 560.7145385742188, 479.9609680175781], "det_conf": 0.9036535024642944, "mean_kpt_conf": 0.9296782179312273, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9058274294253729, "right_lift": -0.5366088665640983, "left_bend": 0.44241372972901305, "right_bend": 0.6667282498809831}, "keypoints": {"0": [348.7584533691406, 159.41555786132812, 0.9992701411247253], "1": [368.48187255859375, 136.51483154296875, 0.9980091452598572], "2": [327.9689025878906, 136.43362426757812, 0.9971209168434143], "3": [393.5892333984375, 146.89744567871094, 0.922332227230072], "4": [294.5928955078125, 146.32998657226562, 0.8430914282798767], "5": [456.0971984863281, 259.4892578125, 0.989645779132843], "6": [232.5347442626953, 252.01498413085938, 0.9975308775901794], "7": [521.6513671875, 399.65496826171875, 0.8201701641082764], "8": [110.13786315917969, 329.8495788574219, 0.9548408389091492], "9": [472.4632873535156, 434.650634765625, 0.758080780506134], "10": [104.0081787109375, 186.1181640625, 0.9463680982589722], "11": [425.8201599121094, 480.0, 0.19541728496551514], "12": [279.331787109375, 480.0, 0.2986569404602051], "13": [461.9595642089844, 442.0188293457031, 0.001443140092305839], "14": [271.26910400390625, 443.11346435546875, 0.002500904491171241], "15": [423.00750732421875, 477.103515625, 0.00013876507000532], "16": [241.17758178710938, 464.41851806640625, 0.0002109958732035011]}} +{"t": 25.489066, "tracked": true, "track_id": 1, "bbox": [67.02734375, 63.84098815917969, 559.6593627929688, 480.0], "det_conf": 0.8976009488105774, "mean_kpt_conf": 0.9293683550574563, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.906935111014753, "right_lift": -0.49780036861789323, "left_bend": 0.40488111674128374, "right_bend": 0.6478814948692397}, "keypoints": {"0": [348.2404479980469, 159.00833129882812, 0.9992545247077942], "1": [367.94482421875, 136.5389404296875, 0.9980863332748413], "2": [327.7138366699219, 136.3062744140625, 0.9969887137413025], "3": [393.1431579589844, 147.68408203125, 0.930814266204834], "4": [295.1999206542969, 146.78936767578125, 0.8367083072662354], "5": [453.896240234375, 260.6117248535156, 0.9893167018890381], "6": [233.77166748046875, 251.8129425048828, 0.9975666999816895], "7": [517.5946044921875, 397.7452392578125, 0.8203086256980896], "8": [108.06846618652344, 323.96295166015625, 0.9566213488578796], "9": [473.87469482421875, 437.160888671875, 0.75108402967453], "10": [100.00021362304688, 181.2565460205078, 0.9463023543357849], "11": [423.26251220703125, 480.0, 0.20690596103668213], "12": [278.9364929199219, 480.0, 0.31755825877189636], "13": [460.70208740234375, 444.8702697753906, 0.0014776361640542746], "14": [271.9478759765625, 446.1424560546875, 0.0026005632244050503], "15": [424.1529541015625, 478.50921630859375, 0.00014291112893261015], "16": [241.10494995117188, 466.57086181640625, 0.00022091619030106813]}} +{"t": 25.523514, "tracked": true, "track_id": 1, "bbox": [56.47105026245117, 63.95320510864258, 559.77880859375, 480.0], "det_conf": 0.8918920755386353, "mean_kpt_conf": 0.9292643612081354, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9053869821640494, "right_lift": -0.496024347668154, "left_bend": 0.41028844337930587, "right_bend": 0.6332441419899404}, "keypoints": {"0": [347.6473388671875, 159.75747680664062, 0.9992885589599609], "1": [367.9720764160156, 136.65557861328125, 0.9982544779777527], "2": [327.2264099121094, 136.30165100097656, 0.996977686882019], "3": [394.2572937011719, 146.90383911132812, 0.9386755228042603], "4": [295.0149230957031, 145.60415649414062, 0.8260871767997742], "5": [455.6571350097656, 260.7244567871094, 0.9895800948143005], "6": [234.12899780273438, 252.8580322265625, 0.9976911544799805], "7": [520.1209716796875, 398.1866760253906, 0.8194727897644043], "8": [105.59744262695312, 326.2821350097656, 0.9568905830383301], "9": [475.25146484375, 437.5675354003906, 0.7521197199821472], "10": [91.0491943359375, 181.88865661621094, 0.9468702077865601], "11": [425.10821533203125, 480.0, 0.2069319635629654], "12": [279.675537109375, 480.0, 0.31922173500061035], "13": [460.552978515625, 447.384521484375, 0.0014433125033974648], "14": [269.0816955566406, 448.50677490234375, 0.0025329538621008396], "15": [423.34405517578125, 479.5585632324219, 0.00013527393457479775], "16": [235.65321350097656, 466.2349853515625, 0.0002097830583807081]}} +{"t": 25.587096, "tracked": true, "track_id": 1, "bbox": [35.27459716796875, 63.4513053894043, 559.9203491210938, 480.0], "det_conf": 0.8872392773628235, "mean_kpt_conf": 0.9314215996048667, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9017876367588245, "right_lift": -0.4831371190524901, "left_bend": 0.4166540180584162, "right_bend": 0.6225734921491066}, "keypoints": {"0": [347.80859375, 160.01904296875, 0.9993228912353516], "1": [367.931396484375, 136.67108154296875, 0.9982808828353882], "2": [327.1831359863281, 136.38931274414062, 0.9971169233322144], "3": [393.78167724609375, 146.73318481445312, 0.9363932609558105], "4": [294.4944152832031, 145.66249084472656, 0.8319478034973145], "5": [455.1978759765625, 261.8989562988281, 0.9900230765342712], "6": [232.833984375, 252.93600463867188, 0.9976843595504761], "7": [521.4466552734375, 400.13397216796875, 0.8256286382675171], "8": [101.02249145507812, 325.67132568359375, 0.9561847448348999], "9": [476.9478759765625, 438.2851257324219, 0.7647778987884521], "10": [83.78489685058594, 181.69528198242188, 0.9482771158218384], "11": [422.49505615234375, 480.0, 0.19390322268009186], "12": [276.89996337890625, 480.0, 0.29643166065216064], "13": [457.55908203125, 443.5107116699219, 0.0014096461236476898], "14": [266.29620361328125, 443.8693542480469, 0.002403434831649065], "15": [420.66473388671875, 476.01531982421875, 0.0001333643012912944], "16": [232.93215942382812, 462.79632568359375, 0.00020201384904794395]}} +{"t": 25.623108, "tracked": true, "track_id": 1, "bbox": [30.028779983520508, 63.827239990234375, 560.0158081054688, 480.0], "det_conf": 0.8930043578147888, "mean_kpt_conf": 0.9321732033382762, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9020866595623898, "right_lift": -0.4949741436952315, "left_bend": 0.41667216968259674, "right_bend": 0.617040666846192}, "keypoints": {"0": [346.986572265625, 159.77645874023438, 0.9993199110031128], "1": [367.4080810546875, 137.0520477294922, 0.9983276724815369], "2": [326.90716552734375, 136.28453063964844, 0.9970393776893616], "3": [393.522216796875, 147.83209228515625, 0.941980242729187], "4": [294.82379150390625, 145.79421997070312, 0.8248023986816406], "5": [454.8309020996094, 261.3305358886719, 0.9902149438858032], "6": [232.284912109375, 253.93931579589844, 0.9978142976760864], "7": [519.73046875, 396.9912109375, 0.8315115571022034], "8": [100.73643493652344, 328.87603759765625, 0.9582957625389099], "9": [474.6651611328125, 435.56951904296875, 0.766038715839386], "10": [79.48684692382812, 188.3817138671875, 0.948560357093811], "11": [422.6130676269531, 480.0, 0.21223755180835724], "12": [276.2958068847656, 480.0, 0.3226962089538574], "13": [457.8550109863281, 446.1819152832031, 0.001440156833268702], "14": [262.8102111816406, 446.5810852050781, 0.002456347458064556], "15": [421.8404541015625, 478.65899658203125, 0.00013224509893916547], "16": [228.80963134765625, 463.776611328125, 0.00020097964443266392]}} +{"t": 25.687678, "tracked": true, "track_id": 1, "bbox": [23.13204002380371, 63.96232986450195, 560.2185668945312, 479.98455810546875], "det_conf": 0.8965991735458374, "mean_kpt_conf": 0.9308337298306552, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.897886150957121, "right_lift": -0.4860075863572549, "left_bend": 0.38538538795265764, "right_bend": 0.5893878755125731}, "keypoints": {"0": [347.09716796875, 159.61070251464844, 0.999321699142456], "1": [367.5382080078125, 136.55581665039062, 0.9983737468719482], "2": [326.6961364746094, 136.29177856445312, 0.9970409274101257], "3": [394.0303955078125, 146.91748046875, 0.9461095929145813], "4": [294.7177734375, 146.10101318359375, 0.8224632740020752], "5": [456.4847412109375, 260.89337158203125, 0.9902240633964539], "6": [233.3338165283203, 253.9319610595703, 0.9978408813476562], "7": [522.73681640625, 396.020751953125, 0.827967643737793], "8": [102.6031494140625, 326.6315002441406, 0.9575818181037903], "9": [481.9364013671875, 439.39141845703125, 0.7561930418014526], "10": [71.45962524414062, 191.61248779296875, 0.9460543394088745], "11": [423.858154296875, 480.0, 0.21571527421474457], "12": [277.7668151855469, 480.0, 0.3287637531757355], "13": [457.8832702636719, 446.1773986816406, 0.001457961741834879], "14": [264.45831298828125, 446.8125915527344, 0.002504645846784115], "15": [421.3172607421875, 477.33270263671875, 0.00013444411160890013], "16": [233.70928955078125, 464.13232421875, 0.00020587132894434035]}} +{"t": 25.753524, "tracked": true, "track_id": 1, "bbox": [19.425493240356445, 64.37068176269531, 558.9271850585938, 480.0], "det_conf": 0.8971807956695557, "mean_kpt_conf": 0.9312811927361921, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9027412850512464, "right_lift": -0.4923956278749917, "left_bend": 0.41414673078025754, "right_bend": 0.5871460651386251}, "keypoints": {"0": [346.4959411621094, 159.915283203125, 0.9993276596069336], "1": [367.1177978515625, 137.00164794921875, 0.998384952545166], "2": [326.2572326660156, 136.2550048828125, 0.997025191783905], "3": [393.700439453125, 147.5784912109375, 0.9473893642425537], "4": [294.205810546875, 145.7576141357422, 0.8172817826271057], "5": [455.7258605957031, 262.5977478027344, 0.9902549386024475], "6": [233.28265380859375, 254.16712951660156, 0.9978587031364441], "7": [520.3806762695312, 398.27593994140625, 0.8283748030662537], "8": [102.81072998046875, 327.97906494140625, 0.9581635594367981], "9": [475.3043518066406, 437.36749267578125, 0.7626372575759888], "10": [70.3072509765625, 195.766845703125, 0.9473949074745178], "11": [422.2741394042969, 480.0, 0.21785658597946167], "12": [276.0792236328125, 480.0, 0.3331473171710968], "13": [454.24072265625, 449.53302001953125, 0.00143701140768826], "14": [258.7204895019531, 448.03448486328125, 0.002457119757309556], "15": [418.57574462890625, 478.9637451171875, 0.00013022862549405545], "16": [226.5196075439453, 463.7308349609375, 0.00019870567484758794]}} +{"t": 25.817545, "tracked": true, "track_id": 1, "bbox": [16.162158966064453, 64.31909942626953, 557.550537109375, 479.9244689941406], "det_conf": 0.8988596796989441, "mean_kpt_conf": 0.862503411869208, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9151655956145883, "right_lift": -0.4376978762919141, "left_bend": 0.31309347829050854, "right_bend": 0.5317201562003068}, "keypoints": {"0": [346.7872619628906, 158.5241241455078, 0.9991106390953064], "1": [366.56365966796875, 135.12850952148438, 0.9977216124534607], "2": [325.68817138671875, 136.36944580078125, 0.9968891739845276], "3": [392.5680236816406, 145.33364868164062, 0.9226602911949158], "4": [292.3595886230469, 147.77760314941406, 0.8387063145637512], "5": [453.98480224609375, 261.13934326171875, 0.9843541383743286], "6": [236.4166259765625, 254.26666259765625, 0.9973850846290588], "7": [513.50390625, 396.2740478515625, 0.7268244028091431], "8": [108.18972778320312, 316.6882629394531, 0.9507988095283508], "9": [479.64593505859375, 449.24462890625, 0.6505348682403564], "10": [65.17599487304688, 200.07852172851562, 0.9305452108383179], "11": [428.6435546875, 479.5811767578125, 0.20921564102172852], "12": [290.05059814453125, 477.7411804199219, 0.3545103967189789], "13": [452.0252685546875, 454.50665283203125, 0.0021914367098361254], "14": [298.22528076171875, 458.2392578125, 0.0044804527424275875], "15": [408.07220458984375, 478.93048095703125, 0.00020502624101936817], "16": [284.2472839355469, 474.80169677734375, 0.00035625023883767426]}} +{"t": 25.883702, "tracked": true, "track_id": 1, "bbox": [17.399003982543945, 64.09857940673828, 557.0076293945312, 479.7962646484375], "det_conf": 0.9020830988883972, "mean_kpt_conf": 0.8639270340402921, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9113827478763403, "right_lift": -0.45874280308818566, "left_bend": 0.3137795152591732, "right_bend": 0.5408493134705538}, "keypoints": {"0": [346.42303466796875, 158.77093505859375, 0.9991281628608704], "1": [366.3082275390625, 135.08074951171875, 0.997729480266571], "2": [325.09893798828125, 136.3566131591797, 0.9969496130943298], "3": [392.3180847167969, 144.84713745117188, 0.919019341468811], "4": [291.199951171875, 147.49090576171875, 0.8407450914382935], "5": [454.16357421875, 259.31072998046875, 0.9845655560493469], "6": [235.32479858398438, 255.1221466064453, 0.9973992109298706], "7": [514.8612060546875, 393.72320556640625, 0.734967052936554], "8": [110.0933837890625, 319.7755432128906, 0.9518498778343201], "9": [480.44342041015625, 448.4254455566406, 0.6574711203575134], "10": [66.54615783691406, 199.82534790039062, 0.9318435788154602], "11": [429.69769287109375, 479.1203308105469, 0.21129164099693298], "12": [289.6258239746094, 478.247802734375, 0.35545632243156433], "13": [453.2049560546875, 452.6661682128906, 0.0021783122792840004], "14": [293.9791259765625, 457.97601318359375, 0.004406147636473179], "15": [408.01519775390625, 479.2633972167969, 0.000201347706024535], "16": [277.579345703125, 474.8134765625, 0.0003459668660070747]}} +{"t": 25.918869, "tracked": true, "track_id": 1, "bbox": [20.217403411865234, 63.89347839355469, 559.681396484375, 479.7586669921875], "det_conf": 0.8983166217803955, "mean_kpt_conf": 0.9282924478704279, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8977274695026707, "right_lift": -0.5021101387481754, "left_bend": 0.38613024742658386, "right_bend": 0.5904004614378578}, "keypoints": {"0": [345.1217041015625, 159.52609252929688, 0.9993093013763428], "1": [365.7445373535156, 136.20172119140625, 0.9984404444694519], "2": [324.86102294921875, 136.14476013183594, 0.9969256520271301], "3": [393.1150207519531, 146.15512084960938, 0.9524447917938232], "4": [293.5028076171875, 145.81475830078125, 0.8143798112869263], "5": [456.87139892578125, 261.2587890625, 0.990143895149231], "6": [231.79763793945312, 256.8313903808594, 0.997917115688324], "7": [522.5325927734375, 395.05902099609375, 0.8182824850082397], "8": [102.97209167480469, 331.6282653808594, 0.9554812908172607], "9": [481.2427978515625, 438.7761535644531, 0.7448816895484924], "10": [69.77114868164062, 197.14361572265625, 0.9430104494094849], "11": [424.4735107421875, 480.0, 0.22053714096546173], "12": [277.18389892578125, 480.0, 0.3383479416370392], "13": [458.344482421875, 450.5716552734375, 0.0014553997898474336], "14": [264.12506103515625, 452.5780029296875, 0.0025312136858701706], "15": [420.77374267578125, 478.59747314453125, 0.00013270971248857677], "16": [235.34219360351562, 466.1421203613281, 0.00020599090203177184]}} +{"t": 25.981413, "tracked": true, "track_id": 1, "bbox": [24.855911254882812, 64.10677337646484, 557.4736328125, 479.7259216308594], "det_conf": 0.8936357498168945, "mean_kpt_conf": 0.9275448213924061, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9014307850434111, "right_lift": -0.4884352377770378, "left_bend": 0.36608212869520235, "right_bend": 0.5862304240029669}, "keypoints": {"0": [343.8917236328125, 159.02105712890625, 0.999272882938385], "1": [364.3418884277344, 136.29827880859375, 0.9984536170959473], "2": [323.44146728515625, 136.555419921875, 0.9966995120048523], "3": [391.9405212402344, 147.7992401123047, 0.9572925567626953], "4": [292.88629150390625, 148.29025268554688, 0.8039013147354126], "5": [455.4201354980469, 262.1734313964844, 0.9898855686187744], "6": [233.781982421875, 256.4648742675781, 0.9978366494178772], "7": [519.7222900390625, 396.0630798339844, 0.8194475173950195], "8": [105.175537109375, 328.4519348144531, 0.9561132788658142], "9": [480.84979248046875, 441.9948425292969, 0.7416819334030151], "10": [73.0601806640625, 196.8722381591797, 0.9424082040786743], "11": [423.754150390625, 480.0, 0.2217830866575241], "12": [278.91998291015625, 480.0, 0.34154945611953735], "13": [457.178466796875, 448.27154541015625, 0.001498768455348909], "14": [266.1619873046875, 449.7328796386719, 0.0026468702126294374], "15": [420.7884216308594, 477.4588623046875, 0.00014141350402496755], "16": [236.84274291992188, 466.28326416015625, 0.0002235088322777301]}} +{"t": 26.050091, "tracked": true, "track_id": 1, "bbox": [32.422264099121094, 64.19282531738281, 560.952392578125, 479.7576904296875], "det_conf": 0.8939558267593384, "mean_kpt_conf": 0.922481200911782, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.90529187598, "right_lift": -0.5098522458927587, "left_bend": 0.46860741800884465, "right_bend": 0.6273188727805961}, "keypoints": {"0": [343.3343200683594, 159.704345703125, 0.9992390871047974], "1": [363.9832763671875, 136.23077392578125, 0.9983755350112915], "2": [322.67572021484375, 136.66995239257812, 0.9966423511505127], "3": [391.97393798828125, 146.818359375, 0.9532443284988403], "4": [291.7112121582031, 147.38436889648438, 0.8022021651268005], "5": [455.4856872558594, 262.54193115234375, 0.9887959957122803], "6": [231.96726989746094, 257.23931884765625, 0.997636079788208], "7": [520.212646484375, 400.48486328125, 0.7896358370780945], "8": [101.35391235351562, 334.6500549316406, 0.948867917060852], "9": [470.439697265625, 430.14141845703125, 0.7325904965400696], "10": [81.97193908691406, 191.98414611816406, 0.9400634169578552], "11": [425.5257568359375, 480.0, 0.1852262020111084], "12": [280.06982421875, 480.0, 0.2942279279232025], "13": [459.7734069824219, 446.91619873046875, 0.001435832236893475], "14": [273.549560546875, 448.0017395019531, 0.002573322271928191], "15": [422.9371337890625, 475.3262634277344, 0.00014135862875264138], "16": [244.71485900878906, 463.2901916503906, 0.00022657995577901602]}} +{"t": 26.116636, "tracked": true, "track_id": 1, "bbox": [43.91493225097656, 64.67453002929688, 559.3059692382812, 479.8892822265625], "det_conf": 0.892166793346405, "mean_kpt_conf": 0.9215588515455072, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9077224880996992, "right_lift": -0.515611832817981, "left_bend": 0.4245196690145114, "right_bend": 0.6408536520090904}, "keypoints": {"0": [342.8132019042969, 160.23770141601562, 0.9992223978042603], "1": [363.26385498046875, 136.48741149902344, 0.9983347058296204], "2": [322.0600891113281, 137.18484497070312, 0.9966411590576172], "3": [390.9752197265625, 146.26856994628906, 0.9509508013725281], "4": [290.91180419921875, 147.3145751953125, 0.8115019202232361], "5": [454.2016906738281, 262.017578125, 0.9888594150543213], "6": [230.48464965820312, 257.47247314453125, 0.9976333379745483], "7": [518.5364990234375, 401.20294189453125, 0.7884113788604736], "8": [101.95315551757812, 334.81915283203125, 0.9479898810386658], "9": [472.13482666015625, 437.9725036621094, 0.7201332449913025], "10": [87.2872314453125, 187.48751831054688, 0.9374691247940063], "11": [423.7808837890625, 480.0, 0.1883259415626526], "12": [278.1429443359375, 480.0, 0.29765209555625916], "13": [458.3023681640625, 449.00360107421875, 0.0014367994153872132], "14": [271.44647216796875, 452.152099609375, 0.00257018581032753], "15": [420.0091247558594, 476.93988037109375, 0.00014235608978196979], "16": [242.26547241210938, 466.46417236328125, 0.00022653737687505782]}} +{"t": 26.184148, "tracked": true, "track_id": 1, "bbox": [59.224037170410156, 64.52373504638672, 559.5552368164062, 479.9301452636719], "det_conf": 0.9053370952606201, "mean_kpt_conf": 0.9171603159470991, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9104193605358872, "right_lift": -0.5358165265616036, "left_bend": 0.4284225729608499, "right_bend": 0.656902172090768}, "keypoints": {"0": [342.9140319824219, 160.19525146484375, 0.9991903901100159], "1": [363.27166748046875, 136.55007934570312, 0.998235821723938], "2": [321.9438171386719, 137.24563598632812, 0.9966758489608765], "3": [390.7543640136719, 146.6924591064453, 0.9464437365531921], "4": [290.3507080078125, 147.7833251953125, 0.8194477558135986], "5": [454.14874267578125, 262.5724792480469, 0.9880800843238831], "6": [229.96905517578125, 257.78192138671875, 0.9974278807640076], "7": [517.9261474609375, 402.9303894042969, 0.7691171169281006], "8": [104.72816467285156, 337.26007080078125, 0.9423784613609314], "9": [471.56597900390625, 438.273681640625, 0.6998872756958008], "10": [94.10137939453125, 191.04547119140625, 0.9318791031837463], "11": [424.1540832519531, 480.0, 0.1703474223613739], "12": [278.35772705078125, 480.0, 0.2731345593929291], "13": [458.9051513671875, 445.6048583984375, 0.0014212081441655755], "14": [272.7137145996094, 448.747802734375, 0.0025645724963396788], "15": [419.78094482421875, 475.43231201171875, 0.00015078809519764036], "16": [245.3399658203125, 465.5405578613281, 0.00024031271459534764]}} +{"t": 26.246037, "tracked": true, "track_id": 1, "bbox": [78.2047348022461, 64.75271606445312, 556.8756103515625, 479.8465881347656], "det_conf": 0.9067855477333069, "mean_kpt_conf": 0.9246900677680969, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9113738303004325, "right_lift": -0.5537914960752442, "left_bend": 0.35183602902641925, "right_bend": 0.6716582651432037}, "keypoints": {"0": [342.6627197265625, 159.96047973632812, 0.9992019534111023], "1": [363.0877685546875, 136.74598693847656, 0.998248815536499], "2": [321.7081604003906, 137.24179077148438, 0.9966232776641846], "3": [390.62432861328125, 147.2008056640625, 0.9452939033508301], "4": [290.4280700683594, 147.8895263671875, 0.8194189667701721], "5": [451.62567138671875, 259.47576904296875, 0.9888657927513123], "6": [232.10768127441406, 255.5263671875, 0.9975149631500244], "7": [513.7239990234375, 396.9820861816406, 0.8077025413513184], "8": [110.57621765136719, 336.3558349609375, 0.9524679183959961], "9": [477.4166564941406, 441.7757263183594, 0.7262747287750244], "10": [103.91276550292969, 196.56289672851562, 0.9399778842926025], "11": [423.57720947265625, 480.0, 0.2022000253200531], "12": [279.1226806640625, 480.0, 0.31417545676231384], "13": [462.6361999511719, 445.13165283203125, 0.0014472694601863623], "14": [269.243896484375, 449.8008728027344, 0.002605242421850562], "15": [426.40386962890625, 477.3557434082031, 0.00014610130165237933], "16": [236.15333557128906, 468.76385498046875, 0.00023127191525418311]}} +{"t": 26.310637, "tracked": true, "track_id": 1, "bbox": [89.98104095458984, 64.8031234741211, 555.6541748046875, 479.8583984375], "det_conf": 0.9123749732971191, "mean_kpt_conf": 0.9274079691280018, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9124772533790813, "right_lift": -0.5773933834779582, "left_bend": 0.38015409372420184, "right_bend": 0.7040678628688882}, "keypoints": {"0": [342.5968933105469, 159.9771728515625, 0.9991918206214905], "1": [362.9259033203125, 136.6123046875, 0.998143196105957], "2": [321.3994445800781, 137.17547607421875, 0.9966195821762085], "3": [390.07379150390625, 146.83468627929688, 0.9388161897659302], "4": [289.4486083984375, 147.59417724609375, 0.8241235613822937], "5": [451.613037109375, 258.2333068847656, 0.9891132116317749], "6": [230.62057495117188, 254.38235473632812, 0.9974340796470642], "7": [514.7559814453125, 399.0610656738281, 0.8158620595932007], "8": [111.34898376464844, 338.72955322265625, 0.9526780843734741], "9": [472.44207763671875, 442.45550537109375, 0.7456153631210327], "10": [115.01872253417969, 195.21868896484375, 0.9438905119895935], "11": [424.8455810546875, 480.0, 0.19067668914794922], "12": [279.7509765625, 480.0, 0.2945863902568817], "13": [464.1726989746094, 441.37054443359375, 0.0014143807347863913], "14": [273.12176513671875, 446.0706481933594, 0.0025224126875400543], "15": [426.52593994140625, 477.5098571777344, 0.0001421729539288208], "16": [241.26846313476562, 468.216552734375, 0.00022312109649647027]}} +{"t": 26.345814, "tracked": true, "track_id": 1, "bbox": [92.58804321289062, 65.2311019897461, 557.3457641601562, 479.9736633300781], "det_conf": 0.9119964241981506, "mean_kpt_conf": 0.9249597950415178, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9108730010065147, "right_lift": -0.5993600651703553, "left_bend": 0.42825667584481525, "right_bend": 0.710366299325973}, "keypoints": {"0": [342.54510498046875, 159.86141967773438, 0.9991768002510071], "1": [362.9578857421875, 136.67608642578125, 0.9980826377868652], "2": [321.51043701171875, 137.08114624023438, 0.9966443777084351], "3": [390.1025695800781, 147.20263671875, 0.9376271367073059], "4": [289.3390197753906, 147.6810302734375, 0.824646532535553], "5": [452.43853759765625, 259.08404541015625, 0.9889049530029297], "6": [229.86512756347656, 256.1322937011719, 0.9974101185798645], "7": [516.1754760742188, 399.7627868652344, 0.8040971159934998], "8": [114.45120239257812, 342.5486145019531, 0.9494069814682007], "9": [469.4429931640625, 435.3473205566406, 0.7381748557090759], "10": [117.09896850585938, 196.9533233642578, 0.9403862357139587], "11": [425.1998291015625, 480.0, 0.1921495795249939], "12": [278.96240234375, 480.0, 0.2970269024372101], "13": [464.9479675292969, 443.7369384765625, 0.0014642258174717426], "14": [272.9923400878906, 447.9938049316406, 0.002615164965391159], "15": [427.52783203125, 477.50689697265625, 0.0001440816995454952], "16": [243.4419403076172, 467.14886474609375, 0.00022638881637249142]}} +{"t": 26.409023, "tracked": true, "track_id": 1, "bbox": [95.78663635253906, 64.60162353515625, 554.834716796875, 479.8807373046875], "det_conf": 0.9089633226394653, "mean_kpt_conf": 0.9039195396683433, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9263989767064639, "right_lift": -0.5816824031171164, "left_bend": 0.24882075598763082, "right_bend": 0.7220639226165022}, "keypoints": {"0": [343.2798767089844, 159.49725341796875, 0.9988901019096375], "1": [362.5121765136719, 136.31802368164062, 0.9973795413970947], "2": [322.07568359375, 137.591064453125, 0.9963010549545288], "3": [387.8851318359375, 146.75424194335938, 0.9138079285621643], "4": [289.4288330078125, 148.76913452148438, 0.8511090874671936], "5": [447.6851501464844, 259.60546875, 0.9843360185623169], "6": [228.86782836914062, 254.76007080078125, 0.996536374092102], "7": [506.7894287109375, 405.0180358886719, 0.7356436252593994], "8": [118.08596801757812, 333.9813537597656, 0.9374562501907349], "9": [481.8429870605469, 464.74810791015625, 0.6182565689086914], "10": [129.0906219482422, 191.04611206054688, 0.9133983850479126], "11": [421.68695068359375, 477.6133728027344, 0.17590366303920746], "12": [279.2767639160156, 478.7814025878906, 0.2861332595348358], "13": [463.0406188964844, 443.88604736328125, 0.0021709247957915068], "14": [282.63836669921875, 454.32073974609375, 0.0041521391831338406], "15": [422.1083984375, 480.0, 0.0002471131447236985], "16": [260.2412109375, 479.8929748535156, 0.0004019063198938966]}} +{"t": 26.477113, "tracked": true, "track_id": 1, "bbox": [97.31688690185547, 64.36590576171875, 553.8201293945312, 479.7587890625], "det_conf": 0.9106420874595642, "mean_kpt_conf": 0.8993668772957542, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9280880293872077, "right_lift": -0.5785149945053876, "left_bend": 0.2562782876269039, "right_bend": 0.745770933661397}, "keypoints": {"0": [342.9764709472656, 159.51954650878906, 0.9988203644752502], "1": [362.3406982421875, 136.14505004882812, 0.9973726272583008], "2": [321.561767578125, 137.76918029785156, 0.9961134195327759], "3": [388.3493957519531, 146.75640869140625, 0.9179531931877136], "4": [289.4053649902344, 149.3213348388672, 0.8466750383377075], "5": [449.3664855957031, 259.4786376953125, 0.9827426671981812], "6": [228.82553100585938, 252.88726806640625, 0.9961093068122864], "7": [508.711669921875, 407.3930969238281, 0.7106267213821411], "8": [117.09402465820312, 332.1328125, 0.9305631518363953], "9": [481.5140380859375, 467.71673583984375, 0.6065102219581604], "10": [139.3497772216797, 189.89044189453125, 0.9095489382743835], "11": [421.7875061035156, 474.5576477050781, 0.14597176015377045], "12": [279.34234619140625, 475.1435852050781, 0.2451922595500946], "13": [460.26287841796875, 436.7779541015625, 0.0021267314441502094], "14": [285.3630676269531, 446.6241760253906, 0.004167748149484396], "15": [416.2183837890625, 480.0, 0.000263668829575181], "16": [264.5289001464844, 480.0, 0.0004378790035843849]}} +{"t": 26.54293, "tracked": true, "track_id": 1, "bbox": [98.03033447265625, 64.58383178710938, 551.4320678710938, 479.75439453125], "det_conf": 0.9130530953407288, "mean_kpt_conf": 0.8962632471864874, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9315167937018201, "right_lift": -0.5951298054380342, "left_bend": 0.2834006950764713, "right_bend": 0.7617000435545042}, "keypoints": {"0": [343.3934326171875, 159.44239807128906, 0.9987977743148804], "1": [362.2841796875, 136.22073364257812, 0.9970964193344116], "2": [321.8210144042969, 137.74530029296875, 0.9963148236274719], "3": [387.232177734375, 146.6476287841797, 0.902591347694397], "4": [288.5125732421875, 149.10691833496094, 0.8622819185256958], "5": [448.19580078125, 260.21630859375, 0.9827671051025391], "6": [226.7679443359375, 252.91859436035156, 0.9960235357284546], "7": [506.16314697265625, 408.6842956542969, 0.6988144516944885], "8": [119.00485229492188, 332.7228088378906, 0.9269729852676392], "9": [474.6173400878906, 464.02447509765625, 0.5928393006324768], "10": [145.6923370361328, 189.90060424804688, 0.9043960571289062], "11": [419.8019714355469, 476.41778564453125, 0.15059158205986023], "12": [276.53314208984375, 476.71551513671875, 0.2513520419597626], "13": [457.4222717285156, 440.7728576660156, 0.0021664730738848448], "14": [281.8721008300781, 450.0028076171875, 0.004213640931993723], "15": [411.77911376953125, 480.0, 0.00026814668672159314], "16": [261.84234619140625, 480.0, 0.0004378610465209931]}} +{"t": 26.611655, "tracked": true, "track_id": 1, "bbox": [98.30435180664062, 64.48153686523438, 551.8832397460938, 479.8061218261719], "det_conf": 0.9106940627098083, "mean_kpt_conf": 0.8968971750952981, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9274525022296786, "right_lift": -0.5963277810351723, "left_bend": 0.2679445631852085, "right_bend": 0.7701497993773977}, "keypoints": {"0": [343.7518310546875, 159.24710083007812, 0.9988259673118591], "1": [362.47711181640625, 135.89669799804688, 0.9970961809158325], "2": [322.1051025390625, 137.46449279785156, 0.9964491128921509], "3": [387.3804626464844, 146.06874084472656, 0.8971524834632874], "4": [288.4312744140625, 148.53305053710938, 0.8677787184715271], "5": [448.94830322265625, 260.30096435546875, 0.9831424355506897], "6": [226.17953491210938, 252.8345947265625, 0.99607253074646], "7": [508.2228698730469, 407.31439208984375, 0.7032376527786255], "8": [120.69084167480469, 331.1983947753906, 0.9288390278816223], "9": [480.99920654296875, 462.4671936035156, 0.5925019383430481], "10": [151.33761596679688, 187.259033203125, 0.9047728776931763], "11": [420.93707275390625, 475.893310546875, 0.1586574912071228], "12": [276.0793762207031, 476.45050048828125, 0.26273295283317566], "13": [461.73583984375, 442.723388671875, 0.002144418191164732], "14": [280.7745056152344, 452.7559814453125, 0.004193891305476427], "15": [417.52838134765625, 480.0, 0.00025844734045676887], "16": [260.1956481933594, 480.0, 0.00042184823541902006]}} +{"t": 26.674925, "tracked": true, "track_id": 1, "bbox": [97.8868408203125, 63.727317810058594, 550.9061279296875, 479.9122009277344], "det_conf": 0.9111367464065552, "mean_kpt_conf": 0.8982095393267545, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9301334227327788, "right_lift": -0.6055971801825368, "left_bend": 0.2695198913466675, "right_bend": 0.7806644413836563}, "keypoints": {"0": [344.5468444824219, 159.71266174316406, 0.9988275170326233], "1": [363.11285400390625, 135.88153076171875, 0.9970213770866394], "2": [322.455810546875, 137.72537231445312, 0.9964849948883057], "3": [387.782958984375, 145.3033905029297, 0.8893394470214844], "4": [288.0691223144531, 148.491455078125, 0.8730068206787109], "5": [449.5130615234375, 259.62725830078125, 0.9831315279006958], "6": [225.692138671875, 252.7032012939453, 0.9959285855293274], "7": [508.1094665527344, 408.0456848144531, 0.7060278654098511], "8": [120.00746154785156, 333.1312561035156, 0.9267994165420532], "9": [479.1361083984375, 464.9847412109375, 0.6062173247337341], "10": [153.7078094482422, 189.98605346679688, 0.907520055770874], "11": [420.7847595214844, 475.94622802734375, 0.14656877517700195], "12": [275.60504150390625, 476.6309814453125, 0.24248383939266205], "13": [457.7147216796875, 438.7898254394531, 0.0021195081062614918], "14": [278.1314697265625, 449.3252868652344, 0.004061747808009386], "15": [411.04986572265625, 480.0, 0.00025933768483810127], "16": [257.7359924316406, 480.0, 0.0004149091837462038]}} +{"t": 26.738014, "tracked": true, "track_id": 1, "bbox": [97.05702209472656, 62.98954391479492, 553.2496948242188, 479.99725341796875], "det_conf": 0.9091368913650513, "mean_kpt_conf": 0.8984960317611694, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9294780735054085, "right_lift": -0.6070448576364135, "left_bend": 0.28545043402566705, "right_bend": 0.7816465263199509}, "keypoints": {"0": [343.9329528808594, 159.63763427734375, 0.9988265633583069], "1": [363.03118896484375, 135.9272003173828, 0.9970711469650269], "2": [322.3210754394531, 137.16842651367188, 0.996403694152832], "3": [388.25555419921875, 145.50006103515625, 0.8946864604949951], "4": [288.53204345703125, 147.12586975097656, 0.8649397492408752], "5": [449.1513671875, 260.05975341796875, 0.9827421307563782], "6": [226.33714294433594, 251.99652099609375, 0.9959224462509155], "7": [508.1329650878906, 408.67852783203125, 0.7030215859413147], "8": [120.2154541015625, 333.0626525878906, 0.9273164868354797], "9": [477.1531677246094, 462.91558837890625, 0.6124660968780518], "10": [154.19525146484375, 189.54449462890625, 0.9100599884986877], "11": [420.57330322265625, 475.9468688964844, 0.1435161679983139], "12": [276.0570983886719, 476.19952392578125, 0.23946219682693481], "13": [459.52020263671875, 439.41900634765625, 0.002111565787345171], "14": [282.1529235839844, 448.6382141113281, 0.0041007003746926785], "15": [414.347412109375, 480.0, 0.0002578074927441776], "16": [262.5000305175781, 480.0, 0.00041880368371494114]}} +{"t": 26.772968, "tracked": true, "track_id": 1, "bbox": [96.7506332397461, 62.85851287841797, 553.5340576171875, 480.0], "det_conf": 0.9095945358276367, "mean_kpt_conf": 0.9012761224399913, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9256963689813174, "right_lift": -0.6006778071161183, "left_bend": 0.2912661282644554, "right_bend": 0.780218580007461}, "keypoints": {"0": [344.1231384277344, 159.3890380859375, 0.9988497495651245], "1": [362.9328918457031, 136.02491760253906, 0.9970619082450867], "2": [322.7811584472656, 137.02883911132812, 0.9964504241943359], "3": [387.66943359375, 145.98204040527344, 0.8930069208145142], "4": [288.9911804199219, 147.1346435546875, 0.8658283948898315], "5": [449.052978515625, 260.5264892578125, 0.9833590388298035], "6": [226.696533203125, 251.97886657714844, 0.9959957599639893], "7": [508.9977111816406, 407.2232971191406, 0.715178370475769], "8": [120.9759521484375, 331.4093933105469, 0.9302538633346558], "9": [477.33343505859375, 461.62469482421875, 0.6249858736991882], "10": [154.99815368652344, 189.92396545410156, 0.9130670428276062], "11": [420.8107604980469, 476.5810241699219, 0.14909906685352325], "12": [276.1332702636719, 476.48486328125, 0.24638763070106506], "13": [459.6588439941406, 439.5718994140625, 0.002109744120389223], "14": [279.98529052734375, 448.0488586425781, 0.004057007376104593], "15": [415.4915771484375, 480.0, 0.0002529814373701811], "16": [259.3382873535156, 479.804931640625, 0.0004074946336913854]}} +{"t": 26.836814, "tracked": true, "track_id": 1, "bbox": [96.21276092529297, 63.796512603759766, 552.0799560546875, 480.0], "det_conf": 0.9115835428237915, "mean_kpt_conf": 0.8970350243828513, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9284209354875553, "right_lift": -0.5766424981047489, "left_bend": 0.29412553638805317, "right_bend": 0.771658470261073}, "keypoints": {"0": [344.63623046875, 159.46743774414062, 0.9988234639167786], "1": [363.5516357421875, 135.9534454345703, 0.9971563816070557], "2": [323.0599365234375, 137.2694091796875, 0.9963998794555664], "3": [388.7593078613281, 146.06997680664062, 0.9014564156532288], "4": [289.33734130859375, 147.88528442382812, 0.8625100255012512], "5": [449.97100830078125, 262.29400634765625, 0.9825056791305542], "6": [226.59902954101562, 252.24742126464844, 0.9959473013877869], "7": [508.801025390625, 409.3050537109375, 0.6954060196876526], "8": [118.56977844238281, 328.49530029296875, 0.9271134734153748], "9": [477.64544677734375, 460.8858947753906, 0.6027979254722595], "10": [153.2142333984375, 186.2030487060547, 0.9072687029838562], "11": [419.5334777832031, 476.96002197265625, 0.14529837667942047], "12": [274.2851867675781, 476.32373046875, 0.24417565762996674], "13": [458.7240295410156, 441.28985595703125, 0.0020764917135238647], "14": [278.29547119140625, 449.2608642578125, 0.00406164163723588], "15": [415.9137268066406, 479.27410888671875, 0.00025772344088181853], "16": [258.6011047363281, 479.21728515625, 0.0004218362155370414]}} +{"t": 26.87051, "tracked": true, "track_id": 1, "bbox": [95.67471313476562, 64.07217407226562, 549.672607421875, 480.0], "det_conf": 0.9107421040534973, "mean_kpt_conf": 0.8969851298765703, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9280728539205149, "right_lift": -0.5682169683375737, "left_bend": 0.2687998165544872, "right_bend": 0.7618882073589678}, "keypoints": {"0": [344.7284851074219, 159.45033264160156, 0.9987990856170654], "1": [363.5956726074219, 135.98191833496094, 0.9971213936805725], "2": [323.20562744140625, 137.44488525390625, 0.9963093400001526], "3": [388.6829833984375, 145.82699584960938, 0.9012044072151184], "4": [289.8185119628906, 148.00245666503906, 0.8620031476020813], "5": [448.4879455566406, 260.5347595214844, 0.9821884036064148], "6": [227.7993927001953, 252.08477783203125, 0.9959819316864014], "7": [506.9779968261719, 406.3006591796875, 0.6988504528999329], "8": [118.98918151855469, 327.22076416015625, 0.9288694858551025], "9": [478.23187255859375, 463.9052429199219, 0.5981519818305969], "10": [150.93653869628906, 183.28074645996094, 0.9073567986488342], "11": [418.71826171875, 477.4779357910156, 0.15072044730186462], "12": [275.5401306152344, 477.5828857421875, 0.2531295120716095], "13": [456.83477783203125, 441.82757568359375, 0.0021216876339167356], "14": [280.5910339355469, 451.32318115234375, 0.004158816300332546], "15": [413.7158203125, 480.0, 0.0002648045483510941], "16": [260.7948303222656, 480.0, 0.000434014800703153]}} +{"t": 26.906301, "tracked": true, "track_id": 1, "bbox": [95.41357421875, 64.38851928710938, 552.1565551757812, 480.0], "det_conf": 0.9088175892829895, "mean_kpt_conf": 0.8931314891034906, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.92902401026758, "right_lift": -0.5644786739535835, "left_bend": 0.2934576900623755, "right_bend": 0.7555973328127332}, "keypoints": {"0": [344.8249206542969, 159.34210205078125, 0.9987977743148804], "1": [363.4664306640625, 135.589111328125, 0.9970473647117615], "2": [323.2885437011719, 137.302001953125, 0.9963356256484985], "3": [388.4433288574219, 144.97552490234375, 0.8991133570671082], "4": [290.0293273925781, 147.60357666015625, 0.8632993102073669], "5": [450.6695556640625, 260.59295654296875, 0.9823075532913208], "6": [227.4346923828125, 251.19981384277344, 0.9959644079208374], "7": [509.8824462890625, 409.2613525390625, 0.6833316087722778], "8": [117.84797668457031, 326.14019775390625, 0.9252799153327942], "9": [477.16107177734375, 463.4922790527344, 0.5803663730621338], "10": [147.6986541748047, 181.25091552734375, 0.9026030898094177], "11": [421.0225830078125, 477.89752197265625, 0.1395188421010971], "12": [276.9230651855469, 477.62493896484375, 0.23725447058677673], "13": [459.365966796875, 439.7815856933594, 0.002043685410171747], "14": [285.32916259765625, 448.48779296875, 0.004057034384459257], "15": [413.41326904296875, 479.52392578125, 0.00026099890237674117], "16": [267.4425354003906, 480.0, 0.00043219453073106706]}} +{"t": 26.940357, "tracked": true, "track_id": 1, "bbox": [95.22051239013672, 63.72807693481445, 551.6249389648438, 480.0], "det_conf": 0.9094386100769043, "mean_kpt_conf": 0.8956412239508196, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9300010657324517, "right_lift": -0.5607312546687331, "left_bend": 0.26696641971124413, "right_bend": 0.7473361707730162}, "keypoints": {"0": [345.0873107910156, 159.20718383789062, 0.9987847208976746], "1": [364.0018310546875, 135.53460693359375, 0.9971467852592468], "2": [323.6768493652344, 137.29067993164062, 0.9962104558944702], "3": [389.361328125, 145.169921875, 0.9074066877365112], "4": [290.9912109375, 147.9219207763672, 0.857772707939148], "5": [450.7062072753906, 260.1227722167969, 0.9822685718536377], "6": [227.593505859375, 251.76719665527344, 0.9960569143295288], "7": [508.78961181640625, 407.0867919921875, 0.6927043199539185], "8": [116.77468872070312, 326.815185546875, 0.9274479150772095], "9": [481.071533203125, 462.7075500488281, 0.5911241173744202], "10": [143.16783142089844, 183.20968627929688, 0.9051302671432495], "11": [419.98760986328125, 477.2567138671875, 0.14340396225452423], "12": [276.1363525390625, 477.53131103515625, 0.24276652932167053], "13": [459.2999572753906, 438.0628662109375, 0.002107207663357258], "14": [285.4270935058594, 447.9271545410156, 0.004170493688434362], "15": [413.4533996582031, 479.0552062988281, 0.00026880018413066864], "16": [268.6199645996094, 480.0, 0.0004459987103473395]}} +{"t": 27.003269, "tracked": true, "track_id": 1, "bbox": [93.9461441040039, 64.48332214355469, 558.2886962890625, 480.0], "det_conf": 0.9083346724510193, "mean_kpt_conf": 0.9250862544233148, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.910499945560521, "right_lift": -0.5880083580007864, "left_bend": 0.4037560902433657, "right_bend": 0.7456449309465758}, "keypoints": {"0": [344.2463684082031, 159.81918334960938, 0.9991611242294312], "1": [364.3580017089844, 136.5023193359375, 0.9979950189590454], "2": [323.2344665527344, 137.0218505859375, 0.9967604279518127], "3": [391.0441589355469, 146.34063720703125, 0.9290897250175476], "4": [290.8149108886719, 146.71888732910156, 0.8376073837280273], "5": [452.653076171875, 258.0331726074219, 0.9882259368896484], "6": [228.2188720703125, 252.49822998046875, 0.9972192049026489], "7": [516.8363037109375, 399.3572998046875, 0.8006076812744141], "8": [111.75617980957031, 337.16241455078125, 0.9492718577384949], "9": [472.23065185546875, 439.1684875488281, 0.7384870648384094], "10": [132.74591064453125, 191.5089111328125, 0.9415233731269836], "11": [421.5425109863281, 480.0, 0.1782340556383133], "12": [274.1080017089844, 480.0, 0.2791309356689453], "13": [461.8827819824219, 441.59539794921875, 0.0013903651852160692], "14": [269.4671325683594, 446.1141357421875, 0.002517826622352004], "15": [424.1470947265625, 479.8326721191406, 0.00014522031415253878], "16": [240.32142639160156, 471.07647705078125, 0.0002278733445564285]}} +{"t": 27.038491, "tracked": true, "track_id": 1, "bbox": [93.09991455078125, 64.75241088867188, 558.8851928710938, 480.0], "det_conf": 0.9109271764755249, "mean_kpt_conf": 0.9261748086322438, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9136291783162335, "right_lift": -0.5755840701780982, "left_bend": 0.42336619687629096, "right_bend": 0.7342241980003523}, "keypoints": {"0": [344.056396484375, 160.03536987304688, 0.9991880059242249], "1": [364.61151123046875, 136.79995727539062, 0.9981476068496704], "2": [323.24896240234375, 137.15823364257812, 0.9967419505119324], "3": [392.0529479980469, 146.96420288085938, 0.9374852776527405], "4": [291.3423767089844, 146.88119506835938, 0.8271080851554871], "5": [453.87872314453125, 258.5669250488281, 0.9885830879211426], "6": [228.1180419921875, 252.1346435546875, 0.9973489046096802], "7": [516.8527221679688, 400.0872497558594, 0.8060992360115051], "8": [108.57257080078125, 336.279052734375, 0.951681911945343], "9": [471.50018310546875, 435.24383544921875, 0.7429086565971375], "10": [126.54095458984375, 190.35543823242188, 0.9426301717758179], "11": [421.6650695800781, 480.0, 0.18477322161197662], "12": [272.7940368652344, 480.0, 0.28888025879859924], "13": [463.0037841796875, 442.05682373046875, 0.001380965462885797], "14": [265.15667724609375, 445.5416259765625, 0.0024995675776153803], "15": [426.1943359375, 479.32080078125, 0.00014240415475796908], "16": [233.4295654296875, 469.91046142578125, 0.00022479968902189285]}} +{"t": 27.101585, "tracked": true, "track_id": 1, "bbox": [88.47260284423828, 64.60497283935547, 558.678955078125, 479.9191589355469], "det_conf": 0.9065665602684021, "mean_kpt_conf": 0.9263920079578053, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.912950514194498, "right_lift": -0.565990283596739, "left_bend": 0.4296602110598571, "right_bend": 0.7027849250288258}, "keypoints": {"0": [345.525634765625, 159.87298583984375, 0.9991942048072815], "1": [365.5555725097656, 136.5389862060547, 0.9980577826499939], "2": [324.74127197265625, 136.94302368164062, 0.996727705001831], "3": [392.1972351074219, 146.44711303710938, 0.9333867430686951], "4": [292.73291015625, 146.81475830078125, 0.8262469172477722], "5": [454.6294250488281, 258.9588317871094, 0.9886942505836487], "6": [231.45982360839844, 253.5147705078125, 0.9973183274269104], "7": [517.5789794921875, 399.7919921875, 0.8069077134132385], "8": [110.86515808105469, 336.3076171875, 0.9503034353256226], "9": [466.8313293457031, 437.679931640625, 0.7496440410614014], "10": [115.91412353515625, 193.87664794921875, 0.9438309669494629], "11": [423.9163818359375, 480.0, 0.17192384600639343], "12": [277.5829772949219, 480.0, 0.26842987537384033], "13": [462.7674255371094, 437.29229736328125, 0.0013855986762791872], "14": [272.4103698730469, 440.23736572265625, 0.0024612033739686012], "15": [423.23797607421875, 475.04583740234375, 0.00014572354848496616], "16": [241.97915649414062, 464.4622802734375, 0.00022714858641847968]}} +{"t": 27.168714, "tracked": true, "track_id": 1, "bbox": [72.1830825805664, 63.63252639770508, 557.8866577148438, 479.94598388671875], "det_conf": 0.9017153382301331, "mean_kpt_conf": 0.9248901226303794, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9048162979623491, "right_lift": -0.5156096296508789, "left_bend": 0.3554032652665683, "right_bend": 0.6627785558520755}, "keypoints": {"0": [345.80670166015625, 160.20799255371094, 0.9992148876190186], "1": [365.9997253417969, 136.6768341064453, 0.9981551766395569], "2": [325.0367736816406, 136.93731689453125, 0.9967889785766602], "3": [392.63116455078125, 146.0665283203125, 0.9365355372428894], "4": [293.0304260253906, 146.03094482421875, 0.8306859135627747], "5": [453.68670654296875, 258.68365478515625, 0.988514244556427], "6": [232.50885009765625, 253.13772583007812, 0.9974246025085449], "7": [518.1160888671875, 395.5940856933594, 0.8032230734825134], "8": [105.95553588867188, 329.2935485839844, 0.9513714909553528], "9": [478.85382080078125, 444.4768981933594, 0.7298776507377625], "10": [101.640380859375, 187.0875244140625, 0.9419997930526733], "11": [424.8640441894531, 480.0, 0.18619301915168762], "12": [280.2788391113281, 480.0, 0.29108351469039917], "13": [462.6849670410156, 442.4161376953125, 0.0014197268756106496], "14": [275.1585998535156, 446.7034606933594, 0.002532956190407276], "15": [424.2755432128906, 477.9024963378906, 0.000143870958709158], "16": [243.82627868652344, 467.95574951171875, 0.00022520001220982522]}} +{"t": 27.202816, "tracked": true, "track_id": 1, "bbox": [60.50856399536133, 63.46133804321289, 559.2310791015625, 479.99053955078125], "det_conf": 0.8993562459945679, "mean_kpt_conf": 0.9267598553137346, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9084413882415626, "right_lift": -0.5027768918107997, "left_bend": 0.4267863624577151, "right_bend": 0.6499944428531435}, "keypoints": {"0": [345.6600341796875, 160.02122497558594, 0.9992396831512451], "1": [365.9676513671875, 136.7373046875, 0.9982661604881287], "2": [325.11358642578125, 136.755859375, 0.9967182278633118], "3": [392.8582763671875, 146.94338989257812, 0.944034218788147], "4": [293.4928283691406, 146.45672607421875, 0.8156808614730835], "5": [454.3788146972656, 261.1685791015625, 0.9888325929641724], "6": [233.32623291015625, 254.29299926757812, 0.9975557327270508], "7": [517.6021728515625, 398.56817626953125, 0.8061335682868958], "8": [103.67340087890625, 329.7039489746094, 0.9529036283493042], "9": [469.8311767578125, 435.74029541015625, 0.7494023442268372], "10": [95.67971801757812, 186.04666137695312, 0.945591390132904], "11": [425.1973876953125, 480.0, 0.18826830387115479], "12": [280.80029296875, 480.0, 0.29589495062828064], "13": [458.7862548828125, 445.08251953125, 0.0014353564474731684], "14": [272.941162109375, 446.6752014160156, 0.002542744390666485], "15": [421.3827209472656, 477.5953369140625, 0.00014124438166618347], "16": [241.66172790527344, 465.2763366699219, 0.00022217535297386348]}} +{"t": 27.23644, "tracked": true, "track_id": 1, "bbox": [49.19394302368164, 63.3368034362793, 558.3677978515625, 480.0], "det_conf": 0.8932956457138062, "mean_kpt_conf": 0.9257758801633661, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9056444005296643, "right_lift": -0.48584968646048526, "left_bend": 0.4222223447917152, "right_bend": 0.6453411614471257}, "keypoints": {"0": [345.577392578125, 159.73434448242188, 0.999244213104248], "1": [365.8565673828125, 136.41781616210938, 0.9982903599739075], "2": [324.95965576171875, 136.41566467285156, 0.9967710375785828], "3": [392.6376037597656, 146.7017059326172, 0.9446329474449158], "4": [293.1607971191406, 146.15089416503906, 0.8197063207626343], "5": [454.18096923828125, 261.561767578125, 0.9886866807937622], "6": [232.177490234375, 254.11483764648438, 0.9975425004959106], "7": [518.0941162109375, 398.0650634765625, 0.8003017902374268], "8": [99.613037109375, 327.80279541015625, 0.9514614343643188], "9": [471.6583251953125, 435.78863525390625, 0.7426403164863586], "10": [92.34001159667969, 184.56500244140625, 0.9442570805549622], "11": [425.02398681640625, 480.0, 0.18395547568798065], "12": [280.3828430175781, 480.0, 0.290249764919281], "13": [458.9791564941406, 445.3541259765625, 0.001413710881024599], "14": [274.37811279296875, 446.9313659667969, 0.0025056288577616215], "15": [421.8654479980469, 477.5534973144531, 0.00014010300219524652], "16": [243.92794799804688, 465.5036315917969, 0.00022061204072088003]}} +{"t": 27.300143, "tracked": true, "track_id": 1, "bbox": [32.54939270019531, 63.104183197021484, 558.956787109375, 480.0], "det_conf": 0.8943840861320496, "mean_kpt_conf": 0.9260486147620461, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.899995225437521, "right_lift": -0.5039621962698838, "left_bend": 0.4050440972932073, "right_bend": 0.616718378142724}, "keypoints": {"0": [345.3253173828125, 159.95689392089844, 0.9992979764938354], "1": [366.07879638671875, 136.59716796875, 0.9984092116355896], "2": [325.0486145019531, 136.22955322265625, 0.9969372749328613], "3": [393.3203125, 146.66024780273438, 0.9493333697319031], "4": [293.4643859863281, 145.3928680419922, 0.8162934184074402], "5": [456.62457275390625, 261.4840393066406, 0.9895281195640564], "6": [231.79373168945312, 254.9895782470703, 0.9977356195449829], "7": [522.8433837890625, 398.2049560546875, 0.8068850040435791], "8": [101.05792236328125, 331.2706298828125, 0.9528114199638367], "9": [478.07171630859375, 439.85980224609375, 0.7372124791145325], "10": [78.57679748535156, 193.27957153320312, 0.9420908689498901], "11": [424.99993896484375, 480.0, 0.19206449389457703], "12": [277.927490234375, 480.0, 0.30087995529174805], "13": [458.9524841308594, 446.2848205566406, 0.0013791162054985762], "14": [266.0146179199219, 447.0462646484375, 0.0024211753625422716], "15": [420.9896240234375, 478.5776672363281, 0.00013400983880273998], "16": [234.6452178955078, 464.48779296875, 0.00020922254770994186]}} +{"t": 27.335295, "tracked": true, "track_id": 1, "bbox": [27.976787567138672, 63.424739837646484, 561.2545166015625, 480.0], "det_conf": 0.895401656627655, "mean_kpt_conf": 0.9286034323952415, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9037486497282695, "right_lift": -0.5073368908747549, "left_bend": 0.428267753854778, "right_bend": 0.6043956657476802}, "keypoints": {"0": [345.5636901855469, 160.03115844726562, 0.9992963075637817], "1": [366.2713623046875, 136.55007934570312, 0.9983870983123779], "2": [325.10430908203125, 136.2584686279297, 0.9968724846839905], "3": [393.5265197753906, 146.39549255371094, 0.9493857026100159], "4": [293.2735900878906, 145.48049926757812, 0.812472403049469], "5": [456.73480224609375, 261.54339599609375, 0.98976069688797], "6": [232.72976684570312, 255.53927612304688, 0.9977858066558838], "7": [520.9515380859375, 397.12091064453125, 0.8143975734710693], "8": [102.89352416992188, 331.977783203125, 0.9543275833129883], "9": [474.57427978515625, 433.69036865234375, 0.7563032507896423], "10": [75.02462768554688, 197.34934997558594, 0.9456488490104675], "11": [426.29388427734375, 480.0, 0.20402172207832336], "12": [279.8548583984375, 480.0, 0.3163456916809082], "13": [457.36529541015625, 447.26373291015625, 0.0014680009335279465], "14": [266.2044372558594, 447.5825500488281, 0.0025402577593922615], "15": [419.08721923828125, 477.3600769042969, 0.00013581353414338082], "16": [236.2831573486328, 463.7130126953125, 0.00021030336210969836]}} +{"t": 27.397532, "tracked": true, "track_id": 1, "bbox": [18.133926391601562, 63.008056640625, 563.3258666992188, 480.0], "det_conf": 0.8949532508850098, "mean_kpt_conf": 0.9056545821103182, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9132923887965021, "right_lift": -0.45835038893694224, "left_bend": 0.3510698161087998, "right_bend": 0.5439663769111522}, "keypoints": {"0": [345.7586669921875, 158.9844512939453, 0.999090313911438], "1": [365.9576416015625, 135.3413848876953, 0.997712254524231], "2": [324.4569091796875, 136.64279174804688, 0.9968532919883728], "3": [392.6496276855469, 145.54629516601562, 0.9240683317184448], "4": [290.92071533203125, 148.09536743164062, 0.8350548148155212], "5": [455.7335205078125, 261.0456848144531, 0.9838222861289978], "6": [234.28201293945312, 255.33294677734375, 0.9972854852676392], "7": [516.1946411132812, 396.6166687011719, 0.7107442617416382], "8": [108.66944885253906, 320.1128845214844, 0.9468876123428345], "9": [477.2545166015625, 444.435302734375, 0.6433353424072266], "10": [67.26730346679688, 202.32708740234375, 0.927346408367157], "11": [430.71002197265625, 479.29974365234375, 0.19295841455459595], "12": [289.8877258300781, 477.9320068359375, 0.3320128619670868], "13": [455.25457763671875, 450.9404602050781, 0.0021411129273474216], "14": [300.7686462402344, 454.72955322265625, 0.00442519411444664], "15": [409.0573425292969, 477.7826843261719, 0.00020792530267499387], "16": [289.43377685546875, 473.1927795410156, 0.0003654056927189231]}} +{"t": 27.466371, "tracked": true, "track_id": 1, "bbox": [12.515327453613281, 63.154117584228516, 568.880859375, 480.0], "det_conf": 0.9028545022010803, "mean_kpt_conf": 0.8644308273990949, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9038659243411136, "right_lift": -0.4520248549173409, "left_bend": 0.35564025081756295, "right_bend": 0.5267161159366449}, "keypoints": {"0": [345.5410461425781, 159.13937377929688, 0.9991589784622192], "1": [365.76849365234375, 135.17233276367188, 0.9979676604270935], "2": [323.993896484375, 136.95516967773438, 0.9968811273574829], "3": [393.1136474609375, 145.09461975097656, 0.9328261613845825], "4": [290.6701354980469, 148.8514404296875, 0.8210563659667969], "5": [457.7730712890625, 259.18365478515625, 0.984805166721344], "6": [236.37025451660156, 255.94593811035156, 0.9974785447120667], "7": [521.3096313476562, 393.42022705078125, 0.7355688214302063], "8": [109.05145263671875, 320.46490478515625, 0.9528974890708923], "9": [480.95428466796875, 443.8167724609375, 0.6644101738929749], "10": [61.52232360839844, 203.20799255371094, 0.9333296418190002], "11": [435.204833984375, 479.6672668457031, 0.21012477576732635], "12": [293.53851318359375, 478.80096435546875, 0.35678979754447937], "13": [459.1830139160156, 452.4150695800781, 0.0020623519085347652], "14": [297.8526611328125, 456.5635986328125, 0.004252157174050808], "15": [415.4012756347656, 478.67236328125, 0.00018835712398868054], "16": [281.5582580566406, 473.5255126953125, 0.0003328497987240553]}} +{"t": 27.529229, "tracked": true, "track_id": 1, "bbox": [8.387386322021484, 63.098514556884766, 564.7747192382812, 479.96820068359375], "det_conf": 0.9073458313941956, "mean_kpt_conf": 0.8611024245619774, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9094834562010738, "right_lift": -0.45384765166831753, "left_bend": 0.3354688833481545, "right_bend": 0.5148112344508333}, "keypoints": {"0": [345.30548095703125, 159.1558074951172, 0.9991254210472107], "1": [365.15423583984375, 135.35845947265625, 0.9978873133659363], "2": [324.13726806640625, 137.26890563964844, 0.9968401193618774], "3": [392.0340270996094, 145.09524536132812, 0.9336948990821838], "4": [291.5299072265625, 149.15255737304688, 0.8243621587753296], "5": [456.5477600097656, 260.3984375, 0.9845484495162964], "6": [236.58909606933594, 256.42364501953125, 0.9975029826164246], "7": [518.4059448242188, 395.720947265625, 0.7214585542678833], "8": [111.10443115234375, 320.3359375, 0.9508002996444702], "9": [480.6920471191406, 447.97705078125, 0.6375706791877747], "10": [58.85752868652344, 204.7552490234375, 0.9267617464065552], "11": [431.27947998046875, 480.0, 0.21244296431541443], "12": [290.79486083984375, 479.42938232421875, 0.3626764714717865], "13": [454.72174072265625, 454.8362731933594, 0.002138636540621519], "14": [294.8529357910156, 458.8647766113281, 0.004440629854798317], "15": [410.4005432128906, 478.40777587890625, 0.0002023872802965343], "16": [280.6742248535156, 474.2918701171875, 0.000358136894647032]}} +{"t": 27.594884, "tracked": true, "track_id": 1, "bbox": [5.236298561096191, 62.984703063964844, 568.7086181640625, 479.94775390625], "det_conf": 0.9088066220283508, "mean_kpt_conf": 0.8674053847789764, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9052715502047373, "right_lift": -0.44749211240249914, "left_bend": 0.31817944709553087, "right_bend": 0.5050867821983009}, "keypoints": {"0": [344.71844482421875, 159.06759643554688, 0.9991570711135864], "1": [364.8961181640625, 135.17872619628906, 0.9980514049530029], "2": [323.6939697265625, 137.01495361328125, 0.9967315196990967], "3": [392.588134765625, 145.0011444091797, 0.9408806562423706], "4": [291.619873046875, 148.89036560058594, 0.8104978203773499], "5": [457.2608642578125, 259.6091613769531, 0.9853479266166687], "6": [237.29501342773438, 256.94049072265625, 0.9976227879524231], "7": [519.4107666015625, 392.04351806640625, 0.7479729652404785], "8": [110.52714538574219, 320.373779296875, 0.9554223418235779], "9": [483.99786376953125, 448.4261474609375, 0.6681949496269226], "10": [56.22607421875, 207.37936401367188, 0.9340119361877441], "11": [432.924560546875, 480.0, 0.222965270280838], "12": [291.83514404296875, 479.1795654296875, 0.37497323751449585], "13": [457.408935546875, 452.5667419433594, 0.002121396828442812], "14": [293.54156494140625, 457.3739318847656, 0.004364024847745895], "15": [414.4068298339844, 477.5389709472656, 0.00019347311172168702], "16": [277.4073486328125, 473.32269287109375, 0.0003422474255785346]}} +{"t": 27.630494, "tracked": true, "track_id": 1, "bbox": [3.749917984008789, 63.014488220214844, 565.779296875, 479.9427795410156], "det_conf": 0.9080408811569214, "mean_kpt_conf": 0.8623008181651434, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.906455614303498, "right_lift": -0.45839424534453727, "left_bend": 0.334362656072276, "right_bend": 0.5046108114952992}, "keypoints": {"0": [344.0867004394531, 158.99827575683594, 0.9991428852081299], "1": [364.24041748046875, 134.83074951171875, 0.9980338215827942], "2": [323.0289306640625, 136.75662231445312, 0.9967347979545593], "3": [392.0223388671875, 144.25613403320312, 0.9422248601913452], "4": [291.15838623046875, 148.38926696777344, 0.8118532299995422], "5": [457.19720458984375, 260.5101623535156, 0.9849456548690796], "6": [237.05567932128906, 258.1689147949219, 0.9976106882095337], "7": [519.8360595703125, 394.9624328613281, 0.7256488800048828], "8": [109.47541809082031, 323.9715881347656, 0.9513140320777893], "9": [481.7438049316406, 448.95098876953125, 0.6503127813339233], "10": [52.82527160644531, 210.11813354492188, 0.9299132823944092], "11": [432.27679443359375, 479.8433837890625, 0.21025808155536652], "12": [291.8987731933594, 478.8634033203125, 0.3598749041557312], "13": [456.08642578125, 454.3037109375, 0.002135701710358262], "14": [297.1443786621094, 458.7400817871094, 0.004444006364792585], "15": [410.6812744140625, 477.36920166015625, 0.00019874262216035277], "16": [281.5954284667969, 472.792236328125, 0.0003550327382981777]}} +{"t": 27.697062, "tracked": true, "track_id": 1, "bbox": [2.789111614227295, 62.78385543823242, 566.7373046875, 479.9586181640625], "det_conf": 0.911844789981842, "mean_kpt_conf": 0.8679415906469027, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9034162742137315, "right_lift": -0.4567914622813813, "left_bend": 0.32968480359458063, "right_bend": 0.4959319063021082}, "keypoints": {"0": [343.8615417480469, 159.40196228027344, 0.9991725087165833], "1": [364.35760498046875, 135.15841674804688, 0.9981461763381958], "2": [322.78021240234375, 136.96163940429688, 0.996681272983551], "3": [392.721435546875, 144.42648315429688, 0.9454428553581238], "4": [291.08624267578125, 148.3209228515625, 0.8000982999801636], "5": [456.4632873535156, 259.1073303222656, 0.9852307438850403], "6": [239.21917724609375, 257.7032165527344, 0.9976707100868225], "7": [519.279296875, 391.4620361328125, 0.7471279501914978], "8": [110.60519409179688, 323.7458190917969, 0.9559868574142456], "9": [481.6472473144531, 447.35040283203125, 0.6742608547210693], "10": [51.52587890625, 212.22332763671875, 0.9360836744308472], "11": [432.7835693359375, 480.0, 0.22442841529846191], "12": [293.3680725097656, 479.29925537109375, 0.3793971836566925], "13": [455.51507568359375, 455.22662353515625, 0.002111431211233139], "14": [293.22833251953125, 459.46026611328125, 0.004357954021543264], "15": [413.2305908203125, 477.95233154296875, 0.00018867707694880664], "16": [273.58941650390625, 472.2425537109375, 0.00033595762215554714]}} +{"t": 27.762609, "tracked": true, "track_id": 1, "bbox": [0.11356451362371445, 63.755863189697266, 560.4855346679688, 479.8723449707031], "det_conf": 0.9130342602729797, "mean_kpt_conf": 0.9104686596176841, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9169747050491742, "right_lift": -0.49262773304274066, "left_bend": 0.290858319626579, "right_bend": 0.5242164320638494}, "keypoints": {"0": [343.9528503417969, 158.6739501953125, 0.999134361743927], "1": [363.3995056152344, 135.66268920898438, 0.9981624484062195], "2": [324.08074951171875, 136.4866943359375, 0.9965204000473022], "3": [389.674560546875, 145.6913299560547, 0.9525160789489746], "4": [293.6363220214844, 147.59518432617188, 0.8105683922767639], "5": [452.63427734375, 262.4324645996094, 0.9876121878623962], "6": [234.20965576171875, 257.2922058105469, 0.9975205063819885], "7": [513.2288818359375, 401.708984375, 0.7692910432815552], "8": [106.60261535644531, 329.5283203125, 0.9468685984611511], "9": [477.90423583984375, 465.85223388671875, 0.6413386464118958], "10": [52.65431213378906, 214.64553833007812, 0.9156225919723511], "11": [417.8901062011719, 480.0, 0.21368888020515442], "12": [275.2543029785156, 480.0, 0.34101802110671997], "13": [446.69378662109375, 450.8326721191406, 0.002144032623618841], "14": [256.69390869140625, 453.63677978515625, 0.00382840633392334], "15": [408.881103515625, 474.0409851074219, 0.0002244934148620814], "16": [229.84271240234375, 465.4705810546875, 0.0003538684395607561]}} +{"t": 27.828029, "tracked": true, "track_id": 1, "bbox": [0.0, 64.05946350097656, 557.24853515625, 479.8145751953125], "det_conf": 0.9114799499511719, "mean_kpt_conf": 0.9095431457866322, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9160663745272491, "right_lift": -0.4956378927038437, "left_bend": 0.29343179419054877, "right_bend": 0.5205787788108619}, "keypoints": {"0": [343.7275085449219, 158.65414428710938, 0.9991150498390198], "1": [363.33563232421875, 136.10470581054688, 0.9981254935264587], "2": [323.96728515625, 136.4797821044922, 0.9964967370033264], "3": [389.4202575683594, 146.92356872558594, 0.9526246786117554], "4": [293.393310546875, 147.91098022460938, 0.8118782043457031], "5": [451.3194274902344, 263.6853942871094, 0.9873572587966919], "6": [233.99960327148438, 257.32281494140625, 0.9974519610404968], "7": [511.9267578125, 402.1308898925781, 0.7642562985420227], "8": [106.80577087402344, 329.9076843261719, 0.9449120759963989], "9": [477.92041015625, 463.03961181640625, 0.6398972868919373], "10": [52.154876708984375, 217.89466857910156, 0.9128595590591431], "11": [415.4661865234375, 480.0, 0.21259742975234985], "12": [273.6368103027344, 480.0, 0.3393566906452179], "13": [441.40753173828125, 451.1463317871094, 0.0022182115353643894], "14": [252.75021362304688, 452.4993896484375, 0.003921798896044493], "15": [404.7679138183594, 473.8348388671875, 0.00023534329375252128], "16": [226.88687133789062, 464.02972412109375, 0.0003677188651636243]}} +{"t": 27.893473, "tracked": true, "track_id": 1, "bbox": [0.0, 64.22474670410156, 555.8478393554688, 479.79510498046875], "det_conf": 0.9103139042854309, "mean_kpt_conf": 0.9058459184386514, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9154754815857703, "right_lift": -0.49165563542565127, "left_bend": 0.3228595891824207, "right_bend": 0.5148350275343107}, "keypoints": {"0": [344.2545166015625, 158.10110473632812, 0.9991312623023987], "1": [363.8341064453125, 135.51467895507812, 0.9981915354728699], "2": [324.4864196777344, 136.0857696533203, 0.9965553283691406], "3": [390.151611328125, 146.51339721679688, 0.9551131725311279], "4": [294.1351013183594, 147.94720458984375, 0.8051317930221558], "5": [453.8338317871094, 263.4676818847656, 0.9868980646133423], "6": [235.32723999023438, 256.87628173828125, 0.9974204301834106], "7": [515.5554809570312, 403.8959655761719, 0.749813973903656], "8": [106.64903259277344, 329.5291442871094, 0.9430884718894958], "9": [473.42254638671875, 465.4570617675781, 0.6230472922325134], "10": [50.85102844238281, 218.9679412841797, 0.9099137783050537], "11": [418.59869384765625, 480.0, 0.1995689570903778], "12": [276.31671142578125, 480.0, 0.3258395195007324], "13": [443.92132568359375, 451.639404296875, 0.002091906266286969], "14": [256.7135925292969, 451.60125732421875, 0.0037793072406202555], "15": [406.900146484375, 475.8987731933594, 0.00022809657093603164], "16": [231.1246337890625, 464.5092468261719, 0.0003638358903117478]}} +{"t": 27.957862, "tracked": true, "track_id": 1, "bbox": [0.0, 63.97868728637695, 555.5498046875, 479.7727355957031], "det_conf": 0.9139256477355957, "mean_kpt_conf": 0.905416960066015, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9194065565040489, "right_lift": -0.5034137983428101, "left_bend": 0.3205961663348131, "right_bend": 0.5228225127751962}, "keypoints": {"0": [344.35760498046875, 158.16383361816406, 0.9991393089294434], "1": [364.024658203125, 134.976806640625, 0.9982353448867798], "2": [324.32342529296875, 136.0670166015625, 0.9965481162071228], "3": [390.9241943359375, 145.1556396484375, 0.9555912613868713], "4": [293.9619445800781, 147.72061157226562, 0.8022103905677795], "5": [454.43212890625, 262.6225891113281, 0.986916184425354], "6": [234.79510498046875, 257.9306945800781, 0.9974835515022278], "7": [514.8909912109375, 403.9525451660156, 0.7500671148300171], "8": [106.283935546875, 332.8044128417969, 0.9436109662055969], "9": [474.1224365234375, 463.1675109863281, 0.6202107071876526], "10": [50.292144775390625, 218.60208129882812, 0.9095736145973206], "11": [418.5748291015625, 480.0, 0.20370660722255707], "12": [275.04547119140625, 480.0, 0.33188745379447937], "13": [446.2144775390625, 452.8605651855469, 0.002060648985207081], "14": [254.49488830566406, 454.6053161621094, 0.0037304137367755175], "15": [410.3146667480469, 474.494873046875, 0.00022242017439566553], "16": [228.11062622070312, 465.4052429199219, 0.00035523722181096673]}} +{"t": 27.992072, "tracked": true, "track_id": 1, "bbox": [0.0, 63.97135543823242, 551.57275390625, 479.7414855957031], "det_conf": 0.9133907556533813, "mean_kpt_conf": 0.9083156639879401, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9220521736048137, "right_lift": -0.501341764443534, "left_bend": 0.29980701765728196, "right_bend": 0.5166068616317977}, "keypoints": {"0": [344.3155822753906, 158.1827392578125, 0.9991311430931091], "1": [363.7963562011719, 135.49099731445312, 0.998155415058136], "2": [324.5107421875, 136.05355834960938, 0.9965464472770691], "3": [389.86474609375, 146.0537109375, 0.9527048468589783], "4": [293.9429016113281, 147.55563354492188, 0.8104803562164307], "5": [451.76129150390625, 263.10467529296875, 0.987272322177887], "6": [234.97235107421875, 257.5445556640625, 0.9974942207336426], "7": [510.45111083984375, 402.9132080078125, 0.7614870667457581], "8": [107.61126708984375, 331.3399658203125, 0.9452236890792847], "9": [473.29150390625, 464.2873840332031, 0.6311177611351013], "10": [50.095062255859375, 218.94139099121094, 0.9118590354919434], "11": [416.3498229980469, 480.0, 0.21329443156719208], "12": [274.50640869140625, 480.0, 0.3420850932598114], "13": [442.5934143066406, 452.4990234375, 0.0021726740524172783], "14": [252.23675537109375, 454.1086120605469, 0.0038541622925549746], "15": [406.36041259765625, 474.0262451171875, 0.00023106872686184943], "16": [225.30133056640625, 464.41259765625, 0.0003618916089180857]}} +{"t": 28.059676, "tracked": true, "track_id": 1, "bbox": [0.012985625304281712, 63.43150329589844, 555.9443359375, 479.71630859375], "det_conf": 0.9142062067985535, "mean_kpt_conf": 0.9108369187875227, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9184281885027222, "right_lift": -0.5061664034504048, "left_bend": 0.3264572307049307, "right_bend": 0.529818986525516}, "keypoints": {"0": [344.1182861328125, 159.29708862304688, 0.9991506338119507], "1": [363.27423095703125, 136.43246459960938, 0.9981284737586975], "2": [324.44244384765625, 137.1063232421875, 0.9965782761573792], "3": [389.1081237792969, 146.61810302734375, 0.9498437643051147], "4": [293.9419860839844, 148.26187133789062, 0.8095139861106873], "5": [452.5151062011719, 263.9143981933594, 0.9877332448959351], "6": [234.28399658203125, 258.1330261230469, 0.9974857568740845], "7": [513.2286376953125, 404.8717956542969, 0.7688882350921631], "8": [106.25070190429688, 333.27618408203125, 0.945763349533081], "9": [473.636474609375, 460.460693359375, 0.6498791575431824], "10": [52.33793640136719, 217.87762451171875, 0.9162412285804749], "11": [417.4007568359375, 480.0, 0.20304980874061584], "12": [274.5506286621094, 480.0, 0.32452303171157837], "13": [445.6822204589844, 448.77703857421875, 0.002128227613866329], "14": [253.5515899658203, 450.0159912109375, 0.0037425002083182335], "15": [409.55975341796875, 471.66717529296875, 0.00022385051124729216], "16": [225.76181030273438, 461.8965148925781, 0.00034854511613957584]}} +{"t": 28.120858, "tracked": true, "track_id": 1, "bbox": [2.0797510147094727, 63.37675476074219, 554.5521850585938, 479.6668701171875], "det_conf": 0.9096778631210327, "mean_kpt_conf": 0.9114211418411948, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9174182043976427, "right_lift": -0.4928156074928924, "left_bend": 0.2888490719309584, "right_bend": 0.5409619250688175}, "keypoints": {"0": [344.252197265625, 159.04751586914062, 0.999134361743927], "1": [363.55450439453125, 135.52757263183594, 0.9982214570045471], "2": [324.2694396972656, 136.73220825195312, 0.99639892578125], "3": [390.22137451171875, 144.89498901367188, 0.953559398651123], "4": [294.0390319824219, 147.62677001953125, 0.8037360310554504], "5": [452.845703125, 262.0768127441406, 0.9873346090316772], "6": [235.07379150390625, 258.57861328125, 0.9974789023399353], "7": [513.1571044921875, 401.1252746582031, 0.7704517245292664], "8": [104.57534790039062, 332.48870849609375, 0.9464552402496338], "9": [478.1170654296875, 465.54205322265625, 0.6537424921989441], "10": [56.32550048828125, 213.97628784179688, 0.9191194176673889], "11": [418.3404235839844, 480.0, 0.20104578137397766], "12": [275.9202575683594, 480.0, 0.3232848048210144], "13": [445.0853271484375, 447.7841491699219, 0.002114928560331464], "14": [254.39349365234375, 452.0627136230469, 0.0037411684170365334], "15": [408.3243408203125, 471.06268310546875, 0.0002226376673206687], "16": [224.7489776611328, 463.741455078125, 0.00034913039417006075]}} +{"t": 28.189677, "tracked": true, "track_id": 1, "bbox": [5.892040252685547, 61.72651290893555, 565.394287109375, 479.8384094238281], "det_conf": 0.9089805483818054, "mean_kpt_conf": 0.8662156189481417, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9047921328342469, "right_lift": -0.46956817967093756, "left_bend": 0.3437669100829744, "right_bend": 0.5243881333541137}, "keypoints": {"0": [344.0667419433594, 159.47991943359375, 0.9991722106933594], "1": [364.2138977050781, 134.81947326660156, 0.9980984330177307], "2": [323.0820007324219, 136.81381225585938, 0.996732234954834], "3": [392.2996826171875, 142.89883422851562, 0.941132664680481], "4": [291.284423828125, 147.10281372070312, 0.8087742328643799], "5": [457.162841796875, 257.8945617675781, 0.9852847456932068], "6": [236.59060668945312, 257.76043701171875, 0.9976683259010315], "7": [520.1754150390625, 391.77459716796875, 0.74106365442276], "8": [106.1063232421875, 327.1584777832031, 0.9538597464561462], "9": [480.15032958984375, 445.5245361328125, 0.6764618754386902], "10": [55.363311767578125, 211.1029052734375, 0.9362075924873352], "11": [433.4281005859375, 480.0, 0.21168586611747742], "12": [292.346923828125, 480.0, 0.36013171076774597], "13": [455.735107421875, 454.439208984375, 0.0020669251680374146], "14": [294.774169921875, 460.1335754394531, 0.004234413616359234], "15": [410.9613037109375, 478.9128723144531, 0.00018494672258384526], "16": [276.19708251953125, 474.0533447265625, 0.00032626837491989136]}} +{"t": 28.25371, "tracked": true, "track_id": 1, "bbox": [11.051473617553711, 62.15044021606445, 562.7814331054688, 479.828857421875], "det_conf": 0.9045513868331909, "mean_kpt_conf": 0.9293165694583546, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9009565706047026, "right_lift": -0.5198935288400028, "left_bend": 0.40219224252973246, "right_bend": 0.584947779828941}, "keypoints": {"0": [343.5326232910156, 159.94442749023438, 0.9993708729743958], "1": [364.4412841796875, 135.8619384765625, 0.9986555576324463], "2": [323.3126220703125, 135.95205688476562, 0.9969227910041809], "3": [393.0763244628906, 145.02687072753906, 0.95912766456604], "4": [292.511474609375, 145.08460998535156, 0.794722318649292], "5": [458.482177734375, 261.3908386230469, 0.9907355904579163], "6": [231.79910278320312, 259.564208984375, 0.9980461597442627], "7": [523.6632690429688, 396.73095703125, 0.8264111876487732], "8": [98.991943359375, 340.3919677734375, 0.9568122029304504], "9": [478.36065673828125, 439.45379638671875, 0.7560659646987915], "10": [60.14799499511719, 205.23431396484375, 0.9456119537353516], "11": [426.07452392578125, 480.0, 0.21046745777130127], "12": [276.4770202636719, 480.0, 0.324394553899765], "13": [458.0951843261719, 449.524169921875, 0.001326522440649569], "14": [253.04371643066406, 451.75823974609375, 0.0022643350530415773], "15": [420.45623779296875, 476.6993103027344, 0.00011918998643523082], "16": [215.89337158203125, 463.26483154296875, 0.00018338824156671762]}} +{"t": 28.321663, "tracked": true, "track_id": 1, "bbox": [16.41806983947754, 61.740970611572266, 570.7130126953125, 479.84063720703125], "det_conf": 0.9044626355171204, "mean_kpt_conf": 0.9077152609825134, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9078790661611942, "right_lift": -0.4894225277392677, "left_bend": 0.3818423125780647, "right_bend": 0.551897638336891}, "keypoints": {"0": [344.5006103515625, 159.2625732421875, 0.999137282371521], "1": [364.5949401855469, 135.13229370117188, 0.9978329539299011], "2": [323.50408935546875, 136.32260131835938, 0.9968603849411011], "3": [391.45794677734375, 144.1796417236328, 0.9268205165863037], "4": [290.2375793457031, 146.56362915039062, 0.8265058398246765], "5": [456.4556884765625, 259.5488586425781, 0.984504222869873], "6": [234.53729248046875, 257.115234375, 0.9974283576011658], "7": [519.2960205078125, 395.6343688964844, 0.7177395224571228], "8": [109.25733947753906, 327.4266357421875, 0.9481778144836426], "9": [474.2401123046875, 442.3800354003906, 0.6587709784507751], "10": [65.38200378417969, 206.62474060058594, 0.9310899972915649], "11": [434.1506652832031, 478.65130615234375, 0.1938430517911911], "12": [292.4033508300781, 478.03411865234375, 0.3334689736366272], "13": [455.8218688964844, 452.7627868652344, 0.002108289860188961], "14": [297.1941223144531, 456.8819580078125, 0.004303329158574343], "15": [408.6642150878906, 479.6885986328125, 0.00019329700444359332], "16": [281.15435791015625, 472.3636474609375, 0.0003374684602022171]}} +{"t": 28.356066, "tracked": true, "track_id": 1, "bbox": [19.964683532714844, 62.016357421875, 564.2601318359375, 479.8743896484375], "det_conf": 0.8980163931846619, "mean_kpt_conf": 0.928678875619715, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9026753246658938, "right_lift": -0.5240714922523192, "left_bend": 0.4375481626105858, "right_bend": 0.599515749654347}, "keypoints": {"0": [343.7791748046875, 159.43896484375, 0.9993256330490112], "1": [364.5994567871094, 135.9739990234375, 0.9985326528549194], "2": [323.5315856933594, 135.86331176757812, 0.9968307614326477], "3": [392.7116394042969, 146.2266845703125, 0.9566214680671692], "4": [292.4334716796875, 145.8688507080078, 0.7997076511383057], "5": [457.4639587402344, 262.10589599609375, 0.9903234243392944], "6": [232.034912109375, 259.24224853515625, 0.997963547706604], "7": [521.7655639648438, 396.9896240234375, 0.8188704252243042], "8": [102.6395263671875, 338.86474609375, 0.9552884101867676], "9": [474.0064697265625, 432.626220703125, 0.7568859457969666], "10": [69.32295227050781, 202.1212615966797, 0.945117712020874], "11": [426.9979248046875, 480.0, 0.21701012551784515], "12": [278.8863830566406, 480.0, 0.3342040479183197], "13": [458.4888000488281, 451.4098205566406, 0.0014436348574236035], "14": [260.86279296875, 452.9102783203125, 0.002490368438884616], "15": [421.043212890625, 478.279541015625, 0.0001273241505259648], "16": [228.3250732421875, 464.508056640625, 0.0001978264335775748]}} +{"t": 28.420075, "tracked": true, "track_id": 1, "bbox": [24.971731185913086, 62.29448699951172, 559.8145141601562, 479.9358825683594], "det_conf": 0.8969637751579285, "mean_kpt_conf": 0.9295152642510154, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8996409143887245, "right_lift": -0.5192465786252124, "left_bend": 0.441395656895352, "right_bend": 0.6005451673990815}, "keypoints": {"0": [344.25970458984375, 159.77182006835938, 0.9993237257003784], "1": [365.0345764160156, 135.86508178710938, 0.9985178112983704], "2": [323.5853576660156, 136.0225830078125, 0.99683678150177], "3": [393.13360595703125, 145.44180297851562, 0.9553501605987549], "4": [292.0754089355469, 145.73045349121094, 0.7985853552818298], "5": [458.41546630859375, 260.5355224609375, 0.9901942610740662], "6": [233.49545288085938, 257.8833923339844, 0.9978815913200378], "7": [524.026123046875, 395.7208251953125, 0.8207128047943115], "8": [104.88813781738281, 336.0216979980469, 0.9557874202728271], "9": [471.3145446777344, 434.636962890625, 0.7641743421554565], "10": [73.00028991699219, 199.89187622070312, 0.9473036527633667], "11": [428.5444030761719, 480.0, 0.21065007150173187], "12": [280.92730712890625, 480.0, 0.3252127766609192], "13": [458.33624267578125, 449.13165283203125, 0.001428006449714303], "14": [262.68035888671875, 450.2400207519531, 0.0024680497590452433], "15": [417.9203186035156, 478.3681640625, 0.00012787508603651077], "16": [227.70896911621094, 463.9015808105469, 0.00019897679158020765]}} +{"t": 28.456965, "tracked": true, "track_id": 1, "bbox": [27.36936378479004, 62.32781982421875, 558.7088623046875, 479.9404296875], "det_conf": 0.8970922231674194, "mean_kpt_conf": 0.9294432401657104, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9062422663246625, "right_lift": -0.5186844084312882, "left_bend": 0.4231096775978774, "right_bend": 0.6015603851527369}, "keypoints": {"0": [344.0018005371094, 159.2786865234375, 0.9992882609367371], "1": [364.77239990234375, 135.75680541992188, 0.9984580278396606], "2": [323.662841796875, 135.8253173828125, 0.9966443777084351], "3": [392.8280029296875, 145.85302734375, 0.9559944868087769], "4": [292.8103332519531, 145.87802124023438, 0.795459508895874], "5": [456.9252014160156, 260.48760986328125, 0.9901044964790344], "6": [233.87515258789062, 257.8180236816406, 0.9979003667831421], "7": [519.7130126953125, 395.08203125, 0.8234298825263977], "8": [106.36444091796875, 335.17529296875, 0.9567034244537354], "9": [469.8464050292969, 435.24627685546875, 0.7625598311424255], "10": [74.88961791992188, 198.44198608398438, 0.9473329782485962], "11": [427.7504577636719, 480.0, 0.21702085435390472], "12": [281.4660949707031, 480.0, 0.33417728543281555], "13": [460.2560729980469, 448.0885314941406, 0.0014788559637963772], "14": [267.4541931152344, 450.2228088378906, 0.0025786564219743013], "15": [421.076171875, 477.6080322265625, 0.00013330821821000427], "16": [235.56607055664062, 464.28662109375, 0.00020929976017214358]}} +{"t": 28.520358, "tracked": true, "track_id": 1, "bbox": [30.4713077545166, 62.16569900512695, 560.5222778320312, 480.0], "det_conf": 0.8950142860412598, "mean_kpt_conf": 0.9270311756567522, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9057647315440324, "right_lift": -0.52860696456233, "left_bend": 0.45698260795704, "right_bend": 0.6276626315985645}, "keypoints": {"0": [344.8502502441406, 159.88975524902344, 0.9992796778678894], "1": [365.4338684082031, 135.8496856689453, 0.9983402490615845], "2": [324.4102478027344, 135.84109497070312, 0.9968022108078003], "3": [392.9053039550781, 144.94070434570312, 0.9471819400787354], "4": [292.7207946777344, 144.60409545898438, 0.8124904632568359], "5": [456.26104736328125, 261.5147399902344, 0.9896613359451294], "6": [231.71182250976562, 258.0306701660156, 0.9977479577064514], "7": [520.4158935546875, 398.6355895996094, 0.8062089085578918], "8": [103.12057495117188, 338.10711669921875, 0.9509875774383545], "9": [469.4249267578125, 431.51800537109375, 0.7541699409484863], "10": [80.40757751464844, 193.59481811523438, 0.9444726705551147], "11": [424.91143798828125, 480.0, 0.19010251760482788], "12": [277.9079895019531, 480.0, 0.29511356353759766], "13": [459.1373291015625, 446.1870422363281, 0.0014482216211035848], "14": [267.3764953613281, 448.51873779296875, 0.0025009161327034235], "15": [419.01153564453125, 474.7190246582031, 0.00013544844114221632], "16": [234.81500244140625, 461.6456298828125, 0.00020921854593325406]}} +{"t": 28.58309, "tracked": true, "track_id": 1, "bbox": [35.705467224121094, 62.52715301513672, 558.5032348632812, 480.0], "det_conf": 0.8917747139930725, "mean_kpt_conf": 0.9283219088207592, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9071678321332314, "right_lift": -0.5252057458287458, "left_bend": 0.47131804762714874, "right_bend": 0.6401493774883467}, "keypoints": {"0": [345.7828674316406, 159.53219604492188, 0.9992666840553284], "1": [366.0340881347656, 135.95574951171875, 0.9982536435127258], "2": [325.2684326171875, 135.97085571289062, 0.9968114495277405], "3": [392.7584228515625, 145.7635040283203, 0.9426217675209045], "4": [293.2853698730469, 145.45498657226562, 0.81739741563797], "5": [455.8829040527344, 261.10498046875, 0.9896243214607239], "6": [232.28550720214844, 256.2088317871094, 0.9976887702941895], "7": [520.06005859375, 399.4693908691406, 0.8107442855834961], "8": [104.06703186035156, 335.34283447265625, 0.9522945284843445], "9": [468.0036926269531, 429.57977294921875, 0.7606983184814453], "10": [87.56332397460938, 189.47787475585938, 0.9461398124694824], "11": [426.15509033203125, 480.0, 0.19096282124519348], "12": [280.03143310546875, 480.0, 0.29548007249832153], "13": [459.88385009765625, 444.2401123046875, 0.0014831778826192021], "14": [271.0472412109375, 445.8739013671875, 0.0025617526844143867], "15": [420.5823059082031, 474.6258850097656, 0.00013928473345004022], "16": [239.67095947265625, 461.49560546875, 0.00021506361372303218]}} +{"t": 28.619728, "tracked": true, "track_id": 1, "bbox": [41.6024284362793, 62.80763244628906, 558.7413940429688, 480.0], "det_conf": 0.8956767320632935, "mean_kpt_conf": 0.9306673028252341, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.907302306929293, "right_lift": -0.5298188318030885, "left_bend": 0.46447887404156435, "right_bend": 0.6443606051217148}, "keypoints": {"0": [345.79278564453125, 159.39918518066406, 0.9992806315422058], "1": [366.343017578125, 136.04055786132812, 0.9982738494873047], "2": [325.3468017578125, 135.62095642089844, 0.9968204498291016], "3": [392.97247314453125, 146.35931396484375, 0.942227303981781], "4": [293.00909423828125, 145.11807250976562, 0.8172445297241211], "5": [455.12322998046875, 260.7142639160156, 0.9899573922157288], "6": [232.17018127441406, 256.19049072265625, 0.9977219700813293], "7": [519.4580078125, 399.5347595214844, 0.8220194578170776], "8": [103.66757202148438, 336.4666748046875, 0.954211413860321], "9": [465.77301025390625, 432.1226806640625, 0.7710274457931519], "10": [87.93693542480469, 187.00808715820312, 0.9485558867454529], "11": [426.1485595703125, 480.0, 0.19510093331336975], "12": [279.9539489746094, 480.0, 0.2981276214122772], "13": [460.58929443359375, 444.20172119140625, 0.001472516218200326], "14": [269.673828125, 445.9720153808594, 0.0025028118398040533], "15": [422.0811767578125, 476.30767822265625, 0.00013303925516083837], "16": [235.60682678222656, 461.279052734375, 0.00020311417756602168]}} +{"t": 28.683306, "tracked": true, "track_id": 1, "bbox": [50.14739990234375, 62.65776443481445, 559.560791015625, 480.0], "det_conf": 0.9035884737968445, "mean_kpt_conf": 0.9290618408810009, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.905376938781863, "right_lift": -0.5395547134645502, "left_bend": 0.45630971019838046, "right_bend": 0.6586021629622019}, "keypoints": {"0": [346.66522216796875, 159.37725830078125, 0.9992827773094177], "1": [366.97747802734375, 135.39810180664062, 0.9982245564460754], "2": [326.032470703125, 135.44863891601562, 0.9969542026519775], "3": [393.55389404296875, 144.453857421875, 0.9363728761672974], "4": [293.3918762207031, 144.10906982421875, 0.8279319405555725], "5": [457.39434814453125, 258.94976806640625, 0.9898403286933899], "6": [230.82473754882812, 255.68368530273438, 0.997651994228363], "7": [522.9530639648438, 398.73809814453125, 0.8133689761161804], "8": [103.37326049804688, 337.35955810546875, 0.9513012766838074], "9": [469.05950927734375, 433.72381591796875, 0.7622769474983215], "10": [92.55014038085938, 186.55165100097656, 0.9464743733406067], "11": [427.62139892578125, 480.0, 0.1807551085948944], "12": [279.52606201171875, 480.0, 0.2774979770183563], "13": [462.9737548828125, 440.61676025390625, 0.0014352649450302124], "14": [271.93585205078125, 443.99810791015625, 0.002450230298563838], "15": [420.0671081542969, 474.8197326660156, 0.00013542661326937377], "16": [238.55624389648438, 461.4895935058594, 0.00020611978834494948]}} +{"t": 28.750785, "tracked": true, "track_id": 1, "bbox": [57.990142822265625, 62.587310791015625, 559.8331298828125, 480.0], "det_conf": 0.9099933505058289, "mean_kpt_conf": 0.9280322356657549, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.908671546043074, "right_lift": -0.5526096736863622, "left_bend": 0.46419979146467716, "right_bend": 0.6686090685855827}, "keypoints": {"0": [347.3707275390625, 159.44473266601562, 0.9992772936820984], "1": [367.82513427734375, 135.63363647460938, 0.998153030872345], "2": [326.5681457519531, 135.40377807617188, 0.9970190525054932], "3": [394.13897705078125, 145.18609619140625, 0.9313965439796448], "4": [293.40338134765625, 144.19998168945312, 0.8327977061271667], "5": [457.2725830078125, 259.7584228515625, 0.9895079135894775], "6": [231.36557006835938, 254.60189819335938, 0.9975408315658569], "7": [522.7434692382812, 402.2491149902344, 0.807712972164154], "8": [105.18121337890625, 338.26800537109375, 0.9500053524971008], "9": [467.869873046875, 435.3792419433594, 0.7589188814163208], "10": [96.84791564941406, 189.05718994140625, 0.946025013923645], "11": [427.585693359375, 480.0, 0.1705578714609146], "12": [280.0254821777344, 480.0, 0.2642224431037903], "13": [462.3153381347656, 439.961669921875, 0.001405327464453876], "14": [272.79168701171875, 441.77886962890625, 0.002412213012576103], "15": [420.03863525390625, 476.17144775390625, 0.00013567930727731436], "16": [240.1282958984375, 461.85223388671875, 0.0002065791777567938]}} +{"t": 28.812813, "tracked": true, "track_id": 1, "bbox": [64.98808288574219, 62.51283264160156, 558.4488525390625, 479.978759765625], "det_conf": 0.9118090867996216, "mean_kpt_conf": 0.9288981611078436, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9097212646838904, "right_lift": -0.5565639362187265, "left_bend": 0.4807799513581696, "right_bend": 0.6849886964515601}, "keypoints": {"0": [347.5152893066406, 159.296630859375, 0.9992862343788147], "1": [367.6882019042969, 135.3799285888672, 0.9980974793434143], "2": [326.7281188964844, 134.88458251953125, 0.9970909357070923], "3": [393.54644775390625, 144.42747497558594, 0.923809826374054], "4": [293.0605773925781, 142.8577117919922, 0.8397990465164185], "5": [455.73724365234375, 259.6614990234375, 0.9894017577171326], "6": [231.345458984375, 254.463623046875, 0.9974884986877441], "7": [520.3734130859375, 401.2755126953125, 0.8071225881576538], "8": [104.37152099609375, 339.524658203125, 0.9496093988418579], "9": [462.2806701660156, 432.154541015625, 0.7677528262138367], "10": [103.01303100585938, 189.99911499023438, 0.9484211802482605], "11": [427.4566650390625, 480.0, 0.16967996954917908], "12": [280.5557861328125, 480.0, 0.26243501901626587], "13": [460.13055419921875, 442.8122863769531, 0.0013949621934443712], "14": [271.83447265625, 444.3487548828125, 0.0023674548137933016], "15": [417.883544921875, 477.6304931640625, 0.00013190481695346534], "16": [236.61341857910156, 462.3651428222656, 0.00019804156909231097]}} +{"t": 28.882334, "tracked": true, "track_id": 1, "bbox": [76.52396392822266, 62.17863464355469, 558.5446166992188, 479.87384033203125], "det_conf": 0.9104351997375488, "mean_kpt_conf": 0.9280801036141135, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9181349148761037, "right_lift": -0.581056763126944, "left_bend": 0.4784185055666708, "right_bend": 0.7023663552635454}, "keypoints": {"0": [347.7944030761719, 159.2079620361328, 0.9992380142211914], "1": [367.946044921875, 135.39080810546875, 0.9979382157325745], "2": [326.9722900390625, 135.04794311523438, 0.9969781637191772], "3": [393.79229736328125, 144.5863037109375, 0.9201948046684265], "4": [293.57830810546875, 143.237060546875, 0.8410619497299194], "5": [455.6487731933594, 260.33551025390625, 0.9892817735671997], "6": [231.65777587890625, 253.29135131835938, 0.9974015951156616], "7": [518.1987915039062, 405.2610778808594, 0.8054625391960144], "8": [110.70512390136719, 339.6453857421875, 0.9491049647331238], "9": [463.1435546875, 433.5917663574219, 0.7651944756507874], "10": [113.04435729980469, 190.90928649902344, 0.9470246434211731], "11": [424.7264099121094, 480.0, 0.16792304813861847], "12": [278.1601867675781, 480.0, 0.2598792016506195], "13": [459.59716796875, 440.987060546875, 0.0014350352576002479], "14": [272.20550537109375, 442.27850341796875, 0.0024716141633689404], "15": [416.4224548339844, 476.0147705078125, 0.00014041100803297013], "16": [240.1495361328125, 462.8271484375, 0.0002123391896020621]}} +{"t": 28.948453, "tracked": true, "track_id": 1, "bbox": [87.47464752197266, 61.96564865112305, 559.6790771484375, 479.89898681640625], "det_conf": 0.9086873531341553, "mean_kpt_conf": 0.932250049981204, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9169972802001983, "right_lift": -0.5946698051109088, "left_bend": 0.4685960273297627, "right_bend": 0.7095708345275811}, "keypoints": {"0": [348.633056640625, 158.43685913085938, 0.9992868304252625], "1": [368.72705078125, 134.41453552246094, 0.9980416297912598], "2": [327.349853515625, 134.6387939453125, 0.9971203804016113], "3": [394.8316650390625, 143.52212524414062, 0.9191908240318298], "4": [293.59014892578125, 143.54925537109375, 0.8426406383514404], "5": [456.85601806640625, 257.79620361328125, 0.9899561405181885], "6": [232.18411254882812, 253.10205078125, 0.9975430965423584], "7": [520.0223999023438, 403.00640869140625, 0.8253735303878784], "8": [112.34095764160156, 341.74603271484375, 0.9544371366500854], "9": [466.4200134277344, 432.91680908203125, 0.7801517844200134], "10": [115.5615234375, 192.1932373046875, 0.9510085582733154], "11": [426.65350341796875, 480.0, 0.18643243610858917], "12": [278.735107421875, 480.0, 0.2832942306995392], "13": [464.0686950683594, 443.18743896484375, 0.0013917548349127173], "14": [269.90277099609375, 446.131591796875, 0.002386423759162426], "15": [422.8629150390625, 478.173583984375, 0.00012772738409694284], "16": [234.8043212890625, 466.712646484375, 0.00019212820916436613]}} +{"t": 29.011221, "tracked": true, "track_id": 1, "bbox": [93.09539031982422, 62.340240478515625, 562.2092895507812, 479.9108581542969], "det_conf": 0.9101743102073669, "mean_kpt_conf": 0.9313363920558583, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9165295606116602, "right_lift": -0.6062407373114118, "left_bend": 0.4935139844087332, "right_bend": 0.7227868071363874}, "keypoints": {"0": [349.65716552734375, 158.29823303222656, 0.9992820620536804], "1": [369.46246337890625, 134.80445861816406, 0.9978026747703552], "2": [328.3404541015625, 134.25625610351562, 0.9973080158233643], "3": [393.96514892578125, 144.51412963867188, 0.8982411623001099], "4": [292.97393798828125, 142.98814392089844, 0.861464262008667], "5": [454.9814758300781, 258.5630187988281, 0.9898533225059509], "6": [230.3838348388672, 252.45445251464844, 0.9973846077919006], "7": [518.4464721679688, 403.993896484375, 0.8216137886047363], "8": [112.20907592773438, 342.53875732421875, 0.9515483975410461], "9": [460.99615478515625, 430.4710693359375, 0.780203104019165], "10": [119.50515747070312, 192.47100830078125, 0.9499989151954651], "11": [425.20758056640625, 480.0, 0.1767955869436264], "12": [277.2599182128906, 480.0, 0.26631516218185425], "13": [460.925048828125, 441.1434326171875, 0.0014090804615989327], "14": [267.52874755859375, 442.6563415527344, 0.0023487412836402655], "15": [418.81024169921875, 477.4555969238281, 0.00013112917076796293], "16": [232.40826416015625, 463.4090576171875, 0.00019089160196017474]}} +{"t": 29.047248, "tracked": true, "track_id": 1, "bbox": [95.07128143310547, 62.08031463623047, 559.1458129882812, 479.901611328125], "det_conf": 0.9114307165145874, "mean_kpt_conf": 0.9314103830944408, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9188607866664694, "right_lift": -0.6086967452823169, "left_bend": 0.4676921611330502, "right_bend": 0.7304447429561377}, "keypoints": {"0": [351.341552734375, 157.07244873046875, 0.9992997646331787], "1": [370.4385681152344, 133.70135498046875, 0.997707724571228], "2": [329.61566162109375, 133.34414672851562, 0.9974880218505859], "3": [393.8778991699219, 143.70437622070312, 0.8820702433586121], "4": [293.3553771972656, 142.85931396484375, 0.8759227395057678], "5": [454.41619873046875, 258.2557678222656, 0.9898938536643982], "6": [230.7183074951172, 252.26686096191406, 0.9973328113555908], "7": [516.6778564453125, 403.2441711425781, 0.8246650099754333], "8": [113.10958862304688, 342.4959716796875, 0.9519554972648621], "9": [462.8472900390625, 433.1509094238281, 0.7787029147148132], "10": [123.40054321289062, 194.76248168945312, 0.9504756331443787], "11": [425.1858825683594, 480.0, 0.17954149842262268], "12": [277.4461669921875, 480.0, 0.26810625195503235], "13": [461.9853820800781, 441.39141845703125, 0.0013980569783598185], "14": [266.6254577636719, 443.9460754394531, 0.0023097400553524494], "15": [419.69873046875, 477.8894348144531, 0.00013000366743654013], "16": [229.40753173828125, 465.9334716796875, 0.00018603888747747988]}} +{"t": 29.110468, "tracked": true, "track_id": 1, "bbox": [97.85743713378906, 62.01442337036133, 560.4464111328125, 480.0], "det_conf": 0.9091400504112244, "mean_kpt_conf": 0.9253118742596019, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9265825008948269, "right_lift": -0.61077502485881, "left_bend": 0.48199288416382824, "right_bend": 0.7461166587891009}, "keypoints": {"0": [358.2170715332031, 155.19149780273438, 0.9992892742156982], "1": [375.9712219238281, 131.887451171875, 0.9971640706062317], "2": [334.31939697265625, 132.886962890625, 0.9978762865066528], "3": [397.003173828125, 142.58201599121094, 0.8161752223968506], "4": [294.13677978515625, 145.39749145507812, 0.909395694732666], "5": [456.8450622558594, 256.57110595703125, 0.9895715713500977], "6": [231.19212341308594, 250.17807006835938, 0.9970587491989136], "7": [517.0238647460938, 404.83453369140625, 0.8155831694602966], "8": [116.63375854492188, 338.54510498046875, 0.9491238594055176], "9": [462.73052978515625, 430.5372314453125, 0.7603340744972229], "10": [134.1431121826172, 188.4879150390625, 0.9468586444854736], "11": [427.36297607421875, 480.0, 0.19085939228534698], "12": [279.02001953125, 480.0, 0.2794179618358612], "13": [462.7662658691406, 444.26708984375, 0.0014462685212492943], "14": [270.64385986328125, 448.2555236816406, 0.002361738122999668], "15": [417.0960388183594, 477.3482666015625, 0.00013026638771407306], "16": [234.51773071289062, 471.4409484863281, 0.00018028497288469225]}} +{"t": 29.177142, "tracked": true, "track_id": 1, "bbox": [98.08904266357422, 62.375057220458984, 558.2390747070312, 480.0], "det_conf": 0.9071661233901978, "mean_kpt_conf": 0.9149070978164673, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9174604521393158, "right_lift": -0.62365885934464, "left_bend": 0.4479162088895372, "right_bend": 0.7642896285514545}, "keypoints": {"0": [367.68768310546875, 151.5343475341797, 0.9993194341659546], "1": [381.3294982910156, 130.431884765625, 0.9950655102729797], "2": [343.3202209472656, 130.84506225585938, 0.9984283447265625], "3": [394.22930908203125, 143.57400512695312, 0.5791837573051453], "4": [297.9029235839844, 146.33285522460938, 0.9593102335929871], "5": [454.9764099121094, 256.1910095214844, 0.9923222661018372], "6": [229.0532684326172, 249.87939453125, 0.9971440434455872], "7": [518.2791137695312, 402.17840576171875, 0.8585437536239624], "8": [117.39181518554688, 338.9659423828125, 0.9524399042129517], "9": [468.358642578125, 434.37152099609375, 0.7828513383865356], "10": [141.1737060546875, 188.61453247070312, 0.949369490146637], "11": [426.11773681640625, 480.0, 0.21474064886569977], "12": [276.5149230957031, 480.0, 0.2823907136917114], "13": [461.114990234375, 437.28192138671875, 0.0014815024333074689], "14": [261.135498046875, 443.45660400390625, 0.002090370049700141], "15": [414.01190185546875, 474.402099609375, 0.00011654511763481423], "16": [220.05108642578125, 469.96173095703125, 0.00013547090929932892]}} +{"t": 29.241369, "tracked": true, "track_id": 1, "bbox": [97.8526611328125, 63.024192810058594, 557.0288696289062, 480.0], "det_conf": 0.9071609377861023, "mean_kpt_conf": 0.8989389620044015, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9118978968671697, "right_lift": -0.6060681608054596, "left_bend": 0.41205223263749385, "right_bend": 0.7627108263928559}, "keypoints": {"0": [375.9947814941406, 149.40286254882812, 0.9992421865463257], "1": [386.4497985839844, 128.27720642089844, 0.9920411705970764], "2": [350.0824279785156, 130.08412170410156, 0.9985870122909546], "3": [394.54949951171875, 141.020263671875, 0.3843748867511749], "4": [300.8134765625, 147.8265380859375, 0.9779972434043884], "5": [457.76116943359375, 252.705810546875, 0.9933416247367859], "6": [230.04391479492188, 249.518310546875, 0.9971961975097656], "7": [522.0411376953125, 395.5282287597656, 0.8704954981803894], "8": [117.69821166992188, 335.12060546875, 0.9538528919219971], "9": [473.7154235839844, 436.1669921875, 0.7730857133865356], "10": [143.7121124267578, 187.32000732421875, 0.9481141567230225], "11": [431.0024719238281, 480.0, 0.23883654177188873], "12": [279.5475769042969, 480.0, 0.2992284297943115], "13": [464.6894226074219, 435.6888122558594, 0.001431561540812254], "14": [257.450439453125, 446.0631103515625, 0.0018924474716186523], "15": [414.5671691894531, 472.9710693359375, 0.00010206853039562702], "16": [211.0797119140625, 475.10125732421875, 0.00010776454291772097]}} +{"t": 29.311392, "tracked": true, "track_id": 1, "bbox": [97.33586883544922, 62.97612762451172, 555.1026611328125, 480.0], "det_conf": 0.9022076725959778, "mean_kpt_conf": 0.9175778806209565, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9280265159030711, "right_lift": -0.5720890713979053, "left_bend": 0.32572567936948627, "right_bend": 0.7416679636086714}, "keypoints": {"0": [380.7833557128906, 148.3105926513672, 0.9986144304275513], "1": [388.5924377441406, 126.94377136230469, 0.9811681509017944], "2": [355.523193359375, 129.48681640625, 0.9981437921524048], "3": [391.604248046875, 139.69638061523438, 0.24034379422664642], "4": [305.8465881347656, 147.6959228515625, 0.9878447651863098], "5": [454.717529296875, 258.5682067871094, 0.9914993643760681], "6": [232.82081604003906, 251.03182983398438, 0.9964748024940491], "7": [514.7568969726562, 408.1413879394531, 0.7795075178146362], "8": [121.22564697265625, 328.8702087402344, 0.9272143244743347], "9": [477.17181396484375, 458.4558410644531, 0.609157383441925], "10": [143.06651306152344, 184.5258026123047, 0.9061542749404907], "11": [427.96612548828125, 477.32977294921875, 0.17760387063026428], "12": [284.186767578125, 478.80413818359375, 0.2349470555782318], "13": [455.5148010253906, 432.91448974609375, 0.0019971374422311783], "14": [277.6725769042969, 446.5130920410156, 0.002748913364484906], "15": [399.5651550292969, 472.87713623046875, 0.00016031040286179632], "16": [247.77029418945312, 480.0, 0.0001677248510532081]}} +{"t": 29.372733, "tracked": true, "track_id": 1, "bbox": [96.21504211425781, 63.46057891845703, 559.500244140625, 480.0], "det_conf": 0.8989266157150269, "mean_kpt_conf": 0.949694037437439, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9154222272250013, "right_lift": -0.5763930417932379, "left_bend": 0.43212012492889307, "right_bend": 0.750203872458682}, "keypoints": {"0": [381.2718811035156, 149.0398712158203, 0.999107301235199], "1": [390.3087158203125, 128.44973754882812, 0.9886925220489502], "2": [356.0350341796875, 129.8271942138672, 0.9984810948371887], "3": [395.3497619628906, 141.47686767578125, 0.30863872170448303], "4": [306.1484069824219, 147.3388671875, 0.983877420425415], "5": [458.0118713378906, 255.20465087890625, 0.9939432740211487], "6": [231.538818359375, 249.616943359375, 0.9974091649055481], "7": [520.5682373046875, 397.48095703125, 0.8710888028144836], "8": [111.79078674316406, 334.0812683105469, 0.9531617760658264], "9": [473.60284423828125, 431.54400634765625, 0.7649167776107788], "10": [137.41860961914062, 186.31866455078125, 0.9462622404098511], "11": [431.9414978027344, 480.0, 0.23935091495513916], "12": [281.41888427734375, 480.0, 0.29513224959373474], "13": [466.2473449707031, 435.0862731933594, 0.001407813630066812], "14": [260.7655944824219, 445.01666259765625, 0.0017900263192132115], "15": [420.55902099609375, 469.8511962890625, 9.461434092372656e-05], "16": [216.8602294921875, 472.9493408203125, 9.519407467450947e-05]}} +{"t": 29.406574, "tracked": true, "track_id": 1, "bbox": [95.7378158569336, 63.443763732910156, 559.7230834960938, 480.0], "det_conf": 0.9008895754814148, "mean_kpt_conf": 0.9498593032360076, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.916767049518029, "right_lift": -0.5774654219282934, "left_bend": 0.46911269885800083, "right_bend": 0.7499642966229718}, "keypoints": {"0": [380.77362060546875, 149.4095458984375, 0.9990983009338379], "1": [389.8994140625, 128.60137939453125, 0.9883773922920227], "2": [355.50543212890625, 130.08592224121094, 0.9984650611877441], "3": [394.8953857421875, 141.38121032714844, 0.3058187663555145], "4": [305.3810729980469, 147.33030700683594, 0.9841655492782593], "5": [457.8052062988281, 255.6785125732422, 0.9940991401672363], "6": [230.32534790039062, 249.582763671875, 0.9974836707115173], "7": [520.5775146484375, 399.75555419921875, 0.8705822229385376], "8": [110.19345092773438, 334.55426025390625, 0.9531061053276062], "9": [470.7591247558594, 427.48614501953125, 0.7669782638549805], "10": [136.14083862304688, 183.09170532226562, 0.946237325668335], "11": [432.0551452636719, 480.0, 0.2438635677099228], "12": [281.02398681640625, 480.0, 0.30076634883880615], "13": [464.4201965332031, 438.5283508300781, 0.001401609042659402], "14": [259.47003173828125, 447.8327941894531, 0.0017712463159114122], "15": [420.16412353515625, 471.8736877441406, 9.013484668685123e-05], "16": [217.64926147460938, 474.7139892578125, 9.026472253026441e-05]}} +{"t": 29.475134, "tracked": true, "track_id": 1, "bbox": [94.72731018066406, 63.698829650878906, 557.7886962890625, 480.0], "det_conf": 0.9041844010353088, "mean_kpt_conf": 0.9493034064769745, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9150300233761827, "right_lift": -0.5705845570934821, "left_bend": 0.4379907896326738, "right_bend": 0.7317277339978041}, "keypoints": {"0": [380.9864501953125, 148.56329345703125, 0.9991315007209778], "1": [390.27618408203125, 127.82911682128906, 0.9894596338272095], "2": [355.8852844238281, 129.09881591796875, 0.998474657535553], "3": [395.666259765625, 140.7559356689453, 0.334311306476593], "4": [306.232421875, 146.44422912597656, 0.982862114906311], "5": [458.35931396484375, 255.34571838378906, 0.9938868880271912], "6": [231.5697784423828, 250.30621337890625, 0.9975192546844482], "7": [521.0852661132812, 397.6316833496094, 0.8696333765983582], "8": [109.9447021484375, 334.80950927734375, 0.9537447690963745], "9": [474.79498291015625, 429.986328125, 0.7624604105949402], "10": [128.07579040527344, 185.41937255859375, 0.9458614587783813], "11": [432.0728454589844, 480.0, 0.24245868623256683], "12": [280.9275207519531, 480.0, 0.30144447088241577], "13": [465.63299560546875, 437.4925537109375, 0.0014009445440024137], "14": [256.1689758300781, 447.2652587890625, 0.001777318655513227], "15": [422.4635925292969, 470.7041931152344, 9.221161599271e-05], "16": [211.91583251953125, 473.0901794433594, 9.311004396295175e-05]}} +{"t": 29.537931, "tracked": true, "track_id": 1, "bbox": [93.25311279296875, 63.23531723022461, 557.4056396484375, 480.0], "det_conf": 0.9111484885215759, "mean_kpt_conf": 0.9500174283981323, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9221703570799509, "right_lift": -0.5774760979857242, "left_bend": 0.43862771528946515, "right_bend": 0.722520922361564}, "keypoints": {"0": [380.553955078125, 148.92384338378906, 0.9993025064468384], "1": [390.7767333984375, 128.75180053710938, 0.9918493032455444], "2": [355.6927490234375, 129.18707275390625, 0.9987217783927917], "3": [397.3525390625, 142.53530883789062, 0.34938204288482666], "4": [305.9624328613281, 146.3702392578125, 0.9797543883323669], "5": [457.1787109375, 257.4501037597656, 0.993395984172821], "6": [231.71456909179688, 250.68618774414062, 0.9973779916763306], "7": [517.5440063476562, 401.373046875, 0.8680987358093262], "8": [109.92633056640625, 336.8316345214844, 0.9531415104866028], "9": [471.0712585449219, 432.48565673828125, 0.770736813545227], "10": [122.36543273925781, 188.09268188476562, 0.9477952718734741], "11": [429.27935791015625, 480.0, 0.23568609356880188], "12": [278.8818359375, 480.0, 0.2937427759170532], "13": [463.20697021484375, 438.72039794921875, 0.0014646727358922362], "14": [255.0762481689453, 446.4217224121094, 0.0018490356160327792], "15": [420.90216064453125, 469.3204040527344, 0.00010149860463570803], "16": [210.49163818359375, 468.5426940917969, 0.00010298793495167047]}} +{"t": 29.605849, "tracked": true, "track_id": 1, "bbox": [91.10460662841797, 63.12852096557617, 557.4674072265625, 479.9846496582031], "det_conf": 0.9112801551818848, "mean_kpt_conf": 0.898143009705977, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.912104100009459, "right_lift": -0.564560298498107, "left_bend": 0.4244026447127562, "right_bend": 0.7108532608511037}, "keypoints": {"0": [378.53277587890625, 151.70286560058594, 0.9993442893028259], "1": [389.3436279296875, 130.38763427734375, 0.9929177761077881], "2": [353.7693176269531, 131.51467895507812, 0.9987500905990601], "3": [397.5900573730469, 141.8411865234375, 0.3849179744720459], "4": [305.0850830078125, 146.67117309570312, 0.9768316149711609], "5": [458.1573486328125, 255.82908630371094, 0.9930847883224487], "6": [233.0915985107422, 249.9916229248047, 0.9972988963127136], "7": [521.802490234375, 397.43115234375, 0.8638901114463806], "8": [111.21176147460938, 333.3562927246094, 0.9530744552612305], "9": [477.40802001953125, 431.879150390625, 0.7710680961608887], "10": [120.25042724609375, 188.95985412597656, 0.9483950138092041], "11": [430.7181396484375, 480.0, 0.23549404740333557], "12": [280.9170837402344, 480.0, 0.296914666891098], "13": [464.26190185546875, 439.47418212890625, 0.0014726045774295926], "14": [257.97821044921875, 447.22662353515625, 0.0019037812016904354], "15": [420.95166015625, 469.6573486328125, 0.00010347511852160096], "16": [213.1253662109375, 469.4437255859375, 0.00010771850065793842]}} +{"t": 29.670838, "tracked": true, "track_id": 1, "bbox": [89.32501983642578, 63.341514587402344, 557.3870849609375, 479.92987060546875], "det_conf": 0.9121302366256714, "mean_kpt_conf": 0.9128883968700062, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9165646560711589, "right_lift": -0.5789586573154243, "left_bend": 0.4667727918508142, "right_bend": 0.7142513202743583}, "keypoints": {"0": [371.77178955078125, 152.0082550048828, 0.999367892742157], "1": [385.23077392578125, 131.179443359375, 0.9952334761619568], "2": [347.89373779296875, 131.25592041015625, 0.9985736608505249], "3": [397.4696044921875, 144.23226928710938, 0.573292076587677], "4": [302.13018798828125, 146.41497802734375, 0.9610411524772644], "5": [457.85693359375, 257.4579162597656, 0.992214024066925], "6": [230.73289489746094, 250.76370239257812, 0.997302770614624], "7": [520.7057495117188, 401.51129150390625, 0.852482259273529], "8": [109.21438598632812, 337.0500793457031, 0.9517735242843628], "9": [467.6173095703125, 431.61090087890625, 0.7726758122444153], "10": [117.4171142578125, 189.77569580078125, 0.9478157162666321], "11": [428.2417297363281, 480.0, 0.21604344248771667], "12": [277.70294189453125, 480.0, 0.2846992611885071], "13": [462.9531555175781, 439.1058654785156, 0.001486897119320929], "14": [259.732666015625, 443.787109375, 0.002044686349108815], "15": [419.4421081542969, 472.41412353515625, 0.00011518836254253983], "16": [218.36703491210938, 465.9130859375, 0.00013131610467098653]}} +{"t": 29.740293, "tracked": true, "track_id": 1, "bbox": [88.08228302001953, 62.7455940246582, 558.75927734375, 479.8480529785156], "det_conf": 0.9088863134384155, "mean_kpt_conf": 0.9305787736719305, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9121249414040514, "right_lift": -0.586858907165915, "left_bend": 0.42747530261384414, "right_bend": 0.7124896950073353}, "keypoints": {"0": [363.7785949707031, 153.55593872070312, 0.9993942975997925], "1": [380.3231201171875, 131.98146057128906, 0.9970659613609314], "2": [340.93109130859375, 131.63885498046875, 0.9982289671897888], "3": [398.2280578613281, 144.60006713867188, 0.7748843431472778], "4": [299.7806701660156, 144.97885131835938, 0.9276617765426636], "5": [458.49468994140625, 256.2347717285156, 0.9916444420814514], "6": [232.38671875, 250.31854248046875, 0.9974728226661682], "7": [522.9608154296875, 399.68292236328125, 0.8572238087654114], "8": [111.22503662109375, 338.1359558105469, 0.9576818346977234], "9": [475.157958984375, 436.03802490234375, 0.7833928465843201], "10": [117.1253662109375, 192.1028289794922, 0.9517154097557068], "11": [428.6076965332031, 480.0, 0.21122346818447113], "12": [278.0357971191406, 480.0, 0.29266637563705444], "13": [467.3609619140625, 437.7671203613281, 0.0013914183946326375], "14": [259.379150390625, 441.69580078125, 0.0020936212968081236], "15": [426.33428955078125, 475.00396728515625, 0.00011768724652938545], "16": [215.490234375, 465.16748046875, 0.00015041802544146776]}} +{"t": 29.804144, "tracked": true, "track_id": 1, "bbox": [87.31814575195312, 62.658695220947266, 561.400146484375, 479.8582458496094], "det_conf": 0.904056966304779, "mean_kpt_conf": 0.9307511069557883, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9206495946234979, "right_lift": -0.5843145073297075, "left_bend": 0.4684994266741875, "right_bend": 0.7104052986864485}, "keypoints": {"0": [356.81427001953125, 152.23574829101562, 0.9993082284927368], "1": [375.50677490234375, 131.3035125732422, 0.9977149963378906], "2": [334.40972900390625, 130.8508758544922, 0.9976769089698792], "3": [397.65777587890625, 146.75320434570312, 0.8836996555328369], "4": [297.22198486328125, 146.616455078125, 0.8871583938598633], "5": [457.4886474609375, 259.0496520996094, 0.9900272488594055], "6": [232.30874633789062, 251.42005920410156, 0.9974269270896912], "7": [519.1441650390625, 404.45074462890625, 0.8281360268592834], "8": [110.5494384765625, 339.0889892578125, 0.9542068243026733], "9": [469.826904296875, 431.39398193359375, 0.7573620080947876], "10": [115.97572326660156, 192.39097595214844, 0.945544958114624], "11": [425.18621826171875, 480.0, 0.19383275508880615], "12": [276.5224304199219, 480.0, 0.287249892950058], "13": [465.830322265625, 439.27642822265625, 0.0013897642493247986], "14": [266.6689453125, 440.9231262207031, 0.0023167456965893507], "15": [427.5833435058594, 476.6249694824219, 0.0001327032659901306], "16": [229.58578491210938, 465.7999267578125, 0.00019113783491775393]}} +{"t": 29.865808, "tracked": true, "track_id": 1, "bbox": [86.46565246582031, 62.998985290527344, 559.4285888671875, 479.7571716308594], "det_conf": 0.9059994220733643, "mean_kpt_conf": 0.9290003668178212, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9227411480813112, "right_lift": -0.5730787773551607, "left_bend": 0.45980875154847756, "right_bend": 0.6983494557477915}, "keypoints": {"0": [350.22821044921875, 151.9208526611328, 0.9992567896842957], "1": [369.4078369140625, 130.72525024414062, 0.9980702996253967], "2": [328.91888427734375, 130.7218017578125, 0.9970779418945312], "3": [394.1331787109375, 146.15972900390625, 0.9290252327919006], "4": [296.0367431640625, 146.47833251953125, 0.8434412479400635], "5": [456.05218505859375, 259.9085998535156, 0.9894369840621948], "6": [235.1990203857422, 251.75357055664062, 0.9974617958068848], "7": [517.0645141601562, 405.979248046875, 0.816801130771637], "8": [112.36805725097656, 337.64959716796875, 0.9539034366607666], "9": [469.09881591796875, 433.56549072265625, 0.7502238154411316], "10": [114.22410583496094, 193.50242614746094, 0.9443053603172302], "11": [425.249267578125, 480.0, 0.18007490038871765], "12": [280.0236511230469, 480.0, 0.27879393100738525], "13": [463.98284912109375, 436.10198974609375, 0.0014179162681102753], "14": [270.8047180175781, 436.8217468261719, 0.002501602517440915], "15": [427.4901428222656, 474.6573486328125, 0.00014571077190339565], "16": [235.28517150878906, 463.9904479980469, 0.00022535724565386772]}} +{"t": 29.901948, "tracked": true, "track_id": 1, "bbox": [86.37356567382812, 62.75767135620117, 558.2833251953125, 479.8315124511719], "det_conf": 0.9031481742858887, "mean_kpt_conf": 0.9281500252810392, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9189784745296566, "right_lift": -0.5678340794486798, "left_bend": 0.4732495311041896, "right_bend": 0.6944770832873128}, "keypoints": {"0": [346.93804931640625, 152.42230224609375, 0.9992347955703735], "1": [367.44268798828125, 131.1733856201172, 0.9982938170433044], "2": [326.352294921875, 131.0340576171875, 0.9967043995857239], "3": [394.6618347167969, 146.76431274414062, 0.9489995837211609], "4": [295.3687744140625, 146.36123657226562, 0.8088055849075317], "5": [457.7636413574219, 258.6759033203125, 0.989332914352417], "6": [235.14854431152344, 252.97706604003906, 0.9976180195808411], "7": [519.218505859375, 401.90338134765625, 0.8168549537658691], "8": [112.59661865234375, 337.5178527832031, 0.9561159014701843], "9": [462.1692810058594, 432.285400390625, 0.7523625493049622], "10": [113.63478088378906, 191.2095489501953, 0.9453277587890625], "11": [427.8299560546875, 480.0, 0.19212841987609863], "12": [281.4134216308594, 480.0, 0.30166077613830566], "13": [466.1422424316406, 440.18927001953125, 0.0013918940676376224], "14": [273.7153625488281, 441.01806640625, 0.0025425737258046865], "15": [428.7890930175781, 478.99920654296875, 0.00014078101958148181], "16": [239.02630615234375, 464.9662780761719, 0.00022774020908400416]}} +{"t": 29.966636, "tracked": true, "track_id": 1, "bbox": [86.09783172607422, 62.80902862548828, 559.7040405273438, 479.8271789550781], "det_conf": 0.9046120047569275, "mean_kpt_conf": 0.923888856714422, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9165432566900824, "right_lift": -0.5724400409025451, "left_bend": 0.44532127951377476, "right_bend": 0.6941925089357821}, "keypoints": {"0": [340.8403015136719, 152.53839111328125, 0.9991770386695862], "1": [362.7265625, 131.9075927734375, 0.9984952211380005], "2": [321.72430419921875, 131.4728240966797, 0.9960315823554993], "3": [392.8851013183594, 148.9879150390625, 0.9668477773666382], "4": [294.674560546875, 147.14688110351562, 0.7612534761428833], "5": [456.6592102050781, 259.2447509765625, 0.9892392158508301], "6": [235.00469970703125, 253.63888549804688, 0.9976963400840759], "7": [518.7630004882812, 401.5697021484375, 0.8145944476127625], "8": [112.87591552734375, 338.9022521972656, 0.9564567804336548], "9": [467.7805480957031, 435.207275390625, 0.7414239048957825], "10": [112.96278381347656, 192.93734741210938, 0.9415616393089294], "11": [425.60455322265625, 480.0, 0.19138342142105103], "12": [279.9783020019531, 480.0, 0.3059479296207428], "13": [464.66534423828125, 437.3663635253906, 0.0014134887605905533], "14": [272.7957763671875, 438.0714416503906, 0.002683378290385008], "15": [429.10272216796875, 479.19476318359375, 0.0001518154313089326], "16": [239.6402587890625, 463.58111572265625, 0.0002576922415755689]}} +{"t": 30.033458, "tracked": true, "track_id": 1, "bbox": [85.29952239990234, 63.18320083618164, 558.8787841796875, 479.85968017578125], "det_conf": 0.9021053314208984, "mean_kpt_conf": 0.9185482263565063, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9232092150126838, "right_lift": -0.5551306718185294, "left_bend": 0.4949011104276764, "right_bend": 0.6962788396597793}, "keypoints": {"0": [334.6998596191406, 152.2713623046875, 0.999135434627533], "1": [357.37298583984375, 130.785888671875, 0.9986565113067627], "2": [316.49737548828125, 131.7115478515625, 0.9951367974281311], "3": [391.5911865234375, 147.73622131347656, 0.9768126010894775], "4": [293.7798156738281, 147.7584991455078, 0.692488968372345], "5": [457.521484375, 259.6093444824219, 0.9886729121208191], "6": [238.12994384765625, 254.26364135742188, 0.9975612163543701], "7": [517.582763671875, 403.896240234375, 0.8027664422988892], "8": [111.28887939453125, 338.919189453125, 0.9531738758087158], "9": [458.1798400878906, 429.74749755859375, 0.7564037442207336], "10": [115.42367553710938, 191.8545684814453, 0.9432219862937927], "11": [427.30059814453125, 480.0, 0.1678789108991623], "12": [284.452880859375, 480.0, 0.27607089281082153], "13": [461.68536376953125, 433.3717041015625, 0.001417192630469799], "14": [281.71002197265625, 433.4704895019531, 0.0027605718933045864], "15": [427.2776794433594, 476.21478271484375, 0.00015712971799075603], "16": [251.12982177734375, 462.1759338378906, 0.0002784745011013001]}} +{"t": 30.066845, "tracked": true, "track_id": 1, "bbox": [85.47126007080078, 62.35110855102539, 556.6844482421875, 479.8649597167969], "det_conf": 0.8963466286659241, "mean_kpt_conf": 0.8921958370642229, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.927888242501349, "right_lift": -0.522899634260669, "left_bend": 0.3849318344367053, "right_bend": 0.6714190672148188}, "keypoints": {"0": [332.5716857910156, 152.77178955078125, 0.9988493919372559], "1": [355.02911376953125, 131.12506103515625, 0.9983568787574768], "2": [315.2335205078125, 132.44287109375, 0.9940779209136963], "3": [389.513916015625, 148.04232788085938, 0.9757354855537415], "4": [294.02215576171875, 148.18740844726562, 0.6768040657043457], "5": [455.92852783203125, 262.9581298828125, 0.9843073487281799], "6": [238.93130493164062, 254.906494140625, 0.9966126084327698], "7": [516.54443359375, 413.8056945800781, 0.7176594138145447], "8": [113.81352233886719, 331.6597595214844, 0.9318047761917114], "9": [467.23406982421875, 459.15570068359375, 0.6331570148468018], "10": [112.09809875488281, 185.30282592773438, 0.9067893028259277], "11": [425.92205810546875, 480.0, 0.13549314439296722], "12": [286.8867492675781, 479.240478515625, 0.23320671916007996], "13": [459.88427734375, 434.4296569824219, 0.002025366062298417], "14": [296.4555358886719, 437.0874328613281, 0.004109986126422882], "15": [424.3017578125, 480.0, 0.0002607300120871514], "16": [277.3550720214844, 469.6953430175781, 0.00047863315558061004]}} +{"t": 30.132155, "tracked": true, "track_id": 1, "bbox": [85.51193237304688, 62.5175666809082, 558.7713012695312, 479.99462890625], "det_conf": 0.8995587229728699, "mean_kpt_conf": 0.9168613878163424, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9206577908769952, "right_lift": -0.5694661476815958, "left_bend": 0.49574242520765305, "right_bend": 0.6966628754277635}, "keypoints": {"0": [327.7268371582031, 152.46685791015625, 0.999164342880249], "1": [352.0656433105469, 131.4046630859375, 0.9987879395484924], "2": [311.67022705078125, 131.74478149414062, 0.9946290850639343], "3": [390.0917053222656, 149.3916015625, 0.981905460357666], "4": [292.75323486328125, 146.7920379638672, 0.6400637030601501], "5": [457.7979736328125, 260.387451171875, 0.9898515939712524], "6": [236.20010375976562, 255.3201904296875, 0.9977598190307617], "7": [518.2913208007812, 403.05615234375, 0.8190990686416626], "8": [112.47772216796875, 341.03118896484375, 0.956183671951294], "9": [459.1207275390625, 429.0843505859375, 0.7652052044868469], "10": [114.25494384765625, 192.66915893554688, 0.9428253769874573], "11": [426.8876647949219, 480.0, 0.1896546185016632], "12": [281.3079833984375, 480.0, 0.3049197793006897], "13": [463.9874267578125, 437.3070373535156, 0.00139727967325598], "14": [275.6291198730469, 436.921142578125, 0.0027214561123400927], "15": [433.42730712890625, 479.5783996582031, 0.00014575662498828024], "16": [246.14520263671875, 461.99810791015625, 0.0002606328343972564]}} +{"t": 30.168312, "tracked": true, "track_id": 1, "bbox": [85.1939468383789, 62.8175163269043, 558.583251953125, 480.0], "det_conf": 0.9033277630805969, "mean_kpt_conf": 0.918140091679313, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9148703451514518, "right_lift": -0.5639813066610628, "left_bend": 0.46205554412717204, "right_bend": 0.6949207001359516}, "keypoints": {"0": [326.7937316894531, 152.8266143798828, 0.9991751313209534], "1": [351.0788269042969, 131.5881805419922, 0.9988099336624146], "2": [310.9369201660156, 131.82232666015625, 0.9945665597915649], "3": [389.08062744140625, 148.96136474609375, 0.9818724989891052], "4": [292.33642578125, 146.06939697265625, 0.6357083916664124], "5": [456.42694091796875, 259.1471862792969, 0.990014910697937], "6": [236.2308807373047, 254.88336181640625, 0.9977062940597534], "7": [518.587158203125, 399.99884033203125, 0.8283753991127014], "8": [111.44493103027344, 340.1073913574219, 0.956479012966156], "9": [461.633544921875, 433.7384033203125, 0.7727099061012268], "10": [113.37364196777344, 193.58297729492188, 0.9441229701042175], "11": [426.3382263183594, 480.0, 0.1868596374988556], "12": [281.5576171875, 480.0, 0.2964746654033661], "13": [464.385986328125, 434.7483215332031, 0.0013718146365135908], "14": [275.97125244140625, 435.09149169921875, 0.0026226381305605173], "15": [434.010986328125, 479.47467041015625, 0.00014494542847387493], "16": [244.82208251953125, 461.25830078125, 0.00025557182379998267]}} +{"t": 30.230995, "tracked": true, "track_id": 1, "bbox": [84.58502960205078, 63.32251739501953, 558.1908569335938, 480.0], "det_conf": 0.9018359184265137, "mean_kpt_conf": 0.9164374579082836, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9171571510794473, "right_lift": -0.5611429137261538, "left_bend": 0.4828257189115216, "right_bend": 0.6933567457296987}, "keypoints": {"0": [326.0093994140625, 152.57748413085938, 0.9991632699966431], "1": [350.559326171875, 131.80148315429688, 0.9988151788711548], "2": [310.4728088378906, 131.84286499023438, 0.9944236874580383], "3": [388.9105529785156, 150.2048797607422, 0.9825200438499451], "4": [292.2042236328125, 146.71847534179688, 0.6264294981956482], "5": [455.90631103515625, 260.2568359375, 0.9899988770484924], "6": [235.82846069335938, 255.11215209960938, 0.997677743434906], "7": [517.448486328125, 401.8884582519531, 0.8261232376098633], "8": [110.09745788574219, 340.35009765625, 0.9550762176513672], "9": [459.4847106933594, 430.885986328125, 0.7690528631210327], "10": [111.83917236328125, 191.26528930664062, 0.9415314197540283], "11": [425.9097595214844, 480.0, 0.19035044312477112], "12": [281.0570373535156, 480.0, 0.299958199262619], "13": [462.4208984375, 436.1727600097656, 0.0014103020075708628], "14": [273.2983093261719, 435.58935546875, 0.002658938057720661], "15": [434.54571533203125, 479.427001953125, 0.00014703304623253644], "16": [242.6759796142578, 460.12811279296875, 0.0002573600213509053]}} +{"t": 30.295821, "tracked": true, "track_id": 1, "bbox": [83.62179565429688, 63.268680572509766, 559.2809448242188, 480.0], "det_conf": 0.906973123550415, "mean_kpt_conf": 0.9155114834958856, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9180220957068431, "right_lift": -0.5576123088410926, "left_bend": 0.49059220116070423, "right_bend": 0.6959644454353286}, "keypoints": {"0": [327.70770263671875, 152.96124267578125, 0.9991632699966431], "1": [351.6385803222656, 131.64083862304688, 0.9987875819206238], "2": [311.0921325683594, 132.04583740234375, 0.9947951436042786], "3": [388.6910705566406, 149.20181274414062, 0.9812374711036682], "4": [291.2486877441406, 146.99221801757812, 0.6508206129074097], "5": [455.984375, 261.06378173828125, 0.9892553091049194], "6": [235.54367065429688, 254.63504028320312, 0.9976257681846619], "7": [518.1611328125, 405.01190185546875, 0.8077530264854431], "8": [109.26432800292969, 339.4619140625, 0.9535703659057617], "9": [459.4315185546875, 432.46636962890625, 0.7560667991638184], "10": [112.83479309082031, 191.5462646484375, 0.9415509700775146], "11": [425.258056640625, 480.0, 0.1674843579530716], "12": [280.8656311035156, 480.0, 0.27497777342796326], "13": [461.3865966796875, 433.257568359375, 0.0013597400393337011], "14": [275.2042236328125, 432.06439208984375, 0.002657897537574172], "15": [430.9983825683594, 476.67388916015625, 0.00015127182996366173], "16": [244.48828125, 459.1604309082031, 0.0002708941465243697]}} +{"t": 30.330395, "tracked": true, "track_id": 1, "bbox": [82.64034271240234, 63.275970458984375, 556.9244384765625, 480.0], "det_conf": 0.9058430790901184, "mean_kpt_conf": 0.9171701398762789, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9144250438174454, "right_lift": -0.5530737904187986, "left_bend": 0.4513577173938467, "right_bend": 0.6912716850726897}, "keypoints": {"0": [328.14910888671875, 152.75921630859375, 0.9991624355316162], "1": [352.2010498046875, 131.98910522460938, 0.9987735152244568], "2": [311.9073181152344, 132.10159301757812, 0.9947734475135803], "3": [389.19842529296875, 150.50985717773438, 0.98082435131073], "4": [292.480712890625, 147.60203552246094, 0.656105637550354], "5": [455.45941162109375, 260.5827941894531, 0.9894556403160095], "6": [236.63580322265625, 255.3778533935547, 0.997636079788208], "7": [517.708251953125, 401.2156677246094, 0.8173635601997375], "8": [110.47866821289062, 339.1271057128906, 0.95480877161026], "9": [463.7060852050781, 435.793212890625, 0.7581201791763306], "10": [112.65559387207031, 192.5291748046875, 0.9418479204177856], "11": [426.0234069824219, 480.0, 0.17693816125392914], "12": [282.6643371582031, 480.0, 0.2853217124938965], "13": [463.1627502441406, 432.79339599609375, 0.001385352574288845], "14": [278.2055969238281, 432.9007873535156, 0.002676498843356967], "15": [432.89404296875, 478.48553466796875, 0.0001527888816781342], "16": [247.33218383789062, 460.54730224609375, 0.00027079807478003204]}} +{"t": 30.39538, "tracked": true, "track_id": 1, "bbox": [79.90921783447266, 63.24412536621094, 558.9594116210938, 480.0], "det_conf": 0.8998740315437317, "mean_kpt_conf": 0.9168294722383673, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9188406093878877, "right_lift": -0.5598216570012967, "left_bend": 0.510290603724238, "right_bend": 0.690905586104527}, "keypoints": {"0": [331.68634033203125, 152.8283233642578, 0.9991545677185059], "1": [354.9227600097656, 131.88722229003906, 0.9987059831619263], "2": [314.152099609375, 132.0139617919922, 0.9951348900794983], "3": [389.5966796875, 149.86846923828125, 0.9785131216049194], "4": [291.9676513671875, 147.892822265625, 0.6835895776748657], "5": [455.48846435546875, 262.1934509277344, 0.9889238476753235], "6": [235.40170288085938, 255.6195068359375, 0.997648298740387], "7": [517.3018798828125, 406.11773681640625, 0.8008486032485962], "8": [109.81431579589844, 340.46795654296875, 0.9527802467346191], "9": [459.054931640625, 428.933349609375, 0.7491098046302795], "10": [110.64529418945312, 191.46942138671875, 0.9407152533531189], "11": [425.6681823730469, 480.0, 0.16895009577274323], "12": [282.002197265625, 480.0, 0.2786184847354889], "13": [462.0787658691406, 435.4041748046875, 0.0013899164041504264], "14": [278.9373474121094, 434.12823486328125, 0.0027163412887603045], "15": [431.64617919921875, 477.113037109375, 0.00015416597307194024], "16": [251.1033935546875, 460.1089172363281, 0.00027487234910950065]}} +{"t": 30.461493, "tracked": true, "track_id": 1, "bbox": [75.89217376708984, 63.14308166503906, 560.556884765625, 480.0], "det_conf": 0.8997802138328552, "mean_kpt_conf": 0.9197640039704063, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9188007393775921, "right_lift": -0.5489788080829018, "left_bend": 0.49149867200366343, "right_bend": 0.6884567079627174}, "keypoints": {"0": [335.8888244628906, 152.77174377441406, 0.9991579055786133], "1": [358.1384582519531, 132.13128662109375, 0.9986221790313721], "2": [316.9223327636719, 132.58583068847656, 0.9956380724906921], "3": [390.35272216796875, 150.56153869628906, 0.9740495085716248], "4": [292.1336364746094, 150.24307250976562, 0.7277486324310303], "5": [454.5836181640625, 261.65911865234375, 0.9886628985404968], "6": [235.06942749023438, 255.51071166992188, 0.9976004958152771], "7": [516.3576049804688, 405.4515380859375, 0.8014231324195862], "8": [106.99014282226562, 339.6334228515625, 0.9532554745674133], "9": [461.4447937011719, 430.80023193359375, 0.7407070994377136], "10": [108.60850524902344, 191.33200073242188, 0.9405386447906494], "11": [424.2715148925781, 480.0, 0.1730453073978424], "12": [281.1283874511719, 480.0, 0.2829299569129944], "13": [462.5581970214844, 435.2078857421875, 0.0014081480912864208], "14": [278.63592529296875, 434.96795654296875, 0.0027270903810858727], "15": [431.03887939453125, 477.04638671875, 0.00015757263463456184], "16": [247.1908416748047, 462.5972595214844, 0.0002762253279797733]}} +{"t": 30.495623, "tracked": true, "track_id": 1, "bbox": [72.82666778564453, 63.55434036254883, 558.6581420898438, 480.0], "det_conf": 0.9054191708564758, "mean_kpt_conf": 0.9194560809568926, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.914679527099205, "right_lift": -0.549417435385502, "left_bend": 0.461158630598495, "right_bend": 0.6798894360620303}, "keypoints": {"0": [337.5353088378906, 152.10714721679688, 0.9991497993469238], "1": [359.48883056640625, 131.84494018554688, 0.9985767602920532], "2": [318.52984619140625, 132.11257934570312, 0.9957600235939026], "3": [390.801025390625, 150.50758361816406, 0.9724986553192139], "4": [293.1508483886719, 150.13058471679688, 0.7406619191169739], "5": [454.8858947753906, 260.4685363769531, 0.9886255264282227], "6": [235.22467041015625, 255.58489990234375, 0.9975841045379639], "7": [517.461669921875, 402.0806884765625, 0.8015978336334229], "8": [108.381591796875, 338.9909973144531, 0.9525201916694641], "9": [464.124267578125, 433.91552734375, 0.7296842932701111], "10": [105.96939086914062, 193.05374145507812, 0.9373577833175659], "11": [423.8610534667969, 480.0, 0.17831963300704956], "12": [280.4955749511719, 480.0, 0.2885790169239044], "13": [462.8011474609375, 434.39691162109375, 0.0014344163937494159], "14": [277.3341979980469, 434.9913330078125, 0.0027494491077959538], "15": [430.08502197265625, 477.0166931152344, 0.0001624553115107119], "16": [245.53961181640625, 462.2217102050781, 0.00028111005667597055]}} +{"t": 30.55719, "tracked": true, "track_id": 1, "bbox": [66.53092193603516, 63.55646514892578, 557.9705810546875, 480.0], "det_conf": 0.9090906977653503, "mean_kpt_conf": 0.9171384627168829, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9100210319622936, "right_lift": -0.557287747383661, "left_bend": 0.48573329489652284, "right_bend": 0.6787545994032409}, "keypoints": {"0": [339.9623107910156, 152.93484497070312, 0.9991415739059448], "1": [361.89886474609375, 132.99484252929688, 0.9984402060508728], "2": [320.887939453125, 131.87693786621094, 0.9960969090461731], "3": [391.2767639160156, 151.2078094482422, 0.9663813710212708], "4": [293.2757263183594, 148.1361083984375, 0.7704610824584961], "5": [453.2132873535156, 261.5965576171875, 0.9879484176635742], "6": [233.48944091796875, 255.3550262451172, 0.9975343942642212], "7": [517.169921875, 401.9902038574219, 0.7815057635307312], "8": [107.18634033203125, 340.126220703125, 0.9484350085258484], "9": [463.53741455078125, 429.3878173828125, 0.709750771522522], "10": [102.86245727539062, 193.8026580810547, 0.9328275918960571], "11": [423.2420959472656, 480.0, 0.1730370968580246], "12": [279.9350280761719, 480.0, 0.2830275297164917], "13": [460.07366943359375, 438.23052978515625, 0.001450174953788519], "14": [276.240234375, 437.0734558105469, 0.0027506418991833925], "15": [427.45263671875, 477.96197509765625, 0.0001644351868890226], "16": [246.35198974609375, 459.20562744140625, 0.0002795273612719029]}} +{"t": 30.592895, "tracked": true, "track_id": 1, "bbox": [63.463722229003906, 63.39426803588867, 557.5096435546875, 480.0], "det_conf": 0.9059633016586304, "mean_kpt_conf": 0.9186720793897455, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9124519440562667, "right_lift": -0.543687639673511, "left_bend": 0.4795460004111729, "right_bend": 0.6599138838702302}, "keypoints": {"0": [340.5608825683594, 153.58554077148438, 0.9991661310195923], "1": [362.5432434082031, 133.23516845703125, 0.9984493255615234], "2": [321.4200134277344, 131.97930908203125, 0.9961561560630798], "3": [391.90008544921875, 150.35365295410156, 0.9659754633903503], "4": [293.36993408203125, 146.9600830078125, 0.7696027755737305], "5": [453.48370361328125, 262.2392578125, 0.988331139087677], "6": [234.495361328125, 254.63121032714844, 0.9976497292518616], "7": [516.1286010742188, 401.9330749511719, 0.7877564430236816], "8": [108.70156860351562, 336.1199951171875, 0.951522171497345], "9": [462.7229309082031, 430.13275146484375, 0.7151505947113037], "10": [98.29452514648438, 192.7078094482422, 0.9356329441070557], "11": [423.826171875, 480.0, 0.18945354223251343], "12": [280.6867370605469, 480.0, 0.3079860210418701], "13": [459.75408935546875, 444.2083740234375, 0.0014546043239533901], "14": [275.4417419433594, 442.14068603515625, 0.002760156989097595], "15": [427.22235107421875, 479.1014709472656, 0.00015635284944437444], "16": [245.99911499023438, 460.2222900390625, 0.0002655597636476159]}} +{"t": 30.657758, "tracked": true, "track_id": 1, "bbox": [59.01688766479492, 63.52981948852539, 562.4765625, 480.0], "det_conf": 0.9039632678031921, "mean_kpt_conf": 0.9251462329517711, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9062563312144305, "right_lift": -0.5513227768403136, "left_bend": 0.45697550240910884, "right_bend": 0.6640816670465206}, "keypoints": {"0": [342.79400634765625, 154.0791015625, 0.9992244243621826], "1": [364.73077392578125, 133.30157470703125, 0.9984320998191833], "2": [323.3086853027344, 131.60687255859375, 0.9964534044265747], "3": [393.13201904296875, 149.7493133544922, 0.9601869583129883], "4": [293.6161193847656, 145.5501708984375, 0.7889568209648132], "5": [454.94451904296875, 261.73760986328125, 0.9893282055854797], "6": [233.2567138671875, 254.9615478515625, 0.9977017045021057], "7": [519.9014892578125, 400.9940185546875, 0.8092423677444458], "8": [108.0576171875, 337.6965026855469, 0.9536710381507874], "9": [469.16766357421875, 433.62884521484375, 0.74200838804245], "10": [98.00616455078125, 191.1276397705078, 0.9414031505584717], "11": [425.3502502441406, 480.0, 0.1862451732158661], "12": [280.124267578125, 480.0, 0.29482296109199524], "13": [461.93402099609375, 439.75079345703125, 0.0014325693482533097], "14": [272.8230285644531, 438.86151123046875, 0.0026057097129523754], "15": [426.251708984375, 478.245849609375, 0.00014815428585279733], "16": [240.6283721923828, 458.65362548828125, 0.00024194593424908817]}} +{"t": 30.724934, "tracked": true, "track_id": 1, "bbox": [56.39130401611328, 63.484947204589844, 560.3068237304688, 480.0], "det_conf": 0.9017481803894043, "mean_kpt_conf": 0.9259409470991655, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9125694827673606, "right_lift": -0.5424313962273836, "left_bend": 0.48660243346630905, "right_bend": 0.660303988181658}, "keypoints": {"0": [344.1711730957031, 154.28944396972656, 0.9992374181747437], "1": [365.31170654296875, 133.16751098632812, 0.9983932375907898], "2": [324.4667053222656, 132.0327606201172, 0.9965512752532959], "3": [392.90264892578125, 148.66725158691406, 0.9565498232841492], "4": [294.4007263183594, 145.84303283691406, 0.7949863076210022], "5": [454.7988586425781, 262.0031433105469, 0.9892964959144592], "6": [233.81292724609375, 254.6507568359375, 0.9977037310600281], "7": [517.9882202148438, 403.01959228515625, 0.8082817196846008], "8": [105.93496704101562, 337.21832275390625, 0.9539064764976501], "9": [464.76092529296875, 429.6142272949219, 0.7474986910820007], "10": [95.633056640625, 189.69398498535156, 0.9429452419281006], "11": [424.12335205078125, 480.0, 0.18619568645954132], "12": [279.23779296875, 480.0, 0.29519835114479065], "13": [458.6018371582031, 441.4086608886719, 0.0014456365024670959], "14": [268.9464111328125, 440.2288818359375, 0.002601032145321369], "15": [423.46405029296875, 477.27325439453125, 0.00014601578004658222], "16": [235.1715545654297, 459.61920166015625, 0.00023545125441160053]}} +{"t": 30.758543, "tracked": true, "track_id": 1, "bbox": [55.060672760009766, 62.98699951171875, 558.6595458984375, 479.9635009765625], "det_conf": 0.902319610118866, "mean_kpt_conf": 0.9246219450777228, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9102227292435872, "right_lift": -0.5453182895705552, "left_bend": 0.4260494380705841, "right_bend": 0.6611133763168234}, "keypoints": {"0": [344.3760986328125, 154.3269500732422, 0.999221920967102], "1": [365.7611389160156, 132.936767578125, 0.9983811378479004], "2": [324.5082702636719, 132.0622100830078, 0.9965789914131165], "3": [393.5878601074219, 147.8299560546875, 0.9559662938117981], "4": [294.3027038574219, 145.52984619140625, 0.8025897145271301], "5": [455.36895751953125, 259.2068176269531, 0.9891397953033447], "6": [232.9329376220703, 254.2294464111328, 0.9976866245269775], "7": [518.9945678710938, 399.0542297363281, 0.8067761063575745], "8": [105.7877197265625, 336.9450378417969, 0.9531723856925964], "9": [469.4364929199219, 437.4607238769531, 0.7312367558479309], "10": [95.4224853515625, 190.40640258789062, 0.9400916695594788], "11": [425.1221008300781, 480.0, 0.18819253146648407], "12": [279.52777099609375, 480.0, 0.29717379808425903], "13": [462.2682189941406, 439.543212890625, 0.0014396412298083305], "14": [272.3794860839844, 440.97100830078125, 0.0026063837576657534], "15": [424.8829345703125, 478.1784973144531, 0.0001490864815423265], "16": [239.21426391601562, 461.7981872558594, 0.0002408239961368963]}} +{"t": 30.823319, "tracked": true, "track_id": 1, "bbox": [56.2353630065918, 62.9190788269043, 558.5443725585938, 479.8735046386719], "det_conf": 0.9030195474624634, "mean_kpt_conf": 0.9256329048763622, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9117966264692817, "right_lift": -0.5491267609398673, "left_bend": 0.4485237213543088, "right_bend": 0.6682434459462137}, "keypoints": {"0": [345.1244201660156, 153.8550262451172, 0.9992268085479736], "1": [366.3160705566406, 133.0087432861328, 0.9983505010604858], "2": [325.2429504394531, 131.79771423339844, 0.9966433048248291], "3": [393.58831787109375, 148.9404296875, 0.9537901282310486], "4": [294.6966552734375, 146.0316925048828, 0.8067697286605835], "5": [454.92132568359375, 260.5286865234375, 0.9891983866691589], "6": [233.01901245117188, 253.84481811523438, 0.9976430535316467], "7": [518.18310546875, 400.9962158203125, 0.8091261982917786], "8": [106.00689697265625, 337.2987976074219, 0.9532362818717957], "9": [469.0983581542969, 433.4981384277344, 0.7374169826507568], "10": [98.29022216796875, 191.1929931640625, 0.9405605792999268], "11": [424.13177490234375, 480.0, 0.18487215042114258], "12": [278.56951904296875, 480.0, 0.2909946143627167], "13": [460.96539306640625, 437.81805419921875, 0.0014454011106863618], "14": [269.3414306640625, 437.86358642578125, 0.0025906627997756004], "15": [425.12286376953125, 476.4193115234375, 0.000151172760524787], "16": [235.4066925048828, 459.4881896972656, 0.00024187327653635293]}} +{"t": 30.857596, "tracked": true, "track_id": 1, "bbox": [57.99953079223633, 62.870643615722656, 557.98388671875, 479.8396301269531], "det_conf": 0.9046757817268372, "mean_kpt_conf": 0.9258681048046459, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.910553889493333, "right_lift": -0.5514975342382616, "left_bend": 0.4336383069524853, "right_bend": 0.6663917793554056}, "keypoints": {"0": [345.6917724609375, 153.91757202148438, 0.9992203712463379], "1": [366.4242248535156, 132.63958740234375, 0.9982628226280212], "2": [325.56719970703125, 131.7229461669922, 0.9967131614685059], "3": [393.0814208984375, 147.48187255859375, 0.9490211009979248], "4": [294.6334533691406, 145.30087280273438, 0.8172168135643005], "5": [454.2106018066406, 260.0094299316406, 0.9891762137413025], "6": [233.53907775878906, 253.4522247314453, 0.9976175427436829], "7": [518.1511840820312, 400.84808349609375, 0.8068562150001526], "8": [107.03021240234375, 337.0907897949219, 0.9526594877243042], "9": [471.9400939941406, 434.8719177246094, 0.7370301485061646], "10": [98.12992858886719, 192.3720703125, 0.9407752752304077], "11": [422.6922912597656, 480.0, 0.1856437623500824], "12": [278.1910400390625, 480.0, 0.2917483150959015], "13": [458.1929931640625, 438.9726867675781, 0.001480963546782732], "14": [268.63458251953125, 439.45672607421875, 0.0026450769510120153], "15": [420.56097412109375, 475.88275146484375, 0.00015336908109020442], "16": [233.61044311523438, 460.3455810546875, 0.00024302398378495127]}} +{"t": 30.890986, "tracked": true, "track_id": 1, "bbox": [58.766571044921875, 62.76805114746094, 560.7828369140625, 479.8028564453125], "det_conf": 0.9033408164978027, "mean_kpt_conf": 0.9254014058546587, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9119491759449238, "right_lift": -0.5666162913307269, "left_bend": 0.45952123699898895, "right_bend": 0.6736000642484861}, "keypoints": {"0": [346.1458740234375, 154.61746215820312, 0.9992565512657166], "1": [366.97186279296875, 133.168701171875, 0.9982995390892029], "2": [326.0431823730469, 132.18087768554688, 0.9968609809875488], "3": [393.70794677734375, 147.81597900390625, 0.9470817446708679], "4": [294.710205078125, 145.39263916015625, 0.8189274668693542], "5": [455.8265380859375, 260.8856201171875, 0.9893684983253479], "6": [232.75091552734375, 254.4613494873047, 0.9976634979248047], "7": [520.0864868164062, 403.71124267578125, 0.8049132823944092], "8": [107.07315063476562, 340.88446044921875, 0.9521617889404297], "9": [471.4158020019531, 433.5484313964844, 0.7345965504646301], "10": [98.6854248046875, 193.9238739013672, 0.9402855634689331], "11": [425.35693359375, 480.0, 0.18159615993499756], "12": [278.9106140136719, 480.0, 0.2861103415489197], "13": [461.7681579589844, 440.3835754394531, 0.0014128716429695487], "14": [268.1558532714844, 440.5670166015625, 0.002517565619200468], "15": [425.6800231933594, 477.0006103515625, 0.00014399393694475293], "16": [234.203125, 460.87640380859375, 0.00022755700047127903]}} +{"t": 30.957136, "tracked": true, "track_id": 1, "bbox": [65.68280792236328, 63.033363342285156, 559.618896484375, 479.791259765625], "det_conf": 0.9096723198890686, "mean_kpt_conf": 0.9239861369132996, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9177060735341568, "right_lift": -0.5804261394314193, "left_bend": 0.49876057057763434, "right_bend": 0.6958112636219144}, "keypoints": {"0": [346.54034423828125, 153.94473266601562, 0.999233603477478], "1": [367.3988342285156, 132.829345703125, 0.9982525706291199], "2": [326.3377685546875, 131.83078002929688, 0.996837854385376], "3": [394.22900390625, 148.37290954589844, 0.9456401467323303], "4": [294.95623779296875, 145.94479370117188, 0.8202095627784729], "5": [455.58343505859375, 261.4224853515625, 0.9888899326324463], "6": [232.61473083496094, 254.638916015625, 0.9975589513778687], "7": [517.9417114257812, 405.47564697265625, 0.7961634993553162], "8": [107.31527709960938, 343.94989013671875, 0.9499317407608032], "9": [465.17218017578125, 428.5631103515625, 0.7319462895393372], "10": [106.71099853515625, 196.302001953125, 0.9391833543777466], "11": [424.8539733886719, 480.0, 0.17455118894577026], "12": [278.4285888671875, 480.0, 0.2769845426082611], "13": [462.6695556640625, 440.6589660644531, 0.0013964589452371001], "14": [270.26611328125, 440.3673095703125, 0.002512283157557249], "15": [427.54266357421875, 477.61602783203125, 0.0001457014586776495], "16": [236.62266540527344, 461.66131591796875, 0.00023182517907116562]}} +{"t": 31.022741, "tracked": true, "track_id": 1, "bbox": [74.4185562133789, 62.52614212036133, 558.9920043945312, 479.7768859863281], "det_conf": 0.9091061353683472, "mean_kpt_conf": 0.9250519221479242, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9121572380699589, "right_lift": -0.591309954213018, "left_bend": 0.4469926361488499, "right_bend": 0.7038602685037912}, "keypoints": {"0": [345.86669921875, 154.01535034179688, 0.9992050528526306], "1": [366.8154296875, 133.15872192382812, 0.9981356859207153], "2": [325.86236572265625, 131.52252197265625, 0.9967876672744751], "3": [393.07562255859375, 148.54483032226562, 0.9408023953437805], "4": [294.2731018066406, 144.6649169921875, 0.8276322484016418], "5": [453.10589599609375, 259.7744140625, 0.9888089299201965], "6": [232.91668701171875, 253.0567626953125, 0.9974880218505859], "7": [516.75244140625, 401.4287109375, 0.8021605014801025], "8": [111.93569946289062, 341.7637634277344, 0.9510342478752136], "9": [470.2332763671875, 432.49554443359375, 0.7336921691894531], "10": [113.06724548339844, 196.0181884765625, 0.9398242235183716], "11": [424.3142395019531, 480.0, 0.17858339846134186], "12": [279.6506042480469, 480.0, 0.281588613986969], "13": [460.69683837890625, 438.44061279296875, 0.0014553000219166279], "14": [270.5941467285156, 438.7002258300781, 0.002608700655400753], "15": [424.15252685546875, 478.0864562988281, 0.00015388413157779723], "16": [236.895751953125, 460.76800537109375, 0.00024276669137179852]}} +{"t": 31.085174, "tracked": true, "track_id": 1, "bbox": [84.28397369384766, 62.43019485473633, 557.9904174804688, 479.7738342285156], "det_conf": 0.9018684029579163, "mean_kpt_conf": 0.9274847561662848, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9216092757453941, "right_lift": -0.600135649611168, "left_bend": 0.44125560145712966, "right_bend": 0.7120998930061483}, "keypoints": {"0": [346.6038818359375, 153.19094848632812, 0.999196469783783], "1": [367.12237548828125, 132.4539794921875, 0.9980814456939697], "2": [326.1820068359375, 131.56820678710938, 0.9967719912528992], "3": [393.081298828125, 148.29562377929688, 0.9389950633049011], "4": [294.398681640625, 146.2752685546875, 0.8309047222137451], "5": [453.7668762207031, 259.1205139160156, 0.9893159866333008], "6": [231.83438110351562, 253.172607421875, 0.997562050819397], "7": [514.5858764648438, 403.5384826660156, 0.815094530582428], "8": [112.71110534667969, 342.546630859375, 0.9536395072937012], "9": [466.3939208984375, 435.3291015625, 0.7411103248596191], "10": [116.05622863769531, 194.95462036132812, 0.9416602253913879], "11": [423.7657470703125, 480.0, 0.18817344307899475], "12": [277.94854736328125, 480.0, 0.2923465669155121], "13": [464.01055908203125, 437.5272216796875, 0.0014565817546099424], "14": [272.1060791015625, 439.38836669921875, 0.002610341180115938], "15": [426.98199462890625, 477.85943603515625, 0.0001517179043730721], "16": [240.36199951171875, 463.8336181640625, 0.00023918029910419136]}} +{"t": 31.118632, "tracked": true, "track_id": 1, "bbox": [87.94110107421875, 62.74295425415039, 559.524169921875, 479.8439636230469], "det_conf": 0.9086845517158508, "mean_kpt_conf": 0.9283693812110207, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9144382422822097, "right_lift": -0.6017118452588416, "left_bend": 0.46650474650003754, "right_bend": 0.7124930633846787}, "keypoints": {"0": [346.3834228515625, 153.92483520507812, 0.9992263317108154], "1": [367.0772705078125, 132.60107421875, 0.9981441497802734], "2": [325.9007873535156, 131.77127075195312, 0.9968481659889221], "3": [393.54962158203125, 147.53453063964844, 0.9399065971374512], "4": [293.98883056640625, 145.54818725585938, 0.8265920877456665], "5": [455.7734375, 259.1549072265625, 0.9895175099372864], "6": [231.8280487060547, 253.31185913085938, 0.9975196719169617], "7": [519.45166015625, 403.02972412109375, 0.8157551884651184], "8": [112.65879821777344, 343.08819580078125, 0.9526569247245789], "9": [466.1123046875, 433.70501708984375, 0.7526216506958008], "10": [115.83082580566406, 198.42855834960938, 0.9432749152183533], "11": [424.82794189453125, 480.0, 0.17818105220794678], "12": [277.68182373046875, 480.0, 0.2765370011329651], "13": [464.59832763671875, 436.3731689453125, 0.0013856440782546997], "14": [271.4175720214844, 437.07708740234375, 0.002465886063873768], "15": [425.9573669433594, 477.202880859375, 0.00014424706751015037], "16": [238.50558471679688, 461.7814025878906, 0.00022637155780103058]}} +{"t": 31.154258, "tracked": true, "track_id": 1, "bbox": [90.58332061767578, 62.64504623413086, 558.6795043945312, 479.84344482421875], "det_conf": 0.9094712138175964, "mean_kpt_conf": 0.9285757812586698, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9152357442625705, "right_lift": -0.5972773224261874, "left_bend": 0.4802436938017169, "right_bend": 0.7186886234739599}, "keypoints": {"0": [346.21319580078125, 153.19908142089844, 0.9992300271987915], "1": [366.87347412109375, 132.66073608398438, 0.998136043548584], "2": [325.9951171875, 131.19808959960938, 0.9968685507774353], "3": [392.846923828125, 148.949951171875, 0.9391934275627136], "4": [294.01934814453125, 145.61837768554688, 0.8270342350006104], "5": [454.5030212402344, 259.9609680175781, 0.9893471002578735], "6": [231.70965576171875, 252.40562438964844, 0.9974937438964844], "7": [517.9050903320312, 403.97967529296875, 0.8158999681472778], "8": [111.53143310546875, 341.90264892578125, 0.9535447955131531], "9": [462.36175537109375, 432.6684875488281, 0.7533224821090698], "10": [118.3509521484375, 196.69207763671875, 0.944263219833374], "11": [424.7883605957031, 480.0, 0.1773981750011444], "12": [278.1560974121094, 480.0, 0.2769777476787567], "13": [464.6822204589844, 436.74859619140625, 0.0013787979260087013], "14": [271.704345703125, 435.98052978515625, 0.0024667729157954454], "15": [428.046142578125, 479.6984558105469, 0.00014260702300816774], "16": [238.0345001220703, 462.0376892089844, 0.00022495794110000134]}} +{"t": 31.18819, "tracked": true, "track_id": 1, "bbox": [91.39568328857422, 62.87635803222656, 557.251708984375, 479.8482360839844], "det_conf": 0.9139909744262695, "mean_kpt_conf": 0.931320374662226, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9154376377562312, "right_lift": -0.6018101375042652, "left_bend": 0.4409971548296636, "right_bend": 0.730735333627929}, "keypoints": {"0": [346.39935302734375, 153.83810424804688, 0.9992164373397827], "1": [367.0470886230469, 133.01101684570312, 0.9980798959732056], "2": [326.3879089355469, 131.5124969482422, 0.9968329071998596], "3": [392.78131103515625, 148.2320556640625, 0.9353823661804199], "4": [294.3974304199219, 144.65032958984375, 0.8336516618728638], "5": [452.3459777832031, 258.88006591796875, 0.9894739985466003], "6": [230.59466552734375, 251.75845336914062, 0.9974777102470398], "7": [515.1714477539062, 401.78326416015625, 0.8269586563110352], "8": [110.5936279296875, 342.1845703125, 0.9545314908027649], "9": [466.3675231933594, 435.14068603515625, 0.7665067911148071], "10": [122.13597106933594, 196.58795166015625, 0.946412205696106], "11": [420.60662841796875, 480.0, 0.1798582524061203], "12": [274.27105712890625, 480.0, 0.2763175964355469], "13": [461.346435546875, 434.8460693359375, 0.0014176354743540287], "14": [266.5013122558594, 435.7875671386719, 0.002474915236234665], "15": [426.34661865234375, 478.260986328125, 0.00014542289136443287], "16": [232.9459228515625, 462.12908935546875, 0.0002237501903437078]}} +{"t": 31.253643, "tracked": true, "track_id": 1, "bbox": [91.78459930419922, 62.95558547973633, 558.5025024414062, 479.9256896972656], "det_conf": 0.9098078012466431, "mean_kpt_conf": 0.9298214262182062, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9109486511083957, "right_lift": -0.5887747874014319, "left_bend": 0.4336765654233852, "right_bend": 0.7374570359703271}, "keypoints": {"0": [346.0298156738281, 153.62034606933594, 0.999184787273407], "1": [366.7872314453125, 132.97354125976562, 0.9980170726776123], "2": [326.0870666503906, 131.3834686279297, 0.996813952922821], "3": [392.3905029296875, 148.54745483398438, 0.9350278377532959], "4": [294.05316162109375, 144.6136474609375, 0.8403844833374023], "5": [452.4465026855469, 259.0003356933594, 0.989319920539856], "6": [227.54165649414062, 251.41551208496094, 0.9974341988563538], "7": [516.7138671875, 400.9190368652344, 0.8192664980888367], "8": [106.4801025390625, 339.5984191894531, 0.9517937898635864], "9": [468.39794921875, 436.4124755859375, 0.756955623626709], "10": [123.71348571777344, 192.27978515625, 0.9438375234603882], "11": [420.2051696777344, 480.0, 0.16978906095027924], "12": [272.96868896484375, 480.0, 0.2616586685180664], "13": [463.5640869140625, 431.5838623046875, 0.0014053642516955733], "14": [273.86553955078125, 433.2236022949219, 0.0024778624065220356], "15": [426.50445556640625, 477.18988037109375, 0.00015167842502705753], "16": [245.51934814453125, 461.2945556640625, 0.0002354427269892767]}} +{"t": 31.318395, "tracked": true, "track_id": 1, "bbox": [91.29371643066406, 63.088706970214844, 560.6087646484375, 480.0], "det_conf": 0.9083632826805115, "mean_kpt_conf": 0.9256866736845537, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9135945449571171, "right_lift": -0.5646498042672484, "left_bend": 0.4973657920562673, "right_bend": 0.7231123157325607}, "keypoints": {"0": [346.7533874511719, 154.2256622314453, 0.9991748929023743], "1": [367.54595947265625, 133.0817108154297, 0.99800044298172], "2": [326.3238525390625, 131.96041870117188, 0.99680495262146], "3": [393.8021240234375, 148.099853515625, 0.9360556602478027], "4": [293.75909423828125, 145.1802215576172, 0.8303723931312561], "5": [454.8974609375, 261.40252685546875, 0.9885457158088684], "6": [229.13748168945312, 251.0657958984375, 0.9973379969596863], "7": [518.4021606445312, 404.082763671875, 0.7988063097000122], "8": [108.27285766601562, 333.75531005859375, 0.9495264887809753], "9": [459.34075927734375, 430.95782470703125, 0.7458934187889099], "10": [122.87176513671875, 189.5872802734375, 0.9420351386070251], "11": [421.7232971191406, 480.0, 0.16890379786491394], "12": [274.27252197265625, 480.0, 0.2666773796081543], "13": [463.01275634765625, 438.2940673828125, 0.0013666532468050718], "14": [277.28997802734375, 436.78814697265625, 0.0024833963252604008], "15": [427.1267395019531, 476.5863952636719, 0.0001475077006034553], "16": [252.94691467285156, 460.5225830078125, 0.00023521699768025428]}} +{"t": 31.381879, "tracked": true, "track_id": 1, "bbox": [89.03584289550781, 61.01792526245117, 556.4523315429688, 480.0], "det_conf": 0.9069275259971619, "mean_kpt_conf": 0.8908138817006891, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9232232990612725, "right_lift": -0.499836026086051, "left_bend": 0.37271920818308807, "right_bend": 0.6889618867561298}, "keypoints": {"0": [348.51409912109375, 153.28514099121094, 0.998869001865387], "1": [367.56829833984375, 132.07455444335938, 0.9972913861274719], "2": [328.02557373046875, 132.18161010742188, 0.9964331388473511], "3": [391.6057434082031, 147.56173706054688, 0.9197635650634766], "4": [295.7688903808594, 147.05581665039062, 0.8482728004455566], "5": [453.68231201171875, 264.8585510253906, 0.9820965528488159], "6": [232.69459533691406, 249.54489135742188, 0.9961590766906738], "7": [516.3489990234375, 415.4200439453125, 0.6694612503051758], "8": [111.9307861328125, 319.2374267578125, 0.9253571629524231], "9": [472.45184326171875, 460.103515625, 0.5668044686317444], "10": [121.97021484375, 176.52554321289062, 0.8984442949295044], "11": [421.110107421875, 480.0, 0.11863939464092255], "12": [279.6790771484375, 476.9144287109375, 0.20870690047740936], "13": [457.7825012207031, 432.7185363769531, 0.0019356230041012168], "14": [291.6346130371094, 433.609375, 0.003886237507686019], "15": [417.2908935546875, 476.13262939453125, 0.00027003727154806256], "16": [276.1328125, 467.4720458984375, 0.00046001968439668417]}} +{"t": 31.449494, "tracked": true, "track_id": 1, "bbox": [84.13568115234375, 61.5074462890625, 559.71630859375, 480.0], "det_conf": 0.9107443690299988, "mean_kpt_conf": 0.9262531508098949, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9098950150658036, "right_lift": -0.4904246817077926, "left_bend": 0.48340332179661366, "right_bend": 0.7065201113162757}, "keypoints": {"0": [348.08642578125, 154.32310485839844, 0.9991924166679382], "1": [368.09552001953125, 132.78506469726562, 0.998101532459259], "2": [327.5260009765625, 132.2022705078125, 0.9967314004898071], "3": [394.0510559082031, 147.42807006835938, 0.9383068680763245], "4": [295.715576171875, 145.47999572753906, 0.8235514760017395], "5": [453.9322509765625, 263.20648193359375, 0.9879029393196106], "6": [233.88983154296875, 248.67507934570312, 0.9971388578414917], "7": [518.6555786132812, 405.16876220703125, 0.7960699796676636], "8": [102.73825073242188, 322.480224609375, 0.9494363069534302], "9": [464.30645751953125, 433.45697021484375, 0.7561966180801392], "10": [122.44935607910156, 178.68124389648438, 0.9461562633514404], "11": [421.5850830078125, 480.0, 0.14880698919296265], "12": [278.833740234375, 480.0, 0.23859089612960815], "13": [460.98504638671875, 433.4849853515625, 0.0013453016290441155], "14": [285.27056884765625, 430.7086181640625, 0.0024581041652709246], "15": [428.6987609863281, 471.93670654296875, 0.0001512093876954168], "16": [258.9779968261719, 458.01116943359375, 0.00024374893109779805]}} +{"t": 31.483533, "tracked": true, "track_id": 1, "bbox": [81.83512878417969, 61.17387390136719, 558.9178466796875, 480.0], "det_conf": 0.9146508574485779, "mean_kpt_conf": 0.9257647936994379, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9128745664001426, "right_lift": -0.476913267974456, "left_bend": 0.46483937018075133, "right_bend": 0.7003793806964835}, "keypoints": {"0": [348.41949462890625, 154.252197265625, 0.9991814494132996], "1": [368.4750671386719, 132.68753051757812, 0.9981104135513306], "2": [327.94647216796875, 132.1786346435547, 0.9966908693313599], "3": [394.45660400390625, 147.26516723632812, 0.9403534531593323], "4": [296.3553771972656, 145.39096069335938, 0.8226069211959839], "5": [454.87548828125, 262.8517761230469, 0.987896203994751], "6": [233.6737060546875, 247.4959716796875, 0.9971268773078918], "7": [518.593017578125, 405.3319091796875, 0.7960346937179565], "8": [102.52734375, 318.65521240234375, 0.9495428204536438], "9": [464.28424072265625, 437.22430419921875, 0.750877320766449], "10": [121.75003051757812, 174.28598022460938, 0.9449917078018188], "11": [421.0826110839844, 480.0, 0.1480603665113449], "12": [277.6755676269531, 480.0, 0.2374613732099533], "13": [460.913818359375, 431.44757080078125, 0.0013648142339661717], "14": [284.47125244140625, 428.8931884765625, 0.0024998458102345467], "15": [426.63232421875, 472.26556396484375, 0.00015636371972505003], "16": [258.5462646484375, 458.88037109375, 0.0002527482865843922]}} +{"t": 31.54868, "tracked": true, "track_id": 1, "bbox": [71.25127410888672, 61.58367156982422, 560.9566650390625, 480.0], "det_conf": 0.914054274559021, "mean_kpt_conf": 0.9221108230677518, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9077973477930895, "right_lift": -0.4153044203721943, "left_bend": 0.4542108154303501, "right_bend": 0.656814229841517}, "keypoints": {"0": [349.0910339355469, 154.39610290527344, 0.99916672706604], "1": [368.76690673828125, 133.0086669921875, 0.9981011748313904], "2": [328.8173828125, 132.63133239746094, 0.9966386556625366], "3": [394.43072509765625, 147.79342651367188, 0.9435983300209045], "4": [297.6810607910156, 146.24960327148438, 0.8181424736976624], "5": [455.60198974609375, 265.6158142089844, 0.9874852299690247], "6": [234.58238220214844, 247.40704345703125, 0.9970715045928955], "7": [519.8538818359375, 404.68695068359375, 0.7839219570159912], "8": [101.62619018554688, 308.1065673828125, 0.9470601677894592], "9": [469.21392822265625, 437.62237548828125, 0.7320187091827393], "10": [110.65988159179688, 167.9582061767578, 0.940014123916626], "11": [419.858154296875, 480.0, 0.14879995584487915], "12": [277.44195556640625, 480.0, 0.23948544263839722], "13": [461.4020080566406, 431.95477294921875, 0.0013965440448373556], "14": [289.69415283203125, 428.27130126953125, 0.002581198699772358], "15": [428.7633056640625, 469.6339111328125, 0.00016555692127440125], "16": [270.6205139160156, 457.651611328125, 0.00027070281794294715]}} +{"t": 31.584728, "tracked": true, "track_id": 1, "bbox": [64.77561950683594, 61.1367301940918, 558.4830322265625, 480.0], "det_conf": 0.9142011404037476, "mean_kpt_conf": 0.9252695820548318, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9090841753210918, "right_lift": -0.3605500146776132, "left_bend": 0.4715633517582245, "right_bend": 0.626602004292312}, "keypoints": {"0": [349.4674987792969, 154.36285400390625, 0.9991994500160217], "1": [369.1333312988281, 133.14181518554688, 0.9982064962387085], "2": [329.06854248046875, 132.90298461914062, 0.9966050386428833], "3": [395.09783935546875, 148.44866943359375, 0.9491777420043945], "4": [298.13134765625, 147.21444702148438, 0.8037471771240234], "5": [456.82476806640625, 267.05255126953125, 0.9880661964416504], "6": [236.7763671875, 245.5919189453125, 0.9972752928733826], "7": [520.4931640625, 405.9824523925781, 0.7993771433830261], "8": [101.87818908691406, 297.7367248535156, 0.9547269344329834], "9": [466.0413818359375, 437.0909729003906, 0.7460965514183044], "10": [105.937255859375, 157.19924926757812, 0.945487380027771], "11": [419.7464294433594, 480.0, 0.17306707799434662], "12": [277.4898681640625, 480.0, 0.27846330404281616], "13": [460.21246337890625, 438.9156188964844, 0.0014047421282157302], "14": [286.7435607910156, 432.8070068359375, 0.0026474869810044765], "15": [428.43572998046875, 472.7380065917969, 0.00015470257494598627], "16": [264.8437805175781, 460.1188049316406, 0.00025843502953648567]}} +{"t": 31.64695, "tracked": true, "track_id": 1, "bbox": [52.86397171020508, 58.135807037353516, 558.9426879882812, 479.9691162109375], "det_conf": 0.8965624570846558, "mean_kpt_conf": 0.9182593985037371, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9043544424292067, "right_lift": -0.2858766723450059, "left_bend": 0.478740956595154, "right_bend": 0.6073044720517237}, "keypoints": {"0": [349.40777587890625, 155.0252685546875, 0.9991176724433899], "1": [369.4525451660156, 134.164794921875, 0.998060405254364], "2": [328.8480224609375, 133.200439453125, 0.996494710445404], "3": [395.07086181640625, 150.699462890625, 0.9483555555343628], "4": [296.9532470703125, 147.82150268554688, 0.8133484721183777], "5": [455.927734375, 272.6782531738281, 0.9868135452270508], "6": [232.33460998535156, 246.06890869140625, 0.9968575239181519], "7": [519.7249755859375, 407.86505126953125, 0.7659862637519836], "8": [96.90423583984375, 286.471435546875, 0.9430832862854004], "9": [464.21343994140625, 438.7498779296875, 0.7180814743041992], "10": [103.5694580078125, 145.3214111328125, 0.9346544742584229], "11": [413.13348388671875, 480.0, 0.1417396515607834], "12": [270.3288269042969, 480.0, 0.23017184436321259], "13": [453.6329040527344, 433.10418701171875, 0.0013856764417141676], "14": [289.6383056640625, 425.1985168457031, 0.0025880211032927036], "15": [419.51251220703125, 467.3929443359375, 0.00017809445853345096], "16": [278.80810546875, 454.2052001953125, 0.00029554657521657646]}} +{"t": 31.709118, "tracked": true, "track_id": 1, "bbox": [32.92892837524414, 57.98100662231445, 561.896240234375, 479.9538879394531], "det_conf": 0.8831095099449158, "mean_kpt_conf": 0.9180712699890137, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8940055950483088, "right_lift": -0.23640005116132745, "left_bend": 0.5136532925594751, "right_bend": 0.5415564760434166}, "keypoints": {"0": [350.01019287109375, 156.1045379638672, 0.9991639852523804], "1": [370.109130859375, 135.0257568359375, 0.9980903267860413], "2": [329.60186767578125, 134.107666015625, 0.9967189431190491], "3": [395.5057373046875, 150.5679168701172, 0.9498606324195862], "4": [297.64697265625, 147.77938842773438, 0.8123759627342224], "5": [457.3688659667969, 273.93304443359375, 0.9871724843978882], "6": [232.16029357910156, 244.11607360839844, 0.9969056248664856], "7": [524.5292358398438, 407.9381103515625, 0.7646207809448242], "8": [93.5748291015625, 277.8333740234375, 0.9416174292564392], "9": [468.26519775390625, 433.17864990234375, 0.7198435068130493], "10": [79.19929504394531, 145.37513732910156, 0.9324142932891846], "11": [410.71087646484375, 480.0, 0.14812713861465454], "12": [267.7989196777344, 480.0, 0.23718832433223724], "13": [452.8912658691406, 436.01446533203125, 0.0014166360488161445], "14": [291.37908935546875, 424.575927734375, 0.0025997322518378496], "15": [421.0712890625, 466.98095703125, 0.0001746926864143461], "16": [287.5918884277344, 452.98193359375, 0.0002869883901439607]}} +{"t": 31.745645, "tracked": true, "track_id": 1, "bbox": [23.7169246673584, 59.32422637939453, 562.84033203125, 479.906494140625], "det_conf": 0.8865267038345337, "mean_kpt_conf": 0.8708174445412376, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9231450652445993, "right_lift": -0.10207314992198661, "left_bend": 0.4113845727820748, "right_bend": 0.4625533580160251}, "keypoints": {"0": [351.32769775390625, 154.42465209960938, 0.9986452460289001], "1": [370.12469482421875, 132.86431884765625, 0.9968366622924805], "2": [330.0322265625, 133.88160705566406, 0.995970606803894], "3": [393.9814453125, 149.3206024169922, 0.9303932785987854], "4": [296.8201599121094, 150.84170532226562, 0.8401600122451782], "5": [459.16973876953125, 278.5021057128906, 0.9761537909507751], "6": [234.50857543945312, 245.48501586914062, 0.9955518841743469], "7": [515.115478515625, 412.83892822265625, 0.5477909445762634], "8": [93.85581970214844, 259.9172668457031, 0.9060977697372437], "9": [463.416015625, 454.0517272949219, 0.5087595582008362], "10": [68.72349548339844, 147.4721221923828, 0.8826321363449097], "11": [415.18768310546875, 480.0, 0.09364020079374313], "12": [278.6363830566406, 471.4576721191406, 0.18015260994434357], "13": [437.886474609375, 432.89996337890625, 0.001907449564896524], "14": [323.92108154296875, 424.49029541015625, 0.00425580283626914], "15": [388.21923828125, 470.48712158203125, 0.0002875418867915869], "16": [341.3136901855469, 469.10687255859375, 0.000542889058124274]}} +{"t": 31.811071, "tracked": true, "track_id": 1, "bbox": [12.103538513183594, 60.16946029663086, 561.891845703125, 479.8280334472656], "det_conf": 0.8997632265090942, "mean_kpt_conf": 0.918784883889285, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.888405332810215, "right_lift": -0.17814038724377654, "left_bend": 0.48703044335556556, "right_bend": 0.4599443108363022}, "keypoints": {"0": [349.9895324707031, 156.67681884765625, 0.9991568326950073], "1": [370.263916015625, 135.2781219482422, 0.9980419874191284], "2": [329.8191223144531, 134.45802307128906, 0.9966676831245422], "3": [395.91552734375, 149.70443725585938, 0.9525930881500244], "4": [298.34844970703125, 147.1097412109375, 0.8050793409347534], "5": [459.1351623535156, 274.97393798828125, 0.9880459308624268], "6": [231.9490966796875, 242.71441650390625, 0.9968124032020569], "7": [526.217529296875, 404.7965087890625, 0.7773883938789368], "8": [97.46417236328125, 267.06103515625, 0.9383827447891235], "9": [472.2592468261719, 435.52508544921875, 0.7269712090492249], "10": [60.63359069824219, 150.04632568359375, 0.9274941086769104], "11": [406.54901123046875, 480.0, 0.16381551325321198], "12": [263.21771240234375, 480.0, 0.24921470880508423], "13": [454.1438293457031, 437.2510681152344, 0.0014962415443733335], "14": [295.35235595703125, 424.232666015625, 0.0026462385430932045], "15": [419.23394775390625, 466.9605712890625, 0.00018355970678385347], "16": [301.0163879394531, 454.46978759765625, 0.0002938910329248756]}} +{"t": 31.84453, "tracked": true, "track_id": 1, "bbox": [7.070852756500244, 60.45196533203125, 560.1265258789062, 479.7893371582031], "det_conf": 0.8988110423088074, "mean_kpt_conf": 0.9184169173240662, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.895754249163336, "right_lift": -0.14831536155933364, "left_bend": 0.4657780187068985, "right_bend": 0.4378067607181856}, "keypoints": {"0": [350.1494445800781, 156.86817932128906, 0.9991471767425537], "1": [370.79693603515625, 135.77015686035156, 0.998187243938446], "2": [329.9481201171875, 135.128662109375, 0.9964346885681152], "3": [397.44830322265625, 151.10418701171875, 0.9598110914230347], "4": [299.38641357421875, 148.99810791015625, 0.7805793285369873], "5": [459.6524658203125, 275.0418701171875, 0.9879190325737], "6": [235.16709899902344, 242.2008514404297, 0.996697187423706], "7": [523.9169311523438, 404.5328674316406, 0.7870534062385559], "8": [97.79989624023438, 262.8023681640625, 0.9403547048568726], "9": [466.68450927734375, 441.07049560546875, 0.7292535305023193], "10": [56.4110107421875, 147.36068725585938, 0.927148699760437], "11": [404.17706298828125, 480.0, 0.16833128035068512], "12": [262.0897521972656, 480.0, 0.25390756130218506], "13": [449.865234375, 436.4023132324219, 0.001482541672885418], "14": [289.6233825683594, 422.64776611328125, 0.002599020255729556], "15": [413.74822998046875, 467.13385009765625, 0.00018798121891450137], "16": [288.98431396484375, 454.14178466796875, 0.0003010238870047033]}} +{"t": 31.883149, "tracked": true, "track_id": 1, "bbox": [3.9910714626312256, 60.54198455810547, 561.7770385742188, 479.7076416015625], "det_conf": 0.9041488170623779, "mean_kpt_conf": 0.920009499246424, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8840953412276896, "right_lift": -0.1385907828519206, "left_bend": 0.49442976079198275, "right_bend": 0.4310079704080493}, "keypoints": {"0": [349.98095703125, 157.33103942871094, 0.9991968274116516], "1": [370.31048583984375, 135.638427734375, 0.998212456703186], "2": [329.64263916015625, 135.37098693847656, 0.9966862797737122], "3": [396.8207092285156, 149.87136840820312, 0.9589049816131592], "4": [298.81817626953125, 148.5127716064453, 0.7889655232429504], "5": [461.92529296875, 275.06134033203125, 0.9884358644485474], "6": [233.6770477294922, 241.83941650390625, 0.9968647360801697], "7": [530.3638916015625, 404.5400390625, 0.7862539887428284], "8": [95.66769409179688, 261.1526184082031, 0.9421107769012451], "9": [468.5936279296875, 438.5859680175781, 0.7342054843902588], "10": [53.71771240234375, 148.2613067626953, 0.9302675724029541], "11": [406.1429748535156, 480.0, 0.1666940301656723], "12": [261.8585510253906, 480.0, 0.25380775332450867], "13": [454.19305419921875, 438.3885498046875, 0.0013856699224561453], "14": [292.2328186035156, 423.5912170410156, 0.0024767618160694838], "15": [417.6629638671875, 469.01458740234375, 0.0001702494191704318], "16": [293.18682861328125, 455.8552551269531, 0.0002762145013548434]}} +{"t": 31.942856, "tracked": true, "track_id": 1, "bbox": [1.1589620113372803, 63.08481216430664, 562.4308471679688, 479.620361328125], "det_conf": 0.9047560691833496, "mean_kpt_conf": 0.9205495823513378, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8812299189923425, "right_lift": -0.09745323479735163, "left_bend": 0.4476472249308965, "right_bend": 0.3787476629487845}, "keypoints": {"0": [349.6354064941406, 158.2998504638672, 0.9991639852523804], "1": [369.6554260253906, 136.47140502929688, 0.9982253909111023], "2": [329.42608642578125, 136.52511596679688, 0.9963286519050598], "3": [396.4356994628906, 149.6308135986328, 0.9610540270805359], "4": [299.46142578125, 149.00662231445312, 0.7623079419136047], "5": [461.6753234863281, 273.3416748046875, 0.9885023832321167], "6": [238.47341918945312, 240.38014221191406, 0.9965367317199707], "7": [528.281982421875, 397.51617431640625, 0.8043726086616516], "8": [103.36503601074219, 253.60986328125, 0.9414677023887634], "9": [472.8717041015625, 440.23779296875, 0.7485268115997314], "10": [51.214569091796875, 153.0785369873047, 0.9295591711997986], "11": [409.221923828125, 480.0, 0.1893419772386551], "12": [268.08355712890625, 480.0, 0.27467477321624756], "13": [455.8216552734375, 437.9415283203125, 0.0015573558630421758], "14": [296.6117858886719, 423.41082763671875, 0.00266219861805439], "15": [418.6313781738281, 467.988525390625, 0.00018743482360150665], "16": [297.5173645019531, 456.66064453125, 0.0002963399747386575]}} +{"t": 32.011122, "tracked": true, "track_id": 1, "bbox": [0.07632827758789062, 62.23342514038086, 561.158935546875, 479.7242736816406], "det_conf": 0.9040285348892212, "mean_kpt_conf": 0.9189738902178678, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8873562065649129, "right_lift": -0.0724235949557425, "left_bend": 0.4533529563965266, "right_bend": 0.3837339420776287}, "keypoints": {"0": [349.31658935546875, 158.78817749023438, 0.9991936087608337], "1": [369.0562744140625, 137.06317138671875, 0.9982830286026001], "2": [329.2998352050781, 137.25930786132812, 0.9964327812194824], "3": [395.667724609375, 150.04161071777344, 0.9621807932853699], "4": [299.8231506347656, 149.4855194091797, 0.7636430263519287], "5": [460.5618896484375, 274.252685546875, 0.9882807731628418], "6": [240.2666015625, 239.06146240234375, 0.9968679547309875], "7": [526.3106079101562, 400.78594970703125, 0.7949761152267456], "8": [103.01620483398438, 249.02780151367188, 0.9480825662612915], "9": [471.6053466796875, 440.3184509277344, 0.7291275262832642], "10": [52.979827880859375, 142.1197509765625, 0.9316446185112], "11": [409.9047546386719, 480.0, 0.20687487721443176], "12": [270.2388916015625, 480.0, 0.31264349818229675], "13": [453.4106140136719, 448.45416259765625, 0.0015121599426493049], "14": [294.2650451660156, 432.870849609375, 0.0027440288104116917], "15": [419.3238220214844, 473.9474792480469, 0.0001723679743008688], "16": [292.4632568359375, 462.50274658203125, 0.00028460827888920903]}} +{"t": 32.074201, "tracked": true, "track_id": 1, "bbox": [0.0, 63.89811706542969, 559.7740478515625, 479.73236083984375], "det_conf": 0.9042313694953918, "mean_kpt_conf": 0.9212560057640076, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8906858083993369, "right_lift": -0.07834220542139589, "left_bend": 0.43530161186538047, "right_bend": 0.3550776505411408}, "keypoints": {"0": [348.7322998046875, 158.91143798828125, 0.9991903901100159], "1": [368.7418212890625, 137.62283325195312, 0.9983882904052734], "2": [328.4700622558594, 137.96929931640625, 0.9962060451507568], "3": [396.1849365234375, 151.66452026367188, 0.9674398303031921], "4": [299.755859375, 151.61795043945312, 0.7380578517913818], "5": [461.20233154296875, 274.0909423828125, 0.9889082312583923], "6": [242.52769470214844, 237.71290588378906, 0.9966873526573181], "7": [525.9796142578125, 401.001953125, 0.8170677423477173], "8": [103.01348876953125, 248.67645263671875, 0.948560893535614], "9": [470.1370849609375, 445.7181091308594, 0.7499814629554749], "10": [48.1422119140625, 155.81765747070312, 0.9333279728889465], "11": [410.5093994140625, 480.0, 0.21619294583797455], "12": [272.1479797363281, 480.0, 0.3145582675933838], "13": [455.6630859375, 446.33221435546875, 0.0015234040329232812], "14": [298.0231018066406, 428.6960754394531, 0.0026774283032864332], "15": [421.4042663574219, 474.89678955078125, 0.0001754458644427359], "16": [294.2469482421875, 463.23565673828125, 0.0002857496729120612]}} +{"t": 32.137778, "tracked": true, "track_id": 1, "bbox": [1.3651716709136963, 65.05625915527344, 560.2037353515625, 479.8730163574219], "det_conf": 0.9074264764785767, "mean_kpt_conf": 0.9192223440517079, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8985786779954125, "right_lift": -0.07471067581494227, "left_bend": 0.43732671562798786, "right_bend": 0.33483815075742746}, "keypoints": {"0": [348.8719787597656, 158.8084716796875, 0.9991913437843323], "1": [368.48162841796875, 137.4638214111328, 0.9984103441238403], "2": [328.1322326660156, 138.602783203125, 0.9961633682250977], "3": [396.1938781738281, 151.95550537109375, 0.9682832956314087], "4": [299.92828369140625, 153.92669677734375, 0.7269328832626343], "5": [460.93170166015625, 274.65313720703125, 0.9885158538818359], "6": [246.25070190429688, 238.11459350585938, 0.9965535402297974], "7": [523.7293090820312, 403.24700927734375, 0.8148577213287354], "8": [109.40806579589844, 248.36685180664062, 0.9490227103233337], "9": [469.9417419433594, 444.2359924316406, 0.7422110438346863], "10": [48.16693115234375, 157.62005615234375, 0.9313036799430847], "11": [409.88543701171875, 480.0, 0.2181960493326187], "12": [273.579833984375, 480.0, 0.3186815679073334], "13": [456.9793701171875, 445.2979736328125, 0.0015463222516700625], "14": [297.5148620605469, 427.481201171875, 0.0027583332266658545], "15": [425.64080810546875, 472.6253662109375, 0.00018195738084614277], "16": [292.226806640625, 463.9310302734375, 0.0003001000441145152]}} +{"t": 32.173173, "tracked": true, "track_id": 1, "bbox": [0.22416169941425323, 65.31262969970703, 559.7005615234375, 479.9452209472656], "det_conf": 0.9129772782325745, "mean_kpt_conf": 0.9192175485871055, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.88726498207693, "right_lift": -0.050593415894175854, "left_bend": 0.39729640056180965, "right_bend": 0.3306176414566405}, "keypoints": {"0": [348.6509094238281, 158.70846557617188, 0.999208390712738], "1": [367.82830810546875, 137.142578125, 0.9984982013702393], "2": [327.8273010253906, 138.80203247070312, 0.9961708188056946], "3": [395.4779052734375, 151.1735382080078, 0.9697797298431396], "4": [299.947265625, 154.31289672851562, 0.7285590767860413], "5": [462.0767822265625, 272.4767761230469, 0.9886819124221802], "6": [245.74143981933594, 238.04534912109375, 0.9966136813163757], "7": [527.355224609375, 398.0442810058594, 0.8190310597419739], "8": [104.13414001464844, 245.21893310546875, 0.9502971172332764], "9": [477.3435363769531, 449.7517395019531, 0.733901858329773], "10": [44.21406555175781, 154.306884765625, 0.9306511878967285], "11": [412.3787841796875, 480.0, 0.21716514229774475], "12": [274.91192626953125, 480.0, 0.3172687590122223], "13": [458.7501220703125, 442.7835388183594, 0.0014642258174717426], "14": [295.3139343261719, 427.19122314453125, 0.002608617302030325], "15": [425.887939453125, 473.1720886230469, 0.00017583878070581704], "16": [285.6961975097656, 465.80078125, 0.0002897782251238823]}} +{"t": 32.207889, "tracked": true, "track_id": 1, "bbox": [0.5422913432121277, 64.89488983154297, 562.2449951171875, 480.0], "det_conf": 0.9071854948997498, "mean_kpt_conf": 0.9171318953687494, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8919661921126752, "right_lift": -0.04213129519798903, "left_bend": 0.4267087743489722, "right_bend": 0.3172903025119742}, "keypoints": {"0": [349.0322265625, 159.048583984375, 0.9991687536239624], "1": [368.0118103027344, 137.5537109375, 0.998404324054718], "2": [327.9768371582031, 139.0755157470703, 0.9960010647773743], "3": [395.3573913574219, 151.65646362304688, 0.9677208662033081], "4": [299.3934020996094, 154.64105224609375, 0.7182563543319702], "5": [462.4713439941406, 274.3915100097656, 0.9882904291152954], "6": [246.64920043945312, 238.01611328125, 0.9961466789245605], "7": [526.0845336914062, 399.89593505859375, 0.8140146136283875], "8": [110.62733459472656, 243.75198364257812, 0.9437354803085327], "9": [472.47265625, 444.99505615234375, 0.7403123378753662], "10": [49.90480041503906, 157.99810791015625, 0.9263999462127686], "11": [413.855712890625, 480.0, 0.21405446529388428], "12": [276.8818664550781, 480.0, 0.3052990138530731], "13": [458.695556640625, 443.0490417480469, 0.0015692419838160276], "14": [298.3963928222656, 425.54925537109375, 0.0026977858506143093], "15": [426.0743408203125, 472.2811279296875, 0.00018916612316388637], "16": [293.88275146484375, 464.9320373535156, 0.00030437379609793425]}} +{"t": 32.272679, "tracked": true, "track_id": 1, "bbox": [2.167593479156494, 65.29205322265625, 559.2413940429688, 480.0], "det_conf": 0.902656614780426, "mean_kpt_conf": 0.9187062924558466, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8883232820077887, "right_lift": -0.036840634461673426, "left_bend": 0.3951123818778412, "right_bend": 0.3095457921641047}, "keypoints": {"0": [348.8507080078125, 159.2926483154297, 0.9991636276245117], "1": [368.0163269042969, 137.51304626464844, 0.9983733892440796], "2": [327.82965087890625, 138.98065185546875, 0.9960248470306396], "3": [395.45355224609375, 150.9899444580078, 0.9666725993156433], "4": [299.35296630859375, 153.81192016601562, 0.7233339548110962], "5": [461.18511962890625, 273.37237548828125, 0.9881654977798462], "6": [246.86392211914062, 237.48324584960938, 0.9961251616477966], "7": [525.2237548828125, 397.2502136230469, 0.8186735510826111], "8": [113.74749755859375, 242.3906707763672, 0.9457122087478638], "9": [476.68743896484375, 447.8925476074219, 0.7452491521835327], "10": [51.487548828125, 157.921875, 0.9282752275466919], "11": [409.6693115234375, 480.0, 0.20812658965587616], "12": [273.2439270019531, 480.0, 0.29802507162094116], "13": [455.35711669921875, 438.15423583984375, 0.0015629163244739175], "14": [292.7031555175781, 421.5835876464844, 0.0026971816550940275], "15": [421.8055419921875, 468.6327209472656, 0.00019690564658958465], "16": [286.8041687011719, 461.86798095703125, 0.0003157269675284624]}} +{"t": 32.307367, "tracked": true, "track_id": 1, "bbox": [3.954988479614258, 64.92676544189453, 560.456298828125, 480.0], "det_conf": 0.904975414276123, "mean_kpt_conf": 0.9176295020363547, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8960424140208594, "right_lift": -0.02725725459374473, "left_bend": 0.42179667000146714, "right_bend": 0.32584351721526794}, "keypoints": {"0": [348.6486511230469, 159.55633544921875, 0.9991637468338013], "1": [367.6394958496094, 137.61215209960938, 0.9984250068664551], "2": [327.67852783203125, 139.57403564453125, 0.9959306120872498], "3": [395.4771728515625, 150.80398559570312, 0.9691178798675537], "4": [299.7382507324219, 154.49005126953125, 0.7132639288902283], "5": [461.3841857910156, 274.07733154296875, 0.9878023266792297], "6": [248.17271423339844, 236.98202514648438, 0.9963390827178955], "7": [523.8805541992188, 400.2110595703125, 0.8105140328407288], "8": [111.72972106933594, 240.7024688720703, 0.9487117528915405], "9": [471.32275390625, 444.9949951171875, 0.7428478598594666], "10": [54.86824035644531, 152.8419189453125, 0.9318082928657532], "11": [411.7926330566406, 480.0, 0.2132861167192459], "12": [276.3309326171875, 480.0, 0.3153057396411896], "13": [453.8878479003906, 443.5478515625, 0.0015601335326209664], "14": [294.92083740234375, 426.11126708984375, 0.002798709087073803], "15": [423.5520935058594, 470.02020263671875, 0.00018845680460799485], "16": [290.24505615234375, 463.9301452636719, 0.00031286836019717157]}} +{"t": 32.369909, "tracked": true, "track_id": 1, "bbox": [2.8015048503875732, 64.9597396850586, 559.2529907226562, 480.0], "det_conf": 0.8989536762237549, "mean_kpt_conf": 0.9153850241140886, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8899459181572343, "right_lift": 0.024592815869871734, "left_bend": 0.35062069665276924, "right_bend": 0.2792633618778957}, "keypoints": {"0": [348.3521423339844, 159.2681884765625, 0.9991040825843811], "1": [367.07562255859375, 137.9341278076172, 0.998360812664032], "2": [327.4438171386719, 139.79849243164062, 0.9955236911773682], "3": [394.525634765625, 151.7876739501953, 0.9683789610862732], "4": [299.8009948730469, 155.3411865234375, 0.696183443069458], "5": [459.7278747558594, 273.5104675292969, 0.987998366355896], "6": [250.82196044921875, 235.82632446289062, 0.9956554174423218], "7": [522.1043090820312, 395.2289123535156, 0.8262079358100891], "8": [120.06480407714844, 232.6096649169922, 0.9427415132522583], "9": [481.28204345703125, 451.4609680175781, 0.7382940649986267], "10": [55.51881408691406, 150.94882202148438, 0.92078697681427], "11": [411.83489990234375, 480.0, 0.23770670592784882], "12": [278.9476318359375, 480.0, 0.32565537095069885], "13": [456.3277587890625, 443.58380126953125, 0.001717480132356286], "14": [298.3461608886719, 427.2364807128906, 0.0028572131413966417], "15": [426.8551940917969, 471.3753356933594, 0.00021061277948319912], "16": [295.1983642578125, 467.0085754394531, 0.00033122996683232486]}} +{"t": 32.437455, "tracked": true, "track_id": 1, "bbox": [1.8959107398986816, 64.26793670654297, 558.6687622070312, 480.0], "det_conf": 0.8994172811508179, "mean_kpt_conf": 0.9165120179002936, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8873221418337107, "right_lift": 0.015782721980026657, "left_bend": 0.3539054099266742, "right_bend": 0.28558873283796565}, "keypoints": {"0": [348.193359375, 159.9315185546875, 0.9991394281387329], "1": [367.18853759765625, 138.03610229492188, 0.998418927192688], "2": [327.308349609375, 139.7860565185547, 0.9956209063529968], "3": [394.897705078125, 151.07351684570312, 0.9686086177825928], "4": [299.47882080078125, 154.23826599121094, 0.6946261525154114], "5": [460.78790283203125, 273.2488098144531, 0.9882451295852661], "6": [250.4739227294922, 235.9873046875, 0.9957862496376038], "7": [524.5834350585938, 396.0010070800781, 0.8284050226211548], "8": [119.32791137695312, 233.91720581054688, 0.9444513916969299], "9": [482.93914794921875, 452.8140563964844, 0.7442857623100281], "10": [53.59867858886719, 148.84193420410156, 0.9240446090698242], "11": [412.77557373046875, 480.0, 0.2261418253183365], "12": [278.60662841796875, 480.0, 0.31282365322113037], "13": [456.36297607421875, 440.74859619140625, 0.0016550549771636724], "14": [294.37237548828125, 424.51593017578125, 0.0027572563849389553], "15": [425.3508605957031, 469.9739990234375, 0.00020321276679169387], "16": [288.3603210449219, 464.54736328125, 0.0003197368932887912]}} +{"t": 32.502743, "tracked": true, "track_id": 1, "bbox": [4.099257469177246, 64.2767562866211, 558.068359375, 480.0], "det_conf": 0.9001079201698303, "mean_kpt_conf": 0.9155022881247781, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8894039501192957, "right_lift": 0.0038179106285099918, "left_bend": 0.3707615690252998, "right_bend": 0.3187099215245393}, "keypoints": {"0": [348.5881042480469, 159.55880737304688, 0.999152421951294], "1": [367.3394775390625, 137.9720458984375, 0.9984146356582642], "2": [327.7410888671875, 139.810302734375, 0.9959130883216858], "3": [394.7154235839844, 151.610107421875, 0.9679180383682251], "4": [300.1459655761719, 155.01699829101562, 0.7176206111907959], "5": [459.5679931640625, 272.7832336425781, 0.9869274497032166], "6": [250.6798858642578, 236.23110961914062, 0.9961422085762024], "7": [522.9562377929688, 396.11517333984375, 0.8055272102355957], "8": [114.66744995117188, 235.71182250976562, 0.9490307569503784], "9": [477.50421142578125, 451.18328857421875, 0.7245549559593201], "10": [57.581695556640625, 145.80577087402344, 0.9293237924575806], "11": [412.48126220703125, 480.0, 0.20641928911209106], "12": [279.55560302734375, 480.0, 0.3091447353363037], "13": [453.9835205078125, 439.69342041015625, 0.001560910721309483], "14": [295.62725830078125, 423.8083190917969, 0.002843503374606371], "15": [423.9259338378906, 470.65631103515625, 0.0001986119314096868], "16": [287.37811279296875, 464.6445617675781, 0.00033257255563512444]}} +{"t": 32.567981, "tracked": true, "track_id": 1, "bbox": [7.516435623168945, 62.65073776245117, 558.8815307617188, 480.0], "det_conf": 0.8993250131607056, "mean_kpt_conf": 0.9170680479569868, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8897124646032516, "right_lift": -0.039421475207211724, "left_bend": 0.36681819941457977, "right_bend": 0.36374861821863724}, "keypoints": {"0": [349.45556640625, 159.95928955078125, 0.9991543292999268], "1": [368.1199645996094, 138.687744140625, 0.9982819557189941], "2": [328.9566650390625, 139.60781860351562, 0.9961711764335632], "3": [394.0877685546875, 152.35923767089844, 0.961950421333313], "4": [300.4704895019531, 153.64877319335938, 0.7506634593009949], "5": [457.5678405761719, 274.42144775390625, 0.9874351024627686], "6": [247.0158233642578, 236.57501220703125, 0.9962344765663147], "7": [522.486572265625, 400.9412841796875, 0.8030263185501099], "8": [110.95001220703125, 241.94309997558594, 0.9470306634902954], "9": [480.492919921875, 453.05078125, 0.7198873162269592], "10": [62.46720886230469, 145.89898681640625, 0.9279133081436157], "11": [408.9882507324219, 480.0, 0.19249190390110016], "12": [275.2050476074219, 480.0, 0.2877313494682312], "13": [453.413818359375, 438.60797119140625, 0.0015225970419123769], "14": [295.3209533691406, 422.7534484863281, 0.0027411726769059896], "15": [422.842529296875, 469.8455810546875, 0.0001967524876818061], "16": [288.0973815917969, 462.2762145996094, 0.0003229665744584054]}} +{"t": 32.604811, "tracked": true, "track_id": 1, "bbox": [8.306036949157715, 62.570613861083984, 561.051025390625, 480.0], "det_conf": 0.8993721604347229, "mean_kpt_conf": 0.9172147404063832, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8860605203283918, "right_lift": -0.05037457398166123, "left_bend": 0.3826370265001163, "right_bend": 0.36705704950045803}, "keypoints": {"0": [350.1796569824219, 160.4643096923828, 0.9991551637649536], "1": [368.59796142578125, 139.13241577148438, 0.9981980919837952], "2": [329.3636779785156, 140.05487060546875, 0.9963008165359497], "3": [393.89312744140625, 152.55966186523438, 0.9572644829750061], "4": [299.937255859375, 154.01144409179688, 0.7623674869537354], "5": [457.847412109375, 273.9638366699219, 0.9874027967453003], "6": [246.65501403808594, 236.4042205810547, 0.9961020946502686], "7": [524.0985107421875, 400.59527587890625, 0.8015474081039429], "8": [113.66059875488281, 243.11227416992188, 0.9454296231269836], "9": [481.79937744140625, 448.81634521484375, 0.7194985747337341], "10": [65.20556640625, 147.25914001464844, 0.9260956048965454], "11": [410.1613464355469, 480.0, 0.18769529461860657], "12": [275.67779541015625, 480.0, 0.27921608090400696], "13": [453.1978759765625, 436.1272277832031, 0.0015256504993885756], "14": [292.3249206542969, 419.958984375, 0.0027070746291428804], "15": [422.9619140625, 468.2221374511719, 0.00019963581871706992], "16": [285.5992126464844, 460.5174255371094, 0.000322273321216926]}} +{"t": 32.665307, "tracked": true, "track_id": 1, "bbox": [12.521040916442871, 60.402835845947266, 557.3422241210938, 480.0], "det_conf": 0.88321852684021, "mean_kpt_conf": 0.9175231944430958, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8880305300691441, "right_lift": -0.08380263351842747, "left_bend": 0.3554171329493708, "right_bend": 0.3988067359314099}, "keypoints": {"0": [350.50274658203125, 160.86285400390625, 0.9991222023963928], "1": [368.94610595703125, 139.12567138671875, 0.9981028437614441], "2": [329.8072814941406, 140.46771240234375, 0.9963414072990417], "3": [394.509033203125, 151.651611328125, 0.9556707143783569], "4": [301.0209045410156, 153.8665771484375, 0.777675211429596], "5": [457.9245910644531, 272.282470703125, 0.9872287511825562], "6": [246.57327270507812, 237.235595703125, 0.9962536096572876], "7": [523.8065185546875, 399.5272216796875, 0.7956655621528625], "8": [116.49960327148438, 248.17459106445312, 0.946954071521759], "9": [483.4273376464844, 453.89410400390625, 0.7118510603904724], "10": [75.44633483886719, 151.5621337890625, 0.9278897047042847], "11": [408.127685546875, 480.0, 0.1826443076133728], "12": [273.8882751464844, 480.0, 0.277534544467926], "13": [455.4717102050781, 433.30950927734375, 0.0015339406672865152], "14": [297.1877136230469, 419.8583984375, 0.0028488757088780403], "15": [420.9149169921875, 467.0198974609375, 0.00020751749980263412], "16": [289.8107604980469, 461.38397216796875, 0.00034414391848258674]}} +{"t": 32.735759, "tracked": true, "track_id": 1, "bbox": [17.34796142578125, 61.45436477661133, 559.5858154296875, 480.0], "det_conf": 0.8814131617546082, "mean_kpt_conf": 0.9191427772695367, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8958153107586501, "right_lift": -0.1471819805010957, "left_bend": 0.38293824182255365, "right_bend": 0.4458999077277296}, "keypoints": {"0": [350.986083984375, 160.40744018554688, 0.9991374015808105], "1": [370.01605224609375, 138.59490966796875, 0.9980607628822327], "2": [330.0821533203125, 139.63784790039062, 0.9965437054634094], "3": [395.9571533203125, 151.58831787109375, 0.9531280994415283], "4": [300.6391906738281, 153.12071228027344, 0.7923660278320312], "5": [458.09149169921875, 272.8731384277344, 0.9869986176490784], "6": [244.92953491210938, 238.7809295654297, 0.9965536594390869], "7": [523.027587890625, 403.7626037597656, 0.7867778539657593], "8": [116.1197509765625, 257.9481506347656, 0.9496809840202332], "9": [479.870849609375, 450.790283203125, 0.717298686504364], "10": [82.65028381347656, 156.16018676757812, 0.9340247511863708], "11": [407.81170654296875, 480.0, 0.17356763780117035], "12": [272.4624328613281, 480.0, 0.2742503881454468], "13": [455.53411865234375, 433.9420471191406, 0.0014975243248045444], "14": [297.87371826171875, 420.73626708984375, 0.002904898952692747], "15": [420.845458984375, 466.8115234375, 0.00019912805873900652], "16": [291.2889404296875, 460.40142822265625, 0.00033962135785259306]}} +{"t": 32.801075, "tracked": true, "track_id": 1, "bbox": [25.19406509399414, 64.22355651855469, 558.2722778320312, 479.97161865234375], "det_conf": 0.8896619081497192, "mean_kpt_conf": 0.9107402563095093, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9002361719404508, "right_lift": -0.16580521124821382, "left_bend": 0.40689084125060626, "right_bend": 0.4818252014485287}, "keypoints": {"0": [351.14453125, 159.5994110107422, 0.999025821685791], "1": [370.30242919921875, 138.19473266601562, 0.9979544878005981], "2": [330.4591369628906, 139.13018798828125, 0.9962510466575623], "3": [396.29510498046875, 151.8681640625, 0.9541371464729309], "4": [300.96112060546875, 153.102783203125, 0.791556715965271], "5": [458.6429138183594, 272.7543640136719, 0.9855329394340515], "6": [242.17364501953125, 239.80873107910156, 0.9962009787559509], "7": [521.78857421875, 403.314208984375, 0.7539622187614441], "8": [111.87191772460938, 261.7166748046875, 0.938310980796814], "9": [475.0577087402344, 446.2410888671875, 0.6838482618331909], "10": [87.96926879882812, 156.64016723632812, 0.9213622212409973], "11": [409.09857177734375, 480.0, 0.15668022632598877], "12": [272.3349914550781, 480.0, 0.24971315264701843], "13": [454.6668701171875, 432.0245361328125, 0.001541708828881383], "14": [300.474365234375, 419.8246154785156, 0.002959044650197029], "15": [419.900634765625, 465.5629577636719, 0.00022021587938070297], "16": [299.14703369140625, 459.22216796875, 0.00037386975600384176]}} +{"t": 32.866939, "tracked": true, "track_id": 1, "bbox": [38.94733428955078, 64.32066345214844, 560.0950317382812, 479.95819091796875], "det_conf": 0.8997130990028381, "mean_kpt_conf": 0.9106548699465665, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8875279938687065, "right_lift": -0.1839597082728234, "left_bend": 0.40436999330783663, "right_bend": 0.5161811443303411}, "keypoints": {"0": [351.0066223144531, 160.13845825195312, 0.9990170001983643], "1": [370.057861328125, 138.2512969970703, 0.9979444146156311], "2": [330.23358154296875, 139.74078369140625, 0.996281087398529], "3": [396.34136962890625, 151.2042236328125, 0.9532352089881897], "4": [300.9531555175781, 153.4842529296875, 0.7959750890731812], "5": [459.77056884765625, 271.04296875, 0.9853911399841309], "6": [241.81948852539062, 240.43836975097656, 0.9961328506469727], "7": [527.5526123046875, 401.6082763671875, 0.7502657175064087], "8": [110.47543334960938, 265.0198974609375, 0.9370879530906677], "9": [480.4909362792969, 448.09710693359375, 0.6835257411003113], "10": [95.91618347167969, 157.16555786132812, 0.922347366809845], "11": [410.51934814453125, 480.0, 0.1469983160495758], "12": [273.115478515625, 480.0, 0.2353639453649521], "13": [459.12701416015625, 428.92822265625, 0.0014910927275195718], "14": [305.6662902832031, 418.4185791015625, 0.002906573237851262], "15": [423.9588317871094, 464.783935546875, 0.00021375992218963802], "16": [302.5639343261719, 459.097412109375, 0.00036691472632810473]}} +{"t": 32.932564, "tracked": true, "track_id": 1, "bbox": [52.76835632324219, 65.86446380615234, 559.2099609375, 479.8946838378906], "det_conf": 0.9027817249298096, "mean_kpt_conf": 0.9134416742758318, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9047088086588317, "right_lift": -0.2742848419185451, "left_bend": 0.39743606156340644, "right_bend": 0.5674278926983489}, "keypoints": {"0": [349.8661193847656, 159.93893432617188, 0.9989953637123108], "1": [369.4247131347656, 138.2105712890625, 0.9979242086410522], "2": [329.30035400390625, 139.38882446289062, 0.9961807727813721], "3": [396.0810546875, 151.6372833251953, 0.9530571699142456], "4": [300.2648010253906, 153.1771697998047, 0.7995534539222717], "5": [458.3245849609375, 269.9455871582031, 0.9860326647758484], "6": [238.90635681152344, 241.86904907226562, 0.9962397813796997], "7": [522.0534057617188, 405.2786865234375, 0.761698305606842], "8": [108.48703002929688, 279.0677185058594, 0.9372318983078003], "9": [476.096923828125, 449.1610107421875, 0.6964038014411926], "10": [101.03807067871094, 166.39425659179688, 0.9245409965515137], "11": [408.56658935546875, 480.0, 0.14073561131954193], "12": [269.68841552734375, 480.0, 0.2231401652097702], "13": [457.6811828613281, 424.02545166015625, 0.0015107867075130343], "14": [299.2969055175781, 415.51116943359375, 0.0028819250874221325], "15": [419.71539306640625, 463.9768371582031, 0.0002182195894420147], "16": [292.2041320800781, 458.4921875, 0.0003672835591714829]}} +{"t": 32.994045, "tracked": true, "track_id": 1, "bbox": [60.14418411254883, 67.23493957519531, 556.4328002929688, 479.7962646484375], "det_conf": 0.9182811975479126, "mean_kpt_conf": 0.9154186032035134, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.906244935760634, "right_lift": -0.30031734139363986, "left_bend": 0.40954492472228493, "right_bend": 0.5859117737703747}, "keypoints": {"0": [347.566650390625, 161.19021606445312, 0.9989941716194153], "1": [366.94805908203125, 138.2543487548828, 0.9980820417404175], "2": [326.97344970703125, 140.8941650390625, 0.9958053827285767], "3": [395.37042236328125, 149.43289184570312, 0.9597496390342712], "4": [299.80023193359375, 153.94171142578125, 0.7697749137878418], "5": [459.7192077636719, 265.8891906738281, 0.98593670129776], "6": [241.69058227539062, 242.6790008544922, 0.996434211730957], "7": [522.8118896484375, 401.1393737792969, 0.7707493901252747], "8": [109.22201538085938, 284.3868713378906, 0.9432820081710815], "9": [472.46356201171875, 445.3565673828125, 0.7171536684036255], "10": [105.34980773925781, 174.193115234375, 0.9336425065994263], "11": [414.9512634277344, 480.0, 0.14171305298805237], "12": [276.7589111328125, 480.0, 0.23023849725723267], "13": [462.09979248046875, 422.5691833496094, 0.0014434808399528265], "14": [303.5551452636719, 416.2466735839844, 0.002844585105776787], "15": [424.9486083984375, 462.676025390625, 0.00020477072393987328], "16": [293.5147705078125, 459.8117980957031, 0.00035696555278263986]}} +{"t": 33.030092, "tracked": true, "track_id": 1, "bbox": [62.60792541503906, 68.01268005371094, 556.1019897460938, 479.7899475097656], "det_conf": 0.9204658269882202, "mean_kpt_conf": 0.9136148636991327, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9164582149496681, "right_lift": -0.3266071892801103, "left_bend": 0.4387393191691958, "right_bend": 0.6064219594476735}, "keypoints": {"0": [344.5875549316406, 161.77737426757812, 0.9989757537841797], "1": [364.9549865722656, 138.5563201904297, 0.9982383251190186], "2": [324.65924072265625, 141.310791015625, 0.9953649044036865], "3": [395.80078125, 149.85147094726562, 0.9685488343238831], "4": [299.5347595214844, 154.05450439453125, 0.7378812432289124], "5": [460.76287841796875, 267.57373046875, 0.9863089323043823], "6": [241.2263946533203, 244.84706115722656, 0.9966580867767334], "7": [521.2128295898438, 406.0282287597656, 0.7677991390228271], "8": [108.5826416015625, 290.68310546875, 0.9438136219978333], "9": [465.85028076171875, 444.23919677734375, 0.721863329410553], "10": [108.77169799804688, 174.18130493164062, 0.9343113303184509], "11": [413.441650390625, 480.0, 0.1411421000957489], "12": [274.06231689453125, 480.0, 0.23284907639026642], "13": [459.91351318359375, 425.8453063964844, 0.0014157291734591126], "14": [300.42608642578125, 419.5329284667969, 0.002851062687113881], "15": [422.3089904785156, 463.7494812011719, 0.00019782889285124838], "16": [289.4263916015625, 460.4429016113281, 0.00035407854011282325]}} +{"t": 33.093629, "tracked": true, "track_id": 1, "bbox": [65.94917297363281, 68.5797348022461, 556.311279296875, 479.741455078125], "det_conf": 0.9211554527282715, "mean_kpt_conf": 0.9089219732718035, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9100369834668351, "right_lift": -0.3272090223192574, "left_bend": 0.4524707008698319, "right_bend": 0.6247982649126107}, "keypoints": {"0": [338.1959228515625, 164.70745849609375, 0.9989307522773743], "1": [359.3619079589844, 141.15438842773438, 0.998412013053894], "2": [319.7886962890625, 144.1504669189453, 0.9943121671676636], "3": [393.80767822265625, 151.68096923828125, 0.9764156937599182], "4": [298.5600891113281, 155.39569091796875, 0.6634399890899658], "5": [461.81103515625, 267.7834777832031, 0.986062228679657], "6": [242.7547607421875, 246.1975555419922, 0.9963801503181458], "7": [523.9691772460938, 404.24310302734375, 0.7700164914131165], "8": [107.384033203125, 293.07244873046875, 0.9406267404556274], "9": [463.267578125, 443.730712890625, 0.7389772534370422], "10": [114.11651611328125, 178.54403686523438, 0.9345682263374329], "11": [415.8655700683594, 480.0, 0.1233358234167099], "12": [276.49114990234375, 480.0, 0.20396366715431213], "13": [457.59246826171875, 418.11956787109375, 0.0013575493358075619], "14": [297.84454345703125, 411.11651611328125, 0.0027067954652011395], "15": [422.3375244140625, 459.45648193359375, 0.0001996461214730516], "16": [284.9946594238281, 453.8658142089844, 0.00036079788696952164]}} +{"t": 33.161065, "tracked": true, "track_id": 1, "bbox": [68.02124786376953, 68.28878021240234, 555.5027465820312, 479.7774658203125], "det_conf": 0.9210624098777771, "mean_kpt_conf": 0.9048343138261274, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9130948456519427, "right_lift": -0.34124493100631764, "left_bend": 0.42702382866390787, "right_bend": 0.6273163335660594}, "keypoints": {"0": [331.79644775390625, 167.0485076904297, 0.998979389667511], "1": [353.3388671875, 141.6846923828125, 0.9986199140548706], "2": [313.68597412109375, 145.7204132080078, 0.9934924244880676], "3": [391.81256103515625, 148.41220092773438, 0.979650616645813], "4": [295.3318176269531, 153.73880004882812, 0.5901220440864563], "5": [462.2990417480469, 264.0002136230469, 0.985802412033081], "6": [245.9865264892578, 246.45370483398438, 0.9960575103759766], "7": [522.975830078125, 399.877685546875, 0.776462972164154], "8": [109.89665222167969, 295.8592834472656, 0.9383119344711304], "9": [462.30645751953125, 445.9267578125, 0.7578518986701965], "10": [115.74159240722656, 182.98175048828125, 0.9378263354301453], "11": [421.88836669921875, 480.0, 0.12042371183633804], "12": [283.7920837402344, 480.0, 0.19617098569869995], "13": [459.36114501953125, 419.29144287109375, 0.0013212872436270118], "14": [300.53253173828125, 414.9075927734375, 0.0025870685931295156], "15": [423.9158935546875, 459.9554443359375, 0.00018645798263605684], "16": [283.0859680175781, 456.5500183105469, 0.00033614999847486615]}} +{"t": 33.228373, "tracked": true, "track_id": 1, "bbox": [69.58126068115234, 67.88573455810547, 555.3890991210938, 479.8047180175781], "det_conf": 0.915014922618866, "mean_kpt_conf": 0.9033131545240228, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9103476734058724, "right_lift": -0.34771773861402167, "left_bend": 0.4225009518998178, "right_bend": 0.6377125469141057}, "keypoints": {"0": [327.1273498535156, 168.04940795898438, 0.9989666938781738], "1": [348.98712158203125, 142.39114379882812, 0.9986740350723267], "2": [309.7205810546875, 147.07699584960938, 0.9927430152893066], "3": [389.9536437988281, 148.64431762695312, 0.9822706580162048], "4": [293.9922180175781, 154.76077270507812, 0.5570787191390991], "5": [463.6995544433594, 263.33148193359375, 0.9874742031097412], "6": [243.88763427734375, 247.6525421142578, 0.9960022568702698], "7": [525.9672241210938, 400.3038330078125, 0.793353796005249], "8": [105.89462280273438, 298.8285827636719, 0.9342917799949646], "9": [463.90216064453125, 449.4896240234375, 0.7626031041145325], "10": [114.94267272949219, 182.31471252441406, 0.9329864382743835], "11": [421.54144287109375, 480.0, 0.12279431521892548], "12": [281.0965270996094, 480.0, 0.18904677033424377], "13": [463.70953369140625, 418.79974365234375, 0.0012517262948676944], "14": [301.5799865722656, 416.25311279296875, 0.0023549944162368774], "15": [427.685546875, 461.0465393066406, 0.00017500744434073567], "16": [282.62835693359375, 458.862060546875, 0.00030800490640103817]}} +{"t": 33.296218, "tracked": true, "track_id": 1, "bbox": [70.80313110351562, 67.96749877929688, 557.18896484375, 479.91986083984375], "det_conf": 0.915285587310791, "mean_kpt_conf": 0.9006894285028632, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9143960899441895, "right_lift": -0.3367699848504059, "left_bend": 0.46129498648647893, "right_bend": 0.6329604023117827}, "keypoints": {"0": [324.07958984375, 168.69525146484375, 0.9989929795265198], "1": [346.4542541503906, 143.14608764648438, 0.9987344145774841], "2": [307.5042419433594, 147.56890869140625, 0.9922630786895752], "3": [389.534912109375, 149.82614135742188, 0.9838737845420837], "4": [293.409912109375, 154.755126953125, 0.5150221586227417], "5": [464.0174560546875, 266.6639099121094, 0.9877002239227295], "6": [245.51077270507812, 248.5774688720703, 0.9960259199142456], "7": [524.4666748046875, 403.2046813964844, 0.7927916049957275], "8": [106.65640258789062, 298.24041748046875, 0.9346416592597961], "9": [459.0776062011719, 442.2568054199219, 0.7730829119682312], "10": [115.25196838378906, 182.64590454101562, 0.9344549775123596], "11": [423.01763916015625, 480.0, 0.12928184866905212], "12": [282.7381591796875, 480.0, 0.1993064433336258], "13": [461.0562438964844, 425.0611877441406, 0.001255708746612072], "14": [298.28814697265625, 419.8043212890625, 0.002351204166188836], "15": [430.0008544921875, 460.6756591796875, 0.00016534158203285187], "16": [279.76239013671875, 456.77313232421875, 0.0002919130783993751]}} +{"t": 33.361877, "tracked": true, "track_id": 1, "bbox": [71.31244659423828, 67.51531982421875, 556.3809204101562, 479.9227294921875], "det_conf": 0.9147210717201233, "mean_kpt_conf": 0.8990630588748239, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9121792529430401, "right_lift": -0.3341157386015669, "left_bend": 0.47699210553718224, "right_bend": 0.6334400139136255}, "keypoints": {"0": [321.720703125, 169.63818359375, 0.9990020394325256], "1": [344.01348876953125, 143.7382354736328, 0.9987817406654358], "2": [305.29205322265625, 148.5914306640625, 0.9918254613876343], "3": [388.3972473144531, 149.64402770996094, 0.9849972724914551], "4": [292.2818298339844, 155.44476318359375, 0.4853192865848541], "5": [465.61529541015625, 265.3223876953125, 0.9876276254653931], "6": [246.3621826171875, 249.18014526367188, 0.9959994554519653], "7": [526.79541015625, 401.5068664550781, 0.7932095527648926], "8": [106.43966674804688, 298.7809143066406, 0.9356305599212646], "9": [453.63482666015625, 440.95440673828125, 0.7802454829216003], "10": [115.67280578613281, 181.47393798828125, 0.9370551705360413], "11": [426.442626953125, 480.0, 0.12428233027458191], "12": [285.3883361816406, 480.0, 0.19357745349407196], "13": [461.64251708984375, 422.846435546875, 0.0012162094935774803], "14": [297.3370361328125, 417.8602294921875, 0.002295064739882946], "15": [429.63470458984375, 460.43988037109375, 0.00015841552522033453], "16": [275.77557373046875, 455.7400207519531, 0.00028298917459324]}} +{"t": 33.422199, "tracked": true, "track_id": 1, "bbox": [70.70442962646484, 67.56018829345703, 558.8705444335938, 479.8908996582031], "det_conf": 0.9116615056991577, "mean_kpt_conf": 0.8988681679422205, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9063328575943577, "right_lift": -0.33393317288998287, "left_bend": 0.48967193008986537, "right_bend": 0.6335801484079306}, "keypoints": {"0": [320.58270263671875, 169.47459411621094, 0.9989995360374451], "1": [342.8100280761719, 143.61053466796875, 0.9987767338752747], "2": [304.37957763671875, 148.7901611328125, 0.991661548614502], "3": [387.74481201171875, 149.79246520996094, 0.9853500127792358], "4": [292.154296875, 156.1470489501953, 0.4768207371234894], "5": [466.085205078125, 265.27392578125, 0.9877294898033142], "6": [246.9653778076172, 249.4256591796875, 0.9959421753883362], "7": [529.245849609375, 400.74334716796875, 0.7944567203521729], "8": [106.90351867675781, 299.0452880859375, 0.9348981380462646], "9": [455.7982482910156, 437.9339904785156, 0.7856648564338684], "10": [116.03388977050781, 183.97654724121094, 0.9372498989105225], "11": [427.08282470703125, 480.0, 0.12190409749746323], "12": [286.2522277832031, 480.0, 0.18916404247283936], "13": [462.48321533203125, 420.6177978515625, 0.0012173163704574108], "14": [298.9267272949219, 415.2900390625, 0.002294424921274185], "15": [432.93048095703125, 458.9330139160156, 0.00015691590670030564], "16": [278.93109130859375, 454.5836181640625, 0.00028068129904568195]}} +{"t": 33.457245, "tracked": true, "track_id": 1, "bbox": [69.72321319580078, 67.5531234741211, 559.17529296875, 479.92291259765625], "det_conf": 0.9146333336830139, "mean_kpt_conf": 0.8987702646038749, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9093003335017263, "right_lift": -0.3623040918747745, "left_bend": 0.4939070553571286, "right_bend": 0.6398348434322668}, "keypoints": {"0": [320.52935791015625, 169.83160400390625, 0.9990443587303162], "1": [342.84368896484375, 143.4738006591797, 0.9988162517547607], "2": [303.80291748046875, 148.54469299316406, 0.9921019673347473], "3": [387.7923583984375, 148.9171142578125, 0.9849249720573425], "4": [290.9520263671875, 155.28265380859375, 0.48284193873405457], "5": [466.06243896484375, 265.09869384765625, 0.987220287322998], "6": [246.74090576171875, 249.85984802246094, 0.995989978313446], "7": [529.1929321289062, 403.04388427734375, 0.7851085662841797], "8": [108.31803894042969, 303.6666564941406, 0.9356256127357483], "9": [456.82122802734375, 437.8551940917969, 0.7848237156867981], "10": [116.35116577148438, 186.690185546875, 0.9399752616882324], "11": [427.486572265625, 480.0, 0.11092875152826309], "12": [286.48980712890625, 480.0, 0.1774156093597412], "13": [463.0118713378906, 418.6606140136719, 0.0011773434234783053], "14": [298.41033935546875, 413.601806640625, 0.002283761277794838], "15": [431.384765625, 458.5385437011719, 0.0001545972772873938], "16": [276.6165466308594, 454.372314453125, 0.0002820171066559851]}} +{"t": 33.520502, "tracked": true, "track_id": 1, "bbox": [69.24795532226562, 67.82482147216797, 559.21044921875, 479.9122009277344], "det_conf": 0.9157088994979858, "mean_kpt_conf": 0.8965682739561255, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.909568556606534, "right_lift": -0.3607566990632106, "left_bend": 0.4985672540630349, "right_bend": 0.6323750404682249}, "keypoints": {"0": [319.9737243652344, 169.83050537109375, 0.9990109205245972], "1": [342.1572265625, 143.59292602539062, 0.9988101720809937], "2": [303.5284729003906, 148.63754272460938, 0.9915899634361267], "3": [387.1921081542969, 148.899658203125, 0.9854715466499329], "4": [291.1745910644531, 155.23333740234375, 0.4638027250766754], "5": [465.34027099609375, 265.0527648925781, 0.9875820875167847], "6": [247.17787170410156, 249.81881713867188, 0.9957471489906311], "7": [527.99365234375, 402.1891174316406, 0.7912250757217407], "8": [107.8028564453125, 303.7296447753906, 0.9309451580047607], "9": [453.91021728515625, 436.439453125, 0.7835398316383362], "10": [113.15696716308594, 189.383056640625, 0.9345263838768005], "11": [425.4118957519531, 480.0, 0.11578793823719025], "12": [284.6378173828125, 480.0, 0.1778990775346756], "13": [460.154296875, 420.7601013183594, 0.001184323919005692], "14": [293.03900146484375, 414.9790344238281, 0.002186569618061185], "15": [429.5329895019531, 458.38421630859375, 0.00015751841419842094], "16": [268.8577880859375, 453.54669189453125, 0.00027713406598195434]}} +{"t": 33.593761, "tracked": true, "track_id": 1, "bbox": [68.70603942871094, 68.09013366699219, 558.35546875, 479.9499816894531], "det_conf": 0.9183253049850464, "mean_kpt_conf": 0.8964275907386433, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.906086738508671, "right_lift": -0.3758945491800342, "left_bend": 0.48897507720249317, "right_bend": 0.6260003941167132}, "keypoints": {"0": [320.5332336425781, 169.84674072265625, 0.9990046620368958], "1": [342.34051513671875, 143.69375610351562, 0.998807430267334], "2": [304.03411865234375, 148.87649536132812, 0.9915378093719482], "3": [387.0364074707031, 148.38656616210938, 0.98576420545578], "4": [291.7061462402344, 155.35723876953125, 0.45904091000556946], "5": [466.4641418457031, 262.7156982421875, 0.9877045154571533], "6": [249.24961853027344, 249.31051635742188, 0.9958938360214233], "7": [530.29541015625, 399.4156799316406, 0.7948991656303406], "8": [113.46771240234375, 304.3895568847656, 0.9347541332244873], "9": [455.6578369140625, 437.4691162109375, 0.7789977788925171], "10": [114.63600158691406, 192.91546630859375, 0.9342990517616272], "11": [427.65325927734375, 480.0, 0.1256234347820282], "12": [286.86602783203125, 480.0, 0.19447387754917145], "13": [460.7628173828125, 421.8067321777344, 0.0012143267085775733], "14": [289.7784423828125, 416.2330017089844, 0.0022703215945512056], "15": [429.4731750488281, 458.61651611328125, 0.0001579975214553997], "16": [262.9212646484375, 453.2567138671875, 0.0002803959068842232]}} +{"t": 33.656187, "tracked": true, "track_id": 1, "bbox": [67.04850769042969, 68.42008972167969, 558.144287109375, 479.9521179199219], "det_conf": 0.9156644344329834, "mean_kpt_conf": 0.9014080437746915, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9134171569062793, "right_lift": -0.4046056094346362, "left_bend": 0.4845967788230057, "right_bend": 0.6270225002785415}, "keypoints": {"0": [323.6472473144531, 168.12924194335938, 0.9990257024765015], "1": [344.9622802734375, 142.23260498046875, 0.9987609386444092], "2": [306.2876892089844, 147.7901611328125, 0.992479681968689], "3": [387.2896728515625, 148.29881286621094, 0.9841815829277039], "4": [292.0465087890625, 156.62786865234375, 0.506237804889679], "5": [464.153564453125, 263.42242431640625, 0.9877338409423828], "6": [249.19398498535156, 249.64572143554688, 0.9961199760437012], "7": [526.6456298828125, 403.6628723144531, 0.7976016402244568], "8": [115.83393859863281, 308.6492614746094, 0.9391573667526245], "9": [457.7322998046875, 438.4593811035156, 0.7774354815483093], "10": [113.92166137695312, 199.35350036621094, 0.9367544651031494], "11": [424.2200927734375, 480.0, 0.12613628804683685], "12": [284.85455322265625, 480.0, 0.19891619682312012], "13": [458.7449951171875, 419.31597900390625, 0.0012538167648017406], "14": [285.9211120605469, 413.73345947265625, 0.002378422301262617], "15": [429.41400146484375, 456.2125244140625, 0.0001651821075938642], "16": [259.5628967285156, 453.46905517578125, 0.0002937333192676306]}} +{"t": 33.722838, "tracked": true, "track_id": 1, "bbox": [63.10557556152344, 69.18460083007812, 559.0610961914062, 479.958984375], "det_conf": 0.9174209237098694, "mean_kpt_conf": 0.9038973721590909, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.911449844524717, "right_lift": -0.42534803308164215, "left_bend": 0.4778719934163843, "right_bend": 0.6102068433649251}, "keypoints": {"0": [328.3653869628906, 167.1786651611328, 0.9991083741188049], "1": [350.1975402832031, 141.34652709960938, 0.9988079071044922], "2": [309.8381652832031, 146.33380126953125, 0.9938994646072388], "3": [390.8719787597656, 148.0340576171875, 0.9823246002197266], "4": [292.3581237792969, 155.7928466796875, 0.5538452863693237], "5": [464.364501953125, 262.22161865234375, 0.9867931008338928], "6": [249.14532470703125, 249.7775115966797, 0.9963871240615845], "7": [526.7650146484375, 400.46514892578125, 0.7867728471755981], "8": [119.73881530761719, 310.5962829589844, 0.9442043304443359], "9": [461.56610107421875, 435.5367431640625, 0.7620030641555786], "10": [109.9105224609375, 205.35873413085938, 0.9387249946594238], "11": [425.73736572265625, 480.0, 0.1357356309890747], "12": [285.77276611328125, 480.0, 0.2225647270679474], "13": [462.2784423828125, 423.66546630859375, 0.0012529889354482293], "14": [285.7220764160156, 418.1484680175781, 0.002486502518877387], "15": [432.240478515625, 459.334228515625, 0.00016482212231494486], "16": [259.40386962890625, 455.671875, 0.00030060060089454055]}} +{"t": 33.785814, "tracked": true, "track_id": 1, "bbox": [60.55939865112305, 68.07477569580078, 559.620849609375, 480.0], "det_conf": 0.9155461192131042, "mean_kpt_conf": 0.9097513231364164, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9138398351279071, "right_lift": -0.4590488831609039, "left_bend": 0.4935185969751059, "right_bend": 0.6259697484532727}, "keypoints": {"0": [332.5486145019531, 166.20120239257812, 0.9991488456726074], "1": [353.73773193359375, 140.4418182373047, 0.9987882971763611], "2": [313.3440856933594, 144.98873901367188, 0.9944974780082703], "3": [392.0028076171875, 147.19418334960938, 0.9805597066879272], "4": [293.7268981933594, 154.67745971679688, 0.5951168537139893], "5": [464.883056640625, 262.811279296875, 0.9873582124710083], "6": [248.82391357421875, 250.39373779296875, 0.9968031644821167], "7": [527.314697265625, 403.308837890625, 0.7918669581413269], "8": [120.26959228515625, 316.8187561035156, 0.949732780456543], "9": [464.74212646484375, 432.6534729003906, 0.7690335512161255], "10": [111.7156982421875, 211.67913818359375, 0.9443587064743042], "11": [427.82574462890625, 480.0, 0.14166966080665588], "12": [287.0666198730469, 480.0, 0.2367163747549057], "13": [465.77569580078125, 427.4922790527344, 0.0012296230997890234], "14": [285.8531799316406, 421.7993469238281, 0.002491710474714637], "15": [434.9827575683594, 461.8126525878906, 0.00015172876010183245], "16": [258.02325439453125, 458.3497314453125, 0.00027952148229815066]}} +{"t": 33.853731, "tracked": true, "track_id": 1, "bbox": [56.60468673706055, 67.3014144897461, 559.0116577148438, 480.0], "det_conf": 0.9160354137420654, "mean_kpt_conf": 0.9120311086828058, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9149515337616562, "right_lift": -0.4658721708114531, "left_bend": 0.49191634102085313, "right_bend": 0.6220475350197466}, "keypoints": {"0": [335.06414794921875, 165.2544708251953, 0.9991378784179688], "1": [356.0462646484375, 139.94476318359375, 0.9987521171569824], "2": [315.8207092285156, 144.2677001953125, 0.9946098327636719], "3": [393.28021240234375, 147.14657592773438, 0.9799782633781433], "4": [295.4746398925781, 154.43960571289062, 0.6063482761383057], "5": [465.10235595703125, 261.8314208984375, 0.987622082233429], "6": [250.20635986328125, 249.3560333251953, 0.9968582391738892], "7": [526.61181640625, 401.284423828125, 0.8003758192062378], "8": [123.15516662597656, 316.2481384277344, 0.951653778553009], "9": [462.9267272949219, 431.3287048339844, 0.7728560566902161], "10": [113.03469848632812, 216.58155822753906, 0.9441498517990112], "11": [426.980712890625, 480.0, 0.15846791863441467], "12": [286.4659423828125, 480.0, 0.2603529989719391], "13": [461.7239074707031, 431.09765625, 0.0012976211728528142], "14": [279.6240539550781, 424.39697265625, 0.0025745925959199667], "15": [431.15850830078125, 463.7023620605469, 0.00015533226542174816], "16": [250.21163940429688, 459.2110900878906, 0.00028044136706739664]}} +{"t": 33.918357, "tracked": true, "track_id": 1, "bbox": [54.963809967041016, 66.95610809326172, 558.3071899414062, 480.0], "det_conf": 0.917650043964386, "mean_kpt_conf": 0.9123385115103289, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9112882220803769, "right_lift": -0.4978939966726432, "left_bend": 0.4681299410600564, "right_bend": 0.6357746665771767}, "keypoints": {"0": [336.63079833984375, 164.86544799804688, 0.9991539716720581], "1": [358.01629638671875, 140.52206420898438, 0.9987280964851379], "2": [317.379638671875, 143.44140625, 0.9951817393302917], "3": [393.47265625, 149.21014404296875, 0.9774567484855652], "4": [295.36163330078125, 153.7286834716797, 0.6469723582267761], "5": [462.49371337890625, 260.9999084472656, 0.9871216416358948], "6": [247.63235473632812, 248.77755737304688, 0.996815025806427], "7": [525.4722900390625, 400.37811279296875, 0.7924339771270752], "8": [119.01582336425781, 322.6181945800781, 0.9499841332435608], "9": [465.26171875, 435.2144775390625, 0.75184166431427], "10": [110.01841735839844, 227.81222534179688, 0.9400342702865601], "11": [425.92236328125, 480.0, 0.14694271981716156], "12": [285.27813720703125, 480.0, 0.24430030584335327], "13": [461.4523010253906, 428.3271484375, 0.0012401537969708443], "14": [276.76739501953125, 420.9297790527344, 0.0024473753292113543], "15": [430.02972412109375, 467.2208251953125, 0.00015892159717623144], "16": [244.1713104248047, 458.5450439453125, 0.0002831535239238292]}} +{"t": 33.952472, "tracked": true, "track_id": 1, "bbox": [54.316009521484375, 66.68528747558594, 559.8136596679688, 480.0], "det_conf": 0.9186299443244934, "mean_kpt_conf": 0.9130987362428145, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.911937484319558, "right_lift": -0.4969666572891842, "left_bend": 0.47251626403894526, "right_bend": 0.6129865945151924}, "keypoints": {"0": [337.7275390625, 164.95523071289062, 0.9991831183433533], "1": [359.4893493652344, 140.88699340820312, 0.9987523555755615], "2": [318.6143798828125, 143.17135620117188, 0.9953437447547913], "3": [395.0205078125, 150.14169311523438, 0.977741539478302], "4": [296.208740234375, 153.33203125, 0.6438812613487244], "5": [463.10308837890625, 262.692138671875, 0.9870924949645996], "6": [249.05551147460938, 248.7227783203125, 0.9969370365142822], "7": [524.964111328125, 400.1753845214844, 0.7954707145690918], "8": [122.03268432617188, 321.468017578125, 0.9534314274787903], "9": [464.35736083984375, 434.0093078613281, 0.7545726299285889], "10": [107.66752624511719, 235.2734375, 0.9416797757148743], "11": [425.69287109375, 480.0, 0.15447337925434113], "12": [284.7078857421875, 480.0, 0.2597656846046448], "13": [459.7213134765625, 431.69677734375, 0.0012092406395822763], "14": [270.8096008300781, 421.9520263671875, 0.0024092234671115875], "15": [430.6700744628906, 468.0235900878906, 0.00015348744636867195], "16": [238.2184295654297, 457.3830261230469, 0.00027488754130899906]}} +{"t": 34.020358, "tracked": true, "track_id": 1, "bbox": [52.2135124206543, 67.17202758789062, 559.206787109375, 480.0], "det_conf": 0.9206268191337585, "mean_kpt_conf": 0.9179397062821821, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9148758172213, "right_lift": -0.5095774334956694, "left_bend": 0.45859624564100954, "right_bend": 0.6041339383901759}, "keypoints": {"0": [338.9605712890625, 164.7849884033203, 0.9992208480834961], "1": [360.526123046875, 140.4643096923828, 0.9987490177154541], "2": [319.64202880859375, 142.81602478027344, 0.9956005811691284], "3": [395.89910888671875, 148.6133575439453, 0.9767087697982788], "4": [296.7182312011719, 152.09059143066406, 0.6564615964889526], "5": [464.1807556152344, 261.50177001953125, 0.9879710078239441], "6": [249.48703002929688, 247.61268615722656, 0.9972156286239624], "7": [524.116943359375, 397.3188781738281, 0.8119719624519348], "8": [126.98046875, 320.1658935546875, 0.9594109654426575], "9": [465.36346435546875, 432.9918212890625, 0.7678167819976807], "10": [110.93070983886719, 243.9488067626953, 0.9462096095085144], "11": [426.54388427734375, 480.0, 0.1860065460205078], "12": [284.34075927734375, 480.0, 0.3076988458633423], "13": [462.6340026855469, 440.1369934082031, 0.001211511786095798], "14": [269.3977966308594, 430.4774169921875, 0.0024438132531940937], "15": [433.2290344238281, 472.243408203125, 0.0001404633658239618], "16": [237.4767608642578, 463.26776123046875, 0.00025246699806302786]}} +{"t": 34.081174, "tracked": true, "track_id": 1, "bbox": [49.1118278503418, 67.50231170654297, 556.6527099609375, 480.0], "det_conf": 0.9190186858177185, "mean_kpt_conf": 0.917945688421076, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9147305111612888, "right_lift": -0.5109597044732946, "left_bend": 0.4469789873945651, "right_bend": 0.5952557934713085}, "keypoints": {"0": [340.4303283691406, 164.67872619628906, 0.9992121458053589], "1": [361.4483642578125, 140.89761352539062, 0.9987205862998962], "2": [321.099853515625, 143.49562072753906, 0.9957133531570435], "3": [396.0786437988281, 149.67613220214844, 0.976059079170227], "4": [298.1063537597656, 153.9593505859375, 0.6713465452194214], "5": [465.18609619140625, 260.66510009765625, 0.988069474697113], "6": [250.8682861328125, 248.47964477539062, 0.9972755312919617], "7": [524.2279052734375, 394.3253173828125, 0.8111522197723389], "8": [128.5906982421875, 321.1629638671875, 0.9602208137512207], "9": [465.26983642578125, 433.166015625, 0.7557371854782104], "10": [111.40910339355469, 250.04356384277344, 0.9438956379890442], "11": [428.75189208984375, 480.0, 0.19900017976760864], "12": [286.5160827636719, 480.0, 0.3277100622653961], "13": [463.74102783203125, 441.277099609375, 0.001237274263985455], "14": [268.36029052734375, 432.3460998535156, 0.002508775796741247], "15": [431.963134765625, 473.38665771484375, 0.0001428742107236758], "16": [232.9224853515625, 465.1036376953125, 0.0002568232303019613]}} +{"t": 34.14906, "tracked": true, "track_id": 1, "bbox": [46.92253494262695, 68.02653503417969, 556.9822387695312, 479.99267578125], "det_conf": 0.9127022624015808, "mean_kpt_conf": 0.8734124600887299, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9154650783536655, "right_lift": -0.5305426598751813, "left_bend": 0.41446068081421444, "right_bend": 0.5959932436603702}, "keypoints": {"0": [341.9311828613281, 163.81980895996094, 0.9992051720619202], "1": [362.6417236328125, 140.7635040283203, 0.9986268281936646], "2": [322.606689453125, 142.85040283203125, 0.9959003329277039], "3": [396.06878662109375, 150.30496215820312, 0.972791314125061], "4": [298.88104248046875, 153.62564086914062, 0.6944940090179443], "5": [463.2374572753906, 261.12091064453125, 0.9885973334312439], "6": [251.26852416992188, 246.48867797851562, 0.9972572922706604], "7": [521.638671875, 393.9852600097656, 0.8231838941574097], "8": [134.5009307861328, 319.5726013183594, 0.9620059132575989], "9": [471.9761962890625, 434.38116455078125, 0.7527177333831787], "10": [118.40382385253906, 258.4892883300781, 0.9411627650260925], "11": [424.8235778808594, 480.0, 0.22233781218528748], "12": [283.0631103515625, 480.0, 0.3550069332122803], "13": [463.23114013671875, 443.7186584472656, 0.001275781192816794], "14": [262.3746643066406, 433.74969482421875, 0.002550553297623992], "15": [434.33538818359375, 472.84405517578125, 0.00014532628119923174], "16": [226.51649475097656, 465.4713134765625, 0.00025561838992871344]}} +{"t": 34.213012, "tracked": true, "track_id": 1, "bbox": [47.66267395019531, 67.9981460571289, 558.01025390625, 479.9747314453125], "det_conf": 0.9135432243347168, "mean_kpt_conf": 0.9192382151430304, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9205609161326205, "right_lift": -0.5606519997828658, "left_bend": 0.4065769987729427, "right_bend": 0.667339608318043}, "keypoints": {"0": [343.4302673339844, 163.29248046875, 0.9991949200630188], "1": [363.53326416015625, 140.52816772460938, 0.9985384941101074], "2": [323.6602478027344, 142.52369689941406, 0.996236264705658], "3": [395.57061767578125, 150.51138305664062, 0.9676363468170166], "4": [298.3265686035156, 153.9407501220703, 0.7379568815231323], "5": [462.156494140625, 262.22503662109375, 0.9885254502296448], "6": [247.2159423828125, 248.6039581298828, 0.9972611665725708], "7": [519.3714599609375, 397.06884765625, 0.8084014654159546], "8": [128.69297790527344, 328.8527526855469, 0.9583889842033386], "9": [472.32489013671875, 436.277587890625, 0.725071907043457], "10": [124.41612243652344, 267.37896728515625, 0.9344084858894348], "11": [423.5415954589844, 480.0, 0.2121591418981552], "12": [279.569091796875, 480.0, 0.341004878282547], "13": [462.9468688964844, 446.0474853515625, 0.0012161886552348733], "14": [257.485595703125, 437.61358642578125, 0.0024139394517987967], "15": [432.9256591796875, 472.3086853027344, 0.00014232052490115166], "16": [218.6018524169922, 466.5571594238281, 0.0002455681678839028]}} +{"t": 34.282197, "tracked": true, "track_id": 1, "bbox": [44.80409240722656, 68.03671264648438, 553.9589233398438, 479.9355773925781], "det_conf": 0.9124677777290344, "mean_kpt_conf": 0.850233385960261, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9344205174014385, "right_lift": -0.5882835713389162, "left_bend": 0.32994128093407554, "right_bend": 0.6094806812319548}, "keypoints": {"0": [344.8771667480469, 161.94012451171875, 0.9987530708312988], "1": [363.8370361328125, 138.96075439453125, 0.9977239966392517], "2": [325.0381164550781, 142.57363891601562, 0.9955129027366638], "3": [394.5024108886719, 147.7589111328125, 0.960942268371582], "4": [300.1806335449219, 154.776123046875, 0.7621924877166748], "5": [461.3171081542969, 262.5587158203125, 0.9838000535964966], "6": [248.75961303710938, 248.08377075195312, 0.9964350461959839], "7": [514.8772583007812, 403.0743713378906, 0.7134819030761719], "8": [146.93096923828125, 322.1625061035156, 0.9410470128059387], "9": [471.9588623046875, 456.9835205078125, 0.599622905254364], "10": [132.8699188232422, 274.1669616699219, 0.896804690361023], "11": [417.25, 480.0, 0.2124743014574051], "12": [278.20440673828125, 480.0, 0.3564842939376831], "13": [457.1845397949219, 453.658447265625, 0.0020843707025051117], "14": [276.7489318847656, 447.7825927734375, 0.004534962121397257], "15": [419.312255859375, 475.28009033203125, 0.0002806919801514596], "16": [259.46490478515625, 477.31292724609375, 0.0005131972138769925]}} +{"t": 34.349641, "tracked": true, "track_id": 1, "bbox": [47.682212829589844, 67.30892944335938, 549.8076171875, 480.0], "det_conf": 0.9195149540901184, "mean_kpt_conf": 0.899633293802088, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9325521526452332, "right_lift": -0.5955450025672335, "left_bend": 0.2558370642789289, "right_bend": 0.6766437925728573}, "keypoints": {"0": [345.4189147949219, 161.92230224609375, 0.9987867474555969], "1": [364.7149963378906, 139.1996307373047, 0.9978138208389282], "2": [326.1882629394531, 142.05975341796875, 0.9955778121948242], "3": [395.239990234375, 148.08372497558594, 0.9599859714508057], "4": [301.5775146484375, 153.2490234375, 0.7768901586532593], "5": [460.02618408203125, 260.44207763671875, 0.9846292734146118], "6": [245.47869873046875, 248.63333129882812, 0.996587872505188], "7": [513.2156372070312, 397.83013916015625, 0.7367150783538818], "8": [138.12042236328125, 328.22369384765625, 0.9436377882957458], "9": [483.23382568359375, 462.45916748046875, 0.6063125729560852], "10": [133.97390747070312, 278.381103515625, 0.8990291357040405], "11": [415.75244140625, 480.0, 0.20800663530826569], "12": [274.65814208984375, 480.0, 0.3438763916492462], "13": [459.0908203125, 448.2001953125, 0.001956298016011715], "14": [271.04864501953125, 446.3497619628906, 0.004133217968046665], "15": [420.9102783203125, 476.3887939453125, 0.0002693039714358747], "16": [248.72317504882812, 479.091064453125, 0.0004778276779688895]}} +{"t": 34.409619, "tracked": true, "track_id": 1, "bbox": [42.85523223876953, 66.99962615966797, 552.6964721679688, 480.0], "det_conf": 0.9136441349983215, "mean_kpt_conf": 0.893486353484067, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9365692301034825, "right_lift": -0.5905583433292239, "left_bend": 0.3023334127438038, "right_bend": 0.670653120981856}, "keypoints": {"0": [347.3292236328125, 160.97906494140625, 0.9987766146659851], "1": [366.415283203125, 138.94723510742188, 0.9977678060531616], "2": [327.79022216796875, 141.66586303710938, 0.9958333969116211], "3": [396.0016174316406, 149.82135009765625, 0.9589486718177795], "4": [302.30743408203125, 155.0036163330078, 0.7892063856124878], "5": [460.5756530761719, 263.41790771484375, 0.9834026098251343], "6": [245.47744750976562, 249.37257385253906, 0.9964210987091064], "7": [512.9774169921875, 403.44732666015625, 0.7046400308609009], "8": [135.29368591308594, 330.0049743652344, 0.9374053478240967], "9": [475.6123352050781, 459.0457763671875, 0.5771002173423767], "10": [130.7470245361328, 282.60467529296875, 0.8888477087020874], "11": [414.9339599609375, 480.0, 0.18556110560894012], "12": [273.9832763671875, 480.0, 0.31663015484809875], "13": [455.533935546875, 447.69903564453125, 0.0019125610124319792], "14": [269.7256774902344, 442.88916015625, 0.004068456124514341], "15": [418.6053161621094, 475.9736022949219, 0.0002797811757773161], "16": [248.73487854003906, 477.1752624511719, 0.0004986732383258641]}} +{"t": 34.445986, "tracked": true, "track_id": 1, "bbox": [31.7202205657959, 66.57952880859375, 552.1995239257812, 480.0], "det_conf": 0.8979104161262512, "mean_kpt_conf": 0.8521946196754774, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9357927300614873, "right_lift": -0.5820991657310252, "left_bend": 0.24612951085076235, "right_bend": 0.6195184803691162}, "keypoints": {"0": [348.455322265625, 161.16366577148438, 0.9988054037094116], "1": [367.0475769042969, 138.9569091796875, 0.9977214932441711], "2": [329.3017272949219, 141.5431671142578, 0.9959009289741516], "3": [395.8389587402344, 148.33074951171875, 0.9563009738922119], "4": [304.0523681640625, 153.23214721679688, 0.7940987944602966], "5": [458.4488220214844, 263.3954162597656, 0.9841442108154297], "6": [247.4324951171875, 248.14907836914062, 0.9965870380401611], "7": [510.40008544921875, 401.292236328125, 0.7240938544273376], "8": [139.69808959960938, 325.2745666503906, 0.9420847296714783], "9": [483.6262512207031, 462.40087890625, 0.5922541618347168], "10": [128.51449584960938, 280.701416015625, 0.8939186930656433], "11": [409.9918518066406, 480.0, 0.2106674611568451], "12": [271.2938537597656, 480.0, 0.3504251539707184], "13": [450.13232421875, 451.846923828125, 0.002069107023999095], "14": [264.5113220214844, 447.4686279296875, 0.004335478879511356], "15": [414.86468505859375, 474.8120422363281, 0.0002895608777180314], "16": [244.22874450683594, 477.57928466796875, 0.0005060299299657345]}} +{"t": 34.509516, "tracked": true, "track_id": 1, "bbox": [18.946256637573242, 66.6473388671875, 552.063720703125, 480.0], "det_conf": 0.9000956416130066, "mean_kpt_conf": 0.8996300751512701, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9333112113130457, "right_lift": -0.568402540722493, "left_bend": 0.24904263982043554, "right_bend": 0.49986075016221604}, "keypoints": {"0": [349.69085693359375, 161.08322143554688, 0.9988659620285034], "1": [368.7546081542969, 139.07485961914062, 0.9977598190307617], "2": [330.6587219238281, 140.6302490234375, 0.9961647987365723], "3": [397.13104248046875, 148.8988037109375, 0.9562374353408813], "4": [304.4119567871094, 151.81646728515625, 0.8013113737106323], "5": [459.54486083984375, 265.9862060546875, 0.9854072332382202], "6": [245.4276885986328, 248.68763732910156, 0.9965819716453552], "7": [511.4619445800781, 400.9320373535156, 0.7370650172233582], "8": [138.0290985107422, 322.8846435546875, 0.9393807649612427], "9": [482.83160400390625, 465.89276123046875, 0.5991117358207703], "10": [113.75639343261719, 287.78326416015625, 0.8880447149276733], "11": [404.8299560546875, 480.0, 0.21332846581935883], "12": [263.69140625, 480.0, 0.34252995252609253], "13": [447.18927001953125, 451.19464111328125, 0.002045067958533764], "14": [255.65328979492188, 444.550048828125, 0.00405745068565011], "15": [408.46502685546875, 473.66473388671875, 0.0002915190125349909], "16": [234.74917602539062, 473.6437683105469, 0.0004867787647526711]}} +{"t": 34.543771, "tracked": true, "track_id": 1, "bbox": [18.298900604248047, 66.77689361572266, 552.3695678710938, 480.0], "det_conf": 0.9051254987716675, "mean_kpt_conf": 0.8561020145813624, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9361100018315526, "right_lift": -0.5620812439574222, "left_bend": 0.266151995678908, "right_bend": 0.39128644717187705}, "keypoints": {"0": [351.80914306640625, 160.14048767089844, 0.9989424347877502], "1": [370.7953796386719, 138.81451416015625, 0.9977752566337585], "2": [332.6114501953125, 139.8563232421875, 0.9965722560882568], "3": [398.1114807128906, 149.86285400390625, 0.954197108745575], "4": [305.0029296875, 152.15121459960938, 0.8152580261230469], "5": [460.9581604003906, 267.466796875, 0.9857877492904663], "6": [244.21368408203125, 248.39097595214844, 0.9967926144599915], "7": [511.69940185546875, 402.5205078125, 0.7392458915710449], "8": [136.35769653320312, 321.6894226074219, 0.9420586228370667], "9": [480.3773193359375, 463.16546630859375, 0.5934066772460938], "10": [98.72531127929688, 294.11468505859375, 0.8855342864990234], "11": [403.55474853515625, 480.0, 0.22985988855361938], "12": [260.12384033203125, 480.0, 0.3676532506942749], "13": [443.23358154296875, 455.683837890625, 0.002058808458968997], "14": [244.33157348632812, 446.3471984863281, 0.004025604575872421], "15": [405.9215087890625, 477.1478271484375, 0.0002799340581987053], "16": [224.52392578125, 475.45513916015625, 0.00045967099140398204]}} +{"t": 34.579981, "tracked": true, "track_id": 1, "bbox": [18.56186294555664, 66.74469757080078, 552.161376953125, 480.0], "det_conf": 0.9075717926025391, "mean_kpt_conf": 0.9007517966357145, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9358462964598615, "right_lift": -0.5667771872854955, "left_bend": 0.27097663539166544, "right_bend": 0.36417435509935614}, "keypoints": {"0": [352.4508361816406, 160.68109130859375, 0.99897301197052], "1": [371.6783142089844, 139.23025512695312, 0.9978362917900085], "2": [333.4601135253906, 139.76498413085938, 0.9965879917144775], "3": [398.8199462890625, 149.9727783203125, 0.9536178112030029], "4": [305.92724609375, 151.21273803710938, 0.8130089640617371], "5": [458.61163330078125, 267.00933837890625, 0.9852266907691956], "6": [247.2860870361328, 249.52313232421875, 0.996727705001831], "7": [509.36517333984375, 401.7890625, 0.7367551922798157], "8": [133.8744659423828, 327.5439758300781, 0.9399130344390869], "9": [476.88055419921875, 462.5224609375, 0.6025422215461731], "10": [91.07162475585938, 301.7994079589844, 0.8870808482170105], "11": [403.6560363769531, 480.0, 0.2131698727607727], "12": [264.02227783203125, 480.0, 0.3439196050167084], "13": [437.7532958984375, 455.3348388671875, 0.0020509837195277214], "14": [245.01171875, 445.5440979003906, 0.0038872193545103073], "15": [402.79779052734375, 477.66461181640625, 0.00028031732654199004], "16": [222.0518798828125, 473.11676025390625, 0.00045050407061353326]}} +{"t": 34.642012, "tracked": true, "track_id": 1, "bbox": [29.13094139099121, 66.42998504638672, 552.9410400390625, 480.0], "det_conf": 0.9049637913703918, "mean_kpt_conf": 0.881072158163244, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9401850376443259, "right_lift": -0.6178289123263183, "left_bend": 0.26288197873901387, "right_bend": 0.5018653552290087}, "keypoints": {"0": [353.55633544921875, 160.112548828125, 0.9987409710884094], "1": [373.5867004394531, 139.06381225585938, 0.9974478483200073], "2": [335.1859436035156, 138.8570556640625, 0.9963306784629822], "3": [401.4256286621094, 150.51089477539062, 0.9476798176765442], "4": [307.83843994140625, 149.5500946044922, 0.8235644698143005], "5": [460.31304931640625, 267.28216552734375, 0.9814631938934326], "6": [244.893310546875, 249.52627563476562, 0.9958336353302002], "7": [509.3040771484375, 402.490478515625, 0.6605352759361267], "8": [138.48983764648438, 333.130615234375, 0.9160283207893372], "9": [477.6520690917969, 463.5497131347656, 0.5243143439292908], "10": [117.8448486328125, 306.5363464355469, 0.8498551845550537], "11": [402.1101379394531, 480.0, 0.15660308301448822], "12": [260.3343200683594, 478.8128967285156, 0.26415178179740906], "13": [440.33612060546875, 445.25909423828125, 0.0019789536017924547], "14": [251.0338592529297, 437.0099182128906, 0.0038659959100186825], "15": [401.4852294921875, 473.4085998535156, 0.0003313111374154687], "16": [234.26651000976562, 469.04852294921875, 0.0005397020722739398]}} +{"t": 34.675984, "tracked": true, "track_id": 1, "bbox": [35.64977264404297, 66.19947052001953, 553.6638793945312, 479.9742126464844], "det_conf": 0.9110045433044434, "mean_kpt_conf": 0.8894206773151051, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9317299000768691, "right_lift": -0.602915849227297, "left_bend": 0.285239601129337, "right_bend": 0.15530300100994263}, "keypoints": {"0": [354.7854309082031, 160.002197265625, 0.9988975524902344], "1": [374.39056396484375, 139.04983520507812, 0.9975470900535583], "2": [335.8486022949219, 138.72940063476562, 0.9968575239181519], "3": [401.5979309082031, 150.2741241455078, 0.9449089765548706], "4": [307.2927551269531, 149.5677032470703, 0.8299878835678101], "5": [460.78753662109375, 267.24359130859375, 0.9820536375045776], "6": [248.37953186035156, 245.1525115966797, 0.9960286617279053], "7": [512.2233276367188, 399.2110900878906, 0.6865734457969666], "8": [143.551513671875, 324.37298583984375, 0.93113774061203], "9": [476.23895263671875, 461.41436767578125, 0.5555173754692078], "10": [110.2940673828125, 329.71453857421875, 0.8641175627708435], "11": [398.7742919921875, 480.0, 0.16859924793243408], "12": [257.0505676269531, 476.2586669921875, 0.28907644748687744], "13": [432.37457275390625, 446.87957763671875, 0.0018194849835708737], "14": [231.22915649414062, 431.9264221191406, 0.0035930511076003313], "15": [398.8980712890625, 471.6281433105469, 0.00029399697086773813], "16": [208.96914672851562, 465.01959228515625, 0.00047846214147284627]}} +{"t": 34.712796, "tracked": true, "track_id": 1, "bbox": [45.318485260009766, 65.99652099609375, 551.7251586914062, 479.93402099609375], "det_conf": 0.9229416251182556, "mean_kpt_conf": 0.8952174782752991, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9350681060413499, "right_lift": -0.6034557299356168, "left_bend": 0.24662053068664175, "right_bend": 0.03692088365950781}, "keypoints": {"0": [355.21307373046875, 159.87704467773438, 0.9989712238311768], "1": [375.47454833984375, 139.65078735351562, 0.9976683259010315], "2": [336.4583740234375, 138.20811462402344, 0.997036337852478], "3": [402.901611328125, 152.2939453125, 0.9449073672294617], "4": [308.0503845214844, 149.18524169921875, 0.8345867395401001], "5": [456.9849548339844, 268.02294921875, 0.9827500581741333], "6": [250.96737670898438, 243.75125122070312, 0.9961436986923218], "7": [506.4248046875, 398.4426574707031, 0.7130005955696106], "8": [140.5565185546875, 327.3082580566406, 0.93873530626297], "9": [479.260498046875, 460.5281677246094, 0.5745025277137756], "10": [103.18203735351562, 349.2989501953125, 0.8690900802612305], "11": [392.68328857421875, 480.0, 0.17059333622455597], "12": [253.69935607910156, 472.37139892578125, 0.28996914625167847], "13": [428.09197998046875, 444.05322265625, 0.0017502568662166595], "14": [221.19003295898438, 426.742431640625, 0.0033910321071743965], "15": [398.4975891113281, 467.67779541015625, 0.00028406744240783155], "16": [188.23292541503906, 459.39056396484375, 0.00045414664782583714]}} +{"t": 34.773576, "tracked": true, "track_id": 1, "bbox": [53.194366455078125, 66.01707458496094, 552.3750610351562, 479.85321044921875], "det_conf": 0.9201185703277588, "mean_kpt_conf": 0.8954114372080023, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9148809493356056, "right_lift": -0.61689552016578, "left_bend": 0.29479455177404396, "right_bend": 0.1477178958434278}, "keypoints": {"0": [357.06597900390625, 159.67047119140625, 0.9991790652275085], "1": [376.97857666015625, 138.83493041992188, 0.9979845285415649], "2": [337.67822265625, 136.97811889648438, 0.9977085590362549], "3": [403.67205810546875, 150.80160522460938, 0.9389000535011292], "4": [307.62103271484375, 146.99554443359375, 0.8464499711990356], "5": [456.7037048339844, 267.08612060546875, 0.9822031259536743], "6": [254.96556091308594, 238.69117736816406, 0.9959371089935303], "7": [514.81494140625, 398.7723693847656, 0.7140088081359863], "8": [138.69923400878906, 329.8221435546875, 0.9424967169761658], "9": [480.2337951660156, 460.51678466796875, 0.5809201002120972], "10": [103.83981323242188, 403.4979248046875, 0.8537377715110779], "11": [388.60430908203125, 480.0, 0.12985986471176147], "12": [249.89056396484375, 467.7068176269531, 0.2315613478422165], "13": [412.2742004394531, 437.43701171875, 0.001409475808031857], "14": [188.39930725097656, 411.2327880859375, 0.0026408741250634193], "15": [394.33648681640625, 464.66754150390625, 0.0002606296038720757], "16": [142.29010009765625, 451.2813720703125, 0.0004029319097753614]}} +{"t": 34.837137, "tracked": true, "track_id": 1, "bbox": [76.08695983886719, 65.59490966796875, 555.4284057617188, 479.8255310058594], "det_conf": 0.9227049946784973, "mean_kpt_conf": 0.890217965299433, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9139294337189622, "right_lift": -0.6762756701293622, "left_bend": 0.30332010032327955, "right_bend": 0.1658976667239937}, "keypoints": {"0": [357.9785461425781, 158.8299560546875, 0.9992213249206543], "1": [377.72161865234375, 138.4838104248047, 0.997960090637207], "2": [338.80816650390625, 136.0873260498047, 0.9979254007339478], "3": [403.56695556640625, 150.95948791503906, 0.9290537238121033], "4": [307.7332763671875, 145.9827423095703, 0.8612841367721558], "5": [456.61419677734375, 265.29638671875, 0.9822739958763123], "6": [254.767822265625, 239.49356079101562, 0.9961250424385071], "7": [516.13623046875, 399.3258056640625, 0.7064445614814758], "8": [143.4307403564453, 341.70587158203125, 0.9431412816047668], "9": [480.3323669433594, 459.7421875, 0.5486399531364441], "10": [115.48883056640625, 429.86932373046875, 0.830328106880188], "11": [394.4430847167969, 480.0, 0.13489839434623718], "12": [254.4778289794922, 466.625732421875, 0.2427346110343933], "13": [415.74237060546875, 442.1555480957031, 0.001419399632140994], "14": [185.157470703125, 416.158447265625, 0.0026515761855989695], "15": [403.4834289550781, 470.773681640625, 0.00026102675474248827], "16": [140.1018524169922, 455.6739807128906, 0.000400891323806718]}} +{"t": 34.873002, "tracked": true, "track_id": 1, "bbox": [85.08963775634766, 65.27049255371094, 552.392333984375, 479.8318786621094], "det_conf": 0.9247236847877502, "mean_kpt_conf": 0.8764429607174613, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.917612241912476, "right_lift": -0.7117474534396249, "left_bend": 0.2741398103411229, "right_bend": 0.20015716216274307}, "keypoints": {"0": [357.381591796875, 159.00308227539062, 0.9991698265075684], "1": [377.46697998046875, 138.88485717773438, 0.9979580640792847], "2": [338.8940734863281, 135.6851806640625, 0.9978592991828918], "3": [403.0955505371094, 151.31985473632812, 0.9281224012374878], "4": [307.9278564453125, 144.21249389648438, 0.8679919838905334], "5": [454.36883544921875, 264.9666442871094, 0.9815534353256226], "6": [251.43165588378906, 241.24362182617188, 0.9958961009979248], "7": [513.6123657226562, 401.7358703613281, 0.6756962537765503], "8": [138.64537048339844, 355.52508544921875, 0.9301502108573914], "9": [483.14410400390625, 464.4141845703125, 0.48920926451683044], "10": [124.40597534179688, 449.74053955078125, 0.777265727519989], "11": [394.65625, 480.0, 0.12167046219110489], "12": [254.08865356445312, 468.55181884765625, 0.2174016237258911], "13": [410.82745361328125, 444.57373046875, 0.001435118610970676], "14": [180.1960906982422, 420.25238037109375, 0.00255971634760499], "15": [399.6360778808594, 474.48468017578125, 0.00029388288385234773], "16": [136.10169982910156, 458.1183166503906, 0.000435176509199664]}} +{"t": 34.906864, "tracked": true, "track_id": 1, "bbox": [93.4161376953125, 65.42813873291016, 548.3070678710938, 479.8261413574219], "det_conf": 0.9217821955680847, "mean_kpt_conf": 0.8631044707515023, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9295795528983561, "right_lift": -0.7675049402437939, "left_bend": 0.2393187744801145, "right_bend": 0.10374671386570808}, "keypoints": {"0": [355.9931335449219, 159.58636474609375, 0.9990696310997009], "1": [375.84906005859375, 138.99598693847656, 0.9979415535926819], "2": [337.7834777832031, 136.2977294921875, 0.9974462985992432], "3": [401.0224609375, 150.05551147460938, 0.9405953884124756], "4": [308.6501770019531, 144.088623046875, 0.857564389705658], "5": [453.58843994140625, 262.2415771484375, 0.9827147126197815], "6": [251.44515991210938, 241.29464721679688, 0.995296061038971], "7": [511.84808349609375, 409.15911865234375, 0.6808325052261353], "8": [148.59063720703125, 364.4398193359375, 0.9113745093345642], "9": [484.55572509765625, 478.63409423828125, 0.42764565348625183], "10": [116.46798706054688, 447.27740478515625, 0.703668475151062], "11": [391.4797058105469, 480.0, 0.10298231244087219], "12": [250.93563842773438, 467.70355224609375, 0.1767367720603943], "13": [413.79534912109375, 436.3563232421875, 0.0013080176431685686], "14": [169.36257934570312, 415.26373291015625, 0.0021355128847062588], "15": [402.8258972167969, 475.34625244140625, 0.00029715959681198], "16": [127.09693908691406, 460.1832580566406, 0.0004116604395676404]}} +{"t": 34.972829, "tracked": true, "track_id": 1, "bbox": [103.07894897460938, 64.98831176757812, 546.5315551757812, 479.8320617675781], "det_conf": 0.925954282283783, "mean_kpt_conf": 0.849743593822826, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9307172107685573, "right_lift": -0.8030145236850743, "left_bend": 0.22874394182263724, "right_bend": 0.0939191041092855}, "keypoints": {"0": [355.72515869140625, 158.8491973876953, 0.9989870190620422], "1": [375.7241516113281, 138.55731201171875, 0.9977929592132568], "2": [337.18341064453125, 135.7583465576172, 0.9973575472831726], "3": [400.59283447265625, 150.66412353515625, 0.9347768425941467], "4": [307.4678649902344, 144.65457153320312, 0.8628718256950378], "5": [452.9849548339844, 260.3266296386719, 0.9816921949386597], "6": [250.72457885742188, 243.85269165039062, 0.9946999549865723], "7": [510.96136474609375, 407.8623046875, 0.6581366658210754], "8": [153.7199249267578, 374.559814453125, 0.8954827785491943], "9": [486.123291015625, 477.153076171875, 0.3792645335197449], "10": [124.57980346679688, 456.05426025390625, 0.6461172103881836], "11": [395.54791259765625, 479.71148681640625, 0.09757775068283081], "12": [254.67266845703125, 468.85455322265625, 0.16298910975456238], "13": [419.84521484375, 436.4440612792969, 0.001265374361537397], "14": [173.70594787597656, 418.369384765625, 0.002010668395087123], "15": [405.7716064453125, 478.08551025390625, 0.00030268990667536855], "16": [129.140869140625, 463.38189697265625, 0.00041035376489162445]}} +{"t": 35.008116, "tracked": true, "track_id": 1, "bbox": [104.59651947021484, 64.76792907714844, 546.9268798828125, 479.84326171875], "det_conf": 0.9251417517662048, "mean_kpt_conf": 0.841567185792056, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9374071288972214, "right_lift": -0.8194666277169114, "left_bend": 0.26808519452491125, "right_bend": 0.08690759045448272}, "keypoints": {"0": [355.8913879394531, 158.87806701660156, 0.998991072177887], "1": [375.73345947265625, 137.85809326171875, 0.9977806210517883], "2": [336.8152770996094, 135.86505126953125, 0.9974400997161865], "3": [400.96820068359375, 149.1748504638672, 0.9327549934387207], "4": [306.666259765625, 144.90106201171875, 0.8618077039718628], "5": [455.9200439453125, 260.36004638671875, 0.9810540676116943], "6": [250.8721160888672, 243.61622619628906, 0.9943984150886536], "7": [512.8323974609375, 413.5611572265625, 0.6304507851600647], "8": [157.81076049804688, 376.67694091796875, 0.8857892751693726], "9": [478.6602783203125, 478.1667175292969, 0.3547237515449524], "10": [128.78134155273438, 459.4552307128906, 0.6220482587814331], "11": [398.5055847167969, 479.8138427734375, 0.09034206718206406], "12": [255.88818359375, 468.58135986328125, 0.15254895389080048], "13": [423.018798828125, 438.162353515625, 0.001220726640895009], "14": [175.5762939453125, 419.23321533203125, 0.0019677558448165655], "15": [406.443603515625, 479.6383972167969, 0.00029767167870886624], "16": [132.02406311035156, 466.177734375, 0.0004078578494954854]}} +{"t": 35.072677, "tracked": true, "track_id": 1, "bbox": [108.43661499023438, 64.38631439208984, 547.5958862304688, 479.9090576171875], "det_conf": 0.9180936813354492, "mean_kpt_conf": 0.8392342112281106, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9368759518238284, "right_lift": -0.8485233512461917, "left_bend": 0.2394063936461706, "right_bend": 0.09469589670778895}, "keypoints": {"0": [355.0627746582031, 157.82652282714844, 0.9989204406738281], "1": [374.8407287597656, 136.86578369140625, 0.9976071119308472], "2": [335.9233703613281, 134.86529541015625, 0.9972965121269226], "3": [399.844970703125, 148.48562622070312, 0.9285440444946289], "4": [305.73944091796875, 144.12554931640625, 0.8658908009529114], "5": [454.29736328125, 260.2940673828125, 0.9816505908966064], "6": [250.11839294433594, 245.09231567382812, 0.9941755533218384], "7": [511.905517578125, 414.64801025390625, 0.6373946070671082], "8": [163.6644744873047, 383.7242126464844, 0.8775115609169006], "9": [485.357421875, 478.3426208496094, 0.3564583659172058], "10": [140.46157836914062, 470.90679931640625, 0.5961267352104187], "11": [399.21820068359375, 479.30322265625, 0.09285437315702438], "12": [257.596923828125, 469.4150390625, 0.15087783336639404], "13": [425.10296630859375, 440.889404296875, 0.0012680250220000744], "14": [181.68540954589844, 423.7819519042969, 0.0019798779394477606], "15": [409.0227355957031, 480.0, 0.0003046161727979779], "16": [142.86148071289062, 469.51446533203125, 0.00040797117981128395]}} +{"t": 35.138497, "tracked": true, "track_id": 1, "bbox": [107.68936920166016, 64.08029174804688, 547.471923828125, 479.9768371582031], "det_conf": 0.9101319313049316, "mean_kpt_conf": 0.8842958092689515, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": false, "right_ready": true, "left_lift": null, "right_lift": -0.8543226014082284, "left_bend": null, "right_bend": 0.08793755187819781}, "keypoints": {"0": [353.8314208984375, 157.6631317138672, 0.9989497065544128], "1": [373.6139831542969, 136.840576171875, 0.99769127368927], "2": [334.6780090332031, 134.89889526367188, 0.9973928928375244], "3": [398.62054443359375, 148.89361572265625, 0.9308927655220032], "4": [304.304443359375, 144.72216796875, 0.8668270707130432], "5": [454.3038330078125, 260.8961486816406, 0.9818321466445923], "6": [248.23825073242188, 246.68399047851562, 0.9943080544471741], "7": [514.7257080078125, 416.77392578125, 0.6253320574760437], "8": [162.40780639648438, 387.7669372558594, 0.8727322220802307], "9": [484.56243896484375, 478.0738220214844, 0.3406481146812439], "10": [138.845947265625, 472.80743408203125, 0.5769999027252197], "11": [399.2088623046875, 480.0, 0.09286728501319885], "12": [256.3293151855469, 470.6611328125, 0.15170156955718994], "13": [423.78973388671875, 444.73126220703125, 0.0012426943285390735], "14": [178.19223022460938, 427.20367431640625, 0.0019413621630519629], "15": [409.1136169433594, 480.0, 0.0002971655339933932], "16": [139.71844482421875, 470.4961853027344, 0.00039854159695096314]}} +{"t": 35.202062, "tracked": true, "track_id": 1, "bbox": [107.04946899414062, 63.614688873291016, 548.4631958007812, 479.982666015625], "det_conf": 0.9143289923667908, "mean_kpt_conf": 0.8398097590966658, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9323449175073321, "right_lift": -0.846120870362206, "left_bend": 0.2598565551104149, "right_bend": 0.08351635579174045}, "keypoints": {"0": [352.7582092285156, 157.85792541503906, 0.9989746809005737], "1": [372.23333740234375, 136.54052734375, 0.9978542923927307], "2": [333.60772705078125, 135.26318359375, 0.9972648620605469], "3": [397.748779296875, 147.71896362304688, 0.9372137188911438], "4": [304.1185302734375, 144.98699951171875, 0.8530934453010559], "5": [454.16461181640625, 259.83355712890625, 0.9825168251991272], "6": [249.28981018066406, 247.0400390625, 0.9943318367004395], "7": [514.683349609375, 415.88720703125, 0.6464419364929199], "8": [160.5967254638672, 387.83990478515625, 0.875832200050354], "9": [485.61627197265625, 476.6159973144531, 0.3616730570793152], "10": [135.34063720703125, 469.55621337890625, 0.5927104949951172], "11": [400.99951171875, 479.83489990234375, 0.09593210369348526], "12": [258.6287536621094, 470.84906005859375, 0.153087317943573], "13": [428.58038330078125, 443.24188232421875, 0.001265253173187375], "14": [181.33721923828125, 427.0103759765625, 0.0019394045230001211], "15": [416.5025329589844, 480.0, 0.00029509380692616105], "16": [141.25477600097656, 470.5689392089844, 0.0003937305591534823]}} +{"t": 35.267144, "tracked": true, "track_id": 1, "bbox": [102.45951843261719, 63.41216278076172, 547.6463012695312, 479.9983215332031], "det_conf": 0.9159635901451111, "mean_kpt_conf": 0.8532557541673834, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9318973501646663, "right_lift": -0.8364495072589676, "left_bend": 0.24379481599382324, "right_bend": 0.06947477880216003}, "keypoints": {"0": [352.604736328125, 158.2322540283203, 0.9990355968475342], "1": [371.52008056640625, 136.55426025390625, 0.9977843165397644], "2": [332.82476806640625, 135.6383819580078, 0.9974574446678162], "3": [396.3114318847656, 146.95571899414062, 0.9282094836235046], "4": [302.0956726074219, 145.39862060546875, 0.8677029013633728], "5": [453.45941162109375, 258.25439453125, 0.9832063913345337], "6": [247.85398864746094, 247.42674255371094, 0.9949652552604675], "7": [512.3720703125, 409.6114501953125, 0.6735419631004333], "8": [159.20797729492188, 382.7222900390625, 0.8980455994606018], "9": [484.31805419921875, 476.9552001953125, 0.3934270739555359], "10": [129.03890991210938, 462.4468078613281, 0.6524372696876526], "11": [403.20123291015625, 480.0, 0.10736438632011414], "12": [259.9353332519531, 471.8626708984375, 0.17574737966060638], "13": [429.49688720703125, 441.72125244140625, 0.0012636766768991947], "14": [178.74118041992188, 427.6175537109375, 0.001988637028262019], "15": [414.2757263183594, 479.8339538574219, 0.0002729242842178792], "16": [136.61892700195312, 470.6196594238281, 0.0003681076632346958]}} +{"t": 35.301153, "tracked": true, "track_id": 1, "bbox": [101.962890625, 63.47965621948242, 546.9210205078125, 480.0], "det_conf": 0.9268472194671631, "mean_kpt_conf": 0.8536487953229384, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9360583862277989, "right_lift": -0.835560144960824, "left_bend": 0.2593625960553963, "right_bend": 0.10745280973153536}, "keypoints": {"0": [351.15631103515625, 158.62384033203125, 0.9989830851554871], "1": [370.69189453125, 136.66136169433594, 0.9978467226028442], "2": [331.6975402832031, 135.7025604248047, 0.9971946477890015], "3": [396.87786865234375, 146.58807373046875, 0.9373403787612915], "4": [302.0649719238281, 144.41696166992188, 0.8542892932891846], "5": [454.328857421875, 259.1060485839844, 0.9834077954292297], "6": [246.52073669433594, 247.3207244873047, 0.9949344992637634], "7": [512.305419921875, 413.3486633300781, 0.6682620644569397], "8": [155.67173767089844, 385.4895324707031, 0.8925176858901978], "9": [481.8688659667969, 475.51837158203125, 0.4048936665058136], "10": [137.51808166503906, 458.3850402832031, 0.6604669094085693], "11": [404.8063049316406, 480.0, 0.10224752873182297], "12": [261.10015869140625, 473.86846923828125, 0.16659727692604065], "13": [434.7432556152344, 443.1068115234375, 0.0012454221723601222], "14": [191.2861328125, 429.16656494140625, 0.001988121308386326], "15": [418.115478515625, 479.9783020019531, 0.00026892064488492906], "16": [152.55673217773438, 470.9310302734375, 0.0003708451986312866]}} +{"t": 35.335159, "tracked": true, "track_id": 1, "bbox": [99.7411117553711, 63.5289306640625, 546.9225463867188, 480.0], "det_conf": 0.9267501831054688, "mean_kpt_conf": 0.8714131035588004, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9199570598117228, "right_lift": -0.814872195343528, "left_bend": 0.18743821469095773, "right_bend": 0.07588251711322433}, "keypoints": {"0": [350.99261474609375, 158.05722045898438, 0.9990314245223999], "1": [369.74932861328125, 136.34701538085938, 0.9978570342063904], "2": [331.3709716796875, 135.9084014892578, 0.9972461462020874], "3": [395.0662536621094, 146.15773010253906, 0.9353094696998596], "4": [302.0934753417969, 145.6049346923828, 0.860720694065094], "5": [451.5377502441406, 254.79635620117188, 0.9850652813911438], "6": [248.54144287109375, 246.17042541503906, 0.9952386617660522], "7": [512.6019287109375, 398.0965576171875, 0.734186589717865], "8": [156.85955810546875, 375.0589294433594, 0.9141075611114502], "9": [498.090087890625, 475.2030334472656, 0.46148720383644104], "10": [125.38327026367188, 453.88922119140625, 0.7052940726280212], "11": [401.1031494140625, 476.1429443359375, 0.13384214043617249], "12": [259.8164367675781, 469.5107421875, 0.20787003636360168], "13": [433.35028076171875, 439.6112060546875, 0.0013755065156146884], "14": [185.40521240234375, 428.9768981933594, 0.002125502098351717], "15": [416.59918212890625, 479.1802978515625, 0.0002655460557434708], "16": [140.2182159423828, 473.41094970703125, 0.0003551947302184999]}} +{"t": 35.399152, "tracked": true, "track_id": 1, "bbox": [93.22193145751953, 63.317440032958984, 546.5006103515625, 479.99041748046875], "det_conf": 0.9275550842285156, "mean_kpt_conf": 0.8748683739792217, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9316235393898437, "right_lift": -0.8054391388664123, "left_bend": 0.22745704778767017, "right_bend": 0.008909186175666075}, "keypoints": {"0": [349.91290283203125, 158.3124237060547, 0.999025821685791], "1": [368.677978515625, 136.70616149902344, 0.9977263808250427], "2": [330.4460144042969, 136.240478515625, 0.9971912503242493], "3": [394.36590576171875, 146.59732055664062, 0.9375502467155457], "4": [301.53033447265625, 145.8239288330078, 0.8507872223854065], "5": [452.8140869140625, 260.0184020996094, 0.9849033355712891], "6": [250.2157440185547, 244.83755493164062, 0.9957038760185242], "7": [510.91253662109375, 408.95123291015625, 0.7142898440361023], "8": [162.00729370117188, 364.7112121582031, 0.9222250580787659], "9": [486.99578857421875, 476.000244140625, 0.46729132533073425], "10": [121.83438110351562, 422.6339111328125, 0.7568577527999878], "11": [402.53900146484375, 480.0, 0.14649489521980286], "12": [262.51171875, 471.45538330078125, 0.24187056720256805], "13": [436.3520202636719, 448.30517578125, 0.001445986214093864], "14": [198.44297790527344, 433.437744140625, 0.0024847867898643017], "15": [418.99310302734375, 479.37420654296875, 0.00025540325441397727], "16": [161.12750244140625, 471.710693359375, 0.0003704321279656142]}} +{"t": 35.435846, "tracked": true, "track_id": 1, "bbox": [87.934814453125, 63.36045837402344, 547.697021484375, 480.0], "det_conf": 0.9100727438926697, "mean_kpt_conf": 0.88604675097899, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9301596486216703, "right_lift": -0.8073559719974756, "left_bend": 0.23982712569141948, "right_bend": 0.04919844566061026}, "keypoints": {"0": [349.0743408203125, 158.5220489501953, 0.9990290403366089], "1": [368.3614196777344, 136.9072265625, 0.9977378845214844], "2": [329.7052917480469, 136.25997924804688, 0.9970569610595703], "3": [394.5543212890625, 146.86172485351562, 0.9411149024963379], "4": [300.7248229980469, 145.6585693359375, 0.8439417481422424], "5": [452.8463134765625, 260.1941833496094, 0.9860301613807678], "6": [249.04251098632812, 246.22186279296875, 0.9960876703262329], "7": [511.6882019042969, 409.26556396484375, 0.7406559586524963], "8": [161.96194458007812, 365.3698425292969, 0.9293972849845886], "9": [485.2111511230469, 476.04156494140625, 0.5187997817993164], "10": [121.31301879882812, 405.99420166015625, 0.7966628670692444], "11": [402.98529052734375, 480.0, 0.16665710508823395], "12": [262.6029357910156, 473.45123291015625, 0.2704794108867645], "13": [435.8003234863281, 452.06854248046875, 0.0015633151633664966], "14": [201.72645568847656, 438.1978454589844, 0.002677783602848649], "15": [418.1584167480469, 480.0, 0.00024604040663689375], "16": [167.3134002685547, 472.3837890625, 0.0003572988498490304]}} +{"t": 35.498467, "tracked": true, "track_id": 1, "bbox": [73.5723648071289, 62.70487594604492, 552.1231079101562, 480.0], "det_conf": 0.9114209413528442, "mean_kpt_conf": 0.8826148862188513, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9336763775344395, "right_lift": -0.7985899366263313, "left_bend": 0.28177558127034774, "right_bend": 0.31034942069146887}, "keypoints": {"0": [349.9975891113281, 158.06683349609375, 0.9990416169166565], "1": [369.46142578125, 137.0989227294922, 0.9974919557571411], "2": [330.8500671386719, 136.23324584960938, 0.9973709583282471], "3": [395.84185791015625, 148.58035278320312, 0.9199371337890625], "4": [300.4786682128906, 147.00738525390625, 0.8642452359199524], "5": [456.8795166015625, 260.3334045410156, 0.9840908646583557], "6": [243.8054656982422, 255.3838348388672, 0.9967310428619385], "7": [510.8812255859375, 401.1253662109375, 0.6854270100593567], "8": [154.68031311035156, 373.6382751464844, 0.9331571459770203], "9": [477.6053466796875, 459.381591796875, 0.495320588350296], "10": [129.262451171875, 372.365234375, 0.8359501957893372], "11": [416.2594909667969, 480.0, 0.18398968875408173], "12": [271.357421875, 480.0, 0.3144107460975647], "13": [451.9750671386719, 459.56396484375, 0.0016157052014023066], "14": [233.42042541503906, 453.84515380859375, 0.0031836729031056166], "15": [418.319091796875, 480.0, 0.00022546146647073328], "16": [199.93002319335938, 476.378662109375, 0.00036152038956061006]}} +{"t": 35.565849, "tracked": true, "track_id": 1, "bbox": [66.84783172607422, 63.064022064208984, 554.0189819335938, 479.9405212402344], "det_conf": 0.910821259021759, "mean_kpt_conf": 0.8856387680227106, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9302446975799117, "right_lift": -0.7986099465812011, "left_bend": 0.2518150496671221, "right_bend": 0.5514482703044756}, "keypoints": {"0": [350.3184509277344, 158.1419219970703, 0.9990457892417908], "1": [369.68157958984375, 136.9388427734375, 0.9974784255027771], "2": [330.8732604980469, 136.48907470703125, 0.9972766041755676], "3": [395.8539123535156, 148.4207000732422, 0.9132874011993408], "4": [300.7122802734375, 147.78604125976562, 0.8595710396766663], "5": [456.63525390625, 256.5142822265625, 0.9839683771133423], "6": [246.49874877929688, 255.11143493652344, 0.9965492486953735], "7": [513.1588134765625, 399.8095703125, 0.7010712623596191], "8": [156.09503173828125, 375.07061767578125, 0.934906005859375], "9": [485.7706298828125, 461.90777587890625, 0.5062150955200195], "10": [129.1993408203125, 346.9621276855469, 0.8526571989059448], "11": [420.65673828125, 480.0, 0.17836612462997437], "12": [277.6011047363281, 480.0, 0.30136796832084656], "13": [459.1220397949219, 451.2018737792969, 0.0016544421669095755], "14": [240.73895263671875, 449.43524169921875, 0.003248743247240782], "15": [423.12335205078125, 480.0, 0.00022838907898403704], "16": [199.13348388671875, 477.08892822265625, 0.00036453359643928707]}} +{"t": 35.600118, "tracked": true, "track_id": 1, "bbox": [65.7489013671875, 63.09846878051758, 553.5938110351562, 479.96392822265625], "det_conf": 0.9136396646499634, "mean_kpt_conf": 0.8859666911038485, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9355020196997028, "right_lift": -0.8076418873288415, "left_bend": 0.2764093941315483, "right_bend": 0.6676402955101329}, "keypoints": {"0": [349.81256103515625, 158.174072265625, 0.9990873336791992], "1": [369.6537170410156, 136.98007202148438, 0.9975899457931519], "2": [330.61572265625, 135.97906494140625, 0.9972983002662659], "3": [395.97601318359375, 149.27684020996094, 0.9117968082427979], "4": [300.33770751953125, 147.42996215820312, 0.8576183915138245], "5": [456.5280456542969, 256.5362548828125, 0.9843090772628784], "6": [244.69973754882812, 258.52154541015625, 0.9966288208961487], "7": [512.4373168945312, 404.5693054199219, 0.7009312510490417], "8": [150.78778076171875, 387.14739990234375, 0.9332419633865356], "9": [480.60748291015625, 461.843017578125, 0.507980227470398], "10": [127.69340515136719, 334.5142822265625, 0.8591514825820923], "11": [422.60003662109375, 480.0, 0.16197359561920166], "12": [277.69073486328125, 480.0, 0.2745494544506073], "13": [463.3426818847656, 447.44317626953125, 0.001597806578502059], "14": [238.81639099121094, 448.12286376953125, 0.0030914051458239555], "15": [425.21392822265625, 480.0, 0.00021537694556172937], "16": [188.14930725097656, 475.895751953125, 0.00034022980253212154]}} +{"t": 35.663533, "tracked": true, "track_id": 1, "bbox": [62.04030990600586, 63.580848693847656, 549.9148559570312, 479.9693603515625], "det_conf": 0.9200270771980286, "mean_kpt_conf": 0.8956017277457498, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9419113441741033, "right_lift": -0.7872658765509749, "left_bend": 0.28204877152031615, "right_bend": 0.679616054396116}, "keypoints": {"0": [350.930419921875, 159.04330444335938, 0.9991347193717957], "1": [370.66998291015625, 136.83233642578125, 0.9976192116737366], "2": [331.190673828125, 136.05630493164062, 0.9973337650299072], "3": [396.44451904296875, 147.79307556152344, 0.9060905575752258], "4": [300.0344543457031, 146.4798583984375, 0.8622258305549622], "5": [455.94207763671875, 256.209228515625, 0.9848180413246155], "6": [244.40884399414062, 258.61920166015625, 0.9967756867408752], "7": [509.6973876953125, 406.9639892578125, 0.7206476926803589], "8": [143.52951049804688, 387.4176025390625, 0.937332034111023], "9": [476.1908874511719, 462.4123840332031, 0.5630911588668823], "10": [120.18814086914062, 321.8668518066406, 0.8865503072738647], "11": [424.65380859375, 480.0, 0.15325434505939484], "12": [281.0495300292969, 480.0, 0.2597161531448364], "13": [460.24468994140625, 444.5959167480469, 0.0016531053697690368], "14": [243.08493041992188, 446.5909423828125, 0.0031057337764650583], "15": [419.51165771484375, 480.0, 0.0002082606515614316], "16": [191.9957275390625, 477.84332275390625, 0.00032230341457761824]}} +{"t": 35.729392, "tracked": true, "track_id": 1, "bbox": [53.50132751464844, 63.84495162963867, 553.0258178710938, 479.91375732421875], "det_conf": 0.9298230409622192, "mean_kpt_conf": 0.9048308188265021, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9394011903058069, "right_lift": -0.7789096967127491, "left_bend": 0.3360033304933536, "right_bend": 0.6726560956941052}, "keypoints": {"0": [350.5111999511719, 158.77169799804688, 0.9991727471351624], "1": [371.2274169921875, 136.84738159179688, 0.9978633522987366], "2": [331.30963134765625, 135.7467498779297, 0.9971622824668884], "3": [397.86761474609375, 148.99777221679688, 0.9242653250694275], "4": [301.5174865722656, 146.82427978515625, 0.8401166200637817], "5": [457.04510498046875, 254.80169677734375, 0.9859472513198853], "6": [245.72994995117188, 258.6880798339844, 0.9970889687538147], "7": [513.6185302734375, 409.82525634765625, 0.7493724226951599], "8": [138.25926208496094, 392.1678161621094, 0.9439796209335327], "9": [472.97613525390625, 457.52618408203125, 0.614262580871582], "10": [108.61952209472656, 311.09783935546875, 0.903907835483551], "11": [425.4953918457031, 480.0, 0.15305307507514954], "12": [282.6552734375, 480.0, 0.25796544551849365], "13": [460.3768615722656, 441.30999755859375, 0.0016824475023895502], "14": [246.32479858398438, 442.50592041015625, 0.003132046200335026], "15": [420.39984130859375, 480.0, 0.000197113593458198], "16": [192.12261962890625, 477.10150146484375, 0.0003083480696659535]}} +{"t": 35.763381, "tracked": true, "track_id": 1, "bbox": [51.574344635009766, 64.05384826660156, 554.279541015625, 479.91107177734375], "det_conf": 0.9342465400695801, "mean_kpt_conf": 0.9086568301374262, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9387685487083209, "right_lift": -0.7810495824227667, "left_bend": 0.3416511325208394, "right_bend": 0.6792042725774977}, "keypoints": {"0": [351.1507568359375, 159.33544921875, 0.9992192983627319], "1": [371.2481994628906, 136.964111328125, 0.9978265166282654], "2": [331.58404541015625, 136.02243041992188, 0.9973408579826355], "3": [396.80078125, 148.2774200439453, 0.9129111170768738], "4": [300.67218017578125, 146.67410278320312, 0.8512430787086487], "5": [456.2158508300781, 254.78976440429688, 0.9865943193435669], "6": [244.9617156982422, 259.5002136230469, 0.9971144199371338], "7": [513.4112548828125, 410.6263427734375, 0.7621791958808899], "8": [137.41053771972656, 394.01898193359375, 0.9452593922615051], "9": [471.7575988769531, 457.9680480957031, 0.6352851986885071], "10": [107.90576171875, 308.8143005371094, 0.9102517366409302], "11": [425.42779541015625, 480.0, 0.1499110758304596], "12": [282.17816162109375, 480.0, 0.2493274211883545], "13": [458.2259216308594, 439.40789794921875, 0.0016714456724002957], "14": [240.6305694580078, 441.21978759765625, 0.0030098124407231808], "15": [417.7316589355469, 480.0, 0.00019154396431986243], "16": [183.24644470214844, 475.7513427734375, 0.0002900344552472234]}} +{"t": 35.826264, "tracked": true, "track_id": 1, "bbox": [50.20221710205078, 63.90468215942383, 556.3562622070312, 479.9264831542969], "det_conf": 0.9339708685874939, "mean_kpt_conf": 0.909100207415494, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9380198990834105, "right_lift": -0.7777688585012914, "left_bend": 0.3884104676889924, "right_bend": 0.6840974428857362}, "keypoints": {"0": [350.9423522949219, 159.48974609375, 0.9992218017578125], "1": [371.71746826171875, 136.73805236816406, 0.9977869987487793], "2": [331.3132019042969, 135.29022216796875, 0.997329592704773], "3": [397.4159240722656, 148.0292205810547, 0.9113718271255493], "4": [299.57598876953125, 145.1373748779297, 0.8510470986366272], "5": [456.3332824707031, 257.243896484375, 0.9866580367088318], "6": [242.55203247070312, 260.86138916015625, 0.9971722960472107], "7": [514.8719482421875, 415.6783447265625, 0.7547978162765503], "8": [134.5041046142578, 394.55999755859375, 0.9424048066139221], "9": [469.45257568359375, 454.28472900390625, 0.6484277844429016], "10": [102.11532592773438, 294.397216796875, 0.9138842225074768], "11": [425.0760498046875, 480.0, 0.1429401934146881], "12": [281.0310363769531, 480.0, 0.23796480894088745], "13": [457.0716247558594, 441.9128723144531, 0.001703883521258831], "14": [244.1275634765625, 443.11920166015625, 0.003033038694411516], "15": [416.6299133300781, 480.0, 0.00018735832418315113], "16": [191.7760009765625, 474.27972412109375, 0.0002823283721227199]}} +{"t": 35.861354, "tracked": true, "track_id": 1, "bbox": [50.152503967285156, 63.785179138183594, 557.7145385742188, 479.9490966796875], "det_conf": 0.9309446215629578, "mean_kpt_conf": 0.9116507172584534, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9363421434628032, "right_lift": -0.7764013013362975, "left_bend": 0.34260742987407516, "right_bend": 0.6949598195540774}, "keypoints": {"0": [350.8763732910156, 158.86874389648438, 0.999208390712738], "1": [371.43988037109375, 136.8411865234375, 0.9977783560752869], "2": [331.31939697265625, 135.48348999023438, 0.997286319732666], "3": [396.6563415527344, 149.3988037109375, 0.9118710160255432], "4": [299.63922119140625, 146.8031768798828, 0.8551737666130066], "5": [456.0394592285156, 255.87693786621094, 0.9873866438865662], "6": [240.98507690429688, 261.3880920410156, 0.9972587823867798], "7": [514.3283081054688, 411.3313293457031, 0.7730513215065002], "8": [134.4778289794922, 392.5960693359375, 0.9456626176834106], "9": [475.68267822265625, 455.60760498046875, 0.6490751504898071], "10": [104.42172241210938, 286.65875244140625, 0.9144055247306824], "11": [426.3758239746094, 480.0, 0.15736325085163116], "12": [281.22515869140625, 480.0, 0.25560134649276733], "13": [461.9444885253906, 437.4869384765625, 0.0017892027972266078], "14": [245.07147216796875, 441.66021728515625, 0.00316471210680902], "15": [419.950439453125, 480.0, 0.00019656986114569008], "16": [191.93768310546875, 474.3680114746094, 0.000294796860544011]}} +{"t": 35.925461, "tracked": true, "track_id": 1, "bbox": [51.24000930786133, 63.77726364135742, 553.35400390625, 479.952880859375], "det_conf": 0.9246147274971008, "mean_kpt_conf": 0.9193399006670172, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9393567043433468, "right_lift": -0.7542084574458063, "left_bend": 0.30366610680417494, "right_bend": 0.6788836426897509}, "keypoints": {"0": [349.95074462890625, 158.60986328125, 0.9992032647132874], "1": [370.1083984375, 136.53228759765625, 0.9977924823760986], "2": [330.36981201171875, 135.5455322265625, 0.9970620274543762], "3": [395.1714782714844, 148.82492065429688, 0.9171935319900513], "4": [299.40069580078125, 147.06007385253906, 0.84451824426651], "5": [453.69427490234375, 255.91244506835938, 0.9882750511169434], "6": [243.0391082763672, 259.6700134277344, 0.9974027276039124], "7": [510.2115783691406, 410.7198486328125, 0.8043288588523865], "8": [135.93663024902344, 382.6875, 0.9537803530693054], "9": [475.8199462890625, 460.56646728515625, 0.6854298114776611], "10": [102.20265197753906, 270.65277099609375, 0.9277525544166565], "11": [424.0727233886719, 480.0, 0.1807403266429901], "12": [281.7678527832031, 480.0, 0.2872742712497711], "13": [460.47393798828125, 438.1316223144531, 0.0019084349041804671], "14": [246.87771606445312, 442.8365783691406, 0.0033691618591547012], "15": [419.29296875, 480.0, 0.00019838537264149636], "16": [193.2645263671875, 474.6318054199219, 0.0002986527106259018]}} +{"t": 35.996002, "tracked": true, "track_id": 1, "bbox": [57.06401443481445, 63.477787017822266, 556.7119750976562, 479.9249572753906], "det_conf": 0.9262135624885559, "mean_kpt_conf": 0.9176565733822909, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9343451004812332, "right_lift": -0.7313583638280654, "left_bend": 0.33439633589922463, "right_bend": 0.6896459145996656}, "keypoints": {"0": [348.1390686035156, 158.97573852539062, 0.9991738200187683], "1": [368.34552001953125, 136.513427734375, 0.9978620409965515], "2": [328.516357421875, 136.0663299560547, 0.9968279004096985], "3": [394.2789306640625, 148.42041015625, 0.9254253506660461], "4": [298.1972351074219, 147.492431640625, 0.8272446990013123], "5": [455.57342529296875, 255.98095703125, 0.987733006477356], "6": [241.88412475585938, 258.45257568359375, 0.99730384349823], "7": [515.083251953125, 412.00640869140625, 0.7940725088119507], "8": [132.0898895263672, 376.194091796875, 0.9525308012962341], "9": [477.38348388671875, 458.0436706542969, 0.6863766312599182], "10": [104.21142578125, 254.11915588378906, 0.9296717047691345], "11": [427.13970947265625, 480.0, 0.17057651281356812], "12": [283.77044677734375, 480.0, 0.2762877941131592], "13": [463.9087829589844, 436.0150146484375, 0.0019170958548784256], "14": [253.97093200683594, 440.58685302734375, 0.0034877555444836617], "15": [421.90057373046875, 480.0, 0.00019940621859859675], "16": [202.67471313476562, 474.62860107421875, 0.00031075297738425434]}} +{"t": 36.057612, "tracked": true, "track_id": 1, "bbox": [63.283668518066406, 63.589168548583984, 562.0545654296875, 480.0], "det_conf": 0.9209235906600952, "mean_kpt_conf": 0.9345619570125233, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9289368163522399, "right_lift": -0.7240263549654788, "left_bend": 0.49688331882851056, "right_bend": 0.7055978920617271}, "keypoints": {"0": [346.61639404296875, 160.02896118164062, 0.9993908405303955], "1": [368.201171875, 137.14712524414062, 0.9985155463218689], "2": [326.66986083984375, 136.23814392089844, 0.9971017241477966], "3": [396.8817443847656, 148.78392028808594, 0.9460381269454956], "4": [296.4141845703125, 146.8375244140625, 0.8000702261924744], "5": [459.7347717285156, 256.6669006347656, 0.9914293885231018], "6": [239.10821533203125, 260.0394287109375, 0.9980039000511169], "7": [519.7830200195312, 407.32940673828125, 0.8523157238960266], "8": [123.90235900878906, 380.9664001464844, 0.9624909162521362], "9": [468.0314636230469, 428.54510498046875, 0.7848455309867859], "10": [102.38552856445312, 250.71572875976562, 0.9499796032905579], "11": [430.0722961425781, 480.0, 0.19429278373718262], "12": [280.1169738769531, 480.0, 0.2969036102294922], "13": [468.23834228515625, 438.6561279296875, 0.0012287362478673458], "14": [240.5653839111328, 439.83551025390625, 0.0020967128220945597], "15": [430.5279846191406, 480.0, 0.0001130554883275181], "16": [182.00607299804688, 464.0716552734375, 0.00017075322102755308]}} +{"t": 36.123729, "tracked": true, "track_id": 1, "bbox": [64.63477325439453, 63.53655242919922, 562.1749267578125, 480.0], "det_conf": 0.9194043874740601, "mean_kpt_conf": 0.9356813972646539, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9243447846984765, "right_lift": -0.7164666035949107, "left_bend": 0.5095651307260111, "right_bend": 0.7076573123746502}, "keypoints": {"0": [346.4858703613281, 160.63084411621094, 0.9993923902511597], "1": [368.37872314453125, 137.69601440429688, 0.9985049962997437], "2": [326.3592529296875, 136.49151611328125, 0.9970955848693848], "3": [396.92071533203125, 149.59158325195312, 0.9445267915725708], "4": [295.3479309082031, 146.9908447265625, 0.8017320036888123], "5": [459.4117126464844, 257.2364501953125, 0.9913320541381836], "6": [237.84703063964844, 260.84417724609375, 0.9979731440544128], "7": [521.1295776367188, 406.7511901855469, 0.8533469438552856], "8": [121.7919921875, 380.0342712402344, 0.9619297981262207], "9": [467.918701171875, 426.866943359375, 0.7942038774490356], "10": [101.59010314941406, 242.98248291015625, 0.9524577856063843], "11": [431.8660888671875, 480.0, 0.18972069025039673], "12": [281.7778015136719, 480.0, 0.2889869213104248], "13": [470.27777099609375, 437.963623046875, 0.0012368065072223544], "14": [245.86648559570312, 439.49334716796875, 0.0020926373545080423], "15": [433.3109130859375, 480.0, 0.00011051006731577218], "16": [190.08631896972656, 464.3100891113281, 0.00016643220442347229]}} +{"t": 36.160542, "tracked": true, "track_id": 1, "bbox": [63.269596099853516, 63.43257141113281, 561.01904296875, 480.0], "det_conf": 0.9191954731941223, "mean_kpt_conf": 0.9338566606695001, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9236774167803394, "right_lift": -0.7067962116205545, "left_bend": 0.48574099684724087, "right_bend": 0.6972705943269416}, "keypoints": {"0": [346.11419677734375, 160.88511657714844, 0.9993554949760437], "1": [368.12042236328125, 137.4989776611328, 0.998467743396759], "2": [325.7936706542969, 136.63970947265625, 0.9969584941864014], "3": [397.0140380859375, 148.534423828125, 0.9460431337356567], "4": [295.0225830078125, 146.68063354492188, 0.8006506562232971], "5": [458.4505920410156, 256.3030700683594, 0.9908828139305115], "6": [238.23849487304688, 260.7969665527344, 0.9978986978530884], "7": [519.8297119140625, 404.2644348144531, 0.8456563949584961], "8": [121.48295593261719, 377.45001220703125, 0.9597659707069397], "9": [468.7417297363281, 428.1923828125, 0.7863551378250122], "10": [98.51681518554688, 239.7096710205078, 0.9503887295722961], "11": [429.5512390136719, 480.0, 0.18439798057079315], "12": [280.9990539550781, 480.0, 0.28230828046798706], "13": [466.513671875, 436.3743896484375, 0.0012762484839186072], "14": [247.01239013671875, 439.06048583984375, 0.002163213212043047], "15": [427.60540771484375, 479.9542541503906, 0.00011926273873541504], "16": [192.16201782226562, 462.6077880859375, 0.00017985676822718233]}} +{"t": 36.221031, "tracked": true, "track_id": 1, "bbox": [54.34303665161133, 63.93674850463867, 561.02880859375, 480.0], "det_conf": 0.9131556153297424, "mean_kpt_conf": 0.9319774887778542, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9257778150059066, "right_lift": -0.6704014680170417, "left_bend": 0.4906960812908876, "right_bend": 0.6725508611036064}, "keypoints": {"0": [346.67901611328125, 161.25949096679688, 0.9993764758110046], "1": [367.70458984375, 137.93490600585938, 0.9985544085502625], "2": [326.67303466796875, 137.72540283203125, 0.9969712495803833], "3": [396.0151062011719, 148.53770446777344, 0.9497019648551941], "4": [296.577392578125, 148.1630096435547, 0.7943676114082336], "5": [459.7210388183594, 257.73492431640625, 0.990964412689209], "6": [238.74850463867188, 261.1156921386719, 0.9979844093322754], "7": [520.3863525390625, 406.2864990234375, 0.8409039378166199], "8": [115.83056640625, 372.1730041503906, 0.9598326086997986], "9": [468.91607666015625, 429.0829162597656, 0.7743954658508301], "10": [88.10800170898438, 230.06797790527344, 0.9486998319625854], "11": [430.28009033203125, 480.0, 0.18939752876758575], "12": [281.39508056640625, 480.0, 0.2923530042171478], "13": [463.89361572265625, 438.83837890625, 0.0012971819378435612], "14": [243.03805541992188, 441.38214111328125, 0.002196589484810829], "15": [426.07794189453125, 479.17572021484375, 0.00011934975191252306], "16": [187.65792846679688, 463.50823974609375, 0.00018044939497485757]}} +{"t": 36.254891, "tracked": true, "track_id": 1, "bbox": [48.38998794555664, 64.16874694824219, 560.90087890625, 480.0], "det_conf": 0.9073898792266846, "mean_kpt_conf": 0.9311317205429077, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9224155820731461, "right_lift": -0.6528205427962674, "left_bend": 0.4174011540118679, "right_bend": 0.6589771551238061}, "keypoints": {"0": [346.94219970703125, 160.9620361328125, 0.9993914365768433], "1": [367.5905456542969, 137.7317352294922, 0.9986054301261902], "2": [326.8782043457031, 137.98992919921875, 0.9970519542694092], "3": [395.70806884765625, 148.32220458984375, 0.9509108066558838], "4": [296.9351806640625, 148.999755859375, 0.8003713488578796], "5": [460.084716796875, 257.3404846191406, 0.9912338852882385], "6": [238.42161560058594, 261.3619689941406, 0.9980898499488831], "7": [521.3724975585938, 403.72314453125, 0.844164252281189], "8": [115.12736511230469, 367.6163330078125, 0.9617739915847778], "9": [478.8646545410156, 436.4420166015625, 0.7548240423202515], "10": [84.46546936035156, 225.06134033203125, 0.946031928062439], "11": [430.65802001953125, 480.0, 0.2095642238855362], "12": [281.1227722167969, 480.0, 0.32113853096961975], "13": [466.9524841308594, 442.3514709472656, 0.00127761613111943], "14": [242.65704345703125, 447.0977783203125, 0.002194511704146862], "15": [430.0069274902344, 480.0, 0.0001165562352980487], "16": [187.66134643554688, 467.43218994140625, 0.00017760248738341033]}} +{"t": 36.289205, "tracked": true, "track_id": 1, "bbox": [42.784000396728516, 64.11296081542969, 562.4812622070312, 480.0], "det_conf": 0.9077324867248535, "mean_kpt_conf": 0.929621544751254, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.926954048691246, "right_lift": -0.6413680886048374, "left_bend": 0.4780373416410415, "right_bend": 0.658616744180817}, "keypoints": {"0": [347.3128662109375, 160.85067749023438, 0.9993962049484253], "1": [368.5147705078125, 137.52142333984375, 0.9986729621887207], "2": [327.3109436035156, 137.34190368652344, 0.9969841837882996], "3": [397.35638427734375, 148.38027954101562, 0.9546675086021423], "4": [297.224853515625, 147.95985412597656, 0.7878036499023438], "5": [461.02581787109375, 259.1957702636719, 0.9909449815750122], "6": [238.83851623535156, 261.7618103027344, 0.9981198906898499], "7": [520.8928833007812, 407.11083984375, 0.835232138633728], "8": [111.09242248535156, 368.5510559082031, 0.9609807133674622], "9": [472.22271728515625, 430.836669921875, 0.7562467455863953], "10": [81.58576965332031, 221.45790100097656, 0.9467880129814148], "11": [432.13494873046875, 480.0, 0.20177491009235382], "12": [282.1364440917969, 480.0, 0.3150407075881958], "13": [463.8345947265625, 445.89227294921875, 0.0012473072856664658], "14": [239.9661865234375, 448.6260681152344, 0.002142537385225296], "15": [428.72125244140625, 479.70709228515625, 0.00011305420775897801], "16": [183.859619140625, 464.3446350097656, 0.0001734124671202153]}} +{"t": 36.353297, "tracked": true, "track_id": 1, "bbox": [29.101459503173828, 64.42301940917969, 562.3052978515625, 479.9989013671875], "det_conf": 0.9032012224197388, "mean_kpt_conf": 0.8853078161676725, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9270479909991166, "right_lift": -0.6659216816954938, "left_bend": 0.47413630784983124, "right_bend": 0.6353043022951939}, "keypoints": {"0": [348.3497009277344, 160.929443359375, 0.9994283318519592], "1": [369.5729675292969, 137.94842529296875, 0.9986708164215088], "2": [328.10601806640625, 137.53045654296875, 0.9971278309822083], "3": [397.8944396972656, 149.27175903320312, 0.9529040455818176], "4": [297.2928466796875, 148.7608642578125, 0.7885485887527466], "5": [461.517822265625, 258.3675842285156, 0.9915345311164856], "6": [241.47686767578125, 261.7827453613281, 0.9982351064682007], "7": [521.0419311523438, 405.5412902832031, 0.852944016456604], "8": [120.31808471679688, 369.9327697753906, 0.9658466577529907], "9": [473.242431640625, 429.5570983886719, 0.7688474655151367], "10": [76.76039123535156, 230.925537109375, 0.9494673609733582], "11": [433.972412109375, 480.0, 0.2360246330499649], "12": [284.1429748535156, 480.0, 0.36013904213905334], "13": [464.46759033203125, 449.9048767089844, 0.0012832332868129015], "14": [233.6968994140625, 451.452880859375, 0.002181341638788581], "15": [430.6977844238281, 480.0, 0.00010827864025486633], "16": [175.96295166015625, 466.3735656738281, 0.00016418889572378248]}} +{"t": 36.421158, "tracked": true, "track_id": 1, "bbox": [21.971662521362305, 64.66813659667969, 560.4341430664062, 480.0], "det_conf": 0.9080043435096741, "mean_kpt_conf": 0.9206137765537609, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.928440590348072, "right_lift": -0.6607532271410018, "left_bend": 0.28666943885237856, "right_bend": 0.6174522004560976}, "keypoints": {"0": [349.869140625, 160.00534057617188, 0.9992295503616333], "1": [370.2813720703125, 137.31289672851562, 0.99819415807724], "2": [330.1605529785156, 137.10516357421875, 0.9967232346534729], "3": [396.4845886230469, 148.67672729492188, 0.9423224329948425], "4": [299.6478576660156, 148.51010131835938, 0.8111923336982727], "5": [456.900634765625, 257.41851806640625, 0.989107072353363], "6": [244.20529174804688, 260.91204833984375, 0.9978024363517761], "7": [517.2019653320312, 408.1293640136719, 0.8161924481391907], "8": [127.90797424316406, 363.28814697265625, 0.9592967629432678], "9": [485.6131591796875, 463.3009948730469, 0.6860657930374146], "10": [77.59938049316406, 226.67074584960938, 0.930625319480896], "11": [427.68621826171875, 480.0, 0.21531161665916443], "12": [284.47686767578125, 480.0, 0.339439332485199], "13": [456.9290771484375, 443.4988098144531, 0.002011385979130864], "14": [242.65667724609375, 449.74945068359375, 0.003536743111908436], "15": [418.16998291015625, 480.0, 0.00019644676649477333], "16": [190.3411865234375, 467.8038330078125, 0.0003018472343683243]}} +{"t": 36.454622, "tracked": true, "track_id": 1, "bbox": [19.120616912841797, 64.9769515991211, 556.306884765625, 480.0], "det_conf": 0.9096391797065735, "mean_kpt_conf": 0.8776343514521917, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9311626319245526, "right_lift": -0.6632021764275768, "left_bend": 0.27407566927350335, "right_bend": 0.6079913677632537}, "keypoints": {"0": [350.18719482421875, 159.63958740234375, 0.9992069602012634], "1": [370.917724609375, 137.27830505371094, 0.99812251329422], "2": [330.464599609375, 136.72308349609375, 0.9966214895248413], "3": [397.00872802734375, 149.10763549804688, 0.9415282607078552], "4": [299.6661071777344, 148.3572235107422, 0.8129996657371521], "5": [454.7268371582031, 256.5306396484375, 0.9892972111701965], "6": [244.95068359375, 261.3384094238281, 0.9978722333908081], "7": [512.5111694335938, 404.1060791015625, 0.8285916447639465], "8": [130.06729125976562, 363.13800048828125, 0.9617413282394409], "9": [482.50567626953125, 460.65625, 0.7018047571182251], "10": [75.13356018066406, 227.89385986328125, 0.9340986013412476], "11": [426.4094543457031, 480.0, 0.23986448347568512], "12": [284.9073791503906, 480.0, 0.36972755193710327], "13": [455.44561767578125, 445.3973388671875, 0.0021551279351115227], "14": [243.4496612548828, 452.4427490234375, 0.0037301837000995874], "15": [417.7811279296875, 480.0, 0.00020199593564029783], "16": [192.21029663085938, 467.37548828125, 0.0003067603101953864]}} +{"t": 36.488084, "tracked": true, "track_id": 1, "bbox": [17.030975341796875, 65.03107452392578, 553.6056518554688, 479.9356994628906], "det_conf": 0.9053426384925842, "mean_kpt_conf": 0.8737615421414375, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9337388767804947, "right_lift": -0.6664811522736478, "left_bend": 0.25380639192848276, "right_bend": 0.6055054767540465}, "keypoints": {"0": [350.5416259765625, 159.8498077392578, 0.9991676807403564], "1": [371.23614501953125, 137.15281677246094, 0.9980208873748779], "2": [331.00140380859375, 136.70945739746094, 0.996525228023529], "3": [397.3005065917969, 148.20767211914062, 0.9399810433387756], "4": [300.5793762207031, 147.56878662109375, 0.815024733543396], "5": [454.7249450683594, 257.1158447265625, 0.9888055324554443], "6": [245.164794921875, 261.45086669921875, 0.9978074431419373], "7": [511.50457763671875, 405.2276611328125, 0.816975474357605], "8": [132.97166442871094, 361.74920654296875, 0.9591026306152344], "9": [485.0211181640625, 462.779052734375, 0.687613844871521], "10": [75.46734619140625, 224.9857177734375, 0.9299694299697876], "11": [424.1077880859375, 480.0, 0.2285778522491455], "12": [283.3045959472656, 480.0, 0.35614457726478577], "13": [453.8583068847656, 443.9617004394531, 0.002220558002591133], "14": [245.44244384765625, 451.8511962890625, 0.003876633942127228], "15": [414.82281494140625, 479.55303955078125, 0.00021607692178804427], "16": [198.61032104492188, 467.5777282714844, 0.00032938687945716083]}} +{"t": 36.550611, "tracked": true, "track_id": 1, "bbox": [15.756098747253418, 64.77288818359375, 555.4725341796875, 479.7867126464844], "det_conf": 0.9033140540122986, "mean_kpt_conf": 0.9174149578267877, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9327044196667453, "right_lift": -0.6658484654275679, "left_bend": 0.2880842014891267, "right_bend": 0.6032018617014311}, "keypoints": {"0": [350.8689880371094, 159.40713500976562, 0.9991663694381714], "1": [371.2637023925781, 137.17413330078125, 0.9979556798934937], "2": [331.21710205078125, 136.70111083984375, 0.9966915845870972], "3": [396.61993408203125, 149.04066467285156, 0.9365309476852417], "4": [300.3379211425781, 148.50665283203125, 0.8229454755783081], "5": [454.4308776855469, 257.8165588378906, 0.9883759021759033], "6": [245.08425903320312, 261.1731872558594, 0.9977254271507263], "7": [512.1277465820312, 407.03424072265625, 0.8028151988983154], "8": [132.89878845214844, 361.2935791015625, 0.9564538598060608], "9": [479.84588623046875, 461.3695068359375, 0.6679689884185791], "10": [75.022705078125, 226.07032775878906, 0.9249351024627686], "11": [423.8419189453125, 480.0, 0.22208888828754425], "12": [283.5227966308594, 480.0, 0.34961292147636414], "13": [452.5569152832031, 445.47711181640625, 0.002215675776824355], "14": [246.66464233398438, 451.57012939453125, 0.0038967563305050135], "15": [413.7242431640625, 480.0, 0.0002219318994320929], "16": [200.55511474609375, 467.3387451171875, 0.00033938311389647424]}} +{"t": 36.58583, "tracked": true, "track_id": 1, "bbox": [18.869522094726562, 64.40396881103516, 560.9832763671875, 479.7444763183594], "det_conf": 0.9058561325073242, "mean_kpt_conf": 0.8877224226792654, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9251187798530245, "right_lift": -0.6783457251932936, "left_bend": 0.4399175191934114, "right_bend": 0.6282747276125465}, "keypoints": {"0": [349.8507080078125, 161.22137451171875, 0.9994207620620728], "1": [371.7733154296875, 138.09878540039062, 0.9986131191253662], "2": [329.70367431640625, 137.04869079589844, 0.9971044659614563], "3": [400.2547302246094, 149.13381958007812, 0.9509838819503784], "4": [298.54193115234375, 147.24295043945312, 0.792426586151123], "5": [461.15313720703125, 258.1209716796875, 0.9916342496871948], "6": [243.6231689453125, 262.41656494140625, 0.9982751607894897], "7": [521.001953125, 403.94793701171875, 0.8588538765907288], "8": [125.85177612304688, 371.1481018066406, 0.9668074250221252], "9": [475.1575927734375, 433.8660888671875, 0.7777155041694641], "10": [76.1121826171875, 231.65615844726562, 0.9514007568359375], "11": [432.3458251953125, 480.0, 0.2447875291109085], "12": [284.1341552734375, 480.0, 0.36943328380584717], "13": [463.52484130859375, 451.3053283691406, 0.0013248034520074725], "14": [236.04397583007812, 453.3528137207031, 0.0022360042203217745], "15": [429.5693359375, 480.0, 0.00010926096729235724], "16": [179.513671875, 465.2802734375, 0.00016422930639237165]}} +{"t": 36.649979, "tracked": true, "track_id": 1, "bbox": [27.62677574157715, 64.3182144165039, 564.0778198242188, 479.77874755859375], "det_conf": 0.9033206701278687, "mean_kpt_conf": 0.9323644421317361, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.921483034139676, "right_lift": -0.6627624169065367, "left_bend": 0.47147915659716094, "right_bend": 0.6423664371616592}, "keypoints": {"0": [350.22698974609375, 161.10476684570312, 0.9994057416915894], "1": [371.427734375, 137.9312744140625, 0.9985266923904419], "2": [329.7657775878906, 137.29147338867188, 0.9972035884857178], "3": [399.1721496582031, 148.78750610351562, 0.9445810317993164], "4": [298.1720275878906, 147.69891357421875, 0.8053900003433228], "5": [460.934814453125, 258.71319580078125, 0.9911020994186401], "6": [243.00198364257812, 261.1664733886719, 0.9981178045272827], "7": [522.3938598632812, 404.5184326171875, 0.8437185287475586], "8": [123.81721496582031, 366.65264892578125, 0.9635633230209351], "9": [474.93048095703125, 429.7444152832031, 0.7654894590377808], "10": [83.91302490234375, 226.42796325683594, 0.9489105939865112], "11": [433.2431335449219, 480.0, 0.22687947750091553], "12": [285.7238464355469, 480.0, 0.34700101613998413], "13": [464.75836181640625, 450.56524658203125, 0.0013112151063978672], "14": [243.763671875, 451.9935607910156, 0.002245830139145255], "15": [429.312744140625, 480.0, 0.00011343797814333811], "16": [188.77882385253906, 465.05810546875, 0.0001718282583169639]}} +{"t": 36.720559, "tracked": true, "track_id": 1, "bbox": [42.8244743347168, 64.55314636230469, 562.5460205078125, 479.8851013183594], "det_conf": 0.9064516425132751, "mean_kpt_conf": 0.9272776191884821, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9258504230479713, "right_lift": -0.6606482120849864, "left_bend": 0.4616824117246644, "right_bend": 0.6705747988698119}, "keypoints": {"0": [349.9593200683594, 160.44451904296875, 0.9993423819541931], "1": [371.1203308105469, 137.78964233398438, 0.9984439015388489], "2": [329.49462890625, 137.35409545898438, 0.9971011281013489], "3": [398.7548828125, 149.8140869140625, 0.9440491199493408], "4": [298.0087585449219, 149.11285400390625, 0.814530074596405], "5": [459.71484375, 259.0515441894531, 0.990253210067749], "6": [239.84788513183594, 261.9385070800781, 0.9979453682899475], "7": [519.4425048828125, 405.38739013671875, 0.8234872221946716], "8": [119.36318969726562, 367.9708251953125, 0.9576517343521118], "9": [472.41192626953125, 431.56451416015625, 0.7359951734542847], "10": [91.89599609375, 221.84817504882812, 0.9412544965744019], "11": [430.2546691894531, 480.0, 0.2046743929386139], "12": [282.1705627441406, 480.0, 0.3169041574001312], "13": [464.6676025390625, 445.6771240234375, 0.0013311660150066018], "14": [246.64071655273438, 449.05108642578125, 0.00229919352568686], "15": [428.4515686035156, 479.1606750488281, 0.00012692641757894307], "16": [194.1533203125, 463.9362487792969, 0.00019330051145516336]}} +{"t": 36.783508, "tracked": true, "track_id": 1, "bbox": [58.1273307800293, 64.50047302246094, 558.1463012695312, 479.9081115722656], "det_conf": 0.9176976084709167, "mean_kpt_conf": 0.9305143031206998, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9269214569704953, "right_lift": -0.6939911316614787, "left_bend": 0.4378281767681442, "right_bend": 0.6897498256478303}, "keypoints": {"0": [349.5532531738281, 160.59805297851562, 0.9993416666984558], "1": [370.48077392578125, 138.1191864013672, 0.9983214735984802], "2": [329.3245849609375, 137.4523162841797, 0.997133731842041], "3": [397.5880126953125, 149.86407470703125, 0.9355083703994751], "4": [298.0466003417969, 148.55047607421875, 0.8224029541015625], "5": [458.4827880859375, 256.9664611816406, 0.9906134605407715], "6": [240.626953125, 259.760498046875, 0.9978960752487183], "7": [518.00341796875, 403.9888610839844, 0.8380970358848572], "8": [126.29953002929688, 369.9605407714844, 0.9603162407875061], "9": [475.39239501953125, 431.90570068359375, 0.7515573501586914], "10": [102.22566223144531, 230.47027587890625, 0.9444689750671387], "11": [430.8980712890625, 480.0, 0.20655889809131622], "12": [283.6060485839844, 480.0, 0.31578847765922546], "13": [468.4483947753906, 440.53662109375, 0.001345334923826158], "14": [248.58432006835938, 444.1404724121094, 0.0023199000861495733], "15": [431.5354309082031, 479.8978576660156, 0.0001274463429581374], "16": [195.72348022460938, 465.2034606933594, 0.00019237364176660776]}} +{"t": 36.851921, "tracked": true, "track_id": 1, "bbox": [77.61119842529297, 64.77400970458984, 557.7740478515625, 479.89300537109375], "det_conf": 0.903117299079895, "mean_kpt_conf": 0.9348497282374989, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9313140679816458, "right_lift": -0.723716894189562, "left_bend": 0.4986250780539519, "right_bend": 0.7159333223398474}, "keypoints": {"0": [349.1340026855469, 160.358642578125, 0.9993274211883545], "1": [370.3519287109375, 137.5709991455078, 0.9982398748397827], "2": [328.237060546875, 137.12405395507812, 0.9970237612724304], "3": [397.87567138671875, 149.63467407226562, 0.9324374198913574], "4": [295.96893310546875, 148.9738006591797, 0.8146628737449646], "5": [460.5513610839844, 256.4355773925781, 0.9908922910690308], "6": [239.75360107421875, 259.9219055175781, 0.9978156089782715], "7": [518.94873046875, 405.7593994140625, 0.8515879511833191], "8": [133.94107055664062, 370.8893737792969, 0.9619343280792236], "9": [463.83355712890625, 427.5887145996094, 0.7882594466209412], "10": [114.92472839355469, 226.3331298828125, 0.951166033744812], "11": [433.217041015625, 480.0, 0.20563417673110962], "12": [283.6619567871094, 480.0, 0.3097360134124756], "13": [470.9757995605469, 436.390380859375, 0.00138487434014678], "14": [249.23565673828125, 439.7389221191406, 0.0023606058675795794], "15": [430.62774658203125, 480.0, 0.0001268754858756438], "16": [198.1612548828125, 464.8795166015625, 0.00019062386127188802]}} +{"t": 36.914505, "tracked": true, "track_id": 1, "bbox": [100.75621795654297, 64.31788635253906, 555.04541015625, 479.8111572265625], "det_conf": 0.9011087417602539, "mean_kpt_conf": 0.9018098657781427, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9362791159464027, "right_lift": -0.7168512542123109, "left_bend": 0.3078469121434152, "right_bend": 0.7263639081457018}, "keypoints": {"0": [349.06182861328125, 159.36257934570312, 0.999002993106842], "1": [368.669189453125, 136.80865478515625, 0.99751877784729], "2": [328.3464050292969, 137.44650268554688, 0.9966326355934143], "3": [394.6310119628906, 148.76849365234375, 0.9135001301765442], "4": [297.14227294921875, 150.16574096679688, 0.8366327881813049], "5": [456.5545654296875, 256.19769287109375, 0.9838077425956726], "6": [244.16921997070312, 257.3684997558594, 0.9965980648994446], "7": [513.0594482421875, 406.81207275390625, 0.732690155506134], "8": [146.22323608398438, 358.0714111328125, 0.9440298676490784], "9": [476.61297607421875, 459.1575927734375, 0.6059305667877197], "10": [134.66502380371094, 227.26524353027344, 0.9135648012161255], "11": [431.10162353515625, 480.0, 0.1686868816614151], "12": [289.0956115722656, 480.0, 0.28614237904548645], "13": [467.4329528808594, 439.07232666015625, 0.00204075057990849], "14": [266.1395568847656, 446.5322570800781, 0.004067611880600452], "15": [421.0084228515625, 480.0, 0.00024393585044890642], "16": [221.35653686523438, 480.0, 0.00040418701246380806]}} +{"t": 36.983338, "tracked": true, "track_id": 1, "bbox": [116.69430541992188, 63.391319274902344, 554.8268432617188, 479.7290954589844], "det_conf": 0.9092209339141846, "mean_kpt_conf": 0.8985520763830706, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.93486457315414, "right_lift": -0.6996586441167263, "left_bend": 0.30919563838084985, "right_bend": 0.7696104709528288}, "keypoints": {"0": [348.48529052734375, 159.70919799804688, 0.9989608526229858], "1": [367.8695983886719, 136.92759704589844, 0.9975579977035522], "2": [327.6320495605469, 138.16705322265625, 0.9965152740478516], "3": [394.36639404296875, 148.76348876953125, 0.9154598712921143], "4": [297.28302001953125, 151.0526123046875, 0.8353156447410583], "5": [456.1517028808594, 256.7022705078125, 0.9819822311401367], "6": [243.36489868164062, 255.31112670898438, 0.9961795806884766], "7": [514.2568359375, 409.7156066894531, 0.7100359797477722], "8": [139.804931640625, 356.72320556640625, 0.9385495185852051], "9": [479.98529052734375, 458.91314697265625, 0.6008548736572266], "10": [149.3248748779297, 224.88955688476562, 0.9126610159873962], "11": [429.5775146484375, 480.0, 0.1382034420967102], "12": [288.4015808105469, 480.0, 0.2427171915769577], "13": [466.860107421875, 435.3147277832031, 0.0018797757802531123], "14": [272.2372741699219, 442.62841796875, 0.003864218946546316], "15": [423.53411865234375, 480.0, 0.00024254505115095526], "16": [230.02703857421875, 480.0, 0.00041198983672074974]}} +{"t": 37.047997, "tracked": true, "track_id": 1, "bbox": [117.7545166015625, 64.59581756591797, 547.217529296875, 479.7584533691406], "det_conf": 0.9151394367218018, "mean_kpt_conf": 0.921193312514912, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9300145914478672, "right_lift": -0.71758953221866, "left_bend": 0.3643174106894441, "right_bend": 0.8198675963219204}, "keypoints": {"0": [347.3209228515625, 159.823486328125, 0.9990793466567993], "1": [367.49005126953125, 137.2009735107422, 0.998150646686554], "2": [326.3092041015625, 137.89146423339844, 0.9961974620819092], "3": [394.7740783691406, 148.12399291992188, 0.9443081021308899], "4": [296.13946533203125, 149.0697021484375, 0.8245070576667786], "5": [453.8949890136719, 255.18060302734375, 0.9895108342170715], "6": [235.31808471679688, 253.9630126953125, 0.996843695640564], "7": [515.3292236328125, 410.63970947265625, 0.8150749802589417], "8": [121.70074462890625, 371.0262756347656, 0.935943603515625], "9": [478.56536865234375, 448.6908874511719, 0.7110682129859924], "10": [150.8786163330078, 230.38314819335938, 0.9224424958229065], "11": [425.903076171875, 480.0, 0.15166880190372467], "12": [280.0154113769531, 480.0, 0.22551420331001282], "13": [472.55389404296875, 430.217529296875, 0.0013271392090246081], "14": [259.4948425292969, 436.06610107421875, 0.0021799763198941946], "15": [443.5169372558594, 476.10394287109375, 0.00016792888345662504], "16": [217.21304321289062, 467.6126708984375, 0.00024490506621077657]}} +{"t": 37.109402, "tracked": true, "track_id": 1, "bbox": [117.46648406982422, 64.97730255126953, 545.720703125, 479.7810974121094], "det_conf": 0.9150470495223999, "mean_kpt_conf": 0.9188322424888611, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9365128533432526, "right_lift": -0.7252223798030257, "left_bend": 0.40081679844044915, "right_bend": 0.8224846873070796}, "keypoints": {"0": [347.482666015625, 159.973876953125, 0.9989891648292542], "1": [367.8427429199219, 137.493896484375, 0.9979821443557739], "2": [326.8467712402344, 138.10614013671875, 0.9959140419960022], "3": [395.28509521484375, 148.25845336914062, 0.9446179866790771], "4": [296.9168701171875, 148.89263916015625, 0.8224212527275085], "5": [454.51837158203125, 256.2983703613281, 0.9895426034927368], "6": [233.38250732421875, 255.00791931152344, 0.9968787431716919], "7": [512.7056274414062, 411.7117919921875, 0.8070926070213318], "8": [123.42532348632812, 370.827392578125, 0.9319869875907898], "9": [471.15118408203125, 444.6226806640625, 0.7041264772415161], "10": [152.88381958007812, 226.80503845214844, 0.9176026582717896], "11": [424.24114990234375, 480.0, 0.15704499185085297], "12": [277.3333740234375, 480.0, 0.23183248937129974], "13": [473.71575927734375, 431.62286376953125, 0.001407779287546873], "14": [265.146240234375, 438.0556945800781, 0.0023210812360048294], "15": [441.4814453125, 473.35736083984375, 0.00017839968495536596], "16": [229.5947265625, 465.5389709472656, 0.00026158904074691236]}} +{"t": 37.144931, "tracked": true, "track_id": 1, "bbox": [116.89984893798828, 64.5967025756836, 545.8104248046875, 479.8872375488281], "det_conf": 0.9153061509132385, "mean_kpt_conf": 0.9177858396009966, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9321968069814723, "right_lift": -0.7207306754392682, "left_bend": 0.3535445389760124, "right_bend": 0.8211900927248609}, "keypoints": {"0": [348.07177734375, 160.14068603515625, 0.9989915490150452], "1": [368.3867492675781, 137.51681518554688, 0.9979934692382812], "2": [327.36724853515625, 138.15438842773438, 0.9959994554519653], "3": [395.659912109375, 147.89743041992188, 0.9431183934211731], "4": [297.26409912109375, 148.63043212890625, 0.8296859860420227], "5": [455.2541809082031, 254.30148315429688, 0.9892977476119995], "6": [233.69862365722656, 255.11532592773438, 0.9968379735946655], "7": [514.6331787109375, 407.2304382324219, 0.8040961623191833], "8": [123.22390747070312, 369.9750671386719, 0.9314281940460205], "9": [475.9039306640625, 449.6177673339844, 0.6920657753944397], "10": [153.2190704345703, 225.1259765625, 0.9161295294761658], "11": [426.3592529296875, 480.0, 0.1547265648841858], "12": [279.2061462402344, 480.0, 0.2290915846824646], "13": [475.41302490234375, 429.18756103515625, 0.0014089703327044845], "14": [266.09222412109375, 437.611328125, 0.002330961637198925], "15": [440.0782470703125, 474.59637451171875, 0.00018198271573055536], "16": [227.71347045898438, 466.86273193359375, 0.00026665933546610177]}} +{"t": 37.179787, "tracked": true, "track_id": 1, "bbox": [116.22193145751953, 64.56066131591797, 545.8521118164062, 480.0], "det_conf": 0.9127820134162903, "mean_kpt_conf": 0.919961457902735, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9320233732481598, "right_lift": -0.7239031390704962, "left_bend": 0.3870364533474921, "right_bend": 0.815794850649745}, "keypoints": {"0": [348.2150573730469, 159.92327880859375, 0.9990354776382446], "1": [368.4513854980469, 137.35044860839844, 0.9980144500732422], "2": [327.64990234375, 137.84889221191406, 0.9961069226264954], "3": [395.6187744140625, 147.819580078125, 0.9422928094863892], "4": [297.5083923339844, 148.24095153808594, 0.8279764652252197], "5": [455.4786071777344, 255.73031616210938, 0.9896961450576782], "6": [233.61366271972656, 255.56910705566406, 0.9969493746757507], "7": [515.0264282226562, 408.8766784667969, 0.8101464509963989], "8": [124.20458984375, 370.370361328125, 0.9334001541137695], "9": [476.14666748046875, 443.3726806640625, 0.7067203521728516], "10": [150.94395446777344, 225.60977172851562, 0.9192374348640442], "11": [426.420654296875, 480.0, 0.16087810695171356], "12": [278.92620849609375, 480.0, 0.23653997480869293], "13": [476.5726318359375, 432.28167724609375, 0.0014032118488103151], "14": [266.6355285644531, 439.64459228515625, 0.0023056308273226023], "15": [444.0046081542969, 475.03509521484375, 0.0001735045952955261], "16": [231.40248107910156, 467.2179260253906, 0.0002532282960601151]}} +{"t": 37.246266, "tracked": true, "track_id": 1, "bbox": [115.816650390625, 64.32532501220703, 546.694091796875, 480.0], "det_conf": 0.9068167209625244, "mean_kpt_conf": 0.9133382385427301, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9361295529572855, "right_lift": -0.7324626467958398, "left_bend": 0.4296342597667151, "right_bend": 0.8116982730480491}, "keypoints": {"0": [349.9847106933594, 160.45651245117188, 0.9990249872207642], "1": [370.47283935546875, 137.6734619140625, 0.9978740215301514], "2": [328.7897033691406, 137.86492919921875, 0.9963517189025879], "3": [397.2121276855469, 148.21347045898438, 0.9326918125152588], "4": [297.12750244140625, 148.08187866210938, 0.8423786759376526], "5": [455.1787109375, 257.7320251464844, 0.9886815547943115], "6": [234.12466430664062, 256.0125732421875, 0.996777355670929], "7": [513.5059814453125, 413.0030517578125, 0.7809484601020813], "8": [125.55999755859375, 372.814453125, 0.9262085556983948], "9": [475.15032958984375, 438.15435791015625, 0.6748531460762024], "10": [148.65280151367188, 227.21688842773438, 0.910930335521698], "11": [426.55401611328125, 480.0, 0.14978933334350586], "12": [279.66015625, 480.0, 0.22562657296657562], "13": [473.8453063964844, 436.0461730957031, 0.001378155080601573], "14": [264.9780578613281, 441.7662353515625, 0.002287843730300665], "15": [442.4168701171875, 475.3169250488281, 0.00017734814900904894], "16": [230.70318603515625, 467.00994873046875, 0.0002584303729236126]}} +{"t": 37.309686, "tracked": true, "track_id": 1, "bbox": [113.48805236816406, 63.64007568359375, 552.718017578125, 480.0], "det_conf": 0.906116783618927, "mean_kpt_conf": 0.9007582339373502, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9371196248483451, "right_lift": -0.6916391351668695, "left_bend": 0.257175074183187, "right_bend": 0.750917206650852}, "keypoints": {"0": [352.807861328125, 160.5064697265625, 0.998995840549469], "1": [372.4209899902344, 136.99526977539062, 0.9973479509353638], "2": [331.1718444824219, 137.8849639892578, 0.9968584775924683], "3": [397.85540771484375, 147.39346313476562, 0.8906074166297913], "4": [298.1629333496094, 149.04949951171875, 0.8619357943534851], "5": [456.63812255859375, 256.08123779296875, 0.9826587438583374], "6": [242.41770935058594, 254.475341796875, 0.9961926937103271], "7": [513.1810302734375, 407.9041748046875, 0.7221753597259521], "8": [138.88916015625, 353.61700439453125, 0.9386708736419678], "9": [486.8918151855469, 462.12933349609375, 0.6086671352386475], "10": [142.18130493164062, 219.39971923828125, 0.9142302870750427], "11": [428.1884460449219, 480.0, 0.14200834929943085], "12": [286.0836486816406, 480.0, 0.24195924401283264], "13": [464.1850891113281, 433.35858154296875, 0.0019532821606844664], "14": [268.2508544921875, 442.4288024902344, 0.003819296834990382], "15": [417.5502014160156, 480.0, 0.00024740147637203336], "16": [226.44256591796875, 480.0, 0.00039813981857150793]}} +{"t": 37.372911, "tracked": true, "track_id": 1, "bbox": [99.28761291503906, 65.01982116699219, 556.239990234375, 480.0], "det_conf": 0.9044502377510071, "mean_kpt_conf": 0.932621571150693, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9238855817245161, "right_lift": -0.6767091063501315, "left_bend": 0.44271105740045963, "right_bend": 0.7337680428822287}, "keypoints": {"0": [354.7409362792969, 160.7093048095703, 0.9993150234222412], "1": [375.277099609375, 137.8463134765625, 0.9979994893074036], "2": [333.31988525390625, 137.11447143554688, 0.9973529577255249], "3": [400.94500732421875, 148.73348999023438, 0.9036222100257874], "4": [298.6921691894531, 147.30972290039062, 0.854195237159729], "5": [460.48101806640625, 255.23484802246094, 0.989694356918335], "6": [240.26927185058594, 256.02362060546875, 0.9975293278694153], "7": [520.2237548828125, 399.4730224609375, 0.8357231616973877], "8": [127.59727478027344, 359.5837097167969, 0.958739161491394], "9": [469.89422607421875, 431.9219970703125, 0.773908257484436], "10": [126.33197021484375, 217.09230041503906, 0.9507580995559692], "11": [434.0830993652344, 480.0, 0.19498896598815918], "12": [286.12841796875, 480.0, 0.29705387353897095], "13": [467.305908203125, 439.295654296875, 0.001355793559923768], "14": [257.1435852050781, 443.37640380859375, 0.002311054617166519], "15": [425.494873046875, 480.0, 0.0001286257174797356], "16": [207.82955932617188, 468.9894104003906, 0.0001891511637950316]}} +{"t": 37.409209, "tracked": true, "track_id": 1, "bbox": [88.2109375, 64.59396362304688, 557.6192626953125, 480.0], "det_conf": 0.8981263637542725, "mean_kpt_conf": 0.9319278435273604, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9271528742651833, "right_lift": -0.6813610685053958, "left_bend": 0.4650095948786475, "right_bend": 0.7193502231701336}, "keypoints": {"0": [354.23956298828125, 161.2060546875, 0.9993155002593994], "1": [375.43487548828125, 137.97674560546875, 0.9981016516685486], "2": [333.0404052734375, 137.130859375, 0.997234046459198], "3": [402.25848388671875, 148.47276306152344, 0.9157758951187134], "4": [299.15484619140625, 146.66015625, 0.8385499715805054], "5": [461.3585510253906, 256.248046875, 0.9896606206893921], "6": [242.0445556640625, 256.45794677734375, 0.9976028800010681], "7": [520.451416015625, 402.47320556640625, 0.8326289653778076], "8": [129.3428497314453, 361.37060546875, 0.959021806716919], "9": [468.06512451171875, 430.6838684082031, 0.7730113863945007], "10": [120.70028686523438, 218.71983337402344, 0.9503035545349121], "11": [433.06512451171875, 480.0, 0.19438613951206207], "12": [285.2635192871094, 480.0, 0.2991039454936981], "13": [466.0631408691406, 441.3508605957031, 0.0013465079246088862], "14": [253.64874267578125, 443.96923828125, 0.002315439051017165], "15": [426.0552062988281, 480.0, 0.00012661503569688648], "16": [203.26498413085938, 466.5403747558594, 0.00018866088066715747]}} +{"t": 37.473691, "tracked": true, "track_id": 1, "bbox": [69.66875457763672, 64.57806396484375, 559.9896850585938, 480.0], "det_conf": 0.9127219915390015, "mean_kpt_conf": 0.9319479465484619, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9216840090838462, "right_lift": -0.6940318201048662, "left_bend": 0.48652215373924507, "right_bend": 0.711925298267624}, "keypoints": {"0": [355.5760498046875, 161.42913818359375, 0.9993485808372498], "1": [376.64935302734375, 138.04989624023438, 0.9980467557907104], "2": [334.70440673828125, 136.90383911132812, 0.9974250793457031], "3": [402.84515380859375, 147.96949768066406, 0.9056729078292847], "4": [300.47003173828125, 145.50360107421875, 0.8498908281326294], "5": [461.7452697753906, 256.414306640625, 0.990138053894043], "6": [241.6104736328125, 258.59576416015625, 0.9976922273635864], "7": [522.9686279296875, 401.8707580566406, 0.8324708938598633], "8": [129.19720458984375, 366.9630126953125, 0.9574064016342163], "9": [472.3080139160156, 425.76654052734375, 0.7741261124610901], "10": [114.35858154296875, 220.9697723388672, 0.9492095708847046], "11": [433.156005859375, 480.0, 0.19101224839687347], "12": [284.88006591796875, 480.0, 0.2897380292415619], "13": [468.318115234375, 440.86065673828125, 0.001345442607998848], "14": [255.27719116210938, 444.3965759277344, 0.0022579601500183344], "15": [427.9100341796875, 479.6170654296875, 0.00012335539213381708], "16": [205.32742309570312, 463.18536376953125, 0.00017942837439477444]}} +{"t": 37.508004, "tracked": true, "track_id": 1, "bbox": [61.76585006713867, 64.66356658935547, 558.299560546875, 480.0], "det_conf": 0.9183685779571533, "mean_kpt_conf": 0.9324032339182767, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9195438163790964, "right_lift": -0.6848579652351183, "left_bend": 0.4602517003942711, "right_bend": 0.6995885845040508}, "keypoints": {"0": [355.2564697265625, 162.0008544921875, 0.9993550181388855], "1": [376.72125244140625, 138.21653747558594, 0.9981131553649902], "2": [334.60809326171875, 136.70187377929688, 0.997356653213501], "3": [403.28363037109375, 147.2423095703125, 0.9093543291091919], "4": [300.7278137207031, 143.8564453125, 0.8430050015449524], "5": [460.3697509765625, 255.42393493652344, 0.9898121953010559], "6": [243.34469604492188, 257.74639892578125, 0.997658371925354], "7": [522.265380859375, 400.2523193359375, 0.8336808681488037], "8": [127.92202758789062, 366.2281799316406, 0.9578258395195007], "9": [473.56591796875, 428.70452880859375, 0.7792267203330994], "10": [109.17240905761719, 219.83395385742188, 0.951047420501709], "11": [431.82763671875, 480.0, 0.18294094502925873], "12": [285.4022216796875, 480.0, 0.2794826924800873], "13": [464.9457702636719, 439.44525146484375, 0.0013348209904506803], "14": [252.9593048095703, 442.8734130859375, 0.0022221780382096767], "15": [425.9674072265625, 479.9800109863281, 0.00012215455353725702], "16": [200.1863555908203, 461.9007568359375, 0.00017687932995613664]}} +{"t": 37.542907, "tracked": true, "track_id": 1, "bbox": [56.77263259887695, 64.7243423461914, 560.233154296875, 480.0], "det_conf": 0.9187618494033813, "mean_kpt_conf": 0.9330917380072854, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9175280544528817, "right_lift": -0.6741763471402685, "left_bend": 0.4556545845561428, "right_bend": 0.6890654278677012}, "keypoints": {"0": [355.6369323730469, 161.4822235107422, 0.9993698000907898], "1": [377.1757507324219, 137.9889678955078, 0.9981963038444519], "2": [335.0103759765625, 136.30191040039062, 0.9973432421684265], "3": [403.8468322753906, 147.9715576171875, 0.9154759049415588], "4": [301.422119140625, 144.23617553710938, 0.837261438369751], "5": [461.0453796386719, 256.4474792480469, 0.9899187088012695], "6": [245.5287628173828, 257.96832275390625, 0.9977179765701294], "7": [523.508056640625, 400.5647277832031, 0.8359744548797607], "8": [128.38336181640625, 364.9001159667969, 0.9594848155975342], "9": [475.9356994628906, 429.61993408203125, 0.7808119654655457], "10": [107.18025207519531, 220.58876037597656, 0.9524545073509216], "11": [434.670166015625, 480.0, 0.18543455004692078], "12": [289.43133544921875, 480.0, 0.2850543260574341], "13": [467.001708984375, 440.4334716796875, 0.0013119501527398825], "14": [257.33819580078125, 442.89544677734375, 0.0022105660755187273], "15": [428.76873779296875, 480.0, 0.00011959013500018045], "16": [203.90359497070312, 461.67523193359375, 0.00017573953664395958]}} +{"t": 37.609223, "tracked": true, "track_id": 1, "bbox": [53.45150375366211, 64.94890594482422, 560.239990234375, 479.9681396484375], "det_conf": 0.9178993701934814, "mean_kpt_conf": 0.9332030794837258, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9184340085728835, "right_lift": -0.6795088440867115, "left_bend": 0.5030153759650644, "right_bend": 0.685155443220035}, "keypoints": {"0": [356.00872802734375, 161.18948364257812, 0.9993712306022644], "1": [377.6397705078125, 137.99188232421875, 0.9982017278671265], "2": [335.3826904296875, 136.3905029296875, 0.9973548650741577], "3": [404.372314453125, 148.5537872314453, 0.9181971549987793], "4": [301.7001953125, 145.13934326171875, 0.8321702480316162], "5": [462.6519470214844, 255.7930908203125, 0.9901042580604553], "6": [245.76031494140625, 258.0611267089844, 0.9977700710296631], "7": [525.165283203125, 400.9349365234375, 0.8369418382644653], "8": [129.128173828125, 366.0836181640625, 0.960161030292511], "9": [468.8328857421875, 424.5675048828125, 0.7826417684555054], "10": [104.89382934570312, 220.9114990234375, 0.9523196816444397], "11": [436.072021484375, 480.0, 0.1919744610786438], "12": [289.7525329589844, 480.0, 0.29429736733436584], "13": [467.6846008300781, 440.89752197265625, 0.0013262912398204207], "14": [256.2083435058594, 442.185546875, 0.002233380451798439], "15": [428.6842041015625, 480.0, 0.00011912690388271585], "16": [201.75201416015625, 459.68463134765625, 0.00017563953588251024]}} +{"t": 37.671298, "tracked": true, "track_id": 1, "bbox": [54.44123458862305, 64.55615234375, 559.954833984375, 479.77874755859375], "det_conf": 0.9189298152923584, "mean_kpt_conf": 0.9327584938569502, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9166282930887822, "right_lift": -0.6843349045240102, "left_bend": 0.4902952582659439, "right_bend": 0.6953105559131405}, "keypoints": {"0": [355.58428955078125, 161.37612915039062, 0.9993645548820496], "1": [377.15863037109375, 137.8022003173828, 0.9981403350830078], "2": [334.84930419921875, 136.2593994140625, 0.9974047541618347], "3": [403.8452453613281, 147.5653533935547, 0.912571370601654], "4": [300.78643798828125, 144.19259643554688, 0.8415552973747253], "5": [462.3123779296875, 255.9315643310547, 0.9901210069656372], "6": [243.29931640625, 258.1444396972656, 0.9977109432220459], "7": [525.4676513671875, 400.750244140625, 0.833292543888092], "8": [127.70515441894531, 366.63128662109375, 0.9577592611312866], "9": [471.8111572265625, 426.1236572265625, 0.7813853621482849], "10": [107.34919738769531, 222.2924346923828, 0.9510380029678345], "11": [433.99102783203125, 480.0, 0.1853667050600052], "12": [286.62152099609375, 480.0, 0.28257423639297485], "13": [466.76763916015625, 440.02264404296875, 0.0013304428430274129], "14": [255.7375030517578, 442.1816101074219, 0.0022214348427951336], "15": [426.05438232421875, 479.3385925292969, 0.00012065344344591722], "16": [203.23641967773438, 459.9010314941406, 0.00017577405378688127]}} +{"t": 37.705095, "tracked": true, "track_id": 1, "bbox": [57.085208892822266, 64.28816986083984, 558.5908203125, 479.7420959472656], "det_conf": 0.9142866134643555, "mean_kpt_conf": 0.9330872026356783, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9213969702680486, "right_lift": -0.6871252483096213, "left_bend": 0.4799025424317131, "right_bend": 0.6987803633213227}, "keypoints": {"0": [355.08270263671875, 160.9919891357422, 0.9993470311164856], "1": [376.59173583984375, 138.04461669921875, 0.998094379901886], "2": [334.4338684082031, 136.36441040039062, 0.997342050075531], "3": [402.96990966796875, 149.01504516601562, 0.9128654599189758], "4": [300.6778564453125, 145.40090942382812, 0.8408306837081909], "5": [460.56951904296875, 256.201416015625, 0.9900730848312378], "6": [243.7158203125, 257.2694396972656, 0.9976617097854614], "7": [522.1568603515625, 402.22064208984375, 0.8376238942146301], "8": [128.54769897460938, 366.1898498535156, 0.9587267637252808], "9": [469.015869140625, 428.6999816894531, 0.7804504036903381], "10": [109.5064697265625, 223.90890502929688, 0.9509437680244446], "11": [432.3642578125, 480.0, 0.18387316167354584], "12": [286.22418212890625, 480.0, 0.28006839752197266], "13": [466.5326843261719, 437.0761413574219, 0.0013375086709856987], "14": [255.5622100830078, 438.5850830078125, 0.0022381797898560762], "15": [427.21868896484375, 479.19598388671875, 0.0001248722692253068], "16": [202.53182983398438, 459.614990234375, 0.00018233149603474885]}} +{"t": 37.769922, "tracked": true, "track_id": 1, "bbox": [67.99320220947266, 64.31316375732422, 557.6707763671875, 479.7890319824219], "det_conf": 0.9083529114723206, "mean_kpt_conf": 0.9318184202367609, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9208670914679997, "right_lift": -0.691961011167834, "left_bend": 0.4303366735903185, "right_bend": 0.7177241284766779}, "keypoints": {"0": [354.2871398925781, 160.26629638671875, 0.9993209838867188], "1": [375.6083984375, 137.70396423339844, 0.9980734586715698], "2": [333.49658203125, 136.37350463867188, 0.9973359704017639], "3": [401.9818115234375, 149.36660766601562, 0.9143770933151245], "4": [299.78204345703125, 146.51702880859375, 0.8478614687919617], "5": [460.92108154296875, 256.089599609375, 0.9900446534156799], "6": [240.41726684570312, 257.17291259765625, 0.9976596832275391], "7": [522.2384033203125, 400.917724609375, 0.8357900381088257], "8": [128.9697265625, 363.9932861328125, 0.9584919810295105], "9": [475.6529846191406, 434.1298828125, 0.7637847065925598], "10": [117.68629455566406, 223.60623168945312, 0.9472625851631165], "11": [431.60968017578125, 480.0, 0.19169054925441742], "12": [283.1486511230469, 480.0, 0.2918291389942169], "13": [469.2158508300781, 437.3656311035156, 0.001322366064414382], "14": [255.0068359375, 440.789794921875, 0.0022604966070502996], "15": [429.12567138671875, 480.0, 0.00012860022252425551], "16": [206.15765380859375, 464.0548400878906, 0.00019015678844880313]}} +{"t": 37.838853, "tracked": true, "track_id": 1, "bbox": [86.22697448730469, 64.27962493896484, 551.3221435546875, 479.8810729980469], "det_conf": 0.8999115228652954, "mean_kpt_conf": 0.9208536852489818, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9287076495942559, "right_lift": -0.7144887425356478, "left_bend": 0.4260938571444766, "right_bend": 0.7488729843339329}, "keypoints": {"0": [352.17816162109375, 159.97189331054688, 0.999165415763855], "1": [372.7948913574219, 137.61642456054688, 0.9981114864349365], "2": [331.74017333984375, 137.11427307128906, 0.9966188669204712], "3": [398.9961853027344, 148.59588623046875, 0.9381496906280518], "4": [300.37091064453125, 147.38235473632812, 0.8354367613792419], "5": [456.7803955078125, 256.4207458496094, 0.990104615688324], "6": [237.59259033203125, 257.4168701171875, 0.9971652626991272], "7": [518.4957275390625, 410.98797607421875, 0.8129018545150757], "8": [120.4410400390625, 377.0535888671875, 0.9340277910232544], "9": [473.98675537109375, 442.2332763671875, 0.7084604501724243], "10": [118.41754150390625, 232.89361572265625, 0.9192483425140381], "11": [425.6286926269531, 480.0, 0.1528002768754959], "12": [279.2481994628906, 480.0, 0.22428005933761597], "13": [469.2054443359375, 432.2509765625, 0.0013448527315631509], "14": [254.2003173828125, 436.5833740234375, 0.0020933502819389105], "15": [438.7227783203125, 474.3465576171875, 0.00015965246711857617], "16": [211.03627014160156, 460.0915832519531, 0.0002223054616479203]}} +{"t": 37.902552, "tracked": true, "track_id": 1, "bbox": [103.53382873535156, 63.73384475708008, 552.4740600585938, 479.78155517578125], "det_conf": 0.9053731560707092, "mean_kpt_conf": 0.9002255634828047, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9377005123219688, "right_lift": -0.7315889211740342, "left_bend": 0.37301064809964596, "right_bend": 0.7526523854392273}, "keypoints": {"0": [352.7033996582031, 159.3195343017578, 0.9990556836128235], "1": [372.361328125, 136.40444946289062, 0.9972499012947083], "2": [331.5326232910156, 136.484619140625, 0.9970958232879639], "3": [397.0555725097656, 148.1154327392578, 0.8828052282333374], "4": [297.933837890625, 148.2415008544922, 0.8645263314247131], "5": [458.6285095214844, 257.6039733886719, 0.9836139678955078], "6": [241.75790405273438, 257.0175476074219, 0.996335506439209], "7": [516.5277099609375, 413.86517333984375, 0.7154862880706787], "8": [142.0538330078125, 364.01104736328125, 0.9355397820472717], "9": [470.0753479003906, 457.4703369140625, 0.6164357662200928], "10": [138.39990234375, 228.3050079345703, 0.9143369197845459], "11": [431.8918151855469, 480.0, 0.1369999647140503], "12": [288.0989990234375, 480.0, 0.23272866010665894], "13": [467.1302490234375, 437.61993408203125, 0.0019002326298505068], "14": [271.6456298828125, 443.4085693359375, 0.003660505171865225], "15": [417.8799133300781, 480.0, 0.0002262643101857975], "16": [230.2357177734375, 480.0, 0.0003606632526498288]}} +{"t": 37.936105, "tracked": true, "track_id": 1, "bbox": [109.99586486816406, 63.74686813354492, 554.07470703125, 479.7033386230469], "det_conf": 0.9076693058013916, "mean_kpt_conf": 0.8984792991117998, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9378868819450257, "right_lift": -0.7318818306134846, "left_bend": 0.38191191939138047, "right_bend": 0.7657526953141769}, "keypoints": {"0": [351.7078552246094, 159.89996337890625, 0.9990218877792358], "1": [371.73541259765625, 136.90895080566406, 0.9972550272941589], "2": [330.6199645996094, 136.74826049804688, 0.9969943761825562], "3": [396.9779052734375, 148.55853271484375, 0.8861986994743347], "4": [297.2485656738281, 147.95205688476562, 0.8601776957511902], "5": [457.30291748046875, 258.73992919921875, 0.9824830293655396], "6": [240.58868408203125, 256.3464050292969, 0.996117115020752], "7": [514.9164428710938, 414.4866943359375, 0.7032546997070312], "8": [140.69427490234375, 363.6365661621094, 0.9324685335159302], "9": [471.3955078125, 453.0669250488281, 0.6163844466209412], "10": [142.54115295410156, 229.88369750976562, 0.9129167795181274], "11": [429.0555114746094, 480.0, 0.12675806879997253], "12": [285.2851867675781, 480.0, 0.21848078072071075], "13": [464.6400146484375, 435.6993408203125, 0.0018769571324810386], "14": [268.8807373046875, 440.56500244140625, 0.0036444629076868296], "15": [418.47320556640625, 480.0, 0.00023326837981585413], "16": [229.86026000976562, 480.0, 0.000374331051716581]}} +{"t": 38.001429, "tracked": true, "track_id": 1, "bbox": [116.49055480957031, 63.42421340942383, 555.371337890625, 479.65557861328125], "det_conf": 0.9113065004348755, "mean_kpt_conf": 0.8991730809211731, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9441388575642957, "right_lift": -0.7127320780759763, "left_bend": 0.34358836721244945, "right_bend": 0.776284122804234}, "keypoints": {"0": [350.2735290527344, 159.165283203125, 0.9989343285560608], "1": [369.90887451171875, 136.58065795898438, 0.9973286390304565], "2": [328.7901916503906, 137.44903564453125, 0.9965807795524597], "3": [395.7527770996094, 149.4337921142578, 0.9028515815734863], "4": [296.81805419921875, 151.1390838623047, 0.8473141193389893], "5": [456.1981506347656, 258.07818603515625, 0.9818868637084961], "6": [242.66329956054688, 255.45631408691406, 0.9960094690322876], "7": [510.71044921875, 414.2532958984375, 0.7067378759384155], "8": [140.17892456054688, 359.591064453125, 0.9349515438079834], "9": [471.0743408203125, 457.350341796875, 0.6140727996826172], "10": [150.1092071533203, 226.7005157470703, 0.9142358899116516], "11": [429.6566162109375, 480.0, 0.1301635205745697], "12": [288.90496826171875, 480.0, 0.22709278762340546], "13": [462.3676452636719, 433.542236328125, 0.001954535488039255], "14": [274.4901123046875, 439.72686767578125, 0.0039105769246816635], "15": [415.0793151855469, 480.0, 0.00025210040621459484], "16": [235.015869140625, 480.0, 0.00041812690324150026]}} +{"t": 38.035196, "tracked": true, "track_id": 1, "bbox": [117.79850006103516, 63.20477294921875, 554.357666015625, 479.5992126464844], "det_conf": 0.9128276705741882, "mean_kpt_conf": 0.8995178612795743, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.937824154762512, "right_lift": -0.7163671746216307, "left_bend": 0.31626975861886053, "right_bend": 0.7789689450691462}, "keypoints": {"0": [349.5317077636719, 159.01309204101562, 0.9989364743232727], "1": [369.2154846191406, 136.51419067382812, 0.9974634647369385], "2": [328.31427001953125, 137.53033447265625, 0.9965233206748962], "3": [395.6222839355469, 149.2928009033203, 0.9115700125694275], "4": [297.0787658691406, 151.33499145507812, 0.8435640335083008], "5": [457.3435974121094, 255.99642944335938, 0.9822888374328613], "6": [242.7664337158203, 256.9985656738281, 0.9962003827095032], "7": [513.404052734375, 407.46063232421875, 0.7126624584197998], "8": [142.0680389404297, 360.3876953125, 0.9374867677688599], "9": [476.15521240234375, 457.5835876464844, 0.6052022576332092], "10": [152.4337158203125, 227.46487426757812, 0.9127984642982483], "11": [432.630615234375, 480.0, 0.1414109617471695], "12": [290.61822509765625, 480.0, 0.2455102503299713], "13": [468.69549560546875, 434.1766662597656, 0.0019360146252438426], "14": [276.3083801269531, 442.9565734863281, 0.003938806708902121], "15": [420.41632080078125, 480.0, 0.00024820311227813363], "16": [234.77084350585938, 480.0, 0.00041803446947596967]}} +{"t": 38.09966, "tracked": true, "track_id": 1, "bbox": [117.58973693847656, 63.268585205078125, 552.6207885742188, 479.7708740234375], "det_conf": 0.9123525023460388, "mean_kpt_conf": 0.8977074731479991, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9430687483514504, "right_lift": -0.7154175740351133, "left_bend": 0.3320760316584519, "right_bend": 0.7857355017823074}, "keypoints": {"0": [349.3658447265625, 159.14019775390625, 0.9988828301429749], "1": [368.9349365234375, 136.5966033935547, 0.9973533153533936], "2": [328.03424072265625, 137.91319274902344, 0.9963982105255127], "3": [395.4350280761719, 149.1668701171875, 0.9113671779632568], "4": [296.7496337890625, 151.83753967285156, 0.8425301909446716], "5": [457.12451171875, 257.07928466796875, 0.9820690751075745], "6": [241.69171142578125, 256.911865234375, 0.9961751699447632], "7": [511.0272216796875, 409.91839599609375, 0.7040782570838928], "8": [141.5861053466797, 359.4130859375, 0.935763418674469], "9": [471.68389892578125, 456.2331237792969, 0.5997447371482849], "10": [154.99542236328125, 226.36056518554688, 0.9104198217391968], "11": [430.29779052734375, 480.0, 0.14495648443698883], "12": [288.1198425292969, 480.0, 0.25220996141433716], "13": [464.79046630859375, 437.279052734375, 0.001984683331102133], "14": [275.22088623046875, 445.6000671386719, 0.004057055339217186], "15": [415.9226989746094, 480.0, 0.00025357186677865684], "16": [236.6072540283203, 480.0, 0.0004285020404495299]}} +{"t": 38.135877, "tracked": true, "track_id": 1, "bbox": [117.49592590332031, 63.16767883300781, 553.8724975585938, 479.89849853515625], "det_conf": 0.9128460884094238, "mean_kpt_conf": 0.8969580314376138, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9359542001657399, "right_lift": -0.7231528856623808, "left_bend": 0.34797524788685014, "right_bend": 0.7897764152358261}, "keypoints": {"0": [349.20233154296875, 159.61717224121094, 0.9989340901374817], "1": [368.73028564453125, 137.07415771484375, 0.9973101615905762], "2": [328.2318420410156, 137.60498046875, 0.9966390132904053], "3": [394.4884338378906, 149.2791748046875, 0.9012147784233093], "4": [296.4521179199219, 150.1882781982422, 0.8510931134223938], "5": [456.465576171875, 256.83966064453125, 0.9820006489753723], "6": [241.14505004882812, 256.85345458984375, 0.9960404634475708], "7": [513.7432861328125, 409.086181640625, 0.6991550326347351], "8": [140.9884033203125, 361.71783447265625, 0.9329085350036621], "9": [470.7412109375, 456.8139953613281, 0.6006529331207275], "10": [154.6332550048828, 228.41314697265625, 0.9105895757675171], "11": [430.99664306640625, 480.0, 0.13207107782363892], "12": [288.60919189453125, 480.0, 0.22995345294475555], "13": [465.96514892578125, 434.9927062988281, 0.0019102677470073104], "14": [275.0341491699219, 442.3660888671875, 0.0038482719101011753], "15": [416.02764892578125, 480.0, 0.0002460483810864389], "16": [233.18487548828125, 480.0, 0.00040889918454922736]}} +{"t": 38.199786, "tracked": true, "track_id": 1, "bbox": [116.60556030273438, 63.06782531738281, 556.2345581054688, 480.0], "det_conf": 0.910736083984375, "mean_kpt_conf": 0.8972827846353705, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9392370640398403, "right_lift": -0.7148047160315641, "left_bend": 0.36221715613240035, "right_bend": 0.7817525005018126}, "keypoints": {"0": [349.0671691894531, 159.54237365722656, 0.9989567995071411], "1": [368.6387939453125, 136.69882202148438, 0.9974306225776672], "2": [327.6414489746094, 137.7967529296875, 0.9966030120849609], "3": [394.94512939453125, 149.03260803222656, 0.9057745337486267], "4": [296.0257568359375, 151.16744995117188, 0.8430740833282471], "5": [457.4005126953125, 256.96771240234375, 0.9817416071891785], "6": [242.23638916015625, 255.8231964111328, 0.9959641695022583], "7": [514.524169921875, 413.26678466796875, 0.6985935568809509], "8": [138.58920288085938, 361.7647705078125, 0.9330189228057861], "9": [471.6195373535156, 455.98773193359375, 0.606406569480896], "10": [150.50350952148438, 227.95774841308594, 0.9125467538833618], "11": [432.6864318847656, 480.0, 0.12326929718255997], "12": [290.7579040527344, 480.0, 0.21693050861358643], "13": [466.78631591796875, 432.2146911621094, 0.001863995217718184], "14": [276.6325378417969, 438.7339782714844, 0.003770028240978718], "15": [419.3824157714844, 480.0, 0.00024114658299367875], "16": [235.15463256835938, 480.0, 0.0004044201923534274]}} +{"t": 38.267007, "tracked": true, "track_id": 1, "bbox": [113.84171295166016, 63.337242126464844, 555.192626953125, 480.0], "det_conf": 0.9112811088562012, "mean_kpt_conf": 0.895076334476471, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9427040778070227, "right_lift": -0.7216216379422098, "left_bend": 0.3842385995221704, "right_bend": 0.7619009773442824}, "keypoints": {"0": [349.5938720703125, 159.12310791015625, 0.9989535808563232], "1": [368.37890625, 136.15640258789062, 0.9973726272583008], "2": [328.22930908203125, 137.98196411132812, 0.9966433048248291], "3": [394.2135925292969, 148.13275146484375, 0.9079569578170776], "4": [297.0166931152344, 152.20523071289062, 0.8433201909065247], "5": [458.69891357421875, 257.79864501953125, 0.9824129343032837], "6": [243.31289672851562, 258.17608642578125, 0.9961754083633423], "7": [514.282958984375, 414.85675048828125, 0.6930818557739258], "8": [142.20143127441406, 363.5718994140625, 0.932641863822937], "9": [465.0899658203125, 456.6142883300781, 0.5898858904838562], "10": [144.39471435546875, 231.81011962890625, 0.90739506483078], "11": [431.3119201660156, 480.0, 0.13221046328544617], "12": [288.85247802734375, 480.0, 0.23163242638111115], "13": [466.240234375, 436.12744140625, 0.0019000835018232465], "14": [272.5770263671875, 442.6199951171875, 0.003846977837383747], "15": [416.94781494140625, 480.0, 0.0002446051803417504], "16": [229.81703186035156, 480.0, 0.0004097459022887051]}} +{"t": 38.329552, "tracked": true, "track_id": 1, "bbox": [106.75648498535156, 64.23746490478516, 549.545166015625, 480.0], "det_conf": 0.9081434011459351, "mean_kpt_conf": 0.9191715554757551, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.936196178192339, "right_lift": -0.7203915853929077, "left_bend": 0.4406296271786902, "right_bend": 0.7721270589280593}, "keypoints": {"0": [348.103271484375, 160.47752380371094, 0.9991624355316162], "1": [368.2289123535156, 137.35696411132812, 0.9983419179916382], "2": [327.1333312988281, 138.4765167236328, 0.9962847232818604], "3": [396.18450927734375, 147.82943725585938, 0.9505818486213684], "4": [297.6550598144531, 150.06275939941406, 0.8065889477729797], "5": [456.392578125, 256.82440185546875, 0.9899045825004578], "6": [239.2464141845703, 258.3309326171875, 0.9971067309379578], "7": [516.0542602539062, 415.73919677734375, 0.8095743060112], "8": [121.10307312011719, 381.04351806640625, 0.9351877570152283], "9": [472.61981201171875, 442.1108093261719, 0.7074458003044128], "10": [128.34646606445312, 237.86151123046875, 0.9207080602645874], "11": [428.011474609375, 480.0, 0.14600743353366852], "12": [282.48773193359375, 480.0, 0.21939516067504883], "13": [471.9281921386719, 431.553466796875, 0.0012856342364102602], "14": [253.89108276367188, 436.5440673828125, 0.002083962084725499], "15": [443.3415832519531, 471.86737060546875, 0.00015808703028596938], "16": [205.2294921875, 462.666748046875, 0.00022993709717411548]}} +{"t": 38.392668, "tracked": true, "track_id": 1, "bbox": [96.53126525878906, 64.73492431640625, 548.0175170898438, 480.0], "det_conf": 0.9045853614807129, "mean_kpt_conf": 0.9232995455915277, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9284002660784897, "right_lift": -0.7064241665187994, "left_bend": 0.3400334590334459, "right_bend": 0.7473724132351501}, "keypoints": {"0": [347.6504211425781, 159.6591796875, 0.9992064833641052], "1": [367.7701416015625, 137.430908203125, 0.9984287619590759], "2": [327.3672180175781, 137.97337341308594, 0.9963828325271606], "3": [395.2124938964844, 149.06134033203125, 0.9534091949462891], "4": [298.6904602050781, 150.11581420898438, 0.80894935131073], "5": [455.0706481933594, 255.1286163330078, 0.9906566143035889], "6": [239.567138671875, 257.1800842285156, 0.9972624778747559], "7": [517.26220703125, 410.5148010253906, 0.8334155678749084], "8": [119.28143310546875, 377.23388671875, 0.9421494007110596], "9": [483.1820983886719, 452.01519775390625, 0.7132165431976318], "10": [118.26095581054688, 237.25146484375, 0.9232177734375], "11": [425.414306640625, 480.0, 0.15496355295181274], "12": [280.32061767578125, 480.0, 0.22841346263885498], "13": [472.4765319824219, 425.4544677734375, 0.0012870021164417267], "14": [248.55734252929688, 431.4361572265625, 0.0020542186684906483], "15": [444.47735595703125, 471.95562744140625, 0.00015790668840054423], "16": [195.4540557861328, 461.3690185546875, 0.00022664389689452946]}} +{"t": 38.43067, "tracked": true, "track_id": 1, "bbox": [93.10816955566406, 64.83011627197266, 547.3972778320312, 480.0], "det_conf": 0.903700590133667, "mean_kpt_conf": 0.9184052889997308, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9324563679442784, "right_lift": -0.7124883526203442, "left_bend": 0.43407321620933526, "right_bend": 0.7432880297412471}, "keypoints": {"0": [347.8123779296875, 160.7659149169922, 0.9991905093193054], "1": [368.1090087890625, 137.73056030273438, 0.99837327003479], "2": [327.2371520996094, 138.40811157226562, 0.996387243270874], "3": [395.9162292480469, 148.02581787109375, 0.9513516426086426], "4": [297.748779296875, 149.3391876220703, 0.807028591632843], "5": [456.2314147949219, 257.4389953613281, 0.9901132583618164], "6": [238.20413208007812, 259.1340637207031, 0.9972105622291565], "7": [517.161865234375, 414.6981201171875, 0.8095871210098267], "8": [118.65158081054688, 380.5274658203125, 0.9348803162574768], "9": [475.4693298339844, 441.82098388671875, 0.7004280686378479], "10": [114.54032897949219, 237.44842529296875, 0.9179075956344604], "11": [426.2401428222656, 480.0, 0.14764803647994995], "12": [279.8622131347656, 480.0, 0.22103609144687653], "13": [471.3393249511719, 431.8929138183594, 0.0012725323904305696], "14": [249.51339721679688, 436.6146240234375, 0.0020364229567348957], "15": [443.62518310546875, 471.05706787109375, 0.00015403902216348797], "16": [201.07290649414062, 460.42718505859375, 0.00022170390002429485]}} +{"t": 38.495919, "tracked": true, "track_id": 1, "bbox": [80.06967163085938, 65.4566650390625, 559.5416259765625, 480.0], "det_conf": 0.9000623226165771, "mean_kpt_conf": 0.9316457509994507, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.927207214843096, "right_lift": -0.7199360671265399, "left_bend": 0.5024743313056487, "right_bend": 0.7277418992578049}, "keypoints": {"0": [349.38214111328125, 160.66896057128906, 0.9993200302124023], "1": [369.7950134277344, 137.70245361328125, 0.9982549548149109], "2": [328.26416015625, 138.2122344970703, 0.9970616698265076], "3": [397.5541687011719, 149.40646362304688, 0.9321621060371399], "4": [296.7170715332031, 150.8947296142578, 0.8150389194488525], "5": [461.70709228515625, 256.5625, 0.9902684688568115], "6": [241.58030700683594, 260.5693054199219, 0.9976557493209839], "7": [521.4547119140625, 404.4696044921875, 0.8379817605018616], "8": [134.24017333984375, 371.9144592285156, 0.9592355489730835], "9": [467.1573181152344, 425.913818359375, 0.7733314633369446], "10": [122.19486999511719, 235.75955200195312, 0.9477925896644592], "11": [433.9757080078125, 480.0, 0.1914592832326889], "12": [285.01116943359375, 480.0, 0.29369667172431946], "13": [473.2691345214844, 435.4444580078125, 0.001311080763116479], "14": [252.48886108398438, 439.03155517578125, 0.00229905778542161], "15": [433.6852722167969, 478.2515563964844, 0.00012683581735473126], "16": [199.78765869140625, 466.1695556640625, 0.0001942170347319916]}} +{"t": 38.52934, "tracked": true, "track_id": 1, "bbox": [77.12113189697266, 65.54830932617188, 559.0075073242188, 479.9854736328125], "det_conf": 0.9052467942237854, "mean_kpt_conf": 0.9295284422961149, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9286898374280596, "right_lift": -0.7216984167762625, "left_bend": 0.4856954617244883, "right_bend": 0.7287233699356724}, "keypoints": {"0": [348.63250732421875, 160.70962524414062, 0.9992926120758057], "1": [369.45184326171875, 137.79147338867188, 0.9982661604881287], "2": [327.7579345703125, 138.11106872558594, 0.9969407320022583], "3": [397.6564025878906, 149.68560791015625, 0.9363731145858765], "4": [296.704833984375, 150.67318725585938, 0.8102959394454956], "5": [460.6431884765625, 256.6325988769531, 0.9898174405097961], "6": [241.0974578857422, 261.1394348144531, 0.9976098537445068], "7": [519.6092529296875, 404.29364013671875, 0.8306800723075867], "8": [133.49899291992188, 373.322021484375, 0.9574309587478638], "9": [467.351318359375, 427.93658447265625, 0.7629472613334656], "10": [121.34439086914062, 235.08006286621094, 0.9451587200164795], "11": [431.1614685058594, 480.0, 0.18499135971069336], "12": [282.523681640625, 480.0, 0.28614306449890137], "13": [470.8111572265625, 434.1016540527344, 0.0013326400658115745], "14": [249.81411743164062, 438.3677062988281, 0.002346690744161606], "15": [431.4664306640625, 477.8282470703125, 0.00013276439858600497], "16": [196.68519592285156, 465.5272216796875, 0.00020418601343408227]}} +{"t": 38.594488, "tracked": true, "track_id": 1, "bbox": [76.56008911132812, 65.51475524902344, 559.1553955078125, 479.8162536621094], "det_conf": 0.9060584306716919, "mean_kpt_conf": 0.9308351440863176, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9279918977729905, "right_lift": -0.7257641155013126, "left_bend": 0.5107150489275305, "right_bend": 0.7320718770753467}, "keypoints": {"0": [349.3092346191406, 160.43414306640625, 0.9993212223052979], "1": [369.71868896484375, 137.66595458984375, 0.9982364177703857], "2": [328.1824035644531, 138.10874938964844, 0.9971115589141846], "3": [397.32379150390625, 149.7791748046875, 0.9300479292869568], "4": [296.57806396484375, 151.13783264160156, 0.816412091255188], "5": [461.066162109375, 256.15179443359375, 0.9901548624038696], "6": [241.96966552734375, 259.7658996582031, 0.9975801706314087], "7": [521.0696411132812, 405.59539794921875, 0.8364209532737732], "8": [134.76870727539062, 372.8603515625, 0.9586696624755859], "9": [465.3896789550781, 425.8033447265625, 0.7687703967094421], "10": [123.43421936035156, 236.7279510498047, 0.9464613199234009], "11": [432.70953369140625, 480.0, 0.18721531331539154], "12": [284.0245666503906, 480.0, 0.2870015501976013], "13": [472.4656982421875, 433.9877624511719, 0.0013041009660810232], "14": [249.5411376953125, 436.81494140625, 0.0022796993143856525], "15": [433.3443908691406, 477.9013977050781, 0.00012805617006961256], "16": [193.6291961669922, 464.99810791015625, 0.00019517532200552523]}} +{"t": 38.658331, "tracked": true, "track_id": 1, "bbox": [87.83638000488281, 65.53683471679688, 551.4750366210938, 479.7106018066406], "det_conf": 0.9048673510551453, "mean_kpt_conf": 0.9166266376321967, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9336853908698777, "right_lift": -0.7235980035933892, "left_bend": 0.435512959214276, "right_bend": 0.7363272308779389}, "keypoints": {"0": [346.89923095703125, 160.580810546875, 0.999188244342804], "1": [367.3000793457031, 137.5906982421875, 0.9984111785888672], "2": [326.2290344238281, 138.5178985595703, 0.9963418841362], "3": [395.5476379394531, 148.1816864013672, 0.9545384645462036], "4": [297.0287780761719, 150.20132446289062, 0.7978105545043945], "5": [457.4297180175781, 256.06072998046875, 0.9901070594787598], "6": [239.04673767089844, 259.04608154296875, 0.9971779584884644], "7": [518.16015625, 414.4075927734375, 0.8081589341163635], "8": [121.85734558105469, 381.90228271484375, 0.9346416592597961], "9": [470.46527099609375, 444.8990478515625, 0.6916396617889404], "10": [112.59564208984375, 242.95358276367188, 0.9148774147033691], "11": [427.7614440917969, 480.0, 0.1426181197166443], "12": [280.8624572753906, 480.0, 0.21501462161540985], "13": [472.4641418457031, 426.9456787109375, 0.0012598970206454396], "14": [247.72314453125, 431.2537841796875, 0.002035039709880948], "15": [442.3700866699219, 468.95849609375, 0.0001587607548572123], "16": [196.9208984375, 457.4109802246094, 0.00023081109975464642]}} +{"t": 38.695172, "tracked": true, "track_id": 1, "bbox": [91.80802917480469, 65.4107894897461, 548.21875, 479.7076416015625], "det_conf": 0.905829131603241, "mean_kpt_conf": 0.9197120341387662, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9348670197807946, "right_lift": -0.7234394129559554, "left_bend": 0.4302611235780992, "right_bend": 0.7497864821348645}, "keypoints": {"0": [346.85760498046875, 160.6975555419922, 0.9991958737373352], "1": [366.8192138671875, 137.67572021484375, 0.9983652234077454], "2": [326.11181640625, 138.7080535888672, 0.996394693851471], "3": [394.48095703125, 147.96392822265625, 0.9506406188011169], "4": [296.6641845703125, 150.14987182617188, 0.8060919046401978], "5": [455.66845703125, 256.9704895019531, 0.9904422163963318], "6": [238.06890869140625, 258.513671875, 0.997186005115509], "7": [516.0645141601562, 416.02001953125, 0.8174963593482971], "8": [120.98350524902344, 381.20440673828125, 0.9363456964492798], "9": [472.4747619628906, 444.70361328125, 0.7060304880142212], "10": [117.64227294921875, 242.2672576904297, 0.9186432957649231], "11": [425.990478515625, 480.0, 0.1491072028875351], "12": [279.595458984375, 480.0, 0.22147366404533386], "13": [471.8238830566406, 430.0746765136719, 0.0012667984701693058], "14": [247.95159912109375, 434.47576904296875, 0.0020211846567690372], "15": [443.8267822265625, 470.2873229980469, 0.00015457886911462992], "16": [198.63644409179688, 460.45989990234375, 0.00022173264005687088]}} +{"t": 38.758085, "tracked": true, "track_id": 1, "bbox": [99.56705474853516, 65.44784545898438, 546.65234375, 479.718017578125], "det_conf": 0.9111148715019226, "mean_kpt_conf": 0.9174934408881448, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9348915193329898, "right_lift": -0.7303156642655387, "left_bend": 0.43355825152592914, "right_bend": 0.7596444512417095}, "keypoints": {"0": [345.16876220703125, 161.2843780517578, 0.9991346001625061], "1": [366.124267578125, 137.96365356445312, 0.9984118938446045], "2": [324.4043884277344, 138.94146728515625, 0.9960005879402161], "3": [395.34722900390625, 148.1075897216797, 0.9582833051681519], "4": [295.6015625, 149.98777770996094, 0.7873108386993408], "5": [456.7225341796875, 255.45509338378906, 0.9898847341537476], "6": [237.89590454101562, 258.8116455078125, 0.9971182346343994], "7": [516.7296752929688, 413.5133056640625, 0.8092353343963623], "8": [121.74160766601562, 382.9927062988281, 0.9339253306388855], "9": [469.8924560546875, 443.63873291015625, 0.7052415013313293], "10": [121.31256103515625, 244.000732421875, 0.9178814888000488], "11": [428.6976013183594, 480.0, 0.14289040863513947], "12": [282.1168518066406, 480.0, 0.21550774574279785], "13": [472.1756591796875, 427.9003601074219, 0.0012877893168479204], "14": [252.55075073242188, 432.9125671386719, 0.002091384958475828], "15": [441.9491882324219, 471.13970947265625, 0.00016088801203295588], "16": [205.43841552734375, 460.2572021484375, 0.00023649449576623738]}} +{"t": 38.821106, "tracked": true, "track_id": 1, "bbox": [106.45636749267578, 65.20589447021484, 551.0753784179688, 479.64788818359375], "det_conf": 0.9101088643074036, "mean_kpt_conf": 0.903953265060078, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9356408852157898, "right_lift": -0.7474075473207648, "left_bend": 0.37123678179079095, "right_bend": 0.7612005135528992}, "keypoints": {"0": [346.44537353515625, 160.90643310546875, 0.9990130662918091], "1": [366.08428955078125, 137.76162719726562, 0.9974672794342041], "2": [325.8518981933594, 138.49081420898438, 0.9966017007827759], "3": [392.49993896484375, 148.75001525878906, 0.9096291065216064], "4": [295.1374816894531, 150.15777587890625, 0.8336115479469299], "5": [456.2261047363281, 256.60748291015625, 0.9841603636741638], "6": [241.67910766601562, 258.6099548339844, 0.996364951133728], "7": [515.09228515625, 412.6552734375, 0.7315829992294312], "8": [143.16531372070312, 369.4373779296875, 0.9379770159721375], "9": [468.6810302734375, 457.2327880859375, 0.6390027403831482], "10": [140.04965209960938, 237.2501678466797, 0.9180751442909241], "11": [429.8362121582031, 480.0, 0.13654324412345886], "12": [287.29736328125, 480.0, 0.2314971387386322], "13": [466.2797546386719, 432.99200439453125, 0.0019390546949580312], "14": [269.2056579589844, 439.4929504394531, 0.003777436912059784], "15": [416.7955322265625, 480.0, 0.0002340148639632389], "16": [224.02362060546875, 480.0, 0.0003817687393166125]}} +{"t": 38.856829, "tracked": true, "track_id": 1, "bbox": [110.07699584960938, 64.61144256591797, 554.4457397460938, 479.654052734375], "det_conf": 0.9099167585372925, "mean_kpt_conf": 0.9034699526700106, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9358790094970341, "right_lift": -0.7479623828025487, "left_bend": 0.36252583388636556, "right_bend": 0.7660313091210754}, "keypoints": {"0": [346.0247497558594, 161.3827362060547, 0.9990000128746033], "1": [365.38555908203125, 138.23287963867188, 0.9974391460418701], "2": [325.30853271484375, 139.35986328125, 0.9965760111808777], "3": [391.7869873046875, 149.07815551757812, 0.9092308878898621], "4": [294.7455749511719, 151.31423950195312, 0.8348976373672485], "5": [456.1965637207031, 256.916259765625, 0.9842276573181152], "6": [241.3939208984375, 258.5740051269531, 0.996358335018158], "7": [514.9984130859375, 413.1128234863281, 0.7312264442443848], "8": [143.9251251220703, 368.4104919433594, 0.9379615187644958], "9": [471.5030822753906, 457.18084716796875, 0.6344515681266785], "10": [142.71920776367188, 237.689208984375, 0.9168002605438232], "11": [430.878173828125, 480.0, 0.14121060073375702], "12": [288.39276123046875, 480.0, 0.2388066202402115], "13": [468.74639892578125, 434.29742431640625, 0.001957325264811516], "14": [272.504638671875, 441.23297119140625, 0.0038463936652988195], "15": [420.46392822265625, 480.0, 0.00023419075296260417], "16": [230.00901794433594, 480.0, 0.0003847730113193393]}} +{"t": 38.922093, "tracked": true, "track_id": 1, "bbox": [114.82622528076172, 64.40152740478516, 554.446533203125, 479.65826416015625], "det_conf": 0.9141765832901001, "mean_kpt_conf": 0.9039585102688182, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9350895676991691, "right_lift": -0.7478686328322599, "left_bend": 0.360288853915692, "right_bend": 0.7792989224938537}, "keypoints": {"0": [345.5517272949219, 161.52386474609375, 0.998975396156311], "1": [365.6419982910156, 137.72555541992188, 0.9973819851875305], "2": [324.53643798828125, 138.48675537109375, 0.9964656829833984], "3": [392.76812744140625, 147.63912963867188, 0.9050096869468689], "4": [293.4403381347656, 148.84951782226562, 0.8341162800788879], "5": [455.6042175292969, 255.73458862304688, 0.98347407579422], "6": [240.34910583496094, 257.3217468261719, 0.9961283206939697], "7": [514.760498046875, 411.8142395019531, 0.7262596487998962], "8": [142.16546630859375, 367.93231201171875, 0.9347180128097534], "9": [470.68145751953125, 457.308837890625, 0.6502802968025208], "10": [146.5059356689453, 234.82737731933594, 0.9207342267036438], "11": [431.1282043457031, 480.0, 0.12627939879894257], "12": [289.3485412597656, 480.0, 0.21472886204719543], "13": [467.6240234375, 430.9149169921875, 0.0019231115002185106], "14": [279.58209228515625, 438.4091796875, 0.0037680049426853657], "15": [417.11761474609375, 480.0, 0.00023461246746592224], "16": [240.3364715576172, 480.0, 0.00038509099977090955]}} +{"t": 38.956652, "tracked": true, "track_id": 1, "bbox": [116.14216613769531, 64.24488830566406, 554.9786987304688, 479.6915283203125], "det_conf": 0.9147740602493286, "mean_kpt_conf": 0.8983349800109863, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9390385616696141, "right_lift": -0.7447067768216511, "left_bend": 0.401653362246067, "right_bend": 0.7820980140395045}, "keypoints": {"0": [346.06005859375, 161.0692138671875, 0.9989319443702698], "1": [365.1473693847656, 137.47509765625, 0.9972857236862183], "2": [325.20849609375, 139.0008087158203, 0.9964260458946228], "3": [391.6228332519531, 147.66143798828125, 0.9071726202964783], "4": [294.7366943359375, 150.72235107421875, 0.8360714912414551], "5": [457.67620849609375, 257.0853576660156, 0.9830581545829773], "6": [240.1568603515625, 258.2403564453125, 0.9960743188858032], "7": [515.581787109375, 415.2403869628906, 0.7016875147819519], "8": [141.42861938476562, 368.4059143066406, 0.9295709133148193], "9": [464.22845458984375, 455.09088134765625, 0.6229248046875], "10": [147.54139709472656, 236.021484375, 0.9124812483787537], "11": [430.49609375, 480.0, 0.12023520469665527], "12": [287.4166564941406, 480.0, 0.20817068219184875], "13": [465.7928466796875, 431.2662048339844, 0.0019211126491427422], "14": [276.1285095214844, 438.022216796875, 0.0038216745015233755], "15": [413.5438537597656, 480.0, 0.0002411507157376036], "16": [236.9189453125, 480.0, 0.00039987851050682366]}} +{"t": 38.99205, "tracked": true, "track_id": 1, "bbox": [116.77082061767578, 64.0785903930664, 554.625244140625, 479.7610778808594], "det_conf": 0.9145607352256775, "mean_kpt_conf": 0.9024066058072177, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9383856265213304, "right_lift": -0.7350229260653555, "left_bend": 0.3692080728665496, "right_bend": 0.7810630885030201}, "keypoints": {"0": [346.39935302734375, 160.9870147705078, 0.9989575147628784], "1": [365.7099914550781, 137.50584411621094, 0.9973294734954834], "2": [325.3219909667969, 138.70550537109375, 0.9964654445648193], "3": [391.98040771484375, 147.908203125, 0.902162492275238], "4": [294.3133544921875, 150.2708282470703, 0.8381914496421814], "5": [454.9205627441406, 255.65716552734375, 0.9829618334770203], "6": [241.46780395507812, 257.28692626953125, 0.9960307478904724], "7": [512.5392456054688, 412.11004638671875, 0.7193968892097473], "8": [140.1102294921875, 367.16229248046875, 0.9337881207466125], "9": [466.00323486328125, 456.6747131347656, 0.6416574120521545], "10": [147.79177856445312, 233.2160186767578, 0.9195312857627869], "11": [430.7141418457031, 479.01495361328125, 0.12470569461584091], "12": [290.1327209472656, 480.0, 0.21352021396160126], "13": [464.95086669921875, 430.5604553222656, 0.0019589774310588837], "14": [278.0091247558594, 438.16864013671875, 0.003836926305666566], "15": [414.3104248046875, 480.0, 0.00024100059818010777], "16": [235.47085571289062, 480.0, 0.00039482585270889103]}} +{"t": 39.056489, "tracked": true, "track_id": 1, "bbox": [116.61238861083984, 63.689697265625, 554.9307250976562, 479.947509765625], "det_conf": 0.9130474328994751, "mean_kpt_conf": 0.8977142518216913, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9378520095018816, "right_lift": -0.7372507052565406, "left_bend": 0.3829274956252496, "right_bend": 0.7814634897595475}, "keypoints": {"0": [346.6372375488281, 161.19302368164062, 0.9989414811134338], "1": [366.0813903808594, 137.35772705078125, 0.9973192811012268], "2": [325.323974609375, 138.85617065429688, 0.9964802861213684], "3": [392.74322509765625, 147.37449645996094, 0.902175784111023], "4": [294.12548828125, 150.3725128173828, 0.8373042345046997], "5": [457.0854797363281, 255.37637329101562, 0.9820106625556946], "6": [240.51536560058594, 257.1836242675781, 0.9958771467208862], "7": [515.3612060546875, 412.8646240234375, 0.6993032693862915], "8": [140.22103881835938, 366.62701416015625, 0.9294494986534119], "9": [466.4235534667969, 455.9773254394531, 0.6218828558921814], "10": [147.70045471191406, 231.39480590820312, 0.9141122698783875], "11": [431.6929626464844, 479.15069580078125, 0.11496862769126892], "12": [289.30804443359375, 480.0, 0.20030410587787628], "13": [466.47064208984375, 428.6168212890625, 0.0018950756639242172], "14": [278.2218017578125, 436.4075927734375, 0.0037729444447904825], "15": [414.90966796875, 480.0, 0.00024287714040838182], "16": [238.27830505371094, 480.0, 0.00040272471960633993]}} +{"t": 39.123453, "tracked": true, "track_id": 1, "bbox": [115.06744384765625, 63.555015563964844, 554.3931274414062, 480.0], "det_conf": 0.9137392640113831, "mean_kpt_conf": 0.9012976776469838, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9386320309393679, "right_lift": -0.7279901969304475, "left_bend": 0.37474597758715467, "right_bend": 0.7751578063592716}, "keypoints": {"0": [347.17987060546875, 160.210693359375, 0.9989548921585083], "1": [366.40899658203125, 137.22091674804688, 0.9973713159561157], "2": [326.2919616699219, 138.37730407714844, 0.9964922070503235], "3": [392.4399108886719, 148.58250427246094, 0.9068928956985474], "4": [295.4604797363281, 150.90386962890625, 0.8370048999786377], "5": [455.2619323730469, 256.5766296386719, 0.9827614426612854], "6": [241.68975830078125, 256.8949279785156, 0.9961020946502686], "7": [512.6937255859375, 412.86590576171875, 0.716469943523407], "8": [140.11703491210938, 364.7497863769531, 0.9350698590278625], "9": [466.46405029296875, 455.55926513671875, 0.6306331753730774], "10": [146.65206909179688, 231.61878967285156, 0.9165217280387878], "11": [428.87750244140625, 480.0, 0.12819841504096985], "12": [287.72674560546875, 480.0, 0.22129428386688232], "13": [462.93267822265625, 431.7986755371094, 0.0019452532287687063], "14": [272.0111083984375, 438.3238525390625, 0.0038365181535482407], "15": [415.2806701660156, 480.0, 0.00024399702670052648], "16": [229.97335815429688, 480.0, 0.00040170387364923954]}} +{"t": 39.185922, "tracked": true, "track_id": 1, "bbox": [112.63928985595703, 64.03052520751953, 551.0026245117188, 480.0], "det_conf": 0.9127428531646729, "mean_kpt_conf": 0.9208780310370706, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.934492552880743, "right_lift": -0.7397480162303638, "left_bend": 0.484117453984458, "right_bend": 0.8024132948987671}, "keypoints": {"0": [345.7771301269531, 160.40689086914062, 0.9991456270217896], "1": [366.06097412109375, 137.2803955078125, 0.9983471632003784], "2": [325.1961364746094, 138.39634704589844, 0.9961154460906982], "3": [394.6690673828125, 147.46548461914062, 0.9538400173187256], "4": [296.3979187011719, 149.3536376953125, 0.7951934933662415], "5": [456.59039306640625, 257.0310363769531, 0.9902308583259583], "6": [236.73306274414062, 257.4095153808594, 0.997169554233551], "7": [517.6710205078125, 417.37420654296875, 0.814923882484436], "8": [123.31695556640625, 382.095703125, 0.9369069933891296], "9": [472.55975341796875, 437.1884460449219, 0.7243222594261169], "10": [140.12734985351562, 239.52047729492188, 0.9234630465507507], "11": [427.7790832519531, 480.0, 0.15238738059997559], "12": [280.40887451171875, 480.0, 0.2287577986717224], "13": [473.0177917480469, 434.47454833984375, 0.0012948617804795504], "14": [253.9716033935547, 438.50469970703125, 0.0021269842982292175], "15": [446.619384765625, 473.90997314453125, 0.0001533657341497019], "16": [210.56378173828125, 464.6258239746094, 0.00022635559435002506]}} +{"t": 39.250162, "tracked": true, "track_id": 1, "bbox": [109.97384643554688, 63.95287322998047, 552.2815551757812, 480.0], "det_conf": 0.9081481695175171, "mean_kpt_conf": 0.8988409259102561, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9376240790268587, "right_lift": -0.7308068546814662, "left_bend": 0.36035606639258305, "right_bend": 0.7552382082701103}, "keypoints": {"0": [348.96112060546875, 159.45883178710938, 0.9989894032478333], "1": [368.1933288574219, 136.91835021972656, 0.9973666071891785], "2": [328.10302734375, 137.8067626953125, 0.9967376589775085], "3": [393.6937561035156, 149.1604461669922, 0.9032202363014221], "4": [296.67120361328125, 151.09719848632812, 0.8449066877365112], "5": [456.83740234375, 256.79107666015625, 0.9831365942955017], "6": [242.46023559570312, 257.3206787109375, 0.9962518811225891], "7": [514.489990234375, 412.28173828125, 0.7147077918052673], "8": [142.8773651123047, 363.93878173828125, 0.936697244644165], "9": [469.53887939453125, 457.99176025390625, 0.6045007705688477], "10": [140.55015563964844, 232.09014892578125, 0.9107353091239929], "11": [429.7173156738281, 480.0, 0.13859793543815613], "12": [287.14532470703125, 480.0, 0.23828919231891632], "13": [465.5767822265625, 433.80462646484375, 0.0019400488818064332], "14": [267.1874084472656, 440.0240173339844, 0.003837852505967021], "15": [417.454833984375, 480.0, 0.00024438605760224164], "16": [222.16807556152344, 480.0, 0.0004008085816167295]}} +{"t": 39.285422, "tracked": true, "track_id": 1, "bbox": [108.33422088623047, 63.66392517089844, 554.8954467773438, 479.9841003417969], "det_conf": 0.9071953892707825, "mean_kpt_conf": 0.9001674868843772, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9358840825155371, "right_lift": -0.7364798174514494, "left_bend": 0.37155032163443286, "right_bend": 0.7503974482619734}, "keypoints": {"0": [349.593994140625, 159.7501678466797, 0.9990358352661133], "1": [369.213623046875, 136.72265625, 0.9973796606063843], "2": [328.4967956542969, 137.25335693359375, 0.9968574047088623], "3": [394.82208251953125, 148.1989288330078, 0.8955867290496826], "4": [296.2260437011719, 149.2994384765625, 0.8466058969497681], "5": [456.88433837890625, 256.20233154296875, 0.9830840229988098], "6": [243.30435180664062, 256.87591552734375, 0.9962360262870789], "7": [515.7086181640625, 412.4653015136719, 0.7170531153678894], "8": [143.7289581298828, 365.2863464355469, 0.9369709491729736], "9": [470.77490234375, 455.4792175292969, 0.6181067228317261], "10": [138.20384216308594, 231.27340698242188, 0.9149259924888611], "11": [431.97552490234375, 480.0, 0.13516919314861298], "12": [289.9013671875, 480.0, 0.23217059671878815], "13": [466.62774658203125, 434.7909851074219, 0.0019050418632104993], "14": [269.62860107421875, 440.6530456542969, 0.0037246127612888813], "15": [419.7424621582031, 480.0, 0.00023075916396919638], "16": [224.87582397460938, 480.0, 0.00037475471617653966]}} +{"t": 39.318771, "tracked": true, "track_id": 1, "bbox": [106.49559783935547, 63.396728515625, 555.6907958984375, 479.9405822753906], "det_conf": 0.9071027040481567, "mean_kpt_conf": 0.8994547941467979, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9353719417120832, "right_lift": -0.7398038589074469, "left_bend": 0.3530872720172495, "right_bend": 0.750532903345191}, "keypoints": {"0": [349.2239074707031, 160.1924285888672, 0.9990233182907104], "1": [369.1961669921875, 136.83444213867188, 0.997475802898407], "2": [328.39361572265625, 137.43353271484375, 0.9967676401138306], "3": [395.6333312988281, 147.67672729492188, 0.90622878074646], "4": [296.8763732910156, 148.775634765625, 0.8409139513969421], "5": [458.25921630859375, 256.6351013183594, 0.9832541346549988], "6": [242.56198120117188, 257.69964599609375, 0.9963292479515076], "7": [517.2047119140625, 412.53369140625, 0.7140581607818604], "8": [144.3281707763672, 365.712890625, 0.9359210729598999], "9": [474.18524169921875, 458.9189453125, 0.611851692199707], "10": [138.18301391601562, 231.35821533203125, 0.9121789336204529], "11": [429.9093322753906, 480.0, 0.1344374716281891], "12": [286.45306396484375, 480.0, 0.23123633861541748], "13": [467.0674743652344, 435.0606689453125, 0.0018895313842222095], "14": [268.0984802246094, 441.77630615234375, 0.003729673335328698], "15": [418.96142578125, 480.0, 0.0002326648827875033], "16": [224.8799591064453, 480.0, 0.00038136172224767506]}} +{"t": 39.383684, "tracked": true, "track_id": 1, "bbox": [104.8377456665039, 63.250579833984375, 554.4927368164062, 479.83868408203125], "det_conf": 0.9064210653305054, "mean_kpt_conf": 0.8990038904276761, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9389397734271306, "right_lift": -0.7299147798822927, "left_bend": 0.34645109077754566, "right_bend": 0.7540522732553596}, "keypoints": {"0": [349.9052734375, 159.49978637695312, 0.9989991784095764], "1": [369.3668518066406, 136.2558135986328, 0.9974034428596497], "2": [328.87518310546875, 137.1759490966797, 0.9967240691184998], "3": [395.23187255859375, 147.32498168945312, 0.9021255970001221], "4": [297.0576477050781, 149.26454162597656, 0.8455796241760254], "5": [457.36248779296875, 256.6537170410156, 0.9829756617546082], "6": [242.59054565429688, 258.0107727050781, 0.996281087398529], "7": [514.2506103515625, 411.8916931152344, 0.711870014667511], "8": [142.29681396484375, 365.1092224121094, 0.935042679309845], "9": [472.34613037109375, 458.0484619140625, 0.6100017428398132], "10": [139.5907745361328, 230.28726196289062, 0.9120396971702576], "11": [430.183837890625, 480.0, 0.13532835245132446], "12": [287.53485107421875, 480.0, 0.2325296550989151], "13": [465.5593566894531, 434.8158874511719, 0.0019346015760675073], "14": [268.7610778808594, 442.4627990722656, 0.0037892821710556746], "15": [417.8236999511719, 480.0, 0.00023801396309863776], "16": [225.717041015625, 480.0, 0.00038744695484638214]}} +{"t": 39.419341, "tracked": true, "track_id": 1, "bbox": [105.1170425415039, 63.29422378540039, 554.5211791992188, 479.8075866699219], "det_conf": 0.904885470867157, "mean_kpt_conf": 0.9007229534062472, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9353106533022048, "right_lift": -0.7368782905073489, "left_bend": 0.2817943866163287, "right_bend": 0.7536833049237283}, "keypoints": {"0": [350.07763671875, 159.9019317626953, 0.9989973902702332], "1": [369.28631591796875, 136.4540252685547, 0.9973063468933105], "2": [329.0931091308594, 137.39527893066406, 0.9967747330665588], "3": [394.6739501953125, 146.6783447265625, 0.8933749198913574], "4": [297.2803039550781, 148.6642303466797, 0.8551023602485657], "5": [456.2060852050781, 254.98507690429688, 0.9834160804748535], "6": [242.38955688476562, 257.6896057128906, 0.9962827563285828], "7": [513.9896240234375, 407.73052978515625, 0.7255287766456604], "8": [144.40310668945312, 364.4963684082031, 0.9370091557502747], "9": [481.95355224609375, 463.2155456542969, 0.6114822626113892], "10": [140.23304748535156, 232.03662109375, 0.9126777052879333], "11": [428.8731689453125, 479.4398193359375, 0.13774354755878448], "12": [286.59625244140625, 480.0, 0.2331862598657608], "13": [466.9854736328125, 430.5396728515625, 0.001960301771759987], "14": [267.83453369140625, 440.5384521484375, 0.0038067754358053207], "15": [417.679931640625, 480.0, 0.0002465081342961639], "16": [223.68511962890625, 480.0, 0.000395274197217077]}} +{"t": 39.482342, "tracked": true, "track_id": 1, "bbox": [108.08419036865234, 63.36381912231445, 553.4828491210938, 479.6571960449219], "det_conf": 0.9093108177185059, "mean_kpt_conf": 0.899684337052432, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9387689632961814, "right_lift": -0.7343677753117842, "left_bend": 0.3684606606956488, "right_bend": 0.7614810896689156}, "keypoints": {"0": [350.2996520996094, 159.63754272460938, 0.9990122318267822], "1": [369.7721862792969, 136.6846923828125, 0.9973170161247253], "2": [329.3056640625, 137.1446533203125, 0.9968352913856506], "3": [395.110595703125, 148.2471923828125, 0.8940114974975586], "4": [297.0169982910156, 149.16976928710938, 0.8515214920043945], "5": [456.6605224609375, 257.5630187988281, 0.983009397983551], "6": [242.4976806640625, 257.36224365234375, 0.9961993098258972], "7": [514.1198120117188, 414.1191711425781, 0.7123515605926514], "8": [142.04425048828125, 366.04669189453125, 0.9345571994781494], "9": [469.5956115722656, 456.86297607421875, 0.6179118156433105], "10": [141.60581970214844, 231.87564086914062, 0.9138008952140808], "11": [429.5624694824219, 480.0, 0.12970834970474243], "12": [287.3474426269531, 480.0, 0.2228940725326538], "13": [463.69329833984375, 434.2403564453125, 0.0019117856863886118], "14": [268.10577392578125, 440.1661682128906, 0.0037133393343538046], "15": [416.1153564453125, 480.0, 0.00023757752205710858], "16": [224.44354248046875, 479.7585754394531, 0.0003829092311207205]}} +{"t": 39.549407, "tracked": true, "track_id": 1, "bbox": [112.04046630859375, 63.507568359375, 555.4964599609375, 479.597412109375], "det_conf": 0.9090508818626404, "mean_kpt_conf": 0.8984904235059564, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9369284876831927, "right_lift": -0.7309046033352601, "left_bend": 0.323952215302068, "right_bend": 0.7647419675408484}, "keypoints": {"0": [349.8788146972656, 159.05130004882812, 0.9989991784095764], "1": [369.0987548828125, 136.29833984375, 0.9973439574241638], "2": [328.6212158203125, 137.16323852539062, 0.9968273043632507], "3": [394.3699951171875, 148.41781616210938, 0.89521324634552], "4": [296.4561767578125, 150.27639770507812, 0.8545985817909241], "5": [456.7760314941406, 256.35198974609375, 0.9828877449035645], "6": [242.18679809570312, 256.8114318847656, 0.9961534142494202], "7": [514.657470703125, 411.50933837890625, 0.7131066918373108], "8": [142.2042236328125, 363.8882141113281, 0.9355323314666748], "9": [477.17535400390625, 459.7381591796875, 0.6019335985183716], "10": [143.80093383789062, 231.5516815185547, 0.9107986092567444], "11": [431.39080810546875, 480.0, 0.1335635930299759], "12": [288.89642333984375, 480.0, 0.22979465126991272], "13": [467.0064697265625, 432.28802490234375, 0.0019084167433902621], "14": [269.4446105957031, 439.8422546386719, 0.0037652028258889914], "15": [418.8094482421875, 480.0, 0.0002425133716315031], "16": [225.03094482421875, 480.0, 0.00039503670996055007]}} +{"t": 39.614658, "tracked": true, "track_id": 1, "bbox": [115.71063995361328, 63.41222381591797, 555.7567138671875, 479.57867431640625], "det_conf": 0.9121411442756653, "mean_kpt_conf": 0.8964865045113997, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9380813872789138, "right_lift": -0.7378756048048397, "left_bend": 0.34087527254615957, "right_bend": 0.773976335228206}, "keypoints": {"0": [349.6947021484375, 159.27542114257812, 0.9989732503890991], "1": [368.7344055175781, 136.100830078125, 0.9972317814826965], "2": [328.28662109375, 137.35140991210938, 0.9968032836914062], "3": [394.04327392578125, 147.27069091796875, 0.8886834979057312], "4": [296.0792541503906, 150.0154266357422, 0.8562036156654358], "5": [456.980224609375, 254.326904296875, 0.9821658730506897], "6": [241.8239288330078, 256.32049560546875, 0.9959197044372559], "7": [514.4801635742188, 410.0350341796875, 0.7040321826934814], "8": [142.4483642578125, 364.9629821777344, 0.9318768382072449], "9": [471.58837890625, 459.22125244140625, 0.5999799370765686], "10": [146.53018188476562, 232.49844360351562, 0.9094815850257874], "11": [430.999755859375, 478.7708435058594, 0.12352704256772995], "12": [288.4164123535156, 479.8717041015625, 0.21333053708076477], "13": [466.14947509765625, 428.42071533203125, 0.0019081404898315668], "14": [270.5440979003906, 436.8026123046875, 0.003755593905225396], "15": [415.4972229003906, 480.0, 0.00024883743026293814], "16": [226.0655517578125, 480.0, 0.00040355848614126444]}} +{"t": 39.649195, "tracked": true, "track_id": 1, "bbox": [116.61363220214844, 62.962677001953125, 554.765869140625, 479.5804748535156], "det_conf": 0.9124212265014648, "mean_kpt_conf": 0.8985426642678, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9385986371481535, "right_lift": -0.732825223765502, "left_bend": 0.3599273041772387, "right_bend": 0.7807630462844524}, "keypoints": {"0": [349.32720947265625, 159.19235229492188, 0.998985230922699], "1": [368.8506774902344, 136.47293090820312, 0.9972419738769531], "2": [328.1534423828125, 136.80348205566406, 0.996798574924469], "3": [394.0651550292969, 148.62408447265625, 0.8885089755058289], "4": [295.65185546875, 149.16983032226562, 0.855459451675415], "5": [455.1015930175781, 256.6201477050781, 0.9821662306785583], "6": [241.54586791992188, 255.69635009765625, 0.9958969354629517], "7": [512.760498046875, 413.4805603027344, 0.7062592506408691], "8": [140.16531372070312, 364.8856201171875, 0.9318041801452637], "9": [468.6795654296875, 458.17437744140625, 0.6168855428695679], "10": [148.14964294433594, 231.02996826171875, 0.9139629602432251], "11": [430.236328125, 479.81353759765625, 0.12019618600606918], "12": [289.07989501953125, 479.88909912109375, 0.207867830991745], "13": [463.58734130859375, 430.9168701171875, 0.0018998094601556659], "14": [273.3722229003906, 436.9752502441406, 0.0037103735376149416], "15": [415.5745544433594, 480.0, 0.00024172778648789972], "16": [230.87371826171875, 480.0, 0.0003910718660335988]}} +{"t": 39.684213, "tracked": true, "track_id": 1, "bbox": [117.49224090576172, 62.89935302734375, 553.7091064453125, 479.6217956542969], "det_conf": 0.9112468957901001, "mean_kpt_conf": 0.9010998389937661, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9327329202538572, "right_lift": -0.7297591084964636, "left_bend": 0.255067062860925, "right_bend": 0.7875308432319104}, "keypoints": {"0": [349.6402893066406, 159.26963806152344, 0.9989768266677856], "1": [369.0433349609375, 136.11044311523438, 0.997387707233429], "2": [327.94189453125, 137.35455322265625, 0.9967122077941895], "3": [394.79852294921875, 147.64398193359375, 0.8929827809333801], "4": [295.8536682128906, 150.2159881591797, 0.8564575910568237], "5": [455.7447814941406, 252.51083374023438, 0.9822050929069519], "6": [242.18380737304688, 255.4776153564453, 0.9959415793418884], "7": [514.7232055664062, 405.0787658691406, 0.7253755331039429], "8": [141.09051513671875, 363.380615234375, 0.9373050332069397], "9": [487.9464111328125, 463.0902404785156, 0.61342853307724], "10": [152.5378875732422, 229.56048583984375, 0.9153253436088562], "11": [432.6979064941406, 477.391845703125, 0.12732726335525513], "12": [291.0719909667969, 479.79644775390625, 0.2187623828649521], "13": [469.3930358886719, 425.00592041015625, 0.0018794967327266932], "14": [273.18450927734375, 436.3994445800781, 0.003724540350958705], "15": [420.9874267578125, 480.0, 0.00024585420032963157], "16": [227.43838500976562, 480.0, 0.00040116641321219504]}} +{"t": 39.748205, "tracked": true, "track_id": 1, "bbox": [117.24695587158203, 63.5528450012207, 548.8588256835938, 479.7037658691406], "det_conf": 0.9135027527809143, "mean_kpt_conf": 0.9210681048306552, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9296352766218018, "right_lift": -0.734891755447149, "left_bend": 0.41138587485011385, "right_bend": 0.8133134588525688}, "keypoints": {"0": [347.38226318359375, 159.66958618164062, 0.9991031885147095], "1": [367.323486328125, 136.88363647460938, 0.9981162548065186], "2": [326.7653503417969, 137.48565673828125, 0.9962661862373352], "3": [394.3885803222656, 147.15200805664062, 0.9421853423118591], "4": [296.70904541015625, 148.0051727294922, 0.824303925037384], "5": [454.6834716796875, 255.55691528320312, 0.9899472594261169], "6": [235.30142211914062, 256.5111083984375, 0.9969825148582458], "7": [516.4342041015625, 411.346923828125, 0.8134579062461853], "8": [123.74632263183594, 377.39404296875, 0.933793306350708], "9": [474.4661865234375, 443.63458251953125, 0.7161118984222412], "10": [146.5095672607422, 235.25218200683594, 0.9214813709259033], "11": [426.6867370605469, 480.0, 0.15172715485095978], "12": [280.24359130859375, 480.0, 0.22383952140808105], "13": [472.7505798339844, 431.9477233886719, 0.001344440970569849], "14": [259.6856994628906, 437.93701171875, 0.00217035342939198], "15": [442.7926025390625, 474.5011291503906, 0.00016452772251795977], "16": [218.6233367919922, 464.8424072265625, 0.00023670542577747256]}} +{"t": 39.809087, "tracked": true, "track_id": 1, "bbox": [117.18202209472656, 64.19927978515625, 546.7921142578125, 479.7235107421875], "det_conf": 0.9158390164375305, "mean_kpt_conf": 0.9190302382815968, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9311978488294541, "right_lift": -0.7383633794359836, "left_bend": 0.3866118453901055, "right_bend": 0.8219942628266205}, "keypoints": {"0": [347.45928955078125, 160.2386932373047, 0.999076247215271], "1": [367.7164001464844, 136.84423828125, 0.9980849027633667], "2": [326.5881042480469, 137.553466796875, 0.9962210655212402], "3": [395.4229736328125, 146.04708862304688, 0.9412304162979126], "4": [296.3349609375, 146.97103881835938, 0.8263760805130005], "5": [455.0182800292969, 255.6178436279297, 0.9895463585853577], "6": [234.61325073242188, 256.2078857421875, 0.9969225525856018], "7": [515.8350830078125, 410.98211669921875, 0.8045192360877991], "8": [124.28451538085938, 377.00018310546875, 0.9318180084228516], "9": [478.6021728515625, 444.25762939453125, 0.7061423063278198], "10": [149.95843505859375, 236.65576171875, 0.9193954467773438], "11": [425.9208984375, 480.0, 0.14761285483837128], "12": [278.828125, 480.0, 0.21997371315956116], "13": [473.53594970703125, 432.2937316894531, 0.0013153508771210909], "14": [260.1589660644531, 439.0669250488281, 0.002157397335395217], "15": [443.1833801269531, 472.26806640625, 0.00016555613547097892], "16": [220.9474639892578, 464.5902099609375, 0.00024031706561800092]}} +{"t": 39.844918, "tracked": true, "track_id": 1, "bbox": [117.08200073242188, 64.29663848876953, 546.6139526367188, 479.79791259765625], "det_conf": 0.9176101088523865, "mean_kpt_conf": 0.9177195267243818, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9338099670329296, "right_lift": -0.7481253378077882, "left_bend": 0.41601866554959743, "right_bend": 0.8280488617923967}, "keypoints": {"0": [347.2601623535156, 159.79295349121094, 0.999066174030304], "1": [367.6748046875, 136.97708129882812, 0.9980452060699463], "2": [326.6016845703125, 137.2525634765625, 0.9962314963340759], "3": [395.14886474609375, 147.2850341796875, 0.9406619668006897], "4": [296.3308410644531, 147.2161407470703, 0.8275365233421326], "5": [454.54827880859375, 256.5, 0.9895740151405334], "6": [234.30162048339844, 255.9261016845703, 0.9969184398651123], "7": [514.8444213867188, 413.8782958984375, 0.8005580902099609], "8": [125.16889953613281, 378.9673767089844, 0.930694043636322], "9": [475.7632751464844, 442.35577392578125, 0.6990748047828674], "10": [151.67274475097656, 237.62567138671875, 0.9165540337562561], "11": [425.8778381347656, 480.0, 0.14608672261238098], "12": [278.78875732421875, 480.0, 0.21839626133441925], "13": [473.07183837890625, 432.40032958984375, 0.0013224076246842742], "14": [259.38568115234375, 437.8188171386719, 0.0021738819777965546], "15": [443.2231140136719, 472.9008483886719, 0.00016833785048220307], "16": [220.2348175048828, 463.5350341796875, 0.00024473233497701585]}} +{"t": 39.908953, "tracked": true, "track_id": 1, "bbox": [116.93221282958984, 64.29873657226562, 546.686767578125, 479.9458923339844], "det_conf": 0.9175273180007935, "mean_kpt_conf": 0.9177448912100359, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9269004067462808, "right_lift": -0.7429448863902346, "left_bend": 0.38664138942233645, "right_bend": 0.8188106258058542}, "keypoints": {"0": [347.1393737792969, 159.80641174316406, 0.9990382194519043], "1": [367.6075439453125, 137.26126098632812, 0.9980714917182922], "2": [326.3747253417969, 137.98219299316406, 0.9961355924606323], "3": [395.3510437011719, 148.0503692626953, 0.9450609683990479], "4": [296.4193115234375, 149.2300262451172, 0.8231055736541748], "5": [455.28564453125, 253.67556762695312, 0.9893357157707214], "6": [234.99801635742188, 256.82562255859375, 0.9969203472137451], "7": [517.2950439453125, 406.82080078125, 0.8045949339866638], "8": [126.49169921875, 377.26171875, 0.9327978491783142], "9": [475.07537841796875, 445.4373779296875, 0.69428950548172], "10": [149.61802673339844, 237.61273193359375, 0.9158436059951782], "11": [426.7276611328125, 480.0, 0.15412446856498718], "12": [279.6986083984375, 480.0, 0.2302437275648117], "13": [474.86724853515625, 429.76458740234375, 0.0013537664199247956], "14": [261.30792236328125, 437.07684326171875, 0.0022500117775052786], "15": [443.39691162109375, 473.718505859375, 0.00017421628581359982], "16": [221.1356658935547, 464.121337890625, 0.00025631196331232786]}} +{"t": 39.981982, "tracked": true, "track_id": 1, "bbox": [116.75963592529297, 64.3764419555664, 547.2598266601562, 480.0], "det_conf": 0.9145170450210571, "mean_kpt_conf": 0.9192717508836226, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9331353914874426, "right_lift": -0.7356675991914804, "left_bend": 0.4069457799422768, "right_bend": 0.8124407140576797}, "keypoints": {"0": [345.82952880859375, 160.5096435546875, 0.9990677237510681], "1": [366.332275390625, 136.96270751953125, 0.9982336759567261], "2": [325.0209655761719, 138.23971557617188, 0.9958938360214233], "3": [395.249267578125, 146.26776123046875, 0.9520289301872253], "4": [296.0867614746094, 148.42095947265625, 0.8010949492454529], "5": [456.6155700683594, 254.48934936523438, 0.9896073937416077], "6": [236.23458862304688, 256.57269287109375, 0.9969887137413025], "7": [517.0606689453125, 411.37255859375, 0.8086473941802979], "8": [124.68185424804688, 377.7310485839844, 0.9343185424804688], "9": [474.32672119140625, 444.5452575683594, 0.7141445279121399], "10": [146.91143798828125, 235.38046264648438, 0.9219635725021362], "11": [428.0265808105469, 480.0, 0.1485818773508072], "12": [281.079833984375, 480.0, 0.22353169322013855], "13": [473.6371154785156, 430.77545166015625, 0.0013297764817252755], "14": [260.5074768066406, 437.6481628417969, 0.002213000087067485], "15": [441.87640380859375, 473.74249267578125, 0.000165217395988293], "16": [218.99349975585938, 465.955322265625, 0.0002455143549013883]}} +{"t": 40.04249, "tracked": true, "track_id": 1, "bbox": [117.09007263183594, 63.48783874511719, 554.1559448242188, 480.0], "det_conf": 0.9106059670448303, "mean_kpt_conf": 0.8956722346219149, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9479475375555949, "right_lift": -0.7240355355119638, "left_bend": 0.3863852217343626, "right_bend": 0.7799433752340573}, "keypoints": {"0": [346.0965576171875, 160.52542114257812, 0.9988757967948914], "1": [365.7772216796875, 136.80184936523438, 0.9975045323371887], "2": [324.779296875, 138.88101196289062, 0.9960353970527649], "3": [393.92291259765625, 147.48281860351562, 0.9237444400787354], "4": [295.18377685546875, 151.5918731689453, 0.8134845495223999], "5": [457.5927734375, 257.61676025390625, 0.9813547730445862], "6": [243.54727172851562, 257.1268005371094, 0.9960435628890991], "7": [510.8625793457031, 416.1995849609375, 0.6884580850601196], "8": [143.059814453125, 362.6072692871094, 0.9321571588516235], "9": [464.6646423339844, 453.63458251953125, 0.6118654012680054], "10": [152.52943420410156, 227.22386169433594, 0.9128708839416504], "11": [430.85504150390625, 480.0, 0.12746840715408325], "12": [290.345703125, 480.0, 0.22785842418670654], "13": [462.57965087890625, 436.50335693359375, 0.0019735863897949457], "14": [278.8903503417969, 443.56866455078125, 0.00410789018496871], "15": [413.28656005859375, 480.0, 0.00025228821323253214], "16": [241.6041259765625, 480.0, 0.00043782536522485316]}} +{"t": 40.07599, "tracked": true, "track_id": 1, "bbox": [116.62186431884766, 64.10883331298828, 549.6533813476562, 480.0], "det_conf": 0.9148609638214111, "mean_kpt_conf": 0.9178006811575457, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9403539930193086, "right_lift": -0.7230648165369523, "left_bend": 0.45671251987897127, "right_bend": 0.8051561372192721}, "keypoints": {"0": [343.5721740722656, 160.9170379638672, 0.9990788698196411], "1": [364.0187683105469, 136.9871063232422, 0.9984349608421326], "2": [323.0732116699219, 139.22854614257812, 0.9955258965492249], "3": [394.79217529296875, 145.93963623046875, 0.9629335403442383], "4": [296.50750732421875, 149.95205688476562, 0.7671036720275879], "5": [457.74066162109375, 256.3037109375, 0.9897217154502869], "6": [237.9961395263672, 257.99322509765625, 0.9970870614051819], "7": [515.4953002929688, 415.9456787109375, 0.8058863282203674], "8": [122.52304077148438, 378.8631286621094, 0.9342396855354309], "9": [468.68316650390625, 440.50244140625, 0.7224869132041931], "10": [144.4458465576172, 234.24684143066406, 0.9233088493347168], "11": [427.4470520019531, 480.0, 0.14591337740421295], "12": [281.2342834472656, 480.0, 0.2221575379371643], "13": [472.9357604980469, 432.84063720703125, 0.0013156052445992827], "14": [262.3907470703125, 439.3505859375, 0.00223045377060771], "15": [442.5918273925781, 472.1060791015625, 0.00016303197480738163], "16": [220.91983032226562, 466.86895751953125, 0.0002493951178621501]}} +{"t": 40.112641, "tracked": true, "track_id": 1, "bbox": [116.61406707763672, 63.61833953857422, 551.2174072265625, 479.9608154296875], "det_conf": 0.9145486354827881, "mean_kpt_conf": 0.8981604250994596, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9502638640226874, "right_lift": -0.7321652871960701, "left_bend": 0.3803179363503768, "right_bend": 0.7751713276603355}, "keypoints": {"0": [344.9764404296875, 160.53726196289062, 0.9988769888877869], "1": [364.6203308105469, 136.44480895996094, 0.9975989460945129], "2": [323.792724609375, 139.03436279296875, 0.9958194494247437], "3": [393.5283203125, 146.35833740234375, 0.9302883148193359], "4": [295.2208251953125, 151.6668701171875, 0.7992519736289978], "5": [458.2092590332031, 255.2865753173828, 0.9818914532661438], "6": [244.29617309570312, 257.6258239746094, 0.9961297512054443], "7": [510.3863525390625, 414.4859619140625, 0.7032487988471985], "8": [143.8302764892578, 365.6198425292969, 0.9344786405563354], "9": [461.03570556640625, 455.44189453125, 0.6265794038772583], "10": [149.65342712402344, 230.22036743164062, 0.9156009554862976], "11": [430.341796875, 480.0, 0.12703049182891846], "12": [289.5467224121094, 480.0, 0.2257263958454132], "13": [460.6439208984375, 432.7244567871094, 0.001973002217710018], "14": [273.8524475097656, 441.16522216796875, 0.004057171288877726], "15": [409.8900451660156, 480.0, 0.0002529652847442776], "16": [233.6863555908203, 480.0, 0.0004364510823506862]}} +{"t": 40.173239, "tracked": true, "track_id": 1, "bbox": [115.12062072753906, 63.51551818847656, 553.7227172851562, 479.8787536621094], "det_conf": 0.912882924079895, "mean_kpt_conf": 0.8928306048566644, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9489369848811066, "right_lift": -0.7180751402333697, "left_bend": 0.3698331231126568, "right_bend": 0.7693170809280869}, "keypoints": {"0": [344.86627197265625, 160.18504333496094, 0.9988672733306885], "1": [364.2418212890625, 135.85427856445312, 0.997681736946106], "2": [323.5939025878906, 139.06756591796875, 0.9958154559135437], "3": [393.63873291015625, 145.30413818359375, 0.9344595670700073], "4": [295.5675048828125, 151.89791870117188, 0.796897828578949], "5": [459.21929931640625, 254.7861785888672, 0.9812011122703552], "6": [244.8541717529297, 257.7152404785156, 0.9961448907852173], "7": [511.755615234375, 412.818115234375, 0.6839956641197205], "8": [142.09567260742188, 363.7381896972656, 0.9322609305381775], "9": [465.103271484375, 454.55792236328125, 0.5950661897659302], "10": [148.11093139648438, 230.31024169921875, 0.9087460041046143], "11": [432.7249450683594, 480.0, 0.12749770283699036], "12": [291.647216796875, 480.0, 0.22994931042194366], "13": [465.33056640625, 434.77716064453125, 0.0018981773173436522], "14": [277.6159362792969, 444.05828857421875, 0.004005677066743374], "15": [416.52764892578125, 480.0, 0.0002521064307074994], "16": [238.02513122558594, 480.0, 0.0004444540827535093]}} +{"t": 40.237034, "tracked": true, "track_id": 1, "bbox": [113.54743957519531, 63.639949798583984, 555.2525634765625, 479.83978271484375], "det_conf": 0.9088606238365173, "mean_kpt_conf": 0.8952281854369424, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9459261952546348, "right_lift": -0.7312799118731726, "left_bend": 0.3618086030517979, "right_bend": 0.7605500724630285}, "keypoints": {"0": [345.61529541015625, 159.87103271484375, 0.9988983869552612], "1": [364.65728759765625, 135.99569702148438, 0.9975693821907043], "2": [324.4454345703125, 139.0355224609375, 0.9960728883743286], "3": [392.9774169921875, 145.91378784179688, 0.9274783730506897], "4": [295.8516540527344, 152.29153442382812, 0.8110885620117188], "5": [458.0713195800781, 255.3844757080078, 0.9824399948120117], "6": [244.46861267089844, 258.0408630371094, 0.9963108897209167], "7": [512.1634521484375, 413.12188720703125, 0.6986064910888672], "8": [144.8026885986328, 364.89630126953125, 0.9347928166389465], "9": [470.41070556640625, 453.1649475097656, 0.5969223380088806], "10": [144.58584594726562, 233.8233642578125, 0.9073299169540405], "11": [430.41973876953125, 480.0, 0.14320293068885803], "12": [289.39105224609375, 480.0, 0.25161266326904297], "13": [464.77081298828125, 438.083251953125, 0.0019763384480029345], "14": [273.5402526855469, 446.886962890625, 0.004093579016625881], "15": [418.141845703125, 480.0, 0.0002493527717888355], "16": [234.4210662841797, 480.0, 0.0004300914879422635]}} +{"t": 40.273244, "tracked": true, "track_id": 1, "bbox": [113.45006561279297, 63.50994873046875, 553.36767578125, 479.7923889160156], "det_conf": 0.9116973876953125, "mean_kpt_conf": 0.8933543183586814, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9524294152501834, "right_lift": -0.7351036731568776, "left_bend": 0.36847318799436035, "right_bend": 0.7589962779935048}, "keypoints": {"0": [345.3585205078125, 159.6295166015625, 0.9988734126091003], "1": [364.7768859863281, 135.94418334960938, 0.9975687861442566], "2": [324.4446716308594, 138.4993438720703, 0.9959610104560852], "3": [393.3157958984375, 146.20367431640625, 0.9311158657073975], "4": [295.8786926269531, 151.48590087890625, 0.8066046833992004], "5": [457.84893798828125, 256.90576171875, 0.9822707772254944], "6": [244.05471801757812, 258.67236328125, 0.996383547782898], "7": [508.5615234375, 415.39202880859375, 0.689866840839386], "8": [145.73184204101562, 365.2834777832031, 0.9335654973983765], "9": [463.74615478515625, 454.9278259277344, 0.5893065929412842], "10": [144.1232147216797, 232.98834228515625, 0.9053804874420166], "11": [429.504638671875, 480.0, 0.14619866013526917], "12": [288.412353515625, 480.0, 0.2585289776325226], "13": [461.5029296875, 441.3957214355469, 0.002041573403403163], "14": [272.087646484375, 449.5349426269531, 0.004238251131027937], "15": [413.14654541015625, 480.0, 0.000256297062151134], "16": [234.51885986328125, 480.0, 0.0004439370532054454]}} +{"t": 40.3387, "tracked": true, "track_id": 1, "bbox": [113.62783813476562, 63.20914077758789, 551.89501953125, 479.7403259277344], "det_conf": 0.9128293991088867, "mean_kpt_conf": 0.8944813013076782, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9486776982186853, "right_lift": -0.739805279455792, "left_bend": 0.37953522667253153, "right_bend": 0.770649382231871}, "keypoints": {"0": [345.99664306640625, 159.77955627441406, 0.9988971948623657], "1": [365.5177307128906, 135.66897583007812, 0.9975118637084961], "2": [324.79754638671875, 138.03335571289062, 0.9961600303649902], "3": [393.721923828125, 145.35992431640625, 0.9233707189559937], "4": [295.2305908203125, 150.26251220703125, 0.8164159059524536], "5": [458.4565734863281, 255.94979858398438, 0.9818213582038879], "6": [242.30470275878906, 258.21490478515625, 0.9962006211280823], "7": [511.3678283691406, 414.6741943359375, 0.6876082420349121], "8": [143.66673278808594, 366.6730041503906, 0.9311450719833374], "9": [463.0665283203125, 455.3759460449219, 0.6014567017555237], "10": [145.99395751953125, 233.6202392578125, 0.9087066054344177], "11": [429.65277099609375, 480.0, 0.13160061836242676], "12": [287.1881103515625, 480.0, 0.2333572804927826], "13": [462.2926025390625, 437.6722106933594, 0.001963631249964237], "14": [272.3639221191406, 445.9190368652344, 0.004030708689242601], "15": [412.1605224609375, 480.0, 0.0002493442443665117], "16": [234.44003295898438, 480.0, 0.00042624096386134624]}} +{"t": 40.407857, "tracked": true, "track_id": 1, "bbox": [114.78331756591797, 63.001773834228516, 552.5679321289062, 479.7489318847656], "det_conf": 0.911209762096405, "mean_kpt_conf": 0.8953411199829795, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9472344498440457, "right_lift": -0.733091316763405, "left_bend": 0.3637530206343282, "right_bend": 0.7724577414074121}, "keypoints": {"0": [346.2176208496094, 159.28289794921875, 0.9988705515861511], "1": [365.7698974609375, 135.29713439941406, 0.9975370168685913], "2": [325.0003967285156, 137.96580505371094, 0.9960015416145325], "3": [394.36767578125, 145.14187622070312, 0.9269633889198303], "4": [295.911865234375, 150.68545532226562, 0.8126064538955688], "5": [458.48199462890625, 254.54095458984375, 0.9817511439323425], "6": [243.39527893066406, 258.0147705078125, 0.9962412118911743], "7": [511.68603515625, 411.7645568847656, 0.6923732161521912], "8": [143.2584228515625, 365.9491882324219, 0.9323630332946777], "9": [466.2371826171875, 454.47393798828125, 0.604590117931366], "10": [147.6667938232422, 232.7949676513672, 0.9094546437263489], "11": [430.579833984375, 480.0, 0.13690228760242462], "12": [289.2225036621094, 480.0, 0.2420971691608429], "13": [462.9180908203125, 437.74395751953125, 0.0019954321905970573], "14": [276.7818298339844, 447.2561950683594, 0.004119533114135265], "15": [414.33953857421875, 480.0, 0.0002504502481315285], "16": [240.5128173828125, 480.0, 0.0004315035475883633]}} +{"t": 40.473974, "tracked": true, "track_id": 1, "bbox": [118.10015106201172, 62.927696228027344, 555.3543701171875, 479.78192138671875], "det_conf": 0.9138273596763611, "mean_kpt_conf": 0.9221990975466642, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9397072205964416, "right_lift": -0.7574770731207758, "left_bend": 0.5503864242958346, "right_bend": 0.7921350776382088}, "keypoints": {"0": [345.23199462890625, 159.810791015625, 0.9991940855979919], "1": [366.1210632324219, 135.80154418945312, 0.9981287121772766], "2": [323.9312744140625, 137.3013153076172, 0.9965531826019287], "3": [396.38092041015625, 145.48959350585938, 0.9377171993255615], "4": [293.9883117675781, 148.59149169921875, 0.7992236018180847], "5": [462.424560546875, 254.33148193359375, 0.9885178804397583], "6": [238.8888702392578, 258.5021667480469, 0.9973450303077698], "7": [518.322509765625, 407.93023681640625, 0.7922326922416687], "8": [138.1425323486328, 375.3922119140625, 0.9492363929748535], "9": [455.2618103027344, 420.10577392578125, 0.7463622093200684], "10": [146.24057006835938, 236.71688842773438, 0.9396790862083435], "11": [432.2482604980469, 480.0, 0.16767717897891998], "12": [283.1004333496094, 480.0, 0.27136850357055664], "13": [466.31976318359375, 441.0025939941406, 0.0013124707620590925], "14": [260.80340576171875, 445.55364990234375, 0.002468972699716687], "15": [421.2843322753906, 480.0, 0.00013396677968557924], "16": [218.91781616210938, 476.295654296875, 0.00021689201821573079]}} +{"t": 40.537444, "tracked": true, "track_id": 1, "bbox": [119.43489074707031, 62.544559478759766, 547.91650390625, 479.6029052734375], "det_conf": 0.9147802591323853, "mean_kpt_conf": 0.9131808280944824, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9444563563279478, "right_lift": -0.752901885832769, "left_bend": 0.47343903887728717, "right_bend": 0.8149225633077145}, "keypoints": {"0": [343.8429260253906, 159.91592407226562, 0.9990195035934448], "1": [364.43505859375, 135.66690063476562, 0.998245358467102], "2": [322.8540954589844, 137.6402130126953, 0.9955769777297974], "3": [394.60870361328125, 143.97998046875, 0.9571564197540283], "4": [294.77325439453125, 147.64366149902344, 0.7800622582435608], "5": [457.77545166015625, 254.58016967773438, 0.989043116569519], "6": [236.8858642578125, 256.5552062988281, 0.9968611001968384], "7": [514.1403198242188, 416.5649108886719, 0.7855613827705383], "8": [128.8587646484375, 380.13787841796875, 0.9270145297050476], "9": [459.443115234375, 440.8799743652344, 0.7007119655609131], "10": [148.4176788330078, 238.1594696044922, 0.9157364964485168], "11": [428.05810546875, 480.0, 0.13770227134227753], "12": [281.2684020996094, 480.0, 0.2117672711610794], "13": [471.3844909667969, 432.32720947265625, 0.001342071103863418], "14": [262.674072265625, 438.06707763671875, 0.0022834462579339743], "15": [436.47198486328125, 472.68524169921875, 0.00017255840066354722], "16": [223.93930053710938, 465.9147033691406, 0.0002627203066367656]}} +{"t": 40.602091, "tracked": true, "track_id": 1, "bbox": [119.55020904541016, 62.34159851074219, 546.9065551757812, 479.72015380859375], "det_conf": 0.917397677898407, "mean_kpt_conf": 0.914149517362768, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9368042695464139, "right_lift": -0.7683492953869391, "left_bend": 0.44651008020855126, "right_bend": 0.8278092778342554}, "keypoints": {"0": [343.7940673828125, 159.91265869140625, 0.999021053314209], "1": [364.4399719238281, 135.51597595214844, 0.9981497526168823], "2": [322.8138427734375, 137.19517517089844, 0.9957717061042786], "3": [394.24560546875, 143.197509765625, 0.951856791973114], "4": [294.0167541503906, 146.19561767578125, 0.796431839466095], "5": [457.68798828125, 253.2466278076172, 0.9891297817230225], "6": [234.64337158203125, 257.0849609375, 0.9969052672386169], "7": [517.04150390625, 412.1776123046875, 0.7866843342781067], "8": [130.44119262695312, 382.1784362792969, 0.9271008968353271], "9": [467.4408264160156, 440.9377136230469, 0.698932409286499], "10": [152.0020294189453, 242.90040588378906, 0.9156608581542969], "11": [429.524169921875, 480.0, 0.1411360651254654], "12": [281.36328125, 480.0, 0.21572169661521912], "13": [476.3275146484375, 432.576171875, 0.0013322395971044898], "14": [266.5861511230469, 439.90948486328125, 0.0022745553869754076], "15": [441.233154296875, 473.07080078125, 0.00016913845320232213], "16": [231.34957885742188, 466.3212890625, 0.00025656403158791363]}} +{"t": 40.665536, "tracked": true, "track_id": 1, "bbox": [120.48906707763672, 62.164485931396484, 546.3742065429688, 479.7843322753906], "det_conf": 0.9211238622665405, "mean_kpt_conf": 0.9152423251758922, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9366539715443775, "right_lift": -0.7661264499850637, "left_bend": 0.46617962793397033, "right_bend": 0.833415245131639}, "keypoints": {"0": [343.9842529296875, 159.75836181640625, 0.9990027546882629], "1": [364.54058837890625, 135.59591674804688, 0.9981062412261963], "2": [322.794677734375, 137.41339111328125, 0.9957422614097595], "3": [393.92767333984375, 143.87716674804688, 0.9504952430725098], "4": [293.74859619140625, 147.18731689453125, 0.7992307543754578], "5": [456.87347412109375, 253.01760864257812, 0.9892130494117737], "6": [234.2444610595703, 256.0038146972656, 0.9967993497848511], "7": [517.0689697265625, 413.99224853515625, 0.7908268570899963], "8": [129.13327026367188, 381.30291748046875, 0.9262434244155884], "9": [466.2832946777344, 439.4134521484375, 0.7060642242431641], "10": [154.4382781982422, 237.89988708496094, 0.9159414172172546], "11": [427.92608642578125, 480.0, 0.13891245424747467], "12": [280.34716796875, 480.0, 0.20984087884426117], "13": [473.95245361328125, 430.8160705566406, 0.0013539482606574893], "14": [266.03515625, 437.6714782714844, 0.0022793165408074856], "15": [438.75909423828125, 473.08477783203125, 0.0001716885599307716], "16": [229.86984252929688, 466.2572021484375, 0.0002577398845460266]}} +{"t": 40.701844, "tracked": true, "track_id": 1, "bbox": [120.74559783935547, 62.228004455566406, 545.7510986328125, 479.8502197265625], "det_conf": 0.9229348301887512, "mean_kpt_conf": 0.9144961292093451, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9375945547173741, "right_lift": -0.7723383538633714, "left_bend": 0.4409224882612513, "right_bend": 0.8333500520794137}, "keypoints": {"0": [344.08270263671875, 160.06680297851562, 0.9989782571792603], "1": [364.68634033203125, 135.9001922607422, 0.9979898929595947], "2": [322.89013671875, 137.32720947265625, 0.9957553148269653], "3": [393.542236328125, 143.89056396484375, 0.9455915093421936], "4": [293.1708068847656, 146.394775390625, 0.8099897503852844], "5": [455.6957702636719, 252.71153259277344, 0.9891660809516907], "6": [233.56817626953125, 256.5269470214844, 0.9967679977416992], "7": [514.8302001953125, 412.1572265625, 0.7882577180862427], "8": [130.84716796875, 381.4229736328125, 0.9243032932281494], "9": [465.1434631347656, 441.99139404296875, 0.698660671710968], "10": [154.8900909423828, 236.7973175048828, 0.9139969348907471], "11": [428.29461669921875, 480.0, 0.14044398069381714], "12": [281.12957763671875, 480.0, 0.21106792986392975], "13": [473.350341796875, 430.7337341308594, 0.001394590362906456], "14": [267.2337951660156, 438.63177490234375, 0.0023265257477760315], "15": [435.61761474609375, 473.15423583984375, 0.00017780244525056332], "16": [231.75706481933594, 465.7220458984375, 0.0002637271536514163]}} +{"t": 40.735242, "tracked": true, "track_id": 1, "bbox": [120.87582397460938, 62.101806640625, 546.042724609375, 479.90185546875], "det_conf": 0.9205842018127441, "mean_kpt_conf": 0.9149648222056302, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9389307935248801, "right_lift": -0.7703769562622981, "left_bend": 0.45989572838164433, "right_bend": 0.8305733409632622}, "keypoints": {"0": [343.93896484375, 159.86459350585938, 0.9989963173866272], "1": [364.3117980957031, 135.80223083496094, 0.9980675578117371], "2": [322.71759033203125, 137.781982421875, 0.9957606196403503], "3": [393.4012451171875, 143.99102783203125, 0.9492213726043701], "4": [293.5353088378906, 147.74649047851562, 0.80296790599823], "5": [456.6053466796875, 252.35203552246094, 0.9894010424613953], "6": [234.0662384033203, 256.23211669921875, 0.9968583583831787], "7": [515.6864013671875, 413.5611267089844, 0.7921019792556763], "8": [130.45169067382812, 381.42608642578125, 0.9266769886016846], "9": [463.8095703125, 440.3895263671875, 0.7003318071365356], "10": [153.5374755859375, 237.545166015625, 0.9142290949821472], "11": [428.8533935546875, 480.0, 0.14512571692466736], "12": [281.39703369140625, 480.0, 0.21836762130260468], "13": [474.348876953125, 431.40167236328125, 0.0013890318805351853], "14": [266.95166015625, 438.9056396484375, 0.0023324135690927505], "15": [438.20880126953125, 472.9563903808594, 0.0001752288662828505], "16": [231.72195434570312, 466.5155944824219, 0.000262267334619537]}} +{"t": 40.801495, "tracked": true, "track_id": 1, "bbox": [120.4443130493164, 62.16748809814453, 546.13037109375, 479.9927062988281], "det_conf": 0.9221686124801636, "mean_kpt_conf": 0.9132383574138988, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9355703673233531, "right_lift": -0.7684643800810548, "left_bend": 0.451544835834024, "right_bend": 0.8281892904321813}, "keypoints": {"0": [343.4609069824219, 160.51219177246094, 0.9990027546882629], "1": [364.1483459472656, 135.96011352539062, 0.9981210827827454], "2": [322.1730651855469, 137.99844360351562, 0.9957642555236816], "3": [393.93572998046875, 143.26060485839844, 0.9508603811264038], "4": [293.0402526855469, 147.11886596679688, 0.799079418182373], "5": [457.61871337890625, 251.26513671875, 0.9890356659889221], "6": [233.80108642578125, 257.0069274902344, 0.9968536496162415], "7": [517.81396484375, 410.73968505859375, 0.7842148542404175], "8": [129.8845672607422, 381.8031005859375, 0.9255096912384033], "9": [462.3746337890625, 441.97998046875, 0.6933603882789612], "10": [152.4214324951172, 237.1902618408203, 0.9138197898864746], "11": [429.7496032714844, 480.0, 0.1406276822090149], "12": [281.4775390625, 480.0, 0.21440136432647705], "13": [475.31829833984375, 431.985107421875, 0.0013349767541512847], "14": [267.8810729980469, 440.3621826171875, 0.002276029670611024], "15": [437.24072265625, 474.3188781738281, 0.00017105256847571582], "16": [231.70826721191406, 467.05145263671875, 0.0002591187076177448]}} +{"t": 40.836343, "tracked": true, "track_id": 1, "bbox": [120.0502700805664, 62.22206115722656, 546.6097412109375, 480.0], "det_conf": 0.9219141006469727, "mean_kpt_conf": 0.916565244848078, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9340033222555886, "right_lift": -0.7701790521259873, "left_bend": 0.4310988892673177, "right_bend": 0.8290031544312986}, "keypoints": {"0": [343.1179504394531, 160.77471923828125, 0.9990322589874268], "1": [363.5080261230469, 136.23428344726562, 0.9981662631034851], "2": [322.23095703125, 138.31393432617188, 0.9957637786865234], "3": [393.35321044921875, 142.86325073242188, 0.9515923261642456], "4": [293.8501281738281, 146.7611846923828, 0.7966747879981995], "5": [457.4101867675781, 250.39846801757812, 0.9895437955856323], "6": [234.3126983642578, 256.87152099609375, 0.9969900846481323], "7": [517.8759765625, 408.47540283203125, 0.7985779047012329], "8": [130.48196411132812, 382.2474670410156, 0.9300498366355896], "9": [467.30828857421875, 441.7357482910156, 0.7077829241752625], "10": [152.6531982421875, 239.86181640625, 0.9180437326431274], "11": [429.82720947265625, 480.0, 0.14852549135684967], "12": [281.62457275390625, 480.0, 0.22401870787143707], "13": [477.2681579589844, 431.2150573730469, 0.0013591638999059796], "14": [267.39520263671875, 440.53692626953125, 0.002303074346855283], "15": [440.94525146484375, 473.07379150390625, 0.0001685784664005041], "16": [231.0915069580078, 466.88494873046875, 0.00025423613260500133]}} +{"t": 40.898262, "tracked": true, "track_id": 1, "bbox": [119.49894714355469, 62.673980712890625, 546.29541015625, 480.0], "det_conf": 0.9200646877288818, "mean_kpt_conf": 0.9145762378519232, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9408956457188574, "right_lift": -0.7579284919938691, "left_bend": 0.45424976819984825, "right_bend": 0.815272664222595}, "keypoints": {"0": [341.4452209472656, 161.1865234375, 0.9990143775939941], "1": [361.67315673828125, 136.78611755371094, 0.9982888102531433], "2": [320.6487121582031, 139.57728576660156, 0.9953998923301697], "3": [392.52667236328125, 144.1864013671875, 0.9604671597480774], "4": [293.9551696777344, 149.5551300048828, 0.7692152857780457], "5": [457.60333251953125, 253.26644897460938, 0.9895792603492737], "6": [236.54656982421875, 257.4574279785156, 0.9970086216926575], "7": [515.1954345703125, 413.2567138671875, 0.7974903583526611], "8": [131.13449096679688, 379.93206787109375, 0.9313748478889465], "9": [466.02532958984375, 439.4367370605469, 0.7057567238807678], "10": [149.50851440429688, 239.7467041015625, 0.916743278503418], "11": [428.9234313964844, 480.0, 0.1498255431652069], "12": [282.0273742675781, 480.0, 0.22835230827331543], "13": [475.81353759765625, 431.18231201171875, 0.0013674618676304817], "14": [265.8929138183594, 438.98388671875, 0.002360139973461628], "15": [441.3138427734375, 469.54168701171875, 0.0001748008216964081], "16": [229.17544555664062, 465.88909912109375, 0.0002702763013076037]}} +{"t": 40.93169, "tracked": true, "track_id": 1, "bbox": [119.1214828491211, 62.961326599121094, 546.4627075195312, 479.98382568359375], "det_conf": 0.9198946952819824, "mean_kpt_conf": 0.913519414988431, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9413220220418894, "right_lift": -0.7443575620507457, "left_bend": 0.4506219690612377, "right_bend": 0.8121836873198712}, "keypoints": {"0": [340.1600036621094, 161.41415405273438, 0.9989973902702332], "1": [360.58172607421875, 136.67320251464844, 0.9983677268028259], "2": [319.4486999511719, 139.78982543945312, 0.9951300621032715], "3": [392.59442138671875, 143.6820831298828, 0.9650484323501587], "4": [293.69183349609375, 149.65264892578125, 0.7533983588218689], "5": [457.17108154296875, 253.88406372070312, 0.9892067909240723], "6": [237.2937469482422, 258.6399841308594, 0.9970025420188904], "7": [513.720703125, 411.6021728515625, 0.792752206325531], "8": [129.41758728027344, 378.8865966796875, 0.9307183027267456], "9": [463.05908203125, 439.239013671875, 0.7096429467201233], "10": [149.220947265625, 239.5511932373047, 0.918448805809021], "11": [427.4161376953125, 480.0, 0.149200901389122], "12": [281.4925537109375, 480.0, 0.22993648052215576], "13": [473.46990966796875, 433.4725341796875, 0.0013573308242484927], "14": [267.00152587890625, 441.7550354003906, 0.002374038565903902], "15": [440.00762939453125, 469.35113525390625, 0.00017399166245013475], "16": [230.697021484375, 466.58770751953125, 0.00027319841319695115]}} +{"t": 40.967607, "tracked": true, "track_id": 1, "bbox": [118.77875518798828, 63.12214279174805, 546.6526489257812, 480.0], "det_conf": 0.9171716570854187, "mean_kpt_conf": 0.9123472083698619, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9421476516409397, "right_lift": -0.744512233319494, "left_bend": 0.4801556291578342, "right_bend": 0.8101271260095334}, "keypoints": {"0": [339.3285217285156, 161.05821228027344, 0.9990193843841553], "1": [360.04638671875, 136.57357788085938, 0.9984773993492126], "2": [318.8392639160156, 139.94821166992188, 0.9950554370880127], "3": [392.9455261230469, 144.49752807617188, 0.9694398045539856], "4": [294.18157958984375, 150.82614135742188, 0.7378801703453064], "5": [458.5537109375, 254.04685974121094, 0.9893758296966553], "6": [238.10069274902344, 258.5928649902344, 0.9971058964729309], "7": [515.5524291992188, 414.25421142578125, 0.7919376492500305], "8": [128.53939819335938, 380.7747802734375, 0.9319897890090942], "9": [465.01898193359375, 435.8675537109375, 0.7079369425773621], "10": [147.658447265625, 239.472412109375, 0.9176009893417358], "11": [429.0863037109375, 480.0, 0.1481684297323227], "12": [282.97222900390625, 480.0, 0.23062165081501007], "13": [473.9581298828125, 433.01934814453125, 0.001344133634120226], "14": [267.09906005859375, 440.54034423828125, 0.002381687518209219], "15": [442.26788330078125, 469.5499267578125, 0.00017257535364478827], "16": [230.97238159179688, 466.7535400390625, 0.00027574668638408184]}} +{"t": 41.0288, "tracked": true, "track_id": 1, "bbox": [119.2738265991211, 62.34954833984375, 551.7296142578125, 479.947265625], "det_conf": 0.9147163033485413, "mean_kpt_conf": 0.8920697244730863, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9491805562199305, "right_lift": -0.7245673945022489, "left_bend": 0.3963042484814619, "right_bend": 0.7898663576622366}, "keypoints": {"0": [338.43035888671875, 161.4508056640625, 0.9988075494766235], "1": [359.4344482421875, 136.6749725341797, 0.9980081915855408], "2": [318.01641845703125, 139.82862854003906, 0.994688868522644], "3": [393.313720703125, 145.52474975585938, 0.9577968716621399], "4": [293.5271301269531, 151.325439453125, 0.7286583185195923], "5": [461.20977783203125, 254.3786163330078, 0.9810646772384644], "6": [245.41757202148438, 258.7926940917969, 0.9961289167404175], "7": [513.7021484375, 412.6870422363281, 0.6840908527374268], "8": [142.7860107421875, 366.6903381347656, 0.9299394488334656], "9": [456.79736328125, 455.583251953125, 0.6292510032653809], "10": [156.45675659179688, 230.76116943359375, 0.9143322706222534], "11": [434.7046813964844, 480.0, 0.12006817013025284], "12": [294.05120849609375, 480.0, 0.21993307769298553], "13": [462.4923400878906, 436.1595153808594, 0.0018826114246621728], "14": [286.803466796875, 445.3113708496094, 0.0040795463137328625], "15": [411.86505126953125, 480.0, 0.00024152574769686908], "16": [252.83135986328125, 480.0, 0.0004467280232347548]}} +{"t": 41.064124, "tracked": true, "track_id": 1, "bbox": [119.21385955810547, 62.03235626220703, 553.0036010742188, 479.94000244140625], "det_conf": 0.9152773022651672, "mean_kpt_conf": 0.8972491730343212, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9467159325563328, "right_lift": -0.7122417377646774, "left_bend": 0.35094491060591176, "right_bend": 0.7792319481407343}, "keypoints": {"0": [337.816650390625, 161.24200439453125, 0.9988265633583069], "1": [358.46929931640625, 136.87815856933594, 0.9980416297912598], "2": [317.8157043457031, 140.08738708496094, 0.9946467280387878], "3": [391.93096923828125, 146.23611450195312, 0.9584618806838989], "4": [294.1465759277344, 152.07545471191406, 0.7291473150253296], "5": [458.3293151855469, 254.30450439453125, 0.9820481538772583], "6": [246.20651245117188, 258.8745422363281, 0.9963070154190063], "7": [510.962890625, 409.0195617675781, 0.7120171785354614], "8": [142.50894165039062, 364.0948486328125, 0.9369710087776184], "9": [465.59881591796875, 455.373046875, 0.6445106863975525], "10": [153.92013549804688, 229.44686889648438, 0.918762743473053], "11": [431.90869140625, 480.0, 0.13476790487766266], "12": [292.9393615722656, 480.0, 0.24158500134944916], "13": [461.66064453125, 435.4415283203125, 0.001963395858183503], "14": [282.3860778808594, 445.8388366699219, 0.004203079733997583], "15": [414.0656433105469, 480.0, 0.00024742080131545663], "16": [245.3552703857422, 480.0, 0.00045250277617014945]}} +{"t": 41.131265, "tracked": true, "track_id": 1, "bbox": [117.8718032836914, 62.374977111816406, 552.8287963867188, 479.92962646484375], "det_conf": 0.9160652160644531, "mean_kpt_conf": 0.9014581116763029, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.951273707666276, "right_lift": -0.7174422614793191, "left_bend": 0.3710708225583508, "right_bend": 0.7696484644491446}, "keypoints": {"0": [337.578369140625, 161.1458740234375, 0.9988560676574707], "1": [358.00048828125, 136.69654846191406, 0.998053789138794], "2": [317.53607177734375, 140.0828857421875, 0.9945282340049744], "3": [391.3243103027344, 145.80992126464844, 0.9586155414581299], "4": [293.9604797363281, 152.1756591796875, 0.7174553275108337], "5": [458.0700988769531, 253.9187774658203, 0.9832805395126343], "6": [247.13150024414062, 258.4353942871094, 0.9964048862457275], "7": [509.3147277832031, 412.0119323730469, 0.7348991632461548], "8": [142.63629150390625, 366.0543212890625, 0.9399759769439697], "9": [459.8418884277344, 455.271728515625, 0.6701642274856567], "10": [148.97161865234375, 231.36497497558594, 0.9238054752349854], "11": [432.548095703125, 480.0, 0.13922621309757233], "12": [294.1480712890625, 480.0, 0.24399711191654205], "13": [461.732666015625, 434.49078369140625, 0.001994694583117962], "14": [281.72283935546875, 444.1015930175781, 0.004142260178923607], "15": [415.45867919921875, 480.0, 0.00024009811750147492], "16": [243.81492614746094, 480.0, 0.00043109303805977106]}} +{"t": 41.193933, "tracked": true, "track_id": 1, "bbox": [115.43817901611328, 62.74169921875, 551.7269897460938, 479.8828430175781], "det_conf": 0.9160891175270081, "mean_kpt_conf": 0.9003344340757891, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9476728834232055, "right_lift": -0.7163979261104131, "left_bend": 0.3595562023162803, "right_bend": 0.753717370715623}, "keypoints": {"0": [337.74969482421875, 161.28863525390625, 0.99888676404953], "1": [358.0970458984375, 136.73948669433594, 0.9981302618980408], "2": [317.7475891113281, 140.35101318359375, 0.9947153925895691], "3": [391.55535888671875, 145.16531372070312, 0.960739016532898], "4": [294.1273193359375, 152.14749145507812, 0.7165001034736633], "5": [459.2384338378906, 252.76698303222656, 0.9836581349372864], "6": [247.07809448242188, 258.9285583496094, 0.9966128468513489], "7": [511.8588562011719, 408.970703125, 0.7359898686408997], "8": [143.74952697753906, 365.0274963378906, 0.9420014023780823], "9": [462.4353942871094, 456.52703857421875, 0.6556779742240906], "10": [143.54444885253906, 232.63943481445312, 0.9207670092582703], "11": [433.4985656738281, 480.0, 0.1552106887102127], "12": [293.6353759765625, 480.0, 0.27018192410469055], "13": [464.3492126464844, 439.10089111328125, 0.001990366028621793], "14": [278.5079650878906, 449.2359313964844, 0.004156454931944609], "15": [419.1848449707031, 480.0, 0.00023418360797222704], "16": [239.886474609375, 480.0, 0.0004220807459205389]}} +{"t": 41.262124, "tracked": true, "track_id": 1, "bbox": [112.38261413574219, 62.961517333984375, 555.2620239257812, 479.8582458496094], "det_conf": 0.9138058423995972, "mean_kpt_conf": 0.8971351764418862, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9455083188301462, "right_lift": -0.7183952773900169, "left_bend": 0.3510457286728934, "right_bend": 0.7473917282831954}, "keypoints": {"0": [337.8856201171875, 160.7010955810547, 0.9988825917243958], "1": [358.53887939453125, 136.3618927001953, 0.998120129108429], "2": [318.030517578125, 139.5415496826172, 0.9948375821113586], "3": [391.8553466796875, 145.75607299804688, 0.9600436687469482], "4": [294.36981201171875, 151.72010803222656, 0.7203236818313599], "5": [459.2664794921875, 253.6414337158203, 0.9829041361808777], "6": [247.01223754882812, 258.8974609375, 0.9963914752006531], "7": [512.9664916992188, 409.5816345214844, 0.7228181958198547], "8": [144.20663452148438, 365.06671142578125, 0.9378696084022522], "9": [466.3418273925781, 457.549560546875, 0.6405105590820312], "10": [141.00914001464844, 233.4471435546875, 0.9157853126525879], "11": [432.37689208984375, 480.0, 0.13849088549613953], "12": [292.4330139160156, 480.0, 0.24353033304214478], "13": [465.0093078613281, 432.98785400390625, 0.0019667306914925575], "14": [277.5523681640625, 442.51043701171875, 0.004108381923288107], "15": [418.5088806152344, 480.0, 0.0002478391688782722], "16": [237.62924194335938, 480.0, 0.00044592091580852866]}} +{"t": 41.295616, "tracked": true, "track_id": 1, "bbox": [110.60155487060547, 62.98606491088867, 554.2884521484375, 479.81256103515625], "det_conf": 0.9125100374221802, "mean_kpt_conf": 0.8976973078467629, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9444016131395833, "right_lift": -0.7158092042623093, "left_bend": 0.34346499411242304, "right_bend": 0.747091688080162}, "keypoints": {"0": [338.3356628417969, 160.9271240234375, 0.998897910118103], "1": [358.9245910644531, 136.2152557373047, 0.9981794357299805], "2": [318.1957092285156, 139.88137817382812, 0.9948421120643616], "3": [392.6416015625, 145.1728057861328, 0.9607546329498291], "4": [294.600341796875, 152.25286865234375, 0.7172603607177734], "5": [460.71142578125, 252.21481323242188, 0.9827238917350769], "6": [247.68875122070312, 259.0694580078125, 0.9963556528091431], "7": [514.7161254882812, 407.3335266113281, 0.7258083820343018], "8": [143.70648193359375, 365.65960693359375, 0.9385430812835693], "9": [469.2353515625, 456.7448425292969, 0.6441775560379028], "10": [140.8925323486328, 234.9250030517578, 0.9171273708343506], "11": [434.5390625, 480.0, 0.1346103549003601], "12": [293.8588562011719, 480.0, 0.23726479709148407], "13": [467.8455810546875, 429.65557861328125, 0.0019121295772492886], "14": [277.3839416503906, 440.4330749511719, 0.003998171538114548], "15": [421.60443115234375, 480.0, 0.0002435266214888543], "16": [235.91087341308594, 480.0, 0.00043881480814889073]}} +{"t": 41.359386, "tracked": true, "track_id": 1, "bbox": [106.30274200439453, 63.13516616821289, 553.3081665039062, 479.78546142578125], "det_conf": 0.9117356538772583, "mean_kpt_conf": 0.9013046459718184, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9444921736344782, "right_lift": -0.7168847554232305, "left_bend": 0.3427641128874245, "right_bend": 0.7417496035529373}, "keypoints": {"0": [338.20513916015625, 160.71826171875, 0.9989383816719055], "1": [359.2669982910156, 136.18492126464844, 0.9982511401176453], "2": [318.4393615722656, 139.28317260742188, 0.9948613047599792], "3": [393.26348876953125, 145.51071166992188, 0.9629279971122742], "4": [295.0409240722656, 151.24008178710938, 0.7089317440986633], "5": [460.5609130859375, 253.0518798828125, 0.9839047789573669], "6": [247.21945190429688, 258.96270751953125, 0.9965600371360779], "7": [514.8636474609375, 409.1651611328125, 0.7448988556861877], "8": [142.55088806152344, 366.5877685546875, 0.9422965049743652], "9": [469.16888427734375, 459.00128173828125, 0.661757230758667], "10": [137.27603149414062, 234.27322387695312, 0.9210231304168701], "11": [431.9797058105469, 480.0, 0.14175637066364288], "12": [290.5198669433594, 480.0, 0.24561640620231628], "13": [466.42901611328125, 431.3063659667969, 0.001903387950733304], "14": [272.03753662109375, 441.07330322265625, 0.003911745734512806], "15": [420.8416748046875, 480.0, 0.00023511002655141056], "16": [228.14755249023438, 480.0, 0.0004187902668491006]}} +{"t": 41.394663, "tracked": true, "track_id": 1, "bbox": [104.7442855834961, 63.206634521484375, 553.9142456054688, 479.76483154296875], "det_conf": 0.9118502140045166, "mean_kpt_conf": 0.9026148535988547, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9450722959916268, "right_lift": -0.7150957075750051, "left_bend": 0.33238154843474776, "right_bend": 0.7325564343736901}, "keypoints": {"0": [338.2886962890625, 160.84988403320312, 0.9989365935325623], "1": [358.9243469238281, 136.22311401367188, 0.9982179999351501], "2": [318.45513916015625, 139.66622924804688, 0.9948669672012329], "3": [392.520751953125, 145.165771484375, 0.962242603302002], "4": [295.1787109375, 151.80435180664062, 0.7141258120536804], "5": [459.9173583984375, 252.67315673828125, 0.9840019941329956], "6": [248.08172607421875, 259.57769775390625, 0.9966327548027039], "7": [513.5443115234375, 407.72772216796875, 0.7476141452789307], "8": [144.0535888671875, 365.9972229003906, 0.943658173084259], "9": [468.9241638183594, 459.51141357421875, 0.6655515432357788], "10": [135.37559509277344, 235.0286865234375, 0.9229148030281067], "11": [431.8521728515625, 480.0, 0.14501185715198517], "12": [291.6607360839844, 480.0, 0.25165796279907227], "13": [465.11981201171875, 430.7621765136719, 0.0019643865525722504], "14": [273.37548828125, 441.3787536621094, 0.004046241752803326], "15": [418.7352600097656, 480.0, 0.00024032760120462626], "16": [230.41525268554688, 480.0, 0.0004283362359274179]}} +{"t": 41.459017, "tracked": true, "track_id": 1, "bbox": [102.4617919921875, 62.93839645385742, 555.23388671875, 479.7388916015625], "det_conf": 0.9101005792617798, "mean_kpt_conf": 0.900970231403004, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9458563449977689, "right_lift": -0.7221745405083205, "left_bend": 0.36597332115050035, "right_bend": 0.7327018569481596}, "keypoints": {"0": [338.1165771484375, 160.93142700195312, 0.9989338517189026], "1": [358.66259765625, 136.28033447265625, 0.9981739521026611], "2": [318.2160339355469, 139.50482177734375, 0.9948644042015076], "3": [391.80206298828125, 145.25314331054688, 0.9610172510147095], "4": [294.42474365234375, 151.540771484375, 0.7138020396232605], "5": [460.43792724609375, 253.5614013671875, 0.9838634729385376], "6": [247.47100830078125, 260.0843505859375, 0.9965735673904419], "7": [514.6410522460938, 411.51165771484375, 0.7374559640884399], "8": [143.98324584960938, 368.12982177734375, 0.9404704570770264], "9": [463.3023376464844, 459.4952392578125, 0.6635467410087585], "10": [133.75355529785156, 233.58609008789062, 0.9219708442687988], "11": [433.4948425292969, 480.0, 0.13492350280284882], "12": [293.088623046875, 480.0, 0.23618608713150024], "13": [464.88177490234375, 430.2025146484375, 0.0019695376977324486], "14": [276.03863525390625, 439.7638244628906, 0.004043091554194689], "15": [416.7320251464844, 480.0, 0.0002381594676990062], "16": [234.4722900390625, 480.0, 0.0004245321615599096]}} +{"t": 41.520477, "tracked": true, "track_id": 1, "bbox": [101.6580810546875, 63.3034553527832, 550.9601440429688, 479.84930419921875], "det_conf": 0.9090315103530884, "mean_kpt_conf": 0.9175910949707031, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9372117737460312, "right_lift": -0.709823254065134, "left_bend": 0.4061072768436351, "right_bend": 0.7511283237472989}, "keypoints": {"0": [336.14703369140625, 160.88143920898438, 0.9991592168807983], "1": [357.65704345703125, 136.4715118408203, 0.998813271522522], "2": [316.4319763183594, 139.9671630859375, 0.9948897361755371], "3": [392.86273193359375, 145.0789794921875, 0.9779589176177979], "4": [294.2662048339844, 151.47232055664062, 0.6880507469177246], "5": [459.45782470703125, 251.0618133544922, 0.9906586408615112], "6": [242.33978271484375, 258.7790832519531, 0.9974697828292847], "7": [518.176025390625, 408.85302734375, 0.8323134779930115], "8": [122.55535888671875, 379.48919677734375, 0.9456461668014526], "9": [468.56219482421875, 446.6653747558594, 0.738727867603302], "10": [122.51301574707031, 240.3656768798828, 0.9298142194747925], "11": [432.376220703125, 480.0, 0.16245239973068237], "12": [287.1182861328125, 480.0, 0.24975275993347168], "13": [475.4366149902344, 428.77618408203125, 0.0012684536632150412], "14": [259.5606689453125, 436.93743896484375, 0.0022068414837121964], "15": [446.37841796875, 470.62188720703125, 0.00015105173224583268], "16": [210.66671752929688, 464.86639404296875, 0.00024163356283679605]}} +{"t": 41.557761, "tracked": true, "track_id": 1, "bbox": [100.04832458496094, 62.96236801147461, 552.6806030273438, 479.7789306640625], "det_conf": 0.9074283838272095, "mean_kpt_conf": 0.9023044000972401, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9432876000059716, "right_lift": -0.71510802531421, "left_bend": 0.34305066127164324, "right_bend": 0.730508657940339}, "keypoints": {"0": [337.20526123046875, 161.05355834960938, 0.9989649057388306], "1": [358.2088317871094, 136.03884887695312, 0.9983282685279846], "2": [317.44110107421875, 139.50643920898438, 0.9947132468223572], "3": [392.8616638183594, 144.57861328125, 0.9655178189277649], "4": [294.4635314941406, 151.13967895507812, 0.692887544631958], "5": [461.906982421875, 252.81027221679688, 0.98430335521698], "6": [247.63525390625, 260.7220764160156, 0.9967104196548462], "7": [516.4285888671875, 407.7294616699219, 0.751410186290741], "8": [143.81512451171875, 366.93255615234375, 0.9441705346107483], "9": [469.19769287109375, 459.52587890625, 0.6735302209854126], "10": [134.097412109375, 233.3414764404297, 0.9248118996620178], "11": [435.556884765625, 480.0, 0.14524339139461517], "12": [293.6279602050781, 480.0, 0.2516230046749115], "13": [469.6755065917969, 432.1072998046875, 0.0018913496751338243], "14": [275.9635925292969, 443.1388854980469, 0.0038984722923487425], "15": [423.82672119140625, 480.0, 0.0002253320999443531], "16": [234.37693786621094, 480.0, 0.00040508463280275464]}} +{"t": 41.620929, "tracked": true, "track_id": 1, "bbox": [100.06053161621094, 62.64326477050781, 554.142822265625, 479.72393798828125], "det_conf": 0.9102966785430908, "mean_kpt_conf": 0.903554379940033, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9414765697059414, "right_lift": -0.7176048940383809, "left_bend": 0.351760911565017, "right_bend": 0.7317125981008328}, "keypoints": {"0": [337.5082092285156, 160.84857177734375, 0.9989652633666992], "1": [358.37481689453125, 136.0115966796875, 0.9982882142066956], "2": [317.4052734375, 139.63958740234375, 0.9949058294296265], "3": [392.3797607421875, 145.04946899414062, 0.9636961817741394], "4": [293.8944396972656, 152.12026977539062, 0.7060784101486206], "5": [461.18743896484375, 251.81907653808594, 0.984320878982544], "6": [247.28953552246094, 259.7987060546875, 0.9966235160827637], "7": [517.0369873046875, 407.8096008300781, 0.7530660629272461], "8": [143.05442810058594, 367.1999206542969, 0.9438045024871826], "9": [468.42156982421875, 458.8287353515625, 0.674790620803833], "10": [133.41856384277344, 234.3599853515625, 0.924558699131012], "11": [434.3620300292969, 480.0, 0.14157044887542725], "12": [292.8710021972656, 480.0, 0.24443966150283813], "13": [468.2430725097656, 428.9629211425781, 0.0019093850860372186], "14": [274.7751159667969, 439.531494140625, 0.003909427672624588], "15": [421.3748779296875, 480.0, 0.0002308896800968796], "16": [231.14476013183594, 480.0, 0.0004117613425478339]}} +{"t": 41.690735, "tracked": true, "track_id": 1, "bbox": [102.44208526611328, 62.69386672973633, 553.8411254882812, 479.6943664550781], "det_conf": 0.9117605090141296, "mean_kpt_conf": 0.9045223051851446, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.938307047810538, "right_lift": -0.7127272815300563, "left_bend": 0.3228569434718212, "right_bend": 0.7279543783293823}, "keypoints": {"0": [336.5057373046875, 161.04684448242188, 0.9989687204360962], "1": [357.2850341796875, 135.86785888671875, 0.9983522891998291], "2": [316.5008850097656, 139.96652221679688, 0.9946669340133667], "3": [392.3271484375, 143.61671447753906, 0.9660606384277344], "4": [293.96502685546875, 151.60263061523438, 0.6893497705459595], "5": [461.38641357421875, 249.81260681152344, 0.9849047660827637], "6": [248.51174926757812, 258.8306579589844, 0.9966660141944885], "7": [517.96337890625, 403.32928466796875, 0.7674583196640015], "8": [144.90798950195312, 364.10137939453125, 0.9461302161216736], "9": [474.485107421875, 459.21295166015625, 0.6822518110275269], "10": [134.85980224609375, 234.26783752441406, 0.9249358773231506], "11": [434.08251953125, 480.0, 0.159788578748703], "12": [292.8682556152344, 480.0, 0.2691468894481659], "13": [469.55255126953125, 432.78179931640625, 0.0019304159795865417], "14": [274.781494140625, 444.6973876953125, 0.003934177570044994], "15": [424.57330322265625, 480.0, 0.00022419565357267857], "16": [230.89736938476562, 480.0, 0.0003990034747403115]}} +{"t": 41.755498, "tracked": true, "track_id": 1, "bbox": [105.3942642211914, 62.415401458740234, 554.0389404296875, 479.6770935058594], "det_conf": 0.9114291667938232, "mean_kpt_conf": 0.9035643176598982, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9433153406165219, "right_lift": -0.722330842587752, "left_bend": 0.3525706472177571, "right_bend": 0.7402448816841168}, "keypoints": {"0": [336.6600341796875, 161.2963104248047, 0.9989563226699829], "1": [357.2052917480469, 135.7388916015625, 0.9983071088790894], "2": [316.5666809082031, 139.93312072753906, 0.9945923686027527], "3": [392.20526123046875, 142.54901123046875, 0.965476930141449], "4": [293.9630126953125, 150.73626708984375, 0.6921156048774719], "5": [463.0242614746094, 250.62335205078125, 0.984951913356781], "6": [247.02957153320312, 258.7832336425781, 0.9967283010482788], "7": [518.329833984375, 407.81207275390625, 0.7566684484481812], "8": [143.81198120117188, 366.59539794921875, 0.9437156319618225], "9": [471.5033874511719, 456.1691589355469, 0.6828513741493225], "10": [136.882080078125, 234.50515747070312, 0.9248434901237488], "11": [436.1318359375, 480.0, 0.15127088129520416], "12": [293.6796875, 480.0, 0.2582203447818756], "13": [470.6558837890625, 434.45379638671875, 0.001905262004584074], "14": [279.2730712890625, 446.04132080078125, 0.003916304092854261], "15": [424.43780517578125, 480.0, 0.00021775442291982472], "16": [240.82666015625, 480.0, 0.0003907500649802387]}} +{"t": 41.824196, "tracked": true, "track_id": 1, "bbox": [109.62010955810547, 62.5869026184082, 554.0902709960938, 479.6682434082031], "det_conf": 0.9130586981773376, "mean_kpt_conf": 0.9002034284851768, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9450169737673276, "right_lift": -0.7155214208727659, "left_bend": 0.3823138924693674, "right_bend": 0.7480567043539378}, "keypoints": {"0": [336.4159851074219, 160.5992431640625, 0.9989125728607178], "1": [356.8298645019531, 135.2176513671875, 0.9982404708862305], "2": [316.153564453125, 139.54360961914062, 0.9945603013038635], "3": [391.4921875, 143.03836059570312, 0.9645555019378662], "4": [293.3719177246094, 151.47889709472656, 0.6945211291313171], "5": [462.1977844238281, 251.67396545410156, 0.9837411642074585], "6": [247.28311157226562, 258.11083984375, 0.9965000152587891], "7": [517.0093383789062, 410.0668640136719, 0.7369512915611267], "8": [142.9905242919922, 364.9309997558594, 0.9410136938095093], "9": [465.4732666015625, 453.72869873046875, 0.6703449487686157], "10": [140.5990753173828, 232.65371704101562, 0.9228966236114502], "11": [434.88690185546875, 480.0, 0.13663624227046967], "12": [293.2745666503906, 480.0, 0.2400243729352951], "13": [466.857177734375, 431.5800476074219, 0.0018792428309097886], "14": [277.2357177734375, 441.5002136230469, 0.003936730790883303], "15": [420.1160583496094, 480.0, 0.0002275776059832424], "16": [236.82412719726562, 480.0, 0.00041371877887286246]}} +{"t": 41.888173, "tracked": true, "track_id": 1, "bbox": [113.12183380126953, 62.314292907714844, 554.1815795898438, 479.6508483886719], "det_conf": 0.9145689010620117, "mean_kpt_conf": 0.9018516486341303, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9479989182056208, "right_lift": -0.7116936491121708, "left_bend": 0.3641633606061926, "right_bend": 0.7554598735808047}, "keypoints": {"0": [335.8118591308594, 160.13058471679688, 0.9988716244697571], "1": [356.14141845703125, 134.75900268554688, 0.9982214570045471], "2": [315.31988525390625, 139.73617553710938, 0.9941966533660889], "3": [391.3310546875, 142.870361328125, 0.9655036926269531], "4": [292.8463439941406, 152.71084594726562, 0.68935227394104], "5": [462.438232421875, 250.68109130859375, 0.9844553470611572], "6": [247.05337524414062, 258.6611328125, 0.9965117573738098], "7": [515.5810546875, 408.97052001953125, 0.7498689293861389], "8": [141.80322265625, 365.29022216796875, 0.9413923621177673], "9": [465.5721435546875, 455.6195068359375, 0.6785380244255066], "10": [143.23126220703125, 231.13986206054688, 0.9234560132026672], "11": [436.06396484375, 480.0, 0.14618636667728424], "12": [294.59930419921875, 480.0, 0.250822514295578], "13": [467.34039306640625, 431.4722900390625, 0.0019526703981682658], "14": [280.6522216796875, 443.49090576171875, 0.004032351542264223], "15": [419.491943359375, 480.0, 0.0002280448388773948], "16": [240.89588928222656, 480.0, 0.0004115011834073812]}} +{"t": 41.949833, "tracked": true, "track_id": 1, "bbox": [116.11006164550781, 61.84483337402344, 554.3546752929688, 479.6669006347656], "det_conf": 0.9171482920646667, "mean_kpt_conf": 0.9015997485681013, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9477967553042995, "right_lift": -0.7131932987198417, "left_bend": 0.36145532277383785, "right_bend": 0.7662273379673756}, "keypoints": {"0": [335.4442138671875, 160.64596557617188, 0.9988710284233093], "1": [356.13067626953125, 135.60015869140625, 0.9982245564460754], "2": [315.3805847167969, 139.82833862304688, 0.9942712783813477], "3": [391.34613037109375, 143.65798950195312, 0.9657490253448486], "4": [293.1576232910156, 151.64463806152344, 0.6914047598838806], "5": [460.45648193359375, 251.2904815673828, 0.9839948415756226], "6": [246.65316772460938, 256.8857421875, 0.9965265393257141], "7": [513.7515258789062, 409.7000732421875, 0.745896577835083], "8": [141.31761169433594, 364.0585021972656, 0.942520022392273], "9": [465.5723571777344, 455.47308349609375, 0.6761690378189087], "10": [146.92181396484375, 231.7587432861328, 0.923969566822052], "11": [432.67877197265625, 480.0, 0.1487712860107422], "12": [291.9966125488281, 480.0, 0.2580048441886902], "13": [464.16741943359375, 435.6546936035156, 0.0019415303831920028], "14": [278.0001525878906, 445.9548034667969, 0.00406446261331439], "15": [419.1170654296875, 480.0, 0.00022728985641151667], "16": [238.79788208007812, 480.0, 0.0004132353060413152]}} +{"t": 41.985556, "tracked": true, "track_id": 1, "bbox": [116.81441497802734, 61.619361877441406, 554.1925659179688, 479.70172119140625], "det_conf": 0.9149776101112366, "mean_kpt_conf": 0.9007488489151001, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9465009945642892, "right_lift": -0.7041671627369159, "left_bend": 0.379845928106786, "right_bend": 0.7744267288089087}, "keypoints": {"0": [335.268310546875, 160.60618591308594, 0.9988579750061035], "1": [356.15594482421875, 135.3883514404297, 0.9982523322105408], "2": [315.1398010253906, 139.67247009277344, 0.994076132774353], "3": [391.9617919921875, 143.71246337890625, 0.9673384428024292], "4": [293.0940856933594, 151.69097900390625, 0.6852046251296997], "5": [462.1001892089844, 251.94886779785156, 0.9839310050010681], "6": [246.55213928222656, 257.53814697265625, 0.9964393973350525], "7": [516.1387329101562, 410.4471435546875, 0.7401297092437744], "8": [138.53944396972656, 364.6583251953125, 0.939687192440033], "9": [463.88299560546875, 455.00537109375, 0.6801172494888306], "10": [149.43115234375, 230.29954528808594, 0.9242032766342163], "11": [434.8555908203125, 480.0, 0.1377509981393814], "12": [293.5935363769531, 480.0, 0.24013018608093262], "13": [464.89007568359375, 434.52630615234375, 0.001860682968981564], "14": [281.89404296875, 444.70819091796875, 0.0038921779487282038], "15": [418.3146667480469, 480.0, 0.00021930335788056254], "16": [242.7919158935547, 480.0, 0.0004002301429864019]}} +{"t": 42.048876, "tracked": true, "track_id": 1, "bbox": [118.168701171875, 61.689998626708984, 553.2011108398438, 479.73284912109375], "det_conf": 0.9174210429191589, "mean_kpt_conf": 0.8994037888266824, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9457689467126354, "right_lift": -0.7052700992231697, "left_bend": 0.3626496363674727, "right_bend": 0.7779971299087566}, "keypoints": {"0": [335.5597839355469, 160.49050903320312, 0.998835027217865], "1": [356.07269287109375, 135.42138671875, 0.9981741905212402], "2": [315.29791259765625, 139.79840087890625, 0.9942195415496826], "3": [391.1192321777344, 143.60476684570312, 0.9646791815757751], "4": [292.7972717285156, 151.9244384765625, 0.6998077034950256], "5": [461.09051513671875, 250.99945068359375, 0.9833536148071289], "6": [246.22474670410156, 257.135009765625, 0.9964122176170349], "7": [514.9822998046875, 407.9048767089844, 0.7311829924583435], "8": [139.9808349609375, 362.8291320800781, 0.939778208732605], "9": [464.4874267578125, 456.12335205078125, 0.6646277904510498], "10": [152.02960205078125, 230.1304931640625, 0.9223712086677551], "11": [434.8896789550781, 480.0, 0.13916362822055817], "12": [294.2956848144531, 480.0, 0.24581702053546906], "13": [463.9848937988281, 433.6894836425781, 0.0019030835246667266], "14": [282.9947814941406, 444.6305236816406, 0.004054002929478884], "15": [415.69451904296875, 480.0, 0.0002303500659763813], "16": [244.66064453125, 480.0, 0.00042401973041705787]}} +{"t": 42.082348, "tracked": true, "track_id": 1, "bbox": [118.82197570800781, 61.845603942871094, 553.784912109375, 479.7576599121094], "det_conf": 0.9170925617218018, "mean_kpt_conf": 0.8964490565386686, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9496259398976685, "right_lift": -0.7070855843413838, "left_bend": 0.38191696964899885, "right_bend": 0.7819731384422768}, "keypoints": {"0": [335.466064453125, 160.53903198242188, 0.9987940788269043], "1": [355.73626708984375, 135.37762451171875, 0.9981169700622559], "2": [315.3227844238281, 139.7810516357422, 0.9940887689590454], "3": [390.7393798828125, 143.03785705566406, 0.9653493762016296], "4": [293.04656982421875, 151.43173217773438, 0.7020678520202637], "5": [461.6188659667969, 251.89303588867188, 0.9832166433334351], "6": [245.797607421875, 257.1985168457031, 0.9965059757232666], "7": [513.8204345703125, 410.07501220703125, 0.7163512706756592], "8": [139.91693115234375, 363.0728454589844, 0.9384592771530151], "9": [460.23095703125, 454.2795715332031, 0.648881196975708], "10": [153.32717895507812, 230.05584716796875, 0.9191082119941711], "11": [434.3873291015625, 480.0, 0.14171290397644043], "12": [293.0672912597656, 480.0, 0.2536272704601288], "13": [462.8857727050781, 438.33770751953125, 0.0018962519243359566], "14": [281.1738586425781, 448.6479187011719, 0.004106585402041674], "15": [414.04193115234375, 480.0, 0.00022691479534842074], "16": [243.30203247070312, 480.0, 0.00042239733738824725]}} +{"t": 42.117323, "tracked": true, "track_id": 1, "bbox": [118.45536041259766, 61.77322769165039, 553.9457397460938, 479.7837829589844], "det_conf": 0.9152405261993408, "mean_kpt_conf": 0.8995379751378839, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9474380294390551, "right_lift": -0.7008405644374351, "left_bend": 0.3519879704425183, "right_bend": 0.781143846390187}, "keypoints": {"0": [335.4908752441406, 161.1013946533203, 0.99886155128479], "1": [356.0015869140625, 135.83493041992188, 0.9982197880744934], "2": [315.13470458984375, 140.14732360839844, 0.9943069815635681], "3": [391.20098876953125, 143.585693359375, 0.9638517498970032], "4": [292.4791564941406, 151.71347045898438, 0.701056957244873], "5": [460.3452453613281, 251.6719970703125, 0.9829201102256775], "6": [245.9133758544922, 257.2178039550781, 0.9963787198066711], "7": [513.2676391601562, 408.391357421875, 0.7289088368415833], "8": [138.51417541503906, 362.7383728027344, 0.9399701952934265], "9": [466.6834716796875, 455.46826171875, 0.6665554046630859], "10": [152.8623504638672, 228.73170471191406, 0.9238874316215515], "11": [434.4598388671875, 480.0, 0.13687436282634735], "12": [293.8578186035156, 480.0, 0.2435126006603241], "13": [463.17987060546875, 434.55206298828125, 0.001885700854472816], "14": [280.6988220214844, 445.90167236328125, 0.004021030385047197], "15": [416.62213134765625, 480.0, 0.00022778580023441464], "16": [241.99209594726562, 480.0, 0.00041884894017130136]}} +{"t": 42.150943, "tracked": true, "track_id": 1, "bbox": [118.37447357177734, 61.775360107421875, 553.9345703125, 479.78192138671875], "det_conf": 0.9172371625900269, "mean_kpt_conf": 0.8965210156007246, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9522188507609782, "right_lift": -0.7014805716748033, "left_bend": 0.3977528185727169, "right_bend": 0.7837408042510099}, "keypoints": {"0": [336.06396484375, 161.0448455810547, 0.9987950325012207], "1": [356.41241455078125, 135.48707580566406, 0.9981232285499573], "2": [315.4593200683594, 140.09527587890625, 0.9940140843391418], "3": [391.61163330078125, 142.96893310546875, 0.9647548198699951], "4": [292.76214599609375, 151.8775177001953, 0.6992635726928711], "5": [462.1146240234375, 252.57745361328125, 0.982709527015686], "6": [246.48524475097656, 257.08050537109375, 0.9962416887283325], "7": [513.603515625, 413.1080322265625, 0.7119402289390564], "8": [137.87057495117188, 363.987060546875, 0.9340558648109436], "9": [456.7038269042969, 454.73358154296875, 0.6614000201225281], "10": [153.1631317138672, 230.33499145507812, 0.9204331040382385], "11": [434.37982177734375, 480.0, 0.12420857697725296], "12": [293.8417663574219, 480.0, 0.2228553742170334], "13": [459.99554443359375, 434.25482177734375, 0.001861309865489602], "14": [282.7274169921875, 443.94622802734375, 0.003949602600187063], "15": [410.9620666503906, 480.0, 0.00022621038078796118], "16": [245.71690368652344, 480.0, 0.00041559795499779284]}} +{"t": 42.215069, "tracked": true, "track_id": 1, "bbox": [118.37519836425781, 61.77183532714844, 555.3313598632812, 479.8495788574219], "det_conf": 0.9169154167175293, "mean_kpt_conf": 0.9017282182520087, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9486304210952149, "right_lift": -0.7000062411036808, "left_bend": 0.4038159397580549, "right_bend": 0.7889508348524978}, "keypoints": {"0": [336.30706787109375, 160.58602905273438, 0.9988173842430115], "1": [356.6304931640625, 135.14199829101562, 0.9981022477149963], "2": [315.568603515625, 139.784423828125, 0.9941592216491699], "3": [391.46856689453125, 143.44834899902344, 0.9638332724571228], "4": [292.59759521484375, 152.3350067138672, 0.7103795409202576], "5": [462.02978515625, 253.8935546875, 0.9838955402374268], "6": [245.518310546875, 257.5892333984375, 0.9964098334312439], "7": [515.508544921875, 414.240478515625, 0.7282213568687439], "8": [136.80328369140625, 364.15313720703125, 0.9376388192176819], "9": [462.29632568359375, 452.55859375, 0.6819276809692383], "10": [154.7417449951172, 229.41726684570312, 0.9256255030632019], "11": [434.03656005859375, 480.0, 0.12647071480751038], "12": [293.22503662109375, 480.0, 0.22443623840808868], "13": [461.342529296875, 432.9864501953125, 0.0018391440389677882], "14": [284.636474609375, 442.55596923828125, 0.003893982619047165], "15": [411.893798828125, 480.0, 0.00022069134865887463], "16": [248.0410919189453, 480.0, 0.0004043820081278682]}} +{"t": 42.250758, "tracked": true, "track_id": 1, "bbox": [118.02068328857422, 61.78965377807617, 553.9309692382812, 479.87652587890625], "det_conf": 0.9172972440719604, "mean_kpt_conf": 0.8974769765680487, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9512307618106212, "right_lift": -0.7018843571930825, "left_bend": 0.37562172062805693, "right_bend": 0.7843187789288069}, "keypoints": {"0": [336.03997802734375, 160.8408203125, 0.9987951517105103], "1": [356.42364501953125, 135.31072998046875, 0.9981293082237244], "2": [315.44873046875, 140.1688690185547, 0.994086742401123], "3": [391.78387451171875, 142.75592041015625, 0.9649924635887146], "4": [292.8994140625, 152.11837768554688, 0.7042273283004761], "5": [462.3292236328125, 251.8052215576172, 0.9831531643867493], "6": [245.5167236328125, 257.2181091308594, 0.996425449848175], "7": [513.9349365234375, 410.9367980957031, 0.7188617587089539], "8": [138.40011596679688, 362.7697448730469, 0.9374781847000122], "9": [461.34478759765625, 455.6245422363281, 0.6558866500854492], "10": [153.9212188720703, 228.60421752929688, 0.9202105402946472], "11": [434.20904541015625, 480.0, 0.135552778840065], "12": [292.68792724609375, 480.0, 0.2419513463973999], "13": [462.69049072265625, 436.1452331542969, 0.0018571438267827034], "14": [282.7928161621094, 447.31170654296875, 0.003994037862867117], "15": [413.5360107421875, 480.0, 0.00022559349599760026], "16": [246.550537109375, 480.0, 0.00041774779674597085]}} +{"t": 42.285625, "tracked": true, "track_id": 1, "bbox": [117.8180923461914, 61.49560546875, 554.3980712890625, 479.94073486328125], "det_conf": 0.9163827300071716, "mean_kpt_conf": 0.9000432057814165, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9515344543379359, "right_lift": -0.6958259195872255, "left_bend": 0.41628276883374365, "right_bend": 0.7864138816244469}, "keypoints": {"0": [336.4085693359375, 160.822265625, 0.9988231062889099], "1": [356.7310791015625, 135.52586364746094, 0.9981153011322021], "2": [315.8512878417969, 139.88246154785156, 0.9942266941070557], "3": [391.4855041503906, 143.64309692382812, 0.9641562700271606], "4": [292.7801818847656, 151.8648223876953, 0.7066246271133423], "5": [461.561767578125, 254.9500732421875, 0.983366072177887], "6": [245.7781524658203, 257.05316162109375, 0.9964859485626221], "7": [513.3129272460938, 415.0679931640625, 0.7197107076644897], "8": [137.9159393310547, 361.5536193847656, 0.9391392469406128], "9": [458.15869140625, 450.85858154296875, 0.6740990281105042], "10": [155.39414978027344, 228.09927368164062, 0.9257282614707947], "11": [434.2979736328125, 480.0, 0.13518795371055603], "12": [293.6147155761719, 480.0, 0.24307501316070557], "13": [461.1038818359375, 439.3050537109375, 0.001868214923888445], "14": [284.1742248535156, 447.56201171875, 0.004027470946311951], "15": [413.705078125, 480.0, 0.00022008721134625375], "16": [249.2600555419922, 480.0, 0.00040911344694904983]}} +{"t": 42.348025, "tracked": true, "track_id": 1, "bbox": [117.57283020019531, 61.7125358581543, 553.9151611328125, 480.0], "det_conf": 0.916997492313385, "mean_kpt_conf": 0.8975541320714083, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9502251417765137, "right_lift": -0.7075144722223735, "left_bend": 0.36648652786505814, "right_bend": 0.7794120258123186}, "keypoints": {"0": [337.04510498046875, 161.11187744140625, 0.9988085031509399], "1": [357.53253173828125, 135.87738037109375, 0.9980751276016235], "2": [316.6018981933594, 140.06678771972656, 0.9943608641624451], "3": [392.12548828125, 143.58041381835938, 0.9614550471305847], "4": [293.3264465332031, 151.551025390625, 0.7132707238197327], "5": [461.1620788574219, 252.5657196044922, 0.9824982285499573], "6": [245.50863647460938, 257.43341064453125, 0.9963609576225281], "7": [512.634765625, 409.5499267578125, 0.7149218916893005], "8": [141.07505798339844, 361.9875183105469, 0.9375675320625305], "9": [463.1001892089844, 454.4429931640625, 0.6549171209335327], "10": [153.32484436035156, 228.95742797851562, 0.9208594560623169], "11": [433.46942138671875, 480.0, 0.1361595243215561], "12": [292.60089111328125, 480.0, 0.2438594251871109], "13": [462.5299987792969, 435.0420837402344, 0.0019502660725265741], "14": [283.22296142578125, 445.8620300292969, 0.004198687616735697], "15": [412.8363037109375, 480.0, 0.00024044016026891768], "16": [248.1271514892578, 480.0, 0.0004438901087269187]}} +{"t": 42.412893, "tracked": true, "track_id": 1, "bbox": [116.65845489501953, 61.35613250732422, 553.0189819335938, 480.0], "det_conf": 0.9165329337120056, "mean_kpt_conf": 0.8956377560442145, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9538109918688161, "right_lift": -0.7015745959078272, "left_bend": 0.4109479565345877, "right_bend": 0.7740213822766671}, "keypoints": {"0": [337.83343505859375, 160.94805908203125, 0.99886155128479], "1": [358.5355529785156, 135.55325317382812, 0.9981871247291565], "2": [317.0547790527344, 139.80642700195312, 0.9945864677429199], "3": [393.3648986816406, 143.72909545898438, 0.9635387659072876], "4": [293.384765625, 151.83645629882812, 0.7083048224449158], "5": [462.73077392578125, 254.36309814453125, 0.9822050929069519], "6": [246.24685668945312, 256.8832092285156, 0.996364414691925], "7": [513.7035522460938, 416.20465087890625, 0.7031593918800354], "8": [138.58694458007812, 362.87799072265625, 0.9364767074584961], "9": [458.08636474609375, 453.0328369140625, 0.6498098969459534], "10": [149.81903076171875, 228.28416442871094, 0.920521080493927], "11": [434.6432800292969, 480.0, 0.12711675465106964], "12": [293.03375244140625, 480.0, 0.2320936918258667], "13": [462.6490173339844, 437.1632385253906, 0.0018446556059643626], "14": [280.87249755859375, 445.3895263671875, 0.003998260945081711], "15": [415.3944091796875, 480.0, 0.00022784247994422913], "16": [244.20388793945312, 480.0, 0.00042440107790753245]}} +{"t": 42.478201, "tracked": true, "track_id": 1, "bbox": [113.69477081298828, 61.59564208984375, 554.0281982421875, 480.0], "det_conf": 0.9140140414237976, "mean_kpt_conf": 0.8971989209001715, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9532444279212705, "right_lift": -0.6980583961409554, "left_bend": 0.38164337163620876, "right_bend": 0.7501059512142908}, "keypoints": {"0": [339.164794921875, 159.66116333007812, 0.9988541603088379], "1": [359.2705993652344, 134.93719482421875, 0.9980834722518921], "2": [318.79864501953125, 138.99880981445312, 0.9947149157524109], "3": [392.5205383300781, 144.22219848632812, 0.9609708786010742], "4": [294.93963623046875, 152.16845703125, 0.7217140793800354], "5": [461.2608642578125, 254.7338409423828, 0.9828106164932251], "6": [247.35507202148438, 257.8587646484375, 0.9964956641197205], "7": [511.5858154296875, 413.47613525390625, 0.7151786684989929], "8": [141.573974609375, 360.9833068847656, 0.9396650791168213], "9": [459.5413513183594, 455.46173095703125, 0.6418457627296448], "10": [143.2943572998047, 229.1475830078125, 0.918854832649231], "11": [432.784912109375, 480.0, 0.13790777325630188], "12": [292.0681457519531, 480.0, 0.2480178326368332], "13": [462.34393310546875, 434.961181640625, 0.0019366835476830602], "14": [275.9696044921875, 443.6219177246094, 0.004134918563067913], "15": [415.5677490234375, 480.0, 0.00024085084442049265], "16": [237.1593017578125, 480.0, 0.00044087853166274726]}} +{"t": 42.511692, "tracked": true, "track_id": 1, "bbox": [111.68778228759766, 61.856597900390625, 554.2225341796875, 479.97271728515625], "det_conf": 0.9120312333106995, "mean_kpt_conf": 0.895238377831199, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9514645284566284, "right_lift": -0.711196808983916, "left_bend": 0.39584326278825493, "right_bend": 0.7517417457996516}, "keypoints": {"0": [340.0380554199219, 159.94491577148438, 0.9988765120506287], "1": [360.13336181640625, 134.70755004882812, 0.9980771541595459], "2": [319.4769287109375, 138.71340942382812, 0.9949499368667603], "3": [393.2958984375, 142.76663208007812, 0.9593579769134521], "4": [295.0209045410156, 150.69674682617188, 0.7292561531066895], "5": [463.7664794921875, 253.8486328125, 0.9827293157577515], "6": [246.07666015625, 257.515380859375, 0.9965003728866577], "7": [515.4970703125, 413.7786865234375, 0.7039059400558472], "8": [142.36822509765625, 362.43408203125, 0.9372764229774475], "9": [460.88250732421875, 454.44622802734375, 0.6308875679969788], "10": [142.3247833251953, 230.4626007080078, 0.9158048033714294], "11": [434.36773681640625, 480.0, 0.13226854801177979], "12": [291.0613708496094, 480.0, 0.23939430713653564], "13": [466.17010498046875, 435.2856750488281, 0.0018593717832118273], "14": [275.8247375488281, 444.0087890625, 0.003996421582996845], "15": [416.963623046875, 480.0, 0.0002325685927644372], "16": [237.66262817382812, 480.0, 0.0004264496674295515]}} +{"t": 42.548512, "tracked": true, "track_id": 1, "bbox": [108.62662506103516, 61.78150939941406, 552.8916625976562, 479.9533996582031], "det_conf": 0.9102686643600464, "mean_kpt_conf": 0.8980237191373651, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9514823061177636, "right_lift": -0.7043317511264122, "left_bend": 0.3708096675557817, "right_bend": 0.7379500505756325}, "keypoints": {"0": [340.5998840332031, 159.133544921875, 0.9989107847213745], "1": [360.92974853515625, 134.3663330078125, 0.9981497526168823], "2": [320.0745544433594, 138.42709350585938, 0.9950838685035706], "3": [394.03863525390625, 143.85064697265625, 0.9603243470191956], "4": [295.7343444824219, 151.90243530273438, 0.7292391657829285], "5": [461.5465087890625, 254.2393798828125, 0.9829375147819519], "6": [247.69894409179688, 258.2204284667969, 0.9965763688087463], "7": [512.8084106445312, 412.751708984375, 0.7200547456741333], "8": [142.740966796875, 362.3594055175781, 0.9409293532371521], "9": [464.595703125, 454.92181396484375, 0.6383838653564453], "10": [138.2683563232422, 230.62701416015625, 0.9176711440086365], "11": [431.6563720703125, 480.0, 0.14209400117397308], "12": [290.3730773925781, 480.0, 0.2533818781375885], "13": [464.3658447265625, 435.4562072753906, 0.0019129980355501175], "14": [272.70635986328125, 444.5230407714844, 0.004053271375596523], "15": [419.9395751953125, 480.0, 0.00023846734256949276], "16": [233.04043579101562, 480.0, 0.0004326190974097699]}} +{"t": 42.582197, "tracked": true, "track_id": 1, "bbox": [104.90066528320312, 61.91741943359375, 552.9601440429688, 479.9327087402344], "det_conf": 0.9090983867645264, "mean_kpt_conf": 0.8953111063350331, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9457689171365219, "right_lift": -0.7036543426732087, "left_bend": 0.3559292969055864, "right_bend": 0.7370132033214423}, "keypoints": {"0": [341.00909423828125, 159.31512451171875, 0.9989075660705566], "1": [361.7164306640625, 134.32168579101562, 0.998174786567688], "2": [320.5681457519531, 138.143310546875, 0.9951399564743042], "3": [395.2386474609375, 143.3790283203125, 0.9610468745231628], "4": [296.01080322265625, 150.84805297851562, 0.7319746017456055], "5": [463.72369384765625, 253.87094116210938, 0.9827263355255127], "6": [246.1643829345703, 259.1278991699219, 0.9965446591377258], "7": [517.4463500976562, 410.2839050292969, 0.709044873714447], "8": [141.47152709960938, 362.80584716796875, 0.9370878338813782], "9": [469.8337097167969, 457.7117919921875, 0.6248818039894104], "10": [136.72006225585938, 230.61526489257812, 0.9128928780555725], "11": [432.5960693359375, 480.0, 0.13435986638069153], "12": [289.19403076171875, 480.0, 0.24021773040294647], "13": [466.42730712890625, 433.4732666015625, 0.0018569935346022248], "14": [273.88726806640625, 443.55682373046875, 0.003935433458536863], "15": [419.22137451171875, 480.0, 0.0002387608401477337], "16": [235.60830688476562, 480.0, 0.0004329652292653918]}} +{"t": 42.641729, "tracked": true, "track_id": 1, "bbox": [98.56339263916016, 62.76525115966797, 548.0252685546875, 479.99072265625], "det_conf": 0.9064275622367859, "mean_kpt_conf": 0.9154461188749834, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9437965634360749, "right_lift": -0.703222869054062, "left_bend": 0.4117957736524316, "right_bend": 0.7534112693857569}, "keypoints": {"0": [340.4079284667969, 159.44851684570312, 0.9991533756256104], "1": [361.6111755371094, 134.83346557617188, 0.9987723231315613], "2": [320.0544128417969, 138.32357788085938, 0.9952906370162964], "3": [395.58837890625, 143.26907348632812, 0.9753275513648987], "4": [296.0424499511719, 149.94578552246094, 0.719589352607727], "5": [461.49041748046875, 251.78384399414062, 0.9901195764541626], "6": [240.23619079589844, 258.1307373046875, 0.9974320530891418], "7": [517.0526733398438, 410.43798828125, 0.8148934245109558], "8": [119.48464965820312, 377.56658935546875, 0.9418114423751831], "9": [468.7794494628906, 444.462646484375, 0.713778555393219], "10": [121.78204345703125, 235.71661376953125, 0.9237390160560608], "11": [430.1497802734375, 480.0, 0.15970368683338165], "12": [282.0268249511719, 480.0, 0.24824747443199158], "13": [472.6799621582031, 432.441162109375, 0.00124714698176831], "14": [251.9109344482422, 441.0093688964844, 0.002167204162105918], "15": [440.6820983886719, 471.906005859375, 0.0001526435517007485], "16": [203.05978393554688, 468.3922119140625, 0.0002412012981949374]}} +{"t": 42.676865, "tracked": true, "track_id": 1, "bbox": [97.06771087646484, 62.655460357666016, 546.9339599609375, 479.9519958496094], "det_conf": 0.9079201221466064, "mean_kpt_conf": 0.9145338210192594, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9455058100621583, "right_lift": -0.6962197678321742, "left_bend": 0.4217417236897156, "right_bend": 0.7560084964118208}, "keypoints": {"0": [340.3053283691406, 158.922119140625, 0.9991391897201538], "1": [361.3723449707031, 134.7312469482422, 0.9987474679946899], "2": [320.02618408203125, 138.22640991210938, 0.9952827095985413], "3": [395.05438232421875, 144.30203247070312, 0.9749465584754944], "4": [296.1763000488281, 150.92926025390625, 0.722838282585144], "5": [459.5142822265625, 253.7943115234375, 0.9898842573165894], "6": [240.44662475585938, 258.2099304199219, 0.9973457455635071], "7": [514.5728149414062, 413.675537109375, 0.8103909492492676], "8": [117.622802734375, 377.33636474609375, 0.939836859703064], "9": [467.93585205078125, 444.0647277832031, 0.7094663381576538], "10": [122.47955322265625, 235.20123291015625, 0.9219936728477478], "11": [427.2951354980469, 480.0, 0.15514668822288513], "12": [280.746337890625, 480.0, 0.24127669632434845], "13": [471.44427490234375, 432.55841064453125, 0.0012563631171360612], "14": [252.96878051757812, 440.1796875, 0.0021820589900016785], "15": [443.1221008300781, 470.86700439453125, 0.00015551396063528955], "16": [204.7298583984375, 467.8662414550781, 0.0002456395886838436]}} +{"t": 42.740834, "tracked": true, "track_id": 1, "bbox": [93.96055603027344, 62.10898971557617, 552.5679931640625, 479.89691162109375], "det_conf": 0.9084096550941467, "mean_kpt_conf": 0.9256847229870883, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9413073530978465, "right_lift": -0.7136131803875961, "left_bend": 0.5137748638693003, "right_bend": 0.7371476235117915}, "keypoints": {"0": [342.25311279296875, 159.58758544921875, 0.9992602467536926], "1": [363.875244140625, 134.8027801513672, 0.9986299276351929], "2": [321.4610595703125, 137.33094787597656, 0.9960630536079407], "3": [397.5158996582031, 144.42880249023438, 0.9642515778541565], "4": [295.2275695800781, 149.50714111328125, 0.7261521220207214], "5": [464.1488952636719, 253.6837615966797, 0.9891304969787598], "6": [244.83074951171875, 259.5908203125, 0.9976454377174377], "7": [518.384521484375, 404.9273986816406, 0.8230763077735901], "8": [134.5707550048828, 371.908447265625, 0.959143877029419], "9": [457.68988037109375, 423.77154541015625, 0.7794354557991028], "10": [127.87095642089844, 237.00048828125, 0.9497434496879578], "11": [433.22113037109375, 480.0, 0.17754116654396057], "12": [285.3406677246094, 480.0, 0.2884579598903656], "13": [468.9080810546875, 436.927490234375, 0.0012561740586534142], "14": [253.73101806640625, 441.71295166015625, 0.0023862794041633606], "15": [428.6629638671875, 478.9239501953125, 0.0001272143272217363], "16": [201.18020629882812, 471.8505859375, 0.00021340558305382729]}} +{"t": 42.810481, "tracked": true, "track_id": 1, "bbox": [96.70042419433594, 62.38524627685547, 547.9564819335938, 479.8515930175781], "det_conf": 0.9066842198371887, "mean_kpt_conf": 0.9157725464213978, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9393279695599837, "right_lift": -0.7068080719525476, "left_bend": 0.4102174655376338, "right_bend": 0.7571653546509519}, "keypoints": {"0": [341.1149597167969, 159.1253662109375, 0.9991368651390076], "1": [362.19073486328125, 135.19090270996094, 0.9986817240715027], "2": [320.8212585449219, 137.73529052734375, 0.9954259991645813], "3": [394.62548828125, 144.7694549560547, 0.9716247916221619], "4": [295.69708251953125, 149.5702362060547, 0.737842857837677], "5": [457.8390808105469, 253.28005981445312, 0.9897164702415466], "6": [239.79525756835938, 257.82989501953125, 0.9972476363182068], "7": [515.423583984375, 410.9696350097656, 0.8118763566017151], "8": [118.8948974609375, 378.628173828125, 0.9385953545570374], "9": [472.65740966796875, 442.2947998046875, 0.7118649482727051], "10": [122.12338256835938, 237.87368774414062, 0.9214850068092346], "11": [427.1612548828125, 480.0, 0.14957591891288757], "12": [280.9097595214844, 480.0, 0.23095731437206268], "13": [470.60772705078125, 429.02294921875, 0.001274128444492817], "14": [250.13232421875, 436.23297119140625, 0.0021627212408930063], "15": [443.1583251953125, 469.6423645019531, 0.00015812502533663064], "16": [201.34310913085938, 464.11871337890625, 0.0002441610849928111]}} +{"t": 42.844587, "tracked": true, "track_id": 1, "bbox": [98.5906982421875, 62.292213439941406, 547.3417358398438, 479.8379821777344], "det_conf": 0.9076347351074219, "mean_kpt_conf": 0.9136978008530356, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9388941330681693, "right_lift": -0.7280287354369172, "left_bend": 0.4509436207865625, "right_bend": 0.7592151107795146}, "keypoints": {"0": [341.4571533203125, 159.42465209960938, 0.9991248250007629], "1": [362.60284423828125, 135.085205078125, 0.9985876083374023], "2": [321.0180969238281, 137.10269165039062, 0.9955099821090698], "3": [394.45806884765625, 143.56280517578125, 0.9688602089881897], "4": [294.7811584472656, 147.28732299804688, 0.7448025345802307], "5": [458.88116455078125, 254.22669982910156, 0.9897915124893188], "6": [238.74496459960938, 257.7185363769531, 0.9972389936447144], "7": [517.6978149414062, 414.66143798828125, 0.7997772097587585], "8": [123.21810913085938, 380.4043884277344, 0.9342024326324463], "9": [469.19268798828125, 441.50787353515625, 0.7046009302139282], "10": [123.06388854980469, 239.4080810546875, 0.9181795716285706], "11": [428.9718017578125, 480.0, 0.14476355910301208], "12": [281.9229736328125, 480.0, 0.22429072856903076], "13": [471.3717346191406, 432.2181091308594, 0.001277443370781839], "14": [254.48020935058594, 437.7289123535156, 0.002171271713450551], "15": [440.45489501953125, 470.0818176269531, 0.00015762732073199004], "16": [210.13369750976562, 462.189697265625, 0.00024318532086908817]}} +{"t": 42.90905, "tracked": true, "track_id": 1, "bbox": [102.29048156738281, 61.66941452026367, 550.1853637695312, 479.6863098144531], "det_conf": 0.9078525900840759, "mean_kpt_conf": 0.9011604840105231, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9395078976644731, "right_lift": -0.736586194608583, "left_bend": 0.34836530363688484, "right_bend": 0.7472844547621336}, "keypoints": {"0": [343.76031494140625, 159.18417358398438, 0.9989997744560242], "1": [364.03411865234375, 134.68699645996094, 0.9979263544082642], "2": [322.9422302246094, 136.8707275390625, 0.996046245098114], "3": [393.90435791015625, 144.00479125976562, 0.9401730895042419], "4": [294.7248229980469, 148.36184692382812, 0.7884268760681152], "5": [459.053955078125, 254.2015380859375, 0.983393132686615], "6": [244.11752319335938, 258.5425720214844, 0.9965568780899048], "7": [516.383056640625, 411.4478454589844, 0.7213779091835022], "8": [143.27806091308594, 368.3638916015625, 0.9387189149856567], "9": [473.5172119140625, 457.94207763671875, 0.6338205337524414], "10": [136.49298095703125, 235.8079833984375, 0.9173256158828735], "11": [432.0361328125, 480.0, 0.13776026666164398], "12": [289.615966796875, 480.0, 0.24113459885120392], "13": [466.8218994140625, 436.44140625, 0.0018742051906883717], "14": [271.4444580078125, 445.1795654296875, 0.0038145482540130615], "15": [421.1047058105469, 480.0, 0.00022542451915796846], "16": [230.34616088867188, 480.0, 0.00038818561006337404]}} +{"t": 42.973225, "tracked": true, "track_id": 1, "bbox": [108.6746826171875, 61.969913482666016, 547.7733764648438, 479.8374328613281], "det_conf": 0.911126434803009, "mean_kpt_conf": 0.9156111262061379, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9344153596941972, "right_lift": -0.747701414200884, "left_bend": 0.4562830104003326, "right_bend": 0.7879580873735786}, "keypoints": {"0": [342.2205810546875, 159.1175537109375, 0.9991158843040466], "1": [363.1479187011719, 134.9774169921875, 0.998450517654419], "2": [321.54498291015625, 136.72109985351562, 0.9957821369171143], "3": [393.99267578125, 143.60377502441406, 0.9623151421546936], "4": [294.1874084472656, 146.77989196777344, 0.7697100043296814], "5": [458.04364013671875, 253.23211669921875, 0.9897127151489258], "6": [237.5457763671875, 256.9246520996094, 0.9971464276313782], "7": [518.8156127929688, 412.6611328125, 0.7996028065681458], "8": [126.87791442871094, 381.53631591796875, 0.9338459372520447], "9": [470.33831787109375, 439.2403564453125, 0.7069427371025085], "10": [135.21206665039062, 242.923828125, 0.9190980792045593], "11": [429.9583435058594, 480.0, 0.14638890326023102], "12": [282.74462890625, 480.0, 0.22528798878192902], "13": [474.60992431640625, 432.4956970214844, 0.0012903325259685516], "14": [259.3447265625, 438.078857421875, 0.002202395349740982], "15": [443.2134704589844, 472.2188720703125, 0.0001592623011674732], "16": [217.05648803710938, 463.76519775390625, 0.00024434388615190983]}} +{"t": 43.037077, "tracked": true, "track_id": 1, "bbox": [112.99842834472656, 61.57203674316406, 553.0768432617188, 479.729736328125], "det_conf": 0.9101986289024353, "mean_kpt_conf": 0.8994912071661516, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9404038176873415, "right_lift": -0.7522848485627719, "left_bend": 0.35427788224052287, "right_bend": 0.7732193879244627}, "keypoints": {"0": [344.117919921875, 158.84844970703125, 0.9989383816719055], "1": [364.34197998046875, 134.71841430664062, 0.9975402355194092], "2": [323.33636474609375, 136.07823181152344, 0.9961854815483093], "3": [392.76202392578125, 144.1329345703125, 0.92194664478302], "4": [293.9097595214844, 146.55789184570312, 0.8163694143295288], "5": [456.0901184082031, 253.9683837890625, 0.9828158020973206], "6": [241.06983947753906, 256.1207275390625, 0.9962647557258606], "7": [513.296875, 412.1683654785156, 0.7083117365837097], "8": [143.2207489013672, 367.84832763671875, 0.9333781003952026], "9": [471.5262451171875, 455.59039306640625, 0.6280050277709961], "10": [144.1309051513672, 234.41162109375, 0.9146476984024048], "11": [428.6053466796875, 480.0, 0.12921126186847687], "12": [287.1119689941406, 480.0, 0.2253243625164032], "13": [463.91912841796875, 434.3319396972656, 0.001957152970135212], "14": [276.36138916015625, 442.4909362792969, 0.0039610774256289005], "15": [414.48345947265625, 480.0, 0.0002414171030977741], "16": [239.06097412109375, 480.0, 0.000408520718337968]}} +{"t": 43.105186, "tracked": true, "track_id": 1, "bbox": [115.61698150634766, 60.957252502441406, 555.5001220703125, 479.7415771484375], "det_conf": 0.9107794761657715, "mean_kpt_conf": 0.9012414758855646, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9412843207050041, "right_lift": -0.7487143500655886, "left_bend": 0.3116654272142438, "right_bend": 0.7781200689892457}, "keypoints": {"0": [344.266845703125, 158.20034790039062, 0.9989150762557983], "1": [364.282470703125, 134.2438507080078, 0.9975516200065613], "2": [323.24505615234375, 136.21356201171875, 0.9961452484130859], "3": [392.561767578125, 144.08152770996094, 0.9238176345825195], "4": [294.07415771484375, 147.8970947265625, 0.8208099603652954], "5": [455.55419921875, 251.79530334472656, 0.9831255078315735], "6": [240.8030548095703, 255.349365234375, 0.9963160157203674], "7": [512.0217895507812, 409.2292785644531, 0.7211819887161255], "8": [142.6611785888672, 366.19720458984375, 0.9366152286529541], "9": [475.57574462890625, 458.7210693359375, 0.6247746348381042], "10": [146.34268188476562, 232.9373321533203, 0.9144033193588257], "11": [428.00213623046875, 480.0, 0.13753023743629456], "12": [286.665283203125, 480.0, 0.2373175323009491], "13": [464.8409118652344, 432.05218505859375, 0.0019910840783268213], "14": [275.7525634765625, 442.3501281738281, 0.004039160907268524], "15": [414.8089904785156, 480.0, 0.0002501965209376067], "16": [237.12684631347656, 480.0, 0.00042361268424429]}} +{"t": 43.170358, "tracked": true, "track_id": 1, "bbox": [116.59407043457031, 60.773597717285156, 555.4241333007812, 479.7518310546875], "det_conf": 0.9130947589874268, "mean_kpt_conf": 0.8975433815609325, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9413875849260724, "right_lift": -0.747620604204405, "left_bend": 0.3914228695133314, "right_bend": 0.7906911191207243}, "keypoints": {"0": [344.3109436035156, 159.30010986328125, 0.9989053010940552], "1": [364.0055236816406, 135.54248046875, 0.9974269270896912], "2": [323.5538330078125, 137.10983276367188, 0.9961896538734436], "3": [391.69488525390625, 145.4531707763672, 0.918775200843811], "4": [294.0066223144531, 148.33523559570312, 0.8238080739974976], "5": [456.08038330078125, 255.07852172851562, 0.9826138615608215], "6": [239.93731689453125, 256.1802673339844, 0.9961873888969421], "7": [513.1451416015625, 414.33074951171875, 0.6973711252212524], "8": [141.103515625, 367.4395446777344, 0.9307460784912109], "9": [465.85723876953125, 452.9775695800781, 0.6191706657409668], "10": [150.39083862304688, 232.58578491210938, 0.9117829203605652], "11": [428.74407958984375, 480.0, 0.12632864713668823], "12": [286.89300537109375, 480.0, 0.2217150330543518], "13": [462.54693603515625, 435.70965576171875, 0.0019405271159484982], "14": [277.1490478515625, 443.03033447265625, 0.003946335986256599], "15": [413.1754150390625, 480.0, 0.0002418140065856278], "16": [241.26828002929688, 480.0, 0.00041011013672687113]}} +{"t": 43.204708, "tracked": true, "track_id": 1, "bbox": [117.39884185791016, 60.762657165527344, 554.8992309570312, 479.7552795410156], "det_conf": 0.9145573377609253, "mean_kpt_conf": 0.8984403556043451, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9411430743054988, "right_lift": -0.7591424891820984, "left_bend": 0.37830606053953925, "right_bend": 0.792815032835544}, "keypoints": {"0": [344.0901794433594, 159.23143005371094, 0.9989079236984253], "1": [363.79449462890625, 135.13946533203125, 0.9974084496498108], "2": [323.28668212890625, 136.868896484375, 0.9961763620376587], "3": [391.7203369140625, 143.98377990722656, 0.9170131683349609], "4": [293.8037109375, 147.29454040527344, 0.8228676319122314], "5": [456.5092468261719, 252.054443359375, 0.9829151630401611], "6": [240.33396911621094, 255.6414031982422, 0.9962558746337891], "7": [513.4755859375, 410.67022705078125, 0.7046300768852234], "8": [143.92564392089844, 368.077880859375, 0.9332146644592285], "9": [464.3094787597656, 454.41485595703125, 0.6204532384872437], "10": [151.79949951171875, 232.26473999023438, 0.9130013585090637], "11": [429.0557861328125, 480.0, 0.13421908020973206], "12": [286.8810119628906, 480.0, 0.23409675061702728], "13": [461.899658203125, 436.71148681640625, 0.0019623572006821632], "14": [275.178955078125, 445.4752197265625, 0.003996121697127819], "15": [408.9638671875, 480.0, 0.0002393235481576994], "16": [236.236328125, 480.0, 0.00040499429451301694]}} +{"t": 43.241995, "tracked": true, "track_id": 1, "bbox": [118.0645523071289, 60.782554626464844, 556.4125366210938, 479.7606201171875], "det_conf": 0.9109092354774475, "mean_kpt_conf": 0.8994101123376326, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9408912248382251, "right_lift": -0.7472381847588812, "left_bend": 0.3651793516225606, "right_bend": 0.7922957721902215}, "keypoints": {"0": [344.3110656738281, 157.9335174560547, 0.9989207983016968], "1": [364.3856201171875, 134.1331329345703, 0.9975284934043884], "2": [323.23480224609375, 135.8327178955078, 0.9961801767349243], "3": [392.66143798828125, 144.52857971191406, 0.9221175909042358], "4": [293.6080322265625, 147.71588134765625, 0.8226103186607361], "5": [456.210205078125, 253.6075439453125, 0.9828512668609619], "6": [240.2588653564453, 256.258056640625, 0.9962910413742065], "7": [513.0575561523438, 411.5224304199219, 0.7056721448898315], "8": [141.34228515625, 367.48150634765625, 0.9334588050842285], "9": [469.28961181640625, 453.8861083984375, 0.6236596703529358], "10": [151.4793701171875, 231.44114685058594, 0.914220929145813], "11": [429.9764709472656, 480.0, 0.13353100419044495], "12": [288.5011901855469, 480.0, 0.23351728916168213], "13": [463.4127197265625, 437.421630859375, 0.0019292928045615554], "14": [280.3625183105469, 446.324951171875, 0.003952444065362215], "15": [413.097900390625, 480.0, 0.00023565047013107687], "16": [244.31399536132812, 480.0, 0.0004026608366984874]}} +{"t": 43.305847, "tracked": true, "track_id": 1, "bbox": [117.85798645019531, 61.657657623291016, 551.0176391601562, 479.8276062011719], "det_conf": 0.912642240524292, "mean_kpt_conf": 0.9185996922579679, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.932469055811864, "right_lift": -0.7578662847584887, "left_bend": 0.43494517784541753, "right_bend": 0.8245586740004355}, "keypoints": {"0": [343.0119323730469, 157.15126037597656, 0.9990656971931458], "1": [364.37542724609375, 134.33740234375, 0.998238205909729], "2": [322.9158935546875, 134.46490478515625, 0.9958783388137817], "3": [393.77142333984375, 145.13919067382812, 0.9545813798904419], "4": [294.5115051269531, 144.515869140625, 0.7975716590881348], "5": [454.5706787109375, 253.40863037109375, 0.9897875785827637], "6": [233.8604736328125, 254.5567169189453, 0.9970433115959167], "7": [515.8085327148438, 411.4776306152344, 0.8068897128105164], "8": [126.04510498046875, 379.79949951171875, 0.933488130569458], "9": [471.2693786621094, 440.27679443359375, 0.7124284505844116], "10": [149.04238891601562, 236.92703247070312, 0.9196241497993469], "11": [426.04620361328125, 480.0, 0.14974328875541687], "12": [278.7101135253906, 480.0, 0.2253519743680954], "13": [474.00775146484375, 431.5808410644531, 0.0013433728599920869], "14": [261.181640625, 436.8706359863281, 0.0022524353116750717], "15": [443.21868896484375, 475.76385498046875, 0.00016635286738164723], "16": [221.7136688232422, 463.9621276855469, 0.00024932686937972903]}} +{"t": 43.365578, "tracked": true, "track_id": 1, "bbox": [117.51956939697266, 61.83150100708008, 546.905517578125, 479.78570556640625], "det_conf": 0.9164700508117676, "mean_kpt_conf": 0.9206771037795327, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9271342688356438, "right_lift": -0.7575119894849472, "left_bend": 0.40893194990190296, "right_bend": 0.8314713876306338}, "keypoints": {"0": [344.26043701171875, 156.67385864257812, 0.9990744590759277], "1": [365.340576171875, 134.20327758789062, 0.9981603026390076], "2": [324.05670166015625, 134.16497802734375, 0.9960997104644775], "3": [393.8616027832031, 145.46665954589844, 0.9494500756263733], "4": [294.95233154296875, 144.65789794921875, 0.814211905002594], "5": [453.443115234375, 253.17630004882812, 0.989900529384613], "6": [233.56442260742188, 254.61618041992188, 0.997028648853302], "7": [516.2972412109375, 408.68646240234375, 0.8127850294113159], "8": [126.22808837890625, 379.1656799316406, 0.9345402717590332], "9": [473.7585144042969, 442.40203857421875, 0.7156622409820557], "10": [151.81985473632812, 239.99391174316406, 0.9205349683761597], "11": [424.1357116699219, 480.0, 0.15122810006141663], "12": [277.2605895996094, 480.0, 0.225282222032547], "13": [473.76605224609375, 430.5389099121094, 0.0013239765539765358], "14": [261.16162109375, 436.1225891113281, 0.0022007266525179148], "15": [443.97357177734375, 474.5977783203125, 0.00016672001220285892], "16": [221.85606384277344, 462.5539245605469, 0.000246361771132797]}} +{"t": 43.401053, "tracked": true, "track_id": 1, "bbox": [117.26445007324219, 62.099998474121094, 546.7938232421875, 479.733154296875], "det_conf": 0.9156335592269897, "mean_kpt_conf": 0.9169659993865273, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9323206979027251, "right_lift": -0.754851045071994, "left_bend": 0.36602225809129535, "right_bend": 0.8299686453932686}, "keypoints": {"0": [345.23992919921875, 156.0313720703125, 0.999039351940155], "1": [365.8625183105469, 133.8843231201172, 0.9980849027633667], "2": [325.0294494628906, 134.00979614257812, 0.9961013793945312], "3": [393.79620361328125, 145.67941284179688, 0.9474088549613953], "4": [295.8671569824219, 145.30630493164062, 0.8232544660568237], "5": [453.1490478515625, 254.73236083984375, 0.9895946979522705], "6": [233.2402801513672, 254.96759033203125, 0.9969788789749146], "7": [513.479736328125, 410.27020263671875, 0.8026123642921448], "8": [127.00363159179688, 377.23211669921875, 0.9316774010658264], "9": [477.69561767578125, 446.45184326171875, 0.6888647079467773], "10": [152.35202026367188, 238.87481689453125, 0.913008987903595], "11": [422.4520568847656, 480.0, 0.1532081514596939], "12": [275.4794006347656, 480.0, 0.22921212017536163], "13": [474.26873779296875, 431.2170104980469, 0.0013553170720115304], "14": [260.08740234375, 437.7633361816406, 0.002274654805660248], "15": [444.94891357421875, 473.4180908203125, 0.00017586961621418595], "16": [222.71810913085938, 464.34228515625, 0.0002603812317829579]}} +{"t": 43.468317, "tracked": true, "track_id": 1, "bbox": [117.41072845458984, 61.96451187133789, 546.0751342773438, 479.8317565917969], "det_conf": 0.9175974726676941, "mean_kpt_conf": 0.9158544865521517, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9359229519978031, "right_lift": -0.7609090141640026, "left_bend": 0.4317651834738488, "right_bend": 0.8263858674698702}, "keypoints": {"0": [345.76953125, 156.0137939453125, 0.9990426898002625], "1": [366.17047119140625, 133.84420776367188, 0.9980214834213257], "2": [325.5244140625, 134.09950256347656, 0.9961913824081421], "3": [393.65032958984375, 145.3754425048828, 0.9446813464164734], "4": [295.8927917480469, 145.39987182617188, 0.8254073262214661], "5": [454.2659912109375, 254.6486358642578, 0.989725649356842], "6": [232.4005584716797, 255.18594360351562, 0.9969929456710815], "7": [513.57470703125, 412.251220703125, 0.7966472506523132], "8": [127.32659912109375, 378.40496826171875, 0.9290346503257751], "9": [468.1520080566406, 441.64154052734375, 0.6876818537712097], "10": [150.162109375, 237.49305725097656, 0.9109727740287781], "11": [423.2908935546875, 480.0, 0.15365265309810638], "12": [275.37554931640625, 480.0, 0.22926950454711914], "13": [472.96087646484375, 432.8517150878906, 0.001385320327244699], "14": [260.3367614746094, 438.5063781738281, 0.0023026042617857456], "15": [440.788818359375, 473.948486328125, 0.0001771159440977499], "16": [224.34573364257812, 463.83233642578125, 0.0002602293388918042]}} +{"t": 43.533162, "tracked": true, "track_id": 1, "bbox": [117.40422058105469, 62.49733352661133, 547.2037353515625, 479.9408874511719], "det_conf": 0.9169676303863525, "mean_kpt_conf": 0.9171106761152094, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9258419498361706, "right_lift": -0.7637408715861539, "left_bend": 0.41922301916538246, "right_bend": 0.833313399727965}, "keypoints": {"0": [345.9489440917969, 155.74688720703125, 0.9990972280502319], "1": [366.4836120605469, 133.95721435546875, 0.998089611530304], "2": [325.9180603027344, 133.6969757080078, 0.9964147806167603], "3": [393.7528076171875, 146.0599365234375, 0.9432178735733032], "4": [296.0317687988281, 144.85678100585938, 0.8280341029167175], "5": [455.1517333984375, 253.68667602539062, 0.9898169040679932], "6": [232.693359375, 254.11376953125, 0.9970524311065674], "7": [518.904541015625, 409.87432861328125, 0.8020659685134888], "8": [128.2716827392578, 377.6587219238281, 0.9332731366157532], "9": [475.98114013671875, 441.91998291015625, 0.6877604722976685], "10": [153.42245483398438, 237.89491271972656, 0.9133949279785156], "11": [426.9044494628906, 480.0, 0.15759938955307007], "12": [278.0214538574219, 480.0, 0.23648609220981598], "13": [476.96124267578125, 433.8287048339844, 0.0013254894874989986], "14": [259.96783447265625, 438.701416015625, 0.0022275522351264954], "15": [447.60302734375, 477.5168762207031, 0.00016598717775195837], "16": [222.6297149658203, 464.7838134765625, 0.00024557451251894236]}} +{"t": 43.568143, "tracked": true, "track_id": 1, "bbox": [117.31161499023438, 62.70886993408203, 547.4473876953125, 479.9206237792969], "det_conf": 0.9182523488998413, "mean_kpt_conf": 0.9186256961389021, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9291699833406769, "right_lift": -0.757432382295199, "left_bend": 0.43862488417184253, "right_bend": 0.829793336127413}, "keypoints": {"0": [345.97674560546875, 155.49066162109375, 0.9990814924240112], "1": [366.44281005859375, 134.03623962402344, 0.99810791015625], "2": [325.7428283691406, 133.9580078125, 0.9962800145149231], "3": [393.733642578125, 147.22955322265625, 0.9464832544326782], "4": [296.1065368652344, 146.5997314453125, 0.8223332166671753], "5": [454.64312744140625, 254.59536743164062, 0.9899627566337585], "6": [233.84909057617188, 254.57382202148438, 0.9970294237136841], "7": [517.2549438476562, 411.978271484375, 0.8076560497283936], "8": [127.47659301757812, 377.9744873046875, 0.9339746236801147], "9": [471.8100891113281, 441.2001037597656, 0.6984787583351135], "10": [152.7082977294922, 236.67361450195312, 0.9154951572418213], "11": [425.6405334472656, 480.0, 0.15640832483768463], "12": [278.0400390625, 480.0, 0.2332831174135208], "13": [474.8006591796875, 431.77264404296875, 0.0013541881926357746], "14": [259.90911865234375, 436.04925537109375, 0.002259440952911973], "15": [445.1114501953125, 476.0389404296875, 0.00017033968470059335], "16": [220.2071533203125, 463.4343566894531, 0.000251883699093014]}} +{"t": 43.601741, "tracked": true, "track_id": 1, "bbox": [117.26595306396484, 62.976261138916016, 546.8731079101562, 479.8400573730469], "det_conf": 0.916836142539978, "mean_kpt_conf": 0.9176500873132185, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9332486207109032, "right_lift": -0.7509505680817447, "left_bend": 0.4238711656435358, "right_bend": 0.8312217985672562}, "keypoints": {"0": [346.3096008300781, 155.4700927734375, 0.9990787506103516], "1": [366.37750244140625, 133.84841918945312, 0.9981154203414917], "2": [325.86553955078125, 134.09835815429688, 0.9962789416313171], "3": [393.57635498046875, 146.87582397460938, 0.9457440376281738], "4": [296.27545166015625, 146.99942016601562, 0.8232806324958801], "5": [453.70111083984375, 256.3797912597656, 0.9896599650382996], "6": [234.2284698486328, 254.5946044921875, 0.9969455599784851], "7": [514.2112426757812, 413.57940673828125, 0.8043503761291504], "8": [127.74365234375, 375.68768310546875, 0.9333601593971252], "9": [474.6224670410156, 441.0494384765625, 0.6931837201118469], "10": [154.68875122070312, 236.38108825683594, 0.9141533970832825], "11": [423.13360595703125, 480.0, 0.15696902573108673], "12": [275.96429443359375, 480.0, 0.23477746546268463], "13": [473.8079833984375, 433.6619873046875, 0.0013392064720392227], "14": [256.6053466796875, 438.030517578125, 0.0022435009013861418], "15": [447.1329650878906, 474.94488525390625, 0.00017116614617407322], "16": [217.50054931640625, 465.47509765625, 0.00025304945302195847]}} +{"t": 43.66729, "tracked": true, "track_id": 1, "bbox": [117.01995086669922, 63.39201736450195, 547.3773803710938, 479.86907958984375], "det_conf": 0.9174978733062744, "mean_kpt_conf": 0.9169542952017351, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9335800133018967, "right_lift": -0.7659530961990854, "left_bend": 0.43104728723297714, "right_bend": 0.8342466163411552}, "keypoints": {"0": [346.05615234375, 155.76953125, 0.9990478157997131], "1": [366.4407043457031, 134.00453186035156, 0.9980009198188782], "2": [325.6087646484375, 133.97032165527344, 0.996220052242279], "3": [393.45831298828125, 146.69735717773438, 0.9421665072441101], "4": [295.50115966796875, 146.15725708007812, 0.8279610276222229], "5": [454.2127685546875, 254.95556640625, 0.989754855632782], "6": [232.88262939453125, 254.93487548828125, 0.9969159364700317], "7": [514.899658203125, 413.0497741699219, 0.8012660145759583], "8": [128.80209350585938, 378.93743896484375, 0.9299900531768799], "9": [472.0295104980469, 441.329833984375, 0.6925023198127747], "10": [154.3336639404297, 236.6475830078125, 0.9126717448234558], "11": [426.1697692871094, 480.0, 0.1491013914346695], "12": [278.5372314453125, 480.0, 0.22183501720428467], "13": [475.32061767578125, 429.37005615234375, 0.0013756663538515568], "14": [262.05670166015625, 434.6086120605469, 0.0022782981395721436], "15": [443.77093505859375, 473.8507080078125, 0.00017788703553378582], "16": [225.11920166015625, 462.8788757324219, 0.0002608259965199977]}} +{"t": 43.728945, "tracked": true, "track_id": 1, "bbox": [116.95036315917969, 63.84421920776367, 547.398193359375, 479.81707763671875], "det_conf": 0.9164174795150757, "mean_kpt_conf": 0.9169054789976641, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9297540619257438, "right_lift": -0.7631014490145364, "left_bend": 0.3916987139695986, "right_bend": 0.8294008852462663}, "keypoints": {"0": [345.6975402832031, 155.79736328125, 0.9990301132202148], "1": [365.7200012207031, 134.5014190673828, 0.9979414343833923], "2": [325.65631103515625, 134.34521484375, 0.9961744546890259], "3": [392.24969482421875, 147.51722717285156, 0.9415544271469116], "4": [296.1054382324219, 146.7368927001953, 0.8300612568855286], "5": [452.7159423828125, 255.5068359375, 0.9897850155830383], "6": [233.67843627929688, 255.1840057373047, 0.9969419836997986], "7": [514.4329223632812, 411.3583984375, 0.8038538694381714], "8": [130.785400390625, 376.67620849609375, 0.9315302968025208], "9": [477.0185852050781, 443.994384765625, 0.6875240802764893], "10": [154.44189453125, 236.12110900878906, 0.9115633368492126], "11": [424.1805419921875, 480.0, 0.15668821334838867], "12": [277.98388671875, 480.0, 0.23264957964420319], "13": [474.53289794921875, 429.7991943359375, 0.0014318458270281553], "14": [262.1202392578125, 435.3558349609375, 0.0023859592620283365], "15": [444.3026123046875, 473.47747802734375, 0.00018462605657987297], "16": [225.70889282226562, 462.80975341796875, 0.0002713545400183648]}} +{"t": 43.792794, "tracked": true, "track_id": 1, "bbox": [116.84480285644531, 63.81720733642578, 547.7240600585938, 479.9434814453125], "det_conf": 0.9176480174064636, "mean_kpt_conf": 0.917967910116369, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.928159556773104, "right_lift": -0.7640131570329368, "left_bend": 0.46307290169643006, "right_bend": 0.8380923584579574}, "keypoints": {"0": [345.5657653808594, 156.0117645263672, 0.999068558216095], "1": [365.4647216796875, 134.43011474609375, 0.9979323148727417], "2": [325.20599365234375, 134.24246215820312, 0.9963411688804626], "3": [391.6607666015625, 147.214111328125, 0.9361554384231567], "4": [294.662109375, 146.36328125, 0.8326597213745117], "5": [452.48126220703125, 256.50970458984375, 0.9897554516792297], "6": [232.10281372070312, 254.9832763671875, 0.9968344569206238], "7": [515.9386596679688, 414.7615966796875, 0.8025873899459839], "8": [127.65415954589844, 378.66595458984375, 0.9291099905967712], "9": [472.4307861328125, 438.38165283203125, 0.7026031017303467], "10": [155.34901428222656, 236.6824493408203, 0.9145994186401367], "11": [425.0946044921875, 480.0, 0.14780861139297485], "12": [278.036376953125, 480.0, 0.21848875284194946], "13": [474.28814697265625, 431.67462158203125, 0.001371976686641574], "14": [261.69024658203125, 435.42364501953125, 0.0022422897163778543], "15": [447.1520080566406, 475.14324951171875, 0.00017195002874359488], "16": [226.54849243164062, 463.21820068359375, 0.00024894537637010217]}} +{"t": 43.828965, "tracked": true, "track_id": 1, "bbox": [116.84502410888672, 64.18363189697266, 548.1534423828125, 479.8751220703125], "det_conf": 0.9163100719451904, "mean_kpt_conf": 0.9208774458278309, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.922370954663203, "right_lift": -0.7574918465633518, "left_bend": 0.3785347619826301, "right_bend": 0.8348203729177545}, "keypoints": {"0": [344.5462646484375, 155.8566436767578, 0.9990745782852173], "1": [364.679443359375, 134.46533203125, 0.9980378746986389], "2": [324.41094970703125, 134.2025909423828, 0.9962544441223145], "3": [391.412353515625, 147.54660034179688, 0.942115306854248], "4": [294.7154235839844, 146.53416442871094, 0.8287243247032166], "5": [451.9263610839844, 254.7097625732422, 0.9900189638137817], "6": [232.64599609375, 255.0619659423828, 0.9969512224197388], "7": [516.4563598632812, 408.78631591796875, 0.8171096444129944], "8": [127.70439147949219, 376.8251037597656, 0.9351925253868103], "9": [479.4830322265625, 445.2323913574219, 0.7077117562294006], "10": [154.86724853515625, 237.39727783203125, 0.918461263179779], "11": [424.3458251953125, 480.0, 0.15584556758403778], "12": [277.5876159667969, 480.0, 0.22974011301994324], "13": [475.9408874511719, 428.62701416015625, 0.0013628483284264803], "14": [260.6182861328125, 434.3746032714844, 0.0022535116877406836], "15": [447.60784912109375, 475.35345458984375, 0.0001721652806736529], "16": [221.6038818359375, 463.7098388671875, 0.00025177517090924084]}} +{"t": 43.894973, "tracked": true, "track_id": 1, "bbox": [116.72595977783203, 64.44508361816406, 548.2442016601562, 480.0], "det_conf": 0.918040931224823, "mean_kpt_conf": 0.9210708358071067, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9250832564711485, "right_lift": -0.7592160151104369, "left_bend": 0.41876672344308075, "right_bend": 0.8317601049315458}, "keypoints": {"0": [344.4123840332031, 156.04702758789062, 0.9990696310997009], "1": [364.5024719238281, 134.67086791992188, 0.998043417930603], "2": [324.02301025390625, 134.7344207763672, 0.9961701035499573], "3": [391.44293212890625, 148.33285522460938, 0.944372832775116], "4": [294.47210693359375, 148.05938720703125, 0.8232177495956421], "5": [452.41241455078125, 256.9990234375, 0.9901854991912842], "6": [233.0840606689453, 256.02294921875, 0.9969679713249207], "7": [516.7996215820312, 413.8424072265625, 0.8163676857948303], "8": [128.2235107421875, 378.3448181152344, 0.9341946244239807], "9": [480.39080810546875, 441.2197570800781, 0.7145131826400757], "10": [153.90524291992188, 237.33079528808594, 0.918676495552063], "11": [424.6326904296875, 480.0, 0.15402185916900635], "12": [278.3758544921875, 480.0, 0.22665052115917206], "13": [476.10479736328125, 429.2857360839844, 0.0013846949441358447], "14": [263.4416198730469, 433.99737548828125, 0.002289404859766364], "15": [449.600341796875, 473.654052734375, 0.00017227776697836816], "16": [227.5389862060547, 463.3100891113281, 0.00025338237173855305]}} +{"t": 43.929738, "tracked": true, "track_id": 1, "bbox": [116.3909912109375, 64.54875183105469, 547.5328979492188, 479.9971618652344], "det_conf": 0.9175553917884827, "mean_kpt_conf": 0.9209545037963174, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9273140527688717, "right_lift": -0.7656217917052153, "left_bend": 0.4933822401242655, "right_bend": 0.8375755253459423}, "keypoints": {"0": [343.62091064453125, 157.00234985351562, 0.9990946054458618], "1": [363.7958679199219, 135.09860229492188, 0.9980579018592834], "2": [323.22869873046875, 135.18988037109375, 0.9962269067764282], "3": [390.8428649902344, 147.6722412109375, 0.9423204064369202], "4": [293.52593994140625, 147.25186157226562, 0.8198735117912292], "5": [451.9642333984375, 256.79339599609375, 0.9902709722518921], "6": [232.72006225585938, 255.30120849609375, 0.9969051480293274], "7": [516.884033203125, 417.63653564453125, 0.8129340410232544], "8": [126.36337280273438, 381.88311767578125, 0.9313083291053772], "9": [473.9525146484375, 436.01153564453125, 0.7236959338188171], "10": [153.841064453125, 237.8571319580078, 0.9198117852210999], "11": [425.5065002441406, 480.0, 0.14421643316745758], "12": [279.4674072265625, 480.0, 0.21170873939990997], "13": [474.600830078125, 429.8973388671875, 0.0013587884604930878], "14": [263.6912536621094, 433.09295654296875, 0.0022109728306531906], "15": [448.37213134765625, 473.863037109375, 0.0001671080244705081], "16": [226.75308227539062, 461.97052001953125, 0.0002431591274216771]}} +{"t": 43.96459, "tracked": true, "track_id": 1, "bbox": [116.11648559570312, 64.44931030273438, 548.163818359375, 479.8232727050781], "det_conf": 0.9182239174842834, "mean_kpt_conf": 0.9218875386498191, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9240043208624675, "right_lift": -0.7560381706454377, "left_bend": 0.36785687738974027, "right_bend": 0.8346820623375569}, "keypoints": {"0": [343.3482360839844, 157.2269744873047, 0.9990668892860413], "1": [363.5806884765625, 135.5309295654297, 0.9980471134185791], "2": [323.11669921875, 135.3282470703125, 0.9961112141609192], "3": [390.5025634765625, 148.12518310546875, 0.9425384402275085], "4": [293.57342529296875, 147.0828399658203, 0.8256741762161255], "5": [450.04400634765625, 255.5310516357422, 0.990237295627594], "6": [232.691650390625, 255.36135864257812, 0.9969295859336853], "7": [514.5639038085938, 411.439697265625, 0.8212224245071411], "8": [125.48910522460938, 379.18994140625, 0.9344001412391663], "9": [483.078857421875, 444.3490295410156, 0.716568648815155], "10": [153.4245147705078, 237.151123046875, 0.919966995716095], "11": [424.465087890625, 480.0, 0.15087823569774628], "12": [279.1929016113281, 480.0, 0.22042040526866913], "13": [475.2103576660156, 426.5658264160156, 0.001384180155582726], "14": [261.7492980957031, 432.4866027832031, 0.002250684192404151], "15": [448.7039489746094, 472.1495361328125, 0.00017284229397773743], "16": [222.01426696777344, 461.45294189453125, 0.0002504046424292028]}} +{"t": 44.026821, "tracked": true, "track_id": 1, "bbox": [116.03546142578125, 65.06436920166016, 550.2403564453125, 479.8617858886719], "det_conf": 0.9172284007072449, "mean_kpt_conf": 0.9232045412063599, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9227251686517441, "right_lift": -0.7533456290186296, "left_bend": 0.37989809725469625, "right_bend": 0.8354822639314666}, "keypoints": {"0": [342.8428039550781, 157.4241943359375, 0.9990610480308533], "1": [363.1716003417969, 135.53482055664062, 0.9980884194374084], "2": [322.88531494140625, 135.45529174804688, 0.9959803819656372], "3": [390.6119384765625, 147.51199340820312, 0.9461811184883118], "4": [293.8548583984375, 146.65130615234375, 0.8168964385986328], "5": [451.1490173339844, 254.5467071533203, 0.99031001329422], "6": [232.03517150878906, 255.6249542236328, 0.9970093369483948], "7": [515.4180297851562, 408.39630126953125, 0.8254258632659912], "8": [124.82589721679688, 378.4391174316406, 0.9363046288490295], "9": [480.6012878417969, 442.361328125, 0.726951539516449], "10": [153.56759643554688, 237.2421112060547, 0.9230411648750305], "11": [425.3461608886719, 480.0, 0.1563231498003006], "12": [278.9527587890625, 480.0, 0.22841279208660126], "13": [476.3988342285156, 427.0997009277344, 0.0013947642873972654], "14": [262.8575744628906, 433.66986083984375, 0.002276574494317174], "15": [448.9953308105469, 473.0450439453125, 0.00017093225324060768], "16": [224.85308837890625, 462.334716796875, 0.0002494238724466413]}} +{"t": 44.093477, "tracked": true, "track_id": 1, "bbox": [116.11567687988281, 65.50279998779297, 551.2974243164062, 479.8152160644531], "det_conf": 0.9173488020896912, "mean_kpt_conf": 0.9241767471486871, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9143778819688969, "right_lift": -0.7505822089961426, "left_bend": 0.26362270545056593, "right_bend": 0.8262142045359057}, "keypoints": {"0": [342.89166259765625, 158.0209197998047, 0.9990577101707458], "1": [362.9930419921875, 136.06912231445312, 0.9980558156967163], "2": [322.9000244140625, 136.31924438476562, 0.9960389137268066], "3": [390.1495666503906, 147.59390258789062, 0.9442185163497925], "4": [294.1855773925781, 147.48536682128906, 0.828644335269928], "5": [449.64166259765625, 253.2631072998047, 0.9904244542121887], "6": [232.4148406982422, 256.2624206542969, 0.9970622658729553], "7": [515.970947265625, 403.0673828125, 0.832492470741272], "8": [126.811767578125, 376.21783447265625, 0.93828946352005], "9": [496.146240234375, 448.510009765625, 0.7198216319084167], "10": [151.58306884765625, 236.83865356445312, 0.921838641166687], "11": [423.969482421875, 480.0, 0.16234083473682404], "12": [279.11334228515625, 480.0, 0.2349276840686798], "13": [478.99993896484375, 423.4813537597656, 0.001424857648089528], "14": [266.6448669433594, 433.3597717285156, 0.0023348983377218246], "15": [452.787353515625, 470.2065734863281, 0.00017719872994348407], "16": [231.34642028808594, 462.88287353515625, 0.00025806299527175725]}} +{"t": 44.157267, "tracked": true, "track_id": 1, "bbox": [115.87490844726562, 65.5989990234375, 558.008544921875, 479.8218994140625], "det_conf": 0.9193779826164246, "mean_kpt_conf": 0.9282882105220448, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8989099990339569, "right_lift": -0.7402052362699356, "left_bend": 0.21400917756477142, "right_bend": 0.8211897098411202}, "keypoints": {"0": [342.2149963378906, 158.66229248046875, 0.9990873336791992], "1": [362.3861389160156, 136.41363525390625, 0.9981087446212769], "2": [322.2413024902344, 136.77359008789062, 0.996032178401947], "3": [389.8857421875, 147.32192993164062, 0.9452769756317139], "4": [293.78692626953125, 147.32879638671875, 0.8266893625259399], "5": [449.1763916015625, 252.48895263671875, 0.9907534122467041], "6": [232.84176635742188, 256.4296875, 0.9972025156021118], "7": [519.8857421875, 397.56201171875, 0.8468632102012634], "8": [127.02682495117188, 372.9183654785156, 0.9444853067398071], "9": [508.48736572265625, 448.8208923339844, 0.7377694249153137], "10": [151.3582763671875, 235.84083557128906, 0.9289018511772156], "11": [425.010498046875, 480.0, 0.17901384830474854], "12": [280.7078857421875, 480.0, 0.25720086693763733], "13": [483.28289794921875, 426.61639404296875, 0.00139903137460351], "14": [271.38397216796875, 437.7746276855469, 0.002319814171642065], "15": [460.81121826171875, 472.8954162597656, 0.00016254039655905217], "16": [238.00900268554688, 466.54241943359375, 0.00023913969926070422]}} +{"t": 44.222517, "tracked": true, "track_id": 1, "bbox": [115.50508880615234, 66.1530532836914, 564.2028198242188, 479.83984375], "det_conf": 0.9205976128578186, "mean_kpt_conf": 0.9259075901725076, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8961863811383899, "right_lift": -0.739681956396812, "left_bend": 0.18585379295803456, "right_bend": 0.8244740655962521}, "keypoints": {"0": [341.9709167480469, 158.38858032226562, 0.9991006851196289], "1": [362.12994384765625, 136.9745330810547, 0.9981562495231628], "2": [322.1652526855469, 137.0896759033203, 0.9961571097373962], "3": [389.35345458984375, 149.55921936035156, 0.9474923014640808], "4": [294.0618591308594, 148.966796875, 0.8300608396530151], "5": [449.13140869140625, 254.19134521484375, 0.9909015893936157], "6": [232.84039306640625, 255.94485473632812, 0.9972188472747803], "7": [522.2158813476562, 401.81494140625, 0.8431153297424316], "8": [126.34521484375, 372.9992980957031, 0.943885087966919], "9": [515.6038818359375, 454.786865234375, 0.715668797492981], "10": [152.1168670654297, 236.6197509765625, 0.9232266545295715], "11": [424.8511962890625, 480.0, 0.17474955320358276], "12": [280.7041931152344, 480.0, 0.2525758147239685], "13": [485.24310302734375, 425.9205017089844, 0.0013519999338313937], "14": [272.1603698730469, 435.7510986328125, 0.0022804769687354565], "15": [464.623779296875, 473.33758544921875, 0.00016384654736611992], "16": [238.2061767578125, 466.1422424316406, 0.0002442840195726603]}} +{"t": 44.25735, "tracked": true, "track_id": 1, "bbox": [115.36376953125, 66.26923370361328, 566.7498168945312, 479.8530578613281], "det_conf": 0.9218212962150574, "mean_kpt_conf": 0.9243475252931769, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9030334274893043, "right_lift": -0.7410502121067707, "left_bend": 0.22975217306085183, "right_bend": 0.8273224486369342}, "keypoints": {"0": [341.83172607421875, 158.58615112304688, 0.9991242289543152], "1": [362.08502197265625, 136.79202270507812, 0.9982289671897888], "2": [321.7345275878906, 137.17745971679688, 0.9961883425712585], "3": [389.8094482421875, 149.13104248046875, 0.9494057297706604], "4": [293.47845458984375, 149.0561065673828, 0.8225736618041992], "5": [450.4750671386719, 255.30726623535156, 0.9908596873283386], "6": [233.33090209960938, 255.60450744628906, 0.9972023963928223], "7": [522.9010009765625, 407.55950927734375, 0.8362489342689514], "8": [125.24069213867188, 374.8990478515625, 0.9422693252563477], "9": [509.949462890625, 452.9808044433594, 0.7129627466201782], "10": [152.22726440429688, 237.310302734375, 0.9227587580680847], "11": [426.959228515625, 480.0, 0.1658402681350708], "12": [282.2652893066406, 480.0, 0.2425033450126648], "13": [486.3416442871094, 427.92047119140625, 0.0012935331324115396], "14": [273.0252685546875, 435.9254150390625, 0.002198745496571064], "15": [466.96527099609375, 473.23895263671875, 0.00015593359421472996], "16": [238.58172607421875, 465.7110595703125, 0.0002349169080844149]}} +{"t": 44.291168, "tracked": true, "track_id": 1, "bbox": [115.8699722290039, 66.33954620361328, 569.8226928710938, 479.82916259765625], "det_conf": 0.9201350212097168, "mean_kpt_conf": 0.9145094156265259, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9013357174736614, "right_lift": -0.7335965970530395, "left_bend": 0.1456700242844546, "right_bend": 0.8333534641463781}, "keypoints": {"0": [343.23907470703125, 158.78656005859375, 0.9988754391670227], "1": [362.98699951171875, 136.9229736328125, 0.9976262450218201], "2": [323.45831298828125, 137.23880004882812, 0.995757520198822], "3": [389.2852783203125, 149.56356811523438, 0.9335520267486572], "4": [294.7758483886719, 148.9865264892578, 0.8417611122131348], "5": [448.62835693359375, 256.07086181640625, 0.9880800843238831], "6": [234.5787353515625, 256.90960693359375, 0.9965041875839233], "7": [521.187744140625, 407.0687255859375, 0.8011335134506226], "8": [131.43136596679688, 368.25482177734375, 0.9359409809112549], "9": [520.5203857421875, 475.9859619140625, 0.6583424806594849], "10": [162.65748596191406, 230.97735595703125, 0.9120299816131592], "11": [428.216552734375, 473.45635986328125, 0.1633886843919754], "12": [287.228271484375, 477.8013916015625, 0.24642032384872437], "13": [489.75689697265625, 428.75848388671875, 0.0020547769963741302], "14": [292.3959045410156, 442.2483825683594, 0.0037022102624177933], "15": [462.6824951171875, 480.0, 0.00024929954088293016], "16": [262.7407531738281, 479.42254638671875, 0.00038933378527872264]}} +{"t": 44.325119, "tracked": true, "track_id": 1, "bbox": [116.13236236572266, 66.60441589355469, 575.5831909179688, 479.8206481933594], "det_conf": 0.9191705584526062, "mean_kpt_conf": 0.910761069167744, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8961917669811374, "right_lift": -0.7364600528277392, "left_bend": 0.1213003739439107, "right_bend": 0.8309292832666977}, "keypoints": {"0": [343.283447265625, 158.96426391601562, 0.9989159107208252], "1": [362.7828674316406, 137.10716247558594, 0.997670590877533], "2": [323.3663330078125, 137.48703002929688, 0.9960200190544128], "3": [388.76611328125, 149.8687744140625, 0.9304447770118713], "4": [294.44525146484375, 149.48928833007812, 0.8492547273635864], "5": [448.6466064453125, 256.8824157714844, 0.9877957105636597], "6": [234.56979370117188, 257.5260009765625, 0.9964017868041992], "7": [523.25244140625, 407.5836181640625, 0.7903058528900146], "8": [132.560302734375, 368.5799865722656, 0.93270343542099], "9": [528.849853515625, 478.6418762207031, 0.6339300870895386], "10": [161.82081604003906, 232.51528930664062, 0.9049288630485535], "11": [428.2142333984375, 473.5235595703125, 0.15545262396335602], "12": [287.0630187988281, 477.7380676269531, 0.23625239729881287], "13": [490.0911560058594, 427.7539367675781, 0.00199386035092175], "14": [289.9754638671875, 441.5101623535156, 0.0036143041215837], "15": [463.75335693359375, 480.0, 0.0002523351286072284], "16": [259.7969665527344, 479.7514953613281, 0.00039354388718493283]}} +{"t": 44.389524, "tracked": true, "track_id": 1, "bbox": [116.35108184814453, 66.67726135253906, 586.9984130859375, 479.8515319824219], "det_conf": 0.9178046584129333, "mean_kpt_conf": 0.916642194444483, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8869907559402325, "right_lift": -0.7287005363231683, "left_bend": 0.09436269291866771, "right_bend": 0.8363855054246522}, "keypoints": {"0": [344.01116943359375, 158.74859619140625, 0.9989256262779236], "1": [363.1100769042969, 137.22608947753906, 0.9976121187210083], "2": [324.1427307128906, 137.77867126464844, 0.9960587024688721], "3": [388.4895935058594, 150.09146118164062, 0.9264867305755615], "4": [295.1765441894531, 150.0911865234375, 0.8563568592071533], "5": [447.2651062011719, 255.72134399414062, 0.9886907339096069], "6": [234.2824249267578, 256.79888916015625, 0.9966182112693787], "7": [524.2669067382812, 403.6247253417969, 0.8150295615196228], "8": [131.32113647460938, 366.35552978515625, 0.9403082132339478], "9": [538.2958374023438, 479.19140625, 0.6549363136291504], "10": [164.26141357421875, 231.96148681640625, 0.9120410680770874], "11": [427.0207824707031, 472.831298828125, 0.17927776277065277], "12": [286.30438232421875, 477.79779052734375, 0.26561328768730164], "13": [493.3578186035156, 429.6543273925781, 0.0020128674805164337], "14": [291.6750793457031, 444.8218078613281, 0.003628055565059185], "15": [470.83062744140625, 480.0, 0.0002394652838120237], "16": [261.66827392578125, 480.0, 0.00037046620855107903]}} +{"t": 44.453617, "tracked": true, "track_id": 1, "bbox": [116.61949157714844, 66.69694519042969, 594.8883056640625, 479.9001159667969], "det_conf": 0.9112004637718201, "mean_kpt_conf": 0.9160938154567372, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8814136940188746, "right_lift": -0.723120787135788, "left_bend": 0.1076385367322254, "right_bend": 0.8414265849300797}, "keypoints": {"0": [344.1921691894531, 158.806396484375, 0.9989535808563232], "1": [363.3507995605469, 137.2273406982422, 0.9976867437362671], "2": [324.43719482421875, 137.6829376220703, 0.9961373209953308], "3": [388.80804443359375, 150.09181213378906, 0.9262260794639587], "4": [295.50360107421875, 149.77175903320312, 0.8559070229530334], "5": [448.5383605957031, 254.73492431640625, 0.9884611368179321], "6": [233.87887573242188, 256.51080322265625, 0.9965219497680664], "7": [527.3228759765625, 401.7497863769531, 0.8124165534973145], "8": [129.2869110107422, 366.0087890625, 0.9389956593513489], "9": [539.4530029296875, 480.0, 0.6533820033073425], "10": [166.02261352539062, 230.275146484375, 0.9123439192771912], "11": [429.7880859375, 471.44976806640625, 0.16443681716918945], "12": [288.1454162597656, 476.95758056640625, 0.24522554874420166], "13": [497.45318603515625, 425.0696716308594, 0.0019067778484895825], "14": [295.73590087890625, 440.8164978027344, 0.0034532935824245214], "15": [474.10919189453125, 480.0, 0.0002326815010746941], "16": [265.4603576660156, 480.0, 0.00036184192867949605]}} +{"t": 44.522592, "tracked": true, "track_id": 1, "bbox": [116.88684844970703, 66.96080780029297, 600.8947143554688, 479.9243469238281], "det_conf": 0.9057202339172363, "mean_kpt_conf": 0.918379854072224, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8685962582264716, "right_lift": -0.7174485212587643, "left_bend": 0.09672980519503474, "right_bend": 0.841585182196834}, "keypoints": {"0": [345.0958557128906, 158.92178344726562, 0.9989857077598572], "1": [364.2162780761719, 137.4810791015625, 0.9977613687515259], "2": [325.2416687011719, 137.99954223632812, 0.9962474703788757], "3": [389.5928955078125, 150.4092254638672, 0.9250094294548035], "4": [296.099609375, 150.31378173828125, 0.8600443005561829], "5": [449.12109375, 252.41709899902344, 0.9886194467544556], "6": [234.3485107421875, 256.83123779296875, 0.996594250202179], "7": [530.3240356445312, 394.7574768066406, 0.8229278326034546], "8": [129.00588989257812, 365.3248596191406, 0.942464292049408], "9": [548.7925415039062, 479.51348876953125, 0.6586793065071106], "10": [166.7869110107422, 230.38230895996094, 0.9148449897766113], "11": [432.66131591796875, 470.1773681640625, 0.17563748359680176], "12": [290.6649169921875, 477.045166015625, 0.2593402564525604], "13": [500.9990234375, 424.3577880859375, 0.0018896096153184772], "14": [296.79425048828125, 442.3131103515625, 0.003409932367503643], "15": [478.412109375, 480.0, 0.00022536475444212556], "16": [264.9075622558594, 480.0, 0.0003488569345790893]}} +{"t": 44.585666, "tracked": true, "track_id": 1, "bbox": [117.95539855957031, 67.75799560546875, 604.4266967773438, 479.9671630859375], "det_conf": 0.9006842374801636, "mean_kpt_conf": 0.9173368432305076, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8598994526238741, "right_lift": -0.7174909559729117, "left_bend": 0.08098425312359127, "right_bend": 0.8390200982109135}, "keypoints": {"0": [345.93670654296875, 157.89407348632812, 0.9989901185035706], "1": [364.8907470703125, 137.74110412597656, 0.9977333545684814], "2": [325.9819030761719, 137.8975372314453, 0.996402382850647], "3": [389.4380798339844, 153.24655151367188, 0.9232915639877319], "4": [296.56622314453125, 152.69134521484375, 0.8678321838378906], "5": [448.0023193359375, 253.55661010742188, 0.9885320663452148], "6": [234.8909912109375, 257.0528564453125, 0.9965322017669678], "7": [531.5596923828125, 394.3128967285156, 0.8241847157478333], "8": [131.067626953125, 363.99481201171875, 0.9427422285079956], "9": [556.146484375, 479.3980712890625, 0.6446983218193054], "10": [167.3422088623047, 230.2598876953125, 0.9097661375999451], "11": [431.1441650390625, 469.48065185546875, 0.1799016147851944], "12": [290.083251953125, 476.0474548339844, 0.264165461063385], "13": [502.5640869140625, 422.897216796875, 0.0018977029249072075], "14": [297.058349609375, 440.3120422363281, 0.00344281573779881], "15": [483.884033203125, 480.0, 0.00023191183572635055], "16": [266.08721923828125, 480.0, 0.00035957086947746575]}} +{"t": 44.652599, "tracked": true, "track_id": 1, "bbox": [118.09439849853516, 67.74675750732422, 608.6865234375, 480.0], "det_conf": 0.893794596195221, "mean_kpt_conf": 0.9171616055748679, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8598822919750551, "right_lift": -0.7100994306654138, "left_bend": 0.08713360838268581, "right_bend": 0.8387904100734319}, "keypoints": {"0": [347.5125732421875, 158.41864013671875, 0.998994767665863], "1": [366.29547119140625, 137.439208984375, 0.9978072047233582], "2": [327.5226745605469, 138.09185791015625, 0.9963170289993286], "3": [391.3414611816406, 151.4248809814453, 0.9251906275749207], "4": [298.25146484375, 151.8599853515625, 0.8616664409637451], "5": [451.6397705078125, 252.53890991210938, 0.9883463978767395], "6": [236.43325805664062, 257.4750671386719, 0.9965519905090332], "7": [534.5304565429688, 392.16143798828125, 0.8219224810600281], "8": [131.28182983398438, 363.5222473144531, 0.9432662129402161], "9": [558.08740234375, 480.0, 0.646790623664856], "10": [168.95245361328125, 229.85646057128906, 0.911923885345459], "11": [435.1302185058594, 468.9857482910156, 0.17578676342964172], "12": [292.4228515625, 476.024658203125, 0.2609400451183319], "13": [503.7279052734375, 421.84405517578125, 0.0018522789468988776], "14": [295.06390380859375, 440.53839111328125, 0.0033750946167856455], "15": [482.3572998046875, 480.0, 0.0002261111803818494], "16": [261.829345703125, 480.0, 0.0003518656885717064]}} +{"t": 44.689171, "tracked": true, "track_id": 1, "bbox": [118.5524673461914, 67.91941833496094, 607.941162109375, 480.0], "det_conf": 0.8956101536750793, "mean_kpt_conf": 0.9183095856146379, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8638511312493957, "right_lift": -0.7110715243481893, "left_bend": 0.0864318942246131, "right_bend": 0.8381263748403674}, "keypoints": {"0": [347.455810546875, 158.191162109375, 0.9989842772483826], "1": [366.3380126953125, 137.59971618652344, 0.9977679252624512], "2": [327.7134704589844, 138.06680297851562, 0.9962794184684753], "3": [391.2944030761719, 152.04345703125, 0.9264364838600159], "4": [298.81243896484375, 151.99383544921875, 0.8611755967140198], "5": [450.7930603027344, 252.7863006591797, 0.9886925220489502], "6": [236.87356567382812, 256.55242919921875, 0.9966529011726379], "7": [533.0370483398438, 393.82244873046875, 0.8271964192390442], "8": [132.02597045898438, 362.5857849121094, 0.9453096389770508], "9": [555.6300048828125, 480.0, 0.6498616337776184], "10": [169.2015380859375, 228.9027862548828, 0.9130486249923706], "11": [433.47772216796875, 469.786865234375, 0.18461036682128906], "12": [291.73590087890625, 476.3593444824219, 0.27249497175216675], "13": [503.6675109863281, 423.69818115234375, 0.00188720365986228], "14": [297.2725830078125, 441.52264404296875, 0.0034545769449323416], "15": [483.00927734375, 480.0, 0.0002272010169690475], "16": [264.90350341796875, 480.0, 0.0003552653652150184]}} +{"t": 44.751361, "tracked": true, "track_id": 1, "bbox": [119.13602447509766, 67.89530944824219, 610.5694580078125, 480.0], "det_conf": 0.891076385974884, "mean_kpt_conf": 0.9174389893358404, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8569297710405953, "right_lift": -0.7182477206986126, "left_bend": 0.0865241611990187, "right_bend": 0.83386100412863}, "keypoints": {"0": [348.53460693359375, 158.22750854492188, 0.9989935755729675], "1": [367.3152770996094, 137.5342254638672, 0.9976720213890076], "2": [328.44464111328125, 137.89971923828125, 0.9964295029640198], "3": [391.56536865234375, 151.71205139160156, 0.9151269197463989], "4": [298.4399719238281, 151.6351318359375, 0.87101811170578], "5": [450.625732421875, 250.4512176513672, 0.9884908199310303], "6": [236.86587524414062, 256.8277587890625, 0.9965147376060486], "7": [534.1599731445312, 389.3304748535156, 0.8275527954101562], "8": [133.28677368164062, 363.75042724609375, 0.9434860348701477], "9": [559.1383056640625, 479.69293212890625, 0.6455255150794983], "10": [167.5567169189453, 228.16751098632812, 0.9110188484191895], "11": [436.7276611328125, 467.69207763671875, 0.1808689385652542], "12": [295.0736389160156, 475.525634765625, 0.26388680934906006], "13": [506.1103210449219, 419.99932861328125, 0.0019005384529009461], "14": [299.3557434082031, 439.6697082519531, 0.0033991814125329256], "15": [484.2863464355469, 480.0, 0.00023002787202131003], "16": [266.4301452636719, 480.0, 0.00035146609297953546]}} +{"t": 44.817381, "tracked": true, "track_id": 1, "bbox": [119.60863494873047, 67.8367919921875, 610.4841918945312, 480.0], "det_conf": 0.8933238983154297, "mean_kpt_conf": 0.9183975729075345, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8610240836040288, "right_lift": -0.7233162967331012, "left_bend": 0.08092065322075939, "right_bend": 0.8430446835389744}, "keypoints": {"0": [349.42156982421875, 159.06002807617188, 0.9989703893661499], "1": [368.3682861328125, 137.71282958984375, 0.9975306391716003], "2": [329.0533752441406, 138.13833618164062, 0.9964250922203064], "3": [392.5802917480469, 150.8351287841797, 0.9067428112030029], "4": [298.3669128417969, 150.78187561035156, 0.876984179019928], "5": [450.0837707519531, 251.02145385742188, 0.9883245229721069], "6": [235.82794189453125, 257.22601318359375, 0.9964317083358765], "7": [532.5726318359375, 390.67913818359375, 0.8263605833053589], "8": [132.1397705078125, 365.83935546875, 0.9413472414016724], "9": [557.8663330078125, 478.8741149902344, 0.659057080745697], "10": [169.65695190429688, 229.81103515625, 0.9141990542411804], "11": [435.1586608886719, 468.190673828125, 0.1710980385541916], "12": [293.7048645019531, 476.3907470703125, 0.24858205020427704], "13": [505.74566650390625, 419.24383544921875, 0.0018852128414437175], "14": [302.8692321777344, 439.4886779785156, 0.003334855427965522], "15": [483.91107177734375, 480.0, 0.00022759693092666566], "16": [273.5313415527344, 480.0, 0.00034361513098701835]}} +{"t": 44.882338, "tracked": true, "track_id": 1, "bbox": [119.91444396972656, 68.0044937133789, 609.1171264648438, 480.0], "det_conf": 0.8924835324287415, "mean_kpt_conf": 0.9168634197928689, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8628670587593704, "right_lift": -0.7355905162145611, "left_bend": 0.092211247384108, "right_bend": 0.8468036737351511}, "keypoints": {"0": [349.9516296386719, 159.24603271484375, 0.998986542224884], "1": [369.0251770019531, 138.0269317626953, 0.9974204301834106], "2": [329.6104736328125, 138.06915283203125, 0.996645987033844], "3": [392.7992248535156, 151.05886840820312, 0.8972039222717285], "4": [298.21771240234375, 150.08950805664062, 0.8863356113433838], "5": [450.95513916015625, 250.58078002929688, 0.9886266589164734], "6": [235.2459259033203, 256.2627868652344, 0.9964780211448669], "7": [533.9002075195312, 392.183837890625, 0.822734534740448], "8": [133.80239868164062, 366.4162902832031, 0.9408767819404602], "9": [555.4080810546875, 480.0, 0.6484559774398804], "10": [170.7186279296875, 229.2896728515625, 0.9117331504821777], "11": [436.31170654296875, 469.30291748046875, 0.17774978280067444], "12": [293.8619079589844, 476.94964599609375, 0.2575950622558594], "13": [504.50225830078125, 422.95916748046875, 0.0019226429285481572], "14": [300.7975158691406, 442.16619873046875, 0.00339174410328269], "15": [478.6737060546875, 480.0, 0.00022789963986724615], "16": [269.2284240722656, 480.0, 0.00034080000477842987]}} +{"t": 44.949393, "tracked": true, "track_id": 1, "bbox": [120.17587280273438, 67.92711639404297, 607.2138671875, 480.0], "det_conf": 0.8964343070983887, "mean_kpt_conf": 0.9175994558767839, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8623618476462908, "right_lift": -0.7331459216053484, "left_bend": 0.08477388407538983, "right_bend": 0.8399861248218726}, "keypoints": {"0": [350.4867248535156, 158.83822631835938, 0.9989663362503052], "1": [369.25274658203125, 137.81520080566406, 0.9973561763763428], "2": [330.2482604980469, 137.95407104492188, 0.9965829253196716], "3": [392.6944580078125, 150.9903564453125, 0.8957936763763428], "4": [299.0688781738281, 150.39358520507812, 0.8866716623306274], "5": [450.11541748046875, 250.3993377685547, 0.9886044263839722], "6": [236.01950073242188, 256.6731262207031, 0.99648118019104], "7": [532.001708984375, 389.8752746582031, 0.8273135423660278], "8": [135.67620849609375, 364.84747314453125, 0.9421030282974243], "9": [556.3536987304688, 479.7665710449219, 0.651790976524353], "10": [169.86898803710938, 228.18258666992188, 0.9119300842285156], "11": [433.9365234375, 468.3428955078125, 0.18286959826946259], "12": [292.24090576171875, 476.20263671875, 0.26335397362709045], "13": [502.7889099121094, 420.83099365234375, 0.001990020042285323], "14": [298.0626525878906, 440.941650390625, 0.0034872384276241064], "15": [477.4481201171875, 480.0, 0.000238124281167984], "16": [266.4040832519531, 480.0, 0.00035360423498786986]}} +{"t": 45.015677, "tracked": true, "track_id": 1, "bbox": [119.78385162353516, 67.87586975097656, 605.9806518554688, 480.0], "det_conf": 0.8960012197494507, "mean_kpt_conf": 0.9158530289476569, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.865410991194622, "right_lift": -0.7268024308826008, "left_bend": 0.08870757537887503, "right_bend": 0.8432482790507255}, "keypoints": {"0": [350.83770751953125, 159.212158203125, 0.998996913433075], "1": [369.5830993652344, 138.20449829101562, 0.9974650144577026], "2": [330.4147033691406, 138.32083129882812, 0.9966713786125183], "3": [393.16455078125, 151.67547607421875, 0.8974140286445618], "4": [298.9658508300781, 151.04293823242188, 0.8848166465759277], "5": [451.07696533203125, 251.57711791992188, 0.9882671236991882], "6": [236.88111877441406, 256.37994384765625, 0.9964187145233154], "7": [532.6270751953125, 392.4264831542969, 0.8205162882804871], "8": [134.89834594726562, 364.29534912109375, 0.942011296749115], "9": [554.6288452148438, 480.0, 0.640733540058136], "10": [171.78936767578125, 228.19180297851562, 0.9110723733901978], "11": [435.62530517578125, 468.4933776855469, 0.17898765206336975], "12": [293.3454895019531, 475.56695556640625, 0.26164188981056213], "13": [503.3087158203125, 423.25677490234375, 0.0019060466438531876], "14": [295.272705078125, 441.98028564453125, 0.0033843733835965395], "15": [479.3992919921875, 480.0, 0.0002276012528454885], "16": [260.5323181152344, 480.0, 0.00034146232064813375]}} +{"t": 45.077805, "tracked": true, "track_id": 1, "bbox": [118.8193359375, 67.84371185302734, 604.6527709960938, 480.0], "det_conf": 0.8970220685005188, "mean_kpt_conf": 0.9148159623146057, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8667690285963784, "right_lift": -0.7177780606482836, "left_bend": 0.0971344661578773, "right_bend": 0.8393074540201556}, "keypoints": {"0": [350.9076843261719, 158.9673309326172, 0.9989660978317261], "1": [369.42059326171875, 138.03994750976562, 0.9973502159118652], "2": [330.5414123535156, 138.27264404296875, 0.9966354966163635], "3": [392.6428527832031, 151.58023071289062, 0.8956503868103027], "4": [299.15771484375, 151.1495361328125, 0.8865453004837036], "5": [451.200927734375, 252.47747802734375, 0.9881956577301025], "6": [236.45228576660156, 255.92236328125, 0.9963834285736084], "7": [532.8220825195312, 394.3369140625, 0.8153477311134338], "8": [134.83648681640625, 360.67681884765625, 0.9404065608978271], "9": [551.7041015625, 480.0, 0.637477457523346], "10": [172.23477172851562, 223.0662841796875, 0.9100172519683838], "11": [434.70416259765625, 469.09063720703125, 0.17605480551719666], "12": [292.9337463378906, 475.70703125, 0.25795382261276245], "13": [502.03997802734375, 423.35382080078125, 0.0019605145789682865], "14": [299.675537109375, 441.5071105957031, 0.0035015614703297615], "15": [476.0400390625, 480.0, 0.00023789869737811387], "16": [268.3175048828125, 480.0, 0.00035889484570361674]}} +{"t": 45.116751, "tracked": true, "track_id": 1, "bbox": [118.29424285888672, 67.93330383300781, 604.940185546875, 480.0], "det_conf": 0.8963148593902588, "mean_kpt_conf": 0.9115577448498119, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8664032843498556, "right_lift": -0.7157247669870426, "left_bend": 0.08950974669355348, "right_bend": 0.83165551334789}, "keypoints": {"0": [350.7164611816406, 159.2989044189453, 0.9989250302314758], "1": [369.6665954589844, 138.06710815429688, 0.9973305463790894], "2": [330.2113952636719, 138.36038208007812, 0.9965761303901672], "3": [393.311279296875, 151.14405822753906, 0.8992597460746765], "4": [298.5885925292969, 150.75546264648438, 0.8876486420631409], "5": [451.56939697265625, 252.43032836914062, 0.9878214001655579], "6": [234.59161376953125, 256.357666015625, 0.9964008331298828], "7": [532.4583129882812, 392.779052734375, 0.804370105266571], "8": [134.81387329101562, 358.61309814453125, 0.9376735687255859], "9": [553.954345703125, 480.0, 0.6178789138793945], "10": [169.71380615234375, 218.58885192871094, 0.9032502770423889], "11": [433.88433837890625, 469.7201232910156, 0.18033531308174133], "12": [290.97088623046875, 476.750732421875, 0.26555463671684265], "13": [501.5691833496094, 425.31756591796875, 0.0020053077023476362], "14": [299.4614562988281, 444.6117858886719, 0.0036133460234850645], "15": [474.4184875488281, 480.0, 0.00024723639944568276], "16": [272.23394775390625, 480.0, 0.00037556173629127443]}} +{"t": 45.179203, "tracked": true, "track_id": 1, "bbox": [115.67572784423828, 67.55841064453125, 605.9209594726562, 480.0], "det_conf": 0.894006609916687, "mean_kpt_conf": 0.9149665290659125, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8649308297734007, "right_lift": -0.6725719623595683, "left_bend": 0.09684931952322166, "right_bend": 0.7950225613917961}, "keypoints": {"0": [351.52764892578125, 159.3159637451172, 0.9989689588546753], "1": [369.63897705078125, 137.79820251464844, 0.9974129796028137], "2": [330.7503356933594, 138.95730590820312, 0.9965936541557312], "3": [392.86920166015625, 150.17092895507812, 0.9012414216995239], "4": [299.27447509765625, 151.91314697265625, 0.8848559856414795], "5": [451.9891357421875, 252.2901611328125, 0.9882624745368958], "6": [236.59796142578125, 256.6153259277344, 0.9965698719024658], "7": [532.1111450195312, 390.367919921875, 0.8153936862945557], "8": [132.25567626953125, 351.44598388671875, 0.941974401473999], "9": [552.2979736328125, 480.0, 0.6333454847335815], "10": [158.85179138183594, 212.52725219726562, 0.9100129008293152], "11": [435.9051513671875, 470.05755615234375, 0.19848355650901794], "12": [294.66265869140625, 477.4022216796875, 0.2889074385166168], "13": [503.1142578125, 428.2615966796875, 0.002082059159874916], "14": [305.92041015625, 448.2295227050781, 0.0037257205694913864], "15": [476.0638732910156, 480.0, 0.00024255407333839685], "16": [279.840576171875, 480.0, 0.00036880403058603406]}} +{"t": 45.246085, "tracked": true, "track_id": 1, "bbox": [113.4688949584961, 67.75042724609375, 603.9434204101562, 480.0], "det_conf": 0.9019742012023926, "mean_kpt_conf": 0.9203848947178234, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.864219093781709, "right_lift": -0.6402209321616937, "left_bend": 0.09446093379944545, "right_bend": 0.76236083819874}, "keypoints": {"0": [352.0371398925781, 158.89381408691406, 0.9990580677986145], "1": [369.9756164550781, 137.79354858398438, 0.9977645874023438], "2": [331.5865173339844, 138.99639892578125, 0.9965724945068359], "3": [393.4224548339844, 150.8590087890625, 0.9178421497344971], "4": [301.0542297363281, 152.81942749023438, 0.8712520599365234], "5": [453.6182556152344, 252.40084838867188, 0.9893684983253479], "6": [239.30233764648438, 256.0052185058594, 0.9969326257705688], "7": [534.31494140625, 391.0163269042969, 0.837344765663147], "8": [128.12013244628906, 348.666015625, 0.950287938117981], "9": [555.19140625, 480.0, 0.6511107683181763], "10": [146.17547607421875, 209.9632568359375, 0.9166998863220215], "11": [437.2245178222656, 471.15093994140625, 0.21604710817337036], "12": [295.7548828125, 477.5545349121094, 0.3123655617237091], "13": [502.3687744140625, 428.978759765625, 0.002011118922382593], "14": [297.5518493652344, 447.67095947265625, 0.00356296612881124], "15": [477.60211181640625, 480.0, 0.0002235184219898656], "16": [264.0387878417969, 480.0, 0.0003404057933948934]}} +{"t": 45.311173, "tracked": true, "track_id": 1, "bbox": [96.94244384765625, 68.33219909667969, 603.0480346679688, 480.0], "det_conf": 0.900304913520813, "mean_kpt_conf": 0.9184645414352417, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8638028884800706, "right_lift": -0.6097468708938202, "left_bend": 0.0973368264283176, "right_bend": 0.713882056382018}, "keypoints": {"0": [352.1155090332031, 159.08518981933594, 0.9990768432617188], "1": [370.4494323730469, 138.34701538085938, 0.9979020357131958], "2": [332.157470703125, 139.1387176513672, 0.9965143799781799], "3": [394.1794738769531, 152.17413330078125, 0.928900420665741], "4": [302.54730224609375, 153.32240295410156, 0.8607555031776428], "5": [453.49407958984375, 254.15399169921875, 0.9893049001693726], "6": [240.5947265625, 256.37701416015625, 0.9969587326049805], "7": [534.4873046875, 393.01470947265625, 0.833407998085022], "8": [122.37545776367188, 347.323486328125, 0.9483136534690857], "9": [554.14306640625, 480.0, 0.6400648355484009], "10": [124.59344482421875, 210.33059692382812, 0.9119106531143188], "11": [433.32159423828125, 470.0218505859375, 0.1975695639848709], "12": [293.13275146484375, 475.23883056640625, 0.2876628041267395], "13": [499.1831970214844, 423.77386474609375, 0.0019562337547540665], "14": [295.16046142578125, 440.4010925292969, 0.003423961577937007], "15": [476.0536193847656, 477.89459228515625, 0.00022864420316182077], "16": [260.75067138671875, 476.1839904785156, 0.0003477828577160835]}} +{"t": 45.38014, "tracked": true, "track_id": 1, "bbox": [88.92196655273438, 69.29634857177734, 604.7908935546875, 479.9330749511719], "det_conf": 0.9088958501815796, "mean_kpt_conf": 0.9160157333720814, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8646460106229497, "right_lift": -0.6292255024208142, "left_bend": 0.10387432641556796, "right_bend": 0.7265816374983156}, "keypoints": {"0": [353.11883544921875, 159.05343627929688, 0.9990506768226624], "1": [372.0543518066406, 138.6195068359375, 0.9977808594703674], "2": [333.5244445800781, 138.50064086914062, 0.9965894222259521], "3": [395.5633544921875, 152.83193969726562, 0.9229063987731934], "4": [303.4938049316406, 151.9221954345703, 0.8694592714309692], "5": [452.62774658203125, 253.90882873535156, 0.988730251789093], "6": [239.29217529296875, 256.8771057128906, 0.9968557357788086], "7": [532.99609375, 392.2303161621094, 0.8230615854263306], "8": [120.47236633300781, 353.07147216796875, 0.9439967274665833], "9": [550.7897338867188, 480.0, 0.6295289993286133], "10": [124.74240112304688, 216.566162109375, 0.9082131385803223], "11": [431.40435791015625, 469.2328796386719, 0.18354395031929016], "12": [291.10028076171875, 474.8450927734375, 0.26846322417259216], "13": [498.32977294921875, 422.2698974609375, 0.001948289922438562], "14": [296.1864013671875, 438.86016845703125, 0.0033820790704339743], "15": [474.82196044921875, 479.46295166015625, 0.00023500896350014955], "16": [262.69708251953125, 475.0679626464844, 0.0003531854599714279]}} +{"t": 45.444833, "tracked": true, "track_id": 1, "bbox": [94.8085708618164, 69.47118377685547, 601.3568115234375, 479.7012634277344], "det_conf": 0.9117350578308105, "mean_kpt_conf": 0.9189054911786859, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8684735417365674, "right_lift": -0.6515689418761159, "left_bend": 0.10153309748511531, "right_bend": 0.7425317819995358}, "keypoints": {"0": [353.26434326171875, 159.02825927734375, 0.9990606904029846], "1": [372.30963134765625, 138.5631103515625, 0.9976629018783569], "2": [333.7060546875, 138.05374145507812, 0.996664822101593], "3": [395.4429016113281, 152.7960205078125, 0.9163464307785034], "4": [303.1629638671875, 150.89453125, 0.8762582540512085], "5": [452.4546203613281, 255.4156036376953, 0.9893813133239746], "6": [238.51715087890625, 257.24176025390625, 0.9969774484634399], "7": [533.273681640625, 397.0016174316406, 0.8277904987335205], "8": [121.93783569335938, 357.374267578125, 0.9445611834526062], "9": [550.0728759765625, 480.0, 0.6500874757766724], "10": [129.22198486328125, 218.18560791015625, 0.9131693840026855], "11": [432.09234619140625, 471.61968994140625, 0.18727411329746246], "12": [291.8376159667969, 476.8485107421875, 0.27145588397979736], "13": [497.349609375, 426.533935546875, 0.001990934368222952], "14": [298.8072814941406, 442.021484375, 0.0034166977275162935], "15": [473.20111083984375, 480.0, 0.0002269399119541049], "16": [267.70263671875, 476.5398254394531, 0.0003372889768797904]}} +{"t": 45.511568, "tracked": true, "track_id": 1, "bbox": [106.20783996582031, 69.38265991210938, 599.7449951171875, 479.81781005859375], "det_conf": 0.9095034599304199, "mean_kpt_conf": 0.9185795296322216, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.873174477019867, "right_lift": -0.6574030659694179, "left_bend": 0.09943687067899123, "right_bend": 0.7758937980467343}, "keypoints": {"0": [353.6006164550781, 159.1102752685547, 0.9990768432617188], "1": [372.45501708984375, 138.47726440429688, 0.9977557063102722], "2": [333.667236328125, 138.25112915039062, 0.9967393279075623], "3": [396.0836486816406, 152.43917846679688, 0.9167179465293884], "4": [302.82177734375, 151.11215209960938, 0.8746261596679688], "5": [453.407958984375, 255.91119384765625, 0.9891864657402039], "6": [239.18624877929688, 255.81895446777344, 0.9969345331192017], "7": [532.6806030273438, 397.9254455566406, 0.8274426460266113], "8": [125.24519348144531, 355.2234802246094, 0.9477519989013672], "9": [549.03857421875, 480.0, 0.6437323093414307], "10": [145.5391082763672, 220.37998962402344, 0.9144108891487122], "11": [431.912841796875, 475.32855224609375, 0.1975652277469635], "12": [289.8695983886719, 479.62109375, 0.289917916059494], "13": [496.99151611328125, 431.7769775390625, 0.001876313122920692], "14": [289.4742736816406, 446.2878723144531, 0.0033102098386734724], "15": [474.7357482910156, 480.0, 0.00021658328478224576], "16": [253.43695068359375, 479.37213134765625, 0.0003267110150773078]}} +{"t": 45.574001, "tracked": true, "track_id": 1, "bbox": [113.30550384521484, 69.06226348876953, 594.671630859375, 479.79022216796875], "det_conf": 0.9105551838874817, "mean_kpt_conf": 0.9182725982232527, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8770897170517209, "right_lift": -0.6511408805702886, "left_bend": 0.09486589504652788, "right_bend": 0.7979832851423886}, "keypoints": {"0": [352.9599304199219, 159.322265625, 0.9990059733390808], "1": [371.20501708984375, 138.4776611328125, 0.9974426031112671], "2": [332.4848327636719, 138.66688537597656, 0.9966832995414734], "3": [393.98004150390625, 152.2039794921875, 0.9006037712097168], "4": [301.1091003417969, 151.74295043945312, 0.8845564723014832], "5": [449.4791564941406, 256.4205017089844, 0.9883033037185669], "6": [238.73037719726562, 253.96151733398438, 0.996471643447876], "7": [527.5433349609375, 398.9678649902344, 0.8213074803352356], "8": [126.85823059082031, 349.9413146972656, 0.9437857866287231], "9": [544.2223510742188, 480.0, 0.6559364795684814], "10": [158.04779052734375, 214.94464111328125, 0.9169017672538757], "11": [428.0947570800781, 472.752197265625, 0.18086591362953186], "12": [289.3683776855469, 476.87860107421875, 0.2646794617176056], "13": [493.9244384765625, 427.61517333984375, 0.0019858605228364468], "14": [297.2311096191406, 442.1570129394531, 0.0034949069377034903], "15": [471.515625, 480.0, 0.0002375460317125544], "16": [265.2412414550781, 480.0, 0.00035573370405472815]}} +{"t": 45.638608, "tracked": true, "track_id": 1, "bbox": [114.40373992919922, 69.70462036132812, 590.3623046875, 479.856689453125], "det_conf": 0.9137258529663086, "mean_kpt_conf": 0.9104436310854825, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8807599511713147, "right_lift": -0.6754499178008246, "left_bend": 0.0969076039225099, "right_bend": 0.8278730174204578}, "keypoints": {"0": [351.29595947265625, 158.73480224609375, 0.9989550113677979], "1": [369.09881591796875, 138.45709228515625, 0.9974493384361267], "2": [331.203125, 138.7274932861328, 0.9966633915901184], "3": [391.8827819824219, 152.52757263183594, 0.9045291543006897], "4": [300.093994140625, 152.31236267089844, 0.8839598894119263], "5": [450.383544921875, 256.5035705566406, 0.9875426292419434], "6": [235.2266082763672, 254.56590270996094, 0.9963854551315308], "7": [526.2213134765625, 397.5510559082031, 0.7995985150337219], "8": [129.80105590820312, 351.13372802734375, 0.939931333065033], "9": [541.9827880859375, 480.0, 0.6077212691307068], "10": [169.0015106201172, 219.03268432617188, 0.9021439552307129], "11": [427.5170593261719, 473.150146484375, 0.18879243731498718], "12": [284.5318908691406, 477.1195983886719, 0.2821846604347229], "13": [491.2885437011719, 430.8614501953125, 0.0020094786304980516], "14": [282.51690673828125, 445.7783203125, 0.0036298215854912996], "15": [467.74957275390625, 480.0, 0.0002543663140386343], "16": [250.10491943359375, 480.0, 0.0003860173746943474]}} +{"t": 45.673594, "tracked": true, "track_id": 1, "bbox": [114.44666290283203, 69.15433502197266, 588.1483154296875, 479.86224365234375], "det_conf": 0.9164726734161377, "mean_kpt_conf": 0.9227962819012728, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8817040823678458, "right_lift": -0.6729960773606734, "left_bend": 0.09135241208179164, "right_bend": 0.840994281159194}, "keypoints": {"0": [351.183837890625, 159.3969268798828, 0.9989970326423645], "1": [369.02789306640625, 138.01327514648438, 0.9975271821022034], "2": [330.4486389160156, 138.68653869628906, 0.9965018033981323], "3": [392.100341796875, 151.08331298828125, 0.9017707705497742], "4": [299.071044921875, 151.6696319580078, 0.8778247237205505], "5": [449.17327880859375, 255.61959838867188, 0.9881927371025085], "6": [236.85452270507812, 253.7890625, 0.9962524771690369], "7": [526.147216796875, 399.46832275390625, 0.8317556977272034], "8": [126.82437133789062, 353.9043273925781, 0.9447609186172485], "9": [542.836181640625, 480.0, 0.6924298405647278], "10": [173.6634521484375, 218.49014282226562, 0.9247459173202515], "11": [427.9731140136719, 470.83953857421875, 0.16851897537708282], "12": [287.2662353515625, 475.1446533203125, 0.24646084010601044], "13": [488.08538818359375, 422.0488586425781, 0.0019926177337765694], "14": [284.013671875, 437.438720703125, 0.0034279325045645237], "15": [465.61492919921875, 480.0, 0.0002383964165346697], "16": [248.2802734375, 480.0, 0.0003506905632093549]}} +{"t": 45.708877, "tracked": true, "track_id": 1, "bbox": [114.49494934082031, 69.0707778930664, 586.3937377929688, 479.8977355957031], "det_conf": 0.9162108898162842, "mean_kpt_conf": 0.9224622791463678, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.880383110733907, "right_lift": -0.6643580440484563, "left_bend": 0.09948026514799826, "right_bend": 0.8440364043438193}, "keypoints": {"0": [350.4564514160156, 159.17794799804688, 0.9989652633666992], "1": [368.2295837402344, 138.50631713867188, 0.9975215792655945], "2": [329.96270751953125, 138.95147705078125, 0.996382474899292], "3": [391.30426025390625, 152.6068572998047, 0.9079074263572693], "4": [298.8866271972656, 152.72705078125, 0.87448650598526], "5": [449.19293212890625, 256.91064453125, 0.9883571267127991], "6": [236.3386993408203, 254.03619384765625, 0.9963232278823853], "7": [525.7710571289062, 399.06396484375, 0.8318796753883362], "8": [127.37411499023438, 350.89208984375, 0.9456169605255127], "9": [540.6328125, 480.0, 0.6865786910057068], "10": [176.906494140625, 216.94166564941406, 0.9230661392211914], "11": [428.55560302734375, 472.1683044433594, 0.1792164146900177], "12": [287.54022216796875, 476.0556640625, 0.26210206747055054], "13": [488.6567687988281, 424.504638671875, 0.002020505489781499], "14": [285.5301818847656, 439.0794982910156, 0.0035170435439795256], "15": [465.99993896484375, 480.0, 0.00024291605222970247], "16": [251.38446044921875, 480.0, 0.0003620627976488322]}} +{"t": 45.771625, "tracked": true, "track_id": 1, "bbox": [114.12968444824219, 69.82367706298828, 585.2714233398438, 479.9045715332031], "det_conf": 0.9169471263885498, "mean_kpt_conf": 0.9173505143685774, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8865976471173762, "right_lift": -0.6742665422583614, "left_bend": 0.10005244055239697, "right_bend": 0.8505131041986429}, "keypoints": {"0": [348.9296569824219, 159.3798065185547, 0.9989211559295654], "1": [367.068359375, 138.4769744873047, 0.9975383281707764], "2": [328.72857666015625, 139.06106567382812, 0.9962649941444397], "3": [390.9920959472656, 152.0760498046875, 0.9144875407218933], "4": [298.246337890625, 152.15713500976562, 0.8703024983406067], "5": [450.10791015625, 257.20465087890625, 0.9880240559577942], "6": [234.66432189941406, 254.08245849609375, 0.9963215589523315], "7": [525.2142333984375, 401.16815185546875, 0.8154340386390686], "8": [128.70724487304688, 350.82513427734375, 0.9420233964920044], "9": [538.4652709960938, 480.0, 0.6567822694778442], "10": [180.775634765625, 212.99478149414062, 0.9147558212280273], "11": [428.30712890625, 471.2162170410156, 0.18122583627700806], "12": [285.57586669921875, 475.04656982421875, 0.26855790615081787], "13": [489.267333984375, 428.26947021484375, 0.002051852410659194], "14": [284.86248779296875, 443.265869140625, 0.003662385977804661], "15": [464.5846252441406, 480.0, 0.0002492572530172765], "16": [252.38784790039062, 480.0, 0.0003792471834458411]}} +{"t": 45.805469, "tracked": true, "track_id": 1, "bbox": [113.96387481689453, 69.6701431274414, 584.0242309570312, 479.95111083984375], "det_conf": 0.9161607623100281, "mean_kpt_conf": 0.9132057590918108, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.891365708414946, "right_lift": -0.6822697106643147, "left_bend": 0.10071505784348152, "right_bend": 0.8566766350552987}, "keypoints": {"0": [349.323974609375, 159.5189971923828, 0.9988818764686584], "1": [367.1837463378906, 138.6676483154297, 0.9973629117012024], "2": [329.1195373535156, 139.2417755126953, 0.9962989687919617], "3": [390.48419189453125, 152.08917236328125, 0.9064421057701111], "4": [298.26416015625, 152.158935546875, 0.8763914704322815], "5": [449.02691650390625, 258.15606689453125, 0.9874419569969177], "6": [234.12831115722656, 254.2003173828125, 0.9961838126182556], "7": [522.9309692382812, 403.48529052734375, 0.8014270067214966], "8": [129.94979858398438, 351.420654296875, 0.9378933310508728], "9": [534.8115234375, 480.0, 0.6378552317619324], "10": [183.61813354492188, 212.91586303710938, 0.909084677696228], "11": [427.1268615722656, 472.2376403808594, 0.17582345008850098], "12": [284.9810485839844, 475.8856201171875, 0.26260194182395935], "13": [488.1571960449219, 430.2118225097656, 0.002068064408376813], "14": [286.3235778808594, 444.828369140625, 0.0037075539585202932], "15": [464.37890625, 480.0, 0.00025770082720555365], "16": [257.16741943359375, 480.0, 0.00039160679443739355]}} +{"t": 45.869951, "tracked": true, "track_id": 1, "bbox": [112.77703094482422, 69.7009048461914, 583.6232299804688, 480.0], "det_conf": 0.9170076251029968, "mean_kpt_conf": 0.9146924073045904, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8864315151530078, "right_lift": -0.6850840920742596, "left_bend": 0.09302954108178565, "right_bend": 0.8544727293631499}, "keypoints": {"0": [348.98828125, 159.30162048339844, 0.998915433883667], "1": [367.1066589355469, 138.82083129882812, 0.9974426031112671], "2": [328.9145812988281, 139.0150604248047, 0.9963777661323547], "3": [390.4817199707031, 153.15008544921875, 0.9097728729248047], "4": [298.05462646484375, 152.40902709960938, 0.877081573009491], "5": [449.49951171875, 258.9878234863281, 0.9880778193473816], "6": [232.81890869140625, 254.92173767089844, 0.9963209629058838], "7": [524.9720458984375, 403.5267028808594, 0.8089845776557922], "8": [129.457275390625, 352.1282043457031, 0.9393824338912964], "9": [539.5967407226562, 480.0, 0.6404153108596802], "10": [181.6676483154297, 212.9509735107422, 0.9088451266288757], "11": [427.05706787109375, 472.874755859375, 0.176559716463089], "12": [283.5440368652344, 476.54583740234375, 0.26139605045318604], "13": [491.30438232421875, 427.8192443847656, 0.0020216163247823715], "14": [285.9636535644531, 442.45465087890625, 0.00361529178917408], "15": [467.8580322265625, 480.0, 0.0002538756816647947], "16": [257.244384765625, 480.0, 0.00038566338480450213]}} +{"t": 45.937937, "tracked": true, "track_id": 1, "bbox": [112.47673034667969, 69.52892303466797, 587.0628051757812, 480.0], "det_conf": 0.9200247526168823, "mean_kpt_conf": 0.9188272573731162, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8790049170530662, "right_lift": -0.6732460012766871, "left_bend": 0.09647771425027767, "right_bend": 0.8478116709525113}, "keypoints": {"0": [350.3423767089844, 159.17745971679688, 0.9989387392997742], "1": [368.14581298828125, 138.552001953125, 0.9973229765892029], "2": [330.0007019042969, 138.73348999023438, 0.9965182542800903], "3": [390.73406982421875, 152.33786010742188, 0.8968587517738342], "4": [298.33489990234375, 151.79147338867188, 0.8860592246055603], "5": [448.2916259765625, 256.8985900878906, 0.9882806539535522], "6": [233.17047119140625, 254.37869262695312, 0.9962708950042725], "7": [524.5956420898438, 397.5651550292969, 0.8229589462280273], "8": [127.48681640625, 350.60443115234375, 0.9416589736938477], "9": [540.7858276367188, 480.0, 0.6659577488899231], "10": [177.4450225830078, 215.46295166015625, 0.9162746667861938], "11": [426.595458984375, 471.4205017089844, 0.18017266690731049], "12": [284.257080078125, 475.92236328125, 0.26124390959739685], "13": [491.2627258300781, 424.8481140136719, 0.0020476679783314466], "14": [288.1181335449219, 440.5855712890625, 0.003558937693014741], "15": [466.9796447753906, 480.0, 0.0002502778952475637], "16": [257.889404296875, 480.0, 0.00036983564496040344]}} +{"t": 46.001331, "tracked": true, "track_id": 1, "bbox": [112.44314575195312, 69.34561157226562, 588.818603515625, 480.0], "det_conf": 0.9172202944755554, "mean_kpt_conf": 0.919548814946955, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8809993414644157, "right_lift": -0.6735203640112992, "left_bend": 0.09914360897906369, "right_bend": 0.8372998428829233}, "keypoints": {"0": [349.9825744628906, 158.7738037109375, 0.9989620447158813], "1": [367.7748107910156, 138.29078674316406, 0.9974068999290466], "2": [329.79522705078125, 138.578857421875, 0.9965000152587891], "3": [390.48455810546875, 152.4993438720703, 0.9032300114631653], "4": [298.6091003417969, 152.15023803710938, 0.881919264793396], "5": [449.36212158203125, 257.4292907714844, 0.9888092875480652], "6": [233.52764892578125, 254.8960418701172, 0.9964667558670044], "7": [526.1614379882812, 400.4384765625, 0.8257049918174744], "8": [127.34646606445312, 351.6468811035156, 0.943019688129425], "9": [540.7507934570312, 480.0, 0.6665896773338318], "10": [173.35260009765625, 213.14251708984375, 0.9164283275604248], "11": [428.4317626953125, 472.66986083984375, 0.18519079685211182], "12": [285.97235107421875, 477.0464172363281, 0.26838618516921997], "13": [492.6659240722656, 426.83349609375, 0.0020531387999653816], "14": [290.65386962890625, 442.2129211425781, 0.0035820482298731804], "15": [467.9910888671875, 480.0, 0.00024432039936073124], "16": [261.18072509765625, 480.0, 0.00036407914012670517]}} +{"t": 46.034742, "tracked": true, "track_id": 1, "bbox": [112.70453643798828, 69.78267669677734, 590.4492797851562, 480.0], "det_conf": 0.9153924584388733, "mean_kpt_conf": 0.9097659371115945, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8855320221382343, "right_lift": -0.6730428785793944, "left_bend": 0.09440566932220801, "right_bend": 0.8245486622310033}, "keypoints": {"0": [350.8031311035156, 158.884765625, 0.998958945274353], "1": [368.6430358886719, 137.4840087890625, 0.9973661303520203], "2": [330.15924072265625, 138.12994384765625, 0.996682345867157], "3": [391.61944580078125, 150.29331970214844, 0.8978975415229797], "4": [298.2189636230469, 150.71714782714844, 0.886293351650238], "5": [450.3456115722656, 258.7454528808594, 0.9876582026481628], "6": [233.73263549804688, 254.93226623535156, 0.9962784647941589], "7": [526.1881103515625, 403.3087158203125, 0.7926360368728638], "8": [129.31411743164062, 349.9536437988281, 0.9354729652404785], "9": [540.6651000976562, 480.0, 0.6152437329292297], "10": [168.76382446289062, 213.42367553710938, 0.9029375910758972], "11": [426.59912109375, 473.9718322753906, 0.1731579303741455], "12": [283.4202575683594, 477.5135498046875, 0.258190780878067], "13": [491.29547119140625, 431.18280029296875, 0.001967502059414983], "14": [286.9677429199219, 445.82806396484375, 0.0035196503158658743], "15": [467.0889892578125, 480.0, 0.0002474170469213277], "16": [259.0926513671875, 480.0, 0.0003727730654645711]}} +{"t": 46.068093, "tracked": true, "track_id": 1, "bbox": [112.28254699707031, 69.81755828857422, 591.2669677734375, 480.0], "det_conf": 0.9162285327911377, "mean_kpt_conf": 0.9129496704448353, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8756032306957778, "right_lift": -0.6722244073464535, "left_bend": 0.09222203482211727, "right_bend": 0.821554156058317}, "keypoints": {"0": [350.26495361328125, 159.42901611328125, 0.9989431500434875], "1": [368.569580078125, 138.2755889892578, 0.9973268508911133], "2": [330.174072265625, 138.20538330078125, 0.9965740442276001], "3": [391.47698974609375, 151.2264404296875, 0.8981155157089233], "4": [298.52593994140625, 149.93316650390625, 0.8864192366600037], "5": [448.9804992675781, 257.8179931640625, 0.9878649115562439], "6": [232.75076293945312, 255.6597137451172, 0.9963089823722839], "7": [526.715087890625, 398.72955322265625, 0.8027582764625549], "8": [127.7142333984375, 351.03131103515625, 0.935798168182373], "9": [544.4105224609375, 480.0, 0.6355379223823547], "10": [166.70425415039062, 211.7674102783203, 0.90679931640625], "11": [426.32403564453125, 472.13177490234375, 0.16840443015098572], "12": [283.8779602050781, 476.67047119140625, 0.24788784980773926], "13": [491.27166748046875, 425.7061767578125, 0.002027110429480672], "14": [290.72772216796875, 441.6817626953125, 0.0035513024777173996], "15": [466.57916259765625, 479.1319885253906, 0.0002556997933425009], "16": [265.07427978515625, 478.2554931640625, 0.0003801580751314759]}} +{"t": 46.10426, "tracked": true, "track_id": 1, "bbox": [111.8329849243164, 69.43230438232422, 591.6853637695312, 480.0], "det_conf": 0.9155929088592529, "mean_kpt_conf": 0.9163321419195696, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8760294486066758, "right_lift": -0.658916390198413, "left_bend": 0.10190616146850648, "right_bend": 0.8114491555123271}, "keypoints": {"0": [351.355224609375, 158.5931396484375, 0.9989842772483826], "1": [369.104248046875, 137.83197021484375, 0.9973530769348145], "2": [330.8982849121094, 138.07923889160156, 0.9966715574264526], "3": [391.4818115234375, 151.68377685546875, 0.8966350555419922], "4": [299.0296936035156, 151.40525817871094, 0.887043297290802], "5": [449.56744384765625, 258.104248046875, 0.9884341359138489], "6": [235.06910705566406, 255.4547882080078, 0.99643874168396], "7": [527.677490234375, 399.9925231933594, 0.8149064779281616], "8": [127.93533325195312, 349.3004150390625, 0.9407981634140015], "9": [542.4913330078125, 480.0, 0.64948570728302], "10": [164.489990234375, 211.37132263183594, 0.9129030704498291], "11": [428.15167236328125, 473.7138977050781, 0.18300595879554749], "12": [286.8661804199219, 477.8160400390625, 0.26703375577926636], "13": [492.236328125, 429.5892333984375, 0.002029429655522108], "14": [292.94610595703125, 444.5426940917969, 0.0035526708234101534], "15": [467.7153625488281, 480.0, 0.0002427289728075266], "16": [263.9477233886719, 480.0, 0.00036122053279541433]}} +{"t": 46.167557, "tracked": true, "track_id": 1, "bbox": [111.97757720947266, 69.0186767578125, 596.5502319335938, 480.0], "det_conf": 0.9131011962890625, "mean_kpt_conf": 0.9176511493596163, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8729497727977152, "right_lift": -0.6466403495618513, "left_bend": 0.09207879122701029, "right_bend": 0.8025469925049472}, "keypoints": {"0": [351.65850830078125, 159.3941650390625, 0.9990083575248718], "1": [369.3193054199219, 137.84307861328125, 0.9973729848861694], "2": [330.9795227050781, 138.4050750732422, 0.9966705441474915], "3": [391.71710205078125, 150.4395751953125, 0.891483724117279], "4": [299.0579528808594, 150.69622802734375, 0.8857496380805969], "5": [449.14508056640625, 257.0918884277344, 0.988206684589386], "6": [236.6832733154297, 254.46148681640625, 0.9962953925132751], "7": [528.5487060546875, 399.1868896484375, 0.8174903988838196], "8": [126.73908996582031, 347.6639099121094, 0.9406505823135376], "9": [546.64599609375, 480.0, 0.6637429594993591], "10": [161.81312561035156, 208.74362182617188, 0.9174913763999939], "11": [429.56842041015625, 471.25927734375, 0.16737167537212372], "12": [289.95001220703125, 475.67236328125, 0.24443931877613068], "13": [493.4189453125, 423.963623046875, 0.0019932000432163477], "14": [297.0401611328125, 439.43267822265625, 0.0034554931335151196], "15": [470.15838623046875, 478.1412658691406, 0.00024036865215748549], "16": [267.81182861328125, 478.35736083984375, 0.00035550317261368036]}} +{"t": 46.233839, "tracked": true, "track_id": 1, "bbox": [111.54743194580078, 68.66438293457031, 598.0626831054688, 480.0], "det_conf": 0.9062769412994385, "mean_kpt_conf": 0.9141391569917853, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8672681499701256, "right_lift": -0.656328411911956, "left_bend": 0.1004317582664736, "right_bend": 0.7924632803817105}, "keypoints": {"0": [351.7004089355469, 158.6884765625, 0.9990060925483704], "1": [369.7875061035156, 137.90745544433594, 0.9974296689033508], "2": [331.4036560058594, 138.06878662109375, 0.9967273473739624], "3": [392.3114929199219, 151.702880859375, 0.8973885774612427], "4": [299.7915344238281, 151.23095703125, 0.8855810165405273], "5": [449.6136474609375, 255.50607299804688, 0.9879931211471558], "6": [236.58224487304688, 255.07472229003906, 0.9963563680648804], "7": [530.4095458984375, 396.2571716308594, 0.8120640516281128], "8": [127.24755859375, 350.18646240234375, 0.9396511912345886], "9": [547.8731689453125, 480.0, 0.6343559622764587], "10": [155.77322387695312, 211.50213623046875, 0.9089773297309875], "11": [429.34600830078125, 469.31365966796875, 0.174001544713974], "12": [288.9604187011719, 474.2174987792969, 0.2547328770160675], "13": [495.29534912109375, 424.73248291015625, 0.0019880589097738266], "14": [295.00555419921875, 440.71966552734375, 0.003476186888292432], "15": [472.60711669921875, 480.0, 0.00024201629275921732], "16": [264.3017578125, 479.2560729980469, 0.00036017296952195466]}} +{"t": 46.297148, "tracked": true, "track_id": 1, "bbox": [109.5608901977539, 68.58849334716797, 598.3433227539062, 480.0], "det_conf": 0.9111066460609436, "mean_kpt_conf": 0.9154819954525341, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8673692965949135, "right_lift": -0.6387948023771964, "left_bend": 0.09214233180647528, "right_bend": 0.7800754486207294}, "keypoints": {"0": [351.9639587402344, 158.70574951171875, 0.9990216493606567], "1": [369.9386291503906, 138.1773681640625, 0.9975029826164246], "2": [331.54998779296875, 138.30459594726562, 0.996717631816864], "3": [392.307861328125, 152.56134033203125, 0.901700496673584], "4": [299.9685363769531, 152.10882568359375, 0.8834988474845886], "5": [449.41229248046875, 256.7825927734375, 0.9882595539093018], "6": [237.3590850830078, 254.68667602539062, 0.9963943362236023], "7": [530.653564453125, 398.3761901855469, 0.8155328035354614], "8": [124.04830932617188, 348.76580810546875, 0.9403399229049683], "9": [549.8884887695312, 480.0, 0.6410943269729614], "10": [150.11788940429688, 210.9490203857422, 0.9102393984794617], "11": [429.2681884765625, 469.16351318359375, 0.17160415649414062], "12": [289.8288269042969, 473.302734375, 0.25072798132896423], "13": [493.2460021972656, 423.33428955078125, 0.0019940389320254326], "14": [294.3306579589844, 437.9164123535156, 0.0034518172033131123], "15": [471.8957214355469, 478.47021484375, 0.0002437763469060883], "16": [262.75140380859375, 476.15814208984375, 0.0003614947490859777]}} +{"t": 46.365746, "tracked": true, "track_id": 1, "bbox": [104.66975402832031, 69.03579711914062, 600.6231689453125, 479.9980163574219], "det_conf": 0.9100140929222107, "mean_kpt_conf": 0.9122363328933716, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8606331246843439, "right_lift": -0.63496777922963, "left_bend": 0.10161931141091646, "right_bend": 0.7548171086921577}, "keypoints": {"0": [351.9910583496094, 158.87774658203125, 0.9990140199661255], "1": [370.3646240234375, 138.17294311523438, 0.9974936246871948], "2": [331.8433837890625, 138.13442993164062, 0.996731162071228], "3": [392.91839599609375, 152.09039306640625, 0.9034360647201538], "4": [300.46514892578125, 151.31716918945312, 0.8841797113418579], "5": [449.0812683105469, 255.8709259033203, 0.9879146814346313], "6": [236.85336303710938, 256.4635314941406, 0.9964182376861572], "7": [531.26123046875, 394.7618408203125, 0.8066554069519043], "8": [122.497314453125, 350.4554748535156, 0.9364867210388184], "9": [549.8785400390625, 480.0, 0.6223469376564026], "10": [138.1609344482422, 211.8916015625, 0.9039230942726135], "11": [427.772705078125, 469.4462585449219, 0.16764946281909943], "12": [288.6997375488281, 474.64080810546875, 0.24473215639591217], "13": [494.7757263183594, 423.3695373535156, 0.0019661569967865944], "14": [298.57427978515625, 439.4141540527344, 0.003393980674445629], "15": [472.70904541015625, 478.59942626953125, 0.0002450146130286157], "16": [269.46331787109375, 475.3687438964844, 0.0003627653350122273]}} +{"t": 46.431602, "tracked": true, "track_id": 1, "bbox": [98.96463012695312, 69.26048278808594, 602.3118286132812, 479.9270324707031], "det_conf": 0.9114336371421814, "mean_kpt_conf": 0.9148882790045305, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8641056243024232, "right_lift": -0.6331804006771667, "left_bend": 0.09227314368338128, "right_bend": 0.7485282006723255}, "keypoints": {"0": [352.4398498535156, 158.6612548828125, 0.9990733861923218], "1": [370.68328857421875, 137.89720153808594, 0.9976370334625244], "2": [332.36785888671875, 138.00357055664062, 0.9968101382255554], "3": [393.39764404296875, 151.7248992919922, 0.9074928760528564], "4": [301.28765869140625, 151.2119140625, 0.8813886642456055], "5": [450.34649658203125, 256.3513488769531, 0.9887474775314331], "6": [237.97389221191406, 256.3824768066406, 0.9966828227043152], "7": [532.3019409179688, 397.0560607910156, 0.8170197606086731], "8": [122.06109619140625, 351.20587158203125, 0.941154420375824], "9": [552.3836669921875, 480.0, 0.6298075318336487], "10": [135.29745483398438, 212.47003173828125, 0.9079569578170776], "11": [429.6998291015625, 470.6425476074219, 0.1791960448026657], "12": [290.11541748046875, 475.570068359375, 0.26062890887260437], "13": [497.95654296875, 426.7887878417969, 0.0019152737222611904], "14": [298.4181823730469, 442.4730224609375, 0.0033194355200976133], "15": [477.2216796875, 479.204345703125, 0.00022660173999611288], "16": [267.26788330078125, 476.54150390625, 0.00033723851083777845]}} +{"t": 46.49558, "tracked": true, "track_id": 1, "bbox": [96.44341278076172, 69.2425765991211, 604.0233764648438, 479.8407287597656], "det_conf": 0.9096333980560303, "mean_kpt_conf": 0.9159397320313887, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8600550114925943, "right_lift": -0.6370020925312748, "left_bend": 0.0870514992795811, "right_bend": 0.7484259343322833}, "keypoints": {"0": [352.79412841796875, 158.56341552734375, 0.9990600943565369], "1": [371.1328125, 138.03868103027344, 0.997575581073761], "2": [332.8682861328125, 137.86492919921875, 0.9967897534370422], "3": [393.6381530761719, 152.02566528320312, 0.9049187898635864], "4": [301.67547607421875, 150.94924926757812, 0.88353031873703], "5": [449.56243896484375, 255.61276245117188, 0.988807201385498], "6": [237.8909912109375, 256.3090515136719, 0.9967001080513], "7": [531.8095703125, 394.2581481933594, 0.8231574296951294], "8": [123.49057006835938, 350.8438720703125, 0.9426223039627075], "9": [554.7968139648438, 480.0, 0.6336848735809326], "10": [135.93487548828125, 212.71609497070312, 0.9084905982017517], "11": [428.3414306640625, 470.0762634277344, 0.1854112446308136], "12": [288.8786315917969, 475.2867126464844, 0.2674936056137085], "13": [497.41400146484375, 425.7969970703125, 0.0019427422666922212], "14": [296.3619384765625, 442.1422119140625, 0.0033416457008570433], "15": [477.51251220703125, 478.59918212890625, 0.00022924557561054826], "16": [265.43994140625, 475.59197998046875, 0.00033821308170445263]}} +{"t": 46.532222, "tracked": true, "track_id": 1, "bbox": [96.90496826171875, 69.24266052246094, 603.9801025390625, 479.79937744140625], "det_conf": 0.9135550856590271, "mean_kpt_conf": 0.9136462157422846, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8619632619388526, "right_lift": -0.643410913407253, "left_bend": 0.08644244245134565, "right_bend": 0.7546806942749261}, "keypoints": {"0": [352.5197448730469, 158.82742309570312, 0.9990378618240356], "1": [371.3502197265625, 138.07638549804688, 0.9976670742034912], "2": [332.6804504394531, 137.84463500976562, 0.9966763257980347], "3": [394.65625, 151.96319580078125, 0.9140805006027222], "4": [301.8614807128906, 150.60952758789062, 0.8775936365127563], "5": [451.4739990234375, 255.87460327148438, 0.9884782433509827], "6": [237.45907592773438, 256.70184326171875, 0.9966943264007568], "7": [533.7076416015625, 395.69012451171875, 0.8129070997238159], "8": [122.55123901367188, 353.28045654296875, 0.9403080940246582], "9": [556.1448974609375, 480.0, 0.6217638850212097], "10": [136.6259765625, 214.61830139160156, 0.9049013257026672], "11": [429.40753173828125, 470.0413818359375, 0.17488424479961395], "12": [288.5108642578125, 475.1123046875, 0.256734162569046], "13": [496.68157958984375, 424.6630859375, 0.0019112908048555255], "14": [293.9954528808594, 440.8529968261719, 0.003333654487505555], "15": [474.928466796875, 478.7117004394531, 0.0002334950986551121], "16": [262.55828857421875, 475.23895263671875, 0.00034937349846586585]}} +{"t": 46.5929, "tracked": true, "track_id": 1, "bbox": [100.15782928466797, 69.1306381225586, 604.303466796875, 479.771484375], "det_conf": 0.9145928621292114, "mean_kpt_conf": 0.9172733588652178, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.863558002869094, "right_lift": -0.6415458432412502, "left_bend": 0.08355110220060004, "right_bend": 0.7576694636020125}, "keypoints": {"0": [353.0375061035156, 158.94085693359375, 0.999086856842041], "1": [371.0806884765625, 138.22694396972656, 0.9976170659065247], "2": [332.9853820800781, 138.27322387695312, 0.9968442916870117], "3": [393.3895263671875, 151.979736328125, 0.9019804000854492], "4": [301.6758728027344, 151.3848419189453, 0.8847390413284302], "5": [450.10198974609375, 255.6961212158203, 0.9889994263648987], "6": [237.96536254882812, 256.7422790527344, 0.9967040419578552], "7": [531.982177734375, 395.9209289550781, 0.8258584141731262], "8": [121.993896484375, 353.73419189453125, 0.942789614200592], "9": [554.8927001953125, 480.0, 0.6437724232673645], "10": [137.82916259765625, 214.17202758789062, 0.9116153717041016], "11": [430.6590881347656, 469.73883056640625, 0.17970137298107147], "12": [290.91058349609375, 475.209228515625, 0.25900715589523315], "13": [497.8697509765625, 424.29888916015625, 0.0019385123159736395], "14": [296.0513916015625, 440.9476623535156, 0.003301543416455388], "15": [477.3916015625, 478.58685302734375, 0.0002267126110382378], "16": [263.3189697265625, 476.314697265625, 0.0003319301758892834]}} +{"t": 46.661246, "tracked": true, "track_id": 1, "bbox": [105.32426452636719, 68.87055206298828, 604.8120727539062, 479.8181457519531], "det_conf": 0.9133974313735962, "mean_kpt_conf": 0.9165404547344554, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8639995776465391, "right_lift": -0.6539659385853197, "left_bend": 0.0838120382669578, "right_bend": 0.7765638576514069}, "keypoints": {"0": [352.54205322265625, 159.30950927734375, 0.9990803003311157], "1": [370.76007080078125, 138.04739379882812, 0.9976021647453308], "2": [332.3081359863281, 138.2567138671875, 0.9968531727790833], "3": [393.4543762207031, 151.14691162109375, 0.8993633985519409], "4": [300.84222412109375, 150.72750854492188, 0.8850398063659668], "5": [450.482421875, 255.63192749023438, 0.9886813163757324], "6": [236.81903076171875, 256.2858581542969, 0.9965446591377258], "7": [533.1854248046875, 397.55133056640625, 0.8206040859222412], "8": [122.28123474121094, 355.2963562011719, 0.9404844641685486], "9": [555.5015258789062, 480.0, 0.6459532976150513], "10": [144.3179931640625, 215.2157440185547, 0.9117383360862732], "11": [429.66741943359375, 469.8766784667969, 0.16437019407749176], "12": [288.8744812011719, 475.2424621582031, 0.23860086500644684], "13": [497.2658996582031, 421.69671630859375, 0.0018679776694625616], "14": [294.0723876953125, 438.31951904296875, 0.003197232959792018], "15": [476.1622314453125, 478.1654968261719, 0.00022526357497554272], "16": [261.347900390625, 476.44866943359375, 0.0003301180840935558]}} +{"t": 46.727182, "tracked": true, "track_id": 1, "bbox": [109.31396484375, 68.9273681640625, 599.1383666992188, 479.8721008300781], "det_conf": 0.9129963517189026, "mean_kpt_conf": 0.9131891456517306, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8771098707635263, "right_lift": -0.670263198397346, "left_bend": 0.07715841818775705, "right_bend": 0.7870395536801238}, "keypoints": {"0": [352.5030822753906, 159.03955078125, 0.9989991784095764], "1": [370.38763427734375, 138.0863800048828, 0.9973213076591492], "2": [332.1103820800781, 138.51272583007812, 0.9967823028564453], "3": [392.6171569824219, 151.42721557617188, 0.8914915323257446], "4": [300.3766174316406, 151.62503051757812, 0.8925776481628418], "5": [449.8858642578125, 256.19097900390625, 0.9885531663894653], "6": [235.2534637451172, 256.7847900390625, 0.9965004920959473], "7": [527.7662353515625, 398.4168701171875, 0.8119085431098938], "8": [125.94131469726562, 355.5121765136719, 0.9376326203346252], "9": [549.3455200195312, 480.0, 0.627842366695404], "10": [149.2466583251953, 217.42575073242188, 0.9054714441299438], "11": [428.7041320800781, 469.75848388671875, 0.17691056430339813], "12": [287.63458251953125, 475.3932800292969, 0.2553582191467285], "13": [497.5727844238281, 424.13751220703125, 0.0020419503562152386], "14": [296.89569091796875, 441.5491027832031, 0.0035208361223340034], "15": [472.46868896484375, 477.63397216796875, 0.00024863085127435625], "16": [267.9729919433594, 478.3701171875, 0.00036481465213000774]}} +{"t": 46.79669, "tracked": true, "track_id": 1, "bbox": [110.83773040771484, 68.87287902832031, 591.07080078125, 479.8929443359375], "det_conf": 0.9115917086601257, "mean_kpt_conf": 0.9136097973043268, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8899048257681755, "right_lift": -0.6763070898703557, "left_bend": 0.09501631287118571, "right_bend": 0.7992728880031663}, "keypoints": {"0": [352.4966125488281, 158.93179321289062, 0.9990505576133728], "1": [370.45367431640625, 138.18316650390625, 0.9974161386489868], "2": [332.24835205078125, 138.01620483398438, 0.9968922734260559], "3": [392.46978759765625, 151.97283935546875, 0.8912737369537354], "4": [300.14898681640625, 150.76913452148438, 0.8905582427978516], "5": [450.1255187988281, 257.93939208984375, 0.9886992573738098], "6": [235.8734130859375, 255.06663513183594, 0.9965331554412842], "7": [525.7870483398438, 405.5489807128906, 0.8106154203414917], "8": [125.29937744140625, 356.5871276855469, 0.9391737580299377], "9": [538.9627075195312, 480.0, 0.6307311058044434], "10": [152.8476104736328, 218.88909912109375, 0.908764123916626], "11": [430.3160400390625, 472.932373046875, 0.17005692422389984], "12": [288.8163757324219, 476.6458435058594, 0.24944962561130524], "13": [494.4779357910156, 427.2017517089844, 0.0019479786278679967], "14": [290.9696350097656, 441.0548095703125, 0.0033590325620025396], "15": [470.436279296875, 480.0, 0.00023536999651696533], "16": [258.5964660644531, 478.7367858886719, 0.00034531508572399616]}} +{"t": 46.860169, "tracked": true, "track_id": 1, "bbox": [111.64562225341797, 68.3759994506836, 588.2327270507812, 479.9360046386719], "det_conf": 0.908926784992218, "mean_kpt_conf": 0.9139286767352711, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8855273689464237, "right_lift": -0.6663815667644093, "left_bend": 0.07573644540971937, "right_bend": 0.7944404211736251}, "keypoints": {"0": [352.6502990722656, 158.4776611328125, 0.9990556836128235], "1": [370.2401123046875, 137.59799194335938, 0.997481644153595], "2": [332.09698486328125, 138.04769897460938, 0.9968987703323364], "3": [392.3697204589844, 151.3084259033203, 0.894011378288269], "4": [300.2087097167969, 151.59103393554688, 0.890360951423645], "5": [450.27099609375, 257.4972229003906, 0.988596498966217], "6": [236.50784301757812, 255.3804931640625, 0.9965376853942871], "7": [526.5593872070312, 402.9068603515625, 0.8125655055046082], "8": [126.37185668945312, 353.8133239746094, 0.9407284259796143], "9": [545.8536987304688, 480.0, 0.6284633278846741], "10": [153.5543670654297, 216.668212890625, 0.9085155725479126], "11": [429.6182556152344, 472.266357421875, 0.17921432852745056], "12": [288.28472900390625, 476.4644470214844, 0.26248103380203247], "13": [495.1911315917969, 428.36810302734375, 0.0019676387310028076], "14": [290.01580810546875, 443.6858825683594, 0.0034271031618118286], "15": [472.29681396484375, 480.0, 0.00023531905026175082], "16": [257.3965759277344, 480.0, 0.00034766996395774186]}} +{"t": 46.92461, "tracked": true, "track_id": 1, "bbox": [111.96160125732422, 68.107421875, 589.9603271484375, 479.9513854980469], "det_conf": 0.9099527597427368, "mean_kpt_conf": 0.9133935462344777, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8796425166792465, "right_lift": -0.6647649500367125, "left_bend": 0.08781419099388585, "right_bend": 0.794974012262708}, "keypoints": {"0": [352.1130065917969, 158.7808074951172, 0.9990136623382568], "1": [370.2935791015625, 137.5917510986328, 0.9974551796913147], "2": [331.78338623046875, 137.7554931640625, 0.9967304468154907], "3": [393.0223388671875, 150.64393615722656, 0.8978385329246521], "4": [300.125732421875, 150.08071899414062, 0.8862013220787048], "5": [450.1590881347656, 256.0491027832031, 0.9881427884101868], "6": [236.53765869140625, 255.21237182617188, 0.9964715242385864], "7": [527.4795532226562, 399.04595947265625, 0.8079913258552551], "8": [126.72756958007812, 352.9269104003906, 0.9391352534294128], "9": [545.5662841796875, 480.0, 0.6296359300613403], "10": [154.7584686279297, 214.296630859375, 0.9087130427360535], "11": [430.4678039550781, 471.0263671875, 0.17264586687088013], "12": [289.64349365234375, 475.9005126953125, 0.2544194459915161], "13": [495.77435302734375, 426.3629150390625, 0.001971018500626087], "14": [294.94818115234375, 442.4789123535156, 0.0034529638942331076], "15": [471.8023681640625, 480.0, 0.0002397789794486016], "16": [264.401123046875, 479.3333435058594, 0.0003571745182853192]}} +{"t": 46.989632, "tracked": true, "track_id": 1, "bbox": [112.47026062011719, 67.99321746826172, 592.8164672851562, 479.9366149902344], "det_conf": 0.9112029075622559, "mean_kpt_conf": 0.9155443527481772, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8773421209508887, "right_lift": -0.6619485600498163, "left_bend": 0.08864586192909972, "right_bend": 0.799028023282047}, "keypoints": {"0": [352.6844177246094, 158.57591247558594, 0.9990289211273193], "1": [370.50921630859375, 137.39381408691406, 0.9974057078361511], "2": [332.1335144042969, 137.91189575195312, 0.9968050718307495], "3": [393.02264404296875, 150.52810668945312, 0.893724799156189], "4": [300.36187744140625, 150.75152587890625, 0.8892077207565308], "5": [451.1517028808594, 256.3239440917969, 0.9887571930885315], "6": [236.85308837890625, 254.75823974609375, 0.9965445399284363], "7": [529.7177734375, 399.96697998046875, 0.8159903883934021], "8": [127.45440673828125, 351.3713684082031, 0.9414860606193542], "9": [547.7838745117188, 480.0, 0.6398717761039734], "10": [157.54107666015625, 214.260009765625, 0.9121657013893127], "11": [431.67205810546875, 471.669677734375, 0.18007326126098633], "12": [290.6881408691406, 476.47088623046875, 0.26238560676574707], "13": [499.9234619140625, 427.1256103515625, 0.0019599462393671274], "14": [300.36468505859375, 442.982421875, 0.0034547641407698393], "15": [475.25048828125, 479.6033020019531, 0.00023293498088605702], "16": [270.22320556640625, 479.7619934082031, 0.00034841703018173575]}} +{"t": 47.054693, "tracked": true, "track_id": 1, "bbox": [112.37938690185547, 68.07738494873047, 601.6707153320312, 479.92498779296875], "det_conf": 0.9087116718292236, "mean_kpt_conf": 0.9116389588876204, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8698853829104657, "right_lift": -0.6617868840513328, "left_bend": 0.07736408197422724, "right_bend": 0.7973500599290319}, "keypoints": {"0": [352.83489990234375, 159.22080993652344, 0.9990131855010986], "1": [371.2293701171875, 137.79579162597656, 0.9974096417427063], "2": [332.26654052734375, 138.20054626464844, 0.9968262910842896], "3": [394.2042236328125, 150.70623779296875, 0.8948296308517456], "4": [300.3543395996094, 150.45498657226562, 0.8902706503868103], "5": [451.5849304199219, 256.651611328125, 0.9881630539894104], "6": [235.9552001953125, 255.04827880859375, 0.996475875377655], "7": [532.78662109375, 399.8560791015625, 0.8022491335868835], "8": [126.93843078613281, 351.28228759765625, 0.9378297924995422], "9": [555.2071533203125, 480.0, 0.6192174553871155], "10": [156.89337158203125, 211.39675903320312, 0.9057438373565674], "11": [431.27886962890625, 471.32843017578125, 0.17199400067329407], "12": [289.8514709472656, 476.3747863769531, 0.2534877061843872], "13": [501.1689147949219, 427.7689208984375, 0.0019127412233501673], "14": [302.98333740234375, 444.02154541015625, 0.0034205964766442776], "15": [478.7088317871094, 479.92181396484375, 0.00023286193027161062], "16": [277.02374267578125, 480.0, 0.00035208280314691365]}} +{"t": 47.090078, "tracked": true, "track_id": 1, "bbox": [112.55872344970703, 68.1966323852539, 603.5046997070312, 479.9237365722656], "det_conf": 0.9070858955383301, "mean_kpt_conf": 0.91436537287452, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8726018893583298, "right_lift": -0.6577556466507366, "left_bend": 0.08272298655311519, "right_bend": 0.7980393943892125}, "keypoints": {"0": [353.35076904296875, 159.4583740234375, 0.999076247215271], "1": [371.4373779296875, 137.895263671875, 0.9974621534347534], "2": [332.7221374511719, 138.2902374267578, 0.9969814419746399], "3": [394.01397705078125, 150.47634887695312, 0.8893054723739624], "4": [300.4162292480469, 150.13002014160156, 0.8913335204124451], "5": [452.4552001953125, 257.053466796875, 0.9887174367904663], "6": [236.86045837402344, 253.45492553710938, 0.9965354204177856], "7": [534.0074462890625, 402.7495422363281, 0.8112508654594421], "8": [126.8389892578125, 349.5306396484375, 0.9411728978157043], "9": [553.7664794921875, 480.0, 0.6344964504241943], "10": [157.61312866210938, 210.92539978027344, 0.9116871953010559], "11": [433.615478515625, 472.0592041015625, 0.17375478148460388], "12": [291.883544921875, 476.0946350097656, 0.2554274797439575], "13": [501.4627990722656, 428.9844055175781, 0.0018650052370503545], "14": [301.23260498046875, 443.47991943359375, 0.0033092598896473646], "15": [479.34210205078125, 480.0, 0.00021840713452547789], "16": [272.9205017089844, 480.0, 0.00032771797850728035]}} +{"t": 47.124395, "tracked": true, "track_id": 1, "bbox": [112.91260528564453, 67.8633041381836, 606.1697998046875, 479.9378967285156], "det_conf": 0.9044061899185181, "mean_kpt_conf": 0.9171781539916992, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8631954740051239, "right_lift": -0.6530848570449372, "left_bend": 0.08413784369064856, "right_bend": 0.8013347800537391}, "keypoints": {"0": [353.21875, 158.6871337890625, 0.9990519881248474], "1": [371.31597900390625, 137.406005859375, 0.9975201487541199], "2": [332.73944091796875, 137.93035888671875, 0.9968389272689819], "3": [394.2289123535156, 150.38345336914062, 0.8978545069694519], "4": [301.1138916015625, 150.4015655517578, 0.8874964118003845], "5": [453.34210205078125, 254.76193237304688, 0.9888508915901184], "6": [236.8467254638672, 253.74591064453125, 0.9966275095939636], "7": [535.9151611328125, 395.9402770996094, 0.8208454847335815], "8": [126.78640747070312, 348.66229248046875, 0.944463849067688], "9": [558.7188720703125, 480.0, 0.6447091102600098], "10": [159.68836975097656, 211.25308227539062, 0.9147008657455444], "11": [434.9432067871094, 471.0307312011719, 0.18441441655158997], "12": [292.59326171875, 476.3243408203125, 0.26966503262519836], "13": [504.27984619140625, 426.53326416015625, 0.0018976578721776605], "14": [302.95855712890625, 443.09442138671875, 0.0033990456722676754], "15": [480.2234802246094, 480.0, 0.00022178424114827067], "16": [273.4367370605469, 480.0, 0.0003363968862686306]}} +{"t": 47.158554, "tracked": true, "track_id": 1, "bbox": [112.81571197509766, 67.77184295654297, 606.5577392578125, 479.9537353515625], "det_conf": 0.9082702398300171, "mean_kpt_conf": 0.917457483031533, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8629975274388825, "right_lift": -0.6618825990384025, "left_bend": 0.08729453054918843, "right_bend": 0.8078633608858873}, "keypoints": {"0": [353.08056640625, 159.1322021484375, 0.9990795850753784], "1": [371.0686950683594, 137.93063354492188, 0.9974466562271118], "2": [332.69976806640625, 138.05340576171875, 0.9969792366027832], "3": [393.36505126953125, 151.0924530029297, 0.8868119716644287], "4": [300.59063720703125, 150.216064453125, 0.8931862711906433], "5": [452.19195556640625, 255.85797119140625, 0.988943338394165], "6": [236.1020965576172, 253.89053344726562, 0.9964974522590637], "7": [535.7449951171875, 398.58343505859375, 0.8218687176704407], "8": [126.216796875, 350.91619873046875, 0.9425455331802368], "9": [557.001220703125, 480.0, 0.6530448794364929], "10": [160.6905517578125, 212.35899353027344, 0.9156286716461182], "11": [433.3657531738281, 470.5057373046875, 0.16993911564350128], "12": [291.1553039550781, 475.276611328125, 0.2469692826271057], "13": [501.78839111328125, 423.3988037109375, 0.0018724317196756601], "14": [299.8529357910156, 439.0010681152344, 0.0032785360235720873], "15": [478.0274658203125, 480.0, 0.00022109865676611662], "16": [269.10870361328125, 479.8158264160156, 0.00032786576775833964]}} +{"t": 47.221274, "tracked": true, "track_id": 1, "bbox": [112.92823028564453, 67.80330657958984, 608.183837890625, 479.98797607421875], "det_conf": 0.9102444648742676, "mean_kpt_conf": 0.9160956957123496, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8605601425065886, "right_lift": -0.6604121721127305, "left_bend": 0.08220297335756206, "right_bend": 0.8099137701661268}, "keypoints": {"0": [352.9347229003906, 158.88497924804688, 0.9990736246109009], "1": [371.0534973144531, 137.70166015625, 0.9974850416183472], "2": [332.1999206542969, 137.95449829101562, 0.9969658255577087], "3": [393.54864501953125, 151.19073486328125, 0.8884713649749756], "4": [299.8299865722656, 150.64511108398438, 0.8919294476509094], "5": [451.947265625, 255.2142791748047, 0.9885804057121277], "6": [236.57122802734375, 253.29991149902344, 0.9964141845703125], "7": [536.4290161132812, 397.94873046875, 0.8183887004852295], "8": [126.81060791015625, 349.83331298828125, 0.9422693252563477], "9": [559.6842041015625, 480.0, 0.6433936357498169], "10": [162.56565856933594, 211.111083984375, 0.9140810966491699], "11": [435.0850524902344, 469.1758117675781, 0.16823169589042664], "12": [293.3631591796875, 474.1927185058594, 0.24608798325061798], "13": [504.79901123046875, 422.6523132324219, 0.001839946024119854], "14": [303.3330078125, 438.434814453125, 0.0032659557182341814], "15": [483.21990966796875, 480.0, 0.00022017893206793815], "16": [273.30718994140625, 479.51971435546875, 0.00033078977139666677]}} +{"t": 47.286281, "tracked": true, "track_id": 1, "bbox": [112.76885986328125, 67.76226806640625, 607.47607421875, 479.95361328125], "det_conf": 0.9093489646911621, "mean_kpt_conf": 0.9170169559392062, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8579226142112666, "right_lift": -0.6618189092543639, "left_bend": 0.08254223418052503, "right_bend": 0.8095312846067909}, "keypoints": {"0": [352.40704345703125, 159.40338134765625, 0.9990721940994263], "1": [370.3836975097656, 137.58822631835938, 0.9974530339241028], "2": [331.82586669921875, 137.95062255859375, 0.9969348907470703], "3": [393.0856018066406, 149.4502410888672, 0.8862364292144775], "4": [299.4384765625, 149.04296875, 0.8912463784217834], "5": [452.2097473144531, 254.99398803710938, 0.9887976050376892], "6": [236.04098510742188, 253.57199096679688, 0.9964709281921387], "7": [535.9150390625, 394.7674560546875, 0.8211796283721924], "8": [129.34234619140625, 347.7677917480469, 0.943219006061554], "9": [560.4489135742188, 480.0, 0.6509453654289246], "10": [163.83424377441406, 212.2222900390625, 0.9156310558319092], "11": [434.37255859375, 469.77227783203125, 0.1787562370300293], "12": [291.6046447753906, 474.8299255371094, 0.26003819704055786], "13": [503.0264892578125, 425.2271728515625, 0.0018768436275422573], "14": [298.5951232910156, 441.6963806152344, 0.003312569111585617], "15": [479.70062255859375, 479.33319091796875, 0.00021874370577279478], "16": [268.8256530761719, 479.3815002441406, 0.00032583725987933576]}} +{"t": 47.349915, "tracked": true, "track_id": 1, "bbox": [112.51374053955078, 68.1327133178711, 607.0345458984375, 479.88507080078125], "det_conf": 0.9093800187110901, "mean_kpt_conf": 0.9158491058783098, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8584150630104568, "right_lift": -0.6677272179776443, "left_bend": 0.08220793228663406, "right_bend": 0.8257933732472527}, "keypoints": {"0": [352.1236267089844, 158.71701049804688, 0.9990482926368713], "1": [370.3662109375, 137.44923400878906, 0.9974969029426575], "2": [331.5321350097656, 137.63246154785156, 0.9969066977500916], "3": [393.29412841796875, 150.41944885253906, 0.8930196762084961], "4": [299.2724304199219, 149.62445068359375, 0.891676664352417], "5": [451.88037109375, 255.12142944335938, 0.9885873794555664], "6": [234.87973022460938, 253.64019775390625, 0.9965003728866577], "7": [535.42822265625, 394.93609619140625, 0.8162452578544617], "8": [128.28375244140625, 349.2560729980469, 0.942596971988678], "9": [559.9219360351562, 480.0, 0.6397653222084045], "10": [169.2926025390625, 213.0064697265625, 0.9124966263771057], "11": [433.9639892578125, 472.1858215332031, 0.18358196318149567], "12": [290.77783203125, 477.416259765625, 0.2687161862850189], "13": [502.93035888671875, 428.48321533203125, 0.001865515485405922], "14": [299.2926025390625, 444.8808898925781, 0.0033439109101891518], "15": [480.50836181640625, 480.0, 0.00022131443256512284], "16": [270.6125793457031, 480.0, 0.0003341450938023627]}} +{"t": 47.385115, "tracked": true, "track_id": 1, "bbox": [112.33847045898438, 68.03643798828125, 607.0033569335938, 479.9210205078125], "det_conf": 0.9076697826385498, "mean_kpt_conf": 0.9136206778613004, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8504815115514004, "right_lift": -0.6809963108542678, "left_bend": 0.09420517546996011, "right_bend": 0.8340079562759943}, "keypoints": {"0": [351.9805908203125, 158.17843627929688, 0.9990814924240112], "1": [370.2679138183594, 137.54542541503906, 0.9975021481513977], "2": [331.55035400390625, 137.257080078125, 0.9971185922622681], "3": [392.9031066894531, 151.486083984375, 0.8884652256965637], "4": [298.865478515625, 149.74473571777344, 0.8962578773498535], "5": [452.6817932128906, 254.9095458984375, 0.988690972328186], "6": [233.68453979492188, 253.08424377441406, 0.9964969754219055], "7": [538.822998046875, 394.18865966796875, 0.8135101795196533], "8": [129.60623168945312, 349.87274169921875, 0.9427493214607239], "9": [561.461669921875, 480.0, 0.6223074793815613], "10": [170.87937927246094, 216.539794921875, 0.9076471924781799], "11": [434.08551025390625, 472.633056640625, 0.1863754391670227], "12": [288.76751708984375, 477.2777099609375, 0.27350467443466187], "13": [504.31805419921875, 429.40380859375, 0.0017826399998739362], "14": [293.5235900878906, 444.4881591796875, 0.0032224676106125116], "15": [482.26348876953125, 480.0, 0.00021325911802705377], "16": [262.4381408691406, 480.0, 0.00032197206746786833]}} +{"t": 47.45213, "tracked": true, "track_id": 1, "bbox": [111.77642822265625, 67.37739562988281, 606.7755737304688, 479.945068359375], "det_conf": 0.9059820175170898, "mean_kpt_conf": 0.9230879978700117, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8569370586330406, "right_lift": -0.6799899795871606, "left_bend": 0.09040690103985755, "right_bend": 0.8519478186768868}, "keypoints": {"0": [351.9312438964844, 158.65621948242188, 0.9990691542625427], "1": [370.1518249511719, 137.74371337890625, 0.9973703622817993], "2": [331.433349609375, 137.4639434814453, 0.996961772441864], "3": [392.4450378417969, 151.24620056152344, 0.8792205452919006], "4": [298.62841796875, 149.33346557617188, 0.8977106809616089], "5": [450.1884765625, 254.3271484375, 0.9894418716430664], "6": [233.2070770263672, 252.66986083984375, 0.996496856212616], "7": [534.6661987304688, 394.77947998046875, 0.8396667242050171], "8": [126.27169799804688, 351.841796875, 0.9460231065750122], "9": [556.9478149414062, 479.3968200683594, 0.6877976655960083], "10": [177.6759796142578, 214.4114532470703, 0.9242092370986938], "11": [434.45294189453125, 471.35345458984375, 0.18216493725776672], "12": [291.4774169921875, 477.0286560058594, 0.25885510444641113], "13": [504.45782470703125, 424.3465881347656, 0.0018703866517171264], "14": [303.69134521484375, 440.6610412597656, 0.003237629309296608], "15": [482.4661560058594, 480.0, 0.00021154238493181765], "16": [275.3896179199219, 480.0, 0.0003105879877693951]}} +{"t": 47.52061, "tracked": true, "track_id": 1, "bbox": [111.47006225585938, 67.2334213256836, 600.1932373046875, 480.0], "det_conf": 0.9110315442085266, "mean_kpt_conf": 0.9186603372747247, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.867951390840706, "right_lift": -0.6910358215620447, "left_bend": 0.08791276857073863, "right_bend": 0.8530644197925485}, "keypoints": {"0": [351.70068359375, 159.10964965820312, 0.9989928603172302], "1": [369.8137512207031, 137.82742309570312, 0.9971248507499695], "2": [331.30694580078125, 137.77688598632812, 0.9968428611755371], "3": [392.04461669921875, 150.20921325683594, 0.8718627095222473], "4": [298.66302490234375, 148.71002197265625, 0.9002761840820312], "5": [448.6876525878906, 254.26280212402344, 0.9888606667518616], "6": [233.34771728515625, 252.90188598632812, 0.9963626265525818], "7": [529.378173828125, 395.27874755859375, 0.8264370560646057], "8": [130.38133239746094, 351.34051513671875, 0.942129373550415], "9": [550.2852783203125, 479.4186706542969, 0.6680851578712463], "10": [180.77035522460938, 211.68130493164062, 0.9182893633842468], "11": [430.93621826171875, 470.669677734375, 0.18499606847763062], "12": [289.0382385253906, 476.43817138671875, 0.26387283205986023], "13": [500.3604736328125, 426.9797058105469, 0.0020002040546387434], "14": [302.23260498046875, 444.21734619140625, 0.0034772276412695646], "15": [475.8262023925781, 480.0, 0.0002304768277099356], "16": [275.08966064453125, 480.0, 0.00033756319317035377]}} +{"t": 47.581511, "tracked": true, "track_id": 1, "bbox": [111.54218292236328, 66.80595397949219, 597.2725830078125, 480.0], "det_conf": 0.9146432876586914, "mean_kpt_conf": 0.9164716384627603, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8719339897711977, "right_lift": -0.6919188545562475, "left_bend": 0.09291572533219747, "right_bend": 0.8489305702572647}, "keypoints": {"0": [351.89385986328125, 158.65353393554688, 0.9989805817604065], "1": [369.9939880371094, 137.20779418945312, 0.9971530437469482], "2": [331.4723815917969, 137.52186584472656, 0.9968389272689819], "3": [392.47589111328125, 149.29653930664062, 0.877091109752655], "4": [299.02276611328125, 148.5909881591797, 0.8996500372886658], "5": [450.65899658203125, 253.569580078125, 0.9888554215431213], "6": [232.65826416015625, 252.795166015625, 0.9964303374290466], "7": [530.8232421875, 396.328125, 0.8190682530403137], "8": [129.1563720703125, 351.9881896972656, 0.940605103969574], "9": [549.5123291015625, 480.0, 0.6525222659111023], "10": [177.37965393066406, 212.1383056640625, 0.9139929413795471], "11": [431.4468688964844, 470.8287353515625, 0.18608014285564423], "12": [288.08154296875, 476.5796813964844, 0.2672589123249054], "13": [499.3873596191406, 428.19512939453125, 0.0020171431824564934], "14": [300.0494689941406, 445.6596374511719, 0.0035322525072842836], "15": [471.6656494140625, 480.0, 0.0002346220862818882], "16": [272.4722900390625, 480.0, 0.0003455993137322366]}} +{"t": 47.614946, "tracked": true, "track_id": 1, "bbox": [111.94125366210938, 66.35205841064453, 596.9558715820312, 480.0], "det_conf": 0.9136396646499634, "mean_kpt_conf": 0.9199675429951061, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8771301609591449, "right_lift": -0.6872811113595052, "left_bend": 0.09484128432987035, "right_bend": 0.8486386768081562}, "keypoints": {"0": [352.145751953125, 158.73492431640625, 0.9990527033805847], "1": [369.9323425292969, 137.15980529785156, 0.9972696900367737], "2": [331.3291320800781, 137.56411743164062, 0.9969645142555237], "3": [392.0412902832031, 149.64996337890625, 0.8734686970710754], "4": [298.41339111328125, 149.26626586914062, 0.8993816375732422], "5": [450.34820556640625, 255.306640625, 0.9892157316207886], "6": [233.33724975585938, 253.0042266845703, 0.9964390397071838], "7": [530.2427978515625, 401.2255554199219, 0.8279520273208618], "8": [126.78292846679688, 353.8214416503906, 0.9426146745681763], "9": [546.45654296875, 480.0, 0.6759721040725708], "10": [176.0526885986328, 213.44093322753906, 0.921312153339386], "11": [433.0464172363281, 473.6097412109375, 0.1770087331533432], "12": [290.3086853027344, 478.7852783203125, 0.25361770391464233], "13": [500.1289367675781, 427.9716796875, 0.0019140526419505477], "14": [301.02978515625, 444.0321960449219, 0.0033059476409107447], "15": [474.8642578125, 480.0, 0.00021732009190600365], "16": [272.1069030761719, 480.0, 0.0003174957528244704]}} +{"t": 47.65237, "tracked": true, "track_id": 1, "bbox": [112.0582504272461, 66.39021301269531, 595.2843627929688, 480.0], "det_conf": 0.9136264324188232, "mean_kpt_conf": 0.9114281480962579, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8836577473433612, "right_lift": -0.6859460228558917, "left_bend": 0.09356578850445184, "right_bend": 0.838880066342906}, "keypoints": {"0": [352.11004638671875, 157.98236083984375, 0.9989858269691467], "1": [369.9779052734375, 136.73573303222656, 0.9972871541976929], "2": [331.4673767089844, 137.20098876953125, 0.9968504309654236], "3": [392.48089599609375, 149.6468505859375, 0.885369062423706], "4": [299.1286926269531, 149.59088134765625, 0.8954634666442871], "5": [450.99066162109375, 255.2102508544922, 0.9880015254020691], "6": [233.73855590820312, 253.38748168945312, 0.996316134929657], "7": [527.628173828125, 399.8726806640625, 0.8012005090713501], "8": [128.16140747070312, 352.913330078125, 0.9374129772186279], "9": [543.3069458007812, 480.0, 0.6218369603157043], "10": [171.79568481445312, 216.09310913085938, 0.9069855809211731], "11": [431.06097412109375, 471.3768310546875, 0.17525224387645721], "12": [287.720703125, 476.292236328125, 0.2584042549133301], "13": [498.07598876953125, 428.54205322265625, 0.0019585019908845425], "14": [295.1142272949219, 444.7452392578125, 0.0034903434570878744], "15": [471.6179504394531, 480.0, 0.00023957972007337958], "16": [265.2571716308594, 480.0, 0.00035839853808283806]}} +{"t": 47.713544, "tracked": true, "track_id": 1, "bbox": [111.4977035522461, 65.73554992675781, 594.9338989257812, 480.0], "det_conf": 0.9122273921966553, "mean_kpt_conf": 0.9125870412046259, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8839216571282378, "right_lift": -0.6624865404165395, "left_bend": 0.08510653940703412, "right_bend": 0.8160100347760167}, "keypoints": {"0": [352.83782958984375, 158.1179656982422, 0.9990154504776001], "1": [370.63214111328125, 136.56655883789062, 0.9973708391189575], "2": [332.17626953125, 137.05992126464844, 0.9968374967575073], "3": [393.0699462890625, 149.20828247070312, 0.8875640034675598], "4": [299.98565673828125, 149.22154235839844, 0.8922762274742126], "5": [450.79510498046875, 256.2497253417969, 0.987851619720459], "6": [235.653564453125, 253.42189025878906, 0.996304988861084], "7": [527.5126342773438, 401.2608642578125, 0.8023602366447449], "8": [125.63050842285156, 350.72711181640625, 0.9378637671470642], "9": [545.0576782226562, 480.0, 0.6304023861885071], "10": [163.52197265625, 213.088134765625, 0.9106104373931885], "11": [430.68218994140625, 470.7889404296875, 0.16705361008644104], "12": [289.0461120605469, 475.27410888671875, 0.24743737280368805], "13": [496.6391906738281, 427.6302490234375, 0.001935408334247768], "14": [296.5467529296875, 443.4307556152344, 0.00342413573525846], "15": [471.6588134765625, 480.0, 0.00023421284276992083], "16": [266.13995361328125, 480.0, 0.0003494987322483212]}} +{"t": 47.78015, "tracked": true, "track_id": 1, "bbox": [108.64254760742188, 65.12322998046875, 592.7615966796875, 480.0], "det_conf": 0.90567547082901, "mean_kpt_conf": 0.9124915816567161, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.885016629154365, "right_lift": -0.6693994558953636, "left_bend": 0.08265077153552819, "right_bend": 0.799547956228098}, "keypoints": {"0": [353.321044921875, 157.37368774414062, 0.9990634322166443], "1": [371.3672180175781, 135.8888397216797, 0.9975119829177856], "2": [332.5309753417969, 136.3754119873047, 0.9969671368598938], "3": [394.0789489746094, 148.73870849609375, 0.8920847177505493], "4": [300.34857177734375, 148.9468994140625, 0.8913843631744385], "5": [451.64202880859375, 254.4368896484375, 0.9882009029388428], "6": [237.1412353515625, 252.84710693359375, 0.996457040309906], "7": [528.425537109375, 400.400390625, 0.807221531867981], "8": [126.20411682128906, 352.80804443359375, 0.9406656622886658], "9": [546.6113891601562, 480.0, 0.6192230582237244], "10": [154.6290283203125, 217.89767456054688, 0.9086275696754456], "11": [430.7828369140625, 471.2474365234375, 0.17384816706180573], "12": [288.7565612792969, 475.576171875, 0.25752460956573486], "13": [496.9036865234375, 427.73175048828125, 0.0018825264414772391], "14": [290.158203125, 443.288818359375, 0.0033305822871625423], "15": [471.68829345703125, 480.0, 0.0002279783075209707], "16": [254.0059356689453, 480.0, 0.0003395431558601558]}} +{"t": 47.814086, "tracked": true, "track_id": 1, "bbox": [107.4771957397461, 65.27699279785156, 591.17919921875, 480.0], "det_conf": 0.9118314981460571, "mean_kpt_conf": 0.9141387289220636, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8884341649977533, "right_lift": -0.6616652750586481, "left_bend": 0.06960899584141848, "right_bend": 0.7884502743904448}, "keypoints": {"0": [353.038330078125, 157.05642700195312, 0.9990555644035339], "1": [371.04351806640625, 135.8751983642578, 0.9975715279579163], "2": [332.78436279296875, 136.18637084960938, 0.9968090653419495], "3": [393.6806640625, 149.1888885498047, 0.9010173678398132], "4": [301.5042724609375, 148.98199462890625, 0.8866386413574219], "5": [450.7330322265625, 255.70208740234375, 0.9885000586509705], "6": [236.92051696777344, 254.43365478515625, 0.9965963959693909], "7": [526.2687377929688, 401.90667724609375, 0.8110492825508118], "8": [122.27963256835938, 355.5992431640625, 0.9397338032722473], "9": [546.8920288085938, 480.0, 0.6290045976638794], "10": [147.71165466308594, 218.30075073242188, 0.9095497131347656], "11": [430.0380554199219, 469.98822021484375, 0.16868241131305695], "12": [289.19482421875, 474.76690673828125, 0.248548224568367], "13": [496.5475769042969, 425.3349609375, 0.0019357952987775207], "14": [294.45513916015625, 441.5568542480469, 0.003372157458215952], "15": [472.9891357421875, 480.0, 0.00023323124332819134], "16": [261.9278564453125, 480.0, 0.0003461212618276477]}} +{"t": 47.848155, "tracked": true, "track_id": 1, "bbox": [104.63932037353516, 65.32792663574219, 591.593994140625, 480.0], "det_conf": 0.9090670347213745, "mean_kpt_conf": 0.9165031584826383, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8913554880486796, "right_lift": -0.6576848750927137, "left_bend": 0.07873227921860537, "right_bend": 0.7689937968308584}, "keypoints": {"0": [353.65753173828125, 157.144287109375, 0.999038577079773], "1": [371.757080078125, 135.63339233398438, 0.9975392818450928], "2": [333.1927490234375, 136.34860229492188, 0.9967151880264282], "3": [394.560546875, 148.14720153808594, 0.9020997285842896], "4": [301.82037353515625, 148.9786376953125, 0.8850464820861816], "5": [451.224853515625, 253.20083618164062, 0.9887922406196594], "6": [237.40921020507812, 254.81161499023438, 0.9967676401138306], "7": [524.8670654296875, 398.007080078125, 0.820825457572937], "8": [122.45797729492188, 355.1731872558594, 0.9431812763214111], "9": [543.4714965820312, 480.0, 0.6385871171951294], "10": [140.2088165283203, 216.5166778564453, 0.9129417538642883], "11": [431.02447509765625, 470.8792724609375, 0.18665620684623718], "12": [290.2615966796875, 476.7335510253906, 0.2719041705131531], "13": [496.7637634277344, 427.21221923828125, 0.002012459561228752], "14": [295.2360534667969, 445.2637939453125, 0.00347371818497777], "15": [470.2406921386719, 480.0, 0.00023285616771318018], "16": [261.8941650390625, 480.0, 0.0003437224659137428]}} +{"t": 47.909407, "tracked": true, "track_id": 1, "bbox": [93.12958526611328, 65.0015640258789, 590.7301635742188, 480.0], "det_conf": 0.904231607913971, "mean_kpt_conf": 0.9123392376032743, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8863301467335247, "right_lift": -0.6552735738139592, "left_bend": 0.07480879007580052, "right_bend": 0.7487580011952027}, "keypoints": {"0": [353.0536804199219, 156.86810302734375, 0.9990280866622925], "1": [371.66827392578125, 135.71795654296875, 0.9976372718811035], "2": [332.946044921875, 135.90780639648438, 0.9966526627540588], "3": [394.88592529296875, 149.06863403320312, 0.9127002358436584], "4": [302.1876220703125, 148.8091278076172, 0.8791663646697998], "5": [450.9140930175781, 254.2513427734375, 0.9882922768592834], "6": [238.2518310546875, 255.4925994873047, 0.9967190623283386], "7": [526.4113159179688, 398.7603759765625, 0.8079735636711121], "8": [122.14625549316406, 356.20977783203125, 0.9396008849143982], "9": [546.8455810546875, 480.0, 0.6136119365692139], "10": [131.39088439941406, 218.3368377685547, 0.9043492674827576], "11": [428.0331726074219, 470.1833801269531, 0.17135800421237946], "12": [287.968505859375, 475.2375183105469, 0.2540030777454376], "13": [492.83551025390625, 424.27630615234375, 0.001961922738701105], "14": [290.18597412109375, 441.11474609375, 0.003410595003515482], "15": [467.625732421875, 478.1171569824219, 0.00024216793826781213], "16": [255.86471557617188, 476.8958740234375, 0.0003603235527407378]}} +{"t": 47.946798, "tracked": true, "track_id": 1, "bbox": [89.10069274902344, 65.01625061035156, 589.2106323242188, 480.0], "det_conf": 0.904160737991333, "mean_kpt_conf": 0.9137235067107461, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8881139324606152, "right_lift": -0.6559883065336618, "left_bend": 0.08330587973649303, "right_bend": 0.7415015639062473}, "keypoints": {"0": [353.1986999511719, 156.5740509033203, 0.9990628361701965], "1": [371.73724365234375, 135.42640686035156, 0.9976892471313477], "2": [332.9440002441406, 135.72265625, 0.9967721104621887], "3": [394.7683410644531, 148.64080810546875, 0.9099265933036804], "4": [301.8016357421875, 148.81271362304688, 0.8819721937179565], "5": [450.7283935546875, 251.79852294921875, 0.9885051846504211], "6": [237.83274841308594, 255.2786407470703, 0.9967652559280396], "7": [525.1027221679688, 395.5093994140625, 0.8161583542823792], "8": [120.02047729492188, 357.6719055175781, 0.9417164921760559], "9": [543.6293334960938, 480.0, 0.6163579225540161], "10": [125.96559143066406, 220.16543579101562, 0.906032383441925], "11": [428.79254150390625, 468.5976257324219, 0.180904358625412], "12": [287.9464111328125, 474.38543701171875, 0.26517370343208313], "13": [493.17010498046875, 424.4832763671875, 0.0019716573879122734], "14": [285.655029296875, 442.4403076171875, 0.003368019126355648], "15": [466.82037353515625, 480.0, 0.00023509236052632332], "16": [246.49826049804688, 479.1292419433594, 0.0003441988956183195]}} +{"t": 48.009255, "tracked": true, "track_id": 1, "bbox": [78.65117645263672, 64.78548431396484, 587.5819091796875, 479.97955322265625], "det_conf": 0.900101363658905, "mean_kpt_conf": 0.9154173189943487, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8910606948211549, "right_lift": -0.6534622207195163, "left_bend": 0.07180572271923796, "right_bend": 0.7314130612239106}, "keypoints": {"0": [352.8158264160156, 157.02967834472656, 0.9990684390068054], "1": [371.6340026855469, 135.373291015625, 0.9977691173553467], "2": [332.69586181640625, 135.7373046875, 0.9966791868209839], "3": [395.2664489746094, 147.71519470214844, 0.9169952273368835], "4": [301.9407958984375, 147.87631225585938, 0.8760999441146851], "5": [451.50372314453125, 252.8133544921875, 0.9888773560523987], "6": [237.22227478027344, 255.46160888671875, 0.996896505355835], "7": [525.2525634765625, 397.5963134765625, 0.8197336196899414], "8": [118.73652648925781, 357.74713134765625, 0.9424372911453247], "9": [545.9022216796875, 480.0, 0.627307653427124], "10": [120.77166748046875, 220.7684326171875, 0.9077261686325073], "11": [427.0772705078125, 470.268798828125, 0.180754616856575], "12": [285.41943359375, 475.5101013183594, 0.2649403512477875], "13": [489.96551513671875, 424.7790832519531, 0.0019827557262033224], "14": [281.1968078613281, 442.3846130371094, 0.0033609229139983654], "15": [463.498046875, 478.3378601074219, 0.0002353248855797574], "16": [243.83787536621094, 477.6904296875, 0.0003434384416323155]}} +{"t": 48.077852, "tracked": true, "track_id": 1, "bbox": [75.00923156738281, 64.65528869628906, 589.3744506835938, 479.9080505371094], "det_conf": 0.8987476825714111, "mean_kpt_conf": 0.9141437248750166, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8875895427172203, "right_lift": -0.6605674575707932, "left_bend": 0.07913738646139402, "right_bend": 0.7332677038553356}, "keypoints": {"0": [352.3268127441406, 156.87660217285156, 0.9991124272346497], "1": [371.2047119140625, 135.29879760742188, 0.9978234767913818], "2": [332.4247131347656, 135.33148193359375, 0.9968294501304626], "3": [394.84820556640625, 147.98165893554688, 0.9160016179084778], "4": [301.64642333984375, 147.35093688964844, 0.8759158253669739], "5": [451.79742431640625, 254.271728515625, 0.9889829754829407], "6": [237.0747833251953, 255.76690673828125, 0.9968666434288025], "7": [527.7938232421875, 400.7077941894531, 0.8153977394104004], "8": [118.78665161132812, 359.84356689453125, 0.9408000707626343], "9": [546.3673706054688, 480.0, 0.6221795082092285], "10": [120.334228515625, 222.38177490234375, 0.905671238899231], "11": [426.3008728027344, 470.04736328125, 0.17148108780384064], "12": [283.9208068847656, 474.4761047363281, 0.25225532054901123], "13": [490.3041687011719, 425.33160400390625, 0.0018919125432148576], "14": [278.2698059082031, 441.3312072753906, 0.0032074996270239353], "15": [465.58038330078125, 479.1080017089844, 0.00022378859284799546], "16": [239.1339111328125, 476.5414733886719, 0.00032607436878606677]}} +{"t": 48.142044, "tracked": true, "track_id": 1, "bbox": [72.55213928222656, 64.46712493896484, 588.6165161132812, 479.8449401855469], "det_conf": 0.8969779014587402, "mean_kpt_conf": 0.9164458242329684, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8921397612895675, "right_lift": -0.6543736795252602, "left_bend": 0.06825818099371184, "right_bend": 0.7308385057612127}, "keypoints": {"0": [352.2744140625, 156.7115478515625, 0.9991011619567871], "1": [370.9238586425781, 135.172119140625, 0.9978138208389282], "2": [332.1780700683594, 135.48641967773438, 0.9967446327209473], "3": [394.3764343261719, 148.02700805664062, 0.9167841672897339], "4": [301.3345947265625, 148.13632202148438, 0.8756857514381409], "5": [451.22998046875, 254.347900390625, 0.9891964197158813], "6": [236.31082153320312, 256.2974853515625, 0.9969435334205627], "7": [525.0126342773438, 400.0547180175781, 0.8239033222198486], "8": [118.41543579101562, 358.3215026855469, 0.9432163834571838], "9": [545.7923583984375, 480.0, 0.6326696276664734], "10": [120.06594848632812, 219.00320434570312, 0.9088452458381653], "11": [426.440673828125, 471.02484130859375, 0.17966952919960022], "12": [283.9909362792969, 476.0083312988281, 0.2622288763523102], "13": [490.97412109375, 424.68707275390625, 0.0019452464766800404], "14": [278.95269775390625, 442.0184020996094, 0.003277862910181284], "15": [466.44378662109375, 477.98602294921875, 0.00022782747691962868], "16": [242.0072021484375, 477.5413818359375, 0.000331257440848276]}} +{"t": 48.207728, "tracked": true, "track_id": 1, "bbox": [76.13230895996094, 64.4350814819336, 587.6453247070312, 479.8199462890625], "det_conf": 0.8977480530738831, "mean_kpt_conf": 0.9196041930805553, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.890193172423838, "right_lift": -0.6536634277776279, "left_bend": 0.07021752650049634, "right_bend": 0.7273956734579887}, "keypoints": {"0": [352.0849304199219, 156.60494995117188, 0.9991177916526794], "1": [370.3249816894531, 134.5725860595703, 0.9979146122932434], "2": [331.7478332519531, 135.71694946289062, 0.9966674447059631], "3": [394.1370849609375, 146.542236328125, 0.921521782875061], "4": [301.53302001953125, 148.59039306640625, 0.8685135841369629], "5": [451.8014831542969, 252.32357788085938, 0.9895097017288208], "6": [238.68763732910156, 256.2010498046875, 0.9969825148582458], "7": [526.427734375, 398.14056396484375, 0.8337425589561462], "8": [119.17654418945312, 359.42718505859375, 0.9459285736083984], "9": [547.5421142578125, 480.0, 0.6517875790596008], "10": [119.44769287109375, 221.74822998046875, 0.9139599800109863], "11": [427.35418701171875, 469.79156494140625, 0.18554522097110748], "12": [285.9232482910156, 475.2262878417969, 0.26891788840293884], "13": [489.5719299316406, 423.90594482421875, 0.0019765114411711693], "14": [276.7611389160156, 441.9940490722656, 0.003306769533082843], "15": [464.42132568359375, 476.55657958984375, 0.00022563395032193512], "16": [235.06654357910156, 477.81494140625, 0.0003272184985689819]}} +{"t": 48.244956, "tracked": true, "track_id": 1, "bbox": [77.94210815429688, 64.5444564819336, 587.9237060546875, 479.8421325683594], "det_conf": 0.8972427845001221, "mean_kpt_conf": 0.9155316569588401, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.892870615533953, "right_lift": -0.6552964702099376, "left_bend": 0.08537055946053099, "right_bend": 0.7262703714695476}, "keypoints": {"0": [351.78753662109375, 156.69793701171875, 0.9990831613540649], "1": [370.2385559082031, 135.2001953125, 0.9977468848228455], "2": [331.6871337890625, 135.62118530273438, 0.9967167973518372], "3": [393.64007568359375, 147.9514617919922, 0.9169014692306519], "4": [301.0947570800781, 148.3463134765625, 0.875352144241333], "5": [451.36920166015625, 254.49632263183594, 0.9892908930778503], "6": [237.65487670898438, 256.22406005859375, 0.9969410300254822], "7": [524.9481811523438, 400.3869934082031, 0.8197258710861206], "8": [120.96430969238281, 357.45489501953125, 0.9427171945571899], "9": [540.9967651367188, 480.0, 0.6282001733779907], "10": [120.45632934570312, 221.11056518554688, 0.908172607421875], "11": [427.3173828125, 471.7241516113281, 0.18613097071647644], "12": [286.0368347167969, 476.3192138671875, 0.2719057500362396], "13": [490.9344787597656, 427.769775390625, 0.0019990126602351665], "14": [283.1493225097656, 444.09100341796875, 0.0034091672860085964], "15": [462.7796936035156, 479.29150390625, 0.00023232305829878896], "16": [244.61888122558594, 478.0474853515625, 0.0003410761128179729]}} +{"t": 48.278345, "tracked": true, "track_id": 1, "bbox": [80.31459045410156, 64.53031158447266, 588.8853759765625, 479.8594665527344], "det_conf": 0.900516927242279, "mean_kpt_conf": 0.9161926074461504, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8892620952927077, "right_lift": -0.6518414460056885, "left_bend": 0.06847839591667028, "right_bend": 0.7217292135111116}, "keypoints": {"0": [351.4583740234375, 156.5123291015625, 0.9990935325622559], "1": [370.0220947265625, 134.9727020263672, 0.9978222846984863], "2": [331.5147399902344, 135.38873291015625, 0.996649444103241], "3": [393.7249755859375, 147.6345672607422, 0.9211758971214294], "4": [301.31866455078125, 147.9028778076172, 0.8701983094215393], "5": [450.93841552734375, 254.56707763671875, 0.98932284116745], "6": [238.35887145996094, 256.20477294921875, 0.9970324039459229], "7": [525.738525390625, 399.99163818359375, 0.822943925857544], "8": [121.10887145996094, 356.986572265625, 0.944592297077179], "9": [547.0169677734375, 480.0, 0.6300778985023499], "10": [119.26676940917969, 219.80352783203125, 0.9092098474502563], "11": [427.85858154296875, 471.80889892578125, 0.19171786308288574], "12": [287.21856689453125, 476.5174560546875, 0.2808363735675812], "13": [491.81964111328125, 429.73052978515625, 0.001978000858798623], "14": [284.0438537597656, 446.30169677734375, 0.003391935955733061], "15": [468.10638427734375, 479.1732177734375, 0.00022448229719884694], "16": [247.7957305908203, 478.394287109375, 0.00033206911757588387]}} +{"t": 48.33839, "tracked": true, "track_id": 1, "bbox": [85.42508697509766, 64.4297103881836, 589.6488647460938, 479.90704345703125], "det_conf": 0.903969943523407, "mean_kpt_conf": 0.9160732897845182, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8859700193602857, "right_lift": -0.6562772031683889, "left_bend": 0.08059188367495479, "right_bend": 0.7248836182679439}, "keypoints": {"0": [351.9995422363281, 157.26235961914062, 0.9990923404693604], "1": [370.2298583984375, 135.9265594482422, 0.997772753238678], "2": [332.01824951171875, 136.4542236328125, 0.9966962337493896], "3": [393.3968811035156, 148.50286865234375, 0.9159880876541138], "4": [301.5937805175781, 149.1491241455078, 0.8731284737586975], "5": [451.4232482910156, 252.54542541503906, 0.9892080426216125], "6": [239.42117309570312, 256.0279541015625, 0.996964156627655], "7": [526.716064453125, 396.3907165527344, 0.825404167175293], "8": [123.77818298339844, 356.61358642578125, 0.9454635977745056], "9": [546.2069091796875, 480.0, 0.6277909278869629], "10": [122.49319458007812, 219.64553833007812, 0.9092974066734314], "11": [431.2801208496094, 469.7607421875, 0.1954621523618698], "12": [290.822998046875, 475.135498046875, 0.28530171513557434], "13": [493.4287414550781, 427.35894775390625, 0.0020273977424949408], "14": [284.8924560546875, 444.7788391113281, 0.0034626813139766455], "15": [467.8035888671875, 480.0, 0.0002304232184542343], "16": [246.52178955078125, 479.1599426269531, 0.00033911599894054234]}} +{"t": 48.37289, "tracked": true, "track_id": 1, "bbox": [86.64122009277344, 64.22270202636719, 589.1841430664062, 479.914306640625], "det_conf": 0.9049955010414124, "mean_kpt_conf": 0.9143949909643694, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.887647946551451, "right_lift": -0.6544503143280372, "left_bend": 0.08093016887397315, "right_bend": 0.7274769240571972}, "keypoints": {"0": [351.857177734375, 157.00064086914062, 0.9990575909614563], "1": [370.39398193359375, 135.9957275390625, 0.9978131055831909], "2": [331.947998046875, 136.43209838867188, 0.9965723752975464], "3": [394.05072021484375, 149.3570098876953, 0.924024224281311], "4": [301.8516540527344, 149.82284545898438, 0.8685980439186096], "5": [452.2644348144531, 253.3388671875, 0.9890551567077637], "6": [238.7209930419922, 256.3882751464844, 0.9969823956489563], "7": [526.7899169921875, 396.9851989746094, 0.8201737999916077], "8": [122.76220703125, 356.7569580078125, 0.9445728659629822], "9": [545.7318115234375, 480.0, 0.616191565990448], "10": [122.92347717285156, 220.59954833984375, 0.9053037762641907], "11": [430.2738037109375, 469.71392822265625, 0.1955946385860443], "12": [288.7667541503906, 474.8315734863281, 0.2875034511089325], "13": [493.23602294921875, 427.24713134765625, 0.002018566243350506], "14": [283.011474609375, 444.30718994140625, 0.0034935669973492622], "15": [467.12890625, 479.4434814453125, 0.00023573653015773743], "16": [244.70242309570312, 478.0204772949219, 0.0003516816068440676]}} +{"t": 48.438439, "tracked": true, "track_id": 1, "bbox": [89.78197479248047, 64.21375274658203, 588.7860107421875, 479.9102478027344], "det_conf": 0.9047541618347168, "mean_kpt_conf": 0.917078738862818, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8950096802376727, "right_lift": -0.6570980654595453, "left_bend": 0.07414408049377169, "right_bend": 0.7266298796038398}, "keypoints": {"0": [352.1958312988281, 156.15899658203125, 0.9990471005439758], "1": [370.7879943847656, 135.1956024169922, 0.9978358149528503], "2": [332.41363525390625, 135.83364868164062, 0.9964404702186584], "3": [394.8102722167969, 148.50660705566406, 0.929763913154602], "4": [302.9176025390625, 149.34683227539062, 0.8636172413825989], "5": [452.48291015625, 253.4755096435547, 0.9895506501197815], "6": [240.21945190429688, 256.2337951660156, 0.9972153902053833], "7": [524.662353515625, 398.3063049316406, 0.8290188312530518], "8": [125.9708251953125, 355.82525634765625, 0.9487770199775696], "9": [543.7398071289062, 480.0, 0.6272101998329163], "10": [125.28916931152344, 219.0518035888672, 0.9093894958496094], "11": [429.9378967285156, 473.2172546386719, 0.2222740799188614], "12": [289.3643493652344, 478.1920166015625, 0.32426199316978455], "13": [492.1365051269531, 434.75469970703125, 0.0021023822482675314], "14": [284.91204833984375, 451.92510986328125, 0.00367317209020257], "15": [466.70220947265625, 480.0, 0.00023260941088665277], "16": [248.96731567382812, 480.0, 0.0003507982473820448]}} +{"t": 48.50619, "tracked": true, "track_id": 1, "bbox": [94.8690414428711, 64.38861083984375, 587.5895385742188, 479.88726806640625], "det_conf": 0.9050998091697693, "mean_kpt_conf": 0.9181745106523688, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8988751518317027, "right_lift": -0.6723663339067528, "left_bend": 0.08490437856963444, "right_bend": 0.7347101526645697}, "keypoints": {"0": [353.80487060546875, 156.03988647460938, 0.9990748167037964], "1": [372.6184997558594, 134.81698608398438, 0.9977960586547852], "2": [333.62945556640625, 135.2379150390625, 0.9965820908546448], "3": [396.52984619140625, 148.30569458007812, 0.9242066740989685], "4": [303.26068115234375, 148.7064208984375, 0.8661351203918457], "5": [454.1506652832031, 254.46585083007812, 0.9895567297935486], "6": [241.41094970703125, 255.6791229248047, 0.9971650242805481], "7": [526.8450927734375, 403.58154296875, 0.8276936411857605], "8": [127.54888916015625, 359.10400390625, 0.9485610127449036], "9": [541.2936401367188, 480.0, 0.6399021744728088], "10": [127.54374694824219, 221.16143798828125, 0.9132462739944458], "11": [431.10638427734375, 474.9051513671875, 0.20713099837303162], "12": [290.0989685058594, 478.88153076171875, 0.30456918478012085], "13": [491.3616638183594, 434.361083984375, 0.002022073371335864], "14": [283.2403259277344, 449.3941345214844, 0.0035168398171663284], "15": [465.51641845703125, 480.0, 0.00022200131206773221], "16": [245.21331787109375, 480.0, 0.00033272826112806797]}} +{"t": 48.573772, "tracked": true, "track_id": 1, "bbox": [99.47650146484375, 64.54368591308594, 589.8046875, 479.8282470703125], "det_conf": 0.9039763808250427, "mean_kpt_conf": 0.9178218082948164, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8938594644800133, "right_lift": -0.6818029441838095, "left_bend": 0.09947155359836313, "right_bend": 0.7372175424284518}, "keypoints": {"0": [356.0517883300781, 156.68484497070312, 0.9990221261978149], "1": [375.3959045410156, 135.17373657226562, 0.9976736903190613], "2": [336.359375, 135.253173828125, 0.9964215755462646], "3": [399.72515869140625, 147.802490234375, 0.9226527214050293], "4": [306.61328125, 147.27291870117188, 0.8634941577911377], "5": [455.7549743652344, 252.52435302734375, 0.9888717532157898], "6": [244.8855743408203, 256.0971984863281, 0.9970951080322266], "7": [528.98779296875, 398.52691650390625, 0.8224900960922241], "8": [133.11669921875, 360.2675476074219, 0.9478119611740112], "9": [541.502685546875, 480.0, 0.6455530524253845], "10": [132.4208984375, 220.6485137939453, 0.9149536490440369], "11": [431.279296875, 474.3438415527344, 0.19858196377754211], "12": [291.7799072265625, 479.1265869140625, 0.294874906539917], "13": [490.8258361816406, 431.7879638671875, 0.0020650485530495644], "14": [288.177734375, 448.0003967285156, 0.003628850681707263], "15": [461.89874267578125, 480.0, 0.00023217334819491953], "16": [250.19351196289062, 479.1784362792969, 0.0003500813036225736]}} +{"t": 48.637823, "tracked": true, "track_id": 1, "bbox": [101.47879791259766, 64.82263946533203, 593.676513671875, 479.760986328125], "det_conf": 0.890234649181366, "mean_kpt_conf": 0.9355100664225492, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8954963718686575, "right_lift": -0.7015852958414996, "left_bend": 0.2504540828964068, "right_bend": 0.7401560030968767}, "keypoints": {"0": [358.7348327636719, 157.6806640625, 0.9993089437484741], "1": [379.3415832519531, 135.10556030273438, 0.9983925223350525], "2": [338.30438232421875, 135.15432739257812, 0.9969007968902588], "3": [406.1763610839844, 146.19497680664062, 0.9421384930610657], "4": [307.97998046875, 146.0420684814453, 0.8357739448547363], "5": [466.5821838378906, 249.06170654296875, 0.9918972253799438], "6": [247.6042938232422, 256.1379699707031, 0.9977978467941284], "7": [539.1688232421875, 395.10894775390625, 0.8696240782737732], "8": [131.63973999023438, 370.3123779296875, 0.9585767984390259], "9": [518.215087890625, 457.17816162109375, 0.7575802206993103], "10": [128.3180694580078, 226.83746337890625, 0.9426198601722717], "11": [441.9794616699219, 480.0, 0.20677456259727478], "12": [295.1753234863281, 480.0, 0.2967940866947174], "13": [493.810791015625, 432.2576904296875, 0.0012718162033706903], "14": [273.74554443359375, 443.004150390625, 0.0020879979711025953], "15": [462.9219970703125, 480.0, 0.00012600234185811132], "16": [224.49363708496094, 470.22943115234375, 0.00018325400014873594]}} +{"t": 48.702238, "tracked": true, "track_id": 1, "bbox": [111.34918212890625, 64.84033203125, 599.93505859375, 479.6718444824219], "det_conf": 0.8873012661933899, "mean_kpt_conf": 0.9345190579240973, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9108495470170356, "right_lift": -0.7053176992794472, "left_bend": 0.24055806960374082, "right_bend": 0.7522301182675222}, "keypoints": {"0": [364.299560546875, 157.498291015625, 0.9993115663528442], "1": [384.5837707519531, 135.1419219970703, 0.9983057975769043], "2": [343.8544006347656, 134.9492950439453, 0.997048556804657], "3": [410.81365966796875, 146.70538330078125, 0.9341869354248047], "4": [313.0942687988281, 145.98654174804688, 0.845842719078064], "5": [469.5641784667969, 252.36538696289062, 0.9913986921310425], "6": [252.5660400390625, 255.08839416503906, 0.9976746439933777], "7": [536.4715576171875, 400.01953125, 0.8601471781730652], "8": [139.07810974121094, 368.00421142578125, 0.9570684432983398], "9": [518.874267578125, 451.348388671875, 0.7564848065376282], "10": [140.4191131591797, 227.33999633789062, 0.942240297794342], "11": [442.71356201171875, 480.0, 0.19908930361270905], "12": [296.9925842285156, 480.0, 0.28902706503868103], "13": [492.8772277832031, 432.57293701171875, 0.0013356627896428108], "14": [274.76513671875, 441.53125, 0.0022067029494792223], "15": [462.9884948730469, 480.0, 0.00013359492004383355], "16": [228.0835418701172, 471.0003662109375, 0.0001937429915415123]}} +{"t": 48.766758, "tracked": true, "track_id": 1, "bbox": [119.90220642089844, 65.33399200439453, 608.0228271484375, 479.65728759765625], "det_conf": 0.8672115206718445, "mean_kpt_conf": 0.9351901628754355, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9059906833514341, "right_lift": -0.7097316019088474, "left_bend": 0.2216709468861519, "right_bend": 0.7326461309085253}, "keypoints": {"0": [371.0376281738281, 157.80023193359375, 0.999292254447937], "1": [391.77899169921875, 135.19754028320312, 0.998248815536499], "2": [350.1856994628906, 135.51438903808594, 0.997031569480896], "3": [418.80181884765625, 146.58432006835938, 0.9331306219100952], "4": [319.1617431640625, 147.18467712402344, 0.845425546169281], "5": [477.84130859375, 249.89816284179688, 0.9910548329353333], "6": [260.19244384765625, 256.6340026855469, 0.9977902173995972], "7": [544.2857055664062, 392.11016845703125, 0.861365795135498], "8": [152.68873596191406, 364.9403076171875, 0.9612410068511963], "9": [529.8306884765625, 446.5975341796875, 0.7581609487533569], "10": [144.45916748046875, 223.790283203125, 0.9443501830101013], "11": [451.12298583984375, 480.0, 0.23652715981006622], "12": [304.9052734375, 480.0, 0.3432106673717499], "13": [499.11163330078125, 437.82916259765625, 0.0014509008033201098], "14": [281.81353759765625, 449.572265625, 0.002476436784490943], "15": [465.2147521972656, 480.0, 0.00013480830239132047], "16": [236.39630126953125, 477.8466796875, 0.00020000831864308566]}} +{"t": 48.801404, "tracked": true, "track_id": 1, "bbox": [124.59799194335938, 65.64728546142578, 610.7339477539062, 479.55462646484375], "det_conf": 0.8853185176849365, "mean_kpt_conf": 0.882245255013307, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9044137965949289, "right_lift": -0.6791997677720817, "left_bend": 0.051913581579838566, "right_bend": 0.7231168549491367}, "keypoints": {"0": [374.5559997558594, 157.82467651367188, 0.9988971948623657], "1": [394.7803039550781, 135.9103546142578, 0.9977210164070129], "2": [354.843994140625, 136.33026123046875, 0.9954376816749573], "3": [420.65887451171875, 146.36260986328125, 0.9343679547309875], "4": [325.9958190917969, 146.60635375976562, 0.8488664031028748], "5": [470.1275329589844, 245.11944580078125, 0.9899185299873352], "6": [264.7880859375, 255.31732177734375, 0.997056245803833], "7": [534.006591796875, 380.5284118652344, 0.8745893239974976], "8": [155.77352905273438, 356.19927978515625, 0.9526124596595764], "9": [562.3626708984375, 480.0, 0.7119714021682739], "10": [149.4366455078125, 217.7227020263672, 0.9223873019218445], "11": [447.8056335449219, 470.48162841796875, 0.27097997069358826], "12": [310.80767822265625, 479.12359619140625, 0.3631175458431244], "13": [508.84136962890625, 430.39923095703125, 0.0025695464573800564], "14": [303.3750915527344, 454.67474365234375, 0.003987864591181278], "15": [485.50823974609375, 480.0, 0.0002607742790132761], "16": [270.970947265625, 480.0, 0.0003610048443078995]}} +{"t": 48.869892, "tracked": true, "track_id": 1, "bbox": [137.339111328125, 66.08148193359375, 615.3768920898438, 479.542724609375], "det_conf": 0.8945077657699585, "mean_kpt_conf": 0.9261742830276489, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9038740320916832, "right_lift": -0.6869459143042668, "left_bend": 0.05239686358329147, "right_bend": 0.751032112274895}, "keypoints": {"0": [382.4722900390625, 156.67333984375, 0.998923122882843], "1": [401.82379150390625, 135.6361083984375, 0.997681736946106], "2": [362.3632507324219, 136.13661193847656, 0.995829164981842], "3": [426.3043212890625, 148.57936096191406, 0.9262585639953613], "4": [332.9109191894531, 149.38694763183594, 0.8608053922653198], "5": [476.70703125, 246.21380615234375, 0.9889432191848755], "6": [272.3956604003906, 256.197021484375, 0.9969847798347473], "7": [541.2459106445312, 382.57470703125, 0.8617227077484131], "8": [164.47323608398438, 358.21435546875, 0.9543034434318542], "9": [568.9432983398438, 479.82965087890625, 0.6850705742835999], "10": [168.9094696044922, 216.81097412109375, 0.921394407749176], "11": [456.2342834472656, 471.8106689453125, 0.24535229802131653], "12": [319.1932678222656, 480.0, 0.34332218766212463], "13": [516.178466796875, 425.51458740234375, 0.0023713659029453993], "14": [306.614013671875, 449.40771484375, 0.0038937425706535578], "15": [492.182861328125, 480.0, 0.0002623701293487102], "16": [267.3916015625, 480.0, 0.0003760618856176734]}} +{"t": 48.939274, "tracked": true, "track_id": 1, "bbox": [146.27490234375, 67.34708404541016, 618.661376953125, 479.2789306640625], "det_conf": 0.9101109504699707, "mean_kpt_conf": 0.8831982587774595, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9091025549571161, "right_lift": -0.7045244969003324, "left_bend": 0.11886798989211149, "right_bend": 0.7435006831198342}, "keypoints": {"0": [389.49383544921875, 158.86338806152344, 0.9990825653076172], "1": [409.7681884765625, 137.70042419433594, 0.9979262351989746], "2": [369.12481689453125, 137.57070922851562, 0.9962112903594971], "3": [435.76910400390625, 150.02261352539062, 0.9355440139770508], "4": [339.67950439453125, 149.6615447998047, 0.8445481657981873], "5": [486.5106506347656, 250.41493225097656, 0.9901842474937439], "6": [284.16900634765625, 255.74935913085938, 0.9974560141563416], "7": [549.3255004882812, 387.498291015625, 0.8605730533599854], "8": [177.86285400390625, 361.2832946777344, 0.9568198323249817], "9": [552.9318237304688, 451.5580139160156, 0.7282713055610657], "10": [175.5819854736328, 225.31103515625, 0.9342262148857117], "11": [464.11004638671875, 480.0, 0.25235944986343384], "12": [328.1317443847656, 480.0, 0.3575361669063568], "13": [517.9436645507812, 436.7551574707031, 0.001649505808018148], "14": [312.96051025390625, 450.0684509277344, 0.0027604587376117706], "15": [497.14996337890625, 477.4666442871094, 0.00016973800666164607], "16": [273.8558044433594, 472.461181640625, 0.00024864435545168817]}} +{"t": 49.000157, "tracked": true, "track_id": 1, "bbox": [161.8152618408203, 67.57955169677734, 628.41943359375, 479.6932678222656], "det_conf": 0.9251292943954468, "mean_kpt_conf": 0.9214056080037897, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.915852904143285, "right_lift": -0.7299931842100548, "left_bend": 0.02890206270276755, "right_bend": 0.7568833364184961}, "keypoints": {"0": [397.2722473144531, 159.26841735839844, 0.9987691044807434], "1": [417.6354064941406, 138.3239288330078, 0.9973626732826233], "2": [377.3070373535156, 137.837890625, 0.9953872561454773], "3": [442.780029296875, 150.40386962890625, 0.9236710667610168], "4": [347.5672912597656, 148.88967895507812, 0.862850546836853], "5": [488.7517395019531, 249.8376007080078, 0.9890095591545105], "6": [289.17523193359375, 256.53314208984375, 0.9963690042495728], "7": [549.4451904296875, 388.279296875, 0.8515899181365967], "8": [188.9520721435547, 363.5808410644531, 0.9369208216667175], "9": [576.8132934570312, 470.21417236328125, 0.68120276927948], "10": [187.4093780517578, 226.93414306640625, 0.9023289680480957], "11": [466.7524108886719, 468.24896240234375, 0.23142994940280914], "12": [333.260498046875, 475.32611083984375, 0.30866971611976624], "13": [525.985595703125, 424.9094543457031, 0.0028026429936289787], "14": [324.01995849609375, 445.61773681640625, 0.0041797105222940445], "15": [507.4956359863281, 472.8575744628906, 0.0003277582873124629], "16": [295.8394470214844, 473.33270263671875, 0.0004367382498458028]}} +{"t": 49.066987, "tracked": true, "track_id": 1, "bbox": [173.74349975585938, 67.41836547851562, 632.91552734375, 479.7808532714844], "det_conf": 0.9177390933036804, "mean_kpt_conf": 0.8713599393765131, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9107693590700026, "right_lift": -0.7263993340834876, "left_bend": 0.02447038255831677, "right_bend": 0.761761504212586}, "keypoints": {"0": [404.5082092285156, 159.86944580078125, 0.9987825751304626], "1": [424.2084655761719, 138.99220275878906, 0.9974157810211182], "2": [384.6376647949219, 138.73654174804688, 0.995470404624939], "3": [449.39111328125, 151.48623657226562, 0.9289779663085938], "4": [355.4036865234375, 150.53036499023438, 0.8567887544631958], "5": [497.3448791503906, 255.3466796875, 0.9887500405311584], "6": [299.15777587890625, 259.0172119140625, 0.9966219663619995], "7": [559.6640014648438, 392.8042297363281, 0.8385137319564819], "8": [201.8968963623047, 361.8151550292969, 0.9420499205589294], "9": [589.7554931640625, 475.5543212890625, 0.6550674438476562], "10": [203.09127807617188, 233.11033630371094, 0.9023065567016602], "11": [473.3146667480469, 472.7635803222656, 0.25828075408935547], "12": [339.8516845703125, 477.925537109375, 0.3555741310119629], "13": [533.5475463867188, 439.43084716796875, 0.0026552872732281685], "14": [328.09814453125, 457.5274658203125, 0.004292232915759087], "15": [516.3724975585938, 477.1310729980469, 0.0002984779130201787], "16": [295.75579833984375, 478.39068603515625, 0.00042157486313953996]}} +{"t": 49.130566, "tracked": true, "track_id": 1, "bbox": [183.85165405273438, 66.61640930175781, 635.779296875, 480.0], "det_conf": 0.9291096925735474, "mean_kpt_conf": 0.8787830794850985, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8969171885298519, "right_lift": -0.7346921314105019, "left_bend": 0.07732111103504985, "right_bend": 0.7674393459028639}, "keypoints": {"0": [409.9002685546875, 160.2515869140625, 0.9988844990730286], "1": [430.0161437988281, 140.14625549316406, 0.9975206255912781], "2": [389.974853515625, 139.3265380859375, 0.9958133101463318], "3": [455.1427307128906, 154.74864196777344, 0.9324964880943298], "4": [360.2332458496094, 152.79310607910156, 0.855778157711029], "5": [505.69110107421875, 257.49273681640625, 0.9898709654808044], "6": [303.29364013671875, 261.08294677734375, 0.9970282912254333], "7": [573.986083984375, 396.016357421875, 0.8522828817367554], "8": [206.14474487304688, 366.2929382324219, 0.9498584270477295], "9": [591.5239868164062, 476.27447509765625, 0.6871010661125183], "10": [208.05616760253906, 238.6422119140625, 0.9151971936225891], "11": [480.7205810546875, 480.0, 0.27071431279182434], "12": [344.9762268066406, 480.0, 0.37356504797935486], "13": [540.152099609375, 445.21466064453125, 0.002391980029642582], "14": [335.97930908203125, 460.0087585449219, 0.0039741285145282745], "15": [519.7266845703125, 480.0, 0.0002491838240530342], "16": [301.75811767578125, 480.0, 0.00036089526838622987]}} +{"t": 49.195739, "tracked": true, "track_id": 1, "bbox": [189.42808532714844, 66.49629211425781, 637.1950073242188, 480.0], "det_conf": 0.9377003312110901, "mean_kpt_conf": 0.8700756703813871, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8996145898441603, "right_lift": -0.7465305550751404, "left_bend": 0.09200754414400591, "right_bend": 0.7653251887149991}, "keypoints": {"0": [414.314208984375, 161.29763793945312, 0.9988773465156555], "1": [434.6056213378906, 140.6054229736328, 0.9974337220191956], "2": [393.9814758300781, 140.0552215576172, 0.9959911704063416], "3": [459.934814453125, 154.50436401367188, 0.926581084728241], "4": [363.870849609375, 152.97421264648438, 0.857054591178894], "5": [511.4217529296875, 256.9813537597656, 0.9886004328727722], "6": [310.4866638183594, 260.1783142089844, 0.9968506693840027], "7": [580.7095947265625, 399.7212829589844, 0.8234447836875916], "8": [215.67498779296875, 366.5579528808594, 0.9462854862213135], "9": [593.4215087890625, 477.084228515625, 0.6435286402702332], "10": [214.47032165527344, 236.8685760498047, 0.9080488681793213], "11": [490.30511474609375, 479.28253173828125, 0.24916908144950867], "12": [355.9518127441406, 480.0, 0.3582112491130829], "13": [547.711181640625, 447.7632751464844, 0.0022969685960561037], "14": [348.47393798828125, 461.2344970703125, 0.00403194734826684], "15": [524.713134765625, 480.0, 0.00024625632795505226], "16": [312.7052001953125, 480.0, 0.0003711891476996243]}} +{"t": 49.232082, "tracked": true, "track_id": 1, "bbox": [191.08197021484375, 66.13312530517578, 637.1986694335938, 480.0], "det_conf": 0.9380362033843994, "mean_kpt_conf": 0.8697411144773165, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9012321824150794, "right_lift": -0.7569692461593773, "left_bend": 0.11622225308768304, "right_bend": 0.7660144399892844}, "keypoints": {"0": [416.04498291015625, 161.01585388183594, 0.9989225268363953], "1": [436.00177001953125, 140.47450256347656, 0.9973928928375244], "2": [395.6020812988281, 140.1791534423828, 0.996265709400177], "3": [460.8688049316406, 154.49203491210938, 0.9217619299888611], "4": [365.18218994140625, 153.58175659179688, 0.8601765036582947], "5": [513.7156372070312, 256.91912841796875, 0.9888945817947388], "6": [312.0462341308594, 259.1507873535156, 0.996941864490509], "7": [584.260498046875, 403.6348876953125, 0.8194440603256226], "8": [218.4109649658203, 367.61962890625, 0.9473912715911865], "9": [589.9207153320312, 471.6170654296875, 0.6365740299224854], "10": [215.41290283203125, 237.0278778076172, 0.9067543745040894], "11": [492.14654541015625, 480.0, 0.25370487570762634], "12": [357.1246032714844, 480.0, 0.36637362837791443], "13": [549.5764770507812, 450.5084228515625, 0.002249769866466522], "14": [348.51470947265625, 461.74151611328125, 0.0040040286257863045], "15": [526.4977416992188, 480.0, 0.00023836822947487235], "16": [311.1767578125, 480.0, 0.00036211367114447057]}} +{"t": 49.296904, "tracked": true, "track_id": 1, "bbox": [193.0067596435547, 66.14622497558594, 637.1209106445312, 480.0], "det_conf": 0.9374790191650391, "mean_kpt_conf": 0.8688260366519293, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9022222289671645, "right_lift": -0.7414667573684258, "left_bend": 0.11307407818785385, "right_bend": 0.7558914154011843}, "keypoints": {"0": [417.02825927734375, 161.6993408203125, 0.998930037021637], "1": [436.87060546875, 141.39474487304688, 0.9973944425582886], "2": [396.8811950683594, 140.77394104003906, 0.9963136315345764], "3": [461.34417724609375, 155.43002319335938, 0.9201540350914001], "4": [366.54888916015625, 153.83999633789062, 0.8626909255981445], "5": [512.575439453125, 257.9632263183594, 0.9885397553443909], "6": [312.8974609375, 259.5611572265625, 0.996906578540802], "7": [581.7532958984375, 402.6836853027344, 0.8171337842941284], "8": [216.42660522460938, 366.164794921875, 0.9468879103660583], "9": [588.3240966796875, 474.955322265625, 0.6300331354141235], "10": [212.40277099609375, 237.84298706054688, 0.9059399366378784], "11": [490.0809020996094, 480.0, 0.2520654499530792], "12": [356.2929382324219, 480.0, 0.3649882674217224], "13": [547.1805419921875, 451.8068542480469, 0.002238026587292552], "14": [347.5924072265625, 462.89776611328125, 0.003959433175623417], "15": [525.6929321289062, 480.0, 0.00024021259741857648], "16": [310.1245422363281, 480.0, 0.000362283899448812]}} +{"t": 49.36283, "tracked": true, "track_id": 1, "bbox": [191.37135314941406, 66.70235443115234, 635.3521118164062, 480.0], "det_conf": 0.9393303394317627, "mean_kpt_conf": 0.9141787453131243, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9038417229794725, "right_lift": -0.7356534701914694, "left_bend": 0.11934375096006232, "right_bend": 0.7697016291476236}, "keypoints": {"0": [415.590576171875, 162.1683807373047, 0.9988428354263306], "1": [435.8604431152344, 141.91030883789062, 0.9972332119941711], "2": [395.9415283203125, 140.68505859375, 0.9960432052612305], "3": [460.3739929199219, 155.68629455566406, 0.9200253486633301], "4": [365.75927734375, 152.47833251953125, 0.8621222972869873], "5": [510.0727844238281, 258.3627624511719, 0.9880090951919556], "6": [309.7334899902344, 258.884765625, 0.996798574924469], "7": [578.1085205078125, 402.08392333984375, 0.8117859363555908], "8": [212.25390625, 364.75372314453125, 0.94416344165802], "9": [583.0291748046875, 475.1954650878906, 0.6346330046653748], "10": [214.94546508789062, 234.50453186035156, 0.9063092470169067], "11": [486.5062561035156, 480.0, 0.23455236852169037], "12": [352.83074951171875, 480.0, 0.34284090995788574], "13": [543.7913818359375, 447.7767333984375, 0.0022881103213876486], "14": [348.7933044433594, 458.9013671875, 0.004031057003885508], "15": [522.72412109375, 480.0, 0.0002555279934313148], "16": [316.3002014160156, 479.4239196777344, 0.00038474350003525615]}} +{"t": 49.426357, "tracked": true, "track_id": 1, "bbox": [188.2290496826172, 67.66643524169922, 632.8032836914062, 480.0], "det_conf": 0.935038685798645, "mean_kpt_conf": 0.8694833715756735, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9055407928495203, "right_lift": -0.722305044766442, "left_bend": 0.054710623314061825, "right_bend": 0.7771850626258}, "keypoints": {"0": [413.6120300292969, 160.33883666992188, 0.9988442659378052], "1": [433.5774841308594, 141.41165161132812, 0.9972540736198425], "2": [393.8890380859375, 139.65219116210938, 0.9961203336715698], "3": [457.0794677734375, 157.46705627441406, 0.9176449179649353], "4": [363.5887451171875, 153.31759643554688, 0.8732844591140747], "5": [502.1837158203125, 258.8955078125, 0.9879992008209229], "6": [307.3316345214844, 257.0628967285156, 0.9967293739318848], "7": [568.8296508789062, 401.1448974609375, 0.8248963952064514], "8": [207.10580444335938, 361.7423095703125, 0.9467155337333679], "9": [590.03759765625, 478.9033508300781, 0.629993200302124], "10": [215.35496520996094, 232.3623046875, 0.9046740531921387], "11": [477.82281494140625, 479.63751220703125, 0.2507312595844269], "12": [346.91864013671875, 480.0, 0.35964465141296387], "13": [538.1099853515625, 447.8581848144531, 0.002358729252591729], "14": [339.9080810546875, 459.65191650390625, 0.004079488106071949], "15": [525.0997314453125, 480.0, 0.00026755192084237933], "16": [305.1508483886719, 480.0, 0.00039460984407924116]}} +{"t": 49.4962, "tracked": true, "track_id": 1, "bbox": [183.09255981445312, 67.983154296875, 629.546630859375, 480.0], "det_conf": 0.9238465428352356, "mean_kpt_conf": 0.8767476479212443, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9200502899974937, "right_lift": -0.7345002384477678, "left_bend": 0.013921052566300902, "right_bend": 0.7799236528421749}, "keypoints": {"0": [409.6086120605469, 159.5996856689453, 0.9987165927886963], "1": [429.5772399902344, 140.51046752929688, 0.9969682097434998], "2": [390.20062255859375, 138.49960327148438, 0.995612621307373], "3": [452.8387451171875, 155.2612762451172, 0.9100344181060791], "4": [359.720947265625, 150.68319702148438, 0.8771405220031738], "5": [494.2794494628906, 255.02536010742188, 0.9881199598312378], "6": [301.26300048828125, 258.3054504394531, 0.9966917037963867], "7": [550.9835205078125, 388.18145751953125, 0.8445555567741394], "8": [205.58653259277344, 361.862060546875, 0.9470701217651367], "9": [581.0381469726562, 468.3070068359375, 0.6624374389648438], "10": [212.75790405273438, 230.34991455078125, 0.9085277318954468], "11": [472.35223388671875, 474.81231689453125, 0.2894412577152252], "12": [341.8503723144531, 480.0, 0.39509689807891846], "13": [532.8862915039062, 444.0068359375, 0.0028731604106724262], "14": [333.1129150390625, 462.1363220214844, 0.004627890419214964], "15": [518.5343627929688, 480.0, 0.0003105423820670694], "16": [302.83953857421875, 480.0, 0.00043266775901429355]}} +{"t": 49.560306, "tracked": true, "track_id": 1, "bbox": [177.97515869140625, 68.00881958007812, 624.9988403320312, 480.0], "det_conf": 0.9169256687164307, "mean_kpt_conf": 0.919554591178894, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9281175979788895, "right_lift": -0.7421478013068431, "left_bend": 0.0009480655156376657, "right_bend": 0.7860751872703828}, "keypoints": {"0": [405.32806396484375, 159.69509887695312, 0.9986901879310608], "1": [425.22186279296875, 139.62966918945312, 0.9968846440315247], "2": [385.6973876953125, 138.1298370361328, 0.9955326318740845], "3": [448.7296447753906, 152.35931396484375, 0.9033921957015991], "4": [355.09326171875, 148.66644287109375, 0.8785022497177124], "5": [489.5784912109375, 253.316162109375, 0.9883069396018982], "6": [296.158447265625, 255.64878845214844, 0.9963332414627075], "7": [544.3427124023438, 389.8442077636719, 0.8462091088294983], "8": [200.43109130859375, 361.6470031738281, 0.9406701922416687], "9": [575.9797973632812, 469.4009094238281, 0.6675453186035156], "10": [208.5317840576172, 232.12673950195312, 0.9030337929725647], "11": [464.67132568359375, 472.60107421875, 0.25893962383270264], "12": [333.8614501953125, 478.0272521972656, 0.34775617718696594], "13": [525.2989501953125, 434.5029296875, 0.002889437833800912], "14": [323.2846984863281, 453.0252990722656, 0.004423257429152727], "15": [509.8842468261719, 474.3233337402344, 0.0003378819674253464], "16": [293.2211608886719, 474.6449279785156, 0.0004503958625718951]}} +{"t": 49.593942, "tracked": true, "track_id": 1, "bbox": [174.19338989257812, 67.73587036132812, 617.6055908203125, 480.0], "det_conf": 0.9223718047142029, "mean_kpt_conf": 0.8838901842633883, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9175822799510981, "right_lift": -0.7567708578291086, "left_bend": 0.1259328391559881, "right_bend": 0.8001401207091251}, "keypoints": {"0": [402.6419677734375, 159.4381103515625, 0.9990678429603577], "1": [422.87548828125, 138.853271484375, 0.9973437190055847], "2": [382.5581970214844, 137.44943237304688, 0.9967578053474426], "3": [446.6776123046875, 151.0787811279297, 0.8915850520133972], "4": [350.6842041015625, 147.8994140625, 0.8805131316184998], "5": [493.7181091308594, 249.5118408203125, 0.9898273944854736], "6": [290.79730224609375, 254.44143676757812, 0.9972274899482727], "7": [552.9342041015625, 386.1894836425781, 0.8602568507194519], "8": [193.31552124023438, 367.296875, 0.9552246332168579], "9": [553.6920776367188, 443.55255126953125, 0.7437059879302979], "10": [204.69261169433594, 233.0716094970703, 0.9354112148284912], "11": [467.204833984375, 480.0, 0.26119789481163025], "12": [330.269775390625, 480.0, 0.3597610890865326], "13": [518.97021484375, 439.7217102050781, 0.0017933002673089504], "14": [315.5361328125, 452.77984619140625, 0.0028921400662511587], "15": [491.8758544921875, 480.0, 0.00017752917483448982], "16": [275.6559753417969, 476.90911865234375, 0.0002451190375722945]}} +{"t": 49.659712, "tracked": true, "track_id": 1, "bbox": [166.86859130859375, 67.2664794921875, 610.007080078125, 480.0], "det_conf": 0.9292422533035278, "mean_kpt_conf": 0.9345079443671487, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9160796747095686, "right_lift": -0.7548920550605135, "left_bend": 0.1198120333709287, "right_bend": 0.8052770445647964}, "keypoints": {"0": [397.13897705078125, 157.95533752441406, 0.999126136302948], "1": [417.1034851074219, 137.93701171875, 0.9974896907806396], "2": [377.09954833984375, 136.32037353515625, 0.9968646168708801], "3": [440.15093994140625, 151.44046020507812, 0.8931037187576294], "4": [345.31195068359375, 147.8446044921875, 0.8843881487846375], "5": [487.74224853515625, 247.906982421875, 0.9905499815940857], "6": [284.8421630859375, 252.78941345214844, 0.997250497341156], "7": [549.0810546875, 388.0360412597656, 0.873851478099823], "8": [184.29092407226562, 368.525390625, 0.956654965877533], "9": [551.3969116210938, 451.97576904296875, 0.7522572875022888], "10": [198.68551635742188, 230.033935546875, 0.9380508661270142], "11": [464.5686950683594, 480.0, 0.23963530361652374], "12": [327.63916015625, 480.0, 0.3274410367012024], "13": [519.722900390625, 429.7316589355469, 0.0017075252253562212], "14": [313.1533508300781, 443.40814208984375, 0.0026896183844655752], "15": [495.1934814453125, 480.0, 0.00017447660502512008], "16": [271.7330322265625, 474.9227294921875, 0.00023739274183753878]}} +{"t": 49.721918, "tracked": true, "track_id": 1, "bbox": [159.3619384765625, 65.54196166992188, 605.7777709960938, 480.0], "det_conf": 0.927343487739563, "mean_kpt_conf": 0.9296833981167186, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9116328923111315, "right_lift": -0.7176529981837018, "left_bend": 0.06639848842287306, "right_bend": 0.805706119482888}, "keypoints": {"0": [391.19964599609375, 157.68218994140625, 0.9987711310386658], "1": [411.4117126464844, 137.94332885742188, 0.9969007968902588], "2": [372.09014892578125, 135.77166748046875, 0.9956867098808289], "3": [434.15643310546875, 152.12667846679688, 0.8954984545707703], "4": [341.6944580078125, 146.7678680419922, 0.8782820701599121], "5": [476.89129638671875, 246.78271484375, 0.9877533316612244], "6": [281.00872802734375, 252.6342010498047, 0.9967003464698792], "7": [538.2193603515625, 382.811767578125, 0.8622782826423645], "8": [176.2325439453125, 360.60784912109375, 0.9558562636375427], "9": [558.8731079101562, 477.40924072265625, 0.7246657013893127], "10": [198.6247100830078, 221.83355712890625, 0.9341242909431458], "11": [456.5947570800781, 471.5838623046875, 0.2213738113641739], "12": [325.7595520019531, 478.4716491699219, 0.31489619612693787], "13": [509.738037109375, 421.2595520019531, 0.0025420684833079576], "14": [319.1896057128906, 441.0680236816406, 0.0041749500669538975], "15": [483.24609375, 480.0, 0.00028695748187601566], "16": [280.6986389160156, 478.86138916015625, 0.0004050433053635061]}} +{"t": 49.789515, "tracked": true, "track_id": 1, "bbox": [151.83848571777344, 64.76840209960938, 604.0570678710938, 480.0], "det_conf": 0.9109429717063904, "mean_kpt_conf": 0.9200213063846935, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9238306594339704, "right_lift": -0.7183601249727333, "left_bend": 0.030734530967109784, "right_bend": 0.8107468528196918}, "keypoints": {"0": [386.797607421875, 155.21340942382812, 0.998714804649353], "1": [406.7904052734375, 134.78724670410156, 0.9967993497848511], "2": [366.39453125, 133.54852294921875, 0.9958987832069397], "3": [429.48358154296875, 148.84664916992188, 0.889862060546875], "4": [334.40338134765625, 145.6597442626953, 0.8916274905204773], "5": [472.0849609375, 248.84410095214844, 0.9867205619812012], "6": [270.9422607421875, 251.72450256347656, 0.9963967204093933], "7": [530.9336547851562, 390.8661193847656, 0.8327664732933044], "8": [166.19293212890625, 359.89013671875, 0.9452514052391052], "9": [557.4403686523438, 477.70062255859375, 0.6690466403961182], "10": [190.98013305664062, 219.53237915039062, 0.91715008020401], "11": [447.1712341308594, 471.772705078125, 0.2024202197790146], "12": [313.25177001953125, 478.23779296875, 0.29136398434638977], "13": [505.7726135253906, 423.97381591796875, 0.0024796260986477137], "14": [310.15576171875, 444.1997375488281, 0.004091750364750624], "15": [482.6846008300781, 480.0, 0.00030297544435597956], "16": [278.4344177246094, 480.0, 0.00042600170127116144]}} +{"t": 49.853886, "tracked": true, "track_id": 1, "bbox": [143.2919464111328, 63.45479202270508, 594.7496948242188, 480.0], "det_conf": 0.9027837514877319, "mean_kpt_conf": 0.9253217415376143, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9264197565635804, "right_lift": -0.716466806636868, "left_bend": 0.046846819044889486, "right_bend": 0.8123868794879857}, "keypoints": {"0": [381.51513671875, 152.8402862548828, 0.9988415837287903], "1": [400.6009521484375, 133.14227294921875, 0.9969874024391174], "2": [361.5990295410156, 131.72950744628906, 0.9961358904838562], "3": [422.399169921875, 147.80740356445312, 0.8904640674591064], "4": [329.7047424316406, 144.33468627929688, 0.8924881815910339], "5": [468.83770751953125, 248.52731323242188, 0.9887928366661072], "6": [264.5054626464844, 250.1915740966797, 0.9966570138931274], "7": [526.9835205078125, 391.60443115234375, 0.8541916608810425], "8": [159.84930419921875, 357.6749267578125, 0.9490811228752136], "9": [548.135498046875, 478.477783203125, 0.6934747099876404], "10": [185.3932342529297, 219.39566040039062, 0.9214246869087219], "11": [444.90673828125, 473.2877502441406, 0.2286703735589981], "12": [308.46240234375, 478.9747314453125, 0.3180684447288513], "13": [500.95001220703125, 426.5658264160156, 0.002587191527709365], "14": [299.6064758300781, 445.5716552734375, 0.004097622819244862], "15": [474.5970153808594, 480.0, 0.00029427846311591566], "16": [265.370361328125, 480.0, 0.0004012271820101887]}} +{"t": 49.923453, "tracked": true, "track_id": 1, "bbox": [132.78318786621094, 60.29728698730469, 586.3651123046875, 480.0], "det_conf": 0.910668671131134, "mean_kpt_conf": 0.928149711002003, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9217331812964333, "right_lift": -0.7513561682274531, "left_bend": 0.2296158432409664, "right_bend": 0.8056093718412439}, "keypoints": {"0": [377.001708984375, 152.6688995361328, 0.9991893172264099], "1": [397.15277099609375, 132.1612548828125, 0.9973249435424805], "2": [356.8109130859375, 129.9500274658203, 0.9973934888839722], "3": [419.89508056640625, 146.28173828125, 0.874582052230835], "4": [322.84527587890625, 141.22430419921875, 0.8971534371376038], "5": [472.7956848144531, 253.1951904296875, 0.9901441335678101], "6": [256.7145080566406, 250.95571899414062, 0.9974107146263123], "7": [534.8273315429688, 400.624267578125, 0.8360595107078552], "8": [157.5394287109375, 363.8760986328125, 0.9524512887001038], "9": [519.7197265625, 445.74566650390625, 0.7317616939544678], "10": [173.2201690673828, 221.88027954101562, 0.9361762404441833], "11": [440.24163818359375, 480.0, 0.20638702809810638], "12": [295.96038818359375, 480.0, 0.30053550004959106], "13": [490.0076904296875, 437.9058837890625, 0.001554670394398272], "14": [285.6319580078125, 445.5935974121094, 0.0026176597457379103], "15": [455.2285461425781, 480.0, 0.00015928038919810206], "16": [250.6710205078125, 473.4771423339844, 0.00022532565344590694]}} +{"t": 49.957476, "tracked": true, "track_id": 1, "bbox": [130.36383056640625, 60.0374641418457, 582.1997680664062, 480.0], "det_conf": 0.9133023619651794, "mean_kpt_conf": 0.9065426642244513, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9317628032990873, "right_lift": -0.7416377018841317, "left_bend": 0.11318655583857568, "right_bend": 0.8067417606232405}, "keypoints": {"0": [374.63140869140625, 153.3572235107422, 0.9988908171653748], "1": [394.482177734375, 132.16207885742188, 0.9965897798538208], "2": [354.31982421875, 130.8638916015625, 0.9968637228012085], "3": [416.8520812988281, 145.67086791992188, 0.8590390086174011], "4": [320.8652648925781, 142.02032470703125, 0.9015332460403442], "5": [468.7653503417969, 253.0442657470703, 0.9859510064125061], "6": [255.9998779296875, 250.44334411621094, 0.9965550899505615], "7": [528.4776611328125, 406.28765869140625, 0.7675935626029968], "8": [157.74928283691406, 359.06927490234375, 0.9385499358177185], "9": [529.5576782226562, 473.9013671875, 0.6197105646133423], "10": [175.7887725830078, 219.0712432861328, 0.910692572593689], "11": [441.02911376953125, 478.362548828125, 0.16933542490005493], "12": [301.88470458984375, 480.0, 0.26493796706199646], "13": [488.23974609375, 433.9936218261719, 0.0022738478146493435], "14": [305.01715087890625, 447.11279296875, 0.004153451882302761], "15": [446.5616455078125, 480.0, 0.00027183355996385217], "16": [278.9158020019531, 480.0, 0.00040834469837136567]}} +{"t": 50.019412, "tracked": true, "track_id": 1, "bbox": [127.08500671386719, 60.32194519042969, 579.410400390625, 479.87091064453125], "det_conf": 0.9207253456115723, "mean_kpt_conf": 0.9264274076981978, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.926695762351736, "right_lift": -0.7516689460799335, "left_bend": 0.281375228931185, "right_bend": 0.8164192141795972}, "keypoints": {"0": [370.10107421875, 152.01974487304688, 0.9991911053657532], "1": [390.3383483886719, 131.6801300048828, 0.9975541234016418], "2": [349.3828125, 130.07498168945312, 0.9973598122596741], "3": [413.513427734375, 146.61279296875, 0.892090380191803], "4": [315.5135803222656, 142.94851684570312, 0.893443763256073], "5": [467.788818359375, 251.8582000732422, 0.9903197288513184], "6": [249.35018920898438, 250.44029235839844, 0.9973426461219788], "7": [529.9854125976562, 405.2254638671875, 0.8302561640739441], "8": [145.71029663085938, 368.55718994140625, 0.9473218321800232], "9": [506.7718505859375, 447.84991455078125, 0.7157303094863892], "10": [166.663818359375, 223.51393127441406, 0.9300916194915771], "11": [438.9452209472656, 480.0, 0.1917349249124527], "12": [293.9143371582031, 480.0, 0.2782854735851288], "13": [490.2911376953125, 435.9383544921875, 0.0014976784586906433], "14": [286.9807434082031, 443.41094970703125, 0.0024901172146201134], "15": [457.2619323730469, 480.0, 0.00015877345867920667], "16": [252.7392578125, 473.830078125, 0.00022541377984452993]}} +{"t": 50.085938, "tracked": true, "track_id": 1, "bbox": [124.84446716308594, 59.16089630126953, 578.59228515625, 479.6579895019531], "det_conf": 0.918228805065155, "mean_kpt_conf": 0.9267245802012357, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9262055434646088, "right_lift": -0.7529993028164855, "left_bend": 0.28578636877625535, "right_bend": 0.8240616433933888}, "keypoints": {"0": [367.37164306640625, 151.27749633789062, 0.9992176294326782], "1": [387.3187255859375, 130.64981079101562, 0.9976990818977356], "2": [346.8057556152344, 129.268310546875, 0.9973202347755432], "3": [410.6612243652344, 145.52223205566406, 0.8986607193946838], "4": [313.57025146484375, 142.20803833007812, 0.8886153697967529], "5": [466.97589111328125, 252.6380157470703, 0.9905741810798645], "6": [247.0223846435547, 251.25534057617188, 0.9973553419113159], "7": [530.6356201171875, 409.02801513671875, 0.8297291994094849], "8": [141.5641632080078, 371.9352722167969, 0.9454250335693359], "9": [507.073974609375, 451.0274353027344, 0.7188538908958435], "10": [166.3993377685547, 223.21099853515625, 0.930519700050354], "11": [439.7685546875, 480.0, 0.17055602371692657], "12": [294.00921630859375, 480.0, 0.24919593334197998], "13": [491.5865478515625, 431.6867370605469, 0.0014132021460682154], "14": [287.5495910644531, 439.52081298828125, 0.002342412481084466], "15": [459.5428466796875, 480.0, 0.00015492105740122497], "16": [254.03326416015625, 472.456787109375, 0.00022064842050895095]}} +{"t": 50.151266, "tracked": true, "track_id": 1, "bbox": [124.62250518798828, 57.044189453125, 583.0660400390625, 479.5357360839844], "det_conf": 0.9169398546218872, "mean_kpt_conf": 0.9250299876386469, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9205585806241365, "right_lift": -0.7644731716627938, "left_bend": 0.2627853044622743, "right_bend": 0.8235588096753138}, "keypoints": {"0": [366.7557373046875, 150.24569702148438, 0.999237060546875], "1": [387.0654602050781, 128.83372497558594, 0.9976932406425476], "2": [345.9650573730469, 127.51397705078125, 0.9974257349967957], "3": [410.850830078125, 142.31768798828125, 0.8919843435287476], "4": [312.2983093261719, 138.92440795898438, 0.891588568687439], "5": [467.82763671875, 248.95245361328125, 0.9904541969299316], "6": [246.70567321777344, 249.0865936279297, 0.9973249435424805], "7": [533.962158203125, 404.8152160644531, 0.8257644176483154], "8": [143.9497528076172, 370.9410400390625, 0.9450179934501648], "9": [513.2940063476562, 450.5704345703125, 0.7095287442207336], "10": [165.56224060058594, 224.23501586914062, 0.9293106198310852], "11": [443.35888671875, 480.0, 0.1698562204837799], "12": [296.85015869140625, 480.0, 0.2491927593946457], "13": [496.5302734375, 431.3368835449219, 0.0013689734041690826], "14": [291.75225830078125, 440.1936340332031, 0.002296663587912917], "15": [462.82275390625, 480.0, 0.00014956148515921086], "16": [258.82568359375, 473.21795654296875, 0.00021416100207716227]}} +{"t": 50.219207, "tracked": true, "track_id": 1, "bbox": [125.05859375, 55.020206451416016, 585.0551147460938, 479.68218994140625], "det_conf": 0.9178712368011475, "mean_kpt_conf": 0.9226580424742266, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9215337644276226, "right_lift": -0.7625961389486761, "left_bend": 0.23356926799871805, "right_bend": 0.8211943147544132}, "keypoints": {"0": [366.84844970703125, 149.58963012695312, 0.9991785883903503], "1": [387.2330322265625, 127.80404663085938, 0.9975985884666443], "2": [346.10064697265625, 126.72003173828125, 0.9972545504570007], "3": [411.4010009765625, 140.61822509765625, 0.8959658741950989], "4": [312.8959045410156, 137.65611267089844, 0.8917084336280823], "5": [468.10418701171875, 248.99002075195312, 0.9903340935707092], "6": [246.60870361328125, 249.89781188964844, 0.9972980618476868], "7": [533.3399047851562, 403.8115234375, 0.8163426518440247], "8": [144.45709228515625, 370.3236083984375, 0.9404672980308533], "9": [515.7977905273438, 454.203125, 0.6981396675109863], "10": [165.4163818359375, 223.44871520996094, 0.9249506592750549], "11": [441.8553466796875, 480.0, 0.16339299082756042], "12": [296.2168884277344, 480.0, 0.2395886480808258], "13": [495.72412109375, 429.45269775390625, 0.0014099945547059178], "14": [298.28717041015625, 440.0487060546875, 0.002378408797085285], "15": [458.1248779296875, 479.26043701171875, 0.00016078892804216594], "16": [269.24530029296875, 470.4078369140625, 0.00023147821775637567]}} +{"t": 50.25341, "tracked": true, "track_id": 1, "bbox": [125.61512756347656, 54.4377326965332, 587.88134765625, 479.7698059082031], "det_conf": 0.9168803691864014, "mean_kpt_conf": 0.9269375205039978, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.919431548975571, "right_lift": -0.7600462182761538, "left_bend": 0.2298290740660246, "right_bend": 0.8265728770150182}, "keypoints": {"0": [367.81854248046875, 149.70848083496094, 0.9991856217384338], "1": [388.28533935546875, 127.97126770019531, 0.9975894689559937], "2": [346.79876708984375, 126.84255981445312, 0.9972653388977051], "3": [412.24114990234375, 141.11245727539062, 0.8922948241233826], "4": [312.96099853515625, 138.19259643554688, 0.893837034702301], "5": [468.395751953125, 248.01397705078125, 0.9905045628547668], "6": [246.07833862304688, 249.84979248046875, 0.9972975850105286], "7": [534.0888671875, 401.60662841796875, 0.8300743699073792], "8": [142.52911376953125, 370.9544982910156, 0.9436482191085815], "9": [517.2496948242188, 452.78607177734375, 0.7232763767242432], "10": [166.78561401367188, 223.06915283203125, 0.9313393235206604], "11": [442.0187683105469, 480.0, 0.16569699347019196], "12": [295.64910888671875, 480.0, 0.23994022607803345], "13": [494.93450927734375, 426.62164306640625, 0.0014268284430727363], "14": [295.3126220703125, 437.9586181640625, 0.002359483391046524], "15": [457.1692810058594, 480.0, 0.00015705093392170966], "16": [264.2592468261719, 471.240234375, 0.000222524962737225]}} +{"t": 50.317718, "tracked": true, "track_id": 1, "bbox": [128.33741760253906, 54.31853485107422, 595.9224853515625, 479.5451965332031], "det_conf": 0.9063307642936707, "mean_kpt_conf": 0.9228853583335876, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9232443690817567, "right_lift": -0.7641077356906044, "left_bend": 0.0935315978411531, "right_bend": 0.8068186352762394}, "keypoints": {"0": [368.7828674316406, 148.75991821289062, 0.9990222454071045], "1": [390.1204833984375, 126.75701904296875, 0.99781334400177], "2": [347.3871154785156, 126.67234802246094, 0.99647456407547], "3": [416.6073913574219, 138.42178344726562, 0.9287511706352234], "4": [315.54351806640625, 137.75430297851562, 0.881435751914978], "5": [468.4825439453125, 243.15000915527344, 0.9909364581108093], "6": [249.98666381835938, 248.8223419189453, 0.9970904588699341], "7": [530.3314208984375, 391.7696228027344, 0.8428146243095398], "8": [149.23245239257812, 368.1657409667969, 0.9328107237815857], "9": [537.716552734375, 464.99322509765625, 0.6787881851196289], "10": [162.31764221191406, 229.73056030273438, 0.9058014154434204], "11": [442.7759094238281, 480.0, 0.2081649899482727], "12": [298.52484130859375, 480.0, 0.28182172775268555], "13": [505.51953125, 430.3938293457031, 0.0016092705773189664], "14": [299.869873046875, 448.10479736328125, 0.0024805546272546053], "15": [478.95172119140625, 475.2593994140625, 0.00019088905537500978], "16": [278.76361083984375, 474.15216064453125, 0.00025934731820598245]}} +{"t": 50.352894, "tracked": true, "track_id": 1, "bbox": [131.4277801513672, 53.21212387084961, 600.184814453125, 479.3446350097656], "det_conf": 0.9109725952148438, "mean_kpt_conf": 0.9287838664921847, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.915015643961098, "right_lift": -0.753800337601692, "left_bend": 0.10204150728132377, "right_bend": 0.8060485858352774}, "keypoints": {"0": [369.7950744628906, 148.08338928222656, 0.9990794658660889], "1": [390.9743957519531, 126.05996704101562, 0.9980436563491821], "2": [348.2644958496094, 126.53068542480469, 0.99644935131073], "3": [417.8881530761719, 137.6125030517578, 0.9356733560562134], "4": [316.9069519042969, 138.31552124023438, 0.8716332316398621], "5": [470.134033203125, 238.0673370361328, 0.9913015961647034], "6": [253.49386596679688, 247.8601837158203, 0.9972891807556152], "7": [533.9630126953125, 382.8414001464844, 0.8647733926773071], "8": [150.29202270507812, 366.2488098144531, 0.944579541683197], "9": [541.6605224609375, 463.9013671875, 0.7008059620857239], "10": [165.40379333496094, 226.41729736328125, 0.9169937968254089], "11": [448.0579528808594, 480.0, 0.24485555291175842], "12": [303.6346435546875, 480.0, 0.32813167572021484], "13": [510.84991455078125, 433.1720886230469, 0.0015811538323760033], "14": [297.6606140136719, 453.11181640625, 0.0024515080731362104], "15": [486.51300048828125, 480.0, 0.00017210192163474858], "16": [267.6832275390625, 479.3027038574219, 0.0002361058723181486]}} +{"t": 50.413651, "tracked": true, "track_id": 1, "bbox": [136.08126831054688, 51.70825958251953, 607.1416625976562, 479.5429382324219], "det_conf": 0.9153410196304321, "mean_kpt_conf": 0.8907032385468483, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9037073790184321, "right_lift": -0.7518293640721031, "left_bend": 0.10174175822225745, "right_bend": 0.7930932666195557}, "keypoints": {"0": [372.93109130859375, 147.28759765625, 0.9991437196731567], "1": [394.381591796875, 125.13046264648438, 0.9981348514556885], "2": [351.6148681640625, 125.15586853027344, 0.9963905215263367], "3": [421.5567626953125, 136.3721923828125, 0.9374067187309265], "4": [320.42315673828125, 136.04649353027344, 0.8620129823684692], "5": [473.7567443847656, 234.61888122558594, 0.9921175837516785], "6": [260.5907287597656, 246.50592041015625, 0.997611403465271], "7": [540.4803466796875, 375.45391845703125, 0.8898242115974426], "8": [157.94651794433594, 363.54547119140625, 0.9571536183357239], "9": [551.5075073242188, 464.78936767578125, 0.7406768202781677], "10": [167.63388061523438, 225.276611328125, 0.9334211945533752], "11": [457.8298034667969, 480.0, 0.29120364785194397], "12": [314.7609558105469, 480.0, 0.384545236825943], "13": [519.9998779296875, 437.0263977050781, 0.001581256277859211], "14": [305.3203125, 457.5838928222656, 0.0024739170912653208], "15": [496.8424072265625, 480.0, 0.000148261126014404], "16": [269.9728698730469, 480.0, 0.00020584659068845212]}} +{"t": 50.478597, "tracked": true, "track_id": 1, "bbox": [141.47677612304688, 51.35282897949219, 614.1251831054688, 479.9647216796875], "det_conf": 0.9190587997436523, "mean_kpt_conf": 0.891663538912932, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8921427493682095, "right_lift": -0.744051082984501, "left_bend": 0.12483388312648964, "right_bend": 0.8029025283360066}, "keypoints": {"0": [377.3211975097656, 146.36288452148438, 0.999158501625061], "1": [398.3095703125, 123.83041381835938, 0.9980247020721436], "2": [355.8036193847656, 124.24169921875, 0.9965696334838867], "3": [424.59796142578125, 134.53677368164062, 0.9285881519317627], "4": [324.2577209472656, 135.08013916015625, 0.8716037273406982], "5": [476.2483215332031, 232.20272827148438, 0.9919959902763367], "6": [264.2069091796875, 245.04611206054688, 0.9975787997245789], "7": [547.7822875976562, 373.47113037109375, 0.8928676843643188], "8": [158.66156005859375, 362.5860900878906, 0.9587627053260803], "9": [554.9249877929688, 466.59307861328125, 0.7614010572433472], "10": [174.4886932373047, 222.4730224609375, 0.941070556640625], "11": [459.08172607421875, 480.0, 0.2731141746044159], "12": [317.734130859375, 480.0, 0.3623409569263458], "13": [523.6319580078125, 433.21734619140625, 0.0015466617187485099], "14": [316.8220520019531, 454.277587890625, 0.002447983017191291], "15": [499.637939453125, 480.0, 0.00014202499005477875], "16": [280.7357482910156, 480.0, 0.00019811846141237766]}} +{"t": 50.513597, "tracked": true, "track_id": 1, "bbox": [143.44956970214844, 50.81376266479492, 617.1507568359375, 480.0], "det_conf": 0.9108631610870361, "mean_kpt_conf": 0.8917474697033564, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8923523422837745, "right_lift": -0.7590525976190252, "left_bend": 0.12918184444656197, "right_bend": 0.8069004001184228}, "keypoints": {"0": [378.9189453125, 145.57791137695312, 0.9991729855537415], "1": [400.5323486328125, 123.75175476074219, 0.9980047345161438], "2": [357.1634521484375, 123.28573608398438, 0.9966704249382019], "3": [426.6888732910156, 136.6817626953125, 0.9276729822158813], "4": [324.6817321777344, 135.50177001953125, 0.8744260668754578], "5": [478.0655212402344, 234.66583251953125, 0.992279052734375], "6": [263.980712890625, 246.35263061523438, 0.9976215958595276], "7": [550.165283203125, 377.2157287597656, 0.8947833180427551], "8": [160.93338012695312, 366.498291015625, 0.9587258696556091], "9": [555.47998046875, 462.23687744140625, 0.7687453627586365], "10": [175.51901245117188, 224.41812133789062, 0.9415881633758545], "11": [461.14349365234375, 480.0, 0.2661353051662445], "12": [318.52032470703125, 480.0, 0.351279079914093], "13": [527.4931030273438, 431.615478515625, 0.0015069583896547556], "14": [319.82232666015625, 450.9534606933594, 0.00237279012799263], "15": [503.3479919433594, 480.0, 0.00013918649347033352], "16": [285.4750671386719, 479.2282409667969, 0.00019391710520721972]}} +{"t": 50.578106, "tracked": true, "track_id": 1, "bbox": [146.66233825683594, 49.60999298095703, 620.9666137695312, 480.0], "det_conf": 0.9142934083938599, "mean_kpt_conf": 0.8949417794744173, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8933505998626605, "right_lift": -0.7542733858646042, "left_bend": 0.14580578880967826, "right_bend": 0.8047764847099468}, "keypoints": {"0": [382.4578552246094, 144.60801696777344, 0.9992173910140991], "1": [403.4937744140625, 123.168212890625, 0.9980119466781616], "2": [360.50604248046875, 122.66354370117188, 0.9968754053115845], "3": [428.93133544921875, 136.67709350585938, 0.9219274520874023], "4": [327.254150390625, 135.73004150390625, 0.8775079846382141], "5": [480.96807861328125, 234.30885314941406, 0.9923822283744812], "6": [268.01910400390625, 245.84043884277344, 0.9977065324783325], "7": [552.5948486328125, 376.7064208984375, 0.8971413373947144], "8": [163.710205078125, 365.67315673828125, 0.9621505737304688], "9": [553.2561645507812, 459.5059814453125, 0.7710287570953369], "10": [178.2483367919922, 224.9388427734375, 0.9448236227035522], "11": [466.0649108886719, 480.0, 0.287850022315979], "12": [323.1946105957031, 480.0, 0.38052812218666077], "13": [530.156982421875, 436.271484375, 0.0015064289327710867], "14": [318.08966064453125, 454.3655090332031, 0.002388081746175885], "15": [506.62188720703125, 480.0, 0.00012944653281010687], "16": [277.2627868652344, 479.77911376953125, 0.00018066924531012774]}} +{"t": 50.647106, "tracked": true, "track_id": 1, "bbox": [147.44361877441406, 48.26927947998047, 621.9524536132812, 480.0], "det_conf": 0.9177408814430237, "mean_kpt_conf": 0.9396820393475619, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8965276065371027, "right_lift": -0.7595914099220974, "left_bend": 0.14207391223127686, "right_bend": 0.8070163386987584}, "keypoints": {"0": [383.8031921386719, 144.9254913330078, 0.9991925358772278], "1": [405.0810546875, 123.31048583984375, 0.9979022741317749], "2": [362.0158996582031, 122.47651672363281, 0.9968761205673218], "3": [430.3575134277344, 136.71401977539062, 0.9174408912658691], "4": [328.67633056640625, 134.89495849609375, 0.8818326592445374], "5": [481.2302551269531, 236.07798767089844, 0.9920578598976135], "6": [268.2486572265625, 246.46641540527344, 0.997597873210907], "7": [552.531494140625, 380.37884521484375, 0.887651801109314], "8": [163.53616333007812, 368.75830078125, 0.9576556086540222], "9": [553.4996337890625, 457.2705078125, 0.7663068771362305], "10": [178.12551879882812, 225.99008178710938, 0.941987931728363], "11": [464.092041015625, 480.0, 0.2530558407306671], "12": [321.9920654296875, 480.0, 0.33783066272735596], "13": [527.8067016601562, 431.2888488769531, 0.0015205389354377985], "14": [320.7099609375, 448.6992492675781, 0.0023904251866042614], "15": [503.4646911621094, 480.0, 0.00013826937356498092], "16": [282.9909973144531, 474.70947265625, 0.00019139827054459602]}} +{"t": 50.71386, "tracked": true, "track_id": 1, "bbox": [145.56756591796875, 46.42182922363281, 621.5167236328125, 480.0], "det_conf": 0.9183397889137268, "mean_kpt_conf": 0.9402459372173656, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8923099275619957, "right_lift": -0.7694587570662782, "left_bend": 0.13899935050650813, "right_bend": 0.8078840881355044}, "keypoints": {"0": [382.8228454589844, 143.64730834960938, 0.9992056488990784], "1": [404.5539245605469, 122.52394104003906, 0.9978505373001099], "2": [361.3121643066406, 120.87892150878906, 0.9969856142997742], "3": [429.4681396484375, 136.70541381835938, 0.9128842353820801], "4": [327.55670166015625, 133.09231567382812, 0.8875741362571716], "5": [479.20306396484375, 234.70790100097656, 0.9922959208488464], "6": [265.701171875, 244.89649963378906, 0.9976111650466919], "7": [551.9564208984375, 378.5164794921875, 0.8931703567504883], "8": [163.08734130859375, 368.5187683105469, 0.9584128260612488], "9": [554.537109375, 459.9492492675781, 0.7653884291648865], "10": [175.78919982910156, 226.58404541015625, 0.9413264393806458], "11": [461.5946044921875, 480.0, 0.2558076083660126], "12": [318.7904052734375, 480.0, 0.33721697330474854], "13": [530.3135375976562, 429.026123046875, 0.001492501818574965], "14": [320.42138671875, 446.3631286621094, 0.002325513167306781], "15": [507.49285888671875, 480.0, 0.00013560053776018322], "16": [284.0916442871094, 473.9073486328125, 0.00018573047418612987]}} +{"t": 50.779386, "tracked": true, "track_id": 1, "bbox": [141.11312866210938, 44.99568557739258, 619.7954711914062, 480.0], "det_conf": 0.9161278605461121, "mean_kpt_conf": 0.9362840869209983, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8896833513712067, "right_lift": -0.7703718742421927, "left_bend": 0.12920274407114685, "right_bend": 0.8034725360620053}, "keypoints": {"0": [379.2999572753906, 143.2864532470703, 0.9991461038589478], "1": [401.39617919921875, 121.5797119140625, 0.9978772401809692], "2": [357.9236145019531, 120.25979614257812, 0.9967717528343201], "3": [427.27813720703125, 134.6033477783203, 0.922228991985321], "4": [324.8211364746094, 131.53778076171875, 0.8824828863143921], "5": [476.9225769042969, 233.99996948242188, 0.9917579293251038], "6": [262.3125, 245.30958557128906, 0.9974867105484009], "7": [549.6966552734375, 375.8067932128906, 0.8818427920341492], "8": [161.68109130859375, 366.89715576171875, 0.95299232006073], "9": [555.6434326171875, 462.81298828125, 0.7434065937995911], "10": [172.11886596679688, 226.03282165527344, 0.9331316351890564], "11": [456.1566162109375, 480.0, 0.24978956580162048], "12": [312.96923828125, 480.0, 0.3312107026576996], "13": [524.4513549804688, 430.37823486328125, 0.0015237326733767986], "14": [315.5559997558594, 449.2898864746094, 0.00237981672398746], "15": [501.30120849609375, 480.0, 0.0001453347213100642], "16": [283.63763427734375, 474.7949523925781, 0.00019962593796662986]}} +{"t": 50.842124, "tracked": true, "track_id": 1, "bbox": [135.63760375976562, 43.76491928100586, 615.1079711914062, 480.0], "det_conf": 0.9229797124862671, "mean_kpt_conf": 0.9292608770457181, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8998215801987863, "right_lift": -0.7853024741846297, "left_bend": 0.1015038970832751, "right_bend": 0.804521726430692}, "keypoints": {"0": [374.371826171875, 143.00933837890625, 0.9990993738174438], "1": [396.96514892578125, 119.98641967773438, 0.9979307651519775], "2": [353.1221618652344, 119.03224182128906, 0.9965295195579529], "3": [424.2193298339844, 130.49349975585938, 0.9277656078338623], "4": [320.535400390625, 127.73770141601562, 0.8746376633644104], "5": [475.3363037109375, 233.23365783691406, 0.9915701150894165], "6": [256.3763427734375, 244.40371704101562, 0.9972844123840332], "7": [545.3997192382812, 377.7457580566406, 0.8687082529067993], "8": [159.33277893066406, 367.4969787597656, 0.9428868889808655], "9": [557.4146728515625, 467.8575439453125, 0.7080904245376587], "10": [166.82225036621094, 227.63699340820312, 0.917366623878479], "11": [452.9095153808594, 480.0, 0.23502731323242188], "12": [306.9035339355469, 480.0, 0.3086162805557251], "13": [521.9606323242188, 431.1397705078125, 0.0014992329524829984], "14": [308.8779602050781, 451.784423828125, 0.0022860048338770866], "15": [496.8481140136719, 480.0, 0.00015385508595500141], "16": [282.60467529296875, 475.8963623046875, 0.00020748031965922564]}} +{"t": 50.905204, "tracked": true, "track_id": 1, "bbox": [129.82102966308594, 42.26707458496094, 608.9434204101562, 479.98681640625], "det_conf": 0.9201329946517944, "mean_kpt_conf": 0.8853540420532227, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9085071391146766, "right_lift": -0.7792985106493258, "left_bend": 0.0961487744609671, "right_bend": 0.8089853345216174}, "keypoints": {"0": [369.8656311035156, 138.9638671875, 0.9991188645362854], "1": [392.58721923828125, 117.62409973144531, 0.9981733560562134], "2": [348.6415710449219, 116.85784912109375, 0.9964215755462646], "3": [420.44366455078125, 131.76809692382812, 0.9442005157470703], "4": [317.3631286621094, 129.594482421875, 0.8646803498268127], "5": [471.7613525390625, 231.94239807128906, 0.9924057126045227], "6": [253.79563903808594, 241.98526000976562, 0.9975599050521851], "7": [540.12109375, 380.566162109375, 0.8850076794624329], "8": [153.70603942871094, 366.45556640625, 0.9510109424591064], "9": [551.5332641601562, 468.5147705078125, 0.7172442674636841], "10": [164.77346801757812, 223.30636596679688, 0.9203910827636719], "11": [448.96185302734375, 480.0, 0.2748814523220062], "12": [303.0305480957031, 480.0, 0.35803425312042236], "13": [516.740234375, 434.8679504394531, 0.001545503968372941], "14": [298.758056640625, 454.29913330078125, 0.0023810681886970997], "15": [493.703857421875, 480.0, 0.00015385214646812528], "16": [266.0312805175781, 478.3324279785156, 0.00021131237735971808]}} +{"t": 50.941905, "tracked": true, "track_id": 1, "bbox": [124.54769897460938, 41.508567810058594, 604.6805419921875, 480.0], "det_conf": 0.9087555408477783, "mean_kpt_conf": 0.9286249279975891, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9149343230895745, "right_lift": -0.7825970895937283, "left_bend": 0.09820523527371942, "right_bend": 0.7968302170050083}, "keypoints": {"0": [367.61663818359375, 137.94808959960938, 0.9990459084510803], "1": [390.1447448730469, 116.31826782226562, 0.9980846643447876], "2": [346.11474609375, 116.31649780273438, 0.9962241649627686], "3": [418.131103515625, 129.56536865234375, 0.9434489011764526], "4": [315.01513671875, 129.22933959960938, 0.8639971613883972], "5": [469.0347900390625, 228.0049591064453, 0.9918980598449707], "6": [252.4955596923828, 240.76332092285156, 0.9973384737968445], "7": [534.196533203125, 375.7212829589844, 0.8770531415939331], "8": [154.62864685058594, 363.7944030761719, 0.9449397325515747], "9": [544.0842895507812, 467.8377380371094, 0.6934263110160828], "10": [159.4249725341797, 221.49383544921875, 0.9094176888465881], "11": [447.2151794433594, 480.0, 0.2693810760974884], "12": [302.75048828125, 480.0, 0.34842953085899353], "13": [514.0050659179688, 428.859375, 0.001676755491644144], "14": [300.24407958984375, 450.6260681152344, 0.0025405115447938442], "15": [488.8950500488281, 478.3987121582031, 0.000179607595782727], "16": [270.9994201660156, 475.029541015625, 0.00024375264183618128]}} +{"t": 50.975542, "tracked": true, "track_id": 1, "bbox": [123.90161895751953, 40.136924743652344, 604.6668701171875, 480.0], "det_conf": 0.9088882803916931, "mean_kpt_conf": 0.9165806661952626, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9103984672793007, "right_lift": -0.7519774263230481, "left_bend": 0.11891890047710253, "right_bend": 0.8068955883132227}, "keypoints": {"0": [367.7909240722656, 139.36375427246094, 0.9989897608757019], "1": [388.54083251953125, 116.0830078125, 0.9974027276039124], "2": [346.03668212890625, 116.51394653320312, 0.9967122077941895], "3": [413.613525390625, 128.55319213867188, 0.895243227481842], "4": [312.6949157714844, 128.95252990722656, 0.8895519971847534], "5": [468.07183837890625, 233.55477905273438, 0.9870628714561462], "6": [250.40652465820312, 245.1121826171875, 0.9967458248138428], "7": [536.9883422851562, 385.20220947265625, 0.8022374510765076], "8": [148.54354858398438, 361.3135681152344, 0.941145122051239], "9": [541.8646850585938, 477.20001220703125, 0.6579340696334839], "10": [165.67523193359375, 210.4649200439453, 0.9193620681762695], "11": [449.0823059082031, 466.50274658203125, 0.16163551807403564], "12": [307.287353515625, 475.79351806640625, 0.24532610177993774], "13": [501.18548583984375, 419.7977294921875, 0.0020662869792431593], "14": [315.3215637207031, 443.3511047363281, 0.003668616758659482], "15": [458.37713623046875, 480.0, 0.00023134493676479906], "16": [285.88677978515625, 480.0, 0.00034760782727971673]}} +{"t": 51.04019, "tracked": true, "track_id": 1, "bbox": [120.72189331054688, 38.96694564819336, 600.7326049804688, 480.0], "det_conf": 0.9097357392311096, "mean_kpt_conf": 0.9218816919760271, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9057292471594842, "right_lift": -0.7535756674035858, "left_bend": 0.12981625821064438, "right_bend": 0.8122478634470731}, "keypoints": {"0": [362.89190673828125, 139.1094207763672, 0.999035120010376], "1": [383.3453063964844, 116.4447021484375, 0.997400164604187], "2": [341.4825134277344, 116.16328430175781, 0.996773898601532], "3": [407.59033203125, 130.04136657714844, 0.892464816570282], "4": [308.2549133300781, 128.88363647460938, 0.890849232673645], "5": [462.32635498046875, 235.4368896484375, 0.9881466627120972], "6": [246.35174560546875, 245.31735229492188, 0.9968309998512268], "7": [533.2385864257812, 386.967529296875, 0.8213797211647034], "8": [145.17807006835938, 361.2992858886719, 0.9454134106636047], "9": [535.9625244140625, 478.13519287109375, 0.6854643225669861], "10": [164.68373107910156, 209.10850524902344, 0.9269402623176575], "11": [444.5860900878906, 469.62652587890625, 0.1672789305448532], "12": [303.44384765625, 478.2572021484375, 0.24952371418476105], "13": [499.44183349609375, 420.7709655761719, 0.002043192507699132], "14": [311.93707275390625, 442.7526550292969, 0.0035816961899399757], "15": [456.6969909667969, 480.0, 0.00022151393932290375], "16": [278.60443115234375, 480.0, 0.00032963944249786437]}} +{"t": 51.079285, "tracked": true, "track_id": 1, "bbox": [118.35680389404297, 39.351417541503906, 597.7796020507812, 480.0], "det_conf": 0.9120460152626038, "mean_kpt_conf": 0.9376004121520303, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9062951727303223, "right_lift": -0.7622122479472389, "left_bend": 0.2108645474587841, "right_bend": 0.8192369775331356}, "keypoints": {"0": [360.1387939453125, 138.87924194335938, 0.9993062019348145], "1": [381.4232482910156, 116.12705993652344, 0.9981569647789001], "2": [338.866943359375, 115.25898742675781, 0.9972614049911499], "3": [407.07318115234375, 128.6882781982422, 0.9194597005844116], "4": [305.732666015625, 126.2642822265625, 0.8786959648132324], "5": [465.6451416015625, 233.29673767089844, 0.9920215010643005], "6": [241.60264587402344, 241.41851806640625, 0.997702419757843], "7": [538.16845703125, 388.8113708496094, 0.8695994019508362], "8": [133.765869140625, 368.39373779296875, 0.9558641910552979], "9": [521.2816162109375, 462.2257080078125, 0.7615436315536499], "10": [154.49588012695312, 217.1206817626953, 0.9439931511878967], "11": [445.328369140625, 480.0, 0.1890205442905426], "12": [296.83966064453125, 480.0, 0.2688094973564148], "13": [497.15313720703125, 424.4360656738281, 0.001320678973570466], "14": [287.9837341308594, 439.16107177734375, 0.0021505183540284634], "15": [458.5570068359375, 480.0, 0.00012775881623383611], "16": [245.65032958984375, 474.373291015625, 0.00018134857236873358]}} +{"t": 51.139244, "tracked": true, "track_id": 1, "bbox": [114.889404296875, 38.28977584838867, 590.935302734375, 480.0], "det_conf": 0.9196529388427734, "mean_kpt_conf": 0.9395031062039462, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9090646912403244, "right_lift": -0.740752855504663, "left_bend": 0.21232646819183115, "right_bend": 0.8212873060471007}, "keypoints": {"0": [356.72601318359375, 137.68267822265625, 0.9993497729301453], "1": [378.357177734375, 115.17747497558594, 0.998460054397583], "2": [335.37933349609375, 114.044677734375, 0.9971709847450256], "3": [405.1033935546875, 129.19552612304688, 0.9376392960548401], "4": [302.9662170410156, 126.09503173828125, 0.8612582683563232], "5": [463.80694580078125, 236.2916717529297, 0.9922462105751038], "6": [240.4739990234375, 240.78353881835938, 0.9977992177009583], "7": [536.208251953125, 394.2580261230469, 0.8744745850563049], "8": [125.78213500976562, 367.25146484375, 0.9588437080383301], "9": [519.0457763671875, 465.2253112792969, 0.7698229551315308], "10": [152.36045837402344, 217.07211303710938, 0.9474691152572632], "11": [444.22882080078125, 480.0, 0.1874999850988388], "12": [295.54742431640625, 480.0, 0.2711065411567688], "13": [494.1230773925781, 429.43817138671875, 0.0011933987261727452], "14": [280.6667785644531, 441.2432556152344, 0.0019690552726387978], "15": [460.6630554199219, 480.0, 0.00011523340799612924], "16": [233.4111328125, 475.52484130859375, 0.00016731051437091082]}} +{"t": 51.205769, "tracked": true, "track_id": 1, "bbox": [112.51285552978516, 37.19166946411133, 586.403564453125, 479.9205627441406], "det_conf": 0.9208306670188904, "mean_kpt_conf": 0.9386830980127508, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9086772178666495, "right_lift": -0.7372475138370949, "left_bend": 0.22335778700900502, "right_bend": 0.822087401194808}, "keypoints": {"0": [354.88671875, 135.70115661621094, 0.9993234872817993], "1": [376.4608154296875, 113.76992797851562, 0.9984418749809265], "2": [333.07220458984375, 113.04458618164062, 0.9971452355384827], "3": [403.0492858886719, 129.16537475585938, 0.9396976828575134], "4": [300.317138671875, 127.28924560546875, 0.865085244178772], "5": [462.5666809082031, 233.66134643554688, 0.9923537969589233], "6": [236.59445190429688, 240.00758361816406, 0.9977450370788574], "7": [535.2398071289062, 391.8326416015625, 0.8751932978630066], "8": [120.64950561523438, 366.528076171875, 0.9570627212524414], "9": [513.7620239257812, 469.13446044921875, 0.7595184445381165], "10": [148.43194580078125, 216.30938720703125, 0.9439472556114197], "11": [442.26031494140625, 480.0, 0.18647632002830505], "12": [292.6155700683594, 480.0, 0.2662181854248047], "13": [494.22882080078125, 423.5811767578125, 0.0012189977569505572], "14": [282.25335693359375, 436.6796875, 0.002000473439693451], "15": [456.979736328125, 480.0, 0.00012278775102458894], "16": [234.72183227539062, 473.56658935546875, 0.00017802567163016647]}} +{"t": 51.269361, "tracked": true, "track_id": 1, "bbox": [110.10041809082031, 36.61664962768555, 587.1761474609375, 479.8028259277344], "det_conf": 0.920280396938324, "mean_kpt_conf": 0.9376544302160089, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8978979297157954, "right_lift": -0.7406069136978688, "left_bend": 0.21251264222960786, "right_bend": 0.828422395252082}, "keypoints": {"0": [352.2078552246094, 134.97976684570312, 0.9993054866790771], "1": [374.07708740234375, 113.50747680664062, 0.9984613656997681], "2": [330.922119140625, 112.64529418945312, 0.9970916509628296], "3": [400.90386962890625, 129.35171508789062, 0.9435611963272095], "4": [298.9334716796875, 126.978759765625, 0.8632079362869263], "5": [460.957275390625, 230.82191467285156, 0.9923133254051208], "6": [233.27764892578125, 238.77639770507812, 0.9977333545684814], "7": [537.8162231445312, 387.5936279296875, 0.8763294816017151], "8": [117.46772766113281, 366.42144775390625, 0.9566468000411987], "9": [519.6956787109375, 471.8643798828125, 0.748854398727417], "10": [147.60069274902344, 216.06991577148438, 0.940693736076355], "11": [440.7730712890625, 480.0, 0.18509674072265625], "12": [290.0821838378906, 480.0, 0.2633281648159027], "13": [497.0862121582031, 419.0190734863281, 0.001214326242916286], "14": [282.774658203125, 433.30731201171875, 0.0020057945512235165], "15": [461.9111633300781, 480.0, 0.0001262174773728475], "16": [237.056884765625, 472.41168212890625, 0.0001843635836848989]}} +{"t": 51.302878, "tracked": true, "track_id": 1, "bbox": [109.24539184570312, 36.54304122924805, 586.9716186523438, 479.7561950683594], "det_conf": 0.9214396476745605, "mean_kpt_conf": 0.9373031204397028, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9012481301249725, "right_lift": -0.7455279039471511, "left_bend": 0.21272354552383915, "right_bend": 0.8265594110399311}, "keypoints": {"0": [351.3563537597656, 135.2241973876953, 0.9993094205856323], "1": [373.24365234375, 113.0904541015625, 0.998458981513977], "2": [329.9313049316406, 112.3924560546875, 0.9970746040344238], "3": [400.28253173828125, 127.7451171875, 0.9425367116928101], "4": [297.7669677734375, 125.69078063964844, 0.8619524240493774], "5": [459.7585754394531, 230.88381958007812, 0.9923421740531921], "6": [233.21421813964844, 239.02719116210938, 0.9977419376373291], "7": [535.814697265625, 389.0765380859375, 0.8751322031021118], "8": [117.60256958007812, 368.35205078125, 0.9560505151748657], "9": [516.9673461914062, 473.30596923828125, 0.7489461302757263], "10": [145.5785369873047, 218.5200653076172, 0.9407892227172852], "11": [439.4648132324219, 480.0, 0.18356424570083618], "12": [289.2335510253906, 480.0, 0.26161274313926697], "13": [494.5054016113281, 421.58074951171875, 0.0011906367726624012], "14": [279.5043029785156, 435.804443359375, 0.0019543615635484457], "15": [460.0184326171875, 480.0, 0.0001227252505486831], "16": [232.74327087402344, 471.9375, 0.0001779664307832718]}} +{"t": 51.338986, "tracked": true, "track_id": 1, "bbox": [108.77239227294922, 36.4588737487793, 586.8827514648438, 479.71844482421875], "det_conf": 0.9207215905189514, "mean_kpt_conf": 0.9362725073640997, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.892090077030446, "right_lift": -0.7466247280608937, "left_bend": 0.2191436593992681, "right_bend": 0.8232686378846706}, "keypoints": {"0": [350.77728271484375, 135.10610961914062, 0.9992955923080444], "1": [372.40576171875, 113.12196350097656, 0.9983491897583008], "2": [329.42010498046875, 112.17239379882812, 0.997134804725647], "3": [398.78692626953125, 127.45904541015625, 0.9369586706161499], "4": [296.7177734375, 124.97904968261719, 0.869922399520874], "5": [458.63079833984375, 230.47398376464844, 0.9922702312469482], "6": [232.09214782714844, 239.44578552246094, 0.9977282881736755], "7": [536.70751953125, 384.61871337890625, 0.8716687560081482], "8": [119.67289733886719, 365.61724853515625, 0.9550685882568359], "9": [516.9829711914062, 472.98492431640625, 0.7414932250976562], "10": [145.30990600585938, 218.56491088867188, 0.9391078352928162], "11": [439.4949035644531, 480.0, 0.19307556748390198], "12": [289.64599609375, 480.0, 0.2742920219898224], "13": [494.8611755371094, 424.5006103515625, 0.0012208870612084866], "14": [283.6658630371094, 439.0202331542969, 0.0020134143996983767], "15": [458.7796630859375, 480.0, 0.00012486096238717437], "16": [240.1502227783203, 471.8468017578125, 0.00018085917690768838]}} +{"t": 51.37326, "tracked": true, "track_id": 1, "bbox": [108.06551361083984, 36.34328079223633, 585.6143188476562, 479.79815673828125], "det_conf": 0.9219942688941956, "mean_kpt_conf": 0.9376428289846941, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8925605323615745, "right_lift": -0.7511607579581256, "left_bend": 0.21181631491372663, "right_bend": 0.828303846201755}, "keypoints": {"0": [350.21087646484375, 135.5138702392578, 0.9993081092834473], "1": [372.0061950683594, 112.95230102539062, 0.9983355402946472], "2": [328.7266540527344, 111.91595458984375, 0.9971818923950195], "3": [398.447021484375, 126.3448486328125, 0.9325215816497803], "4": [295.5331726074219, 123.50816345214844, 0.8729812502861023], "5": [457.499755859375, 230.27256774902344, 0.9923489093780518], "6": [230.59840393066406, 238.8489227294922, 0.9976848363876343], "7": [535.7520751953125, 385.16424560546875, 0.8746060132980347], "8": [118.3050537109375, 366.62939453125, 0.9545971155166626], "9": [518.7031860351562, 470.3021240234375, 0.7534244060516357], "10": [145.6198272705078, 217.85650634765625, 0.9410814642906189], "11": [438.2034912109375, 480.0, 0.1857411116361618], "12": [287.7832946777344, 480.0, 0.26159176230430603], "13": [494.2425842285156, 422.22442626953125, 0.0012168585089966655], "14": [280.3907165527344, 436.9688415527344, 0.001966600539162755], "15": [459.35028076171875, 480.0, 0.0001235766103491187], "16": [236.6494140625, 470.2015380859375, 0.00017571808712091297]}} +{"t": 51.436662, "tracked": true, "track_id": 1, "bbox": [106.13748168945312, 36.54081344604492, 588.089111328125, 479.9381408691406], "det_conf": 0.9183289408683777, "mean_kpt_conf": 0.9327373938126997, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8912009758610977, "right_lift": -0.7504092107540496, "left_bend": 0.21298086660608725, "right_bend": 0.8240545614332189}, "keypoints": {"0": [348.3399353027344, 135.6239013671875, 0.9992608428001404], "1": [370.4831237792969, 113.78054809570312, 0.9983726143836975], "2": [327.1016540527344, 112.78927612304688, 0.9969990253448486], "3": [397.82550048828125, 128.51193237304688, 0.9430558085441589], "4": [295.00408935546875, 125.75375366210938, 0.8610873818397522], "5": [457.58587646484375, 231.30300903320312, 0.9919101595878601], "6": [231.0247344970703, 238.864501953125, 0.9976133108139038], "7": [535.949951171875, 385.26422119140625, 0.863496720790863], "8": [120.92868041992188, 363.8575439453125, 0.9526551961898804], "9": [518.8517456054688, 470.3599548339844, 0.7226080298423767], "10": [145.74179077148438, 218.755615234375, 0.9330522418022156], "11": [437.17779541015625, 480.0, 0.19321571290493011], "12": [286.85308837890625, 480.0, 0.2758103907108307], "13": [496.66253662109375, 423.90625, 0.0012404940789565444], "14": [281.8603515625, 437.4915466308594, 0.002085310174152255], "15": [463.37603759765625, 480.0, 0.0001306328340433538], "16": [239.28713989257812, 470.1100769042969, 0.0001928443234646693]}} +{"t": 51.501321, "tracked": true, "track_id": 1, "bbox": [104.28089904785156, 36.72077941894531, 589.6647338867188, 480.0], "det_conf": 0.9161857962608337, "mean_kpt_conf": 0.9322376413778826, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8901641564015705, "right_lift": -0.7422830488422743, "left_bend": 0.21706887999724808, "right_bend": 0.8238124888867993}, "keypoints": {"0": [346.8975524902344, 137.2940673828125, 0.9992914199829102], "1": [369.07135009765625, 115.35601806640625, 0.9984217882156372], "2": [326.1091003417969, 113.99163818359375, 0.9970712661743164], "3": [396.4632568359375, 129.53216552734375, 0.9421065449714661], "4": [294.2013854980469, 125.69091796875, 0.8595507144927979], "5": [455.4563293457031, 233.31797790527344, 0.9919010996818542], "6": [229.83958435058594, 239.25839233398438, 0.9975695013999939], "7": [534.1945190429688, 387.1453857421875, 0.861529529094696], "8": [116.78790283203125, 364.4905090332031, 0.9509983658790588], "9": [516.9510498046875, 468.50494384765625, 0.7233427166938782], "10": [143.3287811279297, 219.30967712402344, 0.9328311085700989], "11": [435.429931640625, 480.0, 0.18315348029136658], "12": [285.3482666015625, 480.0, 0.26119720935821533], "13": [497.09698486328125, 423.77239990234375, 0.0011989572085440159], "14": [281.0536193847656, 436.2430114746094, 0.0019940093625336885], "15": [468.1036682128906, 480.0, 0.00012597207387443632], "16": [238.60369873046875, 467.56280517578125, 0.00018454193195793778]}} +{"t": 51.566918, "tracked": true, "track_id": 1, "bbox": [103.17990112304688, 37.458030700683594, 591.3175048828125, 479.9720458984375], "det_conf": 0.9138784408569336, "mean_kpt_conf": 0.9343296831304376, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8822874077247217, "right_lift": -0.7485545984703874, "left_bend": 0.21944386131234916, "right_bend": 0.8189931188499374}, "keypoints": {"0": [345.7423400878906, 138.11737060546875, 0.9993278980255127], "1": [367.4218444824219, 115.74432373046875, 0.9983674883842468], "2": [325.0273132324219, 114.5146484375, 0.9972518086433411], "3": [394.09844970703125, 128.6484375, 0.9350103735923767], "4": [292.4731750488281, 125.05606079101562, 0.8702296018600464], "5": [455.4134521484375, 234.28904724121094, 0.9926955699920654], "6": [226.57669067382812, 241.14590454101562, 0.9977023005485535], "7": [536.8908081054688, 387.00787353515625, 0.8687024712562561], "8": [117.45184326171875, 364.33880615234375, 0.9510183930397034], "9": [520.0850830078125, 470.2093505859375, 0.7334213852882385], "10": [140.67208862304688, 216.95680236816406, 0.9338992238044739], "11": [436.2686767578125, 480.0, 0.19772133231163025], "12": [284.5155029296875, 480.0, 0.27447959780693054], "13": [499.35467529296875, 429.00665283203125, 0.001211386057548225], "14": [284.08477783203125, 442.62982177734375, 0.001968562137335539], "15": [468.00750732421875, 480.0, 0.00011896379146492109], "16": [246.43179321289062, 470.478271484375, 0.00017036014469340444]}} +{"t": 51.634002, "tracked": true, "track_id": 1, "bbox": [101.98652648925781, 37.51342010498047, 592.819580078125, 479.78070068359375], "det_conf": 0.9133344292640686, "mean_kpt_conf": 0.9330864115194841, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8800269390765302, "right_lift": -0.7433379941438529, "left_bend": 0.2265712081212596, "right_bend": 0.8130658314656752}, "keypoints": {"0": [344.5618591308594, 136.339111328125, 0.9993138313293457], "1": [366.3144226074219, 114.89434814453125, 0.9983848333358765], "2": [323.87933349609375, 113.11376953125, 0.9971721768379211], "3": [392.697509765625, 129.68226623535156, 0.9385641813278198], "4": [291.228759765625, 125.19436645507812, 0.8666605949401855], "5": [453.2171325683594, 233.85150146484375, 0.9924330711364746], "6": [227.1236572265625, 240.97036743164062, 0.9976660013198853], "7": [534.815673828125, 385.05242919921875, 0.8665357232093811], "8": [116.65948486328125, 363.7245178222656, 0.9508953094482422], "9": [515.8173828125, 471.25762939453125, 0.7239561676979065], "10": [138.0563201904297, 217.68460083007812, 0.9323686361312866], "11": [437.4510803222656, 480.0, 0.20015591382980347], "12": [287.4031677246094, 480.0, 0.2798261344432831], "13": [499.1554870605469, 428.75341796875, 0.0012322430266067386], "14": [285.802001953125, 441.56689453125, 0.002012498676776886], "15": [470.0255126953125, 480.0, 0.00012156170851085335], "16": [246.7040557861328, 468.7247314453125, 0.0001757269783411175]}} +{"t": 51.702994, "tracked": true, "track_id": 1, "bbox": [101.46556091308594, 37.38642120361328, 593.2164916992188, 479.7313537597656], "det_conf": 0.9136937856674194, "mean_kpt_conf": 0.9345238046212629, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8822753933700206, "right_lift": -0.7370604419290326, "left_bend": 0.23038763862253184, "right_bend": 0.8196252213814553}, "keypoints": {"0": [343.1080322265625, 134.1142120361328, 0.9993301630020142], "1": [364.4873352050781, 112.85954284667969, 0.9985306262969971], "2": [322.2793884277344, 111.70111083984375, 0.9970711469650269], "3": [391.4405822753906, 128.55636596679688, 0.948137640953064], "4": [290.52239990234375, 125.516357421875, 0.8536487221717834], "5": [454.32220458984375, 233.93434143066406, 0.9926758408546448], "6": [226.98594665527344, 240.4771270751953, 0.9977810978889465], "7": [535.9212646484375, 386.87188720703125, 0.8710254430770874], "8": [115.04541015625, 362.5600891113281, 0.9539963006973267], "9": [516.1744384765625, 469.83843994140625, 0.7321837544441223], "10": [140.88900756835938, 216.75180053710938, 0.9353811144828796], "11": [439.54742431640625, 480.0, 0.2042824923992157], "12": [288.7382507324219, 480.0, 0.288628488779068], "13": [501.2176513671875, 429.27130126953125, 0.0011934640351682901], "14": [286.72845458984375, 441.7148742675781, 0.0019951474387198687], "15": [473.79376220703125, 480.0, 0.00011732933489838615], "16": [248.10989379882812, 469.41217041015625, 0.00017449141887482256]}} +{"t": 51.769226, "tracked": true, "track_id": 1, "bbox": [101.52539825439453, 37.78681182861328, 591.0074462890625, 479.7898254394531], "det_conf": 0.9129099249839783, "mean_kpt_conf": 0.9278375452215021, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8895598698517923, "right_lift": -0.7379211686861933, "left_bend": 0.21488412119497122, "right_bend": 0.8322803561598443}, "keypoints": {"0": [342.44903564453125, 132.70443725585938, 0.9993147850036621], "1": [363.28369140625, 111.89967346191406, 0.998448371887207], "2": [321.1131286621094, 110.804931640625, 0.9972262978553772], "3": [389.396240234375, 128.818115234375, 0.9408842921257019], "4": [288.4722595214844, 126.1043701171875, 0.8667976260185242], "5": [450.947265625, 236.43280029296875, 0.9919643402099609], "6": [224.75526428222656, 239.44549560546875, 0.9974946975708008], "7": [531.2911376953125, 392.8858947753906, 0.8508598208427429], "8": [112.66769409179688, 362.00201416015625, 0.9463757872581482], "9": [515.4398193359375, 470.81756591796875, 0.6926467418670654], "10": [144.205322265625, 216.81979370117188, 0.9242002367973328], "11": [434.2859191894531, 480.0, 0.18051695823669434], "12": [284.076171875, 480.0, 0.25824210047721863], "13": [499.0521240234375, 427.29595947265625, 0.0011617473792284727], "14": [283.1844482421875, 438.5007019042969, 0.0019544947426766157], "15": [476.3242492675781, 480.0, 0.00012402745778672397], "16": [245.68890380859375, 467.6671447753906, 0.00018370118050370365]}} +{"t": 51.832358, "tracked": true, "track_id": 1, "bbox": [100.69022369384766, 38.68472671508789, 589.1790771484375, 479.7639465332031], "det_conf": 0.9151319265365601, "mean_kpt_conf": 0.9332133477384393, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8898535913630824, "right_lift": -0.742566502099276, "left_bend": 0.2165793943067601, "right_bend": 0.8329229773777393}, "keypoints": {"0": [341.2866516113281, 131.8197784423828, 0.9993115663528442], "1": [361.58984375, 110.77833557128906, 0.9983962178230286], "2": [319.621826171875, 110.39413452148438, 0.9971446394920349], "3": [387.4049072265625, 127.562255859375, 0.9399054050445557], "4": [287.0199279785156, 126.48272705078125, 0.8675337433815002], "5": [451.6609802246094, 235.56507873535156, 0.9927772283554077], "6": [223.31488037109375, 239.39181518554688, 0.9975898265838623], "7": [532.877197265625, 393.96759033203125, 0.8668261766433716], "8": [113.33177185058594, 361.32843017578125, 0.9490973949432373], "9": [516.7395629882812, 470.9512939453125, 0.7256537079811096], "10": [144.74441528320312, 213.23388671875, 0.9311109185218811], "11": [436.43365478515625, 480.0, 0.18721958994865417], "12": [285.7555847167969, 480.0, 0.2609000504016876], "13": [501.421875, 423.26043701171875, 0.0012333450140431523], "14": [289.1049499511719, 435.7162170410156, 0.002036197343841195], "15": [474.35504150390625, 479.02679443359375, 0.0001252919901162386], "16": [254.0789794921875, 467.53656005859375, 0.00018381855625193566]}} +{"t": 51.894499, "tracked": true, "track_id": 1, "bbox": [99.88612365722656, 39.307960510253906, 585.9059448242188, 479.7718200683594], "det_conf": 0.9213439226150513, "mean_kpt_conf": 0.9306905215436762, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8913334011181082, "right_lift": -0.7389226039790161, "left_bend": 0.22381158024856646, "right_bend": 0.8454157141836673}, "keypoints": {"0": [339.2724304199219, 129.5620574951172, 0.9992685914039612], "1": [359.5001220703125, 109.61654663085938, 0.9985098242759705], "2": [317.5103759765625, 109.60797119140625, 0.9968895316123962], "3": [386.1909484863281, 128.86526489257812, 0.952284574508667], "4": [286.1070556640625, 128.9326171875, 0.8528652787208557], "5": [451.9549560546875, 234.61932373046875, 0.992445170879364], "6": [223.38841247558594, 239.53013610839844, 0.9975535273551941], "7": [532.1925048828125, 392.3752746582031, 0.8629011511802673], "8": [112.74057006835938, 360.8738098144531, 0.9496334791183472], "9": [513.10986328125, 472.92864990234375, 0.7081844210624695], "10": [150.91885375976562, 213.62164306640625, 0.9270601868629456], "11": [436.6206359863281, 480.0, 0.1946888566017151], "12": [285.4599914550781, 480.0, 0.27549028396606445], "13": [501.23828125, 423.0517883300781, 0.0012456784024834633], "14": [286.1683349609375, 435.83502197265625, 0.002129105618223548], "15": [473.657470703125, 480.0, 0.00013163679977878928], "16": [246.66204833984375, 469.2573547363281, 0.0002003131085075438]}} +{"t": 51.930236, "tracked": true, "track_id": 1, "bbox": [99.57324981689453, 39.684913635253906, 583.6189575195312, 479.70660400390625], "det_conf": 0.9218798875808716, "mean_kpt_conf": 0.9313044168732383, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8950940703190093, "right_lift": -0.7446416534502831, "left_bend": 0.2276077988624498, "right_bend": 0.8537895984217689}, "keypoints": {"0": [339.13763427734375, 129.01429748535156, 0.9992817044258118], "1": [359.4051818847656, 108.9095458984375, 0.9985424280166626], "2": [317.3011779785156, 109.14706420898438, 0.996947705745697], "3": [386.3730163574219, 128.0121612548828, 0.9532819986343384], "4": [285.9572448730469, 128.52920532226562, 0.8532031178474426], "5": [452.5798034667969, 234.46734619140625, 0.9926718473434448], "6": [222.3455047607422, 238.68597412109375, 0.9976060390472412], "7": [532.3223266601562, 394.54962158203125, 0.864989697933197], "8": [111.95388793945312, 361.8418884277344, 0.9504536390304565], "9": [512.2323608398438, 472.2881774902344, 0.7102475166320801], "10": [152.8462677001953, 214.924560546875, 0.9271228909492493], "11": [435.13507080078125, 480.0, 0.19735188782215118], "12": [282.5271301269531, 480.0, 0.27881744503974915], "13": [500.6834716796875, 424.5958251953125, 0.0012131539406254888], "14": [281.7278747558594, 436.9331359863281, 0.0020768800750374794], "15": [473.4021301269531, 480.0, 0.00012745315325446427], "16": [241.34146118164062, 470.4796142578125, 0.00019382985192351043]}} +{"t": 51.993028, "tracked": true, "track_id": 1, "bbox": [99.06169891357422, 39.7641487121582, 583.2728271484375, 479.86590576171875], "det_conf": 0.9251692891120911, "mean_kpt_conf": 0.9317090294577859, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8959756121005951, "right_lift": -0.746520506751798, "left_bend": 0.2331466679981681, "right_bend": 0.8605083368401925}, "keypoints": {"0": [338.6282043457031, 128.77049255371094, 0.9992770552635193], "1": [358.9745788574219, 109.08576965332031, 0.998547375202179], "2": [317.00860595703125, 108.93864440917969, 0.9968771934509277], "3": [385.8529968261719, 129.08253479003906, 0.9546696543693542], "4": [285.8392028808594, 128.66734313964844, 0.8495664596557617], "5": [452.2511291503906, 235.83412170410156, 0.9927164912223816], "6": [222.08853149414062, 238.62521362304688, 0.9976044297218323], "7": [532.3876953125, 397.5091552734375, 0.8648149967193604], "8": [111.29560852050781, 362.93218994140625, 0.9500819444656372], "9": [512.2840576171875, 469.51025390625, 0.7164512872695923], "10": [156.00289916992188, 212.98019409179688, 0.9281924366950989], "11": [436.1968078613281, 480.0, 0.1925085484981537], "12": [283.8506164550781, 480.0, 0.27229711413383484], "13": [501.3346862792969, 423.7529296875, 0.0012362365378066897], "14": [284.19287109375, 435.01409912109375, 0.0021140894386917353], "15": [475.72808837890625, 480.0, 0.00012799659452866763], "16": [245.1961669921875, 469.157958984375, 0.00019558126223273575]}} +{"t": 52.02719, "tracked": true, "track_id": 1, "bbox": [98.96175384521484, 39.85219955444336, 580.7744140625, 479.9447937011719], "det_conf": 0.9274632334709167, "mean_kpt_conf": 0.9316244992342863, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8984386192034769, "right_lift": -0.7460191616716803, "left_bend": 0.23396401162240954, "right_bend": 0.863065583876989}, "keypoints": {"0": [339.05841064453125, 128.90162658691406, 0.9992672801017761], "1": [359.28509521484375, 108.9833984375, 0.9985230565071106], "2": [317.0782775878906, 109.22958374023438, 0.9968934059143066], "3": [386.10186767578125, 128.88409423828125, 0.9533869028091431], "4": [285.68609619140625, 129.40493774414062, 0.8540868759155273], "5": [451.7611083984375, 236.2591094970703, 0.9926175475120544], "6": [221.81613159179688, 239.24960327148438, 0.997538685798645], "7": [531.3848876953125, 399.17694091796875, 0.862185001373291], "8": [110.06112670898438, 364.446044921875, 0.9478100538253784], "9": [511.20220947265625, 469.25244140625, 0.7180895805358887], "10": [156.7233428955078, 212.81610107421875, 0.9274711012840271], "11": [434.1810302734375, 480.0, 0.18490929901599884], "12": [282.39495849609375, 480.0, 0.2606099545955658], "13": [499.23077392578125, 422.81036376953125, 0.0012471267255023122], "14": [284.4669189453125, 434.56842041015625, 0.0021148649975657463], "15": [473.468017578125, 479.461669921875, 0.00013110079453326762], "16": [245.86790466308594, 469.47613525390625, 0.0001987363793887198]}} +{"t": 52.064816, "tracked": true, "track_id": 1, "bbox": [98.4416275024414, 39.7336540222168, 580.4769287109375, 480.0], "det_conf": 0.9254550933837891, "mean_kpt_conf": 0.9304806156591936, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8960197286969873, "right_lift": -0.7402857911634321, "left_bend": 0.2310028133866539, "right_bend": 0.8592644515121592}, "keypoints": {"0": [339.16400146484375, 128.94140625, 0.9992638230323792], "1": [359.302734375, 109.500732421875, 0.9984999895095825], "2": [317.5602111816406, 109.17936706542969, 0.99689781665802], "3": [385.83642578125, 129.7688446044922, 0.9531252980232239], "4": [286.1637878417969, 129.0688018798828, 0.8537589907646179], "5": [451.79412841796875, 237.72921752929688, 0.9925816059112549], "6": [222.02963256835938, 239.02716064453125, 0.9975535273551941], "7": [531.3753662109375, 398.323974609375, 0.860278844833374], "8": [111.5469970703125, 360.68365478515625, 0.9484788775444031], "9": [511.61407470703125, 470.956298828125, 0.709106981754303], "10": [156.56155395507812, 212.6332550048828, 0.9257410168647766], "11": [433.8111267089844, 480.0, 0.19188475608825684], "12": [281.77667236328125, 480.0, 0.27170395851135254], "13": [498.5906677246094, 425.1388244628906, 0.0012464486062526703], "14": [282.49749755859375, 435.6524353027344, 0.0021306227426975965], "15": [473.05914306640625, 479.59661865234375, 0.00013161584502086043], "16": [244.48980712890625, 468.0843811035156, 0.00020033335022162646]}} +{"t": 52.128381, "tracked": true, "track_id": 1, "bbox": [97.85210418701172, 39.84794235229492, 578.8336791992188, 480.0], "det_conf": 0.9245108366012573, "mean_kpt_conf": 0.9283170212398876, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8969394329590277, "right_lift": -0.7473511597857755, "left_bend": 0.22028481695202273, "right_bend": 0.8513858110624133}, "keypoints": {"0": [339.74835205078125, 129.322998046875, 0.9992675185203552], "1": [360.1154479980469, 109.6785888671875, 0.9984619617462158], "2": [318.13043212890625, 109.22288513183594, 0.9969993829727173], "3": [386.521240234375, 129.2783203125, 0.949619472026825], "4": [286.3454284667969, 128.26318359375, 0.8584012985229492], "5": [450.70001220703125, 236.81410217285156, 0.992331862449646], "6": [222.6200408935547, 238.69046020507812, 0.9975563287734985], "7": [529.8555908203125, 397.38677978515625, 0.8556511402130127], "8": [113.67413330078125, 361.2330017089844, 0.9483896493911743], "9": [512.2208862304688, 471.352783203125, 0.6923744678497314], "10": [153.00364685058594, 213.29714965820312, 0.9224341511726379], "11": [432.35113525390625, 480.0, 0.19830724596977234], "12": [280.9491271972656, 480.0, 0.2822854816913605], "13": [497.72125244140625, 428.7646484375, 0.001236487296409905], "14": [279.83587646484375, 439.5390930175781, 0.0021250764839351177], "15": [473.77520751953125, 480.0, 0.00013085361570119858], "16": [241.55990600585938, 469.5240478515625, 0.00019862876797560602]}} +{"t": 52.19484, "tracked": true, "track_id": 1, "bbox": [96.46600341796875, 39.857364654541016, 579.1237182617188, 480.0], "det_conf": 0.9203935861587524, "mean_kpt_conf": 0.9307760379531167, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8938008897259626, "right_lift": -0.7261972895759561, "left_bend": 0.2162790803266391, "right_bend": 0.8378761858608162}, "keypoints": {"0": [339.82977294921875, 129.9014434814453, 0.9992995262145996], "1": [360.6065368652344, 110.14599609375, 0.9985879063606262], "2": [318.3229675292969, 109.49562072753906, 0.9969933032989502], "3": [387.4341735839844, 129.8876953125, 0.954378604888916], "4": [286.85797119140625, 128.31741333007812, 0.851881206035614], "5": [450.5726623535156, 237.22525024414062, 0.9923170804977417], "6": [223.1239471435547, 238.48228454589844, 0.9975810050964355], "7": [530.803466796875, 397.1274108886719, 0.8598331809043884], "8": [107.10842895507812, 361.0303955078125, 0.9491108655929565], "9": [515.44775390625, 467.6434326171875, 0.7115604281425476], "10": [144.81039428710938, 212.569580078125, 0.9269933104515076], "11": [432.3494567871094, 480.0, 0.1882139891386032], "12": [281.7701721191406, 480.0, 0.2684503197669983], "13": [494.1114501953125, 426.0611572265625, 0.0012310357997193933], "14": [278.051025390625, 435.96270751953125, 0.002072125906124711], "15": [473.13134765625, 480.0, 0.00012878920824732631], "16": [239.39646911621094, 467.9119567871094, 0.0001938708737725392]}} +{"t": 52.259265, "tracked": true, "track_id": 1, "bbox": [94.3970947265625, 40.390846252441406, 581.0037231445312, 480.0], "det_conf": 0.9106290340423584, "mean_kpt_conf": 0.9316997473890131, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8931905272561859, "right_lift": -0.7269677491631988, "left_bend": 0.1884300070953372, "right_bend": 0.8165410883306499}, "keypoints": {"0": [340.13287353515625, 129.98110961914062, 0.9993686079978943], "1": [361.09661865234375, 110.416015625, 0.9987157583236694], "2": [319.0924987792969, 109.21817016601562, 0.9971325397491455], "3": [388.1478271484375, 130.26730346679688, 0.9565818905830383], "4": [288.0538330078125, 127.48764038085938, 0.8449832201004028], "5": [452.0968017578125, 237.0726318359375, 0.9927248954772949], "6": [225.0497589111328, 238.12826538085938, 0.9977582693099976], "7": [531.73388671875, 395.2547607421875, 0.8703081011772156], "8": [110.0533447265625, 359.873046875, 0.9549486637115479], "9": [522.4132690429688, 469.0936279296875, 0.7078295350074768], "10": [136.42628479003906, 215.39163208007812, 0.9283457398414612], "11": [435.05816650390625, 480.0, 0.20402148365974426], "12": [283.11541748046875, 480.0, 0.29139643907546997], "13": [498.0036926269531, 428.22174072265625, 0.001147618517279625], "14": [270.52630615234375, 437.7597961425781, 0.0019417714793235064], "15": [479.0125732421875, 480.0, 0.00011640239245025441], "16": [227.99000549316406, 470.39605712890625, 0.00017559214029461145]}} +{"t": 52.323947, "tracked": true, "track_id": 1, "bbox": [80.97967529296875, 40.797916412353516, 580.39990234375, 480.0], "det_conf": 0.9018046259880066, "mean_kpt_conf": 0.9279729127883911, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8910974896968147, "right_lift": -0.7047629223667452, "left_bend": 0.2157755051730656, "right_bend": 0.771307886134012}, "keypoints": {"0": [340.4209289550781, 131.09619140625, 0.9993550181388855], "1": [361.5128173828125, 110.56439208984375, 0.9987321496009827], "2": [319.439208984375, 109.83796691894531, 0.9970447421073914], "3": [388.708251953125, 128.67794799804688, 0.9596763849258423], "4": [288.87567138671875, 126.97872924804688, 0.839816689491272], "5": [451.9418640136719, 236.3564453125, 0.9922675490379333], "6": [226.8737335205078, 239.848388671875, 0.9976759552955627], "7": [532.7686767578125, 395.0666198730469, 0.854685366153717], "8": [103.65267944335938, 362.256591796875, 0.9471932649612427], "9": [516.896484375, 470.70562744140625, 0.6978235244750977], "10": [113.83164978027344, 217.59854125976562, 0.923431396484375], "11": [433.9412841796875, 480.0, 0.17418299615383148], "12": [285.2698059082031, 480.0, 0.25138941407203674], "13": [491.4137878417969, 423.9252624511719, 0.0011832071468234062], "14": [276.3308410644531, 433.5746765136719, 0.0019501983188092709], "15": [469.43505859375, 480.0, 0.00012508009967859834], "16": [235.1455535888672, 465.2859191894531, 0.0001862635836005211]}} +{"t": 52.357807, "tracked": true, "track_id": 1, "bbox": [76.2743148803711, 40.56194305419922, 581.2400512695312, 479.98944091796875], "det_conf": 0.9019845724105835, "mean_kpt_conf": 0.9300712888891046, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8857387815769392, "right_lift": -0.707207065723085, "left_bend": 0.21450347978640025, "right_bend": 0.7613216156198767}, "keypoints": {"0": [340.5970153808594, 130.8783416748047, 0.999394416809082], "1": [361.863037109375, 110.8631591796875, 0.9987794756889343], "2": [319.5777893066406, 109.63345336914062, 0.9971945285797119], "3": [388.63494873046875, 129.88314819335938, 0.9589331150054932], "4": [288.4476623535156, 127.29353332519531, 0.8413422703742981], "5": [451.4394226074219, 235.37789916992188, 0.9925404191017151], "6": [227.14361572265625, 239.34547424316406, 0.9977501034736633], "7": [534.6198120117188, 394.0996398925781, 0.8649023175239563], "8": [103.92572021484375, 362.59832763671875, 0.9510610103607178], "9": [519.6917724609375, 471.23406982421875, 0.7033291459083557], "10": [109.13932800292969, 215.49122619628906, 0.9255573749542236], "11": [434.5909423828125, 480.0, 0.18386681377887726], "12": [285.5711669921875, 480.0, 0.26312631368637085], "13": [491.5836181640625, 424.5787353515625, 0.001163539825938642], "14": [270.52081298828125, 433.67962646484375, 0.0018923222087323666], "15": [472.1058349609375, 480.0, 0.00011825995170511305], "16": [225.50762939453125, 465.67877197265625, 0.00017413772002328187]}} +{"t": 52.392547, "tracked": true, "track_id": 1, "bbox": [78.2431411743164, 40.795616149902344, 584.6666259765625, 479.9914855957031], "det_conf": 0.8997545838356018, "mean_kpt_conf": 0.9167380062016574, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.896546938926334, "right_lift": -0.6891971712103296, "left_bend": 0.2305986149391369, "right_bend": 0.7492454523417295}, "keypoints": {"0": [342.06500244140625, 131.62069702148438, 0.9992967844009399], "1": [362.759521484375, 110.49710083007812, 0.9983878135681152], "2": [320.644287109375, 110.12025451660156, 0.9972027540206909], "3": [389.0066223144531, 130.660400390625, 0.9364151358604431], "4": [288.4375305175781, 129.87799072265625, 0.8483558297157288], "5": [455.7538757324219, 238.94309997558594, 0.9879710078239441], "6": [230.50157165527344, 245.34671020507812, 0.997154951095581], "7": [533.8147583007812, 396.9416198730469, 0.7944420576095581], "8": [112.56094360351562, 357.52899169921875, 0.9487401843070984], "9": [512.6524047851562, 474.7484130859375, 0.6500470638275146], "10": [116.02101135253906, 204.77395629882812, 0.9261044859886169], "11": [444.399169921875, 465.83343505859375, 0.1304989904165268], "12": [296.7109680175781, 471.0829162597656, 0.21334926784038544], "13": [495.4342956542969, 415.54730224609375, 0.001522849197499454], "14": [295.40728759765625, 429.29779052734375, 0.0029279605951160192], "15": [455.63134765625, 480.0, 0.0001633713545743376], "16": [251.50106811523438, 478.6593017578125, 0.0002718981122598052]}} +{"t": 52.45609, "tracked": true, "track_id": 1, "bbox": [65.65140533447266, 40.64576721191406, 587.7653198242188, 479.9924011230469], "det_conf": 0.9163612127304077, "mean_kpt_conf": 0.9098227728496898, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8909731021713043, "right_lift": -0.6772535179012092, "left_bend": 0.2366128351223027, "right_bend": 0.7314382772634979}, "keypoints": {"0": [341.068115234375, 131.24253845214844, 0.9992803931236267], "1": [361.5618591308594, 110.00886535644531, 0.9984947443008423], "2": [319.7953796386719, 110.45201110839844, 0.9970832467079163], "3": [388.5688171386719, 130.48191833496094, 0.9478939175605774], "4": [289.07904052734375, 131.5511016845703, 0.8369809985160828], "5": [457.9781494140625, 239.432373046875, 0.9875665903091431], "6": [231.02267456054688, 247.4208221435547, 0.9971505999565125], "7": [538.5194702148438, 397.474853515625, 0.7720659971237183], "8": [109.815185546875, 358.99163818359375, 0.9435756206512451], "9": [516.8248291015625, 475.24920654296875, 0.6128156781196594], "10": [107.22515869140625, 206.09854125976562, 0.9151427149772644], "11": [443.7735290527344, 464.89068603515625, 0.11959563195705414], "12": [295.5380859375, 470.29608154296875, 0.19964952766895294], "13": [494.52630615234375, 413.3345947265625, 0.001472249859943986], "14": [293.9613952636719, 427.5201721191406, 0.00289289397187531], "15": [453.76806640625, 480.0, 0.00016856817819643766], "16": [249.14825439453125, 477.7597961425781, 0.0002871572505682707]}} +{"t": 52.491056, "tracked": true, "track_id": 1, "bbox": [57.95814514160156, 40.0198974609375, 588.8128051757812, 479.9549560546875], "det_conf": 0.9179317951202393, "mean_kpt_conf": 0.910807652906938, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8896180486668542, "right_lift": -0.660565325029177, "left_bend": 0.21890442911671992, "right_bend": 0.721950590865331}, "keypoints": {"0": [341.22137451171875, 131.75820922851562, 0.9993062019348145], "1": [361.8646545410156, 110.55081176757812, 0.998576283454895], "2": [320.2169189453125, 110.69744873046875, 0.9970976114273071], "3": [389.0732421875, 130.88909912109375, 0.9503345489501953], "4": [289.63330078125, 131.23419189453125, 0.8323018550872803], "5": [456.7087707519531, 240.92855834960938, 0.9876208901405334], "6": [231.3602752685547, 248.0612030029297, 0.9972884654998779], "7": [537.00537109375, 397.338623046875, 0.7772288918495178], "8": [107.02809143066406, 357.45513916015625, 0.94676673412323], "9": [519.7064208984375, 477.15997314453125, 0.6145212054252625], "10": [103.28125, 203.25106811523438, 0.9178414940834045], "11": [441.2963562011719, 464.9886474609375, 0.12596511840820312], "12": [293.4817199707031, 470.0707092285156, 0.21147695183753967], "13": [492.4471740722656, 417.1942138671875, 0.0014424852561205626], "14": [289.270263671875, 431.34075927734375, 0.002841608365997672], "15": [455.91986083984375, 480.0, 0.00016011789557524025], "16": [243.09805297851562, 476.6445617675781, 0.00027340816450305283]}} +{"t": 52.55344, "tracked": true, "track_id": 1, "bbox": [50.168880462646484, 40.39155197143555, 590.6829223632812, 479.8685607910156], "det_conf": 0.9173427820205688, "mean_kpt_conf": 0.9078571362928911, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8874815294571253, "right_lift": -0.6461003623094418, "left_bend": 0.22569501222938704, "right_bend": 0.7056280188975741}, "keypoints": {"0": [340.0921325683594, 132.02484130859375, 0.9992896318435669], "1": [360.64923095703125, 110.36210632324219, 0.9986182451248169], "2": [319.0245056152344, 111.573974609375, 0.9969781637191772], "3": [388.69390869140625, 129.93844604492188, 0.9568299055099487], "4": [289.508544921875, 132.3920135498047, 0.821723997592926], "5": [458.45947265625, 240.59234619140625, 0.9876917004585266], "6": [231.43946838378906, 247.4205322265625, 0.9973607659339905], "7": [539.9403076171875, 397.50628662109375, 0.768257737159729], "8": [106.77291870117188, 352.9519348144531, 0.9457128047943115], "9": [522.3218994140625, 472.71978759765625, 0.601026177406311], "10": [98.15834045410156, 200.54812622070312, 0.9129393696784973], "11": [442.5599365234375, 465.4857177734375, 0.13117240369319916], "12": [294.7196960449219, 470.5404357910156, 0.22194062173366547], "13": [494.7308044433594, 419.39093017578125, 0.0014580688439309597], "14": [296.02099609375, 433.3643493652344, 0.0029466012492775917], "15": [459.15289306640625, 480.0, 0.00016173181938938797], "16": [256.50360107421875, 478.3155822753906, 0.00028399244183674455]}} +{"t": 52.622622, "tracked": true, "track_id": 1, "bbox": [42.793338775634766, 40.57003402709961, 588.1838989257812, 479.861572265625], "det_conf": 0.916962742805481, "mean_kpt_conf": 0.912011596289548, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8917524016818155, "right_lift": -0.6389220881525334, "left_bend": 0.2340306230417797, "right_bend": 0.6996683293940381}, "keypoints": {"0": [339.1326599121094, 133.283203125, 0.9992788434028625], "1": [359.790283203125, 111.26504516601562, 0.9986182451248169], "2": [317.7752685546875, 112.81739807128906, 0.9968580007553101], "3": [388.10675048828125, 130.4715576171875, 0.9586891531944275], "4": [288.1959228515625, 133.6890411376953, 0.8162596821784973], "5": [457.1466064453125, 242.065673828125, 0.9879938364028931], "6": [230.5616455078125, 248.3816375732422, 0.9973751306533813], "7": [537.3247680664062, 400.06640625, 0.7787959575653076], "8": [104.71499633789062, 352.9041748046875, 0.9463261961936951], "9": [517.887451171875, 471.5100402832031, 0.6327667832374573], "10": [94.56092834472656, 198.85601806640625, 0.9191657304763794], "11": [439.68634033203125, 464.50921630859375, 0.1333095282316208], "12": [292.70025634765625, 469.316650390625, 0.2223721742630005], "13": [489.8828125, 419.43389892578125, 0.0015536870341748], "14": [294.9759826660156, 433.12255859375, 0.0030682466458529234], "15": [454.1482849121094, 480.0, 0.00016612018225714564], "16": [257.21917724609375, 477.6307373046875, 0.0002882338303606957]}} +{"t": 52.657277, "tracked": true, "track_id": 1, "bbox": [39.13047790527344, 40.814598083496094, 589.752197265625, 479.88140869140625], "det_conf": 0.91636723279953, "mean_kpt_conf": 0.9135414632883939, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8892762807357144, "right_lift": -0.6445063215481676, "left_bend": 0.23110724776624836, "right_bend": 0.697667350940798}, "keypoints": {"0": [338.7689514160156, 133.31350708007812, 0.9992905855178833], "1": [359.27252197265625, 111.489501953125, 0.998649537563324], "2": [317.7273864746094, 113.02383422851562, 0.996812641620636], "3": [387.5040283203125, 130.8966827392578, 0.9598656892776489], "4": [288.8028869628906, 134.12588500976562, 0.8098442554473877], "5": [456.802001953125, 241.14825439453125, 0.9883618950843811], "6": [231.7222900390625, 248.24903869628906, 0.9973322153091431], "7": [538.0877685546875, 399.1941223144531, 0.790316641330719], "8": [104.9993896484375, 355.06805419921875, 0.9468405842781067], "9": [519.1312866210938, 473.12249755859375, 0.6420693397521973], "10": [92.91560363769531, 203.174560546875, 0.9195727109909058], "11": [438.793212890625, 462.3759460449219, 0.13102054595947266], "12": [292.35009765625, 467.1756591796875, 0.21518635749816895], "13": [489.544677734375, 415.49713134765625, 0.0015446094330400229], "14": [291.816650390625, 429.1400451660156, 0.0029901026282459497], "15": [454.6405029296875, 480.0, 0.00016518888878636062], "16": [250.4684600830078, 476.7904052734375, 0.00028250800096429884]}} +{"t": 52.719723, "tracked": true, "track_id": 1, "bbox": [37.12376022338867, 40.32636260986328, 590.0523681640625, 479.9852294921875], "det_conf": 0.9161280393600464, "mean_kpt_conf": 0.9100571220571344, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.891279898403211, "right_lift": -0.6303435253688088, "left_bend": 0.2246622441596034, "right_bend": 0.6818997848747214}, "keypoints": {"0": [338.1885070800781, 133.9931182861328, 0.999271810054779], "1": [358.37744140625, 111.94361877441406, 0.9986569881439209], "2": [317.0606994628906, 114.08572387695312, 0.9967432618141174], "3": [386.990234375, 130.53775024414062, 0.9623779654502869], "4": [288.4821472167969, 135.11349487304688, 0.8063004016876221], "5": [456.9295654296875, 242.27639770507812, 0.9883925318717957], "6": [231.9371337890625, 249.10562133789062, 0.9974250793457031], "7": [536.6276245117188, 398.9259033203125, 0.7810654640197754], "8": [105.16468811035156, 352.04071044921875, 0.9462567567825317], "9": [519.0833740234375, 472.15087890625, 0.6202300786972046], "10": [88.6610107421875, 203.34963989257812, 0.9139080047607422], "11": [438.14801025390625, 463.33050537109375, 0.14556534588336945], "12": [291.74176025390625, 467.864501953125, 0.23977725207805634], "13": [487.9556884765625, 421.88580322265625, 0.0015963020268827677], "14": [289.9736633300781, 435.5260009765625, 0.0031279991380870342], "15": [453.51861572265625, 480.0, 0.00016943286755122244], "16": [249.8965301513672, 476.1199951171875, 0.0002926864253822714]}} +{"t": 52.78727, "tracked": true, "track_id": 1, "bbox": [31.04964256286621, 40.17132568359375, 592.7550048828125, 479.9394836425781], "det_conf": 0.909477174282074, "mean_kpt_conf": 0.9128623279658231, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.88803736038931, "right_lift": -0.627332441599143, "left_bend": 0.2333214429634129, "right_bend": 0.6772508478165522}, "keypoints": {"0": [338.0543518066406, 134.58792114257812, 0.9993040561676025], "1": [357.6600341796875, 112.39332580566406, 0.9986491799354553], "2": [316.6538391113281, 114.64857482910156, 0.9968940019607544], "3": [385.4348449707031, 130.63204956054688, 0.9598541855812073], "4": [287.600830078125, 135.669921875, 0.8128414154052734], "5": [455.9337158203125, 243.2994842529297, 0.9888561367988586], "6": [231.94505310058594, 249.1614990234375, 0.9974671602249146], "7": [537.6192626953125, 401.07318115234375, 0.788695752620697], "8": [104.61599731445312, 351.73291015625, 0.9483711123466492], "9": [518.8165283203125, 473.12646484375, 0.6323720216751099], "10": [86.58584594726562, 203.7884979248047, 0.9181805849075317], "11": [436.6385192871094, 465.36151123046875, 0.14416447281837463], "12": [290.7052001953125, 469.25372314453125, 0.23696938157081604], "13": [486.2133483886719, 422.3764953613281, 0.0015443939482793212], "14": [286.8565673828125, 434.8536682128906, 0.003010653890669346], "15": [451.819580078125, 480.0, 0.0001617671368876472], "16": [243.9110565185547, 475.4864196777344, 0.00027731643058359623]}} +{"t": 52.850273, "tracked": true, "track_id": 1, "bbox": [30.482589721679688, 40.14173126220703, 593.994873046875, 479.9205627441406], "det_conf": 0.9106853008270264, "mean_kpt_conf": 0.9127808159047907, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.887351152284281, "right_lift": -0.6241320144849974, "left_bend": 0.22353219613277817, "right_bend": 0.672014758847097}, "keypoints": {"0": [337.60650634765625, 134.4920196533203, 0.9992902278900146], "1": [357.3148498535156, 112.6273193359375, 0.9986804127693176], "2": [316.39349365234375, 115.02340698242188, 0.9967735409736633], "3": [385.6605224609375, 131.3731231689453, 0.9634504318237305], "4": [288.191162109375, 136.74166870117188, 0.8056027889251709], "5": [456.1141052246094, 242.65524291992188, 0.988914430141449], "6": [233.05868530273438, 249.80784606933594, 0.9975380897521973], "7": [536.6183471679688, 397.5813293457031, 0.7929754853248596], "8": [106.42152404785156, 350.96795654296875, 0.9504972696304321], "9": [519.6622314453125, 472.34649658203125, 0.6290226578712463], "10": [86.85806274414062, 205.42897033691406, 0.9178436398506165], "11": [437.1621398925781, 465.36114501953125, 0.15585565567016602], "12": [291.628662109375, 469.7816162109375, 0.2556748390197754], "13": [488.2598571777344, 423.2121887207031, 0.0015710045117884874], "14": [288.46826171875, 436.656005859375, 0.0031081808265298605], "15": [453.8552551269531, 480.0, 0.00016415352001786232], "16": [245.06265258789062, 476.4858093261719, 0.0002855459460988641]}} +{"t": 52.917289, "tracked": true, "track_id": 1, "bbox": [32.6238899230957, 40.40617370605469, 593.7069091796875, 479.87396240234375], "det_conf": 0.9128392934799194, "mean_kpt_conf": 0.9107695655389265, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8865237313195843, "right_lift": -0.634725260551404, "left_bend": 0.22092495308695007, "right_bend": 0.676857554679395}, "keypoints": {"0": [336.8033142089844, 136.07493591308594, 0.9992808699607849], "1": [356.83978271484375, 113.61698913574219, 0.9986774325370789], "2": [315.77227783203125, 115.9835205078125, 0.996717631816864], "3": [385.63409423828125, 131.00869750976562, 0.9631261229515076], "4": [287.57159423828125, 136.07131958007812, 0.8023511171340942], "5": [456.8394775390625, 241.89004516601562, 0.9887903928756714], "6": [231.6063690185547, 250.6138153076172, 0.9975224137306213], "7": [537.461669921875, 396.36614990234375, 0.7874887585639954], "8": [106.52850341796875, 353.3525085449219, 0.9486778378486633], "9": [520.7172241210938, 473.7723083496094, 0.6203184127807617], "10": [87.04811096191406, 206.67523193359375, 0.9155142307281494], "11": [439.1447448730469, 464.6125183105469, 0.1511707901954651], "12": [292.16436767578125, 469.7862243652344, 0.24876055121421814], "13": [490.5992431640625, 421.5721435546875, 0.0015639776829630136], "14": [289.1648254394531, 436.2987976074219, 0.0030944542959332466], "15": [454.0926208496094, 480.0, 0.0001662304566707462], "16": [246.79965209960938, 475.6921081542969, 0.0002891258627641946]}} +{"t": 52.981911, "tracked": true, "track_id": 1, "bbox": [36.96179962158203, 40.57167053222656, 590.0755615234375, 479.8067932128906], "det_conf": 0.9184624552726746, "mean_kpt_conf": 0.9131406003778632, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8848931713341575, "right_lift": -0.6267691698389039, "left_bend": 0.21542951060231635, "right_bend": 0.674899374834128}, "keypoints": {"0": [336.360107421875, 137.77340698242188, 0.9992940425872803], "1": [356.5242004394531, 114.76924133300781, 0.9986935257911682], "2": [315.0399475097656, 117.12457275390625, 0.9967435598373413], "3": [385.3334655761719, 130.91009521484375, 0.9618796110153198], "4": [286.15179443359375, 135.8786163330078, 0.803590714931488], "5": [455.3927001953125, 242.04611206054688, 0.9888883233070374], "6": [231.250732421875, 250.73797607421875, 0.9975177049636841], "7": [536.142822265625, 395.4513244628906, 0.7943904399871826], "8": [106.05950927734375, 351.43804931640625, 0.9496375322341919], "9": [520.5492553710938, 475.55615234375, 0.6344470977783203], "10": [87.07208251953125, 203.83676147460938, 0.9194640517234802], "11": [439.37115478515625, 466.24267578125, 0.15832452476024628], "12": [293.1636962890625, 471.5411071777344, 0.2576289176940918], "13": [488.4998474121094, 425.83416748046875, 0.0015763133997097611], "14": [289.2180480957031, 440.8818359375, 0.003066884819418192], "15": [452.38140869140625, 480.0, 0.00016143170068971813], "16": [247.38897705078125, 477.4425048828125, 0.0002771327563095838]}} +{"t": 53.051008, "tracked": true, "track_id": 1, "bbox": [42.39516830444336, 40.56538391113281, 589.1680908203125, 479.9092102050781], "det_conf": 0.9191123843193054, "mean_kpt_conf": 0.9158127849752252, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8845135566703162, "right_lift": -0.6364660479467882, "left_bend": 0.20612453120363664, "right_bend": 0.678872643043699}, "keypoints": {"0": [337.3086853027344, 138.51400756835938, 0.9992994070053101], "1": [357.5272521972656, 115.28556823730469, 0.9986575841903687], "2": [315.6244812011719, 117.70217895507812, 0.9968107342720032], "3": [386.235107421875, 130.91412353515625, 0.9590933322906494], "4": [286.0467224121094, 136.0386962890625, 0.8080490231513977], "5": [455.477783203125, 241.99954223632812, 0.9890542030334473], "6": [231.9232177734375, 249.81820678710938, 0.9975113868713379], "7": [536.5468139648438, 395.706787109375, 0.8016893267631531], "8": [109.406494140625, 350.91668701171875, 0.9514940977096558], "9": [523.90625, 472.94769287109375, 0.6493227481842041], "10": [90.77955627441406, 206.1468048095703, 0.9229587912559509], "11": [439.4793701171875, 465.560546875, 0.16534264385700226], "12": [293.4970703125, 470.55133056640625, 0.266853928565979], "13": [488.95245361328125, 426.6853942871094, 0.0016071773134171963], "14": [289.2430725097656, 441.18353271484375, 0.003120647743344307], "15": [454.14251708984375, 480.0, 0.00015948570217005908], "16": [248.76661682128906, 477.4652099609375, 0.0002724523947108537]}} +{"t": 53.085379, "tracked": true, "track_id": 1, "bbox": [45.188201904296875, 42.17881393432617, 588.457275390625, 479.83636474609375], "det_conf": 0.9148861765861511, "mean_kpt_conf": 0.9376431595195424, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8912972939334421, "right_lift": -0.6510795278164948, "left_bend": 0.2931612229080971, "right_bend": 0.6908198241661425}, "keypoints": {"0": [336.5885009765625, 139.17208862304688, 0.9994854927062988], "1": [357.4631042480469, 115.35079956054688, 0.9989408850669861], "2": [314.6283874511719, 117.55413818359375, 0.997250497341156], "3": [387.5419006347656, 128.85409545898438, 0.9643442630767822], "4": [284.5066833496094, 133.59234619140625, 0.798376202583313], "5": [458.5699462890625, 240.06417846679688, 0.9930839538574219], "6": [227.72483825683594, 247.071533203125, 0.9983097314834595], "7": [536.2747802734375, 392.8104248046875, 0.8757234215736389], "8": [102.15921020507812, 354.78192138671875, 0.9672072529792786], "9": [508.008056640625, 451.26800537109375, 0.77000892162323], "10": [86.39411926269531, 211.42092895507812, 0.9513441324234009], "11": [437.73095703125, 480.0, 0.23680271208286285], "12": [284.37298583984375, 480.0, 0.3497092127799988], "13": [488.2027587890625, 439.630859375, 0.001108956173993647], "14": [267.1026916503906, 449.38116455078125, 0.001994258025661111], "15": [454.56201171875, 480.0, 8.611776138423011e-05], "16": [217.39193725585938, 475.19561767578125, 0.0001388140517519787]}} +{"t": 53.147746, "tracked": true, "track_id": 1, "bbox": [43.44008255004883, 40.71766662597656, 594.9755859375, 480.0], "det_conf": 0.9101731181144714, "mean_kpt_conf": 0.9135076999664307, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8880357106601333, "right_lift": -0.6325876840877983, "left_bend": 0.18350392083673162, "right_bend": 0.6829521375867957}, "keypoints": {"0": [339.61566162109375, 141.33670043945312, 0.9992464780807495], "1": [361.12359619140625, 116.27687072753906, 0.9986228942871094], "2": [317.6191101074219, 119.00375366210938, 0.996557891368866], "3": [391.7523193359375, 128.593505859375, 0.9584428668022156], "4": [287.74517822265625, 133.76669311523438, 0.8004150390625], "5": [458.8866882324219, 240.21778869628906, 0.988029420375824], "6": [231.74127197265625, 249.10104370117188, 0.9973862767219543], "7": [537.6730346679688, 392.3904113769531, 0.7883277535438538], "8": [108.08578491210938, 350.1004943847656, 0.947685956954956], "9": [530.2739868164062, 467.07122802734375, 0.651527464389801], "10": [91.84765625, 203.25027465820312, 0.9223426580429077], "11": [441.67327880859375, 465.80291748046875, 0.1541440635919571], "12": [294.0929870605469, 472.0535888671875, 0.25102776288986206], "13": [491.5177001953125, 425.0377197265625, 0.0015886584296822548], "14": [295.4854736328125, 442.0908203125, 0.003092254512012005], "15": [455.2919006347656, 478.6842041015625, 0.0001612186460988596], "16": [261.8928527832031, 477.7335205078125, 0.00027602838235907257]}} +{"t": 53.217401, "tracked": true, "track_id": 1, "bbox": [45.87322235107422, 40.35736083984375, 589.7340087890625, 480.0], "det_conf": 0.9227889180183411, "mean_kpt_conf": 0.9171823263168335, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8814242919483178, "right_lift": -0.655516505059646, "left_bend": 0.34691219338806467, "right_bend": 0.6925128932255757}, "keypoints": {"0": [343.7464294433594, 143.91806030273438, 0.9992625117301941], "1": [365.2562255859375, 118.24992370605469, 0.9983200430870056], "2": [321.51275634765625, 119.64787292480469, 0.9970163106918335], "3": [394.3307800292969, 128.3434295654297, 0.9364222288131714], "4": [288.0614929199219, 130.86009216308594, 0.8306773900985718], "5": [459.0627746582031, 243.7277069091797, 0.9875353574752808], "6": [229.5439453125, 251.20059204101562, 0.9973213076591492], "7": [538.5054931640625, 391.9787902832031, 0.7682541608810425], "8": [109.16458129882812, 355.6929931640625, 0.9423825740814209], "9": [512.230712890625, 430.5556640625, 0.7020732760429382], "10": [92.91096496582031, 208.62266540527344, 0.9297404289245605], "11": [439.2151184082031, 470.42083740234375, 0.1536485105752945], "12": [289.7305908203125, 475.5027160644531, 0.249476820230484], "13": [480.8208923339844, 434.6625671386719, 0.001707842224277556], "14": [287.0514221191406, 446.6445007324219, 0.0031633074395358562], "15": [444.2687683105469, 476.11578369140625, 0.00015579641330987215], "16": [256.8130798339844, 469.53173828125, 0.0002521162969060242]}} +{"t": 53.279664, "tracked": true, "track_id": 1, "bbox": [49.79004669189453, 42.105186462402344, 562.6022338867188, 479.7121276855469], "det_conf": 0.9219158291816711, "mean_kpt_conf": 0.9471815391020342, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8830277270481478, "right_lift": -0.6871056014700048, "left_bend": 0.9701128245337738, "right_bend": 0.7169949329062173}, "keypoints": {"0": [348.3802185058594, 145.1083221435547, 0.9994035959243774], "1": [371.218505859375, 121.54949951171875, 0.9983139038085938], "2": [326.429443359375, 119.7479248046875, 0.9974527955055237], "3": [398.4981689453125, 133.23590087890625, 0.9177679419517517], "4": [289.9598693847656, 128.93373107910156, 0.8579840660095215], "5": [450.51092529296875, 244.36740112304688, 0.9920185208320618], "6": [226.32565307617188, 246.27035522460938, 0.9980077147483826], "7": [523.4734497070312, 381.646484375, 0.8731986284255981], "8": [103.41392517089844, 362.50799560546875, 0.9610100984573364], "9": [506.52001953125, 355.9058532714844, 0.86471027135849], "10": [92.34609985351562, 216.7512664794922, 0.9591293931007385], "11": [424.8148193359375, 480.0, 0.24937263131141663], "12": [275.0198974609375, 480.0, 0.3484843969345093], "13": [453.2182312011719, 440.97052001953125, 0.0016098867636173964], "14": [240.7623291015625, 444.393310546875, 0.002393994014710188], "15": [431.2825622558594, 465.9598388671875, 0.00011074004578404129], "16": [203.01055908203125, 453.0601806640625, 0.0001481900253565982]}} +{"t": 53.346225, "tracked": true, "track_id": 1, "bbox": [51.677024841308594, 42.766170501708984, 553.3763427734375, 479.8372802734375], "det_conf": 0.9228355288505554, "mean_kpt_conf": 0.946656508879228, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8388017717232112, "right_lift": -0.69122984565214, "left_bend": 0.9678899191086597, "right_bend": 0.7234152825070669}, "keypoints": {"0": [355.6957092285156, 149.75729370117188, 0.9994024038314819], "1": [378.37823486328125, 126.3138427734375, 0.9975195527076721], "2": [333.8355712890625, 122.45574951171875, 0.9979071617126465], "3": [401.9682922363281, 135.639404296875, 0.8213887810707092], "4": [292.60797119140625, 127.11111450195312, 0.9021438360214233], "5": [445.00048828125, 241.39126586914062, 0.991810142993927], "6": [226.5995635986328, 246.9707489013672, 0.9977606534957886], "7": [522.63671875, 361.003662109375, 0.8805471062660217], "8": [103.25981140136719, 364.95025634765625, 0.9585742354393005], "9": [492.3523254394531, 302.0927429199219, 0.9009618759155273], "10": [94.05934143066406, 215.07296752929688, 0.9652058482170105], "11": [421.26116943359375, 480.0, 0.2600237727165222], "12": [274.7221984863281, 480.0, 0.34317633509635925], "13": [443.20574951171875, 439.6117248535156, 0.00186221394687891], "14": [239.72280883789062, 441.08087158203125, 0.0024512712843716145], "15": [422.2181091308594, 458.90496826171875, 0.0001170100222225301], "16": [199.8104248046875, 437.7041015625, 0.00013746286276727915]}} +{"t": 53.412636, "tracked": true, "track_id": 1, "bbox": [51.24323272705078, 43.94818878173828, 557.9886474609375, 479.89111328125], "det_conf": 0.9211974143981934, "mean_kpt_conf": 0.9340809746222063, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7303065074662607, "right_lift": -0.6954480292508334, "left_bend": 0.8954104609298376, "right_bend": 0.7307057748368482}, "keypoints": {"0": [361.6130065917969, 155.31214904785156, 0.9994053840637207], "1": [384.58392333984375, 131.63796997070312, 0.9964792132377625], "2": [340.22845458984375, 125.47517395019531, 0.9982641339302063], "3": [404.9403381347656, 139.10311889648438, 0.6677150726318359], "4": [294.9656982421875, 125.35670471191406, 0.9252230525016785], "5": [441.1452331542969, 241.61280822753906, 0.9907053112983704], "6": [228.33059692382812, 248.2247314453125, 0.9968417882919312], "7": [535.8487548828125, 342.8580322265625, 0.8688412308692932], "8": [103.79887390136719, 368.74822998046875, 0.9414938688278198], "9": [490.82647705078125, 242.9671630859375, 0.9246329665184021], "10": [96.99542236328125, 215.1317901611328, 0.9652886986732483], "11": [417.9010925292969, 480.0, 0.19253019988536835], "12": [276.6236877441406, 480.0, 0.23964469134807587], "13": [427.9018859863281, 431.96270751953125, 0.0019603727851063013], "14": [244.9982452392578, 426.67529296875, 0.002231267746537924], "15": [411.3424377441406, 453.9588623046875, 0.00012858305126428604], "16": [210.65354919433594, 419.555908203125, 0.00013099456555210054]}} +{"t": 53.480242, "tracked": true, "track_id": 1, "bbox": [52.750587463378906, 45.64570999145508, 562.9503784179688, 480.0], "det_conf": 0.9258102178573608, "mean_kpt_conf": 0.920754530213096, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6904431262119204, "right_lift": -0.6989832133858087, "left_bend": 0.8952395187637281, "right_bend": 0.7365674987803793}, "keypoints": {"0": [367.3215026855469, 161.34739685058594, 0.9994155168533325], "1": [391.5394592285156, 136.86062622070312, 0.9954169988632202], "2": [346.4032287597656, 128.90292358398438, 0.9985381364822388], "3": [411.34527587890625, 141.11619567871094, 0.5209002494812012], "4": [298.119140625, 123.00018310546875, 0.9400390982627869], "5": [441.921630859375, 241.30184936523438, 0.9901053309440613], "6": [228.36663818359375, 248.06793212890625, 0.9964847564697266], "7": [535.9228515625, 331.0221862792969, 0.8580300211906433], "8": [102.83035278320312, 370.76837158203125, 0.9340217113494873], "9": [470.47943115234375, 205.1881561279297, 0.9290404319763184], "10": [98.02494812011719, 214.67630004882812, 0.9663075804710388], "11": [417.07281494140625, 480.0, 0.17543335258960724], "12": [275.0535888671875, 480.0, 0.2130860984325409], "13": [425.8883361816406, 434.54815673828125, 0.0019734923262149096], "14": [249.134765625, 424.9457702636719, 0.002125381724908948], "15": [408.5152282714844, 451.4311218261719, 0.0001301826850976795], "16": [217.990478515625, 408.63427734375, 0.00012360973050817847]}} +{"t": 53.545022, "tracked": true, "track_id": 1, "bbox": [53.52470016479492, 47.064205169677734, 564.4635620117188, 479.64410400390625], "det_conf": 0.927105188369751, "mean_kpt_conf": 0.910448052666404, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6898024102540711, "right_lift": -0.6822246726387827, "left_bend": 0.9241329662430388, "right_bend": 0.7319199236712464}, "keypoints": {"0": [373.7537841796875, 162.8123779296875, 0.9994660019874573], "1": [396.2472229003906, 135.69683837890625, 0.9949406385421753], "2": [351.2431335449219, 130.25689697265625, 0.9987975358963013], "3": [415.42022705078125, 135.07699584960938, 0.41505563259124756], "4": [300.4258728027344, 123.01895141601562, 0.9509838819503784], "5": [448.9209289550781, 238.17672729492188, 0.9892262816429138], "6": [230.7497100830078, 250.33908081054688, 0.9963544607162476], "7": [539.08154296875, 324.0789489746094, 0.8407089114189148], "8": [102.51100158691406, 369.9978332519531, 0.9309425354003906], "9": [455.3117370605469, 193.74154663085938, 0.9292146563529968], "10": [99.04139709472656, 213.75711059570312, 0.9692380428314209], "11": [422.3594665527344, 480.0, 0.16340258717536926], "12": [277.4132995605469, 480.0, 0.20214538276195526], "13": [429.51873779296875, 437.0047607421875, 0.0019107378320768476], "14": [252.909423828125, 430.664794921875, 0.0020730539690703154], "15": [406.7148132324219, 448.639404296875, 0.00011963531142100692], "16": [220.73959350585938, 412.86669921875, 0.00011178784188814461]}} +{"t": 53.608783, "tracked": true, "track_id": 1, "bbox": [53.200714111328125, 48.392154693603516, 566.6594848632812, 479.66998291015625], "det_conf": 0.9293631911277771, "mean_kpt_conf": 0.9628511428833008, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.653745723240224, "right_lift": -0.6802789393588836, "left_bend": 0.9248943401036669, "right_bend": 0.7295067318045382}, "keypoints": {"0": [376.797607421875, 162.5093231201172, 0.9995098114013672], "1": [397.4013977050781, 135.02691650390625, 0.9944748282432556], "2": [353.816650390625, 131.3829345703125, 0.9989680051803589], "3": [414.9720153808594, 133.15499877929688, 0.3288627862930298], "4": [301.90228271484375, 125.5615234375, 0.9576876163482666], "5": [452.2934265136719, 232.9968719482422, 0.9899882674217224], "6": [230.39385986328125, 252.05996704101562, 0.9961812496185303], "7": [543.1134033203125, 311.45867919921875, 0.8562047481536865], "8": [102.21575927734375, 371.02642822265625, 0.9311703443527222], "9": [448.08416748046875, 178.99876403808594, 0.9341954588890076], "10": [98.032958984375, 216.86801147460938, 0.9701310992240906], "11": [426.36175537109375, 480.0, 0.17527234554290771], "12": [278.6255187988281, 480.0, 0.20581139624118805], "13": [437.2359619140625, 432.52410888671875, 0.0019636547658592463], "14": [255.48193359375, 429.66632080078125, 0.0020249313674867153], "15": [408.8515930175781, 446.67901611328125, 0.00011873044422827661], "16": [219.20094299316406, 414.939453125, 0.00010503902012715116]}} +{"t": 53.643184, "tracked": true, "track_id": 1, "bbox": [53.75346374511719, 48.324562072753906, 567.26025390625, 479.8122253417969], "det_conf": 0.9272626638412476, "mean_kpt_conf": 0.9631326556205749, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6464231308251678, "right_lift": -0.6818361837610266, "left_bend": 0.9138412506302634, "right_bend": 0.72750409166237}, "keypoints": {"0": [376.46453857421875, 161.90170288085938, 0.9995063543319702], "1": [397.24609375, 135.28038024902344, 0.9942052960395813], "2": [354.17236328125, 130.7952880859375, 0.9989871382713318], "3": [414.32696533203125, 134.6212615966797, 0.31823721528053284], "4": [302.4532165527344, 124.99835205078125, 0.9597811102867126], "5": [450.7694396972656, 234.26515197753906, 0.9902492165565491], "6": [229.887939453125, 251.42628479003906, 0.996304988861084], "7": [541.9642944335938, 311.5286865234375, 0.8570851683616638], "8": [103.07295227050781, 369.630615234375, 0.9327784180641174], "9": [450.29339599609375, 176.73504638671875, 0.9328770637512207], "10": [97.58793640136719, 215.38229370117188, 0.9695518016815186], "11": [424.3519287109375, 480.0, 0.18481160700321198], "12": [277.0776672363281, 480.0, 0.2174077332019806], "13": [434.3906555175781, 433.87933349609375, 0.0020540240220725536], "14": [252.34024047851562, 429.572998046875, 0.002115453826263547], "15": [406.9462585449219, 446.5553894042969, 0.0001230132329510525], "16": [216.5697784423828, 412.4854736328125, 0.00010818513692356646]}} +{"t": 53.705962, "tracked": true, "track_id": 1, "bbox": [54.050899505615234, 48.21302032470703, 567.1019287109375, 479.9545593261719], "det_conf": 0.9292978644371033, "mean_kpt_conf": 0.962472015619278, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6367298835789661, "right_lift": -0.6825391180244552, "left_bend": 0.9152338959644409, "right_bend": 0.729731012331898}, "keypoints": {"0": [376.15985107421875, 162.54266357421875, 0.999503493309021], "1": [396.8160095214844, 135.95608520507812, 0.9937471151351929], "2": [354.37158203125, 130.94464111328125, 0.9990037083625793], "3": [413.3340759277344, 134.8896942138672, 0.2850981056690216], "4": [302.5833435058594, 124.00875854492188, 0.961534321308136], "5": [447.9872741699219, 234.88134765625, 0.9898611307144165], "6": [229.83375549316406, 251.93515014648438, 0.9959990978240967], "7": [538.7977294921875, 309.86865234375, 0.8537482023239136], "8": [102.7362060546875, 370.63140869140625, 0.9273746013641357], "9": [443.5127258300781, 174.76199340820312, 0.9344910979270935], "10": [98.21279907226562, 217.39186096191406, 0.9694573879241943], "11": [421.1072082519531, 480.0, 0.1741236299276352], "12": [275.71820068359375, 480.0, 0.20134860277175903], "13": [431.4843444824219, 433.74395751953125, 0.002092402195557952], "14": [254.33831787109375, 428.9220275878906, 0.0020958618260920048], "15": [405.27886962890625, 448.13092041015625, 0.0001250879722647369], "16": [219.69654846191406, 412.1726379394531, 0.00010703699081204832]}} +{"t": 53.774529, "tracked": true, "track_id": 1, "bbox": [52.391483306884766, 47.83258056640625, 566.7946166992188, 479.98187255859375], "det_conf": 0.9254921674728394, "mean_kpt_conf": 0.962075924873352, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6590782117452858, "right_lift": -0.6860883898170627, "left_bend": 0.9182855905433591, "right_bend": 0.7299485229105507}, "keypoints": {"0": [377.79901123046875, 164.06201171875, 0.9994946718215942], "1": [399.06109619140625, 137.91571044921875, 0.993243396282196], "2": [356.4365234375, 131.59471130371094, 0.9990092515945435], "3": [415.12628173828125, 137.30557250976562, 0.25229915976524353], "4": [303.7076721191406, 123.30810546875, 0.9638928174972534], "5": [446.79583740234375, 237.31033325195312, 0.9895880222320557], "6": [229.9756622314453, 252.35018920898438, 0.995951771736145], "7": [533.4891357421875, 313.28375244140625, 0.8511850237846375], "8": [102.90411376953125, 372.1854248046875, 0.9263856410980225], "9": [441.44635009765625, 177.1416778564453, 0.9327715039253235], "10": [97.60662841796875, 215.0219268798828, 0.9692371487617493], "11": [422.0845947265625, 480.0, 0.17572027444839478], "12": [277.07574462890625, 480.0, 0.20274600386619568], "13": [429.64471435546875, 436.1129455566406, 0.002157479291781783], "14": [252.2399139404297, 430.7017822265625, 0.002111320849508047], "15": [404.4153747558594, 449.4835205078125, 0.00012644358503166586], "16": [217.95840454101562, 410.95703125, 0.00010565197590040043]}} +{"t": 53.840854, "tracked": true, "track_id": 1, "bbox": [53.21793746948242, 47.63015365600586, 566.5484008789062, 479.9840087890625], "det_conf": 0.9264689087867737, "mean_kpt_conf": 0.963983702659607, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6588183894819013, "right_lift": -0.687786909488336, "left_bend": 0.9257618685186149, "right_bend": 0.7330596288498811}, "keypoints": {"0": [379.0466003417969, 162.38922119140625, 0.9995502829551697], "1": [398.6888122558594, 135.96847534179688, 0.9930272698402405], "2": [357.214599609375, 130.98822021484375, 0.9991600513458252], "3": [413.2170715332031, 135.12876892089844, 0.20579743385314941], "4": [303.6952819824219, 124.35646057128906, 0.96916663646698], "5": [447.6190185546875, 235.43743896484375, 0.9900182485580444], "6": [229.69314575195312, 252.45616149902344, 0.9959328770637512], "7": [535.89013671875, 312.73968505859375, 0.8573647141456604], "8": [102.00283813476562, 373.4400329589844, 0.9286611080169678], "9": [439.21405029296875, 176.84048461914062, 0.9358986020088196], "10": [97.93461608886719, 218.54010009765625, 0.9710572361946106], "11": [423.0172119140625, 480.0, 0.17203807830810547], "12": [277.078125, 480.0, 0.1964462548494339], "13": [431.25018310546875, 433.47906494140625, 0.002093171002343297], "14": [250.14260864257812, 429.2364501953125, 0.002020529704168439], "15": [405.9935302734375, 450.287109375, 0.00011878797522513196], "16": [213.2402801513672, 415.03143310546875, 9.686606063041836e-05]}} +{"t": 53.90904, "tracked": true, "track_id": 1, "bbox": [55.051963806152344, 47.712738037109375, 566.4714965820312, 479.9740295410156], "det_conf": 0.9288875460624695, "mean_kpt_conf": 0.9632655382156372, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6634903462014332, "right_lift": -0.6882889816824832, "left_bend": 0.9289045530611838, "right_bend": 0.740655677946126}, "keypoints": {"0": [379.4171142578125, 162.58401489257812, 0.9995187520980835], "1": [400.5406799316406, 136.3215789794922, 0.9936856627464294], "2": [357.3885192871094, 130.61468505859375, 0.9990580677986145], "3": [416.6673583984375, 136.3672637939453, 0.2628563344478607], "4": [304.2597961425781, 124.04945373535156, 0.9640308618545532], "5": [449.6296691894531, 235.40478515625, 0.9894540309906006], "6": [230.3702392578125, 251.9950408935547, 0.9960136413574219], "7": [536.8026733398438, 312.7098083496094, 0.8536328077316284], "8": [101.16363525390625, 374.5853271484375, 0.9303752183914185], "9": [439.19244384765625, 176.5511474609375, 0.935426652431488], "10": [100.68411254882812, 219.1837615966797, 0.971459686756134], "11": [424.30938720703125, 480.0, 0.16566456854343414], "12": [277.6275939941406, 480.0, 0.19416165351867676], "13": [433.88885498046875, 432.6565856933594, 0.0020014618057757616], "14": [253.4324188232422, 427.6955871582031, 0.002010743133723736], "15": [407.7237243652344, 451.9326477050781, 0.00011804735549958423], "16": [216.3092041015625, 414.55853271484375, 0.00010086652764584869]}} +{"t": 53.969867, "tracked": true, "track_id": 1, "bbox": [56.19084930419922, 47.606807708740234, 566.3414306640625, 480.0], "det_conf": 0.9298453330993652, "mean_kpt_conf": 0.9634868800640106, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6598708770263852, "right_lift": -0.6897607361822328, "left_bend": 0.9336117294370931, "right_bend": 0.741284471158579}, "keypoints": {"0": [379.95135498046875, 161.456787109375, 0.9995442032814026], "1": [399.68438720703125, 134.53033447265625, 0.9932209253311157], "2": [357.2904052734375, 130.1434783935547, 0.9991520643234253], "3": [414.70556640625, 133.66690063476562, 0.21529829502105713], "4": [303.4463195800781, 124.48037719726562, 0.9682033658027649], "5": [450.22509765625, 233.5421905517578, 0.9896968603134155], "6": [230.32894897460938, 252.0657958984375, 0.9957354068756104], "7": [538.7339477539062, 311.2718200683594, 0.8541262745857239], "8": [101.92024230957031, 374.3955078125, 0.9268003702163696], "9": [436.11090087890625, 173.89334106445312, 0.9368261098861694], "10": [101.43412780761719, 219.63279724121094, 0.9715632200241089], "11": [424.9556579589844, 480.0, 0.15458440780639648], "12": [278.1045837402344, 480.0, 0.17668186128139496], "13": [435.0907897949219, 427.3570251464844, 0.0019937437027692795], "14": [254.62234497070312, 423.5668029785156, 0.001954267732799053], "15": [405.39471435546875, 448.22344970703125, 0.0001199725447804667], "16": [215.0513916015625, 414.0807800292969, 9.942655015038326e-05]}} +{"t": 54.033496, "tracked": true, "track_id": 1, "bbox": [57.72004318237305, 47.03804397583008, 566.2353515625, 480.0], "det_conf": 0.9299257397651672, "mean_kpt_conf": 0.9629339396953582, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.678507471942679, "right_lift": -0.7009321987502924, "left_bend": 0.9297512771329882, "right_bend": 0.7493209905313953}, "keypoints": {"0": [378.0345153808594, 162.83724975585938, 0.9995267391204834], "1": [398.567626953125, 136.9248504638672, 0.9929881691932678], "2": [356.81842041015625, 130.73037719726562, 0.9990946054458618], "3": [413.575439453125, 136.93478393554688, 0.21952277421951294], "4": [303.919921875, 123.15135192871094, 0.9662351608276367], "5": [446.418212890625, 237.6534423828125, 0.9897300004959106], "6": [229.05679321289062, 251.16287231445312, 0.9957813024520874], "7": [533.8934326171875, 318.449951171875, 0.8538160920143127], "8": [102.62841796875, 375.41168212890625, 0.9258328080177307], "9": [436.67645263671875, 177.67372131347656, 0.9359456896781921], "10": [103.650390625, 219.65673828125, 0.9703888297080994], "11": [421.39874267578125, 480.0, 0.1575997918844223], "12": [275.9944152832031, 480.0, 0.18011465668678284], "13": [431.08270263671875, 432.1953125, 0.002037283731624484], "14": [252.8023681640625, 425.34100341796875, 0.0019777119159698486], "15": [407.5549621582031, 451.14459228515625, 0.00012198123295092955], "16": [219.23329162597656, 412.32470703125, 0.00010062377259600908]}} +{"t": 54.069596, "tracked": true, "track_id": 1, "bbox": [57.205238342285156, 46.71342086791992, 566.2266845703125, 480.0], "det_conf": 0.928714394569397, "mean_kpt_conf": 0.9620933532714844, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6749107946553017, "right_lift": -0.6983468319307763, "left_bend": 0.9313643499304913, "right_bend": 0.7465494592346311}, "keypoints": {"0": [376.27679443359375, 163.2688751220703, 0.9995017051696777], "1": [396.33740234375, 137.0598907470703, 0.9929840564727783], "2": [355.69500732421875, 131.41122436523438, 0.9990052580833435], "3": [411.9561767578125, 135.3660125732422, 0.23761770129203796], "4": [304.63427734375, 122.62738037109375, 0.9622772932052612], "5": [447.2522277832031, 235.65496826171875, 0.9896731376647949], "6": [229.3106231689453, 250.81283569335938, 0.9958821535110474], "7": [534.5506591796875, 315.5014343261719, 0.8512910008430481], "8": [102.63250732421875, 374.4091796875, 0.9264340996742249], "9": [436.79046630859375, 176.9091033935547, 0.9339916706085205], "10": [102.86122131347656, 219.11241149902344, 0.9698931574821472], "11": [422.1097412109375, 480.0, 0.16358603537082672], "12": [276.69049072265625, 480.0, 0.18916819989681244], "13": [432.46148681640625, 433.4683532714844, 0.002071715658530593], "14": [256.00592041015625, 427.93048095703125, 0.0020576310344040394], "15": [406.0096130371094, 450.7685546875, 0.00012305205746088177], "16": [222.87985229492188, 413.44091796875, 0.00010381708125350997]}} +{"t": 54.135287, "tracked": true, "track_id": 1, "bbox": [55.69185256958008, 46.12229919433594, 566.1449584960938, 480.0], "det_conf": 0.9273996353149414, "mean_kpt_conf": 0.9628730356693268, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6809194443448265, "right_lift": -0.7055655514324805, "left_bend": 0.930181107447121, "right_bend": 0.7461093900940123}, "keypoints": {"0": [376.7177429199219, 163.61819458007812, 0.9995369911193848], "1": [396.75982666015625, 137.3282470703125, 0.9929916858673096], "2": [355.6162109375, 131.74453735351562, 0.9991161227226257], "3": [411.761474609375, 136.28929138183594, 0.21595068275928497], "4": [303.1138610839844, 123.7802734375, 0.9673138856887817], "5": [446.46563720703125, 237.52366638183594, 0.990056037902832], "6": [227.80767822265625, 252.06130981445312, 0.9959393739700317], "7": [534.7464599609375, 319.6038818359375, 0.8533057570457458], "8": [102.8385009765625, 376.48748779296875, 0.9263581037521362], "9": [439.45703125, 181.0453338623047, 0.9343626499176025], "10": [101.26663208007812, 220.01707458496094, 0.9697497487068176], "11": [420.12005615234375, 480.0, 0.16023507714271545], "12": [273.5805969238281, 480.0, 0.18390513956546783], "13": [429.04193115234375, 431.95245361328125, 0.002047054236754775], "14": [246.19400024414062, 426.27667236328125, 0.0019884034991264343], "15": [405.03106689453125, 449.3404846191406, 0.00012069715739926323], "16": [211.9021759033203, 412.4497985839844, 9.911614324664697e-05]}} +{"t": 54.17045, "tracked": true, "track_id": 1, "bbox": [55.49956130981445, 45.90919876098633, 566.5908813476562, 480.0], "det_conf": 0.9262911081314087, "mean_kpt_conf": 0.9621984660625458, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6857072211557, "right_lift": -0.7052838667845139, "left_bend": 0.932845203469127, "right_bend": 0.7373477522198574}, "keypoints": {"0": [375.8055419921875, 162.74261474609375, 0.9995200634002686], "1": [395.396728515625, 135.94122314453125, 0.993096649646759], "2": [354.3964538574219, 131.23147583007812, 0.9990543723106384], "3": [410.7911682128906, 134.00833129882812, 0.23156359791755676], "4": [302.5835266113281, 123.59683227539062, 0.9640641808509827], "5": [446.9780578613281, 236.0502166748047, 0.9899110198020935], "6": [229.16506958007812, 251.7806854248047, 0.9958574175834656], "7": [534.5811157226562, 318.5779113769531, 0.8522122502326965], "8": [105.17010498046875, 375.1387939453125, 0.9256525635719299], "9": [439.47503662109375, 180.82125854492188, 0.9335422515869141], "10": [99.42779541015625, 220.73687744140625, 0.9690738916397095], "11": [420.3523254394531, 480.0, 0.1647462099790573], "12": [274.5065612792969, 480.0, 0.18923388421535492], "13": [429.13336181640625, 432.7665710449219, 0.0020849581342190504], "14": [246.9238739013672, 427.9366760253906, 0.0020391265861690044], "15": [403.32843017578125, 448.00018310546875, 0.00012279687507543713], "16": [211.62600708007812, 413.85711669921875, 0.00010188494343310595]}} +{"t": 54.204006, "tracked": true, "track_id": 1, "bbox": [56.806785583496094, 45.47617721557617, 565.674560546875, 479.9669189453125], "det_conf": 0.9290710091590881, "mean_kpt_conf": 0.9626788556575775, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6737726485884189, "right_lift": -0.7031428600704632, "left_bend": 0.9223725465566761, "right_bend": 0.7463233153672209}, "keypoints": {"0": [375.79791259765625, 164.4998016357422, 0.9995038509368896], "1": [397.33172607421875, 139.2061004638672, 0.9930451512336731], "2": [355.4577331542969, 131.92922973632812, 0.9990314245223999], "3": [413.185302734375, 139.5487060546875, 0.24243858456611633], "4": [303.6716003417969, 123.0035400390625, 0.9646889567375183], "5": [444.5928649902344, 238.13768005371094, 0.9899095296859741], "6": [228.0904541015625, 250.588623046875, 0.995952844619751], "7": [532.09521484375, 317.9233093261719, 0.8545503616333008], "8": [101.715576171875, 375.55841064453125, 0.9270310997962952], "9": [440.0249938964844, 179.70343017578125, 0.9337314367294312], "10": [100.79060363769531, 220.37420654296875, 0.969343900680542], "11": [419.89208984375, 480.0, 0.16626954078674316], "12": [275.070068359375, 480.0, 0.19098466634750366], "13": [430.0218505859375, 433.2628173828125, 0.002107873558998108], "14": [252.59869384765625, 425.73388671875, 0.0020628643687814474], "15": [406.2970886230469, 452.1769714355469, 0.00012494825932662934], "16": [219.31362915039062, 410.32928466796875, 0.00010418908641440794]}} +{"t": 54.266854, "tracked": true, "track_id": 1, "bbox": [57.45708465576172, 45.96467208862305, 565.6705932617188, 479.9517517089844], "det_conf": 0.9282318949699402, "mean_kpt_conf": 0.9638703227043152, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6743053805018688, "right_lift": -0.6960937023119731, "left_bend": 0.9242648221844961, "right_bend": 0.7457918042259849}, "keypoints": {"0": [376.5457458496094, 166.0135955810547, 0.9995307922363281], "1": [397.48626708984375, 140.45260620117188, 0.9929490089416504], "2": [356.443603515625, 133.54006958007812, 0.9990856647491455], "3": [413.1234130859375, 139.4438934326172, 0.22216732800006866], "4": [304.844482421875, 123.52386474609375, 0.9655062556266785], "5": [445.50006103515625, 238.0577392578125, 0.9902470111846924], "6": [229.03106689453125, 249.8760986328125, 0.9960988759994507], "7": [532.3798828125, 317.39056396484375, 0.8583941459655762], "8": [101.61453247070312, 373.41357421875, 0.9316354990005493], "9": [437.5150146484375, 176.57504272460938, 0.9345001578330994], "10": [101.95799255371094, 219.78042602539062, 0.9707558155059814], "11": [421.07281494140625, 480.0, 0.17615407705307007], "12": [275.8106689453125, 480.0, 0.20339277386665344], "13": [431.7054748535156, 436.8731689453125, 0.002057264791801572], "14": [252.14443969726562, 428.7135009765625, 0.0020291756372898817], "15": [408.74908447265625, 452.42059326171875, 0.00011885006097145379], "16": [217.65806579589844, 411.2509765625, 9.904688340611756e-05]}} +{"t": 54.333692, "tracked": true, "track_id": 1, "bbox": [58.75733947753906, 46.63764572143555, 565.9364624023438, 479.9848327636719], "det_conf": 0.9300188422203064, "mean_kpt_conf": 0.9631290555000305, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7056272101230968, "right_lift": -0.7032318374410084, "left_bend": 0.9462571551987493, "right_bend": 0.7507235186864752}, "keypoints": {"0": [381.7891540527344, 164.40609741210938, 0.9995585083961487], "1": [400.7325744628906, 136.1217803955078, 0.9921332001686096], "2": [358.93084716796875, 132.79226684570312, 0.9992392063140869], "3": [415.4307861328125, 131.42910766601562, 0.15427625179290771], "4": [304.0706481933594, 123.99346923828125, 0.9737502336502075], "5": [451.87164306640625, 233.12448120117188, 0.9902017712593079], "6": [228.5506134033203, 250.67929077148438, 0.9958594441413879], "7": [536.092041015625, 316.9935302734375, 0.8508814573287964], "8": [102.38455200195312, 375.47381591796875, 0.926336944103241], "9": [437.14703369140625, 178.0010986328125, 0.9326925873756409], "10": [103.57191467285156, 222.0330352783203, 0.9706372022628784], "11": [426.38958740234375, 480.0, 0.16703547537326813], "12": [277.09344482421875, 480.0, 0.18961316347122192], "13": [435.79290771484375, 433.514892578125, 0.0019973742309957743], "14": [251.61334228515625, 431.2403259277344, 0.0019286759197711945], "15": [404.9359130859375, 445.083251953125, 0.00011390104191377759], "16": [215.3059539794922, 416.39288330078125, 9.122992923948914e-05]}} +{"t": 54.397234, "tracked": true, "track_id": 1, "bbox": [58.822879791259766, 46.78022003173828, 565.0335693359375, 480.0], "det_conf": 0.9283757209777832, "mean_kpt_conf": 0.9622858822345733, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7098909890459222, "right_lift": -0.7003807880033865, "left_bend": 0.9507540785192028, "right_bend": 0.7488515058799071}, "keypoints": {"0": [381.94921875, 163.8881072998047, 0.999538779258728], "1": [401.8607177734375, 135.73741149902344, 0.9927998781204224], "2": [358.6663818359375, 132.08822631835938, 0.9991814494132996], "3": [417.48309326171875, 132.12767028808594, 0.19197066128253937], "4": [303.72454833984375, 124.19732666015625, 0.9704762101173401], "5": [452.4666748046875, 234.21151733398438, 0.9897171258926392], "6": [229.1258544921875, 250.73733520507812, 0.9958254098892212], "7": [536.8331298828125, 319.2463073730469, 0.8470233678817749], "8": [102.67327880859375, 374.8179626464844, 0.9252910614013672], "9": [436.0837707519531, 180.11605834960938, 0.9328019618988037], "10": [103.5775146484375, 220.49264526367188, 0.9702035784721375], "11": [424.6793212890625, 480.0, 0.16456808149814606], "12": [275.5392150878906, 480.0, 0.1890525221824646], "13": [433.5087890625, 435.3848876953125, 0.0019794898107647896], "14": [250.66015625, 431.86834716796875, 0.0019387217471376061], "15": [404.30767822265625, 447.0556640625, 0.00011508230090839788], "16": [215.60110473632812, 416.8513488769531, 9.44293788052164e-05]}} +{"t": 54.467305, "tracked": true, "track_id": 1, "bbox": [58.61320495605469, 46.60633850097656, 564.2723999023438, 480.0], "det_conf": 0.9281674027442932, "mean_kpt_conf": 0.9614114344120026, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.698864511051367, "right_lift": -0.6973724341474107, "left_bend": 0.9372557992859005, "right_bend": 0.7484451411860523}, "keypoints": {"0": [376.4494934082031, 164.37266540527344, 0.9995076656341553], "1": [396.6732482910156, 137.7825927734375, 0.9930822849273682], "2": [355.365234375, 132.41168212890625, 0.9990409016609192], "3": [412.64569091796875, 135.7037353515625, 0.2394614964723587], "4": [303.69525146484375, 123.506103515625, 0.9637726545333862], "5": [447.8244934082031, 237.76712036132812, 0.9897732138633728], "6": [228.17604064941406, 250.2880401611328, 0.9959107637405396], "7": [533.0950927734375, 321.08380126953125, 0.8465110659599304], "8": [101.48419189453125, 373.5617980957031, 0.9254614114761353], "9": [436.3453063964844, 179.62583923339844, 0.9319674968719482], "10": [102.82162475585938, 221.3885955810547, 0.9690868854522705], "11": [420.0267333984375, 480.0, 0.1611281931400299], "12": [273.2947692871094, 480.0, 0.18746688961982727], "13": [429.86956787109375, 434.1058349609375, 0.0020426656119525433], "14": [249.911376953125, 427.3105773925781, 0.0020364094525575638], "15": [403.7922058105469, 447.6282958984375, 0.0001232083304785192], "16": [217.00634765625, 412.1143798828125, 0.00010396063589723781]}} +{"t": 54.500895, "tracked": true, "track_id": 1, "bbox": [59.402587890625, 46.40348815917969, 563.5964965820312, 480.0], "det_conf": 0.9308969974517822, "mean_kpt_conf": 0.9616650819778443, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.691605478271946, "right_lift": -0.7052938649481023, "left_bend": 0.9353015754594202, "right_bend": 0.7535947385921015}, "keypoints": {"0": [375.26043701171875, 164.54525756835938, 0.9995055198669434], "1": [395.92236328125, 138.59164428710938, 0.9927423000335693], "2": [354.8187255859375, 132.34033203125, 0.9990467429161072], "3": [411.57489013671875, 137.3645477294922, 0.22484315931797028], "4": [303.2549133300781, 122.92959594726562, 0.9647387266159058], "5": [445.3392028808594, 237.90443420410156, 0.9899027347564697], "6": [227.03305053710938, 249.4427490234375, 0.9957630634307861], "7": [533.4583740234375, 322.28179931640625, 0.8500041961669922], "8": [101.10525512695312, 374.727294921875, 0.9226108193397522], "9": [436.5302734375, 181.76052856445312, 0.9337578415870667], "10": [103.24380493164062, 220.37136840820312, 0.9685788750648499], "11": [418.4439697265625, 480.0, 0.15868398547172546], "12": [272.94677734375, 480.0, 0.1805950105190277], "13": [428.529541015625, 433.46856689453125, 0.0020913926418870687], "14": [252.5372314453125, 425.5350341796875, 0.002030284609645605], "15": [404.7858581542969, 450.40936279296875, 0.0001246909232577309], "16": [222.0806884765625, 411.022216796875, 0.00010299579298589379]}} +{"t": 54.563597, "tracked": true, "track_id": 1, "bbox": [59.41272735595703, 45.887569427490234, 564.83349609375, 480.0], "det_conf": 0.9300838708877563, "mean_kpt_conf": 0.9606475293636322, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.691117959012911, "right_lift": -0.7076658247011461, "left_bend": 0.9311362556562567, "right_bend": 0.757535984891061}, "keypoints": {"0": [374.982177734375, 165.40423583984375, 0.999504566192627], "1": [396.4771728515625, 139.21078491210938, 0.9931846261024475], "2": [354.4306640625, 132.4043731689453, 0.9990311861038208], "3": [413.06610107421875, 137.79383850097656, 0.24929235875606537], "4": [302.9736328125, 122.10203552246094, 0.9632951021194458], "5": [445.62579345703125, 238.84681701660156, 0.9895436763763428], "6": [227.32608032226562, 249.2709503173828, 0.9958205223083496], "7": [534.165283203125, 323.51220703125, 0.8425648808479309], "8": [100.92549133300781, 375.87164306640625, 0.9223693609237671], "9": [438.41412353515625, 180.9434356689453, 0.9325864911079407], "10": [104.46379089355469, 221.28021240234375, 0.9685748815536499], "11": [417.1053466796875, 480.0, 0.14819397032260895], "12": [271.46197509765625, 480.0, 0.172573983669281], "13": [425.94586181640625, 433.42913818359375, 0.0020027118735015392], "14": [248.99192810058594, 424.2999572753906, 0.001990517368540168], "15": [402.3662109375, 450.3569030761719, 0.0001238086260855198], "16": [217.26217651367188, 409.29254150390625, 0.00010442701022839174]}} +{"t": 54.631702, "tracked": true, "track_id": 1, "bbox": [59.821922302246094, 45.84498977661133, 565.5794677734375, 479.94561767578125], "det_conf": 0.9303975701332092, "mean_kpt_conf": 0.9606628298759461, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6746309366964772, "right_lift": -0.7048883365394251, "left_bend": 0.9286482925222659, "right_bend": 0.7539308230744033}, "keypoints": {"0": [375.01580810546875, 164.9554901123047, 0.9994920492172241], "1": [396.6454772949219, 138.68606567382812, 0.9932175278663635], "2": [353.9142150878906, 132.1045379638672, 0.999010443687439], "3": [413.22601318359375, 137.7113800048828, 0.2550380527973175], "4": [301.9043884277344, 122.76737976074219, 0.9633984565734863], "5": [445.4879150390625, 237.46336364746094, 0.989436149597168], "6": [227.74600219726562, 250.35549926757812, 0.9957178235054016], "7": [535.0927734375, 319.35699462890625, 0.843991756439209], "8": [101.43649291992188, 375.87615966796875, 0.9208391308784485], "9": [438.6852111816406, 180.28863525390625, 0.9330858588218689], "10": [103.84623718261719, 220.2354278564453, 0.9684391021728516], "11": [419.2076721191406, 480.0, 0.14882071316242218], "12": [274.2810974121094, 480.0, 0.17164470255374908], "13": [427.48193359375, 431.4910888671875, 0.0020357815083116293], "14": [253.27276611328125, 423.78582763671875, 0.0020070814061909914], "15": [402.1077880859375, 449.9486083984375, 0.00012730642629321665], "16": [220.65826416015625, 409.04791259765625, 0.00010710764036048204]}} +{"t": 54.69413, "tracked": true, "track_id": 1, "bbox": [60.15190124511719, 46.42604446411133, 564.9273071289062, 479.9033203125], "det_conf": 0.9290271401405334, "mean_kpt_conf": 0.962456077337265, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6684467448695364, "right_lift": -0.6971949850390075, "left_bend": 0.9242660837264839, "right_bend": 0.7508561960307413}, "keypoints": {"0": [375.7513732910156, 164.3233184814453, 0.9995120763778687], "1": [396.142822265625, 138.4970245361328, 0.992804229259491], "2": [355.0498046875, 132.42100524902344, 0.9990785121917725], "3": [411.501953125, 137.68357849121094, 0.22310203313827515], "4": [303.2972412109375, 123.84675598144531, 0.9665688276290894], "5": [445.1617431640625, 237.31060791015625, 0.989841639995575], "6": [228.36978149414062, 250.26763916015625, 0.9958406090736389], "7": [533.210205078125, 316.4432678222656, 0.851172149181366], "8": [102.89175415039062, 372.29986572265625, 0.9267361164093018], "9": [438.3929138183594, 178.07284545898438, 0.933373749256134], "10": [105.4290771484375, 219.56224060058594, 0.9696328639984131], "11": [419.3396301269531, 480.0, 0.16735580563545227], "12": [274.44500732421875, 480.0, 0.19291570782661438], "13": [428.91888427734375, 434.14166259765625, 0.002111522713676095], "14": [251.75721740722656, 427.1971435546875, 0.002087952336296439], "15": [402.89447021484375, 451.39752197265625, 0.00012603888171724975], "16": [217.024658203125, 412.92425537109375, 0.00010510774154681712]}} +{"t": 54.761543, "tracked": true, "track_id": 1, "bbox": [61.61806869506836, 47.503902435302734, 565.1241455078125, 479.9247741699219], "det_conf": 0.9292698502540588, "mean_kpt_conf": 0.9623516201972961, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.667300116871595, "right_lift": -0.6977898272988936, "left_bend": 0.9207215932663724, "right_bend": 0.7584267052463437}, "keypoints": {"0": [375.59765625, 163.6222686767578, 0.9994856119155884], "1": [396.480712890625, 138.59295654296875, 0.9929654598236084], "2": [355.40618896484375, 131.5829315185547, 0.9989835619926453], "3": [411.92706298828125, 139.06887817382812, 0.24393019080162048], "4": [304.1663513183594, 123.1302490234375, 0.9626264572143555], "5": [443.6725769042969, 237.64830017089844, 0.989577054977417], "6": [229.04751586914062, 249.50967407226562, 0.9957244396209717], "7": [532.0074462890625, 316.7926940917969, 0.8542761206626892], "8": [102.05020141601562, 373.2247619628906, 0.9259074926376343], "9": [439.027099609375, 178.27120971679688, 0.9346533417701721], "10": [108.14401245117188, 219.281494140625, 0.9693166613578796], "11": [419.522216796875, 480.0, 0.1648498773574829], "12": [276.0544738769531, 480.0, 0.1889192909002304], "13": [428.6244812011719, 432.99273681640625, 0.002133179921656847], "14": [254.0354766845703, 425.0240783691406, 0.0020888904109597206], "15": [406.240478515625, 451.6094055175781, 0.00013006430526729673], "16": [220.62533569335938, 410.14117431640625, 0.0001087593991542235]}} +{"t": 54.829906, "tracked": true, "track_id": 1, "bbox": [62.50910568237305, 47.98610305786133, 564.5703125, 480.0], "det_conf": 0.9295355081558228, "mean_kpt_conf": 0.9622441232204437, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6516205783499517, "right_lift": -0.6822133736360538, "left_bend": 0.9223164137158664, "right_bend": 0.7574534703383534}, "keypoints": {"0": [377.579345703125, 165.06842041015625, 0.9995131492614746], "1": [398.5001220703125, 139.27662658691406, 0.9930431842803955], "2": [356.87225341796875, 132.4921417236328, 0.9990726709365845], "3": [414.1527099609375, 138.5326690673828, 0.2305273711681366], "4": [304.640869140625, 123.10223388671875, 0.9657471179962158], "5": [445.95025634765625, 238.02072143554688, 0.9892330169677734], "6": [230.22750854492188, 249.79043579101562, 0.9957762360572815], "7": [534.4475708007812, 314.04345703125, 0.8466803431510925], "8": [101.36074829101562, 370.031494140625, 0.9273288249969482], "9": [436.56903076171875, 176.07571411132812, 0.9348270893096924], "10": [110.15037536621094, 218.73020935058594, 0.9712195992469788], "11": [421.50640869140625, 480.0, 0.16004019975662231], "12": [277.3370666503906, 480.0, 0.18768556416034698], "13": [429.31744384765625, 435.4962158203125, 0.002027943031862378], "14": [255.78646850585938, 427.1352233886719, 0.0020347172394394875], "15": [405.58660888671875, 452.88470458984375, 0.0001222296996274963], "16": [221.41018676757812, 411.64288330078125, 0.00010343614121666178]}} +{"t": 54.89461, "tracked": true, "track_id": 1, "bbox": [64.5505599975586, 48.00519561767578, 563.4432373046875, 480.0], "det_conf": 0.932120144367218, "mean_kpt_conf": 0.9627773344516755, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6645224598982833, "right_lift": -0.6988112221743169, "left_bend": 0.924653310228126, "right_bend": 0.7628656897875975}, "keypoints": {"0": [376.1873474121094, 165.19171142578125, 0.9994805455207825], "1": [397.8621826171875, 140.87210083007812, 0.9928027987480164], "2": [356.50567626953125, 132.746826171875, 0.9990031123161316], "3": [413.2005615234375, 142.30015563964844, 0.2411343902349472], "4": [305.11151123046875, 123.75885009765625, 0.9648100733757019], "5": [442.2386474609375, 238.7729034423828, 0.9895637631416321], "6": [228.408203125, 249.72076416015625, 0.9957850575447083], "7": [529.3471069335938, 316.2357482910156, 0.8558143973350525], "8": [101.24249267578125, 373.95404052734375, 0.9266934394836426], "9": [434.8973388671875, 180.29931640625, 0.9344112873077393], "10": [109.20343017578125, 221.24038696289062, 0.9694088697433472], "11": [417.84393310546875, 480.0, 0.16560441255569458], "12": [274.8141174316406, 480.0, 0.18940985202789307], "13": [428.39892578125, 432.67510986328125, 0.0021410323679447174], "14": [255.355224609375, 423.80767822265625, 0.002088564448058605], "15": [406.72491455078125, 454.0656433105469, 0.00013294378004502505], "16": [223.30618286132812, 409.0603942871094, 0.00011067774175899103]}} +{"t": 54.928039, "tracked": true, "track_id": 1, "bbox": [65.61426544189453, 48.018028259277344, 563.52978515625, 480.0], "det_conf": 0.930149257183075, "mean_kpt_conf": 0.9622050523757935, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.6661808860938071, "right_lift": -0.695914851439031, "left_bend": 0.9283340294221543, "right_bend": 0.7653563316466269}, "keypoints": {"0": [375.75555419921875, 164.3959503173828, 0.9994780421257019], "1": [396.61669921875, 139.00872802734375, 0.9930619597434998], "2": [355.101318359375, 132.72055053710938, 0.9989997744560242], "3": [412.35693359375, 138.97900390625, 0.2544712424278259], "4": [303.966796875, 124.74160766601562, 0.9646995663642883], "5": [443.80548095703125, 236.60089111328125, 0.9895057082176208], "6": [228.60133361816406, 250.42535400390625, 0.9957841038703918], "7": [531.86181640625, 315.2576599121094, 0.8520051836967468], "8": [101.70046997070312, 373.40155029296875, 0.925529420375824], "9": [437.2706298828125, 181.79583740234375, 0.933656632900238], "10": [111.57952880859375, 219.12744140625, 0.9693301320075989], "11": [417.53167724609375, 480.0, 0.16331925988197327], "12": [274.15478515625, 480.0, 0.18771345913410187], "13": [430.33392333984375, 431.3585205078125, 0.0021242171060293913], "14": [258.14007568359375, 425.49017333984375, 0.0021199709735810757], "15": [405.87957763671875, 451.21917724609375, 0.00013251359632704407], "16": [224.98492431640625, 412.2436828613281, 0.0001124381524277851]}} +{"t": 54.991243, "tracked": true, "track_id": 1, "bbox": [68.43574523925781, 47.639862060546875, 564.416015625, 480.0], "det_conf": 0.9291278719902039, "mean_kpt_conf": 0.9601456701755524, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7222880509408968, "right_lift": -0.7132242204163715, "left_bend": 0.9531943637059501, "right_bend": 0.7705904065156546}, "keypoints": {"0": [375.76678466796875, 162.85887145996094, 0.9994944334030151], "1": [396.00885009765625, 134.78744506835938, 0.9937684535980225], "2": [352.80523681640625, 131.55831909179688, 0.9990246295928955], "3": [413.35089111328125, 131.39813232421875, 0.2854529619216919], "4": [300.8821105957031, 124.10353088378906, 0.9643882513046265], "5": [451.36712646484375, 234.6739501953125, 0.9899073839187622], "6": [226.12425231933594, 249.9823760986328, 0.9961601495742798], "7": [539.1654663085938, 326.369140625, 0.8384087085723877], "8": [103.20602416992188, 375.0555114746094, 0.9248195290565491], "9": [445.9398498535156, 194.85415649414062, 0.9274413585662842], "10": [111.9727783203125, 218.66285705566406, 0.9680438041687012], "11": [421.9685974121094, 480.0, 0.1560424566268921], "12": [272.90673828125, 480.0, 0.18584667146205902], "13": [434.9654541015625, 432.3570556640625, 0.0019300184212625027], "14": [256.09716796875, 429.84100341796875, 0.0020418434869498014], "15": [404.22735595703125, 445.0007629394531, 0.00012220581993460655], "16": [226.3375701904297, 416.7013244628906, 0.0001088052595150657]}} +{"t": 55.062039, "tracked": true, "track_id": 1, "bbox": [72.83739471435547, 46.60003662109375, 564.4722290039062, 479.6859436035156], "det_conf": 0.9307981729507446, "mean_kpt_conf": 0.9138976498083635, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7268309604946549, "right_lift": -0.7317644853940508, "left_bend": 0.9191424173706846, "right_bend": 0.7787461520147895}, "keypoints": {"0": [366.8494567871094, 164.05322265625, 0.9994133710861206], "1": [390.5915832519531, 140.45782470703125, 0.9946706891059875], "2": [347.2572937011719, 131.49180603027344, 0.9986242055892944], "3": [409.08355712890625, 144.85565185546875, 0.43686968088150024], "4": [299.15771484375, 123.793212890625, 0.9504930973052979], "5": [440.0620422363281, 244.05783081054688, 0.9907399415969849], "6": [225.11026000976562, 248.25340270996094, 0.9964626431465149], "7": [532.696533203125, 342.08929443359375, 0.8619778156280518], "8": [105.48553466796875, 376.6902770996094, 0.9332133531570435], "9": [472.46856689453125, 232.6448211669922, 0.9253787994384766], "10": [113.94581604003906, 222.45901489257812, 0.9650305509567261], "11": [416.67071533203125, 480.0, 0.17445236444473267], "12": [273.1417236328125, 480.0, 0.20727048814296722], "13": [429.5826110839844, 432.38751220703125, 0.0019466355443000793], "14": [248.4459991455078, 423.90826416015625, 0.0020615316461771727], "15": [410.22442626953125, 453.7503662109375, 0.00012821366544812918], "16": [217.38673400878906, 409.4937744140625, 0.00011822701344499364]}} +{"t": 55.12587, "tracked": true, "track_id": 1, "bbox": [76.38933563232422, 45.440303802490234, 563.3101196289062, 479.8415222167969], "det_conf": 0.9304624795913696, "mean_kpt_conf": 0.9269570383158597, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.7514417835643011, "right_lift": -0.7330571688017579, "left_bend": 0.8523574091294338, "right_bend": 0.7829860638372828}, "keypoints": {"0": [362.63507080078125, 160.73228454589844, 0.9994106292724609], "1": [385.7729187011719, 135.72401428222656, 0.9960149526596069], "2": [340.74664306640625, 129.77471923828125, 0.9984512329101562], "3": [406.10968017578125, 139.5715789794922, 0.5694308280944824], "4": [293.937744140625, 125.5281982421875, 0.9463294744491577], "5": [440.74505615234375, 239.72389221191406, 0.990997314453125], "6": [223.51828002929688, 249.03079223632812, 0.9970425963401794], "7": [531.9854736328125, 343.6370849609375, 0.8705715537071228], "8": [106.00283813476562, 375.6842956542969, 0.9453437328338623], "9": [510.87994384765625, 263.238525390625, 0.9167577028274536], "10": [116.36552429199219, 219.4268798828125, 0.9661774039268494], "11": [422.5687561035156, 480.0, 0.2031702697277069], "12": [277.79864501953125, 480.0, 0.25402089953422546], "13": [441.23162841796875, 431.6551818847656, 0.0018562107579782605], "14": [250.825927734375, 434.7040100097656, 0.0021869877818971872], "15": [419.79193115234375, 455.9612121582031, 0.000119397220259998], "16": [217.40975952148438, 429.2977294921875, 0.00012142059858888388]}} +{"t": 55.190821, "tracked": true, "track_id": 1, "bbox": [79.28272247314453, 43.662742614746094, 555.5254516601562, 479.8660583496094], "det_conf": 0.9300922751426697, "mean_kpt_conf": 0.9409322521903298, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8049292938820809, "right_lift": -0.7303604135353062, "left_bend": 0.9810380420363244, "right_bend": 0.784594518358221}, "keypoints": {"0": [357.406494140625, 158.64776611328125, 0.9994315505027771], "1": [380.82940673828125, 132.39544677734375, 0.9972255825996399], "2": [334.9796447753906, 128.50648498535156, 0.9981679916381836], "3": [405.1224670410156, 134.67303466796875, 0.7339074015617371], "4": [291.34942626953125, 125.13455200195312, 0.9241189956665039], "5": [448.47796630859375, 235.32752990722656, 0.991895854473114], "6": [223.08851623535156, 247.86282348632812, 0.9975919723510742], "7": [533.8446044921875, 351.1305236816406, 0.8826033473014832], "8": [106.75082397460938, 372.25628662109375, 0.9558252096176147], "9": [511.4773864746094, 316.66619873046875, 0.902312695980072], "10": [118.35975646972656, 218.2362060546875, 0.9671741724014282], "11": [432.7230224609375, 480.0, 0.23670095205307007], "12": [282.0534362792969, 480.0, 0.30521711707115173], "13": [462.4421691894531, 436.3642883300781, 0.0016261131968349218], "14": [259.78729248046875, 445.656005859375, 0.002129378030076623], "15": [433.21484375, 464.4791259765625, 0.00010139944788534194], "16": [222.2679443359375, 444.4447021484375, 0.00011576159886317328]}} +{"t": 55.258198, "tracked": true, "track_id": 1, "bbox": [82.24725341796875, 41.687870025634766, 593.4970703125, 479.9771423339844], "det_conf": 0.9069387912750244, "mean_kpt_conf": 0.93580623106523, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8089144677204847, "right_lift": -0.7179273916452564, "left_bend": 0.24038949420976571, "right_bend": 0.7642578402215997}, "keypoints": {"0": [353.3011169433594, 156.00906372070312, 0.999249279499054], "1": [377.6942138671875, 129.66128540039062, 0.9972800016403198], "2": [330.5909423828125, 126.76808166503906, 0.9975059628486633], "3": [404.8998107910156, 134.60714721679688, 0.8158954381942749], "4": [289.5104064941406, 126.94795227050781, 0.9025230407714844], "5": [453.80364990234375, 236.2759246826172, 0.9894662499427795], "6": [224.87109375, 249.7416534423828, 0.9973024129867554], "7": [544.2886352539062, 360.77215576171875, 0.8480969071388245], "8": [113.64471435546875, 364.4527587890625, 0.953626811504364], "9": [541.8529663085938, 379.89111328125, 0.8376346826553345], "10": [118.10299682617188, 212.69998168945312, 0.955287754535675], "11": [442.17620849609375, 472.6839904785156, 0.20956988632678986], "12": [291.24420166015625, 480.0, 0.29510989785194397], "13": [484.5374450683594, 431.6023254394531, 0.0019296538084745407], "14": [289.29412841796875, 448.1770324707031, 0.0030338922515511513], "15": [449.7428894042969, 472.7562255859375, 0.00013658184616360813], "16": [259.3790283203125, 458.38232421875, 0.00018434108642395586]}} +{"t": 55.326041, "tracked": true, "track_id": 1, "bbox": [70.16919708251953, 39.858028411865234, 625.4574584960938, 480.0], "det_conf": 0.911482036113739, "mean_kpt_conf": 0.93394597010179, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8175123798029609, "right_lift": -0.7131621532917924, "left_bend": 0.07153137990220082, "right_bend": 0.7654389143117492}, "keypoints": {"0": [350.1036682128906, 154.67068481445312, 0.9992194175720215], "1": [373.37896728515625, 129.26109313964844, 0.9975830316543579], "2": [328.7322082519531, 127.07279968261719, 0.9970922470092773], "3": [399.32208251953125, 134.3922119140625, 0.8598536252975464], "4": [291.7615661621094, 127.58845520019531, 0.8984118700027466], "5": [448.13897705078125, 233.0155029296875, 0.9914211630821228], "6": [223.3212127685547, 244.60614013671875, 0.996825098991394], "7": [541.9358520507812, 366.1612548828125, 0.8827949166297913], "8": [110.86923217773438, 359.00927734375, 0.9428215622901917], "9": [575.7986450195312, 448.77734375, 0.7746071219444275], "10": [116.71878051757812, 212.4895782470703, 0.932775616645813], "11": [438.2874450683594, 462.8779296875, 0.20706413686275482], "12": [291.3320617675781, 474.95294189453125, 0.2573782503604889], "13": [512.5474243164062, 421.9740905761719, 0.0018378235399723053], "14": [314.335693359375, 445.81195068359375, 0.002595973666757345], "15": [493.9317626953125, 480.0, 0.00015028669440653175], "16": [299.87921142578125, 473.9556884765625, 0.00018973623809870332]}} +{"t": 55.38634, "tracked": true, "track_id": 1, "bbox": [73.42037200927734, 39.23801040649414, 628.3064575195312, 480.0], "det_conf": 0.8976811766624451, "mean_kpt_conf": 0.9263329776850614, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8429592149851706, "right_lift": -0.7067876063009336, "left_bend": 0.07808448759826615, "right_bend": 0.7728887483674994}, "keypoints": {"0": [348.887939453125, 153.60989379882812, 0.999154806137085], "1": [371.66082763671875, 127.43289184570312, 0.9976823329925537], "2": [326.8979187011719, 126.56793212890625, 0.9968209266662598], "3": [398.3497009277344, 132.22117614746094, 0.8811798095703125], "4": [291.1009826660156, 128.4036865234375, 0.8889156579971313], "5": [450.4468688964844, 234.45242309570312, 0.990471363067627], "6": [224.05230712890625, 244.2161865234375, 0.9964893460273743], "7": [541.9834594726562, 377.8815002441406, 0.860062301158905], "8": [110.89923095703125, 357.2671813964844, 0.9334717988967896], "9": [574.6216430664062, 475.478515625, 0.7243994474411011], "10": [121.86979675292969, 205.91761779785156, 0.9210149645805359], "11": [436.9847412109375, 460.436767578125, 0.166285902261734], "12": [290.2033996582031, 471.74151611328125, 0.21273061633110046], "13": [512.3718872070312, 417.88372802734375, 0.0017250428209081292], "14": [318.171630859375, 442.8199462890625, 0.0025491828564554453], "15": [489.0479736328125, 480.0, 0.00016105287068057805], "16": [303.7917785644531, 477.55255126953125, 0.0002122735750162974]}} +{"t": 55.450216, "tracked": true, "track_id": 1, "bbox": [79.52610778808594, 39.71036911010742, 621.7125244140625, 480.0], "det_conf": 0.9021205902099609, "mean_kpt_conf": 0.9247266270897605, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8595655929608194, "right_lift": -0.7059387341995718, "left_bend": 0.08039264700763261, "right_bend": 0.7786917155772954}, "keypoints": {"0": [347.77227783203125, 152.97390747070312, 0.9990953207015991], "1": [370.2452087402344, 126.84967041015625, 0.9976747632026672], "2": [325.9472351074219, 126.2869873046875, 0.9965813755989075], "3": [397.4519348144531, 131.28688049316406, 0.8941689729690552], "4": [291.1397399902344, 128.20132446289062, 0.8807578086853027], "5": [450.31463623046875, 235.77658081054688, 0.9900014400482178], "6": [224.2774658203125, 243.52749633789062, 0.9965499639511108], "7": [537.4754638671875, 382.3846435546875, 0.8499854207038879], "8": [112.08132934570312, 355.3538818359375, 0.9339806437492371], "9": [565.6513671875, 478.979736328125, 0.7137351632118225], "10": [125.95408630371094, 204.6397705078125, 0.9194620251655579], "11": [432.39959716796875, 462.4964599609375, 0.1715264469385147], "12": [285.5766906738281, 472.3414306640625, 0.2263508290052414], "13": [502.7470703125, 423.5403747558594, 0.0018075110856443644], "14": [307.7852478027344, 447.109375, 0.0027462414000183344], "15": [477.56878662109375, 480.0, 0.00017179826681967825], "16": [291.8170166015625, 478.6334228515625, 0.000231527432333678]}} +{"t": 55.485845, "tracked": true, "track_id": 1, "bbox": [83.24799346923828, 39.84809112548828, 617.98388671875, 480.0], "det_conf": 0.9039066433906555, "mean_kpt_conf": 0.9238776185295798, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8647598507644728, "right_lift": -0.6999591700746, "left_bend": 0.08387455391926149, "right_bend": 0.7849886492716058}, "keypoints": {"0": [348.00128173828125, 152.85305786132812, 0.9990984201431274], "1": [369.95416259765625, 126.79727172851562, 0.9975513815879822], "2": [326.0478515625, 126.32293701171875, 0.9967065453529358], "3": [396.26837158203125, 131.85922241210938, 0.8833624124526978], "4": [290.637939453125, 128.93252563476562, 0.8852705955505371], "5": [449.156982421875, 238.75259399414062, 0.9894866943359375], "6": [224.5809326171875, 242.74435424804688, 0.9963523149490356], "7": [535.4129028320312, 387.2846374511719, 0.8420082926750183], "8": [112.86007690429688, 352.24017333984375, 0.9329105019569397], "9": [559.1504516601562, 475.58282470703125, 0.7179737091064453], "10": [130.79562377929688, 203.46775817871094, 0.9219329357147217], "11": [430.7333679199219, 462.3902282714844, 0.15557202696800232], "12": [284.74163818359375, 470.5429382324219, 0.20930182933807373], "13": [498.4671936035156, 421.01458740234375, 0.0017965012229979038], "14": [304.1689147949219, 441.6541442871094, 0.002750751795247197], "15": [475.8505554199219, 478.4273681640625, 0.00017604931781534106], "16": [289.47509765625, 475.9588317871094, 0.00023768718529026955]}} +{"t": 55.550541, "tracked": true, "track_id": 1, "bbox": [87.71611022949219, 41.11717224121094, 610.07177734375, 480.0], "det_conf": 0.9064887762069702, "mean_kpt_conf": 0.9362674138762734, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8679996167981853, "right_lift": -0.7227146091201784, "left_bend": 0.1703544289856962, "right_bend": 0.8025169826611718}, "keypoints": {"0": [346.6251220703125, 152.58914184570312, 0.9992896318435669], "1": [369.8915100097656, 126.66984558105469, 0.9980639815330505], "2": [324.56365966796875, 125.48123168945312, 0.9972065091133118], "3": [397.7639465332031, 131.45269775390625, 0.9061970114707947], "4": [288.7978515625, 127.12371826171875, 0.8823771476745605], "5": [452.3768615722656, 236.87893676757812, 0.9922540187835693], "6": [221.765869140625, 240.87486267089844, 0.9972556233406067], "7": [537.5443725585938, 385.7524719238281, 0.8727443814277649], "8": [108.22378540039062, 359.60296630859375, 0.9433652758598328], "9": [536.3526611328125, 462.3961181640625, 0.7720209956169128], "10": [129.253173828125, 213.19847106933594, 0.9381669759750366], "11": [430.1417541503906, 480.0, 0.1840202808380127], "12": [278.602783203125, 480.0, 0.24078844487667084], "13": [495.42926025390625, 429.56121826171875, 0.0012351896148175001], "14": [287.77069091796875, 443.87896728515625, 0.0018257327610626817], "15": [470.79949951171875, 480.0, 0.00011109349725302309], "16": [263.632080078125, 469.27203369140625, 0.0001462908840039745]}} +{"t": 55.584609, "tracked": true, "track_id": 1, "bbox": [90.23593139648438, 41.236087799072266, 603.2144165039062, 480.0], "det_conf": 0.9102150201797485, "mean_kpt_conf": 0.9385880665345625, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.867172605059315, "right_lift": -0.7177632599183826, "left_bend": 0.16107440052351898, "right_bend": 0.8065987256945991}, "keypoints": {"0": [346.9377136230469, 152.3551025390625, 0.9993003606796265], "1": [370.11029052734375, 126.7681884765625, 0.998082160949707], "2": [325.10089111328125, 125.24090576171875, 0.9972171783447266], "3": [397.72576904296875, 131.96409606933594, 0.9056116938591003], "4": [289.459716796875, 126.85249328613281, 0.8819893598556519], "5": [451.4556884765625, 237.09152221679688, 0.9924112558364868], "6": [222.81614685058594, 239.7377471923828, 0.997276246547699], "7": [535.9100341796875, 384.1504821777344, 0.8807916045188904], "8": [109.191162109375, 356.8673400878906, 0.9473450779914856], "9": [537.0848999023438, 461.0857849121094, 0.7830002903938293], "10": [132.8001708984375, 212.9737091064453, 0.9414435029029846], "11": [428.80230712890625, 480.0, 0.19256974756717682], "12": [277.7009582519531, 480.0, 0.25100991129875183], "13": [493.0032958984375, 429.6586608886719, 0.0012362789129838347], "14": [281.7537841796875, 443.10797119140625, 0.0018150501418858767], "15": [469.46563720703125, 480.0, 0.000110738976218272], "16": [254.01156616210938, 468.5574645996094, 0.00014467298751696944]}} +{"t": 55.621357, "tracked": true, "track_id": 1, "bbox": [91.44178771972656, 41.52933120727539, 598.555419921875, 479.972412109375], "det_conf": 0.9125950336456299, "mean_kpt_conf": 0.9386091286485846, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8679472125702316, "right_lift": -0.7161741583616188, "left_bend": 0.16661066866629318, "right_bend": 0.808046782025561}, "keypoints": {"0": [347.5154113769531, 152.67098999023438, 0.9992584586143494], "1": [370.60931396484375, 126.96905517578125, 0.9980369210243225], "2": [325.48443603515625, 125.85458374023438, 0.9970676302909851], "3": [398.3323974609375, 131.75686645507812, 0.9073446393013], "4": [289.9120788574219, 127.70050048828125, 0.8798707127571106], "5": [451.76898193359375, 234.91676330566406, 0.9921249747276306], "6": [223.6634521484375, 240.01527404785156, 0.9972518086433411], "7": [534.7876586914062, 379.99859619140625, 0.8813044428825378], "8": [111.0279541015625, 355.59649658203125, 0.9485780000686646], "9": [534.4857177734375, 462.03436279296875, 0.7819210290908813], "10": [136.01023864746094, 209.58087158203125, 0.9419417977333069], "11": [429.1964416503906, 480.0, 0.20106428861618042], "12": [278.3164367675781, 480.0, 0.2629280388355255], "13": [492.0830383300781, 428.8576965332031, 0.0012894843239337206], "14": [280.83135986328125, 444.3094177246094, 0.0019051696872338653], "15": [465.95751953125, 480.0, 0.00011601134610828012], "16": [251.0784912109375, 469.5680236816406, 0.00015237278421409428]}} +{"t": 55.68381, "tracked": true, "track_id": 1, "bbox": [92.2293701171875, 42.059207916259766, 594.4725341796875, 479.9235534667969], "det_conf": 0.9126921892166138, "mean_kpt_conf": 0.9360627044330944, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8797089207839117, "right_lift": -0.7214751181305563, "left_bend": 0.1590017460797972, "right_bend": 0.8190338334667482}, "keypoints": {"0": [347.9126281738281, 152.4825439453125, 0.9992289543151855], "1": [371.1745300292969, 126.50186157226562, 0.9980303645133972], "2": [325.6898498535156, 125.44424438476562, 0.9970093965530396], "3": [399.3891906738281, 131.16363525390625, 0.9108657240867615], "4": [290.0357360839844, 127.18943786621094, 0.8799846768379211], "5": [452.90228271484375, 237.45626831054688, 0.9919353723526001], "6": [222.0167999267578, 240.5457305908203, 0.9971386194229126], "7": [532.643798828125, 384.9798583984375, 0.8708198666572571], "8": [110.41683959960938, 356.8251953125, 0.9426454901695251], "9": [532.337158203125, 462.1779479980469, 0.7720546126365662], "10": [139.4344940185547, 210.93942260742188, 0.9369766712188721], "11": [425.97802734375, 480.0, 0.18360476195812225], "12": [273.5259704589844, 480.0, 0.24049820005893707], "13": [489.28814697265625, 427.02899169921875, 0.0012835034867748618], "14": [277.5696716308594, 442.0259094238281, 0.0018920798320323229], "15": [460.8629150390625, 475.28082275390625, 0.00012375398364383727], "16": [250.24929809570312, 466.7779541015625, 0.00016217069060076028]}} +{"t": 55.749624, "tracked": true, "track_id": 1, "bbox": [93.48542785644531, 42.31348419189453, 589.3190307617188, 479.8758850097656], "det_conf": 0.9172107577323914, "mean_kpt_conf": 0.9341945377263156, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8845576593754672, "right_lift": -0.7245692494328725, "left_bend": 0.1758726568112591, "right_bend": 0.8319237010916288}, "keypoints": {"0": [348.61688232421875, 153.5780029296875, 0.9992349147796631], "1": [371.40594482421875, 127.53265380859375, 0.9978664517402649], "2": [326.0798034667969, 126.77052307128906, 0.9972174167633057], "3": [398.7255859375, 132.01023864746094, 0.892467200756073], "4": [289.5053405761719, 128.63604736328125, 0.8912479877471924], "5": [451.7339172363281, 238.35162353515625, 0.9915825724601746], "6": [221.37522888183594, 239.9027557373047, 0.9970000386238098], "7": [531.4739990234375, 389.5738220214844, 0.8637831211090088], "8": [109.71412658691406, 357.29388427734375, 0.9411630630493164], "9": [526.5977783203125, 461.953125, 0.7673043012619019], "10": [144.958740234375, 208.3524169921875, 0.937272846698761], "11": [424.66571044921875, 480.0, 0.17421244084835052], "12": [272.60992431640625, 480.0, 0.2303904891014099], "13": [487.2010803222656, 428.1304626464844, 0.0012699756771326065], "14": [276.522216796875, 442.0556640625, 0.0018813664792105556], "15": [460.18505859375, 476.7741394042969, 0.00012248581333551556], "16": [248.8712158203125, 468.4033508300781, 0.00015959233860485256]}} +{"t": 55.81373, "tracked": true, "track_id": 1, "bbox": [93.8869400024414, 42.310733795166016, 584.0555419921875, 479.9226379394531], "det_conf": 0.921623945236206, "mean_kpt_conf": 0.9317894361235879, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8830570826319412, "right_lift": -0.7219118706389425, "left_bend": 0.1709012662584348, "right_bend": 0.8317554243464181}, "keypoints": {"0": [348.93798828125, 153.36285400390625, 0.9991957545280457], "1": [371.7597351074219, 127.98342895507812, 0.9976345300674438], "2": [326.56591796875, 126.5513916015625, 0.9972444772720337], "3": [398.19171142578125, 133.59170532226562, 0.8800832629203796], "4": [289.22314453125, 128.7364501953125, 0.8995932340621948], "5": [449.0557556152344, 239.99856567382812, 0.9911571741104126], "6": [222.05026245117188, 239.73817443847656, 0.9969383478164673], "7": [527.685546875, 387.96295166015625, 0.8571172952651978], "8": [113.2847900390625, 353.20751953125, 0.9414600729942322], "9": [524.1142578125, 461.6263732910156, 0.7535994648933411], "10": [148.2611083984375, 207.55899047851562, 0.935660183429718], "11": [423.69964599609375, 480.0, 0.18342159688472748], "12": [273.5298156738281, 480.0, 0.24571587145328522], "13": [485.529296875, 431.21795654296875, 0.0013181474059820175], "14": [277.32281494140625, 443.9189453125, 0.0019819254521280527], "15": [460.5574951171875, 477.2915344238281, 0.00012692702875938267], "16": [251.31797790527344, 467.31500244140625, 0.00016607028373982757]}} +{"t": 55.881722, "tracked": true, "track_id": 1, "bbox": [94.4666976928711, 42.488590240478516, 580.29150390625, 479.93896484375], "det_conf": 0.9216542840003967, "mean_kpt_conf": 0.9326953942125494, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8899059911133547, "right_lift": -0.734805439380407, "left_bend": 0.18305995912813997, "right_bend": 0.8395370611123595}, "keypoints": {"0": [348.4049377441406, 152.96868896484375, 0.9992456436157227], "1": [371.20489501953125, 126.964599609375, 0.9977425336837769], "2": [326.26202392578125, 125.48628234863281, 0.9973132014274597], "3": [398.2300720214844, 131.17225646972656, 0.8822434544563293], "4": [289.3101501464844, 125.98703002929688, 0.896156370639801], "5": [451.76239013671875, 240.4019012451172, 0.9916805624961853], "6": [220.6920928955078, 238.90060424804688, 0.9970954656600952], "7": [530.0528564453125, 393.14129638671875, 0.8574893474578857], "8": [112.87834167480469, 355.69952392578125, 0.9415687322616577], "9": [523.0272216796875, 462.1608581542969, 0.7615177631378174], "10": [149.20965576171875, 208.07293701171875, 0.9375962615013123], "11": [425.27130126953125, 480.0, 0.1762898564338684], "12": [272.5472106933594, 480.0, 0.2369411587715149], "13": [487.33935546875, 433.2417297363281, 0.0012550868559628725], "14": [277.32647705078125, 445.17230224609375, 0.0018949008081108332], "15": [460.03936767578125, 478.19390869140625, 0.00011812380398623645], "16": [252.9949493408203, 468.16046142578125, 0.00015520404849667102]}} +{"t": 55.916815, "tracked": true, "track_id": 1, "bbox": [94.76988220214844, 42.588043212890625, 580.2584228515625, 479.9588317871094], "det_conf": 0.9230830669403076, "mean_kpt_conf": 0.935455549846996, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8868618153491029, "right_lift": -0.7314578320779134, "left_bend": 0.16955785624150585, "right_bend": 0.8424901343927309}, "keypoints": {"0": [348.51812744140625, 152.1070556640625, 0.9992172718048096], "1": [371.51727294921875, 126.1536865234375, 0.997820258140564], "2": [326.3077392578125, 124.81074523925781, 0.9971343278884888], "3": [398.9578857421875, 130.70413208007812, 0.8939806818962097], "4": [289.776123046875, 125.93768310546875, 0.8916588425636292], "5": [451.98175048828125, 238.59005737304688, 0.9917129278182983], "6": [220.84007263183594, 239.603271484375, 0.9971423745155334], "7": [529.7899169921875, 387.94049072265625, 0.8653892874717712], "8": [112.30812072753906, 356.0251770019531, 0.9437958002090454], "9": [525.8974609375, 462.1651611328125, 0.7722574472427368], "10": [150.98680114746094, 207.9537353515625, 0.9399018287658691], "11": [425.34832763671875, 480.0, 0.18582803010940552], "12": [272.553466796875, 480.0, 0.2477712780237198], "13": [487.21527099609375, 432.2416076660156, 0.0012889942154288292], "14": [276.90435791015625, 446.403076171875, 0.0019370134687051177], "15": [458.17083740234375, 479.0586242675781, 0.00012048157077515498], "16": [250.80084228515625, 470.10223388671875, 0.00015850014460738748]}} +{"t": 55.980468, "tracked": true, "track_id": 1, "bbox": [95.42478942871094, 42.442195892333984, 579.4639282226562, 479.9480895996094], "det_conf": 0.9241858720779419, "mean_kpt_conf": 0.9359156868674539, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8798198348757663, "right_lift": -0.7256610418075472, "left_bend": 0.16935215221445812, "right_bend": 0.8419393284337519}, "keypoints": {"0": [348.3810729980469, 152.29901123046875, 0.9992008805274963], "1": [371.4669189453125, 126.52642822265625, 0.9977861642837524], "2": [326.2650146484375, 125.05355834960938, 0.9970947504043579], "3": [398.93292236328125, 131.06158447265625, 0.8940749168395996], "4": [289.8305358886719, 125.99800109863281, 0.8914036154747009], "5": [451.04498291015625, 237.48941040039062, 0.991671085357666], "6": [221.85549926757812, 238.77487182617188, 0.9971227049827576], "7": [530.0335693359375, 383.70159912109375, 0.868998646736145], "8": [114.34756469726562, 352.1591491699219, 0.946008026599884], "9": [527.097412109375, 463.62164306640625, 0.771428108215332], "10": [153.5710906982422, 206.03219604492188, 0.9402836561203003], "11": [424.2171936035156, 480.0, 0.1980936974287033], "12": [272.3220520019531, 480.0, 0.2631922662258148], "13": [486.8294677734375, 433.504150390625, 0.001303341705352068], "14": [276.4010314941406, 447.7921142578125, 0.0019710445776581764], "15": [457.9537353515625, 479.67486572265625, 0.00012155545118730515], "16": [248.25436401367188, 469.8746032714844, 0.0001603969285497442]}} +{"t": 56.046857, "tracked": true, "track_id": 1, "bbox": [95.34122467041016, 42.84957504272461, 579.5385131835938, 480.0], "det_conf": 0.9218475222587585, "mean_kpt_conf": 0.9349222562529824, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8871478932936361, "right_lift": -0.7322423030223433, "left_bend": 0.17127473951776706, "right_bend": 0.8459285848504674}, "keypoints": {"0": [348.710205078125, 152.62693786621094, 0.9992270469665527], "1": [371.72119140625, 126.4949951171875, 0.9977632761001587], "2": [326.2165222167969, 125.17057800292969, 0.9972413778305054], "3": [399.1805419921875, 130.90492248535156, 0.8874280452728271], "4": [289.1766662597656, 126.11444091796875, 0.8953779339790344], "5": [451.51385498046875, 240.23101806640625, 0.9917227625846863], "6": [221.56349182128906, 238.95962524414062, 0.9970869421958923], "7": [529.6739501953125, 390.48406982421875, 0.8633732795715332], "8": [115.09786987304688, 353.42889404296875, 0.9440685510635376], "9": [525.4954833984375, 461.94342041015625, 0.7708123922348022], "10": [155.04428100585938, 206.32496643066406, 0.9400432109832764], "11": [423.2154541015625, 480.0, 0.18897564709186554], "12": [270.8074951171875, 480.0, 0.2521038353443146], "13": [486.60675048828125, 435.3714294433594, 0.0012770352186635137], "14": [275.478271484375, 448.03411865234375, 0.0019374227849766612], "15": [458.6831970214844, 478.7041320800781, 0.00011778693442465737], "16": [248.25445556640625, 469.90704345703125, 0.0001553004258312285]}} +{"t": 56.109542, "tracked": true, "track_id": 1, "bbox": [94.73379516601562, 42.77682113647461, 578.8455200195312, 480.0], "det_conf": 0.9224004149436951, "mean_kpt_conf": 0.9366755539720709, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8828873073566383, "right_lift": -0.7320925155081063, "left_bend": 0.16712310160161875, "right_bend": 0.8396051619116156}, "keypoints": {"0": [348.73980712890625, 152.508544921875, 0.9992330074310303], "1": [371.8667297363281, 126.52163696289062, 0.9977216124534607], "2": [326.3235168457031, 124.94525146484375, 0.9972510933876038], "3": [398.9990539550781, 131.13336181640625, 0.8825207948684692], "4": [289.02838134765625, 125.84780883789062, 0.8976157903671265], "5": [450.343017578125, 239.06436157226562, 0.9918674826622009], "6": [221.4970703125, 239.35360717773438, 0.9971350431442261], "7": [529.157470703125, 387.24688720703125, 0.8706309795379639], "8": [114.1722412109375, 354.69580078125, 0.9459523558616638], "9": [526.5042724609375, 460.48309326171875, 0.7808175086975098], "10": [151.0311279296875, 207.59397888183594, 0.9426854252815247], "11": [424.027099609375, 480.0, 0.1959221065044403], "12": [272.3791198730469, 480.0, 0.2586189806461334], "13": [487.23193359375, 435.0923156738281, 0.0012963481713086367], "14": [277.2236328125, 448.5355529785156, 0.0019352721283212304], "15": [459.915771484375, 480.0, 0.00011566495231818408], "16": [249.898193359375, 470.403076171875, 0.0001505705586168915]}} +{"t": 56.177588, "tracked": true, "track_id": 1, "bbox": [93.7497787475586, 43.08405303955078, 578.6790161132812, 480.0], "det_conf": 0.916814386844635, "mean_kpt_conf": 0.9328726638447155, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8928838166571965, "right_lift": -0.7227419945779189, "left_bend": 0.1834719820048703, "right_bend": 0.8282431179279716}, "keypoints": {"0": [348.34417724609375, 152.68060302734375, 0.9992432594299316], "1": [371.49530029296875, 126.66181945800781, 0.9978577494621277], "2": [326.0116882324219, 125.08808898925781, 0.9972424507141113], "3": [399.0583190917969, 131.50729370117188, 0.8947174549102783], "4": [289.26971435546875, 126.1778564453125, 0.8895751237869263], "5": [451.1740417480469, 242.33917236328125, 0.9913893342018127], "6": [222.26315307617188, 239.18719482421875, 0.9971160888671875], "7": [528.10888671875, 394.8948974609375, 0.8536635637283325], "8": [112.82815551757812, 353.62969970703125, 0.942814826965332], "9": [520.9906005859375, 459.757080078125, 0.7598602175712585], "10": [146.41453552246094, 205.8277130126953, 0.9381192326545715], "11": [422.8725891113281, 480.0, 0.17618508636951447], "12": [271.181884765625, 480.0, 0.24091574549674988], "13": [484.08221435546875, 436.0966796875, 0.0012258290080353618], "14": [273.3505859375, 446.580078125, 0.001882196869701147], "15": [458.65887451171875, 478.06146240234375, 0.0001170393661595881], "16": [246.8065185546875, 467.76080322265625, 0.00015644679660908878]}} +{"t": 56.243498, "tracked": true, "track_id": 1, "bbox": [92.88346099853516, 43.214603424072266, 579.6600952148438, 480.0], "det_conf": 0.9156613349914551, "mean_kpt_conf": 0.9333740743723783, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8926657954346632, "right_lift": -0.7147233598518656, "left_bend": 0.160817282007322, "right_bend": 0.8163653977943439}, "keypoints": {"0": [348.99786376953125, 153.0526885986328, 0.9992247819900513], "1": [372.013671875, 127.11297607421875, 0.9978588223457336], "2": [326.8009948730469, 125.51214599609375, 0.9971100687980652], "3": [399.3382873535156, 132.0895538330078, 0.8965087532997131], "4": [290.38787841796875, 126.88580322265625, 0.8882460594177246], "5": [450.6769104003906, 241.9634552001953, 0.9912793040275574], "6": [222.94586181640625, 241.28549194335938, 0.9970892071723938], "7": [526.152099609375, 391.44482421875, 0.8564130663871765], "8": [110.02333068847656, 356.6808776855469, 0.9414423108100891], "9": [523.6380004882812, 458.18603515625, 0.7637360095977783], "10": [139.6595001220703, 208.7056121826172, 0.9382064342498779], "11": [423.931884765625, 480.0, 0.16982485353946686], "12": [273.2391357421875, 480.0, 0.22998088598251343], "13": [484.9866943359375, 430.6634826660156, 0.001255794777534902], "14": [275.3564758300781, 443.2850036621094, 0.0018843344878405333], "15": [459.307861328125, 475.2992248535156, 0.00012190553388791159], "16": [248.33621215820312, 466.1995849609375, 0.00016065117961261421]}} +{"t": 56.308838, "tracked": true, "track_id": 1, "bbox": [86.49955749511719, 43.50798416137695, 577.285400390625, 480.0], "det_conf": 0.9083362817764282, "mean_kpt_conf": 0.9360697269439697, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8969393059872375, "right_lift": -0.7010842081759832, "left_bend": 0.1467148858211692, "right_bend": 0.7896892589802637}, "keypoints": {"0": [349.670166015625, 153.0092010498047, 0.9992789626121521], "1": [372.57855224609375, 126.60964965820312, 0.9980584979057312], "2": [327.32830810546875, 125.31063842773438, 0.997137188911438], "3": [400.248046875, 130.51687622070312, 0.904769241809845], "4": [291.1670227050781, 126.14578247070312, 0.8802013993263245], "5": [451.9389343261719, 240.54273986816406, 0.9915825724601746], "6": [224.83804321289062, 239.71072387695312, 0.9972482323646545], "7": [526.0833740234375, 390.9498596191406, 0.8670323491096497], "8": [109.12091064453125, 353.4814453125, 0.94695645570755], "9": [525.8826904296875, 459.6768798828125, 0.773098349571228], "10": [128.7622528076172, 206.8623046875, 0.9414037466049194], "11": [423.68328857421875, 480.0, 0.18019261956214905], "12": [272.57354736328125, 480.0, 0.24444769322872162], "13": [481.2910461425781, 431.92877197265625, 0.00123754539526999], "14": [264.7718200683594, 444.33526611328125, 0.0018346754368394613], "15": [456.71075439453125, 475.7195129394531, 0.00011560694838408381], "16": [233.76319885253906, 467.541259765625, 0.0001512033340986818]}} +{"t": 56.344887, "tracked": true, "track_id": 1, "bbox": [80.66173553466797, 43.592193603515625, 577.3760375976562, 480.0], "det_conf": 0.9007921814918518, "mean_kpt_conf": 0.9298007867553018, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8989661782511287, "right_lift": -0.7036381299425757, "left_bend": 0.16295223677147147, "right_bend": 0.7667869653853705}, "keypoints": {"0": [349.7119445800781, 152.5104522705078, 0.9992521405220032], "1": [373.0755310058594, 126.45245361328125, 0.9980827569961548], "2": [327.6734924316406, 124.93466186523438, 0.9970933198928833], "3": [401.21661376953125, 131.0987548828125, 0.9149363040924072], "4": [292.0465393066406, 126.30709838867188, 0.8766152262687683], "5": [454.2372131347656, 241.51895141601562, 0.9913082718849182], "6": [224.86793518066406, 241.49749755859375, 0.997239351272583], "7": [527.7020263671875, 392.29443359375, 0.8471977114677429], "8": [108.90423583984375, 356.331787109375, 0.9391575455665588], "9": [523.7459106445312, 459.8006591796875, 0.7367827296257019], "10": [117.24647521972656, 211.7401123046875, 0.9301432967185974], "11": [425.2926330566406, 480.0, 0.17228779196739197], "12": [273.6046142578125, 480.0, 0.23600539565086365], "13": [483.730712890625, 432.53619384765625, 0.0012467739870771766], "14": [270.54180908203125, 444.3584899902344, 0.001872192951850593], "15": [455.19549560546875, 474.9689636230469, 0.00012314878404140472], "16": [242.27359008789062, 465.3524169921875, 0.00016363125178031623]}} +{"t": 56.406974, "tracked": true, "track_id": 1, "bbox": [78.45911407470703, 42.91911315917969, 585.144287109375, 480.0], "det_conf": 0.8934105038642883, "mean_kpt_conf": 0.9147192727435719, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9006096933076345, "right_lift": -0.6448891092393232, "left_bend": 0.1811971835372922, "right_bend": 0.7098216263751964}, "keypoints": {"0": [352.5958251953125, 152.6276092529297, 0.9991722106933594], "1": [375.71441650390625, 125.36885070800781, 0.997837483882904], "2": [329.6424865722656, 125.03404235839844, 0.997018575668335], "3": [404.70587158203125, 130.030029296875, 0.8967525362968445], "4": [292.4957580566406, 128.2161407470703, 0.8612549901008606], "5": [462.07110595703125, 242.078125, 0.9863172173500061], "6": [231.0153045654297, 245.4326171875, 0.9970583915710449], "7": [533.340576171875, 389.75811767578125, 0.7787503600120544], "8": [115.94099426269531, 342.53125, 0.9472997188568115], "9": [524.3319702148438, 464.70770263671875, 0.6696550250053406], "10": [109.70468139648438, 193.08079528808594, 0.9307954907417297], "11": [438.7485046386719, 471.5213623046875, 0.15750448405742645], "12": [286.50054931640625, 476.208251953125, 0.25210487842559814], "13": [486.5888977050781, 433.8030090332031, 0.0015795098152011633], "14": [284.61968994140625, 449.6451416015625, 0.0029098475351929665], "15": [444.13018798828125, 476.2536926269531, 0.00015254534082487226], "16": [253.363525390625, 470.92083740234375, 0.0002379590441705659]}} +{"t": 56.473716, "tracked": true, "track_id": 1, "bbox": [51.787109375, 43.585487365722656, 587.645263671875, 480.0], "det_conf": 0.9079132080078125, "mean_kpt_conf": 0.9382202245972373, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.892047797109856, "right_lift": -0.6351370409690881, "left_bend": 0.29803743376547526, "right_bend": 0.6858378747608853}, "keypoints": {"0": [353.64361572265625, 153.120849609375, 0.9994567036628723], "1": [376.7484130859375, 126.09635925292969, 0.9983996748924255], "2": [331.1106872558594, 125.29605102539062, 0.9977438449859619], "3": [405.39739990234375, 130.22756958007812, 0.9103811383247375], "4": [293.64794921875, 127.68878173828125, 0.8650984764099121], "5": [465.45440673828125, 242.2622833251953, 0.9916985034942627], "6": [229.7344970703125, 245.6325225830078, 0.9980543851852417], "7": [538.7293701171875, 386.8934631347656, 0.8573434352874756], "8": [106.5125732421875, 346.956787109375, 0.9622359871864319], "9": [509.64788818359375, 444.51885986328125, 0.7850487232208252], "10": [90.85092163085938, 197.42727661132812, 0.9549615979194641], "11": [437.48199462890625, 480.0, 0.22092895209789276], "12": [280.5726013183594, 480.0, 0.32214826345443726], "13": [479.8204345703125, 447.67120361328125, 0.0011563654989004135], "14": [263.1054992675781, 457.20599365234375, 0.001903404132463038], "15": [438.558837890625, 480.0, 8.544079901184887e-05], "16": [221.18411254882812, 469.61761474609375, 0.00012238808267284185]}} +{"t": 56.537791, "tracked": true, "track_id": 1, "bbox": [33.55902862548828, 43.38737106323242, 590.061279296875, 480.0], "det_conf": 0.9078407287597656, "mean_kpt_conf": 0.9411281455646862, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8826183522415145, "right_lift": -0.6233909941595489, "left_bend": 0.2867551982508471, "right_bend": 0.6658205767310083}, "keypoints": {"0": [355.131591796875, 153.3136749267578, 0.999488115310669], "1": [378.3252258300781, 126.74209594726562, 0.9984049201011658], "2": [333.0581970214844, 125.19412231445312, 0.997871994972229], "3": [406.1789245605469, 131.40896606445312, 0.9051685333251953], "4": [294.96844482421875, 127.28890991210938, 0.8717607855796814], "5": [465.05743408203125, 243.2183837890625, 0.9923079013824463], "6": [229.7253875732422, 246.87416076660156, 0.9981491565704346], "7": [539.5462646484375, 383.074951171875, 0.8708612322807312], "8": [106.46969604492188, 345.1418151855469, 0.9641628265380859], "9": [512.42822265625, 445.21728515625, 0.7976459264755249], "10": [83.80728149414062, 197.3267059326172, 0.9565882086753845], "11": [436.58258056640625, 480.0, 0.2408435046672821], "12": [279.4442138671875, 480.0, 0.34092211723327637], "13": [479.1148376464844, 449.286376953125, 0.0011799695203080773], "14": [260.13720703125, 458.7594299316406, 0.001868783263489604], "15": [439.153076171875, 480.0, 8.294426515931264e-05], "16": [218.5693359375, 467.80438232421875, 0.00011492065095808357]}} +{"t": 56.571921, "tracked": true, "track_id": 1, "bbox": [27.439359664916992, 43.23854064941406, 590.8511352539062, 480.0], "det_conf": 0.9051113128662109, "mean_kpt_conf": 0.942784152247689, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8823662097321775, "right_lift": -0.6196656581160785, "left_bend": 0.30574796144059113, "right_bend": 0.6558772085065097}, "keypoints": {"0": [355.0014343261719, 152.57437133789062, 0.99949049949646], "1": [378.96435546875, 126.47322082519531, 0.9985324144363403], "2": [333.20880126953125, 124.58673095703125, 0.9977772831916809], "3": [407.78887939453125, 132.3785400390625, 0.9222995638847351], "4": [295.9758605957031, 127.47555541992188, 0.8570560216903687], "5": [466.35955810546875, 243.2692413330078, 0.9925368428230286], "6": [230.937744140625, 245.9542999267578, 0.9982268214225769], "7": [541.3765258789062, 383.93560791015625, 0.8766664266586304], "8": [105.57806396484375, 344.9280090332031, 0.9659909009933472], "9": [510.916748046875, 443.80987548828125, 0.804729163646698], "10": [79.24513244628906, 199.06985473632812, 0.9573197364807129], "11": [435.5953674316406, 480.0, 0.24484482407569885], "12": [278.2135925292969, 480.0, 0.3468558192253113], "13": [477.5389099121094, 448.3153076171875, 0.0011617899872362614], "14": [256.7955627441406, 455.6345520019531, 0.0018461698200553656], "15": [438.9945068359375, 480.0, 8.258035086328164e-05], "16": [213.79083251953125, 464.40325927734375, 0.00011586640903260559]}} +{"t": 56.607831, "tracked": true, "track_id": 1, "bbox": [23.34281349182129, 43.1795654296875, 590.0390625, 480.0], "det_conf": 0.9046861529350281, "mean_kpt_conf": 0.895205982029438, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8829152765633639, "right_lift": -0.617335391459344, "left_bend": 0.29163486667357624, "right_bend": 0.646149114666422}, "keypoints": {"0": [355.18017578125, 152.35545349121094, 0.9994747042655945], "1": [378.9597473144531, 126.628173828125, 0.9984548091888428], "2": [333.581298828125, 124.4207763671875, 0.9977261424064636], "3": [407.15911865234375, 133.01869201660156, 0.9195607900619507], "4": [296.3309326171875, 127.57012939453125, 0.8604879379272461], "5": [463.7815246582031, 244.02035522460938, 0.9924958944320679], "6": [232.6641387939453, 247.14268493652344, 0.998262345790863], "7": [537.1309204101562, 381.9476013183594, 0.8785027265548706], "8": [108.33430480957031, 344.7061767578125, 0.9670513868331909], "9": [508.97344970703125, 443.76116943359375, 0.8061834573745728], "10": [78.09269714355469, 200.136474609375, 0.9582456350326538], "11": [434.30926513671875, 480.0, 0.2593366205692291], "12": [279.54302978515625, 480.0, 0.3660259544849396], "13": [474.72589111328125, 450.149169921875, 0.0012319062370806932], "14": [256.8626403808594, 457.7049560546875, 0.0019503578078001738], "15": [437.2225341796875, 480.0, 8.598867862019688e-05], "16": [213.29220581054688, 462.8832702636719, 0.00012005300231976435]}} +{"t": 56.673997, "tracked": true, "track_id": 1, "bbox": [21.320920944213867, 43.465999603271484, 589.282470703125, 479.9095764160156], "det_conf": 0.9062216281890869, "mean_kpt_conf": 0.8943051025271416, "diagnostics": {"tracked": true, "visible_keypoints": 12, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8813447731620092, "right_lift": -0.6224245469948898, "left_bend": 0.3003233998743885, "right_bend": 0.6420502999953859}, "keypoints": {"0": [355.9186706542969, 152.808837890625, 0.9994884729385376], "1": [379.5038146972656, 126.64697265625, 0.9984299540519714], "2": [334.1246337890625, 124.75090026855469, 0.9977987408638], "3": [407.5643005371094, 132.1761474609375, 0.9135955572128296], "4": [296.5773010253906, 127.44998168945312, 0.8621798157691956], "5": [464.8753662109375, 243.16505432128906, 0.9925272464752197], "6": [233.26190185546875, 246.39871215820312, 0.9982106685638428], "7": [539.6975708007812, 382.7371826171875, 0.8801780343055725], "8": [109.604248046875, 344.7372131347656, 0.966704785823822], "9": [510.089599609375, 443.8121337890625, 0.8126854300498962], "10": [76.48985290527344, 200.43402099609375, 0.9590080976486206], "11": [433.9847412109375, 480.0, 0.2494189590215683], "12": [278.9263000488281, 480.0, 0.35085442662239075], "13": [474.4271240234375, 447.20166015625, 0.0012273916509002447], "14": [255.61766052246094, 454.5604553222656, 0.0019204161362722516], "15": [436.51739501953125, 480.0, 8.483344572596252e-05], "16": [211.7364501953125, 462.31658935546875, 0.00011700276081683114]}} +{"t": 56.738587, "tracked": true, "track_id": 1, "bbox": [23.830551147460938, 41.688419342041016, 588.374755859375, 479.723388671875], "det_conf": 0.9089763164520264, "mean_kpt_conf": 0.9231964729048989, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8902580144960461, "right_lift": -0.6044405029454722, "left_bend": 0.2127650397489592, "right_bend": 0.6420127555286849}, "keypoints": {"0": [355.8241271972656, 151.70144653320312, 0.9992689490318298], "1": [379.308349609375, 125.79873657226562, 0.9980150461196899], "2": [334.1625671386719, 124.44711303710938, 0.9972274899482727], "3": [407.2364807128906, 132.70445251464844, 0.9089343547821045], "4": [297.4698181152344, 128.79067993164062, 0.8574355244636536], "5": [461.92144775390625, 244.87203979492188, 0.9885335564613342], "6": [234.089599609375, 247.54576110839844, 0.9975868463516235], "7": [536.0797119140625, 389.8254699707031, 0.813544511795044], "8": [112.13595581054688, 340.0753479003906, 0.9540386199951172], "9": [521.7994384765625, 461.9237060546875, 0.7052039504051208], "10": [80.89566040039062, 188.23831176757812, 0.9353723526000977], "11": [433.9764404296875, 475.2108154296875, 0.1915329098701477], "12": [283.93719482421875, 478.3636169433594, 0.2927045226097107], "13": [477.9146423339844, 439.93951416015625, 0.001708165043964982], "14": [278.4261779785156, 452.4446716308594, 0.0029369774274528027], "15": [441.587890625, 475.41448974609375, 0.00014849698345642537], "16": [248.61300659179688, 463.31280517578125, 0.00022153739701025188]}} +{"t": 56.802199, "tracked": true, "track_id": 1, "bbox": [28.91164207458496, 42.95490264892578, 587.0723876953125, 479.6834716796875], "det_conf": 0.9052270650863647, "mean_kpt_conf": 0.9410496733405374, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8802327296960966, "right_lift": -0.6133245281815617, "left_bend": 0.2818296264454762, "right_bend": 0.6680154146617513}, "keypoints": {"0": [354.86572265625, 152.8843994140625, 0.9994522929191589], "1": [378.8157958984375, 126.32781982421875, 0.9985135197639465], "2": [333.13665771484375, 124.730224609375, 0.9975984692573547], "3": [408.255126953125, 131.17491149902344, 0.9260124564170837], "4": [296.6487731933594, 126.81509399414062, 0.8542442917823792], "5": [466.3631896972656, 242.58389282226562, 0.9920498728752136], "6": [230.94992065429688, 247.09197998046875, 0.9981628060340881], "7": [541.1725463867188, 381.34844970703125, 0.8679416179656982], "8": [104.39892578125, 345.3621520996094, 0.963385820388794], "9": [514.47216796875, 446.1291198730469, 0.7983415126800537], "10": [84.4429931640625, 195.55015563964844, 0.9558437466621399], "11": [434.3609619140625, 480.0, 0.23361967504024506], "12": [277.721435546875, 480.0, 0.3338647484779358], "13": [476.63916015625, 447.8875732421875, 0.0011829202994704247], "14": [261.4020080566406, 457.9909362792969, 0.0019029993563890457], "15": [435.7120361328125, 480.0, 8.632932440377772e-05], "16": [219.43597412109375, 466.2010498046875, 0.0001224539300892502]}} +{"t": 56.8671, "tracked": true, "track_id": 1, "bbox": [38.920536041259766, 43.299930572509766, 586.1848754882812, 479.7275390625], "det_conf": 0.9110080599784851, "mean_kpt_conf": 0.9423521215265448, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8852016650417048, "right_lift": -0.6280459403319645, "left_bend": 0.3276511593419182, "right_bend": 0.6824950952721064}, "keypoints": {"0": [354.8865051269531, 153.10968017578125, 0.9994818568229675], "1": [378.21478271484375, 126.28765869140625, 0.9984285235404968], "2": [332.45196533203125, 125.2230224609375, 0.9978162050247192], "3": [406.7131652832031, 130.92147827148438, 0.9093347191810608], "4": [294.75274658203125, 127.79754638671875, 0.8658019304275513], "5": [465.5451965332031, 242.01451110839844, 0.9921552538871765], "6": [230.9022216796875, 245.90582275390625, 0.9981237053871155], "7": [540.5660400390625, 384.76495361328125, 0.8705471754074097], "8": [106.25375366210938, 346.5063781738281, 0.9647833704948425], "9": [507.20849609375, 439.7287902832031, 0.8099656701087952], "10": [90.16592407226562, 194.8916015625, 0.9594349265098572], "11": [437.3275451660156, 480.0, 0.23214296996593475], "12": [281.114501953125, 480.0, 0.33185461163520813], "13": [479.657470703125, 448.5556640625, 0.0011693070409819484], "14": [265.0306701660156, 457.482177734375, 0.0018848339095711708], "15": [439.204833984375, 480.0, 8.23019800009206e-05], "16": [221.8834228515625, 468.45904541015625, 0.00011625984916463494]}} +{"t": 56.903101, "tracked": true, "track_id": 1, "bbox": [45.9673957824707, 42.57475662231445, 584.4950561523438, 479.7287292480469], "det_conf": 0.9096994400024414, "mean_kpt_conf": 0.9148169647563588, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9011108092362423, "right_lift": -0.635054671784058, "left_bend": 0.1975606240308972, "right_bend": 0.6795125210396734}, "keypoints": {"0": [354.57196044921875, 152.0208740234375, 0.9992308616638184], "1": [377.3380432128906, 125.44804382324219, 0.9978578686714172], "2": [332.11602783203125, 124.86688232421875, 0.9973111152648926], "3": [405.07354736328125, 131.44667053222656, 0.8939688801765442], "4": [294.8316345214844, 129.23741149902344, 0.8702512979507446], "5": [461.4735107421875, 245.72323608398438, 0.9870765805244446], "6": [231.9441375732422, 247.80502319335938, 0.9972798824310303], "7": [532.9542236328125, 394.27880859375, 0.7777698636054993], "8": [114.740478515625, 344.1595764160156, 0.9469465017318726], "9": [521.498046875, 460.1547546386719, 0.667394757270813], "10": [95.81802368164062, 192.49539184570312, 0.9278990030288696], "11": [434.4784851074219, 475.75750732421875, 0.16795440018177032], "12": [283.2698059082031, 479.13897705078125, 0.2659769654273987], "13": [478.2611999511719, 440.12603759765625, 0.0016630642348900437], "14": [276.5943603515625, 453.6182556152344, 0.0029670209623873234], "15": [438.409423828125, 476.68731689453125, 0.0001560990058351308], "16": [245.85479736328125, 469.2847900390625, 0.0002365655527682975]}} +{"t": 56.967645, "tracked": true, "track_id": 1, "bbox": [64.93480682373047, 43.73750305175781, 581.6118774414062, 479.8078918457031], "det_conf": 0.8999268412590027, "mean_kpt_conf": 0.9397214217619463, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8958674157566764, "right_lift": -0.6848027189009392, "left_bend": 0.38060921729529096, "right_bend": 0.7221630845597097}, "keypoints": {"0": [353.0191650390625, 153.4857177734375, 0.9994634985923767], "1": [376.1678161621094, 126.37678527832031, 0.9983425140380859], "2": [330.6481628417969, 125.40599060058594, 0.9977617263793945], "3": [405.19268798828125, 130.0223388671875, 0.9024122953414917], "4": [293.1999816894531, 127.173095703125, 0.8608885407447815], "5": [466.6812744140625, 240.6846923828125, 0.9918056726455688], "6": [229.3969268798828, 246.5130615234375, 0.9979902505874634], "7": [539.4468994140625, 387.3990783691406, 0.8613190054893494], "8": [113.09382629394531, 355.80572509765625, 0.9619763493537903], "9": [496.4441223144531, 434.94158935546875, 0.8069846630096436], "10": [104.484375, 203.28262329101562, 0.9579911231994629], "11": [438.8719482421875, 480.0, 0.21447335183620453], "12": [280.0530090332031, 480.0, 0.3102245628833771], "13": [483.09521484375, 445.9368896484375, 0.001153009245172143], "14": [262.56488037109375, 455.14202880859375, 0.0018852807115763426], "15": [439.2228088378906, 480.0, 8.331691788043827e-05], "16": [218.21531677246094, 468.9173583984375, 0.00011858471407322213]}} +{"t": 57.037274, "tracked": true, "track_id": 1, "bbox": [77.62476348876953, 44.32115936279297, 581.8333129882812, 479.8685607910156], "det_conf": 0.8963599801063538, "mean_kpt_conf": 0.936810618097132, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8999250310085286, "right_lift": -0.6911653464422963, "left_bend": 0.38143653014450685, "right_bend": 0.7344823896241246}, "keypoints": {"0": [352.88189697265625, 154.42144775390625, 0.9994186162948608], "1": [376.3167419433594, 126.95242309570312, 0.9982587695121765], "2": [330.3307189941406, 125.89328002929688, 0.9976038336753845], "3": [405.77349853515625, 130.2366485595703, 0.9026802778244019], "4": [292.8655700683594, 127.09056091308594, 0.8587926626205444], "5": [466.3511962890625, 242.76687622070312, 0.9911401867866516], "6": [229.57009887695312, 247.78189086914062, 0.9978128671646118], "7": [537.830078125, 390.2876281738281, 0.8465824723243713], "8": [114.91571044921875, 357.43389892578125, 0.9565485119819641], "9": [495.21893310546875, 436.29254150390625, 0.8005502820014954], "10": [110.84686279296875, 203.65065002441406, 0.9555283188819885], "11": [438.55078125, 480.0, 0.19275535643100739], "12": [281.0882873535156, 480.0, 0.28147003054618835], "13": [482.152099609375, 445.13604736328125, 0.0011742566712200642], "14": [270.0184020996094, 454.49029541015625, 0.0019266338786110282], "15": [437.36322021484375, 480.0, 8.910947508411482e-05], "16": [231.00059509277344, 468.5343322753906, 0.0001275410468224436]}} +{"t": 57.100816, "tracked": true, "track_id": 1, "bbox": [85.53721618652344, 43.818687438964844, 578.9618530273438, 479.88543701171875], "det_conf": 0.9058381915092468, "mean_kpt_conf": 0.9353512363000349, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9047768135003105, "right_lift": -0.703407709566988, "left_bend": 0.4006565003132842, "right_bend": 0.7516619722065561}, "keypoints": {"0": [351.96246337890625, 154.80966186523438, 0.9993937015533447], "1": [375.07000732421875, 127.1131591796875, 0.9981312155723572], "2": [329.23004150390625, 126.29244995117188, 0.9975692629814148], "3": [404.2685241699219, 129.6831817626953, 0.8938012719154358], "4": [291.76678466796875, 127.0120849609375, 0.862525224685669], "5": [464.7380065917969, 242.55555725097656, 0.9908594489097595], "6": [228.46859741210938, 246.30752563476562, 0.9976692795753479], "7": [536.0963745117188, 394.15338134765625, 0.8399755954742432], "8": [114.9180908203125, 358.6792297363281, 0.9538024067878723], "9": [492.53265380859375, 434.9033203125, 0.8004582524299622], "10": [116.55047607421875, 202.31011962890625, 0.954677939414978], "11": [435.3418273925781, 480.0, 0.17489579319953918], "12": [278.5899658203125, 480.0, 0.25665390491485596], "13": [478.55865478515625, 440.9756774902344, 0.0011898675002157688], "14": [268.78204345703125, 449.827392578125, 0.0019487907411530614], "15": [433.1610107421875, 479.7420654296875, 9.40023674047552e-05], "16": [230.22195434570312, 466.26177978515625, 0.00013381510507315397]}} +{"t": 57.162443, "tracked": true, "track_id": 1, "bbox": [89.92742919921875, 43.29059982299805, 579.3994140625, 479.884033203125], "det_conf": 0.9044455885887146, "mean_kpt_conf": 0.9105415723540566, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9095312235965115, "right_lift": -0.6788442762613393, "left_bend": 0.2847078816041155, "right_bend": 0.7391637001302136}, "keypoints": {"0": [352.1658935546875, 154.34304809570312, 0.9991762042045593], "1": [374.7139892578125, 126.816162109375, 0.9976032376289368], "2": [329.4355163574219, 126.39021301269531, 0.9971519708633423], "3": [403.16162109375, 130.2349090576172, 0.8763473629951477], "4": [292.15423583984375, 128.1886444091797, 0.8649178147315979], "5": [462.41448974609375, 244.60153198242188, 0.9852574467658997], "6": [230.0584259033203, 246.06715393066406, 0.9967060685157776], "7": [533.7556762695312, 400.71673583984375, 0.7486081719398499], "8": [117.8994140625, 349.7582092285156, 0.9365224838256836], "9": [504.8095703125, 458.2995300292969, 0.6831774115562439], "10": [118.7061767578125, 193.63372802734375, 0.9304891228675842], "11": [437.3794250488281, 473.68133544921875, 0.12770119309425354], "12": [285.7838134765625, 477.2107849121094, 0.20711749792099], "13": [480.17974853515625, 436.3093566894531, 0.0016270074993371964], "14": [290.1617736816406, 448.7628479003906, 0.002951685106381774], "15": [436.2225341796875, 480.0, 0.00015640683704987168], "16": [266.03857421875, 473.5514831542969, 0.00024058895360212773]}} +{"t": 57.256237, "tracked": true, "track_id": 1, "bbox": [91.45308685302734, 42.82639694213867, 581.595458984375, 479.9087219238281], "det_conf": 0.9036771059036255, "mean_kpt_conf": 0.9083718278191306, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9162631745156253, "right_lift": -0.681953954475948, "left_bend": 0.33656420546816124, "right_bend": 0.739499691280689}, "keypoints": {"0": [352.03558349609375, 154.78036499023438, 0.9991651773452759], "1": [374.62158203125, 126.81719970703125, 0.997614860534668], "2": [329.05816650390625, 126.84103393554688, 0.9970819354057312], "3": [403.94586181640625, 129.5327911376953, 0.8842536211013794], "4": [292.14093017578125, 128.4169921875, 0.8562743663787842], "5": [465.1763610839844, 246.48110961914062, 0.9852102398872375], "6": [229.98834228515625, 245.93991088867188, 0.9967561364173889], "7": [535.2676391601562, 406.8050537109375, 0.7332830429077148], "8": [118.86880493164062, 349.5479431152344, 0.9342401623725891], "9": [499.6736755371094, 454.095947265625, 0.6791136264801025], "10": [119.17852783203125, 193.0914306640625, 0.9290969371795654], "11": [438.194091796875, 476.5931701660156, 0.12570631504058838], "12": [285.484375, 479.2232971191406, 0.20684294402599335], "13": [481.9174499511719, 440.6080322265625, 0.0016059452900663018], "14": [295.4039611816406, 451.2346496582031, 0.0029925298877060413], "15": [436.8355712890625, 480.0, 0.00015327625442296267], "16": [276.0224609375, 473.98370361328125, 0.00024220373597927392]}} +{"t": 57.292874, "tracked": true, "track_id": 1, "bbox": [91.64791107177734, 42.73189163208008, 576.556640625, 479.931884765625], "det_conf": 0.9061653017997742, "mean_kpt_conf": 0.9109186692671343, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9133449430393826, "right_lift": -0.6866599511132477, "left_bend": 0.31955600266826656, "right_bend": 0.739718297410871}, "keypoints": {"0": [351.4781799316406, 154.65040588378906, 0.9991497993469238], "1": [374.44439697265625, 127.40545654296875, 0.9975630044937134], "2": [328.67303466796875, 126.90908813476562, 0.9970688223838806], "3": [403.24615478515625, 131.78329467773438, 0.8821012377738953], "4": [291.56512451171875, 129.56541442871094, 0.8592267036437988], "5": [461.7620849609375, 245.70654296875, 0.9851118922233582], "6": [230.89505004882812, 245.9625244140625, 0.9966732263565063], "7": [532.2696533203125, 403.859375, 0.7475128769874573], "8": [120.42031860351562, 350.31024169921875, 0.9372977018356323], "9": [498.0251159667969, 455.61322021484375, 0.6872871518135071], "10": [119.82865905761719, 194.09136962890625, 0.9311129450798035], "11": [435.58251953125, 474.4532775878906, 0.129517063498497], "12": [284.91888427734375, 477.0872802734375, 0.21099543571472168], "13": [478.0798645019531, 437.41363525390625, 0.0016641492256894708], "14": [289.5074462890625, 447.8925476074219, 0.0030489580240100622], "15": [434.40130615234375, 480.0, 0.00016004966164473444], "16": [264.73175048828125, 472.9401550292969, 0.0002489748294465244]}} +{"t": 57.332108, "tracked": true, "track_id": 1, "bbox": [91.4546127319336, 42.99251174926758, 575.7672119140625, 479.9560241699219], "det_conf": 0.9059180021286011, "mean_kpt_conf": 0.912028735334223, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9120208075389751, "right_lift": -0.6836139510476421, "left_bend": 0.2867591461325263, "right_bend": 0.7417811720660925}, "keypoints": {"0": [351.69134521484375, 154.5704345703125, 0.9991776347160339], "1": [374.0562744140625, 127.05738830566406, 0.997577965259552], "2": [328.7558288574219, 126.97431945800781, 0.9971500039100647], "3": [402.44158935546875, 130.54014587402344, 0.8749933242797852], "4": [291.6015930175781, 129.2705841064453, 0.8641749024391174], "5": [461.5445556640625, 244.32696533203125, 0.9854523539543152], "6": [231.1324920654297, 245.49571228027344, 0.9967241883277893], "7": [532.6228637695312, 402.3809814453125, 0.7556992173194885], "8": [119.82171630859375, 349.7558288574219, 0.9392843842506409], "9": [502.6666564941406, 460.16552734375, 0.6890916228294373], "10": [120.88949584960938, 194.44606018066406, 0.9329904913902283], "11": [437.21197509765625, 474.17364501953125, 0.13364894688129425], "12": [286.8916320800781, 477.4805603027344, 0.21643821895122528], "13": [479.90277099609375, 438.27178955078125, 0.0016487309476360679], "14": [291.36077880859375, 450.3056640625, 0.003011624561622739], "15": [436.5936584472656, 480.0, 0.00015506750787608325], "16": [266.16436767578125, 475.8544921875, 0.00023978423268999904]}} +{"t": 57.396309, "tracked": true, "track_id": 1, "bbox": [91.6220703125, 43.09423828125, 578.3667602539062, 479.980712890625], "det_conf": 0.9049146175384521, "mean_kpt_conf": 0.9165258786895059, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9098040501434249, "right_lift": -0.6840162964192965, "left_bend": 0.2736030365421754, "right_bend": 0.7410420161333453}, "keypoints": {"0": [350.53875732421875, 154.91339111328125, 0.9991666078567505], "1": [373.3896789550781, 127.42352294921875, 0.9977239966392517], "2": [328.0134582519531, 127.02935791015625, 0.9968994855880737], "3": [402.948486328125, 130.5115966796875, 0.8931627869606018], "4": [292.0423278808594, 128.5091552734375, 0.8494505882263184], "5": [462.6342468261719, 242.8468475341797, 0.986076295375824], "6": [231.15367126464844, 245.6152801513672, 0.9969006776809692], "7": [533.1121215820312, 397.34124755859375, 0.7730106711387634], "8": [120.57649230957031, 349.30279541015625, 0.9436547160148621], "9": [504.94775390625, 458.49951171875, 0.7087078094482422], "10": [121.19268798828125, 195.3126983642578, 0.9370310306549072], "11": [438.26885986328125, 474.9614562988281, 0.14162050187587738], "12": [287.03106689453125, 478.9781494140625, 0.22771349549293518], "13": [482.5732421875, 436.1328430175781, 0.0016560913063585758], "14": [292.46490478515625, 449.4207763671875, 0.0030438979156315327], "15": [437.0224304199219, 480.0, 0.00015438368427567184], "16": [267.0088195800781, 474.75701904296875, 0.00024191246484406292]}} +{"t": 57.465849, "tracked": true, "track_id": 1, "bbox": [91.47576141357422, 42.635684967041016, 578.2534790039062, 479.957275390625], "det_conf": 0.9042119979858398, "mean_kpt_conf": 0.9125556729056619, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.911927910412401, "right_lift": -0.6838116508182125, "left_bend": 0.2900180829816228, "right_bend": 0.7401587663357276}, "keypoints": {"0": [350.5421142578125, 155.19117736816406, 0.9991616010665894], "1": [373.4552001953125, 127.78277587890625, 0.9976816177368164], "2": [327.9612121582031, 127.21311950683594, 0.9969630837440491], "3": [402.6642150878906, 131.5228729248047, 0.8895096778869629], "4": [291.563720703125, 129.1219940185547, 0.8533740639686584], "5": [461.7694091796875, 245.10635375976562, 0.985320508480072], "6": [231.0165252685547, 246.68289184570312, 0.9967567324638367], "7": [532.2616577148438, 401.7623291015625, 0.7543672323226929], "8": [119.38226318359375, 351.30279541015625, 0.938724160194397], "9": [501.82818603515625, 459.0562744140625, 0.6929627060890198], "10": [119.61825561523438, 194.7261962890625, 0.9332910180091858], "11": [437.51702880859375, 474.115966796875, 0.12986910343170166], "12": [286.9964294433594, 477.5434265136719, 0.21155138313770294], "13": [480.2153625488281, 437.0086669921875, 0.0016466593369841576], "14": [292.1012268066406, 449.1019287109375, 0.0030218588653951883], "15": [436.2558898925781, 480.0, 0.00015622275532223284], "16": [267.28173828125, 475.01043701171875, 0.000244298717007041]}} +{"t": 57.527388, "tracked": true, "track_id": 1, "bbox": [90.69319152832031, 43.92289352416992, 579.6714477539062, 480.0], "det_conf": 0.9037418961524963, "mean_kpt_conf": 0.9370529163967479, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8964746690574781, "right_lift": -0.7162185393824327, "left_bend": 0.45015150722730773, "right_bend": 0.7544790260176487}, "keypoints": {"0": [349.43145751953125, 156.33273315429688, 0.999409556388855], "1": [373.37835693359375, 128.93553161621094, 0.9982463121414185], "2": [327.3039245605469, 127.24737548828125, 0.9974677562713623], "3": [403.7506103515625, 131.74472045898438, 0.907443642616272], "4": [290.7901306152344, 127.03250122070312, 0.844749391078949], "5": [465.80377197265625, 242.35305786132812, 0.9911034107208252], "6": [228.99778747558594, 246.95074462890625, 0.9977578520774841], "7": [540.53759765625, 393.55535888671875, 0.8443712592124939], "8": [116.7279052734375, 362.17144775390625, 0.9557958245277405], "9": [486.58343505859375, 431.72064208984375, 0.8134860396385193], "10": [116.90045166015625, 205.4286346435547, 0.9577510356903076], "11": [439.6142578125, 480.0, 0.17901794612407684], "12": [282.5532531738281, 480.0, 0.2640840709209442], "13": [483.17041015625, 444.2101135253906, 0.0011659241281449795], "14": [275.41754150390625, 450.9670715332031, 0.0019446653313934803], "15": [437.31475830078125, 480.0, 8.708371024113148e-05], "16": [236.41940307617188, 467.5849609375, 0.00012727681314572692]}} +{"t": 57.595042, "tracked": true, "track_id": 1, "bbox": [90.9786605834961, 42.99821472167969, 579.7930297851562, 479.93695068359375], "det_conf": 0.9059257507324219, "mean_kpt_conf": 0.9124327193606984, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9087213328422812, "right_lift": -0.6903670323151597, "left_bend": 0.3275510607678589, "right_bend": 0.7425963204115266}, "keypoints": {"0": [349.4874572753906, 155.45028686523438, 0.9991601705551147], "1": [372.62750244140625, 128.2769012451172, 0.9976933598518372], "2": [327.2676086425781, 127.36448669433594, 0.9969059824943542], "3": [402.1707763671875, 132.12342834472656, 0.8945347666740417], "4": [291.145263671875, 128.87986755371094, 0.8458130359649658], "5": [462.2568664550781, 245.8462371826172, 0.9855849146842957], "6": [230.31857299804688, 246.8300018310547, 0.9967807531356812], "7": [534.39599609375, 402.8990478515625, 0.752667248249054], "8": [119.57040405273438, 352.5123596191406, 0.9370212554931641], "9": [497.8518371582031, 456.4940185546875, 0.6979318857192993], "10": [119.59243774414062, 197.95327758789062, 0.932666540145874], "11": [438.7437438964844, 474.83929443359375, 0.1307571679353714], "12": [287.86273193359375, 477.81829833984375, 0.21219544112682343], "13": [481.2475280761719, 439.22186279296875, 0.001649275771342218], "14": [296.2794494628906, 449.4939270019531, 0.003020844655111432], "15": [438.6697998046875, 480.0, 0.00015380888362415135], "16": [275.70477294921875, 473.06109619140625, 0.00024164091155398637]}} +{"t": 57.628403, "tracked": true, "track_id": 1, "bbox": [90.92996215820312, 42.871089935302734, 579.8204345703125, 479.9266662597656], "det_conf": 0.9038754105567932, "mean_kpt_conf": 0.9126617745919661, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.910261211971549, "right_lift": -0.6933531248975152, "left_bend": 0.30661816093516203, "right_bend": 0.7415774533084099}, "keypoints": {"0": [349.4316101074219, 155.55374145507812, 0.9991582632064819], "1": [372.36480712890625, 128.31326293945312, 0.9977078437805176], "2": [327.0939636230469, 127.84835815429688, 0.9969077706336975], "3": [401.92962646484375, 131.92086791992188, 0.8948023319244385], "4": [291.34197998046875, 129.72723388671875, 0.8471558690071106], "5": [462.41827392578125, 244.26431274414062, 0.9857550859451294], "6": [230.28768920898438, 246.72286987304688, 0.9967837333679199], "7": [533.7879638671875, 401.17169189453125, 0.7575997710227966], "8": [120.43588256835938, 352.42132568359375, 0.9380328059196472], "9": [500.5332336425781, 457.106201171875, 0.6938458681106567], "10": [119.31423950195312, 196.51031494140625, 0.9315301775932312], "11": [438.171630859375, 474.3934326171875, 0.13215942680835724], "12": [287.0179138183594, 478.1116027832031, 0.21311672031879425], "13": [482.74542236328125, 435.83453369140625, 0.001662435824982822], "14": [295.2392272949219, 447.92498779296875, 0.0030503873713314533], "15": [437.79656982421875, 480.0, 0.00015887343033682555], "16": [272.5545959472656, 473.92218017578125, 0.0002495087974239141]}} +{"t": 57.662269, "tracked": true, "track_id": 1, "bbox": [90.6223373413086, 42.77672576904297, 577.33447265625, 479.9283447265625], "det_conf": 0.9043455719947815, "mean_kpt_conf": 0.9152407537807118, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9110658202724828, "right_lift": -0.6928716301092486, "left_bend": 0.289783837986829, "right_bend": 0.7359922550074874}, "keypoints": {"0": [349.4970703125, 155.52960205078125, 0.99915611743927], "1": [372.4626159667969, 128.3817596435547, 0.9977320432662964], "2": [327.214111328125, 127.93852233886719, 0.9968522191047668], "3": [402.1671142578125, 132.07931518554688, 0.9001292586326599], "4": [291.7037353515625, 129.99359130859375, 0.8451722264289856], "5": [462.1954345703125, 244.76248168945312, 0.9862954020500183], "6": [231.1944580078125, 247.33615112304688, 0.9969549179077148], "7": [532.7289428710938, 400.6362609863281, 0.768662691116333], "8": [122.12330627441406, 352.14324951171875, 0.9419697523117065], "9": [501.5771484375, 459.685546875, 0.7008475065231323], "10": [118.42857360839844, 198.68899536132812, 0.9338761568069458], "11": [437.0449523925781, 475.8580322265625, 0.14695455133914948], "12": [286.3251647949219, 479.404052734375, 0.23550893366336823], "13": [481.31341552734375, 440.4930725097656, 0.0016940152272582054], "14": [292.9039001464844, 452.6889953613281, 0.003114808816462755], "15": [436.6048583984375, 480.0, 0.00015545584028586745], "16": [269.2437744140625, 475.91741943359375, 0.0002445466525387019]}} +{"t": 57.724932, "tracked": true, "track_id": 1, "bbox": [90.56312561035156, 42.412837982177734, 578.7911987304688, 479.9209899902344], "det_conf": 0.9029272794723511, "mean_kpt_conf": 0.9158268354155801, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9110739440748218, "right_lift": -0.6988282590037387, "left_bend": 0.2913923492316242, "right_bend": 0.7400669017856182}, "keypoints": {"0": [349.47674560546875, 155.1255340576172, 0.9991806149482727], "1": [372.31353759765625, 128.1512451171875, 0.9976828098297119], "2": [326.9774475097656, 127.67166137695312, 0.9969937801361084], "3": [401.2922668457031, 132.6148223876953, 0.890008807182312], "4": [290.75396728515625, 130.43104553222656, 0.8519490957260132], "5": [460.1141052246094, 244.9841766357422, 0.9862337112426758], "6": [231.7473602294922, 246.59060668945312, 0.9968976974487305], "7": [531.6119995117188, 402.9974670410156, 0.7722911834716797], "8": [122.20858764648438, 353.6085205078125, 0.943175733089447], "9": [502.0614929199219, 458.3294677734375, 0.7041084170341492], "10": [119.19691467285156, 199.70147705078125, 0.9355733394622803], "11": [437.70916748046875, 474.0747985839844, 0.1472683846950531], "12": [288.36444091796875, 477.28802490234375, 0.23587623238563538], "13": [481.38421630859375, 441.3394775390625, 0.0016876974841579795], "14": [292.20758056640625, 452.50677490234375, 0.003080173162743449], "15": [441.42913818359375, 480.0, 0.0001496896002208814], "16": [267.39697265625, 477.28564453125, 0.00023334266734309494]}} +{"t": 57.761376, "tracked": true, "track_id": 1, "bbox": [89.85911560058594, 43.37604522705078, 576.06982421875, 479.9940185546875], "det_conf": 0.9063328504562378, "mean_kpt_conf": 0.9382535056634382, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8987320486935761, "right_lift": -0.7053660830228357, "left_bend": 0.3919817822662514, "right_bend": 0.7515850845923339}, "keypoints": {"0": [348.4682922363281, 156.25381469726562, 0.9994015693664551], "1": [371.7989501953125, 129.17803955078125, 0.9982878565788269], "2": [326.4892883300781, 128.05287170410156, 0.9974009990692139], "3": [401.7698974609375, 132.30172729492188, 0.9128230214118958], "4": [290.88140869140625, 128.86444091796875, 0.8448860049247742], "5": [463.3106994628906, 242.1856689453125, 0.99128657579422], "6": [229.29884338378906, 247.23727416992188, 0.9977784752845764], "7": [536.203369140625, 391.58416748046875, 0.852642297744751], "8": [116.19581604003906, 359.7854919433594, 0.9573547840118408], "9": [489.9339904785156, 438.58837890625, 0.8114717602729797], "10": [117.33375549316406, 206.80633544921875, 0.9574552178382874], "11": [437.3072509765625, 480.0, 0.18955811858177185], "12": [282.1639404296875, 480.0, 0.27660495042800903], "13": [481.8252868652344, 442.9476318359375, 0.0012089170049875975], "14": [275.1909484863281, 451.53009033203125, 0.002008926821872592], "15": [436.8487243652344, 480.0, 9.226157999364659e-05], "16": [236.238525390625, 469.9273986816406, 0.00013455287262331694]}} +{"t": 57.823683, "tracked": true, "track_id": 1, "bbox": [88.9852066040039, 42.81398010253906, 578.2321166992188, 479.9472961425781], "det_conf": 0.903485119342804, "mean_kpt_conf": 0.912553911859339, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9126781311079701, "right_lift": -0.6928652904822455, "left_bend": 0.2960976810183786, "right_bend": 0.739582321146202}, "keypoints": {"0": [349.13494873046875, 155.51004028320312, 0.9991683959960938], "1": [372.05633544921875, 128.5154571533203, 0.997731626033783], "2": [326.9118347167969, 127.8074951171875, 0.9969443678855896], "3": [401.3397216796875, 133.01046752929688, 0.8958651423454285], "4": [291.1671142578125, 130.25531005859375, 0.8487631678581238], "5": [460.9674377441406, 246.67857360839844, 0.9857057332992554], "6": [230.80322265625, 247.6238555908203, 0.9968074560165405], "7": [531.364990234375, 403.89312744140625, 0.7558386921882629], "8": [120.56277465820312, 353.55267333984375, 0.9386829733848572], "9": [501.07470703125, 458.1452331542969, 0.6908650398254395], "10": [118.58915710449219, 199.19284057617188, 0.9317204356193542], "11": [436.7533874511719, 474.8245849609375, 0.1320342868566513], "12": [286.45172119140625, 477.7672424316406, 0.21462003886699677], "13": [480.26837158203125, 437.576416015625, 0.0016564074903726578], "14": [290.91558837890625, 448.6041564941406, 0.0030438341200351715], "15": [437.4752502441406, 480.0, 0.0001577415969222784], "16": [266.5314636230469, 474.47998046875, 0.00024759877123869956]}} +{"t": 57.889426, "tracked": true, "track_id": 1, "bbox": [88.08577728271484, 43.1718635559082, 576.4832153320312, 479.95672607421875], "det_conf": 0.9029211401939392, "mean_kpt_conf": 0.9400582096793435, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8992352770543374, "right_lift": -0.7114733152893156, "left_bend": 0.34657430922123467, "right_bend": 0.7528771159120922}, "keypoints": {"0": [347.83880615234375, 156.00689697265625, 0.9994202852249146], "1": [371.2449035644531, 128.99139404296875, 0.9983545541763306], "2": [325.9978332519531, 127.7197265625, 0.9974036812782288], "3": [401.2876892089844, 132.18881225585938, 0.9151535034179688], "4": [290.70831298828125, 128.43466186523438, 0.8444215059280396], "5": [462.23046875, 241.5265350341797, 0.9917240738868713], "6": [228.6606903076172, 247.10809326171875, 0.9978907704353333], "7": [535.34619140625, 391.82012939453125, 0.8639395236968994], "8": [114.53790283203125, 362.653564453125, 0.960448145866394], "9": [496.8222961425781, 443.9942626953125, 0.8133188486099243], "10": [114.97392272949219, 209.3573760986328, 0.9585654139518738], "11": [435.7135009765625, 480.0, 0.19568777084350586], "12": [280.01416015625, 480.0, 0.283661425113678], "13": [482.6318054199219, 442.5008544921875, 0.0011610658839344978], "14": [269.0164489746094, 452.2010498046875, 0.0019201913382858038], "15": [439.8675537109375, 480.0, 8.692971459822729e-05], "16": [226.42776489257812, 471.3299560546875, 0.0001259923737961799]}} +{"t": 57.954404, "tracked": true, "track_id": 1, "bbox": [88.18011474609375, 41.80403137207031, 576.7100830078125, 479.91455078125], "det_conf": 0.9029920101165771, "mean_kpt_conf": 0.9169380935755643, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9097608319079156, "right_lift": -0.6922285520904451, "left_bend": 0.26675498025411093, "right_bend": 0.7427570657852092}, "keypoints": {"0": [348.4482116699219, 155.70477294921875, 0.9991775155067444], "1": [371.408935546875, 128.7803192138672, 0.9978700876235962], "2": [326.2496032714844, 128.207275390625, 0.996816098690033], "3": [401.0179748535156, 133.3525848388672, 0.9041894674301147], "4": [291.0506286621094, 130.99285888671875, 0.8406073451042175], "5": [459.7168884277344, 244.7020263671875, 0.9860164523124695], "6": [232.001953125, 247.78314208984375, 0.9968383312225342], "7": [530.5259399414062, 399.8796081542969, 0.7767820358276367], "8": [120.18045043945312, 355.04150390625, 0.9428186416625977], "9": [504.06024169921875, 460.7807922363281, 0.7092083692550659], "10": [119.884765625, 201.7335662841797, 0.9359946846961975], "11": [436.79168701171875, 472.71044921875, 0.13758909702301025], "12": [287.4925231933594, 476.5009460449219, 0.22087381780147552], "13": [480.01885986328125, 435.1002197265625, 0.0016629858873784542], "14": [287.91424560546875, 447.6770324707031, 0.003015371970832348], "15": [439.5008544921875, 480.0, 0.0001553885667817667], "16": [259.6436767578125, 475.5830078125, 0.00024232571013271809]}} +{"t": 57.987998, "tracked": true, "track_id": 1, "bbox": [87.81717681884766, 42.8824348449707, 574.55712890625, 479.960693359375], "det_conf": 0.905314028263092, "mean_kpt_conf": 0.9388770948756825, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9025272274181909, "right_lift": -0.7117763872145397, "left_bend": 0.4003261081764206, "right_bend": 0.7540183380676962}, "keypoints": {"0": [347.4388427734375, 156.43051147460938, 0.9994139671325684], "1": [371.3326416015625, 129.27760314941406, 0.9984117746353149], "2": [325.4511413574219, 127.87113952636719, 0.9973147511482239], "3": [402.2020568847656, 132.79090881347656, 0.9229501485824585], "4": [290.1629638671875, 128.6798553466797, 0.8317004442214966], "5": [464.0474853515625, 243.27149963378906, 0.9915084838867188], "6": [229.16114807128906, 247.48033142089844, 0.9978519678115845], "7": [536.551513671875, 395.22662353515625, 0.8564713001251221], "8": [115.33638000488281, 362.82354736328125, 0.9589537382125854], "9": [489.9649658203125, 439.3569030761719, 0.814739465713501], "10": [116.2628173828125, 208.37185668945312, 0.9583320021629333], "11": [437.6915588378906, 480.0, 0.18646766245365143], "12": [281.2713623046875, 480.0, 0.2740319073200226], "13": [481.7055969238281, 443.6070556640625, 0.0011423059040680528], "14": [269.2341003417969, 451.04541015625, 0.001905566779896617], "15": [438.0563659667969, 480.0, 8.70660223881714e-05], "16": [227.2544403076172, 469.235107421875, 0.00012805861479137093]}} +{"t": 58.02248, "tracked": true, "track_id": 1, "bbox": [88.04249572753906, 42.49384689331055, 572.6314086914062, 479.9347839355469], "det_conf": 0.904471218585968, "mean_kpt_conf": 0.9141591570594094, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9160148265936748, "right_lift": -0.7007056910142535, "left_bend": 0.2533437784540966, "right_bend": 0.7412097645879838}, "keypoints": {"0": [348.5777893066406, 155.5584716796875, 0.9991527795791626], "1": [371.50250244140625, 128.13772583007812, 0.9977679252624512], "2": [325.7723083496094, 127.98934936523438, 0.9968460202217102], "3": [401.015380859375, 132.10292053222656, 0.8978254199028015], "4": [289.97540283203125, 130.76589965820312, 0.8481848239898682], "5": [459.4889831542969, 244.04876708984375, 0.9855886101722717], "6": [231.3040008544922, 247.2027587890625, 0.9967328310012817], "7": [528.4149169921875, 401.44140625, 0.766546368598938], "8": [121.27629089355469, 355.2649841308594, 0.9401347637176514], "9": [503.8625183105469, 462.357177734375, 0.6943765878677368], "10": [118.42945861816406, 202.25442504882812, 0.9325945973396301], "11": [435.81793212890625, 473.6519470214844, 0.13291065394878387], "12": [286.4631652832031, 477.5251770019531, 0.21436406672000885], "13": [478.7070617675781, 434.163818359375, 0.0016661667032167315], "14": [286.8521728515625, 447.4521789550781, 0.0030284998938441277], "15": [435.59600830078125, 480.0, 0.00016134536417666823], "16": [259.09893798828125, 476.7501220703125, 0.000250752957072109]}} +{"t": 58.087591, "tracked": true, "track_id": 1, "bbox": [88.31465911865234, 41.80961608886719, 574.0421752929688, 479.90264892578125], "det_conf": 0.9027098417282104, "mean_kpt_conf": 0.9142475399104032, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9101969717309766, "right_lift": -0.6962701409721329, "left_bend": 0.2896141289732724, "right_bend": 0.7467250461451487}, "keypoints": {"0": [348.45538330078125, 155.84823608398438, 0.9991889595985413], "1": [370.8713073730469, 128.6488494873047, 0.997718334197998], "2": [325.9061279296875, 128.41917419433594, 0.9970353841781616], "3": [399.56439208984375, 132.8899688720703, 0.8880192637443542], "4": [289.9056396484375, 131.29788208007812, 0.8549069762229919], "5": [459.55609130859375, 245.47128295898438, 0.9858631491661072], "6": [230.24742126464844, 247.69821166992188, 0.9966835379600525], "7": [531.5411376953125, 403.6664123535156, 0.7638236284255981], "8": [118.95549011230469, 355.6550598144531, 0.9381471872329712], "9": [501.686767578125, 460.61962890625, 0.7014028429985046], "10": [119.71664428710938, 201.00253295898438, 0.933933675289154], "11": [436.8348693847656, 473.33673095703125, 0.12331641465425491], "12": [287.3049011230469, 476.9668273925781, 0.1984197199344635], "13": [480.494384765625, 432.41815185546875, 0.0016330672660842538], "14": [291.7375183105469, 444.4717102050781, 0.002951598260551691], "15": [437.6170349121094, 480.0, 0.00015780809917487204], "16": [265.60015869140625, 475.13751220703125, 0.0002439570234855637]}} +{"t": 58.15063, "tracked": true, "track_id": 1, "bbox": [88.29313659667969, 41.80595016479492, 576.2064819335938, 479.9112854003906], "det_conf": 0.9038715958595276, "mean_kpt_conf": 0.9146120223132047, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9130673144503436, "right_lift": -0.7006209131461222, "left_bend": 0.28044288537929063, "right_bend": 0.7501511295792145}, "keypoints": {"0": [348.0472717285156, 156.0435791015625, 0.9991693496704102], "1": [370.71881103515625, 128.676513671875, 0.9977501034736633], "2": [325.72625732421875, 128.1479034423828, 0.9968701004981995], "3": [400.08074951171875, 132.18157958984375, 0.8940099477767944], "4": [290.2559509277344, 129.9480743408203, 0.8478215932846069], "5": [459.480224609375, 244.78042602539062, 0.9858032464981079], "6": [230.3690948486328, 247.88526916503906, 0.9966860413551331], "7": [529.5863037109375, 401.74505615234375, 0.7654476761817932], "8": [119.48898315429688, 356.7587890625, 0.9377047419548035], "9": [500.29510498046875, 460.7196044921875, 0.7053408026695251], "10": [120.98060607910156, 201.47726440429688, 0.9341286420822144], "11": [435.517333984375, 472.78289794921875, 0.12390267848968506], "12": [285.8009948730469, 476.7512512207031, 0.19850295782089233], "13": [479.51519775390625, 432.0555114746094, 0.0016566409030929208], "14": [289.84228515625, 445.02252197265625, 0.002979612909257412], "15": [435.1871337890625, 480.0, 0.00016041254275478423], "16": [262.3753967285156, 473.9797058105469, 0.00024750575539655983]}} +{"t": 58.185531, "tracked": true, "track_id": 1, "bbox": [88.21410369873047, 41.937347412109375, 575.010009765625, 479.92138671875], "det_conf": 0.9029157161712646, "mean_kpt_conf": 0.9168775948611173, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9136524979212781, "right_lift": -0.6924924967449589, "left_bend": 0.24313500299926058, "right_bend": 0.749947067101701}, "keypoints": {"0": [348.0703125, 155.8076629638672, 0.9991711378097534], "1": [370.28643798828125, 128.5045166015625, 0.9977793097496033], "2": [325.4676208496094, 128.5748748779297, 0.9968525767326355], "3": [399.23809814453125, 132.3532257080078, 0.8938320875167847], "4": [290.1007385253906, 131.4643096923828, 0.8494387865066528], "5": [457.8950500488281, 244.34332275390625, 0.9858753085136414], "6": [231.1985626220703, 247.2745361328125, 0.9966905117034912], "7": [527.65234375, 401.1318359375, 0.7763224244117737], "8": [118.54461669921875, 355.4105224609375, 0.9410750269889832], "9": [506.13385009765625, 460.96929931640625, 0.7121993899345398], "10": [121.65467834472656, 202.17791748046875, 0.9364169836044312], "11": [435.2819519042969, 471.9300537109375, 0.12825080752372742], "12": [287.0226745605469, 476.0975341796875, 0.20515836775302887], "13": [478.1294860839844, 430.48931884765625, 0.0016781754093244672], "14": [287.5784912109375, 444.2599792480469, 0.003009583568200469], "15": [436.867919921875, 480.0, 0.00016207424050662667], "16": [259.13018798828125, 475.77044677734375, 0.0002492688945494592]}} +{"t": 58.251579, "tracked": true, "track_id": 1, "bbox": [87.79804992675781, 42.059959411621094, 576.4591064453125, 479.9369201660156], "det_conf": 0.9016337990760803, "mean_kpt_conf": 0.9139906384728171, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9140502024817915, "right_lift": -0.6932760011778081, "left_bend": 0.2881050212027007, "right_bend": 0.7500538237832166}, "keypoints": {"0": [347.35125732421875, 156.12069702148438, 0.9991642236709595], "1": [369.915283203125, 128.52659606933594, 0.9979238510131836], "2": [324.7330322265625, 128.86683654785156, 0.9967097043991089], "3": [400.195556640625, 132.01995849609375, 0.9077503085136414], "4": [289.9518127441406, 131.74603271484375, 0.83364337682724], "5": [461.8191833496094, 244.02499389648438, 0.9854625463485718], "6": [230.3999481201172, 248.71258544921875, 0.9966220855712891], "7": [531.49560546875, 401.045654296875, 0.7615759968757629], "8": [117.66400146484375, 357.16290283203125, 0.9358146786689758], "9": [501.10870361328125, 458.3636779785156, 0.7060536742210388], "10": [120.70243835449219, 201.70289611816406, 0.933176577091217], "11": [439.29119873046875, 471.663330078125, 0.12075674533843994], "12": [288.6297607421875, 476.4346008300781, 0.19439098238945007], "13": [482.1365051269531, 429.96014404296875, 0.0016618812223896384], "14": [293.4229736328125, 444.14227294921875, 0.003009755164384842], "15": [437.43487548828125, 480.0, 0.0001627505262149498], "16": [268.0391845703125, 476.617919921875, 0.00025516230380162597]}} +{"t": 58.284998, "tracked": true, "track_id": 1, "bbox": [88.05810546875, 42.176448822021484, 579.162109375, 479.92498779296875], "det_conf": 0.9009543061256409, "mean_kpt_conf": 0.9146116755225442, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9150384722117981, "right_lift": -0.6979654114664374, "left_bend": 0.3008936152979822, "right_bend": 0.7480395827674687}, "keypoints": {"0": [347.6982421875, 156.0330810546875, 0.9991822838783264], "1": [370.0733337402344, 128.73919677734375, 0.9977763295173645], "2": [325.39654541015625, 128.54579162597656, 0.9968966245651245], "3": [399.209228515625, 132.5679168701172, 0.8966382145881653], "4": [290.26239013671875, 131.00418090820312, 0.8460832834243774], "5": [460.2834167480469, 245.77963256835938, 0.9859785437583923], "6": [230.152099609375, 247.8100128173828, 0.9967453479766846], "7": [530.6285400390625, 405.3577880859375, 0.7624779939651489], "8": [118.43006896972656, 356.697998046875, 0.9377852082252502], "9": [499.2019958496094, 458.98297119140625, 0.7064054608345032], "10": [119.47102355957031, 201.02877807617188, 0.9347591400146484], "11": [437.60546875, 473.86688232421875, 0.12120617926120758], "12": [287.95086669921875, 477.53472900390625, 0.19591793417930603], "13": [481.3954772949219, 432.40057373046875, 0.0016465495573356748], "14": [294.9306335449219, 444.4675598144531, 0.002997312694787979], "15": [437.1225891113281, 480.0, 0.00015829745098017156], "16": [270.6430969238281, 476.1688232421875, 0.00024762755492702127]}} +{"t": 58.321077, "tracked": true, "track_id": 1, "bbox": [80.67525482177734, 42.45729446411133, 571.4639282226562, 479.98089599609375], "det_conf": 0.901517927646637, "mean_kpt_conf": 0.9319908673113043, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9064564359284909, "right_lift": -0.7240627066523375, "left_bend": 0.30361415483307613, "right_bend": 0.7668414958935043}, "keypoints": {"0": [345.8260498046875, 155.86849975585938, 0.9992689490318298], "1": [368.83319091796875, 128.8684844970703, 0.9983001351356506], "2": [323.55322265625, 128.68637084960938, 0.9967823028564453], "3": [398.6551513671875, 131.52810668945312, 0.9344528913497925], "4": [289.7961120605469, 130.07742309570312, 0.843937873840332], "5": [456.41961669921875, 241.78990173339844, 0.9917263984680176], "6": [225.27545166015625, 245.63177490234375, 0.9972561001777649], "7": [530.664794921875, 401.15557861328125, 0.8476455211639404], "8": [106.95391845703125, 369.8422546386719, 0.9337906241416931], "9": [501.3636474609375, 452.5870361328125, 0.774056077003479], "10": [111.31953430175781, 217.41476440429688, 0.9346826672554016], "11": [425.9588928222656, 480.0, 0.1485278308391571], "12": [274.3669128417969, 480.0, 0.20190024375915527], "13": [478.2922668457031, 429.77301025390625, 0.0012653851881623268], "14": [271.6075134277344, 440.12908935546875, 0.0018540421733632684], "15": [445.3916320800781, 473.64715576171875, 0.0001232504000654444], "16": [241.5382080078125, 462.4378662109375, 0.00016455439617857337]}} +{"t": 58.384013, "tracked": true, "track_id": 1, "bbox": [87.20011138916016, 41.892494201660156, 578.2050170898438, 479.9238586425781], "det_conf": 0.9009397029876709, "mean_kpt_conf": 0.9162225181406195, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.910639688446585, "right_lift": -0.6964072851454013, "left_bend": 0.29203240437136335, "right_bend": 0.7492463811653405}, "keypoints": {"0": [347.7507019042969, 155.74954223632812, 0.9991922974586487], "1": [370.18328857421875, 128.51173400878906, 0.9978931546211243], "2": [325.28826904296875, 128.64248657226562, 0.9968659281730652], "3": [399.765625, 132.59036254882812, 0.9021525979042053], "4": [290.1358337402344, 131.86346435546875, 0.8404091000556946], "5": [461.18475341796875, 243.90432739257812, 0.9860390424728394], "6": [230.51089477539062, 248.47091674804688, 0.996782660484314], "7": [532.4747314453125, 401.01776123046875, 0.7718531489372253], "8": [118.18544006347656, 357.47198486328125, 0.9403320550918579], "9": [501.78533935546875, 458.3499450683594, 0.7111241221427917], "10": [120.1566162109375, 201.6756591796875, 0.9358035922050476], "11": [439.457763671875, 471.8333740234375, 0.12863603234291077], "12": [288.7845764160156, 476.3827819824219, 0.2068019062280655], "13": [482.33447265625, 431.731689453125, 0.0016535052563995123], "14": [290.76507568359375, 445.24468994140625, 0.002994034206494689], "15": [439.29132080078125, 480.0, 0.00015605481166858226], "16": [263.38214111328125, 476.28228759765625, 0.0002436490321997553]}} +{"t": 58.417895, "tracked": true, "track_id": 1, "bbox": [88.0174789428711, 41.91190719604492, 578.4816284179688, 479.92193603515625], "det_conf": 0.9015612006187439, "mean_kpt_conf": 0.9174705743789673, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9135549291861094, "right_lift": -0.6903395164113589, "left_bend": 0.2818126139222988, "right_bend": 0.7518172237421359}, "keypoints": {"0": [347.4367980957031, 155.82150268554688, 0.9991816878318787], "1": [369.64031982421875, 128.56817626953125, 0.9979634284973145], "2": [325.0146789550781, 129.1615753173828, 0.9967238306999207], "3": [399.57818603515625, 132.41098022460938, 0.9097868800163269], "4": [290.7786560058594, 132.7030792236328, 0.832099437713623], "5": [460.9510192871094, 243.24070739746094, 0.9860947132110596], "6": [231.25405883789062, 247.94371032714844, 0.9967832565307617], "7": [531.1702270507812, 400.96551513671875, 0.7780137658119202], "8": [117.0299072265625, 356.93475341796875, 0.9414789080619812], "9": [501.9626159667969, 458.96875, 0.7172463536262512], "10": [121.55718994140625, 201.6630859375, 0.9368040561676025], "11": [438.11016845703125, 471.8709716796875, 0.129054993391037], "12": [288.1904296875, 476.6086120605469, 0.20686590671539307], "13": [481.6720886230469, 430.2920227050781, 0.0016609960002824664], "14": [290.95013427734375, 444.412353515625, 0.003012482076883316], "15": [439.42242431640625, 480.0, 0.00015884479216765612], "16": [263.1548767089844, 477.0771179199219, 0.0002493570791557431]}} +{"t": 58.452409, "tracked": true, "track_id": 1, "bbox": [88.40355682373047, 41.763423919677734, 579.0045166015625, 479.9169921875], "det_conf": 0.9010179042816162, "mean_kpt_conf": 0.9157093492421237, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9083859369172479, "right_lift": -0.6846430052007714, "left_bend": 0.262532239651479, "right_bend": 0.7439850876133332}, "keypoints": {"0": [347.3388671875, 155.85447692871094, 0.9991651773452759], "1": [369.37274169921875, 128.35641479492188, 0.9979351758956909], "2": [324.90545654296875, 129.12428283691406, 0.9966617822647095], "3": [399.38970947265625, 131.5028533935547, 0.9087079167366028], "4": [290.8722229003906, 132.2386474609375, 0.8327232003211975], "5": [461.4933776855469, 241.8141632080078, 0.9857389330863953], "6": [231.66725158691406, 248.61126708984375, 0.9967304468154907], "7": [532.6683349609375, 396.44049072265625, 0.7720191478729248], "8": [118.0382080078125, 355.34417724609375, 0.9396607279777527], "9": [506.1314392089844, 460.3829345703125, 0.7084143161773682], "10": [119.963623046875, 199.92579650878906, 0.9350460171699524], "11": [440.1651611328125, 470.2596435546875, 0.127055361866951], "12": [290.63604736328125, 476.08892822265625, 0.20399139821529388], "13": [484.408935546875, 427.9721984863281, 0.0016821983736008406], "14": [296.6183166503906, 444.1556396484375, 0.0030728650745004416], "15": [439.4822998046875, 480.0, 0.0001639926922507584], "16": [269.9132080078125, 476.89288330078125, 0.00025890039978548884]}} +{"t": 58.513797, "tracked": true, "track_id": 1, "bbox": [88.34685516357422, 41.8919677734375, 578.0303344726562, 479.9224548339844], "det_conf": 0.9021399617195129, "mean_kpt_conf": 0.9143947796388106, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.914729510840512, "right_lift": -0.6985943054439896, "left_bend": 0.29651932401317155, "right_bend": 0.7514849718604028}, "keypoints": {"0": [347.55975341796875, 156.26907348632812, 0.9991773962974548], "1": [369.85919189453125, 128.71969604492188, 0.9978615641593933], "2": [324.9669189453125, 129.0224609375, 0.9968222379684448], "3": [399.55841064453125, 131.98175048828125, 0.9019202589988708], "4": [289.96917724609375, 131.626708984375, 0.8401959538459778], "5": [461.18267822265625, 244.24594116210938, 0.9858967661857605], "6": [230.564208984375, 248.33438110351562, 0.9967482089996338], "7": [531.3377685546875, 403.0635986328125, 0.7635353803634644], "8": [118.5455322265625, 357.70355224609375, 0.9379865527153015], "9": [499.51007080078125, 459.2254638671875, 0.7041949033737183], "10": [121.14239501953125, 201.58438110351562, 0.9340033531188965], "11": [438.9496765136719, 474.0560607910156, 0.12477640807628632], "12": [288.73760986328125, 478.4584045410156, 0.20143567025661469], "13": [481.30120849609375, 432.8425598144531, 0.0016453556017950177], "14": [292.81658935546875, 446.2392272949219, 0.0029940686654299498], "15": [436.43426513671875, 480.0, 0.00015926336345728487], "16": [266.4283752441406, 476.2571105957031, 0.0002495723310858011]}} +{"t": 58.578103, "tracked": true, "track_id": 1, "bbox": [88.673828125, 41.96719741821289, 579.9906616210938, 479.901123046875], "det_conf": 0.9012158513069153, "mean_kpt_conf": 0.9147508902983232, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.911689852382778, "right_lift": -0.7020976972555822, "left_bend": 0.3213324626537592, "right_bend": 0.7501345873757093}, "keypoints": {"0": [347.9047546386719, 156.1402587890625, 0.9992109537124634], "1": [369.8689270019531, 128.4591064453125, 0.997808039188385], "2": [325.2558898925781, 128.86898803710938, 0.9970205426216125], "3": [399.0570373535156, 131.37286376953125, 0.8929522633552551], "4": [289.61138916015625, 131.28512573242188, 0.8473039269447327], "5": [462.6224670410156, 244.60145568847656, 0.9864138960838318], "6": [229.3463592529297, 248.34295654296875, 0.9967994689941406], "7": [534.510009765625, 404.11102294921875, 0.7645761966705322], "8": [119.25296020507812, 356.8929138183594, 0.9381135106086731], "9": [498.51226806640625, 458.33349609375, 0.707459032535553], "10": [120.41975402832031, 200.94647216796875, 0.9346019625663757], "11": [440.0960693359375, 474.79498291015625, 0.12685519456863403], "12": [288.1990051269531, 478.91131591796875, 0.20361486077308655], "13": [482.9765930175781, 434.56854248046875, 0.0016292723594233394], "14": [293.0647888183594, 447.27056884765625, 0.0029536322690546513], "15": [436.88128662109375, 480.0, 0.0001527670247014612], "16": [268.244873046875, 476.7052001953125, 0.00023777397291269153]}} +{"t": 58.613523, "tracked": true, "track_id": 1, "bbox": [88.6392822265625, 41.901920318603516, 581.6436767578125, 479.91033935546875], "det_conf": 0.9030714631080627, "mean_kpt_conf": 0.9142404740506952, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9119877172392299, "right_lift": -0.7070604415489706, "left_bend": 0.3078325677312835, "right_bend": 0.7546449481707401}, "keypoints": {"0": [347.6181640625, 156.60768127441406, 0.9992050528526306], "1": [370.01336669921875, 128.74905395507812, 0.997835099697113], "2": [324.91876220703125, 128.763916015625, 0.9969586133956909], "3": [399.664306640625, 131.30601501464844, 0.8929158449172974], "4": [289.2149658203125, 130.34130859375, 0.845258891582489], "5": [461.41766357421875, 243.91976928710938, 0.9859695434570312], "6": [229.46783447265625, 248.21829223632812, 0.9966462254524231], "7": [532.9058837890625, 402.85101318359375, 0.7625734806060791], "8": [118.3935546875, 359.27801513671875, 0.9352254867553711], "9": [499.7174072265625, 457.67034912109375, 0.710009753704071], "10": [120.68708801269531, 202.82020568847656, 0.9340472221374512], "11": [439.1988830566406, 472.7226867675781, 0.11914045363664627], "12": [288.0378723144531, 477.2110595703125, 0.1901276558637619], "13": [482.30682373046875, 431.53594970703125, 0.0016307818004861474], "14": [292.73809814453125, 444.7933044433594, 0.0029137684032320976], "15": [437.24249267578125, 480.0, 0.0001558111107442528], "16": [266.8160400390625, 474.9644470214844, 0.00023992991191335022]}} +{"t": 58.678062, "tracked": true, "track_id": 1, "bbox": [88.8281021118164, 41.7486686706543, 575.1825561523438, 479.9000244140625], "det_conf": 0.9036630988121033, "mean_kpt_conf": 0.9154321063648571, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9135336751373707, "right_lift": -0.6976276713766172, "left_bend": 0.28344138382592976, "right_bend": 0.7518359337835431}, "keypoints": {"0": [347.8448486328125, 155.2345428466797, 0.9991796612739563], "1": [369.7935791015625, 127.81478881835938, 0.9977916479110718], "2": [325.1937561035156, 128.3377227783203, 0.9969106316566467], "3": [398.75714111328125, 131.3781280517578, 0.8943892121315002], "4": [289.87554931640625, 131.57118225097656, 0.8485388159751892], "5": [460.2000732421875, 242.81854248046875, 0.9859185218811035], "6": [230.15451049804688, 247.63290405273438, 0.9966945648193359], "7": [530.5481567382812, 400.81060791015625, 0.7693437933921814], "8": [118.42875671386719, 356.4218444824219, 0.9387149214744568], "9": [499.9623107910156, 460.79266357421875, 0.707333505153656], "10": [121.383544921875, 201.6177978515625, 0.9349378943443298], "11": [438.47479248046875, 472.1304016113281, 0.12442954629659653], "12": [288.68377685546875, 476.96234130859375, 0.19950629770755768], "13": [481.0604248046875, 429.36480712890625, 0.001676587969996035], "14": [292.6500549316406, 443.641845703125, 0.0030220686458051205], "15": [435.9754638671875, 480.0, 0.00016343103197868913], "16": [266.3097839355469, 476.4214172363281, 0.00025319185806438327]}} +{"t": 58.746774, "tracked": true, "track_id": 1, "bbox": [88.96286010742188, 41.748226165771484, 577.3494262695312, 479.88739013671875], "det_conf": 0.9032884836196899, "mean_kpt_conf": 0.9145572727376764, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9115780581924015, "right_lift": -0.695588602068936, "left_bend": 0.26600614667990824, "right_bend": 0.7513306272709582}, "keypoints": {"0": [347.4364318847656, 155.85519409179688, 0.9991651773452759], "1": [369.6160888671875, 128.65237426757812, 0.9977700710296631], "2": [325.0090637207031, 128.84877014160156, 0.9968644976615906], "3": [398.68939208984375, 132.37109375, 0.8959869742393494], "4": [289.8089599609375, 131.70277404785156, 0.8489048480987549], "5": [459.3028564453125, 244.2914581298828, 0.9860826134681702], "6": [229.4070281982422, 247.85983276367188, 0.996717631816864], "7": [530.3109741210938, 401.7353515625, 0.7682583928108215], "8": [118.40550231933594, 355.3306884765625, 0.9376540780067444], "9": [504.28662109375, 461.28729248046875, 0.7005491852760315], "10": [121.57441711425781, 199.55191040039062, 0.9321765303611755], "11": [436.79736328125, 471.71429443359375, 0.1301126480102539], "12": [287.1925354003906, 476.266357421875, 0.20692098140716553], "13": [481.21221923828125, 432.510498046875, 0.001704953727312386], "14": [293.6756286621094, 446.5801696777344, 0.003069645958021283], "15": [438.20855712890625, 480.0, 0.00016366182535421103], "16": [269.95068359375, 476.6557922363281, 0.0002534082450438291]}} +{"t": 58.81212, "tracked": true, "track_id": 1, "bbox": [85.86564636230469, 41.98799514770508, 574.3594360351562, 479.91925048828125], "det_conf": 0.9040101170539856, "mean_kpt_conf": 0.9158392115072771, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9159320911839539, "right_lift": -0.6955303150242493, "left_bend": 0.2654767817501524, "right_bend": 0.7466354764769}, "keypoints": {"0": [348.15667724609375, 155.5562286376953, 0.9991680383682251], "1": [370.25714111328125, 128.14173889160156, 0.9978206157684326], "2": [325.4595031738281, 128.73507690429688, 0.9968331456184387], "3": [399.53546142578125, 131.82704162597656, 0.8994739055633545], "4": [290.2857971191406, 132.21444702148438, 0.845626175403595], "5": [460.2135925292969, 243.57672119140625, 0.9860265254974365], "6": [230.73104858398438, 248.3759002685547, 0.9967542290687561], "7": [528.995361328125, 400.55206298828125, 0.7730621099472046], "8": [119.36209106445312, 356.18499755859375, 0.9399890303611755], "9": [501.90130615234375, 461.0528259277344, 0.7051993012428284], "10": [120.23393249511719, 202.43557739257812, 0.9342782497406006], "11": [437.4261474609375, 471.9559326171875, 0.13249032199382782], "12": [287.5832824707031, 476.800048828125, 0.21140319108963013], "13": [481.5230712890625, 431.5660705566406, 0.0016954044112935662], "14": [290.6521911621094, 446.3199768066406, 0.003058274742215872], "15": [437.79852294921875, 480.0, 0.00016251046326942742], "16": [264.018310546875, 477.5075988769531, 0.0002521345450077206]}} +{"t": 58.880085, "tracked": true, "track_id": 1, "bbox": [88.70843505859375, 41.38936996459961, 577.4878540039062, 479.9042053222656], "det_conf": 0.901685357093811, "mean_kpt_conf": 0.9139918414029208, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.914479928935062, "right_lift": -0.6966086586602043, "left_bend": 0.29747747532089464, "right_bend": 0.7464368122548551}, "keypoints": {"0": [348.0902099609375, 156.18568420410156, 0.9991583824157715], "1": [370.4420471191406, 128.64569091796875, 0.9977265000343323], "2": [325.3118591308594, 128.86070251464844, 0.9968788623809814], "3": [399.6218566894531, 132.16921997070312, 0.8937668800354004], "4": [289.5475158691406, 131.67251586914062, 0.8489838242530823], "5": [459.9106750488281, 244.82089233398438, 0.9855554103851318], "6": [230.15660095214844, 248.32659912109375, 0.9966463446617126], "7": [529.5560302734375, 402.2216796875, 0.7603496313095093], "8": [119.383544921875, 355.881591796875, 0.9366374015808105], "9": [498.2130126953125, 457.2210693359375, 0.7046428322792053], "10": [119.931396484375, 201.315185546875, 0.9335641860961914], "11": [436.8257141113281, 472.8614196777344, 0.12494360655546188], "12": [287.2362976074219, 477.03631591796875, 0.2009943723678589], "13": [478.9383544921875, 432.4232177734375, 0.001696535386145115], "14": [291.7358703613281, 445.4999084472656, 0.003059650305658579], "15": [434.49468994140625, 480.0, 0.00016401332686655223], "16": [266.98919677734375, 475.67291259765625, 0.00025407280190847814]}} +{"t": 58.942269, "tracked": true, "track_id": 1, "bbox": [89.15713500976562, 41.693702697753906, 577.644287109375, 479.8877258300781], "det_conf": 0.9048102498054504, "mean_kpt_conf": 0.9156735268506137, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9134580796007804, "right_lift": -0.6989950010025945, "left_bend": 0.2932885736258621, "right_bend": 0.7511837854573685}, "keypoints": {"0": [347.9715270996094, 156.29074096679688, 0.9991963505744934], "1": [369.8179931640625, 128.61141967773438, 0.9978195428848267], "2": [325.2081298828125, 129.2177276611328, 0.9969292283058167], "3": [399.0781555175781, 131.3542938232422, 0.8936059474945068], "4": [289.80157470703125, 131.76246643066406, 0.8450332880020142], "5": [460.9541931152344, 243.62705993652344, 0.986163318157196], "6": [230.55111694335938, 247.6679229736328, 0.9967086315155029], "7": [531.642333984375, 402.3034973144531, 0.7710776329040527], "8": [119.20770263671875, 356.49969482421875, 0.9391513466835022], "9": [501.039306640625, 458.01708984375, 0.7115676403045654], "10": [121.54890441894531, 201.73101806640625, 0.9351558685302734], "11": [437.99554443359375, 472.68316650390625, 0.12920626997947693], "12": [287.4995422363281, 476.99945068359375, 0.205985426902771], "13": [480.56243896484375, 432.878173828125, 0.0016673710197210312], "14": [288.995849609375, 446.39093017578125, 0.002992036519572139], "15": [436.7008056640625, 480.0, 0.0001571434986544773], "16": [261.3951110839844, 476.5537414550781, 0.00024237191246356815]}} +{"t": 59.006353, "tracked": true, "track_id": 1, "bbox": [89.49491119384766, 41.697818756103516, 579.11962890625, 479.89154052734375], "det_conf": 0.9033163189888, "mean_kpt_conf": 0.9137639891017567, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9171584839239303, "right_lift": -0.7065649605526169, "left_bend": 0.3467615063628235, "right_bend": 0.752072602541484}, "keypoints": {"0": [347.9542236328125, 156.20298767089844, 0.9992044568061829], "1": [370.245361328125, 128.47348022460938, 0.9978747367858887], "2": [325.0625915527344, 129.0631866455078, 0.9969773292541504], "3": [400.17718505859375, 131.6659698486328, 0.9002834558486938], "4": [289.5809631347656, 131.9801025390625, 0.8398361206054688], "5": [464.1907043457031, 244.59857177734375, 0.986172616481781], "6": [230.0194549560547, 247.72259521484375, 0.9967684745788574], "7": [534.3421630859375, 406.04486083984375, 0.7587674260139465], "8": [119.94024658203125, 357.63330078125, 0.9380003809928894], "9": [494.95684814453125, 454.8012390136719, 0.7038246393203735], "10": [121.06724548339844, 202.76956176757812, 0.9336942434310913], "11": [440.7063293457031, 474.7362060546875, 0.12629298865795135], "12": [287.9612121582031, 478.3110656738281, 0.20468269288539886], "13": [483.0573425292969, 434.57421875, 0.0016245825681835413], "14": [290.5970153808594, 446.1686706542969, 0.002983445767313242], "15": [435.9248962402344, 480.0, 0.00015398909454233944], "16": [263.5431213378906, 476.6099548339844, 0.00024287875567097217]}} +{"t": 59.041629, "tracked": true, "track_id": 1, "bbox": [81.4560775756836, 42.06651306152344, 569.8629150390625, 479.9580383300781], "det_conf": 0.9032796025276184, "mean_kpt_conf": 0.9326564398678866, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9041254856230898, "right_lift": -0.7120689199308828, "left_bend": 0.2828614268872042, "right_bend": 0.7635096778307245}, "keypoints": {"0": [345.314697265625, 155.61038208007812, 0.9992546439170837], "1": [368.4491271972656, 128.99896240234375, 0.9983983635902405], "2": [323.34173583984375, 128.8043212890625, 0.9965749382972717], "3": [398.8587341308594, 132.3072967529297, 0.9437202215194702], "4": [290.46441650390625, 130.81820678710938, 0.8290076851844788], "5": [455.9167785644531, 242.071533203125, 0.9915703535079956], "6": [226.6214599609375, 245.38523864746094, 0.9973216652870178], "7": [529.6664428710938, 398.1307373046875, 0.8532872200012207], "8": [107.59121704101562, 366.1039123535156, 0.9388542175292969], "9": [503.87841796875, 451.90435791015625, 0.7753233313560486], "10": [112.8741455078125, 216.92898559570312, 0.9359081983566284], "11": [424.4931640625, 480.0, 0.1638660728931427], "12": [273.218505859375, 480.0, 0.2250363677740097], "13": [476.9338684082031, 432.994873046875, 0.0012700253864750266], "14": [266.13525390625, 443.0583190917969, 0.0018906244076788425], "15": [448.73297119140625, 474.6867980957031, 0.00012169508408987895], "16": [235.10440063476562, 463.7972412109375, 0.00016532470181118697]}} +{"t": 59.0756, "tracked": true, "track_id": 1, "bbox": [78.6028060913086, 41.99502182006836, 566.7199096679688, 479.97686767578125], "det_conf": 0.9014729857444763, "mean_kpt_conf": 0.9329590743238275, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9062232989556497, "right_lift": -0.7140631392309682, "left_bend": 0.26255130354673917, "right_bend": 0.7629809801231284}, "keypoints": {"0": [345.50897216796875, 155.5309295654297, 0.9992708563804626], "1": [368.3802795410156, 129.19497680664062, 0.9983495473861694], "2": [323.62139892578125, 128.85716247558594, 0.9967308044433594], "3": [398.0291748046875, 133.20416259765625, 0.9387431740760803], "4": [290.5118103027344, 131.32118225097656, 0.8393733501434326], "5": [454.94366455078125, 243.7406768798828, 0.9917891025543213], "6": [226.62258911132812, 245.1909637451172, 0.9973292350769043], "7": [528.5762939453125, 401.5639953613281, 0.8541600108146667], "8": [108.04066467285156, 366.14117431640625, 0.9394735097885132], "9": [507.14190673828125, 453.96240234375, 0.7717710733413696], "10": [112.65115356445312, 216.95359802246094, 0.9355591535568237], "11": [423.51385498046875, 480.0, 0.16026949882507324], "12": [272.66876220703125, 480.0, 0.21997708082199097], "13": [476.5000305175781, 430.97918701171875, 0.0012705146800726652], "14": [263.68414306640625, 440.321044921875, 0.0018876258982345462], "15": [448.4808349609375, 473.2079772949219, 0.00012282826355658472], "16": [230.96173095703125, 462.6683044433594, 0.0001656210224609822]}} +{"t": 59.110121, "tracked": true, "track_id": 1, "bbox": [85.31171417236328, 41.89417266845703, 574.1609497070312, 479.9150695800781], "det_conf": 0.9033751487731934, "mean_kpt_conf": 0.9179230007258329, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9117690117100736, "right_lift": -0.7011791635597496, "left_bend": 0.3046327836925586, "right_bend": 0.7474330522398951}, "keypoints": {"0": [347.2803039550781, 156.0938720703125, 0.9992054104804993], "1": [369.5132141113281, 128.67507934570312, 0.9979156851768494], "2": [324.79437255859375, 128.9969482421875, 0.9968427419662476], "3": [399.2841796875, 132.1070098876953, 0.903247058391571], "4": [289.8227233886719, 131.87879943847656, 0.8349288105964661], "5": [461.5036926269531, 243.57589721679688, 0.9865358471870422], "6": [231.1332244873047, 248.3046875, 0.9968084692955017], "7": [532.3926391601562, 400.9506530761719, 0.7803244590759277], "8": [120.56694030761719, 357.0401611328125, 0.9416608810424805], "9": [499.2373046875, 457.04705810546875, 0.7222915887832642], "10": [120.61082458496094, 202.44415283203125, 0.9373920559883118], "11": [439.4678955078125, 471.85308837890625, 0.13428166508674622], "12": [288.6983947753906, 476.2023620605469, 0.21326538920402527], "13": [482.16259765625, 432.36102294921875, 0.0016876189038157463], "14": [289.3063049316406, 445.54638671875, 0.0030264463275671005], "15": [438.7586669921875, 480.0, 0.0001554699265398085], "16": [261.2751770019531, 475.3970947265625, 0.00024130205565597862]}} +{"t": 59.176644, "tracked": true, "track_id": 1, "bbox": [89.11115264892578, 42.042232513427734, 579.273681640625, 479.9140930175781], "det_conf": 0.9021676182746887, "mean_kpt_conf": 0.9149713299491189, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9098575653688106, "right_lift": -0.696689499039908, "left_bend": 0.3198980701859216, "right_bend": 0.749462247580519}, "keypoints": {"0": [347.74072265625, 156.06344604492188, 0.9991908669471741], "1": [370.25750732421875, 128.6911163330078, 0.9978548884391785], "2": [324.9547424316406, 128.94381713867188, 0.9969398975372314], "3": [399.796875, 132.84906005859375, 0.899320125579834], "4": [289.3104553222656, 132.41775512695312, 0.8437570929527283], "5": [461.4106750488281, 244.1893310546875, 0.9858415126800537], "6": [230.70413208007812, 248.5280303955078, 0.996651828289032], "7": [533.3302001953125, 401.8978271484375, 0.7640292644500732], "8": [118.84963989257812, 357.15753173828125, 0.9371870756149292], "9": [497.0513916015625, 457.61883544921875, 0.7091609835624695], "10": [120.85087585449219, 202.46844482421875, 0.9347510933876038], "11": [440.33184814453125, 472.1730651855469, 0.1229807585477829], "12": [290.1835632324219, 476.52215576171875, 0.1974630504846573], "13": [482.625, 431.1190185546875, 0.0016565369442105293], "14": [295.24658203125, 443.6665954589844, 0.00299570569768548], "15": [437.92889404296875, 480.0, 0.00015952950343489647], "16": [268.7139587402344, 475.37744140625, 0.000249032280407846]}} +{"t": 59.239347, "tracked": true, "track_id": 1, "bbox": [89.59996032714844, 42.60993957519531, 581.4185791015625, 479.9523010253906], "det_conf": 0.901119589805603, "mean_kpt_conf": 0.9395636320114136, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9014839788361978, "right_lift": -0.7067097258158416, "left_bend": 0.3705059485421398, "right_bend": 0.7611901574470994}, "keypoints": {"0": [346.76904296875, 156.54721069335938, 0.9994282126426697], "1": [369.79913330078125, 128.89105224609375, 0.9985413551330566], "2": [324.245361328125, 129.04278564453125, 0.9972634315490723], "3": [401.1407775878906, 131.4389190673828, 0.9277184009552002], "4": [289.7938537597656, 130.94534301757812, 0.8223487734794617], "5": [465.2171630859375, 239.62388610839844, 0.9915257096290588], "6": [229.9173583984375, 247.3296356201172, 0.9977649450302124], "7": [538.12548828125, 391.4810791015625, 0.8636186122894287], "8": [113.28341674804688, 363.83270263671875, 0.9592890739440918], "9": [495.4905700683594, 440.44940185546875, 0.8189306259155273], "10": [118.76734924316406, 210.35646057128906, 0.9587708115577698], "11": [440.3297119140625, 480.0, 0.1850622147321701], "12": [283.6161193847656, 480.0, 0.26869919896125793], "13": [485.7306823730469, 437.72576904296875, 0.0011452586622908711], "14": [270.13934326171875, 448.543701171875, 0.0018999198218807578], "15": [441.89306640625, 480.0, 8.809811697574332e-05], "16": [224.3727569580078, 472.85943603515625, 0.00012958374281879514]}} +{"t": 59.305326, "tracked": true, "track_id": 1, "bbox": [83.08866882324219, 42.12725830078125, 570.2862548828125, 479.95184326171875], "det_conf": 0.9031082987785339, "mean_kpt_conf": 0.9304219267585061, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9074194100980889, "right_lift": -0.7260064768484366, "left_bend": 0.31308765457619175, "right_bend": 0.7663743255005043}, "keypoints": {"0": [345.48919677734375, 155.59127807617188, 0.9992852807044983], "1": [368.3065490722656, 128.86465454101562, 0.9983766078948975], "2": [323.355712890625, 128.76318359375, 0.9967983365058899], "3": [398.1549377441406, 132.0738525390625, 0.9377239346504211], "4": [290.014892578125, 130.82945251464844, 0.8368079662322998], "5": [456.6731872558594, 241.6444549560547, 0.9914774298667908], "6": [227.14663696289062, 245.29649353027344, 0.9972832202911377], "7": [530.868896484375, 401.85968017578125, 0.8431872725486755], "8": [108.60028076171875, 370.4483642578125, 0.9359694123268127], "9": [501.1405334472656, 450.35882568359375, 0.7639052867889404], "10": [112.29598999023438, 218.65890502929688, 0.9338264465332031], "11": [428.37750244140625, 480.0, 0.14989782869815826], "12": [277.0711669921875, 480.0, 0.20855280756950378], "13": [478.60638427734375, 430.466064453125, 0.0012530002277344465], "14": [267.52752685546875, 439.8356018066406, 0.001874346868135035], "15": [448.699462890625, 474.38671875, 0.00012171387061243877], "16": [234.2786865234375, 462.5796203613281, 0.00016542358207516372]}} +{"t": 59.369635, "tracked": true, "track_id": 1, "bbox": [79.02098083496094, 42.09157943725586, 566.233154296875, 479.9727783203125], "det_conf": 0.9041102528572083, "mean_kpt_conf": 0.9326184933835809, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9005599083051968, "right_lift": -0.7160322003255032, "left_bend": 0.3017305389537537, "right_bend": 0.7633503902314}, "keypoints": {"0": [345.6250305175781, 155.8902587890625, 0.999292254447937], "1": [368.38922119140625, 129.15382385253906, 0.9983805418014526], "2": [323.7130432128906, 128.72463989257812, 0.9967617392539978], "3": [398.1341247558594, 131.9910888671875, 0.9364678859710693], "4": [290.4405517578125, 130.0528106689453, 0.8351808190345764], "5": [455.8215026855469, 241.1191864013672, 0.9915613532066345], "6": [227.96005249023438, 245.20523071289062, 0.9972104430198669], "7": [531.4747924804688, 397.8371887207031, 0.8516202569007874], "8": [107.52508544921875, 368.7396240234375, 0.9365793466567993], "9": [502.2799377441406, 451.5107421875, 0.7787241339683533], "10": [111.89979553222656, 219.15818786621094, 0.9370246529579163], "11": [427.37249755859375, 480.0, 0.14984619617462158], "12": [277.01416015625, 480.0, 0.2048107534646988], "13": [477.72637939453125, 428.906982421875, 0.001258500968106091], "14": [267.893310546875, 438.509765625, 0.001840320066548884], "15": [448.20623779296875, 474.2411804199219, 0.00012054799299221486], "16": [232.7866973876953, 461.2887878417969, 0.00016098054766189307]}} +{"t": 59.40303, "tracked": true, "track_id": 1, "bbox": [86.561279296875, 41.43271255493164, 574.9327392578125, 479.9193420410156], "det_conf": 0.9035594463348389, "mean_kpt_conf": 0.9155754338611256, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9147480876885572, "right_lift": -0.7030278779675638, "left_bend": 0.31654860678282765, "right_bend": 0.7522790121993371}, "keypoints": {"0": [347.45849609375, 156.3587188720703, 0.9992026686668396], "1": [369.83819580078125, 128.81845092773438, 0.9978625178337097], "2": [324.72943115234375, 128.95516967773438, 0.9969039559364319], "3": [399.4307861328125, 132.3590087890625, 0.897332489490509], "4": [289.3168640136719, 131.68931579589844, 0.8403670787811279], "5": [459.96014404296875, 244.64944458007812, 0.9857650399208069], "6": [231.70932006835938, 248.20669555664062, 0.9966644644737244], "7": [530.5150146484375, 404.3919982910156, 0.7664818167686462], "8": [119.14730834960938, 359.481201171875, 0.938179075717926], "9": [496.0534973144531, 457.15771484375, 0.7157398462295532], "10": [121.14445495605469, 204.81201171875, 0.9368308186531067], "11": [439.2397155761719, 472.9854736328125, 0.1223873645067215], "12": [290.3551025390625, 477.0152587890625, 0.19712691009044647], "13": [481.014404296875, 433.326904296875, 0.0016420205356553197], "14": [293.55914306640625, 445.38818359375, 0.0029588197357952595], "15": [439.6167907714844, 480.0, 0.0001545479171909392], "16": [266.58087158203125, 476.1455993652344, 0.0002404043625574559]}} +{"t": 59.47173, "tracked": true, "track_id": 1, "bbox": [90.65231323242188, 41.36369705200195, 578.2826538085938, 479.90704345703125], "det_conf": 0.9013656377792358, "mean_kpt_conf": 0.9152159907601096, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9169985117507612, "right_lift": -0.6965720291120066, "left_bend": 0.3122492066378331, "right_bend": 0.7557672737566365}, "keypoints": {"0": [347.55120849609375, 156.2546844482422, 0.9991971850395203], "1": [369.2344970703125, 127.90214538574219, 0.9979346990585327], "2": [324.1322021484375, 129.36810302734375, 0.9968327879905701], "3": [399.20819091796875, 130.08447265625, 0.901075541973114], "4": [288.9382629394531, 132.55633544921875, 0.8352509140968323], "5": [462.2017517089844, 242.4576416015625, 0.985358476638794], "6": [231.9101104736328, 247.96292114257812, 0.996579110622406], "7": [532.1717529296875, 403.3097229003906, 0.7629958987236023], "8": [117.90838623046875, 358.6414794921875, 0.9376534819602966], "9": [496.588623046875, 458.74462890625, 0.7168857455253601], "10": [122.99830627441406, 204.02606201171875, 0.9376120567321777], "11": [440.7895202636719, 472.16998291015625, 0.11602369695901871], "12": [290.8838195800781, 476.972900390625, 0.18886986374855042], "13": [480.0758972167969, 429.71405029296875, 0.0016194746131077409], "14": [291.5361633300781, 443.7320251464844, 0.0029432938899844885], "15": [435.456787109375, 480.0, 0.00015662949590478092], "16": [262.8572082519531, 478.03045654296875, 0.00024556420976296067]}} +{"t": 59.537543, "tracked": true, "track_id": 1, "bbox": [83.41414642333984, 41.43085479736328, 569.30126953125, 479.96630859375], "det_conf": 0.9043623208999634, "mean_kpt_conf": 0.9303323843262412, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9071978081131521, "right_lift": -0.7141448101437472, "left_bend": 0.287573664994919, "right_bend": 0.7679431673039174}, "keypoints": {"0": [344.119140625, 155.93429565429688, 0.9992468357086182], "1": [367.04229736328125, 128.871826171875, 0.9984415173530579], "2": [321.83917236328125, 129.050048828125, 0.996462881565094], "3": [397.7737121582031, 131.53512573242188, 0.945247232913971], "4": [289.3441467285156, 130.98614501953125, 0.822572648525238], "5": [455.2875671386719, 241.07745361328125, 0.9910021424293518], "6": [227.44668579101562, 245.42433166503906, 0.9971368312835693], "7": [528.9105834960938, 399.8365478515625, 0.8432957530021667], "8": [105.69451904296875, 369.6370849609375, 0.9342038631439209], "9": [501.8987121582031, 453.11627197265625, 0.7711129784584045], "10": [112.72102355957031, 218.20347595214844, 0.9349335432052612], "11": [425.2617492675781, 480.0, 0.14121893048286438], "12": [275.3015441894531, 480.0, 0.19670182466506958], "13": [474.6912841796875, 427.5152282714844, 0.001254901522770524], "14": [266.1760559082031, 438.1128234863281, 0.0018727319547906518], "15": [445.4124755859375, 473.20721435546875, 0.00012556958245113492], "16": [231.85299682617188, 462.99139404296875, 0.0001714356621960178]}} +{"t": 59.602128, "tracked": true, "track_id": 1, "bbox": [80.74951171875, 41.66496658325195, 566.0132446289062, 480.0], "det_conf": 0.9044728875160217, "mean_kpt_conf": 0.9303102113983848, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9097771290753808, "right_lift": -0.7124535157576927, "left_bend": 0.28438937643586704, "right_bend": 0.7642464902674401}, "keypoints": {"0": [344.1828918457031, 155.81063842773438, 0.9992747902870178], "1": [366.805908203125, 128.47451782226562, 0.9985332489013672], "2": [321.61358642578125, 129.45327758789062, 0.9965382814407349], "3": [398.0068664550781, 130.5205078125, 0.9484505653381348], "4": [289.42236328125, 131.8004913330078, 0.8188183307647705], "5": [457.9853515625, 239.43118286132812, 0.9914202690124512], "6": [227.36398315429688, 245.15585327148438, 0.9972680807113647], "7": [530.7747802734375, 398.96533203125, 0.8475952744483948], "8": [106.01394653320312, 368.3621826171875, 0.9370381236076355], "9": [502.5198974609375, 455.2303466796875, 0.7644253373146057], "10": [111.61985778808594, 217.59872436523438, 0.9340500235557556], "11": [428.4117126464844, 480.0, 0.15588635206222534], "12": [276.4765930175781, 480.0, 0.21623855829238892], "13": [479.9727478027344, 431.2725830078125, 0.001234123483300209], "14": [267.6596984863281, 443.1746826171875, 0.0018656115280464292], "15": [447.9318542480469, 475.8153076171875, 0.00012017143308185041], "16": [231.84979248046875, 467.98590087890625, 0.00016601882816758007]}} +{"t": 59.668111, "tracked": true, "track_id": 1, "bbox": [80.69564819335938, 41.56879425048828, 565.1570434570312, 480.0], "det_conf": 0.9046238660812378, "mean_kpt_conf": 0.9277444048361345, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9071462146217987, "right_lift": -0.7091624426457386, "left_bend": 0.32977059846608875, "right_bend": 0.762119747752581}, "keypoints": {"0": [343.1852111816406, 156.20242309570312, 0.9992590546607971], "1": [365.6568298339844, 129.13153076171875, 0.9985326528549194], "2": [321.121337890625, 129.80123901367188, 0.996376097202301], "3": [397.0299072265625, 131.14532470703125, 0.9515709280967712], "4": [289.6369934082031, 131.71957397460938, 0.8028611540794373], "5": [457.73162841796875, 241.08103942871094, 0.9909651279449463], "6": [229.2122802734375, 245.1292724609375, 0.9971876740455627], "7": [531.5670166015625, 400.2469482421875, 0.8371643424034119], "8": [108.20628356933594, 366.8419189453125, 0.934704065322876], "9": [496.76531982421875, 450.93560791015625, 0.7633296251296997], "10": [113.42686462402344, 218.43899536132812, 0.9332377314567566], "11": [428.7323303222656, 480.0, 0.1504334807395935], "12": [278.3151550292969, 480.0, 0.21266219019889832], "13": [476.89129638671875, 433.09674072265625, 0.001257863361388445], "14": [268.9950256347656, 442.22222900390625, 0.0019276831299066544], "15": [447.62005615234375, 474.9256896972656, 0.00012312248873058707], "16": [235.51931762695312, 464.40411376953125, 0.00017296099395025522]}} +{"t": 59.735235, "tracked": true, "track_id": 1, "bbox": [79.8873062133789, 41.812984466552734, 569.4771118164062, 479.9836730957031], "det_conf": 0.9044514298439026, "mean_kpt_conf": 0.9285039359872992, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9102664148632601, "right_lift": -0.711218308264722, "left_bend": 0.291128941584072, "right_bend": 0.7621922546875308}, "keypoints": {"0": [342.1419372558594, 156.7371063232422, 0.9992450475692749], "1": [364.7458801269531, 129.49493408203125, 0.9985780715942383], "2": [319.7433776855469, 130.71566772460938, 0.9962047934532166], "3": [396.734619140625, 131.39834594726562, 0.9549662470817566], "4": [288.7160949707031, 133.22804260253906, 0.7971213459968567], "5": [456.993896484375, 239.80397033691406, 0.9911583065986633], "6": [228.88787841796875, 245.63302612304688, 0.997238039970398], "7": [529.6296997070312, 399.500244140625, 0.8456026315689087], "8": [107.40573120117188, 368.5403747558594, 0.9370239973068237], "9": [500.74639892578125, 453.9469299316406, 0.7631809115409851], "10": [112.274169921875, 218.6634063720703, 0.9332239031791687], "11": [428.66168212890625, 480.0, 0.15772442519664764], "12": [278.39697265625, 480.0, 0.22085410356521606], "13": [478.83233642578125, 432.3703918457031, 0.0012546302750706673], "14": [268.90167236328125, 443.7136535644531, 0.0019209252204746008], "15": [450.0142517089844, 474.7615966796875, 0.00012294169573578984], "16": [234.22817993164062, 466.99774169921875, 0.00017314645810984075]}} +{"t": 59.798586, "tracked": true, "track_id": 1, "bbox": [79.24038696289062, 41.657981872558594, 569.5555419921875, 479.9648132324219], "det_conf": 0.9021661877632141, "mean_kpt_conf": 0.9255527853965759, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9138825509536669, "right_lift": -0.6914863686655787, "left_bend": 0.28505157337609816, "right_bend": 0.7542277815185491}, "keypoints": {"0": [338.448974609375, 156.1947021484375, 0.9991862177848816], "1": [361.67291259765625, 129.369384765625, 0.9987481832504272], "2": [316.5113830566406, 131.2970428466797, 0.995411217212677], "3": [396.398193359375, 132.72662353515625, 0.9703544974327087], "4": [288.6298828125, 135.79466247558594, 0.7436660528182983], "5": [456.84918212890625, 240.99197387695312, 0.9909331798553467], "6": [231.70867919921875, 245.72702026367188, 0.9972442388534546], "7": [527.1510620117188, 399.2457580566406, 0.8476023077964783], "8": [108.39546203613281, 363.7650146484375, 0.939516544342041], "9": [500.1999816894531, 451.3357238769531, 0.766021728515625], "10": [113.58297729492188, 216.18275451660156, 0.9323964715003967], "11": [426.22259521484375, 480.0, 0.16751202940940857], "12": [277.8398742675781, 480.0, 0.2375308722257614], "13": [476.3310852050781, 432.298583984375, 0.0013015740551054478], "14": [268.3794250488281, 442.9615478515625, 0.0020622704178094864], "15": [451.31988525390625, 471.36016845703125, 0.00013150193262845278], "16": [233.91461181640625, 465.6639404296875, 0.00019413669360801578]}} +{"t": 59.832398, "tracked": true, "track_id": 1, "bbox": [80.63142395019531, 41.856727600097656, 567.1485595703125, 479.9490966796875], "det_conf": 0.9071923494338989, "mean_kpt_conf": 0.9267889586361971, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9137679226217984, "right_lift": -0.6939498298870793, "left_bend": 0.25590826491168944, "right_bend": 0.7569137706374319}, "keypoints": {"0": [336.2402648925781, 156.42074584960938, 0.9991790652275085], "1": [359.6731262207031, 129.70791625976562, 0.9988136291503906], "2": [314.4186096191406, 131.99240112304688, 0.9950855374336243], "3": [395.46112060546875, 133.04348754882812, 0.9736331701278687], "4": [287.795166015625, 136.81094360351562, 0.7239589691162109], "5": [456.1394958496094, 238.31045532226562, 0.991364598274231], "6": [232.16600036621094, 244.77471923828125, 0.9972430467605591], "7": [526.423828125, 396.4044494628906, 0.8629255294799805], "8": [108.67205810546875, 363.79669189453125, 0.942742109298706], "9": [502.597412109375, 455.09698486328125, 0.7760360240936279], "10": [114.58062744140625, 216.7429656982422, 0.9336968660354614], "11": [425.9701232910156, 480.0, 0.17851433157920837], "12": [277.9871520996094, 480.0, 0.24735261499881744], "13": [477.4021911621094, 429.87548828125, 0.001314328284934163], "14": [267.2763366699219, 442.0567932128906, 0.002056168857961893], "15": [452.35931396484375, 471.7685546875, 0.00013204234710428864], "16": [229.51852416992188, 467.01953125, 0.00019414392590988427]}} +{"t": 59.897873, "tracked": true, "track_id": 1, "bbox": [80.60662841796875, 41.607810974121094, 568.2681274414062, 479.9370422363281], "det_conf": 0.9042320847511292, "mean_kpt_conf": 0.9230464696884155, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9199693460696718, "right_lift": -0.6897272564708732, "left_bend": 0.301342635054838, "right_bend": 0.7540038620843359}, "keypoints": {"0": [331.44696044921875, 157.1190185546875, 0.9992209672927856], "1": [354.46337890625, 129.7740478515625, 0.9989789724349976], "2": [310.1654052734375, 132.7052001953125, 0.9944954514503479], "3": [393.1097717285156, 131.13697814941406, 0.979679524898529], "4": [286.4543151855469, 136.27471923828125, 0.6595960259437561], "5": [459.9061279296875, 238.94271850585938, 0.991689145565033], "6": [232.6440887451172, 246.06195068359375, 0.9973177313804626], "7": [528.1502075195312, 399.10601806640625, 0.8625850677490234], "8": [107.72930908203125, 365.0521240234375, 0.9422937631607056], "9": [496.0390319824219, 452.20465087890625, 0.7910750508308411], "10": [113.22346496582031, 216.0825958251953, 0.9365794658660889], "11": [429.30224609375, 480.0, 0.17581787705421448], "12": [279.14764404296875, 480.0, 0.24517680704593658], "13": [478.6029052734375, 432.68170166015625, 0.001289747073315084], "14": [267.7859191894531, 444.8470764160156, 0.0020474204793572426], "15": [450.5632019042969, 471.2652282714844, 0.0001235014497069642], "16": [228.88340759277344, 467.9436950683594, 0.00018676082254387438]}} +{"t": 59.961574, "tracked": true, "track_id": 1, "bbox": [88.49722290039062, 40.821414947509766, 574.0715942382812, 479.9027404785156], "det_conf": 0.9029659628868103, "mean_kpt_conf": 0.9060503190213983, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9293584001816972, "right_lift": -0.6607298419312202, "left_bend": 0.3260589580983116, "right_bend": 0.7426215024306694}, "keypoints": {"0": [328.1084899902344, 157.12490844726562, 0.999136745929718], "1": [350.9905700683594, 128.4449005126953, 0.9989068508148193], "2": [306.97900390625, 132.80136108398438, 0.9933702945709229], "3": [393.365478515625, 130.49203491210938, 0.977350115776062], "4": [285.1530456542969, 138.25363159179688, 0.5649240016937256], "5": [467.01898193359375, 242.5450439453125, 0.9867562055587769], "6": [238.34661865234375, 251.99365234375, 0.9963815212249756], "7": [530.7976684570312, 403.0993957519531, 0.8044676184654236], "8": [116.91807556152344, 358.8800354003906, 0.9364303946495056], "9": [489.9617919921875, 457.2400207519531, 0.7724456787109375], "10": [123.12030029296875, 205.54676818847656, 0.9363840818405151], "11": [443.0577087402344, 473.6934509277344, 0.13202230632305145], "12": [293.6639099121094, 478.5802001953125, 0.2032911777496338], "13": [480.2547912597656, 430.27655029296875, 0.00168167008087039], "14": [290.4708251953125, 446.26446533203125, 0.0030290817376226187], "15": [443.40606689453125, 479.8992004394531, 0.00015756151697132736], "16": [259.0603942871094, 480.0, 0.00026756900479085743]}} +{"t": 60.031007, "tracked": true, "track_id": 1, "bbox": [92.5748062133789, 40.83129119873047, 577.673095703125, 479.88006591796875], "det_conf": 0.9062635898590088, "mean_kpt_conf": 0.9045043966986916, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9271053227991368, "right_lift": -0.6506284088500537, "left_bend": 0.30040210979152965, "right_bend": 0.7384470836032707}, "keypoints": {"0": [325.1233215332031, 156.29287719726562, 0.9990959167480469], "1": [348.3584289550781, 127.93101501464844, 0.9988804459571838], "2": [304.51116943359375, 132.21463012695312, 0.9928457140922546], "3": [391.4741516113281, 131.28207397460938, 0.9779186844825745], "4": [283.5726318359375, 138.35299682617188, 0.5472461581230164], "5": [463.57952880859375, 244.986083984375, 0.9868670701980591], "6": [238.54063415527344, 252.45053100585938, 0.9960700273513794], "7": [527.2835083007812, 402.5638732910156, 0.8094592094421387], "8": [118.59439086914062, 355.2169494628906, 0.9322243928909302], "9": [493.49884033203125, 456.50408935546875, 0.7761037945747375], "10": [124.70933532714844, 205.02584838867188, 0.9328369498252869], "11": [440.2740783691406, 472.4321594238281, 0.13996058702468872], "12": [293.1829528808594, 476.6709899902344, 0.20817871391773224], "13": [478.23931884765625, 432.23114013671875, 0.0017865601694211364], "14": [291.7387390136719, 447.62939453125, 0.0031156791374087334], "15": [446.1763000488281, 478.3607177734375, 0.00016547500854358077], "16": [263.3210754394531, 480.0, 0.0002750332932919264]}} +{"t": 60.093565, "tracked": true, "track_id": 1, "bbox": [93.6348648071289, 41.17963409423828, 574.6932983398438, 479.9095153808594], "det_conf": 0.9061187505722046, "mean_kpt_conf": 0.9038346626541831, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9313648330631363, "right_lift": -0.6579146222742557, "left_bend": 0.26794190893045017, "right_bend": 0.7375079152369788}, "keypoints": {"0": [322.6246643066406, 156.5076904296875, 0.9991132616996765], "1": [345.47259521484375, 127.70724487304688, 0.9989306330680847], "2": [302.2127380371094, 132.61605834960938, 0.992369532585144], "3": [390.2777099609375, 129.02049255371094, 0.9789459109306335], "4": [283.2594909667969, 137.52786254882812, 0.5183176398277283], "5": [464.41650390625, 240.75851440429688, 0.9872346520423889], "6": [239.20916748046875, 251.00994873046875, 0.9960275888442993], "7": [526.3231201171875, 399.12066650390625, 0.8208428025245667], "8": [118.98971557617188, 356.0357360839844, 0.9336897134780884], "9": [495.82403564453125, 459.2945861816406, 0.7834344506263733], "10": [123.22767639160156, 205.29486083984375, 0.9332751035690308], "11": [439.1814880371094, 471.8504638671875, 0.14418749511241913], "12": [291.5045471191406, 476.9464111328125, 0.2106587141752243], "13": [476.45941162109375, 430.0372314453125, 0.001801827922463417], "14": [285.99932861328125, 448.20855712890625, 0.0030985847115516663], "15": [441.6767883300781, 478.1689147949219, 0.0001644011790631339], "16": [252.98062133789062, 480.0, 0.0002701490302570164]}} +{"t": 60.164029, "tracked": true, "track_id": 1, "bbox": [93.7375717163086, 40.776493072509766, 576.6031494140625, 479.93505859375], "det_conf": 0.903306782245636, "mean_kpt_conf": 0.9021069840951399, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9305397481951606, "right_lift": -0.6520849964218559, "left_bend": 0.3184255764594517, "right_bend": 0.7400036792419221}, "keypoints": {"0": [320.8485412597656, 155.8361053466797, 0.9991143345832825], "1": [343.84613037109375, 127.23806762695312, 0.9989578723907471], "2": [300.5199279785156, 132.40621948242188, 0.9922568798065186], "3": [388.8316650390625, 130.08897399902344, 0.9805083870887756], "4": [281.6849670410156, 138.86489868164062, 0.5028786659240723], "5": [463.9576110839844, 243.51040649414062, 0.9874889254570007], "6": [238.63525390625, 252.0068817138672, 0.9959233999252319], "7": [527.0462036132812, 403.826904296875, 0.8180536031723022], "8": [117.5325927734375, 356.1678771972656, 0.930063784122467], "9": [489.3154296875, 456.0732421875, 0.7861099243164062], "10": [124.14837646484375, 204.74313354492188, 0.9318210482597351], "11": [440.971923828125, 472.3914794921875, 0.14262019097805023], "12": [293.6728820800781, 476.717529296875, 0.206552654504776], "13": [477.6297302246094, 432.5213317871094, 0.0018069690559059381], "14": [290.8346862792969, 448.3236083984375, 0.0030762820970267057], "15": [446.17822265625, 479.0064697265625, 0.00016257558309007436], "16": [260.826904296875, 480.0, 0.0002677351585589349]}} +{"t": 60.227875, "tracked": true, "track_id": 1, "bbox": [93.81600189208984, 40.72480392456055, 576.1488647460938, 479.9498291015625], "det_conf": 0.9055694937705994, "mean_kpt_conf": 0.9054184014146979, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9303129821708715, "right_lift": -0.650631925119511, "left_bend": 0.29558240782999645, "right_bend": 0.7374371901135425}, "keypoints": {"0": [320.39141845703125, 155.67877197265625, 0.9991162419319153], "1": [342.7181396484375, 127.25773620605469, 0.9989181756973267], "2": [299.9540710449219, 132.8798065185547, 0.9925429821014404], "3": [386.64105224609375, 130.2436981201172, 0.9797816276550293], "4": [281.0844421386719, 140.08181762695312, 0.5238640904426575], "5": [461.896484375, 244.11996459960938, 0.9880438446998596], "6": [238.43292236328125, 251.54782104492188, 0.9962085485458374], "7": [525.136962890625, 404.53106689453125, 0.8248310089111328], "8": [119.64891052246094, 353.3194274902344, 0.9369439482688904], "9": [492.3172607421875, 457.694580078125, 0.7848120331764221], "10": [125.22618103027344, 204.72003173828125, 0.9345399141311646], "11": [438.53302001953125, 472.9272766113281, 0.15701474249362946], "12": [292.2947692871094, 476.93218994140625, 0.22983227670192719], "13": [477.3443298339844, 434.6629638671875, 0.00183983298484236], "14": [289.5992126464844, 450.4185791015625, 0.0032227018382400274], "15": [446.0836486816406, 478.1211853027344, 0.00016277753456961364], "16": [259.1342468261719, 480.0, 0.00027241266798228025]}} +{"t": 60.296162, "tracked": true, "track_id": 1, "bbox": [93.51966094970703, 40.15277862548828, 576.6718139648438, 479.9512634277344], "det_conf": 0.9033694863319397, "mean_kpt_conf": 0.9034843824126504, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9262542370677859, "right_lift": -0.6517467588208635, "left_bend": 0.3015799776547666, "right_bend": 0.7376314813423089}, "keypoints": {"0": [318.9502868652344, 155.526611328125, 0.9991004467010498], "1": [341.584716796875, 127.45626831054688, 0.9989336133003235], "2": [298.94476318359375, 132.97210693359375, 0.9921934604644775], "3": [386.08892822265625, 131.33538818359375, 0.9808628559112549], "4": [280.6612243652344, 140.69717407226562, 0.5060654878616333], "5": [462.62481689453125, 244.29196166992188, 0.9884910583496094], "6": [237.57974243164062, 252.53790283203125, 0.9960702657699585], "7": [527.4134521484375, 403.5141906738281, 0.8293784260749817], "8": [119.12733459472656, 354.3275146484375, 0.9333327412605286], "9": [493.58074951171875, 457.35906982421875, 0.7837397456169128], "10": [124.61799621582031, 204.6059112548828, 0.9301601052284241], "11": [440.4251708984375, 472.2884216308594, 0.16232633590698242], "12": [293.09716796875, 476.5775451660156, 0.23042552173137665], "13": [480.36199951171875, 434.7802429199219, 0.0018664569361135364], "14": [291.24365234375, 450.73486328125, 0.0031783580780029297], "15": [448.7345275878906, 479.34661865234375, 0.00016359021537937224], "16": [260.5102844238281, 480.0, 0.00026941054966300726]}} +{"t": 60.357828, "tracked": true, "track_id": 1, "bbox": [91.2740249633789, 40.49354553222656, 578.0244750976562, 479.9584655761719], "det_conf": 0.9020190238952637, "mean_kpt_conf": 0.9021178348497911, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9296758454454275, "right_lift": -0.6463054209788464, "left_bend": 0.32286881651284266, "right_bend": 0.73493286847412}, "keypoints": {"0": [319.0212707519531, 155.56845092773438, 0.9990904331207275], "1": [340.9668273925781, 127.25396728515625, 0.9989363551139832], "2": [299.0419921875, 133.42453002929688, 0.9918009638786316], "3": [385.811767578125, 130.14227294921875, 0.9816208481788635], "4": [281.6946105957031, 141.0555419921875, 0.4875570833683014], "5": [464.6428527832031, 243.59925842285156, 0.988508403301239], "6": [239.19473266601562, 251.79052734375, 0.9960346817970276], "7": [528.3763427734375, 404.4432373046875, 0.8286628723144531], "8": [119.57725524902344, 353.10302734375, 0.9327747821807861], "9": [490.9761962890625, 454.98529052734375, 0.7879337072372437], "10": [124.83488464355469, 204.35260009765625, 0.9303760528564453], "11": [441.6221923828125, 471.8072204589844, 0.16096486151218414], "12": [294.2109069824219, 475.8684387207031, 0.22867605090141296], "13": [479.6421203613281, 434.551513671875, 0.001883476274088025], "14": [291.28826904296875, 450.3313903808594, 0.0032059724908322096], "15": [447.72332763671875, 478.53253173828125, 0.0001627064630156383], "16": [260.94854736328125, 480.0, 0.00026878583594225347]}} +{"t": 60.420829, "tracked": true, "track_id": 1, "bbox": [85.31785583496094, 40.74945068359375, 570.6468505859375, 480.0], "det_conf": 0.9023075699806213, "mean_kpt_conf": 0.9147722666913812, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.926278605554314, "right_lift": -0.6681032453833379, "left_bend": 0.2848750524868096, "right_bend": 0.7529217150359896}, "keypoints": {"0": [316.9830017089844, 155.01373291015625, 0.9992520213127136], "1": [339.45208740234375, 127.3243408203125, 0.9991024732589722], "2": [297.6578063964844, 132.86166381835938, 0.9929929971694946], "3": [384.9465637207031, 128.3882293701172, 0.9846336245536804], "4": [281.6001892089844, 137.61160278320312, 0.5368486046791077], "5": [460.8650207519531, 241.36419677734375, 0.9927335977554321], "6": [233.2949981689453, 245.71376037597656, 0.9970695972442627], "7": [527.3110961914062, 404.68994140625, 0.8759262561798096], "8": [107.95938110351562, 358.2532958984375, 0.9390563368797302], "9": [500.2427978515625, 453.24334716796875, 0.8114761710166931], "10": [117.05052185058594, 213.95742797851562, 0.9334032535552979], "11": [427.8031005859375, 480.0, 0.19268003106117249], "12": [277.0201110839844, 480.0, 0.25510597229003906], "13": [476.10174560546875, 436.9158935546875, 0.0013055818853899837], "14": [265.13787841796875, 449.06341552734375, 0.0020222601015120745], "15": [456.2501525878906, 464.0196533203125, 0.00011507791350595653], "16": [230.27175903320312, 469.0997619628906, 0.00017355804448015988]}} +{"t": 60.45684, "tracked": true, "track_id": 1, "bbox": [84.9432373046875, 40.74612808227539, 569.2841186523438, 480.0], "det_conf": 0.9050354361534119, "mean_kpt_conf": 0.9163683652877808, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9291699635828731, "right_lift": -0.6782526829361931, "left_bend": 0.30158547462255014, "right_bend": 0.7553655403138226}, "keypoints": {"0": [316.87060546875, 154.98043823242188, 0.9992614388465881], "1": [339.4446105957031, 127.27981567382812, 0.9991176724433899], "2": [297.3807678222656, 132.87600708007812, 0.992990255355835], "3": [384.9102783203125, 128.37120056152344, 0.9848582744598389], "4": [281.1374206542969, 137.84735107421875, 0.5336542725563049], "5": [461.3446044921875, 239.5171661376953, 0.9929406642913818], "6": [232.6103057861328, 245.4530029296875, 0.9971569776535034], "7": [526.6709594726562, 403.723388671875, 0.8823344707489014], "8": [107.40180969238281, 361.02142333984375, 0.9419735670089722], "9": [496.885498046875, 450.31341552734375, 0.8193858861923218], "10": [115.66206359863281, 215.93603515625, 0.936378538608551], "11": [430.1954650878906, 480.0, 0.19641512632369995], "12": [278.4297790527344, 480.0, 0.25918009877204895], "13": [478.697021484375, 434.6854553222656, 0.0013051441637799144], "14": [264.9969177246094, 447.392578125, 0.002012582030147314], "15": [457.34930419921875, 464.8944091796875, 0.00011333612928865477], "16": [228.58534240722656, 469.7855224609375, 0.00017080793622881174]}} +{"t": 60.521771, "tracked": true, "track_id": 1, "bbox": [86.91291809082031, 40.59968566894531, 567.9996948242188, 480.0], "det_conf": 0.9046656489372253, "mean_kpt_conf": 0.9153577197681774, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9275290893039694, "right_lift": -0.6819133419777237, "left_bend": 0.3085443522174852, "right_bend": 0.7531129686593022}, "keypoints": {"0": [317.2054138183594, 155.32681274414062, 0.9992620348930359], "1": [339.35626220703125, 127.33657836914062, 0.9991301894187927], "2": [297.3787536621094, 133.25022888183594, 0.9929285645484924], "3": [384.72845458984375, 127.12606811523438, 0.9850625991821289], "4": [280.99395751953125, 137.6970977783203, 0.5266276597976685], "5": [461.95745849609375, 237.45159912109375, 0.9928257465362549], "6": [233.07693481445312, 245.11297607421875, 0.9971355199813843], "7": [528.2280883789062, 401.91387939453125, 0.8815905451774597], "8": [108.3912353515625, 361.357177734375, 0.9413596391677856], "9": [495.4512634277344, 451.2640686035156, 0.8175920248031616], "10": [114.89108276367188, 216.37649536132812, 0.9354203939437866], "11": [430.32177734375, 480.0, 0.19865405559539795], "12": [278.4577331542969, 480.0, 0.2620224952697754], "13": [478.1400451660156, 436.1514892578125, 0.001299652736634016], "14": [264.27117919921875, 449.55126953125, 0.0020023630931973457], "15": [456.3765869140625, 465.77587890625, 0.00011202346649952233], "16": [227.551025390625, 470.9989929199219, 0.00016884502838365734]}} +{"t": 60.555782, "tracked": true, "track_id": 1, "bbox": [84.56110382080078, 40.69873809814453, 565.0054931640625, 480.0], "det_conf": 0.9028394222259521, "mean_kpt_conf": 0.9135847362605009, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9316413817423621, "right_lift": -0.6782618376606759, "left_bend": 0.34993111664164245, "right_bend": 0.7559839804793925}, "keypoints": {"0": [316.8358154296875, 155.2442169189453, 0.9992662072181702], "1": [338.98028564453125, 127.12289428710938, 0.9991266131401062], "2": [297.1206359863281, 132.83358764648438, 0.9929465651512146], "3": [384.6114196777344, 127.0577392578125, 0.9851049780845642], "4": [281.14013671875, 137.03416442871094, 0.5221807956695557], "5": [461.6959533691406, 240.70431518554688, 0.9924753308296204], "6": [233.6040802001953, 245.2362060546875, 0.9970946311950684], "7": [527.2147216796875, 408.68316650390625, 0.8695998787879944], "8": [106.83453369140625, 362.2484130859375, 0.9386540055274963], "9": [491.6435546875, 448.63580322265625, 0.8164964914321899], "10": [115.48976135253906, 215.227294921875, 0.9364866018295288], "11": [428.5282287597656, 480.0, 0.17240287363529205], "12": [277.689453125, 480.0, 0.23421268165111542], "13": [475.8601989746094, 434.8019714355469, 0.001251055859029293], "14": [266.4012145996094, 445.95166015625, 0.0019797913264483213], "15": [454.871826171875, 462.93890380859375, 0.00011215781705686823], "16": [230.82464599609375, 467.64886474609375, 0.00017275051504839212]}} +{"t": 60.590703, "tracked": true, "track_id": 1, "bbox": [90.73628997802734, 40.29112243652344, 573.1384887695312, 479.9580993652344], "det_conf": 0.9038534760475159, "mean_kpt_conf": 0.9002093185078014, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9301382744803741, "right_lift": -0.6563859441485732, "left_bend": 0.3100386562234064, "right_bend": 0.7384257163108122}, "keypoints": {"0": [317.8060302734375, 156.72021484375, 0.9991021156311035], "1": [339.90057373046875, 127.51828002929688, 0.9989765882492065], "2": [297.29547119140625, 133.6033172607422, 0.9914342164993286], "3": [386.00482177734375, 127.86569213867188, 0.9814210534095764], "4": [279.7508239746094, 138.8783416748047, 0.46361422538757324], "5": [465.2030944824219, 240.78799438476562, 0.9880288243293762], "6": [238.82708740234375, 251.1759033203125, 0.995790421962738], "7": [528.458740234375, 401.01397705078125, 0.8282703161239624], "8": [120.13087463378906, 354.447265625, 0.9295466542243958], "9": [491.59051513671875, 455.1351318359375, 0.7948367595672607], "10": [125.06193542480469, 205.15798950195312, 0.931281328201294], "11": [443.79669189453125, 471.7549743652344, 0.15612079203128815], "12": [295.7696838378906, 476.85333251953125, 0.2195746749639511], "13": [481.38043212890625, 434.60955810546875, 0.0018590391846373677], "14": [293.7729797363281, 452.203369140625, 0.0031227595172822475], "15": [448.0919189453125, 478.44061279296875, 0.00015885038010310382], "16": [263.9659118652344, 480.0, 0.0002606018097139895]}} +{"t": 60.659235, "tracked": true, "track_id": 1, "bbox": [93.89808654785156, 40.43631362915039, 579.0992431640625, 479.9211120605469], "det_conf": 0.9030351638793945, "mean_kpt_conf": 0.8994369940324263, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9340114962566167, "right_lift": -0.6485520648240655, "left_bend": 0.32852988410766987, "right_bend": 0.7353538160006833}, "keypoints": {"0": [318.4433288574219, 156.6022491455078, 0.9990837574005127], "1": [339.69097900390625, 127.34544372558594, 0.9989545345306396], "2": [297.931640625, 134.10906982421875, 0.9912734627723694], "3": [385.4567565917969, 127.0247802734375, 0.9819995164871216], "4": [280.870361328125, 139.66555786132812, 0.4627225399017334], "5": [466.8672180175781, 241.513916015625, 0.988365888595581], "6": [239.1342010498047, 251.0411834716797, 0.9959955215454102], "7": [528.8433837890625, 403.5505676269531, 0.8252475261688232], "8": [119.9241943359375, 352.61358642578125, 0.930557906627655], "9": [488.9879150390625, 454.1898193359375, 0.7896013855934143], "10": [124.916748046875, 204.54544067382812, 0.930004894733429], "11": [443.8673095703125, 473.4652099609375, 0.1640574038028717], "12": [295.22021484375, 478.14276123046875, 0.23247593641281128], "13": [480.98114013671875, 438.48675537109375, 0.001867557060904801], "14": [293.8019104003906, 455.6425476074219, 0.0031819255091249943], "15": [447.2410583496094, 477.5571594238281, 0.00015681420336477458], "16": [265.9554443359375, 480.0, 0.0002602013119030744]}} +{"t": 60.721607, "tracked": true, "track_id": 1, "bbox": [86.24122619628906, 40.53678894042969, 570.715087890625, 480.0], "det_conf": 0.9048559069633484, "mean_kpt_conf": 0.9144928021864458, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9283361862778324, "right_lift": -0.6787286899338764, "left_bend": 0.32839643039837785, "right_bend": 0.7534875583115069}, "keypoints": {"0": [317.1898498535156, 155.29898071289062, 0.999258816242218], "1": [339.50750732421875, 127.46586608886719, 0.9991254210472107], "2": [297.4987487792969, 133.22610473632812, 0.9929795861244202], "3": [384.8294677734375, 127.93194580078125, 0.985173225402832], "4": [281.2926330566406, 137.98753356933594, 0.5269159078598022], "5": [461.8995056152344, 238.70773315429688, 0.9927318692207336], "6": [233.18502807617188, 244.7532958984375, 0.9970978498458862], "7": [528.267578125, 404.4461364746094, 0.8773297667503357], "8": [107.57412719726562, 360.8439636230469, 0.9403320550918579], "9": [493.74798583984375, 449.77880859375, 0.813818633556366], "10": [114.90382385253906, 215.3183135986328, 0.9346576929092407], "11": [429.958740234375, 480.0, 0.18650229275226593], "12": [278.4233093261719, 480.0, 0.24831520020961761], "13": [479.11761474609375, 433.58221435546875, 0.001269733184017241], "14": [266.5400390625, 445.6895751953125, 0.0019813859835267067], "15": [457.08953857421875, 464.4376220703125, 0.00011389300198061392], "16": [229.72207641601562, 468.81280517578125, 0.0001735481055220589]}} +{"t": 60.786121, "tracked": true, "track_id": 1, "bbox": [93.12348937988281, 40.194583892822266, 576.7390747070312, 479.9107360839844], "det_conf": 0.9039588570594788, "mean_kpt_conf": 0.9019613293084231, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9339837140580416, "right_lift": -0.6499805943907985, "left_bend": 0.296767117431061, "right_bend": 0.7318540055938089}, "keypoints": {"0": [318.472412109375, 156.53652954101562, 0.9990776777267456], "1": [339.84991455078125, 127.5799560546875, 0.9989203214645386], "2": [298.3559875488281, 134.14300537109375, 0.9912720322608948], "3": [385.1933288574219, 128.0616912841797, 0.980836808681488], "4": [281.6297302246094, 140.11509704589844, 0.47189798951148987], "5": [464.436279296875, 241.28623962402344, 0.9884795546531677], "6": [239.4912872314453, 251.70526123046875, 0.9958789348602295], "7": [525.5794067382812, 401.107666015625, 0.8352152705192566], "8": [120.6317138671875, 353.3650207519531, 0.9310104250907898], "9": [491.00537109375, 455.414306640625, 0.7978115677833557], "10": [123.72209167480469, 205.03842163085938, 0.9311740398406982], "11": [440.9061279296875, 472.52069091796875, 0.16140376031398773], "12": [293.9501953125, 477.7413024902344, 0.2241268754005432], "13": [479.6835632324219, 432.7397155761719, 0.0019256767118349671], "14": [293.0748291015625, 451.2214050292969, 0.003196879057213664], "15": [445.87713623046875, 476.1061096191406, 0.00016610893362667412], "16": [264.1219482421875, 480.0, 0.0002691913105081767]}} +{"t": 60.849996, "tracked": true, "track_id": 1, "bbox": [93.69287109375, 40.2233772277832, 573.6759033203125, 479.89178466796875], "det_conf": 0.9048119187355042, "mean_kpt_conf": 0.9033528728918596, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9314546770242208, "right_lift": -0.6558898975632307, "left_bend": 0.31356181354901985, "right_bend": 0.7322462372825836}, "keypoints": {"0": [318.6562805175781, 156.0680694580078, 0.9990839958190918], "1": [340.1831970214844, 127.06369018554688, 0.9989261031150818], "2": [298.2275695800781, 133.83389282226562, 0.9916531443595886], "3": [385.4292297363281, 127.65943908691406, 0.9813854694366455], "4": [280.8393859863281, 140.33432006835938, 0.4846267104148865], "5": [465.64849853515625, 240.05435180664062, 0.9886533617973328], "6": [238.17172241210938, 251.84628295898438, 0.9961646795272827], "7": [527.9828491210938, 399.6268310546875, 0.8346169590950012], "8": [121.19413757324219, 353.4873352050781, 0.935416042804718], "9": [488.24530029296875, 456.1595764160156, 0.7938883900642395], "10": [123.30972290039062, 205.16183471679688, 0.9324667453765869], "11": [440.5571594238281, 473.3304443359375, 0.17099864780902863], "12": [291.5950012207031, 478.5933532714844, 0.24195034801959991], "13": [477.8529052734375, 435.03302001953125, 0.0019035637378692627], "14": [286.7433776855469, 453.4416809082031, 0.003236929187551141], "15": [441.447998046875, 477.3860778808594, 0.00016219374083448201], "16": [255.4219970703125, 480.0, 0.00026678419089876115]}} +{"t": 60.886933, "tracked": true, "track_id": 1, "bbox": [93.655029296875, 40.18268966674805, 575.4788208007812, 479.8984375], "det_conf": 0.9033012986183167, "mean_kpt_conf": 0.9037961363792419, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.927672910111422, "right_lift": -0.6529675350054378, "left_bend": 0.2717816042694843, "right_bend": 0.7357865194499448}, "keypoints": {"0": [319.10382080078125, 155.9249267578125, 0.9990960359573364], "1": [340.4984130859375, 126.98062133789062, 0.9989350438117981], "2": [298.71051025390625, 133.88381958007812, 0.9918015599250793], "3": [385.49725341796875, 127.79209899902344, 0.980478823184967], "4": [281.5262145996094, 140.6400909423828, 0.4950776696205139], "5": [465.0870361328125, 238.89654541015625, 0.9886151552200317], "6": [238.55172729492188, 251.25218200683594, 0.9959740042686462], "7": [528.9039916992188, 397.4456481933594, 0.8376937508583069], "8": [119.53327941894531, 353.8619384765625, 0.9333661794662476], "9": [497.49420166015625, 459.1025085449219, 0.7902839183807373], "10": [123.81430053710938, 207.54006958007812, 0.9304353594779968], "11": [441.29058837890625, 471.34979248046875, 0.16249054670333862], "12": [293.1400451660156, 477.3512268066406, 0.226748526096344], "13": [481.21978759765625, 429.92340087890625, 0.0018633956788107753], "14": [290.39324951171875, 449.8282775878906, 0.0031285895965993404], "15": [446.1529235839844, 477.12359619140625, 0.0001641658745938912], "16": [258.7437744140625, 480.0, 0.00026664280449040234]}} +{"t": 60.951189, "tracked": true, "track_id": 1, "bbox": [93.60211181640625, 40.230628967285156, 577.3319091796875, 479.885498046875], "det_conf": 0.9039459824562073, "mean_kpt_conf": 0.901011274619536, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9289855121783468, "right_lift": -0.6498586465880775, "left_bend": 0.2840620374145624, "right_bend": 0.7359536597666081}, "keypoints": {"0": [318.68701171875, 155.7899169921875, 0.9990711212158203], "1": [340.28125, 126.95262145996094, 0.9989173412322998], "2": [298.27838134765625, 133.71112060546875, 0.9917284846305847], "3": [385.1445617675781, 128.47360229492188, 0.9805495142936707], "4": [280.8542785644531, 140.86856079101562, 0.49326619505882263], "5": [464.0927429199219, 241.006591796875, 0.9882134795188904], "6": [238.17161560058594, 251.3336181640625, 0.9957548379898071], "7": [527.9100341796875, 401.1869812011719, 0.8278586268424988], "8": [119.27667236328125, 352.9906005859375, 0.9282082915306091], "9": [495.10125732421875, 459.39324951171875, 0.7813249826431274], "10": [124.2730712890625, 205.5380859375, 0.9262311458587646], "11": [439.97161865234375, 471.08978271484375, 0.15467920899391174], "12": [292.5550231933594, 476.2930908203125, 0.2159920185804367], "13": [479.8353271484375, 430.6092224121094, 0.0018819905817508698], "14": [291.8377990722656, 449.05462646484375, 0.003151701297610998], "15": [445.8575439453125, 476.8363037109375, 0.00017027667490765452], "16": [262.00799560546875, 480.0, 0.0002766382822301239]}} +{"t": 60.984623, "tracked": true, "track_id": 1, "bbox": [93.63577270507812, 40.369014739990234, 577.4232177734375, 479.88092041015625], "det_conf": 0.9032827615737915, "mean_kpt_conf": 0.90125157345425, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9319977476708693, "right_lift": -0.6530932887261738, "left_bend": 0.2987359703186665, "right_bend": 0.7369596682028837}, "keypoints": {"0": [318.1175537109375, 155.61758422851562, 0.9990841150283813], "1": [340.0797424316406, 126.92398071289062, 0.9989307522773743], "2": [298.00274658203125, 133.26547241210938, 0.9916524291038513], "3": [385.5419921875, 128.7173309326172, 0.981186032295227], "4": [280.9228820800781, 140.02406311035156, 0.4837627112865448], "5": [464.7029113769531, 242.1065216064453, 0.9884916543960571], "6": [237.83203125, 251.21253967285156, 0.9959225654602051], "7": [527.35107421875, 403.19268798828125, 0.8293595910072327], "8": [119.3846435546875, 353.3642578125, 0.9304524064064026], "9": [493.17950439453125, 456.7882080078125, 0.7864742279052734], "10": [124.25885009765625, 204.67181396484375, 0.9284508228302002], "11": [440.47528076171875, 472.6131286621094, 0.15971434116363525], "12": [292.2934875488281, 477.290283203125, 0.2240196317434311], "13": [480.6521301269531, 433.5494384765625, 0.0018773735500872135], "14": [292.1903991699219, 450.99005126953125, 0.0031713000498712063], "15": [446.70928955078125, 477.9251708984375, 0.00016445948858745396], "16": [263.1044616699219, 480.0, 0.0002696240844670683]}} +{"t": 61.020272, "tracked": true, "track_id": 1, "bbox": [93.50391387939453, 40.15119934082031, 575.0941772460938, 479.867431640625], "det_conf": 0.904621958732605, "mean_kpt_conf": 0.9022830074483698, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.933558839949869, "right_lift": -0.6550387741101031, "left_bend": 0.2844331691924029, "right_bend": 0.734997558561815}, "keypoints": {"0": [318.75592041015625, 155.70941162109375, 0.9990888833999634], "1": [340.23907470703125, 126.76535034179688, 0.998906135559082], "2": [298.3965759277344, 133.4912109375, 0.9919300079345703], "3": [385.1771240234375, 127.93043518066406, 0.980413019657135], "4": [281.1919860839844, 140.26956176757812, 0.5007523894309998], "5": [464.6878356933594, 242.06031799316406, 0.9882949590682983], "6": [237.8378143310547, 251.2911834716797, 0.9960743188858032], "7": [526.8313598632812, 403.92059326171875, 0.8246886730194092], "8": [119.96678161621094, 353.47564697265625, 0.9328597784042358], "9": [495.0306091308594, 458.57177734375, 0.7819904685020447], "10": [123.50758361816406, 206.171142578125, 0.9301144480705261], "11": [439.027099609375, 473.013916015625, 0.15461407601833344], "12": [291.01513671875, 477.72357177734375, 0.22233983874320984], "13": [478.932861328125, 432.0444030761719, 0.0018487427150830626], "14": [290.15313720703125, 450.05462646484375, 0.003206557361409068], "15": [443.9747314453125, 476.22149658203125, 0.00016527932893950492], "16": [261.56494140625, 480.0, 0.0002748807310126722]}} +{"t": 61.082867, "tracked": true, "track_id": 1, "bbox": [93.20336151123047, 40.35763931274414, 577.8545532226562, 479.8919677734375], "det_conf": 0.9017797112464905, "mean_kpt_conf": 0.9027882326732982, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9296783388714055, "right_lift": -0.648694889511298, "left_bend": 0.2989964955113702, "right_bend": 0.7338955961677653}, "keypoints": {"0": [318.47467041015625, 155.49490356445312, 0.9991069436073303], "1": [339.88299560546875, 126.66824340820312, 0.9989252686500549], "2": [298.0646057128906, 133.28616333007812, 0.992172122001648], "3": [384.334228515625, 128.30477905273438, 0.9807021021842957], "4": [280.43597412109375, 140.42605590820312, 0.5066370964050293], "5": [463.8106384277344, 242.94866943359375, 0.988319993019104], "6": [237.4979248046875, 251.668701171875, 0.9962073564529419], "7": [527.7064819335938, 404.20556640625, 0.8221705555915833], "8": [118.81930541992188, 352.8267822265625, 0.9348521828651428], "9": [494.773193359375, 456.49444580078125, 0.7800337672233582], "10": [123.10844421386719, 204.64169311523438, 0.9315431714057922], "11": [439.651123046875, 472.3664855957031, 0.15690676867961884], "12": [291.88116455078125, 476.8841857910156, 0.2288455367088318], "13": [479.35760498046875, 434.07501220703125, 0.0018260577926412225], "14": [290.3108825683594, 451.2135009765625, 0.0032177246175706387], "15": [446.00677490234375, 476.5257568359375, 0.00016034342115744948], "16": [260.87664794921875, 480.0, 0.0002702149504330009]}} +{"t": 61.149565, "tracked": true, "track_id": 1, "bbox": [93.08269500732422, 40.171234130859375, 576.8656005859375, 479.8877258300781], "det_conf": 0.9034860730171204, "mean_kpt_conf": 0.901551755991849, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.928187407705275, "right_lift": -0.6538735484091728, "left_bend": 0.2622480938866744, "right_bend": 0.7342510041674957}, "keypoints": {"0": [318.54034423828125, 155.90174865722656, 0.9990811347961426], "1": [340.693603515625, 127.14877319335938, 0.9989098310470581], "2": [298.20733642578125, 133.2795867919922, 0.991915762424469], "3": [385.789794921875, 128.9923095703125, 0.9798222184181213], "4": [280.4407958984375, 139.86972045898438, 0.5012305974960327], "5": [463.05755615234375, 241.7912139892578, 0.9880600571632385], "6": [237.67372131347656, 251.29913330078125, 0.9958063364028931], "7": [526.7324829101562, 400.6199951171875, 0.8259077668190002], "8": [119.87178039550781, 353.10614013671875, 0.9295151233673096], "9": [499.86224365234375, 457.3141174316406, 0.7797600626945496], "10": [123.30445861816406, 205.3533477783203, 0.9270604252815247], "11": [438.9921875, 469.8482360839844, 0.15473710000514984], "12": [291.62103271484375, 474.88671875, 0.21787501871585846], "13": [480.220703125, 430.16015625, 0.0018832315690815449], "14": [290.8238525390625, 448.50323486328125, 0.003187306458130479], "15": [446.8803405761719, 475.32403564453125, 0.00016981264343485236], "16": [260.8283996582031, 480.0, 0.00027719113859348]}} +{"t": 61.213147, "tracked": true, "track_id": 1, "bbox": [92.94381713867188, 39.88157272338867, 575.6168212890625, 479.9097900390625], "det_conf": 0.9029861688613892, "mean_kpt_conf": 0.9039835225452076, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9264313722761123, "right_lift": -0.653317469850475, "left_bend": 0.24852441476778372, "right_bend": 0.7394784617486729}, "keypoints": {"0": [318.66888427734375, 155.81732177734375, 0.9990875720977783], "1": [340.2505187988281, 126.86663818359375, 0.9989153146743774], "2": [298.1589660644531, 133.7138671875, 0.9919201135635376], "3": [385.08990478515625, 127.99551391601562, 0.9795728325843811], "4": [280.6690673828125, 140.58653259277344, 0.5081767439842224], "5": [463.923095703125, 238.966064453125, 0.9884796738624573], "6": [236.63186645507812, 251.03384399414062, 0.9958916902542114], "7": [528.4879150390625, 397.85223388671875, 0.8352944850921631], "8": [117.21572875976562, 354.08270263671875, 0.931483805179596], "9": [502.73822021484375, 459.65234375, 0.7860856056213379], "10": [123.21377563476562, 205.644287109375, 0.9289109110832214], "11": [440.1702575683594, 469.7943115234375, 0.1546870768070221], "12": [291.91021728515625, 476.149169921875, 0.21555954217910767], "13": [481.8995361328125, 426.38836669921875, 0.0018602922791615129], "14": [291.8128662109375, 447.1445617675781, 0.0031218761578202248], "15": [446.76007080078125, 475.4754943847656, 0.0001682896981947124], "16": [261.6004638671875, 480.0, 0.00027263505035080016]}} +{"t": 61.247168, "tracked": true, "track_id": 1, "bbox": [92.7381362915039, 39.939720153808594, 577.094970703125, 479.8987731933594], "det_conf": 0.9008950591087341, "mean_kpt_conf": 0.9047737284140154, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9304362322546682, "right_lift": -0.6498755532131117, "left_bend": 0.2620369776885319, "right_bend": 0.7394143052988411}, "keypoints": {"0": [318.9933166503906, 155.69090270996094, 0.9990905523300171], "1": [340.4667663574219, 126.87118530273438, 0.9988970756530762], "2": [298.47076416015625, 133.57650756835938, 0.9920807480812073], "3": [384.6781311035156, 128.7247314453125, 0.9792613387107849], "4": [280.6564025878906, 140.96844482421875, 0.5158630609512329], "5": [462.68377685546875, 241.69223022460938, 0.9882674813270569], "6": [237.03646850585938, 251.33108520507812, 0.9959689378738403], "7": [525.783935546875, 401.9052429199219, 0.8304259777069092], "8": [117.34408569335938, 353.67449951171875, 0.9330686330795288], "9": [499.38262939453125, 456.8377380371094, 0.7878268957138062], "10": [123.974853515625, 205.50546264648438, 0.931760311126709], "11": [439.3360900878906, 469.37078857421875, 0.15173831582069397], "12": [292.17877197265625, 474.8242492675781, 0.21584324538707733], "13": [480.703369140625, 427.765625, 0.0018749723676592112], "14": [292.2565002441406, 446.7893981933594, 0.0032040562946349382], "15": [447.57794189453125, 475.3228759765625, 0.00016752217197790742], "16": [263.16461181640625, 480.0, 0.0002752402506303042]}} +{"t": 61.315708, "tracked": true, "track_id": 1, "bbox": [92.7026596069336, 39.947139739990234, 573.77294921875, 479.8850402832031], "det_conf": 0.9034366607666016, "mean_kpt_conf": 0.9026810418475758, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9303646217575866, "right_lift": -0.6523892293362106, "left_bend": 0.269519700832425, "right_bend": 0.7404268538904741}, "keypoints": {"0": [319.3125, 155.224365234375, 0.9990721940994263], "1": [341.1559143066406, 126.43708801269531, 0.9988806843757629], "2": [298.7560729980469, 132.8599090576172, 0.9922258853912354], "3": [385.26507568359375, 128.79415893554688, 0.9790781140327454], "4": [280.3948059082031, 140.41949462890625, 0.5232575535774231], "5": [462.392822265625, 242.49290466308594, 0.9876893758773804], "6": [236.22084045410156, 251.6538543701172, 0.9958336353302002], "7": [525.7139892578125, 403.17498779296875, 0.819485068321228], "8": [117.25032043457031, 354.0640869140625, 0.9295011162757874], "9": [496.5528564453125, 460.3939208984375, 0.7762744426727295], "10": [123.89393615722656, 205.17132568359375, 0.9281933903694153], "11": [436.2059020996094, 470.06298828125, 0.14186832308769226], "12": [288.538818359375, 474.903076171875, 0.20417006313800812], "13": [475.8284912109375, 427.03363037109375, 0.0018469326896592975], "14": [285.93218994140625, 445.2959289550781, 0.003160497173666954], "15": [441.4825439453125, 475.01226806640625, 0.00017354480223730206], "16": [255.50381469726562, 480.0, 0.0002842571120709181]}} +{"t": 61.380901, "tracked": true, "track_id": 1, "bbox": [85.8648452758789, 40.14956283569336, 572.6942138671875, 479.9730224609375], "det_conf": 0.9032654166221619, "mean_kpt_conf": 0.917733755978671, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9281792725317335, "right_lift": -0.6763225518903144, "left_bend": 0.29161143784874033, "right_bend": 0.7535728677052194}, "keypoints": {"0": [319.4687194824219, 154.1875, 0.9992517828941345], "1": [341.7364807128906, 126.10107421875, 0.9990794658660889], "2": [299.0606994628906, 132.1197509765625, 0.9934943318367004], "3": [385.44866943359375, 127.4415283203125, 0.9836003184318542], "4": [281.11871337890625, 138.1249237060547, 0.5733251571655273], "5": [459.37493896484375, 240.73617553710938, 0.9925495386123657], "6": [232.34219360351562, 245.64407348632812, 0.9971267580986023], "7": [526.2610473632812, 407.56427001953125, 0.8726999759674072], "8": [106.72837829589844, 360.977783203125, 0.9392920732498169], "9": [499.1756591796875, 453.28515625, 0.8095232844352722], "10": [114.64492797851562, 214.1469268798828, 0.9351286292076111], "11": [426.8347473144531, 480.0, 0.17661508917808533], "12": [277.19000244140625, 480.0, 0.2378082275390625], "13": [477.10028076171875, 432.08941650390625, 0.0012854578671976924], "14": [268.94476318359375, 444.7904357910156, 0.0020173187367618084], "15": [457.42095947265625, 462.358642578125, 0.0001179068349301815], "16": [236.24053955078125, 469.0680847167969, 0.00017924830899573863]}} +{"t": 61.446339, "tracked": true, "track_id": 1, "bbox": [91.9337158203125, 40.073974609375, 580.4854125976562, 479.89483642578125], "det_conf": 0.9026111364364624, "mean_kpt_conf": 0.9022140611301769, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9278284004365768, "right_lift": -0.6550052600045343, "left_bend": 0.3443928902276146, "right_bend": 0.7433790826382477}, "keypoints": {"0": [322.10595703125, 155.2995147705078, 0.9990803003311157], "1": [343.6241149902344, 126.38973999023438, 0.9988535642623901], "2": [300.7393798828125, 133.016845703125, 0.9930035471916199], "3": [386.11224365234375, 129.1341552734375, 0.9787673950195312], "4": [280.6933898925781, 141.575927734375, 0.5561662912368774], "5": [464.9471435546875, 244.30294799804688, 0.9870800375938416], "6": [235.6360626220703, 252.06277465820312, 0.9961280226707458], "7": [530.8308715820312, 408.18389892578125, 0.7941175103187561], "8": [116.98101806640625, 354.9176940917969, 0.9303026795387268], "9": [491.5332336425781, 454.8686828613281, 0.7609230875968933], "10": [124.48408508300781, 206.19808959960938, 0.9299322366714478], "11": [440.5084228515625, 470.7758483886719, 0.1296980232000351], "12": [292.10382080078125, 475.258056640625, 0.19851432740688324], "13": [481.77691650390625, 428.40228271484375, 0.0017534171929582953], "14": [297.4364318847656, 444.15985107421875, 0.0032345287036150694], "15": [445.23773193359375, 476.5077819824219, 0.00016798381693661213], "16": [271.83221435546875, 480.0, 0.00029201581492088735]}} +{"t": 61.509295, "tracked": true, "track_id": 1, "bbox": [83.27444458007812, 40.63423156738281, 566.6031494140625, 480.0], "det_conf": 0.9028782248497009, "mean_kpt_conf": 0.921269340948625, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9251419218202456, "right_lift": -0.6772392905193192, "left_bend": 0.27798753147396005, "right_bend": 0.7543719820566589}, "keypoints": {"0": [322.8338928222656, 154.491943359375, 0.9992393255233765], "1": [344.8418884277344, 126.89662170410156, 0.9990423321723938], "2": [302.1593017578125, 132.8424072265625, 0.993988037109375], "3": [386.2971496582031, 129.4083709716797, 0.9823363423347473], "4": [282.7137451171875, 140.25457763671875, 0.6160547733306885], "5": [458.44720458984375, 239.76559448242188, 0.9925127029418945], "6": [231.9333038330078, 246.92039489746094, 0.997244119644165], "7": [525.7056274414062, 403.6751708984375, 0.874272882938385], "8": [105.9212646484375, 362.9092712402344, 0.942572295665741], "9": [499.0784606933594, 454.33331298828125, 0.8012677431106567], "10": [113.99659729003906, 216.5775604248047, 0.9354321956634521], "11": [426.61273193359375, 480.0, 0.17944370210170746], "12": [277.0135803222656, 480.0, 0.24394440650939941], "13": [477.164306640625, 427.619384765625, 0.0013011947739869356], "14": [264.911376953125, 441.5063171386719, 0.0020513907074928284], "15": [454.30877685546875, 462.3869934082031, 0.00012498936848714948], "16": [227.26943969726562, 468.3236083984375, 0.00018918579735327512]}} +{"t": 61.58021, "tracked": true, "track_id": 1, "bbox": [91.74063873291016, 39.92967224121094, 574.2404174804688, 479.89471435546875], "det_conf": 0.9042247533798218, "mean_kpt_conf": 0.9066314968195829, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9254732966489431, "right_lift": -0.6590367371965103, "left_bend": 0.28053942134078713, "right_bend": 0.7476908768658327}, "keypoints": {"0": [326.73211669921875, 153.39862060546875, 0.9990959167480469], "1": [347.8274230957031, 124.8570556640625, 0.9987658262252808], "2": [304.6236267089844, 131.27737426757812, 0.9941568374633789], "3": [386.83062744140625, 129.05233764648438, 0.9731295108795166], "4": [281.7275390625, 141.46096801757812, 0.6392892599105835], "5": [461.04345703125, 242.77879333496094, 0.9862443804740906], "6": [235.3095703125, 251.45632934570312, 0.9962496161460876], "7": [527.54296875, 405.24298095703125, 0.7861287593841553], "8": [116.43838500976562, 355.6171569824219, 0.9341040253639221], "9": [497.6565246582031, 460.8948059082031, 0.7358682751655579], "10": [125.08929443359375, 208.17623901367188, 0.9299140572547913], "11": [438.304443359375, 468.3376159667969, 0.1227436438202858], "12": [291.9519348144531, 473.67120361328125, 0.19473648071289062], "13": [479.3970642089844, 423.0066833496094, 0.001722677843645215], "14": [292.6574401855469, 440.31097412109375, 0.0032432894222438335], "15": [443.610107421875, 475.87921142578125, 0.00017759570619091392], "16": [263.8341979980469, 480.0, 0.00030733403400518]}} +{"t": 61.644339, "tracked": true, "track_id": 1, "bbox": [93.05238342285156, 40.1742057800293, 575.036865234375, 479.88848876953125], "det_conf": 0.9041299223899841, "mean_kpt_conf": 0.9083272435448386, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9287678789645792, "right_lift": -0.6590891123050666, "left_bend": 0.30263288936084654, "right_bend": 0.7457024170459258}, "keypoints": {"0": [328.82171630859375, 152.7646942138672, 0.9990886449813843], "1": [349.2801513671875, 123.65341186523438, 0.9987083673477173], "2": [306.135009765625, 130.81704711914062, 0.9942572116851807], "3": [387.6551208496094, 126.88925170898438, 0.9712066650390625], "4": [282.6454162597656, 141.21188354492188, 0.651806652545929], "5": [462.3921813964844, 242.1984100341797, 0.9862516522407532], "6": [235.91964721679688, 251.6126708984375, 0.9963489770889282], "7": [527.7030639648438, 405.84796142578125, 0.7839866280555725], "8": [117.59732055664062, 355.30712890625, 0.9349701404571533], "9": [494.8463134765625, 456.9932861328125, 0.7423574328422546], "10": [125.37016296386719, 206.7938232421875, 0.9326173067092896], "11": [438.8275146484375, 469.46759033203125, 0.12292614579200745], "12": [292.5132751464844, 475.29095458984375, 0.19624190032482147], "13": [480.1911315917969, 423.5798034667969, 0.00173654081299901], "14": [296.30126953125, 441.63262939453125, 0.0032969273161143064], "15": [442.75262451171875, 473.677734375, 0.0001764588669175282], "16": [269.85845947265625, 480.0, 0.0003067176148761064]}} +{"t": 61.70755, "tracked": true, "track_id": 1, "bbox": [90.7804946899414, 40.36952209472656, 576.6498413085938, 479.901123046875], "det_conf": 0.9030003547668457, "mean_kpt_conf": 0.907384222204035, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9297925355996639, "right_lift": -0.6593137918025895, "left_bend": 0.34602338931951876, "right_bend": 0.7462754472217988}, "keypoints": {"0": [329.8381042480469, 152.54949951171875, 0.9991030693054199], "1": [349.76336669921875, 123.38006591796875, 0.9986854195594788], "2": [306.9374694824219, 130.69659423828125, 0.9945483803749084], "3": [387.2316589355469, 126.65850830078125, 0.9705567359924316], "4": [282.7030334472656, 141.47805786132812, 0.6659299731254578], "5": [464.36810302734375, 244.50210571289062, 0.9864766597747803], "6": [235.016845703125, 252.37100219726562, 0.9965500831604004], "7": [530.152099609375, 410.6746826171875, 0.7711213827133179], "8": [117.368408203125, 355.53704833984375, 0.9351192712783813], "9": [491.4432678222656, 455.698974609375, 0.7310914993286133], "10": [125.38148498535156, 206.71502685546875, 0.9320439696311951], "11": [441.030029296875, 471.35504150390625, 0.12208643555641174], "12": [293.0517578125, 476.45501708984375, 0.1996450275182724], "13": [482.19573974609375, 427.7814636230469, 0.0016817267751321197], "14": [297.4029235839844, 444.18280029296875, 0.003280855482444167], "15": [443.32916259765625, 474.6998291015625, 0.00016806134954094887], "16": [272.4620056152344, 480.0, 0.00029794598231092095]}} +{"t": 61.744044, "tracked": true, "track_id": 1, "bbox": [86.99300384521484, 40.47928237915039, 570.2810668945312, 479.961669921875], "det_conf": 0.9083481431007385, "mean_kpt_conf": 0.92239079692147, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9244506056605333, "right_lift": -0.6896265060190475, "left_bend": 0.28724286365593726, "right_bend": 0.7623859164601571}, "keypoints": {"0": [327.91827392578125, 152.94769287109375, 0.9992153644561768], "1": [349.2554626464844, 124.27163696289062, 0.998954176902771], "2": [305.8066101074219, 130.0865478515625, 0.9944782257080078], "3": [388.03778076171875, 125.2855224609375, 0.97889244556427], "4": [282.97772216796875, 136.6773681640625, 0.6681094765663147], "5": [458.46405029296875, 240.6239776611328, 0.9918377995491028], "6": [230.00035095214844, 248.0618438720703, 0.997163712978363], "7": [526.5485229492188, 405.6919860839844, 0.8550331592559814], "8": [106.01632690429688, 366.13250732421875, 0.9346665740013123], "9": [499.7900695800781, 453.3957214355469, 0.7937160730361938], "10": [115.40162658691406, 218.149169921875, 0.9342317581176758], "11": [425.1389465332031, 480.0, 0.15101183950901031], "12": [275.5802917480469, 480.0, 0.20970697700977325], "13": [476.181640625, 426.0108642578125, 0.0012805606238543987], "14": [270.1787109375, 440.7693176269531, 0.0020285192877054214], "15": [449.6954345703125, 459.46630859375, 0.00012951802636962384], "16": [238.55337524414062, 467.03643798828125, 0.0001951650920091197]}} +{"t": 61.805211, "tracked": true, "track_id": 1, "bbox": [84.63697052001953, 40.44488525390625, 561.2778930664062, 479.98846435546875], "det_conf": 0.9063785672187805, "mean_kpt_conf": 0.9229526736519553, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9277012306232809, "right_lift": -0.6858747337910993, "left_bend": 0.24352980607854285, "right_bend": 0.7582829980434845}, "keypoints": {"0": [328.72357177734375, 152.6009521484375, 0.9991931319236755], "1": [350.100341796875, 123.949951171875, 0.9989123344421387], "2": [306.5404968261719, 129.81373596191406, 0.9944842457771301], "3": [388.8693542480469, 124.68431091308594, 0.9781313538551331], "4": [283.6513977050781, 136.16539001464844, 0.6796678900718689], "5": [457.9365234375, 239.65145874023438, 0.9917295575141907], "6": [230.62660217285156, 246.5737762451172, 0.9972066283226013], "7": [523.933349609375, 403.6522216796875, 0.8557225465774536], "8": [108.35676574707031, 361.81292724609375, 0.937541127204895], "9": [502.09271240234375, 457.94244384765625, 0.7861087322235107], "10": [116.47576904296875, 215.97743225097656, 0.9337818622589111], "11": [422.6979064941406, 480.0, 0.1637188345193863], "12": [273.6607971191406, 480.0, 0.22862809896469116], "13": [474.0631103515625, 428.3499450683594, 0.0013214659411460161], "14": [267.51593017578125, 443.96624755859375, 0.0021229973062872887], "15": [446.486328125, 460.2559509277344, 0.00013287938782013953], "16": [235.54348754882812, 469.3634033203125, 0.00020099114044569433]}} +{"t": 61.838562, "tracked": true, "track_id": 1, "bbox": [83.855224609375, 40.666011810302734, 563.3218994140625, 479.99615478515625], "det_conf": 0.9054590463638306, "mean_kpt_conf": 0.9218782023950056, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9299094772056343, "right_lift": -0.6859700975920784, "left_bend": 0.3281972380220763, "right_bend": 0.7568132098216268}, "keypoints": {"0": [328.94744873046875, 152.68585205078125, 0.9992431402206421], "1": [350.184814453125, 124.07414245605469, 0.9989996552467346], "2": [306.63238525390625, 130.37313842773438, 0.9946427345275879], "3": [389.25469970703125, 125.36396789550781, 0.9801391363143921], "4": [283.93292236328125, 137.8211212158203, 0.6592424511909485], "5": [460.23333740234375, 241.2317657470703, 0.9919969439506531], "6": [231.94471740722656, 247.0272674560547, 0.9973039627075195], "7": [526.7621459960938, 409.44195556640625, 0.8554507493972778], "8": [107.594970703125, 364.25750732421875, 0.9390348792076111], "9": [494.6425476074219, 451.3067626953125, 0.7897699475288391], "10": [115.091796875, 217.00196838378906, 0.9348366260528564], "11": [425.7066650390625, 480.0, 0.16769574582576752], "12": [275.7086486816406, 480.0, 0.2355951964855194], "13": [476.4657897949219, 433.97320556640625, 0.001261239405721426], "14": [267.2091369628906, 446.7637634277344, 0.002042229287326336], "15": [451.5789489746094, 462.8819885253906, 0.00012197286559967324], "16": [233.23019409179688, 470.732177734375, 0.00018717566854320467]}} +{"t": 61.873292, "tracked": true, "track_id": 1, "bbox": [83.5163345336914, 40.67987060546875, 562.8524169921875, 479.9932556152344], "det_conf": 0.905278742313385, "mean_kpt_conf": 0.9205849062312733, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9308331225882857, "right_lift": -0.6836183377779088, "left_bend": 0.2794023749483944, "right_bend": 0.7568761871474182}, "keypoints": {"0": [328.758544921875, 152.55899047851562, 0.9992140531539917], "1": [350.3190002441406, 123.91290283203125, 0.998977541923523], "2": [306.69720458984375, 129.822265625, 0.9944748282432556], "3": [389.7564392089844, 124.77281188964844, 0.9796395301818848], "4": [284.16351318359375, 136.313232421875, 0.663910448551178], "5": [460.20745849609375, 238.99789428710938, 0.9916131496429443], "6": [231.03517150878906, 246.8839569091797, 0.9972057938575745], "7": [524.8785400390625, 403.7232666015625, 0.8515608310699463], "8": [106.30697631835938, 363.7130126953125, 0.9364534616470337], "9": [496.1479797363281, 455.8599853515625, 0.7809633612632751], "10": [114.28109741210938, 216.98110961914062, 0.9324209690093994], "11": [426.1724548339844, 480.0, 0.16074061393737793], "12": [275.6739501953125, 480.0, 0.22600798308849335], "13": [475.44818115234375, 429.2462158203125, 0.0012781444238498807], "14": [266.4947814941406, 444.5076904296875, 0.0020534044597297907], "15": [446.6505126953125, 462.47637939453125, 0.00012935855193063617], "16": [232.0218963623047, 470.32611083984375, 0.00019659723329823464]}} +{"t": 61.93724, "tracked": true, "track_id": 1, "bbox": [85.68315887451172, 40.82748794555664, 567.4816284179688, 479.9697265625], "det_conf": 0.9045857191085815, "mean_kpt_conf": 0.9226434176618402, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9278006928582689, "right_lift": -0.6824774537846096, "left_bend": 0.3081790874307074, "right_bend": 0.7614994338126644}, "keypoints": {"0": [329.33624267578125, 152.7496795654297, 0.999241828918457], "1": [351.20849609375, 124.47639465332031, 0.9990034699440002], "2": [307.26068115234375, 130.0657196044922, 0.994687557220459], "3": [390.47149658203125, 126.26870727539062, 0.9801262021064758], "4": [284.33709716796875, 136.97103881835938, 0.6626973152160645], "5": [460.38201904296875, 240.18618774414062, 0.9919360876083374], "6": [231.643798828125, 245.70460510253906, 0.9973183274269104], "7": [526.8844604492188, 405.5706481933594, 0.8584582209587097], "8": [107.44964599609375, 361.6697692871094, 0.9415557384490967], "9": [496.05926513671875, 452.02471923828125, 0.7883145213127136], "10": [117.71919250488281, 215.9906005859375, 0.9357383251190186], "11": [427.003662109375, 480.0, 0.1750989407300949], "12": [276.3650817871094, 480.0, 0.24620306491851807], "13": [478.0357666015625, 434.5404052734375, 0.0012496975250542164], "14": [267.41619873046875, 447.22509765625, 0.00203509209677577], "15": [452.500244140625, 466.00177001953125, 0.00012121190957259387], "16": [232.50946044921875, 471.7371826171875, 0.000186548859346658]}} +{"t": 62.005586, "tracked": true, "track_id": 1, "bbox": [87.1487808227539, 40.836605072021484, 566.1080932617188, 479.9667663574219], "det_conf": 0.9063025712966919, "mean_kpt_conf": 0.9239668087525801, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9293284022188766, "right_lift": -0.6830234195623016, "left_bend": 0.2918754958480475, "right_bend": 0.764864432964652}, "keypoints": {"0": [329.8653564453125, 152.63189697265625, 0.9992302656173706], "1": [351.9449157714844, 124.4344482421875, 0.9989826083183289], "2": [307.82098388671875, 129.9855194091797, 0.9946879148483276], "3": [391.2099304199219, 126.60096740722656, 0.9796251058578491], "4": [284.7669372558594, 137.13177490234375, 0.6719504594802856], "5": [460.23931884765625, 239.9042510986328, 0.9918828010559082], "6": [231.33311462402344, 246.2144012451172, 0.9973371624946594], "7": [525.4102172851562, 403.9244689941406, 0.8599539399147034], "8": [107.357421875, 362.14910888671875, 0.9422146677970886], "9": [496.4437255859375, 452.38543701171875, 0.7909460663795471], "10": [119.10690307617188, 215.96487426757812, 0.9368239045143127], "11": [427.00250244140625, 480.0, 0.1775825470685959], "12": [276.3452453613281, 480.0, 0.2495535910129547], "13": [476.8782043457031, 433.8917236328125, 0.0012773247435688972], "14": [266.9713134765625, 447.6298522949219, 0.002071490976959467], "15": [450.5066833496094, 466.8503112792969, 0.0001237376854987815], "16": [232.7603759765625, 473.0877685546875, 0.00018935832486022264]}} +{"t": 62.039617, "tracked": true, "track_id": 1, "bbox": [91.77342987060547, 40.506492614746094, 571.5886840820312, 479.90234375], "det_conf": 0.906609833240509, "mean_kpt_conf": 0.9070676131681963, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9306899701776796, "right_lift": -0.6588741958051376, "left_bend": 0.31189955949174963, "right_bend": 0.7488703915574851}, "keypoints": {"0": [331.8884582519531, 153.9407196044922, 0.9991181492805481], "1": [352.9916076660156, 124.36871337890625, 0.9987473487854004], "2": [309.0205078125, 130.59136962890625, 0.9944508075714111], "3": [392.22772216796875, 125.64450073242188, 0.9704077243804932], "4": [284.4937744140625, 138.0927734375, 0.6493293642997742], "5": [465.5140380859375, 241.6990203857422, 0.9856557846069336], "6": [237.06182861328125, 250.86508178710938, 0.9964690208435059], "7": [529.3827514648438, 404.193603515625, 0.7750389575958252], "8": [117.9761962890625, 355.1683349609375, 0.9363617300987244], "9": [491.9833984375, 458.23626708984375, 0.7379904389381409], "10": [127.24771118164062, 207.0842742919922, 0.9341744184494019], "11": [439.493896484375, 473.9946594238281, 0.12794910371303558], "12": [291.07391357421875, 479.37451171875, 0.2079147845506668], "13": [479.05938720703125, 432.40252685546875, 0.0016383171314373612], "14": [292.0116271972656, 449.71661376953125, 0.0031545564997941256], "15": [440.4246826171875, 476.15716552734375, 0.00016237865202128887], "16": [263.17840576171875, 480.0, 0.0002838413929566741]}} +{"t": 62.103115, "tracked": true, "track_id": 1, "bbox": [94.18260192871094, 41.52102279663086, 575.6773071289062, 479.8677062988281], "det_conf": 0.9065864086151123, "mean_kpt_conf": 0.9087655598467047, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.934051948185334, "right_lift": -0.666216820855387, "left_bend": 0.2854530987657901, "right_bend": 0.746610447809629}, "keypoints": {"0": [332.4310607910156, 153.7340087890625, 0.9991176724433899], "1": [353.758544921875, 124.11331176757812, 0.9987338185310364], "2": [309.3341064453125, 130.30117797851562, 0.994531512260437], "3": [392.99615478515625, 125.11978149414062, 0.969779372215271], "4": [284.42108154296875, 137.563232421875, 0.6598138809204102], "5": [464.938232421875, 240.36895751953125, 0.9858900308609009], "6": [237.03558349609375, 250.13999938964844, 0.9966145157814026], "7": [527.2105712890625, 403.2352294921875, 0.780725359916687], "8": [119.54888916015625, 355.09576416015625, 0.939307451248169], "9": [493.7406311035156, 460.15338134765625, 0.7368983626365662], "10": [126.3258056640625, 206.66461181640625, 0.9350091814994812], "11": [438.8943786621094, 473.34478759765625, 0.13796420395374298], "12": [290.7275695800781, 479.0716552734375, 0.22367006540298462], "13": [478.5804443359375, 433.988525390625, 0.0016925812233239412], "14": [291.08892822265625, 452.333984375, 0.0032684295438230038], "15": [439.4753112792969, 476.29815673828125, 0.00016397470608353615], "16": [262.52886962890625, 480.0, 0.00028637590003199875]}} +{"t": 62.138294, "tracked": true, "track_id": 1, "bbox": [89.19044494628906, 41.249534606933594, 569.3880004882812, 479.9416809082031], "det_conf": 0.9064382910728455, "mean_kpt_conf": 0.9226628867062655, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.928161134136951, "right_lift": -0.6895652070204737, "left_bend": 0.30067241837513065, "right_bend": 0.7648310513960958}, "keypoints": {"0": [330.77850341796875, 152.95343017578125, 0.9992231130599976], "1": [352.8741149902344, 124.44357299804688, 0.9989798665046692], "2": [308.4294738769531, 129.8714599609375, 0.9946596026420593], "3": [392.05517578125, 125.51718139648438, 0.9793546199798584], "4": [284.8865661621094, 136.06201171875, 0.6699742078781128], "5": [461.1921691894531, 237.8709716796875, 0.9916782379150391], "6": [231.2630615234375, 245.4281005859375, 0.9972684383392334], "7": [527.4531860351562, 403.11663818359375, 0.8566045165061951], "8": [107.24313354492188, 363.512939453125, 0.9398530125617981], "9": [494.92572021484375, 454.6277160644531, 0.7865519523620605], "10": [117.74406433105469, 216.07522583007812, 0.9351441860198975], "11": [427.3645324707031, 480.0, 0.16712653636932373], "12": [276.2032470703125, 480.0, 0.23491626977920532], "13": [477.79388427734375, 431.3943176269531, 0.0012456047115847468], "14": [268.05755615234375, 445.5438232421875, 0.002012761076912284], "15": [449.6680908203125, 466.0465087890625, 0.0001239527337020263], "16": [233.40496826171875, 471.2367248535156, 0.00018925091717392206]}} +{"t": 62.201732, "tracked": true, "track_id": 1, "bbox": [86.53905487060547, 41.257389068603516, 562.8482055664062, 479.9980773925781], "det_conf": 0.9057921171188354, "mean_kpt_conf": 0.9236315434629266, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9301140714597523, "right_lift": -0.6860030572090668, "left_bend": 0.28154576790254754, "right_bend": 0.7717072888104755}, "keypoints": {"0": [331.11956787109375, 153.1166534423828, 0.9992246627807617], "1": [353.2199401855469, 124.62907409667969, 0.9989680051803589], "2": [308.84149169921875, 129.74526977539062, 0.9947128891944885], "3": [392.212646484375, 125.65524291992188, 0.9785305857658386], "4": [285.13287353515625, 135.42286682128906, 0.6803426146507263], "5": [459.7647705078125, 239.14353942871094, 0.9915249943733215], "6": [231.23373413085938, 245.67942810058594, 0.9973241090774536], "7": [524.8662719726562, 404.01324462890625, 0.8541878461837769], "8": [106.0009765625, 363.7528381347656, 0.9409726858139038], "9": [496.54937744140625, 454.82427978515625, 0.7870498299598694], "10": [120.57449340820312, 214.92721557617188, 0.9371087551116943], "11": [426.1270751953125, 480.0, 0.16602523624897003], "12": [275.7962646484375, 480.0, 0.23649637401103973], "13": [474.987548828125, 433.71893310546875, 0.0012364739086478949], "14": [266.4156188964844, 447.9671325683594, 0.00201395689509809], "15": [448.4178771972656, 466.38525390625, 0.0001226272142957896], "16": [231.83558654785156, 471.84759521484375, 0.00018760091916192323]}} +{"t": 62.265652, "tracked": true, "track_id": 1, "bbox": [86.67412567138672, 41.2617301940918, 560.9896240234375, 480.0], "det_conf": 0.9072061777114868, "mean_kpt_conf": 0.9257100983099504, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9297491781740721, "right_lift": -0.6785624400247581, "left_bend": 0.2670113650288226, "right_bend": 0.7681781412032467}, "keypoints": {"0": [331.7566833496094, 152.86920166015625, 0.99922776222229], "1": [353.8207092285156, 124.427001953125, 0.9989485144615173], "2": [309.15655517578125, 129.91517639160156, 0.9948465824127197], "3": [392.4082946777344, 126.46075439453125, 0.977790355682373], "4": [285.0516052246094, 136.93597412109375, 0.688978910446167], "5": [458.54180908203125, 240.62582397460938, 0.9916280508041382], "6": [232.72052001953125, 245.18418884277344, 0.9973118305206299], "7": [523.873779296875, 405.59979248046875, 0.8594649434089661], "8": [108.08512878417969, 360.32098388671875, 0.9441425204277039], "9": [499.6220703125, 454.3310546875, 0.7912461161613464], "10": [122.31468200683594, 213.6325225830078, 0.9392254948616028], "11": [424.71826171875, 480.0, 0.17313288152217865], "12": [275.8719177246094, 480.0, 0.24604710936546326], "13": [474.9021911621094, 433.9419860839844, 0.0012484155595302582], "14": [265.61376953125, 447.1840515136719, 0.002043964806944132], "15": [451.4463806152344, 465.14044189453125, 0.00012221490032970905], "16": [230.24057006835938, 472.05712890625, 0.00018727598944678903]}} +{"t": 62.301157, "tracked": true, "track_id": 1, "bbox": [86.89881896972656, 41.52280044555664, 563.5082397460938, 480.0], "det_conf": 0.909511387348175, "mean_kpt_conf": 0.9250608899376609, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9281722863811491, "right_lift": -0.6887820743878771, "left_bend": 0.30093642632505546, "right_bend": 0.7668778560422148}, "keypoints": {"0": [332.002685546875, 153.10751342773438, 0.9992362260818481], "1": [354.15167236328125, 124.6763916015625, 0.9989739656448364], "2": [309.5870056152344, 129.65304565429688, 0.9947832226753235], "3": [392.8260498046875, 125.73046875, 0.9786770343780518], "4": [285.4051513671875, 135.3546142578125, 0.6785594820976257], "5": [460.507080078125, 238.6944580078125, 0.9918792843818665], "6": [231.7971954345703, 245.43328857421875, 0.9973751306533813], "7": [526.4808959960938, 403.2381591796875, 0.8612496852874756], "8": [107.28994750976562, 363.725830078125, 0.9428258538246155], "9": [494.8188171386719, 453.2834777832031, 0.7936590313911438], "10": [118.86958312988281, 216.73159790039062, 0.9384508728981018], "11": [427.2837829589844, 480.0, 0.1787540167570114], "12": [276.65350341796875, 480.0, 0.2505824565887451], "13": [477.9972229003906, 436.81048583984375, 0.0012421782594174147], "14": [268.5060729980469, 450.2898864746094, 0.0020058269146829844], "15": [450.75872802734375, 468.8232421875, 0.00011803800589405], "16": [232.65798950195312, 473.02703857421875, 0.00017977258539758623]}} +{"t": 62.366944, "tracked": true, "track_id": 1, "bbox": [87.5626449584961, 41.72393798828125, 561.2279052734375, 480.0], "det_conf": 0.9098647236824036, "mean_kpt_conf": 0.9227316704663363, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9305083259211454, "right_lift": -0.6862191696996113, "left_bend": 0.28458478716826874, "right_bend": 0.7663988359529329}, "keypoints": {"0": [332.63714599609375, 152.65283203125, 0.9992013573646545], "1": [354.5901184082031, 124.284423828125, 0.9989058971405029], "2": [310.27679443359375, 129.16075134277344, 0.9947970509529114], "3": [392.591796875, 125.90208435058594, 0.9773415923118591], "4": [285.78314208984375, 135.21139526367188, 0.6926119923591614], "5": [459.48992919921875, 241.7664337158203, 0.9913553595542908], "6": [231.97828674316406, 245.92269897460938, 0.9972518086433411], "7": [524.572998046875, 407.1095275878906, 0.8462687134742737], "8": [108.941162109375, 361.99505615234375, 0.9380089044570923], "9": [497.215087890625, 454.99639892578125, 0.7798311710357666], "10": [120.80793762207031, 215.1533966064453, 0.934474527835846], "11": [424.731201171875, 480.0, 0.16196182370185852], "12": [275.32000732421875, 480.0, 0.23152488470077515], "13": [473.38726806640625, 433.8961181640625, 0.0012827946338802576], "14": [267.0101318359375, 446.5342712402344, 0.0020897723734378815], "15": [446.88043212890625, 464.39178466796875, 0.0001287383638555184], "16": [234.69000244140625, 469.62890625, 0.00019645089923869818]}} +{"t": 62.436977, "tracked": true, "track_id": 1, "bbox": [87.38148498535156, 41.607826232910156, 561.2243041992188, 480.0], "det_conf": 0.9083033204078674, "mean_kpt_conf": 0.9242605892094699, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9307307205437632, "right_lift": -0.6791233637064917, "left_bend": 0.2656942951746099, "right_bend": 0.7634184010746505}, "keypoints": {"0": [332.44451904296875, 152.94256591796875, 0.9992153644561768], "1": [354.7221374511719, 124.79266357421875, 0.9989413619041443], "2": [310.267578125, 129.79119873046875, 0.994775652885437], "3": [393.49578857421875, 126.73854064941406, 0.9782740473747253], "4": [286.29498291015625, 136.14169311523438, 0.6863022446632385], "5": [459.46142578125, 241.02667236328125, 0.991703987121582], "6": [232.42337036132812, 245.788330078125, 0.9973377585411072], "7": [523.4884033203125, 403.97723388671875, 0.8576551079750061], "8": [108.12751770019531, 360.7875671386719, 0.9421107769012451], "9": [498.5684814453125, 454.2353820800781, 0.7848415970802307], "10": [119.8377685546875, 216.50717163085938, 0.9357085824012756], "11": [424.22119140625, 480.0, 0.18364514410495758], "12": [274.46051025390625, 480.0, 0.25788605213165283], "13": [474.7900085449219, 437.81402587890625, 0.0012785528087988496], "14": [264.958984375, 451.0140380859375, 0.0020671170204877853], "15": [450.4696960449219, 466.26025390625, 0.00012327954755164683], "16": [230.822509765625, 472.1397399902344, 0.00018702812667470425]}} +{"t": 62.498209, "tracked": true, "track_id": 1, "bbox": [87.71676635742188, 41.714447021484375, 560.13232421875, 480.0], "det_conf": 0.9085843563079834, "mean_kpt_conf": 0.9219414483417164, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9296536249896694, "right_lift": -0.6812327888212343, "left_bend": 0.30571379708434887, "right_bend": 0.7659404195514609}, "keypoints": {"0": [332.6357116699219, 152.7610626220703, 0.9992243051528931], "1": [354.90118408203125, 124.67916870117188, 0.9989644289016724], "2": [310.5345458984375, 129.367919921875, 0.994838297367096], "3": [393.4246826171875, 126.77326965332031, 0.9789815545082092], "4": [286.51470947265625, 135.54002380371094, 0.6808098554611206], "5": [460.62908935546875, 241.27377319335938, 0.9914193153381348], "6": [233.1757049560547, 245.31353759765625, 0.9973276853561401], "7": [526.2802124023438, 406.9281005859375, 0.8474935293197632], "8": [107.9951171875, 361.80169677734375, 0.9407355785369873], "9": [494.0638427734375, 455.7694091796875, 0.7765169739723206], "10": [120.62806701660156, 215.32260131835938, 0.9350444078445435], "11": [426.4714660644531, 480.0, 0.1657964289188385], "12": [276.6798095703125, 480.0, 0.23924562335014343], "13": [474.2836608886719, 436.43389892578125, 0.0012201552744954824], "14": [265.89361572265625, 447.88323974609375, 0.0020148982293903828], "15": [448.1080627441406, 467.4033203125, 0.0001228504115715623], "16": [229.94564819335938, 470.17816162109375, 0.00018991850083693862]}} +{"t": 62.562371, "tracked": true, "track_id": 1, "bbox": [87.4537582397461, 41.7000732421875, 561.7811279296875, 479.9972229003906], "det_conf": 0.9087193012237549, "mean_kpt_conf": 0.9243171431801536, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9275411673832374, "right_lift": -0.6883840903507075, "left_bend": 0.30586788089924843, "right_bend": 0.7670202361446371}, "keypoints": {"0": [333.05816650390625, 152.41732788085938, 0.9992139339447021], "1": [355.2804260253906, 124.58877563476562, 0.9989224672317505], "2": [310.82781982421875, 129.4178466796875, 0.9950005412101746], "3": [392.91815185546875, 127.46505737304688, 0.9777092933654785], "4": [286.20916748046875, 136.6645965576172, 0.6999697685241699], "5": [459.60345458984375, 240.11680603027344, 0.9915817379951477], "6": [231.49215698242188, 246.2869873046875, 0.9973530769348145], "7": [525.7626342773438, 404.31781005859375, 0.8522233963012695], "8": [107.30026245117188, 364.1502990722656, 0.9411032199859619], "9": [493.62225341796875, 453.6004943847656, 0.7791979312896729], "10": [119.03071594238281, 217.11253356933594, 0.9352132081985474], "11": [426.0957336425781, 480.0, 0.17027154564857483], "12": [276.0892639160156, 480.0, 0.24257473647594452], "13": [475.93365478515625, 433.689208984375, 0.0012618749169632792], "14": [267.3160095214844, 446.4785461425781, 0.002059388440102339], "15": [448.29229736328125, 467.9056701660156, 0.00012662916560657322], "16": [231.7235107421875, 471.01812744140625, 0.00019355336553417146]}} +{"t": 62.600331, "tracked": true, "track_id": 1, "bbox": [88.28086853027344, 41.803958892822266, 561.1393432617188, 479.99517822265625], "det_conf": 0.9100517630577087, "mean_kpt_conf": 0.9255194826559587, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9218483649533292, "right_lift": -0.6791977637354873, "left_bend": 0.25422319997716336, "right_bend": 0.7636944792311934}, "keypoints": {"0": [333.45135498046875, 152.46487426757812, 0.9992130994796753], "1": [355.7920837402344, 124.81486511230469, 0.998909592628479], "2": [311.484375, 129.10879516601562, 0.9949729442596436], "3": [393.33544921875, 127.37699890136719, 0.9771881103515625], "4": [286.8932189941406, 135.30239868164062, 0.7039307951927185], "5": [458.164794921875, 240.006591796875, 0.991688072681427], "6": [232.3822479248047, 245.16009521484375, 0.9973669648170471], "7": [525.79443359375, 400.87396240234375, 0.8583571910858154], "8": [108.55564880371094, 359.74847412109375, 0.9429469704627991], "9": [502.1485595703125, 456.69390869140625, 0.7805278897285461], "10": [120.42756652832031, 214.85272216796875, 0.935612678527832], "11": [424.37310791015625, 480.0, 0.18492086231708527], "12": [275.73553466796875, 480.0, 0.2597893178462982], "13": [475.80712890625, 437.42181396484375, 0.0012865118915215135], "14": [268.8860778808594, 450.5304870605469, 0.0020873642060905695], "15": [450.96832275390625, 469.12127685546875, 0.00012477906420826912], "16": [234.63134765625, 471.997314453125, 0.0001893317821668461]}} +{"t": 62.664177, "tracked": true, "track_id": 1, "bbox": [88.62271881103516, 41.923240661621094, 561.8976440429688, 479.990966796875], "det_conf": 0.9082372188568115, "mean_kpt_conf": 0.925237081267617, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9240122649020375, "right_lift": -0.6815325956408078, "left_bend": 0.30602958792539864, "right_bend": 0.771063261755824}, "keypoints": {"0": [334.0612487792969, 151.95046997070312, 0.9992477893829346], "1": [355.9850158691406, 124.1038818359375, 0.9989392161369324], "2": [311.7992248535156, 128.70339965820312, 0.9952111840248108], "3": [393.0228271484375, 126.93241882324219, 0.9766814708709717], "4": [286.7035217285156, 135.63888549804688, 0.7051053643226624], "5": [458.3800048828125, 241.8816680908203, 0.9915197491645813], "6": [232.45327758789062, 245.78713989257812, 0.9973560571670532], "7": [526.541748046875, 406.6003112792969, 0.8517026901245117], "8": [106.9532470703125, 362.66851806640625, 0.9417529702186584], "9": [496.9879150390625, 452.8031005859375, 0.7830213308334351], "10": [122.0277099609375, 214.9776611328125, 0.9370700716972351], "11": [424.49591064453125, 480.0, 0.16878947615623474], "12": [275.6832275390625, 480.0, 0.24152924120426178], "13": [474.928955078125, 437.5711669921875, 0.0012261512456461787], "14": [267.12872314453125, 448.9950256347656, 0.002003901405259967], "15": [453.100341796875, 468.2542724609375, 0.00011962412827415392], "16": [232.60427856445312, 471.00433349609375, 0.00018268021813128144]}} +{"t": 62.730597, "tracked": true, "track_id": 1, "bbox": [88.32141876220703, 41.702972412109375, 558.17822265625, 479.9877014160156], "det_conf": 0.9086724519729614, "mean_kpt_conf": 0.9235812317241322, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9266598636998514, "right_lift": -0.6932838137392787, "left_bend": 0.2509467857065732, "right_bend": 0.7732314543837794}, "keypoints": {"0": [334.2264709472656, 152.25892639160156, 0.999190628528595], "1": [356.504638671875, 124.575439453125, 0.9988659620285034], "2": [312.14971923828125, 128.74630737304688, 0.9950658082962036], "3": [393.3672790527344, 127.01278686523438, 0.9755222797393799], "4": [286.80438232421875, 134.7806396484375, 0.7206357717514038], "5": [458.7606506347656, 239.44149780273438, 0.9914283156394958], "6": [229.59686279296875, 245.94790649414062, 0.9973347187042236], "7": [524.5479736328125, 401.61846923828125, 0.8485257029533386], "8": [107.67436218261719, 363.23809814453125, 0.9386187195777893], "9": [500.051025390625, 459.077392578125, 0.7634578943252563], "10": [121.3936767578125, 215.09664916992188, 0.9307477474212646], "11": [425.5525207519531, 480.0, 0.17096193134784698], "12": [274.99365234375, 480.0, 0.24218952655792236], "13": [477.52587890625, 433.6157531738281, 0.0012746097054332495], "14": [269.3699035644531, 448.420654296875, 0.0020686639472842216], "15": [448.98858642578125, 468.5690612792969, 0.00013092963490635157], "16": [237.57801818847656, 471.9896545410156, 0.00019791001977864653]}} +{"t": 62.795788, "tracked": true, "track_id": 1, "bbox": [88.2293701171875, 41.91495132446289, 561.3690185546875, 479.98114013671875], "det_conf": 0.9100289940834045, "mean_kpt_conf": 0.9262568354606628, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9218667842664454, "right_lift": -0.6928835786244373, "left_bend": 0.30596060064937225, "right_bend": 0.7736168680192629}, "keypoints": {"0": [334.6706237792969, 151.88381958007812, 0.9992355108261108], "1": [356.83062744140625, 124.18582153320312, 0.9989043474197388], "2": [312.1953125, 128.55661010742188, 0.9953444600105286], "3": [393.2979736328125, 127.10098266601562, 0.9753180146217346], "4": [286.0557861328125, 135.45034790039062, 0.7198421955108643], "5": [459.19879150390625, 239.48883056640625, 0.9917780160903931], "6": [230.08135986328125, 245.61166381835938, 0.9973844885826111], "7": [527.76953125, 402.616455078125, 0.8558059930801392], "8": [107.3192138671875, 363.57843017578125, 0.9418935775756836], "9": [495.99200439453125, 452.9351501464844, 0.7782573699951172], "10": [121.27214050292969, 215.75796508789062, 0.9350612163543701], "11": [426.639892578125, 480.0, 0.1797124743461609], "12": [275.6422424316406, 480.0, 0.2527814209461212], "13": [478.4952392578125, 436.9522705078125, 0.001247966312803328], "14": [267.4140930175781, 449.58502197265625, 0.0020136157982051373], "15": [451.68023681640625, 470.132080078125, 0.00012185137893538922], "16": [231.82186889648438, 471.71942138671875, 0.00018374690262135118]}} +{"t": 62.86304, "tracked": true, "track_id": 1, "bbox": [86.92676544189453, 41.46250915527344, 560.0817260742188, 479.9908752441406], "det_conf": 0.9083045721054077, "mean_kpt_conf": 0.9253466562791304, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9264853932390442, "right_lift": -0.7089602399036419, "left_bend": 0.29911050427030295, "right_bend": 0.7825201123837359}, "keypoints": {"0": [334.5838623046875, 151.85057067871094, 0.9992247819900513], "1": [356.956298828125, 124.01460266113281, 0.9988455772399902], "2": [311.9870300292969, 127.88809204101562, 0.9954372048377991], "3": [392.86956787109375, 127.16815185546875, 0.9728317856788635], "4": [285.17864990234375, 134.3922576904297, 0.7363200187683105], "5": [457.38250732421875, 241.5746612548828, 0.9915087223052979], "6": [227.95022583007812, 246.17022705078125, 0.9972987771034241], "7": [525.322509765625, 408.8355712890625, 0.845438539981842], "8": [105.8936767578125, 368.8691711425781, 0.9365885853767395], "9": [497.48046875, 453.85711669921875, 0.7723848819732666], "10": [121.05252075195312, 217.083984375, 0.9329343438148499], "11": [424.0977478027344, 480.0, 0.1508408486843109], "12": [273.39202880859375, 480.0, 0.21466556191444397], "13": [477.2208251953125, 430.70892333984375, 0.0012201181380078197], "14": [267.88470458984375, 443.1302185058594, 0.001964526018127799], "15": [450.9669189453125, 466.4747619628906, 0.00012628610420506448], "16": [235.4697723388672, 468.1977844238281, 0.00018931661907117814]}} +{"t": 62.925687, "tracked": true, "track_id": 1, "bbox": [86.98685455322266, 41.33892059326172, 560.3264770507812, 479.981689453125], "det_conf": 0.9090599417686462, "mean_kpt_conf": 0.925080272284421, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9243872830132616, "right_lift": -0.7059736741898296, "left_bend": 0.30939249508194633, "right_bend": 0.778426338598106}, "keypoints": {"0": [334.7092590332031, 151.2359619140625, 0.9992183446884155], "1": [356.94671630859375, 123.41023254394531, 0.9988341927528381], "2": [311.9338073730469, 127.49786376953125, 0.995481014251709], "3": [392.5841369628906, 126.50009155273438, 0.9727154970169067], "4": [284.7072448730469, 134.2772216796875, 0.7388215065002441], "5": [457.9639587402344, 240.28245544433594, 0.9915157556533813], "6": [228.09815979003906, 245.5377960205078, 0.9973043203353882], "7": [526.3842163085938, 406.0864562988281, 0.8448340892791748], "8": [107.66888427734375, 365.58203125, 0.9369906187057495], "9": [494.852294921875, 454.14990234375, 0.7681772708892822], "10": [121.30184936523438, 216.0262451171875, 0.931990385055542], "11": [426.4992980957031, 480.0, 0.1620756983757019], "12": [275.7445068359375, 480.0, 0.23029005527496338], "13": [477.8735656738281, 433.9676208496094, 0.0012520046439021826], "14": [270.6037292480469, 446.3290100097656, 0.0020212652161717415], "15": [449.88507080078125, 468.86767578125, 0.0001273903326364234], "16": [239.4175567626953, 470.15423583984375, 0.0001914893655339256]}} +{"t": 62.95936, "tracked": true, "track_id": 1, "bbox": [87.19782257080078, 41.240379333496094, 560.325439453125, 479.9849548339844], "det_conf": 0.9096297025680542, "mean_kpt_conf": 0.9254518530585549, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.924356891062171, "right_lift": -0.7142862624622164, "left_bend": 0.28255712377286885, "right_bend": 0.7796099502626211}, "keypoints": {"0": [334.878173828125, 151.1293487548828, 0.9992321729660034], "1": [356.91357421875, 123.33151245117188, 0.9988289475440979], "2": [312.3451232910156, 127.0521240234375, 0.9955511093139648], "3": [392.06353759765625, 125.85440063476562, 0.9712346196174622], "4": [285.03680419921875, 132.89755249023438, 0.7453799247741699], "5": [458.4457702636719, 239.00851440429688, 0.9917452931404114], "6": [226.71446228027344, 245.25479125976562, 0.9973418116569519], "7": [526.9281616210938, 404.92559814453125, 0.8478550910949707], "8": [106.91761779785156, 367.5221252441406, 0.9367969036102295], "9": [498.9458923339844, 456.6090087890625, 0.765100359916687], "10": [119.44718933105469, 216.57559204101562, 0.9309041500091553], "11": [427.5422668457031, 480.0, 0.15777245163917542], "12": [275.335693359375, 480.0, 0.2226375788450241], "13": [479.9808654785156, 430.22210693359375, 0.001239086384885013], "14": [268.7871398925781, 443.93719482421875, 0.0019775182008743286], "15": [449.35906982421875, 468.20501708984375, 0.00012757195509038866], "16": [236.42001342773438, 469.4297180175781, 0.00018940887821372598]}} +{"t": 62.994527, "tracked": true, "track_id": 1, "bbox": [86.7895736694336, 41.07380294799805, 559.6978759765625, 479.9864196777344], "det_conf": 0.9112602472305298, "mean_kpt_conf": 0.9246252341703936, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9288812755759164, "right_lift": -0.7130594375860317, "left_bend": 0.32095975102897606, "right_bend": 0.7862157308060703}, "keypoints": {"0": [335.374267578125, 151.53231811523438, 0.9992437362670898], "1": [357.05670166015625, 123.11643981933594, 0.9988340735435486], "2": [312.5142822265625, 127.08062744140625, 0.9955667853355408], "3": [392.44183349609375, 124.43611145019531, 0.9709882140159607], "4": [285.15936279296875, 132.07347106933594, 0.7422374486923218], "5": [459.48193359375, 241.11947631835938, 0.991596519947052], "6": [227.10142517089844, 245.1927490234375, 0.9973468780517578], "7": [527.3367919921875, 411.29473876953125, 0.8379696011543274], "8": [105.31585693359375, 369.05511474609375, 0.9344623684883118], "9": [495.8458251953125, 454.58453369140625, 0.7696788311004639], "10": [121.41822814941406, 216.73219299316406, 0.9329531192779541], "11": [426.7877502441406, 480.0, 0.14361178874969482], "12": [274.69915771484375, 480.0, 0.20651188492774963], "13": [477.6326904296875, 432.38299560546875, 0.001193419680930674], "14": [270.0343933105469, 444.55133056640625, 0.0019321100553497672], "15": [447.26153564453125, 466.08673095703125, 0.0001231331698363647], "16": [239.13999938964844, 468.27874755859375, 0.00018496789562050253]}} +{"t": 63.057784, "tracked": true, "track_id": 1, "bbox": [87.64805603027344, 41.08681106567383, 561.4161987304688, 480.0], "det_conf": 0.9107783436775208, "mean_kpt_conf": 0.9251674142750826, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9214090171645496, "right_lift": -0.7140125016227062, "left_bend": 0.26871726554532926, "right_bend": 0.7835657267154847}, "keypoints": {"0": [334.95916748046875, 150.64349365234375, 0.9991932511329651], "1": [357.317138671875, 122.90127563476562, 0.9987584352493286], "2": [312.361572265625, 126.36813354492188, 0.9954961538314819], "3": [392.4308166503906, 125.7587890625, 0.9704453349113464], "4": [284.700927734375, 132.1580352783203, 0.754497766494751], "5": [456.9539794921875, 239.85464477539062, 0.9914823770523071], "6": [226.47215270996094, 245.24317932128906, 0.9973135590553284], "7": [526.1796875, 403.99810791015625, 0.8424323201179504], "8": [108.09283447265625, 365.9692687988281, 0.9355289936065674], "9": [501.2845153808594, 456.1871032714844, 0.7614595890045166], "10": [122.4178466796875, 216.6383819580078, 0.9302337765693665], "11": [425.3314208984375, 480.0, 0.16206863522529602], "12": [274.3675537109375, 480.0, 0.22957418859004974], "13": [479.0990905761719, 433.3583984375, 0.0012745581334456801], "14": [272.6726379394531, 446.8157958984375, 0.0020589495543390512], "15": [450.01904296875, 468.4183349609375, 0.0001296820119023323], "16": [243.77244567871094, 469.5626220703125, 0.00019395278650335968]}} +{"t": 63.124452, "tracked": true, "track_id": 1, "bbox": [86.86323547363281, 40.78656005859375, 563.4939575195312, 480.0], "det_conf": 0.911496102809906, "mean_kpt_conf": 0.9225334633480419, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9297175837865611, "right_lift": -0.7104209620426372, "left_bend": 0.3092991368578256, "right_bend": 0.7853875001422349}, "keypoints": {"0": [335.10772705078125, 150.3703155517578, 0.9991889595985413], "1": [357.1216735839844, 122.37188720703125, 0.9987635612487793], "2": [312.5304870605469, 126.32603454589844, 0.9954161643981934], "3": [392.5282287597656, 125.14213562011719, 0.97103351354599], "4": [285.4232177734375, 132.52597045898438, 0.7471553683280945], "5": [457.54827880859375, 242.59608459472656, 0.9912123084068298], "6": [226.29180908203125, 246.2785186767578, 0.9972526431083679], "7": [523.8892822265625, 410.0760498046875, 0.8299620151519775], "8": [106.01814270019531, 367.6876220703125, 0.9301373958587646], "9": [496.5079650878906, 450.57183837890625, 0.7596608400344849], "10": [122.25228881835938, 215.7952880859375, 0.9280853271484375], "11": [423.865966796875, 480.0, 0.14498361945152283], "12": [272.9494323730469, 480.0, 0.20769284665584564], "13": [477.51715087890625, 431.619873046875, 0.0012617877218872309], "14": [274.0716857910156, 444.35723876953125, 0.002044486114755273], "15": [450.1441955566406, 463.56494140625, 0.00013343985483516008], "16": [249.36196899414062, 467.170166015625, 0.00020070196478627622]}} +{"t": 63.160424, "tracked": true, "track_id": 1, "bbox": [86.20467376708984, 40.7168083190918, 564.8742065429688, 480.0], "det_conf": 0.9089690446853638, "mean_kpt_conf": 0.9249273430217396, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.922392146822222, "right_lift": -0.7042440420045654, "left_bend": 0.24273122683332843, "right_bend": 0.7796884938461861}, "keypoints": {"0": [334.66986083984375, 150.26304626464844, 0.9991939663887024], "1": [356.884765625, 122.53958129882812, 0.9987939596176147], "2": [312.3608093261719, 126.2359619140625, 0.9953351616859436], "3": [392.45709228515625, 125.56625366210938, 0.9723137617111206], "4": [285.5963439941406, 132.30703735351562, 0.7443077564239502], "5": [457.425537109375, 241.16165161132812, 0.9916442036628723], "6": [227.02297973632812, 245.59384155273438, 0.9973233342170715], "7": [526.1470947265625, 405.27154541015625, 0.8453144431114197], "8": [107.1939697265625, 364.45843505859375, 0.9352964162826538], "9": [505.9258728027344, 458.03228759765625, 0.764847993850708], "10": [121.75199890136719, 215.3255615234375, 0.9298297762870789], "11": [424.18646240234375, 480.0, 0.15876354277133942], "12": [273.3786315917969, 480.0, 0.22377721965312958], "13": [477.61981201171875, 431.0567626953125, 0.0012767256703227758], "14": [271.21820068359375, 444.7774963378906, 0.002047247951850295], "15": [449.90478515625, 464.4088134765625, 0.00013249236508272588], "16": [243.6427764892578, 467.27685546875, 0.00019758532289415598]}} +{"t": 63.221939, "tracked": true, "track_id": 1, "bbox": [91.79447174072266, 40.546875, 568.9921875, 479.9078063964844], "det_conf": 0.9087803363800049, "mean_kpt_conf": 0.9089844822883606, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9267634296484811, "right_lift": -0.6790422221979883, "left_bend": 0.26720198824701763, "right_bend": 0.7644305738961154}, "keypoints": {"0": [335.6815185546875, 150.896484375, 0.9990870952606201], "1": [356.6364440917969, 122.176513671875, 0.9984667897224426], "2": [312.7012023925781, 126.99360656738281, 0.9953609108924866], "3": [391.74462890625, 124.990234375, 0.9570372104644775], "4": [284.5413513183594, 134.46359252929688, 0.7413261532783508], "5": [462.56005859375, 241.47509765625, 0.985628604888916], "6": [230.57876586914062, 248.9747314453125, 0.996615469455719], "7": [528.1571655273438, 403.3111877441406, 0.759772002696991], "8": [117.66769409179688, 353.41754150390625, 0.9344578981399536], "9": [500.0589904785156, 460.83905029296875, 0.703020453453064], "10": [130.50631713867188, 201.43817138671875, 0.9280567169189453], "11": [437.66339111328125, 471.4544372558594, 0.1277482956647873], "12": [287.5484619140625, 477.2838439941406, 0.20975564420223236], "13": [480.1785888671875, 430.715087890625, 0.0017071968177333474], "14": [293.283447265625, 448.9492492675781, 0.0033076717518270016], "15": [437.76031494140625, 477.4668884277344, 0.0001745005720295012], "16": [271.1621398925781, 480.0, 0.0002993682282976806]}} +{"t": 63.289917, "tracked": true, "track_id": 1, "bbox": [88.4796371459961, 40.39792251586914, 560.5695190429688, 479.96826171875], "det_conf": 0.9100567102432251, "mean_kpt_conf": 0.9224765842611139, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9249358183070057, "right_lift": -0.6952706121307127, "left_bend": 0.274834562341276, "right_bend": 0.7808652196798997}, "keypoints": {"0": [334.1546325683594, 149.44874572753906, 0.999176561832428], "1": [355.6289978027344, 121.5440673828125, 0.9987975358963013], "2": [311.6612854003906, 126.42459106445312, 0.9952718615531921], "3": [391.24078369140625, 124.46511840820312, 0.9733172655105591], "4": [285.4456481933594, 133.86265563964844, 0.7395814061164856], "5": [458.6748046875, 240.58290100097656, 0.9914018511772156], "6": [226.7187042236328, 245.64437866210938, 0.9972409009933472], "7": [526.5486450195312, 405.737060546875, 0.8367711305618286], "8": [106.39125061035156, 362.0414123535156, 0.9321639537811279], "9": [500.3629150390625, 456.8448791503906, 0.7567148804664612], "10": [123.40364074707031, 212.88653564453125, 0.9268050789833069], "11": [424.82330322265625, 480.0, 0.1537461131811142], "12": [273.5738220214844, 480.0, 0.21855828166007996], "13": [477.2776184082031, 429.16412353515625, 0.0012968669179826975], "14": [273.02734375, 443.4342041015625, 0.002103915438055992], "15": [448.2926940917969, 462.6305847167969, 0.00013862067135050893], "16": [247.55523681640625, 468.3302001953125, 0.00020915693312417716]}} +{"t": 63.354072, "tracked": true, "track_id": 1, "bbox": [86.98270416259766, 40.416378021240234, 559.6455688476562, 479.9818420410156], "det_conf": 0.9105807542800903, "mean_kpt_conf": 0.9234381209720265, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9278729108972418, "right_lift": -0.7015647744715643, "left_bend": 0.3053094867786118, "right_bend": 0.7858685688377174}, "keypoints": {"0": [334.576416015625, 150.13998413085938, 0.9991711378097534], "1": [356.2236022949219, 121.76876831054688, 0.9987452030181885], "2": [311.68707275390625, 126.24310302734375, 0.9952921867370605], "3": [391.8045654296875, 123.59454345703125, 0.9715169668197632], "4": [284.4426574707031, 132.18043518066406, 0.7428940534591675], "5": [458.40277099609375, 242.15078735351562, 0.9913005232810974], "6": [225.89833068847656, 244.8726806640625, 0.9972620010375977], "7": [525.4545288085938, 408.9946594238281, 0.8326362371444702], "8": [107.32888793945312, 361.60504150390625, 0.9322742223739624], "9": [497.087890625, 452.5732421875, 0.7663261294364929], "10": [125.36705017089844, 212.62551879882812, 0.9304006695747375], "11": [423.78741455078125, 480.0, 0.1536390632390976], "12": [272.3116455078125, 480.0, 0.22047576308250427], "13": [476.0179748535156, 433.681640625, 0.0012957464205101132], "14": [273.89031982421875, 446.190673828125, 0.0021207670215517282], "15": [447.50311279296875, 462.39129638671875, 0.00013317672710400075], "16": [251.50833129882812, 467.5598449707031, 0.00020201268489472568]}} +{"t": 63.422922, "tracked": true, "track_id": 1, "bbox": [86.36357116699219, 39.70728302001953, 561.6995849609375, 480.0], "det_conf": 0.9119080901145935, "mean_kpt_conf": 0.9260969920591875, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9211232723964083, "right_lift": -0.7108651005995186, "left_bend": 0.3397187498074572, "right_bend": 0.7885310769895275}, "keypoints": {"0": [335.58148193359375, 149.8011474609375, 0.9992241859436035], "1": [357.40728759765625, 121.5426025390625, 0.998772919178009], "2": [312.5184326171875, 125.61196899414062, 0.9956763386726379], "3": [392.10516357421875, 123.58294677734375, 0.9694215059280396], "4": [284.1881408691406, 131.40304565429688, 0.7544968128204346], "5": [459.39691162109375, 239.123779296875, 0.9916163086891174], "6": [224.80612182617188, 243.66738891601562, 0.9973102807998657], "7": [530.3711547851562, 407.06854248046875, 0.8401432037353516], "8": [105.23391723632812, 364.5209045410156, 0.9342049360275269], "9": [496.1805419921875, 450.454345703125, 0.7733336091041565], "10": [122.88584899902344, 212.66192626953125, 0.9328668117523193], "11": [428.0113830566406, 480.0, 0.15033316612243652], "12": [275.2075500488281, 480.0, 0.21374480426311493], "13": [480.21563720703125, 431.4689636230469, 0.0012383919674903154], "14": [276.16278076171875, 443.63690185546875, 0.0019959830678999424], "15": [449.8973693847656, 466.8622131347656, 0.0001257468102267012], "16": [251.08493041992188, 468.3171081542969, 0.00018847425235435367]}} +{"t": 63.45958, "tracked": true, "track_id": 1, "bbox": [86.00899505615234, 39.50754165649414, 562.4256591796875, 480.0], "det_conf": 0.9115381836891174, "mean_kpt_conf": 0.9239359660582109, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.926328926471734, "right_lift": -0.7044972375004588, "left_bend": 0.31110502635416976, "right_bend": 0.7870603865778139}, "keypoints": {"0": [335.99456787109375, 149.63528442382812, 0.9991723299026489], "1": [357.5, 121.38450622558594, 0.998681366443634], "2": [312.8928527832031, 125.62388610839844, 0.9955553412437439], "3": [391.8221740722656, 123.59928894042969, 0.9677944183349609], "4": [284.4623107910156, 131.77113342285156, 0.7629212737083435], "5": [457.79119873046875, 241.6887969970703, 0.991240918636322], "6": [225.16441345214844, 244.27627563476562, 0.9971818923950195], "7": [525.6117553710938, 408.45684814453125, 0.8301855325698853], "8": [106.92890930175781, 361.6438903808594, 0.9301155805587769], "9": [496.662841796875, 451.58856201171875, 0.761581301689148], "10": [124.85844421386719, 213.08935546875, 0.9288656711578369], "11": [424.4658508300781, 480.0, 0.148688405752182], "12": [273.0545349121094, 480.0, 0.21204595267772675], "13": [476.83953857421875, 431.155029296875, 0.001303591183386743], "14": [274.97509765625, 443.356201171875, 0.0021045412868261337], "15": [446.9834289550781, 462.089599609375, 0.00013665024016518146], "16": [252.24954223632812, 466.3320617675781, 0.00020409298304002732]}} +{"t": 63.520745, "tracked": true, "track_id": 1, "bbox": [86.1945571899414, 39.08805465698242, 562.1800537109375, 479.99847412109375], "det_conf": 0.9113261699676514, "mean_kpt_conf": 0.9246423515406522, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9264725417257523, "right_lift": -0.7083942764942803, "left_bend": 0.2346841740279431, "right_bend": 0.7927595332965183}, "keypoints": {"0": [335.6068115234375, 149.08201599121094, 0.999158501625061], "1": [357.26544189453125, 121.01220703125, 0.9986851811408997], "2": [312.5995178222656, 125.2994384765625, 0.9955175518989563], "3": [391.67523193359375, 123.36923217773438, 0.9677820205688477], "4": [284.4745788574219, 131.55674743652344, 0.7708222270011902], "5": [457.34002685546875, 238.6412811279297, 0.9913357496261597], "6": [224.09881591796875, 243.45071411132812, 0.9972324967384338], "7": [524.3284912109375, 403.54345703125, 0.8377649784088135], "8": [106.86555480957031, 361.112060546875, 0.9331923723220825], "9": [504.0052795410156, 458.9754638671875, 0.7520599961280823], "10": [126.6417236328125, 212.74441528320312, 0.9275147914886475], "11": [425.2469482421875, 480.0, 0.15578918159008026], "12": [273.2130432128906, 480.0, 0.2211129069328308], "13": [478.801025390625, 428.0292663574219, 0.0013060320634394884], "14": [273.85400390625, 443.3810119628906, 0.00211421400308609], "15": [446.7774353027344, 463.5518798828125, 0.00014049150922801346], "16": [249.87179565429688, 469.44219970703125, 0.00020937422232236713]}} +{"t": 63.585917, "tracked": true, "track_id": 1, "bbox": [83.12174987792969, 38.493751525878906, 563.4031982421875, 479.97601318359375], "det_conf": 0.9088609218597412, "mean_kpt_conf": 0.9272696646777067, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.92036879253446, "right_lift": -0.7039694031017633, "left_bend": 0.29225593357179275, "right_bend": 0.7798472898566156}, "keypoints": {"0": [334.8566589355469, 149.20616149902344, 0.9992043375968933], "1": [356.58831787109375, 121.12007141113281, 0.9987404942512512], "2": [311.89776611328125, 125.34344482421875, 0.9956140518188477], "3": [391.1423034667969, 123.47196960449219, 0.9692844152450562], "4": [283.6236877441406, 131.61968994140625, 0.7593938112258911], "5": [457.98699951171875, 238.91151428222656, 0.9918273687362671], "6": [223.9310760498047, 243.7005157470703, 0.9973280429840088], "7": [527.5626831054688, 402.6630554199219, 0.8480319380760193], "8": [106.72029113769531, 359.8780517578125, 0.9362685084342957], "9": [499.2354736328125, 452.55609130859375, 0.7723835706710815], "10": [121.21717834472656, 212.71945190429688, 0.9318897724151611], "11": [425.95098876953125, 480.0, 0.16644011437892914], "12": [273.1550598144531, 480.0, 0.23290768265724182], "13": [480.18292236328125, 431.1644592285156, 0.0012985082576051354], "14": [274.0328063964844, 444.60205078125, 0.002074375282973051], "15": [449.9720458984375, 464.79119873046875, 0.00013086585386190563], "16": [250.51739501953125, 468.2782897949219, 0.00019427595543675125]}} +{"t": 63.649959, "tracked": true, "track_id": 1, "bbox": [89.89434051513672, 38.22724914550781, 571.7734985351562, 479.87152099609375], "det_conf": 0.9089221358299255, "mean_kpt_conf": 0.9098050973632119, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9260965263015916, "right_lift": -0.6727468678668359, "left_bend": 0.28099621523400337, "right_bend": 0.7712780891386426}, "keypoints": {"0": [335.3366394042969, 150.24310302734375, 0.9991186261177063], "1": [356.04193115234375, 120.94264221191406, 0.9984278678894043], "2": [311.93145751953125, 125.31214904785156, 0.9956576824188232], "3": [390.3226318359375, 122.42997741699219, 0.9505027532577515], "4": [282.20745849609375, 131.07936096191406, 0.760045051574707], "5": [460.8175964355469, 240.74855041503906, 0.9851740002632141], "6": [227.24632263183594, 247.2490997314453, 0.996559202671051], "7": [527.0656127929688, 403.3624572753906, 0.7500888109207153], "8": [111.33003234863281, 352.64874267578125, 0.9328317642211914], "9": [496.229736328125, 460.35986328125, 0.7075314521789551], "10": [128.87232971191406, 199.88232421875, 0.9319188594818115], "11": [436.8646240234375, 470.22064208984375, 0.11272579431533813], "12": [285.83746337890625, 475.9701232910156, 0.18840351700782776], "13": [478.3183898925781, 427.9836730957031, 0.0016281985444948077], "14": [291.57928466796875, 445.6972961425781, 0.003147220704704523], "15": [434.6208801269531, 474.8706359863281, 0.00016820724704302847], "16": [268.5921936035156, 480.0, 0.00028634420596063137]}} +{"t": 63.717852, "tracked": true, "track_id": 1, "bbox": [87.9258041381836, 37.887306213378906, 570.6487426757812, 479.8919982910156], "det_conf": 0.9088189601898193, "mean_kpt_conf": 0.9120761101896112, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.926472020973794, "right_lift": -0.6756413928766501, "left_bend": 0.26571613667396027, "right_bend": 0.7711831952973282}, "keypoints": {"0": [334.1871337890625, 150.07699584960938, 0.9991089701652527], "1": [354.66412353515625, 120.77130126953125, 0.9984721541404724], "2": [310.562744140625, 126.08766174316406, 0.9955215454101562], "3": [389.280517578125, 122.41288757324219, 0.9543701410293579], "4": [281.4283752441406, 133.22329711914062, 0.754508912563324], "5": [461.17333984375, 238.3362274169922, 0.9858600497245789], "6": [226.8340606689453, 247.675048828125, 0.9966886639595032], "7": [527.0293579101562, 400.4500732421875, 0.766331136226654], "8": [112.05418395996094, 352.8660888671875, 0.9369454979896545], "9": [497.2442626953125, 462.28289794921875, 0.7122280597686768], "10": [128.93276977539062, 200.20156860351562, 0.9328020811080933], "11": [438.05340576171875, 469.364501953125, 0.12448080629110336], "12": [286.4505920410156, 476.2388610839844, 0.20540079474449158], "13": [479.5773010253906, 426.77142333984375, 0.0016774757532402873], "14": [290.2566833496094, 446.70196533203125, 0.0032383340876549482], "15": [434.7203369140625, 475.23785400390625, 0.0001704451278783381], "16": [266.3101501464844, 480.0, 0.00029081859975121915]}} +{"t": 63.783174, "tracked": true, "track_id": 1, "bbox": [89.20509338378906, 37.29969787597656, 573.9513549804688, 479.8561706542969], "det_conf": 0.9082717299461365, "mean_kpt_conf": 0.9099402373487299, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9231890795985204, "right_lift": -0.6637350811071946, "left_bend": 0.25501119184926946, "right_bend": 0.7671866102348787}, "keypoints": {"0": [331.5603332519531, 148.77099609375, 0.9990629553794861], "1": [352.8900451660156, 120.86015319824219, 0.9984996318817139], "2": [309.05364990234375, 125.30119323730469, 0.995175838470459], "3": [388.05615234375, 125.73873901367188, 0.960961103439331], "4": [281.3661804199219, 134.0967254638672, 0.7358396053314209], "5": [457.6150817871094, 241.17831420898438, 0.9857693314552307], "6": [226.96534729003906, 248.03750610351562, 0.9966754913330078], "7": [524.0062255859375, 400.6480712890625, 0.7672644257545471], "8": [110.74717712402344, 351.167724609375, 0.9372879266738892], "9": [498.5280456542969, 459.81097412109375, 0.7034605741500854], "10": [128.04039001464844, 199.58079528808594, 0.9293457269668579], "11": [435.0545654296875, 467.77813720703125, 0.13102416694164276], "12": [285.4953918457031, 473.7095947265625, 0.2156342715024948], "13": [479.5882873535156, 427.40057373046875, 0.0017273781122639775], "14": [291.1187438964844, 445.2848205566406, 0.003360945265740156], "15": [440.95782470703125, 474.564697265625, 0.00017857429338619113], "16": [267.5567932128906, 480.0, 0.00030917671392671764]}} +{"t": 63.852639, "tracked": true, "track_id": 1, "bbox": [88.80480194091797, 36.3824577331543, 573.2571411132812, 479.8584899902344], "det_conf": 0.9069646596908569, "mean_kpt_conf": 0.9095992879434065, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9251027207221413, "right_lift": -0.6543551478359146, "left_bend": 0.25274436871742584, "right_bend": 0.7622776887432255}, "keypoints": {"0": [329.47833251953125, 148.307373046875, 0.9990567564964294], "1": [350.5421447753906, 120.31646728515625, 0.9985462427139282], "2": [307.0965881347656, 125.35041809082031, 0.9949331879615784], "3": [386.29522705078125, 125.49555969238281, 0.9644503593444824], "4": [280.6107482910156, 135.02279663085938, 0.720708429813385], "5": [456.4713439941406, 242.04949951171875, 0.9859469532966614], "6": [227.9617156982422, 248.77853393554688, 0.9966517090797424], "7": [521.8753051757812, 401.39288330078125, 0.7695061564445496], "8": [110.88591003417969, 350.0882873535156, 0.9371674060821533], "9": [497.16229248046875, 459.11431884765625, 0.7088152766227722], "10": [127.642822265625, 199.25257873535156, 0.9298096895217896], "11": [434.1639709472656, 468.2928466796875, 0.13043159246444702], "12": [286.17962646484375, 474.11834716796875, 0.2142522931098938], "13": [478.02685546875, 426.3902282714844, 0.0017487568547949195], "14": [291.9771728515625, 444.38812255859375, 0.003405697410926223], "15": [440.0496520996094, 472.0226135253906, 0.0001830832043197006], "16": [267.9729919433594, 480.0, 0.00031895231222733855]}} +{"t": 63.915304, "tracked": true, "track_id": 1, "bbox": [88.3017349243164, 36.12820053100586, 571.3573608398438, 479.84429931640625], "det_conf": 0.9064379930496216, "mean_kpt_conf": 0.9095824740149758, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9225907666293988, "right_lift": -0.6628614283348624, "left_bend": 0.25710103299735126, "right_bend": 0.7635994009210813}, "keypoints": {"0": [327.1918029785156, 148.82574462890625, 0.9990444779396057], "1": [349.30401611328125, 120.62773132324219, 0.9985929131507874], "2": [304.8719177246094, 125.16876220703125, 0.9945827126502991], "3": [386.69677734375, 125.71624755859375, 0.9674311280250549], "4": [278.744140625, 133.96890258789062, 0.6951677799224854], "5": [456.53192138671875, 241.5480499267578, 0.9858890771865845], "6": [227.37176513671875, 248.2841796875, 0.996523916721344], "7": [523.0437622070312, 400.6107177734375, 0.7766159176826477], "8": [111.46609497070312, 350.8954772949219, 0.9367973208427429], "9": [497.3462219238281, 459.46923828125, 0.7232852578163147], "10": [127.100830078125, 200.35739135742188, 0.9314767122268677], "11": [433.56365966796875, 467.54449462890625, 0.12885934114456177], "12": [284.83673095703125, 473.061767578125, 0.20947349071502686], "13": [477.7537841796875, 425.5498352050781, 0.0017278253799304366], "14": [290.21514892578125, 442.9359130859375, 0.0033327070996165276], "15": [440.3831787109375, 473.14788818359375, 0.000177929294295609], "16": [265.6890563964844, 479.50830078125, 0.0003095102438237518]}} +{"t": 63.949347, "tracked": true, "track_id": 1, "bbox": [88.16537475585938, 35.985252380371094, 569.5651245117188, 479.8416442871094], "det_conf": 0.9074578881263733, "mean_kpt_conf": 0.9071084965359081, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9240214027153093, "right_lift": -0.6567202493328339, "left_bend": 0.25041938141714415, "right_bend": 0.7645493386133752}, "keypoints": {"0": [325.7846374511719, 148.197265625, 0.9990177154541016], "1": [348.32305908203125, 120.59521484375, 0.9986009001731873], "2": [303.84075927734375, 125.01675415039062, 0.9944853186607361], "3": [386.18896484375, 127.33522033691406, 0.9693072438240051], "4": [278.4859924316406, 135.00936889648438, 0.6938626766204834], "5": [455.1498718261719, 242.21475219726562, 0.9855073690414429], "6": [227.59683227539062, 248.53875732421875, 0.9964689016342163], "7": [520.8072509765625, 400.8921203613281, 0.7681053280830383], "8": [110.39883422851562, 350.597900390625, 0.9353905916213989], "9": [496.03900146484375, 460.403564453125, 0.7092825770378113], "10": [127.87588500976562, 198.8211669921875, 0.9281648397445679], "11": [432.4836120605469, 466.50469970703125, 0.12913218140602112], "12": [284.92913818359375, 471.771240234375, 0.2117006629705429], "13": [474.7491149902344, 425.7513427734375, 0.001778369420208037], "14": [289.24786376953125, 442.8514404296875, 0.0034619986545294523], "15": [437.1409912109375, 474.5924377441406, 0.00018775391799863428], "16": [262.6631164550781, 480.0, 0.000329270405927673]}} +{"t": 64.016162, "tracked": true, "track_id": 1, "bbox": [88.17676544189453, 35.91524124145508, 572.8821411132812, 479.8442077636719], "det_conf": 0.9051008820533752, "mean_kpt_conf": 0.9065294807607477, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.924453308595327, "right_lift": -0.660142957964827, "left_bend": 0.27360311936135573, "right_bend": 0.7649778080538755}, "keypoints": {"0": [325.4556579589844, 147.8443145751953, 0.9990425705909729], "1": [347.89794921875, 119.68426513671875, 0.9986550807952881], "2": [303.32080078125, 124.44012451171875, 0.9944260120391846], "3": [386.39007568359375, 125.37091064453125, 0.970705509185791], "4": [277.96148681640625, 133.84857177734375, 0.6810013651847839], "5": [457.6184997558594, 241.9564666748047, 0.9858776330947876], "6": [226.53213500976562, 248.84994506835938, 0.996498703956604], "7": [523.62646484375, 401.9932861328125, 0.767835259437561], "8": [109.68362426757812, 351.5428161621094, 0.9329935908317566], "9": [494.69140625, 459.1890563964844, 0.7165636420249939], "10": [126.68704223632812, 199.60032653808594, 0.9282249212265015], "11": [435.1778869628906, 467.4934997558594, 0.12712045013904572], "12": [285.7305908203125, 473.0609436035156, 0.20678819715976715], "13": [478.2701416015625, 427.16473388671875, 0.0017390165012329817], "14": [293.4436340332031, 444.4953918457031, 0.003361953655257821], "15": [440.47314453125, 474.36871337890625, 0.00017882528482005], "16": [271.222900390625, 480.0, 0.0003138102765660733]}} +{"t": 64.080916, "tracked": true, "track_id": 1, "bbox": [88.36234283447266, 35.64260482788086, 572.9226684570312, 479.85650634765625], "det_conf": 0.9054393768310547, "mean_kpt_conf": 0.9022595394741405, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.928903474465021, "right_lift": -0.6554056431021473, "left_bend": 0.3012409944886342, "right_bend": 0.7658545346671085}, "keypoints": {"0": [324.61468505859375, 148.40390014648438, 0.9990319013595581], "1": [346.6578063964844, 120.03515625, 0.9986579418182373], "2": [302.6168212890625, 125.04850769042969, 0.994245707988739], "3": [385.5340270996094, 125.1295166015625, 0.9715319275856018], "4": [278.13824462890625, 134.09616088867188, 0.6662154197692871], "5": [457.62457275390625, 244.22889709472656, 0.9852698445320129], "6": [227.4812774658203, 248.85745239257812, 0.9963488578796387], "7": [522.612060546875, 407.24139404296875, 0.7501989603042603], "8": [109.3243408203125, 351.39031982421875, 0.9281666874885559], "9": [491.125, 456.689208984375, 0.7096423506736755], "10": [127.8067626953125, 198.7357940673828, 0.925545334815979], "11": [433.4839172363281, 468.94140625, 0.11632820963859558], "12": [285.01873779296875, 473.4696044921875, 0.19222746789455414], "13": [475.322265625, 428.332275390625, 0.0017195262480527163], "14": [293.8992919921875, 444.0459899902344, 0.0033618463203310966], "15": [438.67230224609375, 472.8878173828125, 0.00018176906451117247], "16": [272.99346923828125, 480.0, 0.00032254011603072286]}} +{"t": 64.149112, "tracked": true, "track_id": 1, "bbox": [88.75094604492188, 35.553165435791016, 573.6990356445312, 479.83868408203125], "det_conf": 0.9038399457931519, "mean_kpt_conf": 0.9065471454100176, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9225621473127935, "right_lift": -0.6635357777577284, "left_bend": 0.26942195647024375, "right_bend": 0.764131093728013}, "keypoints": {"0": [325.0672302246094, 148.08673095703125, 0.9990507960319519], "1": [347.4056091308594, 119.50733947753906, 0.9986922144889832], "2": [302.7166442871094, 124.77528381347656, 0.9943191409111023], "3": [386.6285705566406, 123.96658325195312, 0.971472442150116], "4": [277.74725341796875, 133.6697998046875, 0.6703523993492126], "5": [458.838134765625, 239.25820922851562, 0.9859445095062256], "6": [227.1504364013672, 248.2617950439453, 0.9964656829833984], "7": [525.487548828125, 398.6166687011719, 0.7731333374977112], "8": [111.25747680664062, 351.0482482910156, 0.9332208037376404], "9": [496.4674072265625, 458.64898681640625, 0.7211569547653198], "10": [127.13389587402344, 199.31930541992188, 0.9282103180885315], "11": [436.49566650390625, 467.0634765625, 0.1320161670446396], "12": [286.65740966796875, 473.4491882324219, 0.2124727964401245], "13": [479.8072509765625, 427.5027770996094, 0.0017492673359811306], "14": [294.66070556640625, 446.3479919433594, 0.0033692035358399153], "15": [441.5655517578125, 475.1307678222656, 0.00017659286095295101], "16": [272.73291015625, 480.0, 0.0003094837302342057]}} +{"t": 64.21219, "tracked": true, "track_id": 1, "bbox": [88.95297241210938, 34.88731384277344, 574.2559204101562, 479.8468322753906], "det_conf": 0.9054494500160217, "mean_kpt_conf": 0.9063876542178068, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9261902075948685, "right_lift": -0.6583807311502946, "left_bend": 0.24995443847611315, "right_bend": 0.768045133679138}, "keypoints": {"0": [325.4612731933594, 147.78831481933594, 0.9990429282188416], "1": [347.629150390625, 119.42805480957031, 0.9986650943756104], "2": [303.24713134765625, 124.64710998535156, 0.9944040775299072], "3": [386.392333984375, 124.49540710449219, 0.9708651900291443], "4": [278.4190673828125, 133.95260620117188, 0.6809825897216797], "5": [457.9915466308594, 241.04563903808594, 0.9859104156494141], "6": [226.92376708984375, 247.803955078125, 0.9965147376060486], "7": [523.64794921875, 402.3219909667969, 0.7692553400993347], "8": [109.7384033203125, 350.3070983886719, 0.9343628883361816], "9": [498.4866943359375, 462.060546875, 0.7124059200286865], "10": [128.59291076660156, 198.32052612304688, 0.9278550148010254], "11": [433.8265075683594, 467.72088623046875, 0.12823310494422913], "12": [284.3004455566406, 473.3090515136719, 0.20919206738471985], "13": [477.71075439453125, 427.1080627441406, 0.001718495157547295], "14": [291.3782653808594, 445.2962646484375, 0.003356712171807885], "15": [439.69921875, 474.0775146484375, 0.00017818990454543382], "16": [267.9139404296875, 480.0, 0.00031421889434568584]}} +{"t": 64.280554, "tracked": true, "track_id": 1, "bbox": [89.26518249511719, 34.590572357177734, 570.2399291992188, 479.83282470703125], "det_conf": 0.9077144861221313, "mean_kpt_conf": 0.9026045203208923, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.929820276911287, "right_lift": -0.6575516060503682, "left_bend": 0.2691169324836364, "right_bend": 0.7650968238582876}, "keypoints": {"0": [325.18768310546875, 147.74893188476562, 0.9990482926368713], "1": [347.19085693359375, 119.15052795410156, 0.9986888766288757], "2": [302.97332763671875, 124.48170471191406, 0.9943874478340149], "3": [386.2301940917969, 123.78457641601562, 0.971574604511261], "4": [278.5017395019531, 133.54684448242188, 0.6735827326774597], "5": [458.61883544921875, 241.49415588378906, 0.9850735068321228], "6": [228.10235595703125, 247.82688903808594, 0.9964008331298828], "7": [523.1725463867188, 404.59490966796875, 0.7510111331939697], "8": [109.88044738769531, 351.0071716308594, 0.9305992722511292], "9": [494.0511169433594, 462.1260681152344, 0.7023753523826599], "10": [127.45208740234375, 199.23313903808594, 0.9259076714515686], "11": [434.17523193359375, 467.743896484375, 0.11578690260648727], "12": [285.2141418457031, 472.81005859375, 0.19357392191886902], "13": [474.5430603027344, 426.1190185546875, 0.0016949719283729792], "14": [290.1091613769531, 443.46624755859375, 0.0033477526158094406], "15": [435.8428039550781, 473.83807373046875, 0.00018157990416511893], "16": [266.3192138671875, 480.0, 0.00032325429492630064]}} +{"t": 64.34499, "tracked": true, "track_id": 1, "bbox": [90.08877563476562, 34.59567642211914, 576.2244873046875, 479.8154602050781], "det_conf": 0.9029574394226074, "mean_kpt_conf": 0.9048928293314847, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9276361751043424, "right_lift": -0.6626047759349782, "left_bend": 0.2849181407498335, "right_bend": 0.7659382504894645}, "keypoints": {"0": [326.2042236328125, 147.26234436035156, 0.9990629553794861], "1": [348.3692626953125, 119.18893432617188, 0.9986960291862488], "2": [304.0650329589844, 124.37675476074219, 0.9945329427719116], "3": [386.96319580078125, 125.16471862792969, 0.9714933633804321], "4": [279.23858642578125, 134.61813354492188, 0.6774313449859619], "5": [458.7735290527344, 241.58590698242188, 0.9855782389640808], "6": [228.8836669921875, 248.23809814453125, 0.9964815378189087], "7": [524.1031494140625, 403.8470458984375, 0.7616294026374817], "8": [111.21835327148438, 352.3352966308594, 0.9333184361457825], "9": [493.5140380859375, 458.23480224609375, 0.7088476419448853], "10": [128.0922088623047, 201.18836975097656, 0.9267492294311523], "11": [435.57080078125, 468.67645263671875, 0.12490518391132355], "12": [286.60601806640625, 473.710693359375, 0.2063143104314804], "13": [475.6954650878906, 427.93682861328125, 0.0017130905762314796], "14": [289.1314697265625, 444.49957275390625, 0.00334746646694839], "15": [438.8326416015625, 475.93402099609375, 0.00017869420116767287], "16": [264.1995849609375, 480.0, 0.0003156315360683948]}} +{"t": 64.405568, "tracked": true, "track_id": 1, "bbox": [90.7660903930664, 34.530357360839844, 572.9506225585938, 479.80908203125], "det_conf": 0.904983401298523, "mean_kpt_conf": 0.9037237655032765, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9292854492119845, "right_lift": -0.6628865485138767, "left_bend": 0.28570867735964706, "right_bend": 0.7690174228878494}, "keypoints": {"0": [325.8717956542969, 147.58056640625, 0.999068558216095], "1": [348.0284729003906, 119.2691650390625, 0.9987066984176636], "2": [303.6689147949219, 124.36811828613281, 0.9945446252822876], "3": [386.8507995605469, 124.44953918457031, 0.9718244671821594], "4": [278.9196472167969, 133.70802307128906, 0.6755613684654236], "5": [458.7286376953125, 241.92733764648438, 0.9854694604873657], "6": [228.6005859375, 247.40293884277344, 0.99649578332901], "7": [523.875732421875, 405.83209228515625, 0.7562062740325928], "8": [110.89503479003906, 351.6147155761719, 0.9326874017715454], "9": [492.14263916015625, 461.35064697265625, 0.7039543986320496], "10": [129.0948028564453, 201.28033447265625, 0.9264423847198486], "11": [434.54412841796875, 470.534912109375, 0.12219497561454773], "12": [285.6054992675781, 475.1067199707031, 0.2036164402961731], "13": [475.46112060546875, 430.2225036621094, 0.0016623843694105744], "14": [290.4627685546875, 446.13616943359375, 0.003289722604677081], "15": [438.59637451171875, 476.6014709472656, 0.00017483282135799527], "16": [266.71234130859375, 480.0, 0.00031174588366411626]}} +{"t": 64.441429, "tracked": true, "track_id": 1, "bbox": [91.39620208740234, 34.55756759643555, 574.1796875, 479.8230895996094], "det_conf": 0.9032900333404541, "mean_kpt_conf": 0.9030345624143427, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9303907446939068, "right_lift": -0.6671123202896301, "left_bend": 0.28335157097768554, "right_bend": 0.7687867573334812}, "keypoints": {"0": [326.534423828125, 147.6897430419922, 0.9990466237068176], "1": [348.61614990234375, 119.17672729492188, 0.9986567497253418], "2": [304.17034912109375, 124.6202392578125, 0.9945259690284729], "3": [387.5821838378906, 124.02764892578125, 0.9710266590118408], "4": [279.5787658691406, 134.05116271972656, 0.6805659532546997], "5": [459.7789306640625, 241.66163635253906, 0.9851776957511902], "6": [229.27700805664062, 247.7052001953125, 0.996517539024353], "7": [524.3734741210938, 405.6092529296875, 0.748932957649231], "8": [113.19111633300781, 351.6606140136719, 0.9325821399688721], "9": [493.6495666503906, 459.91558837890625, 0.6998661160469055], "10": [130.41427612304688, 201.35870361328125, 0.9264817833900452], "11": [434.9825744628906, 470.3646240234375, 0.12153034657239914], "12": [286.3233337402344, 475.326416015625, 0.20473693311214447], "13": [477.04071044921875, 429.8453369140625, 0.0016818270087242126], "14": [295.1972961425781, 446.5703430175781, 0.0034028112422674894], "15": [438.042724609375, 475.94891357421875, 0.0001777429279172793], "16": [273.50067138671875, 480.0, 0.0003218170895706862]}} +{"t": 64.475038, "tracked": true, "track_id": 1, "bbox": [91.41485595703125, 34.861141204833984, 575.654541015625, 479.8382873535156], "det_conf": 0.9044392704963684, "mean_kpt_conf": 0.9049482237208973, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9298177799746956, "right_lift": -0.6682684799355358, "left_bend": 0.2714765063710512, "right_bend": 0.7678062693231101}, "keypoints": {"0": [326.8758544921875, 147.81552124023438, 0.9990376234054565], "1": [348.5702819824219, 119.21139526367188, 0.9986265897750854], "2": [304.34136962890625, 124.89993286132812, 0.9945089221000671], "3": [386.9530029296875, 123.43572998046875, 0.9695593118667603], "4": [279.40069580078125, 134.2021942138672, 0.686289370059967], "5": [458.97265625, 239.9793243408203, 0.9854031801223755], "6": [228.864990234375, 247.6326446533203, 0.9964843988418579], "7": [523.3929443359375, 402.73974609375, 0.7584721446037292], "8": [113.28683471679688, 351.457275390625, 0.9328413009643555], "9": [493.9438781738281, 459.8642578125, 0.7062718868255615], "10": [129.80181884765625, 201.18264770507812, 0.9269357323646545], "11": [434.95721435546875, 468.73876953125, 0.1279228776693344], "12": [286.54827880859375, 474.55084228515625, 0.2111290693283081], "13": [477.56182861328125, 429.525146484375, 0.0017474580090492964], "14": [295.65802001953125, 447.71942138671875, 0.0034617437049746513], "15": [438.07342529296875, 476.0406799316406, 0.00018066441407427192], "16": [273.99188232421875, 480.0, 0.00032150212791748345]}} +{"t": 64.541083, "tracked": true, "track_id": 1, "bbox": [90.01058197021484, 35.126895904541016, 568.8984985351562, 479.85205078125], "det_conf": 0.9077076315879822, "mean_kpt_conf": 0.9046309698711742, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9307523096562828, "right_lift": -0.6675688870065439, "left_bend": 0.25548393954590454, "right_bend": 0.7646002503109887}, "keypoints": {"0": [326.65679931640625, 147.65560913085938, 0.9990319013595581], "1": [348.65533447265625, 119.35079956054688, 0.9986525177955627], "2": [304.59783935546875, 124.86900329589844, 0.9943081736564636], "3": [387.6678466796875, 124.40528869628906, 0.9709706902503967], "4": [280.5892639160156, 134.58767700195312, 0.674665093421936], "5": [458.83831787109375, 240.64309692382812, 0.9854723811149597], "6": [230.6126708984375, 248.19937133789062, 0.9963535070419312], "7": [522.3154296875, 402.2222595214844, 0.7638349533081055], "8": [114.48638916015625, 352.3193054199219, 0.9310136437416077], "9": [495.92218017578125, 460.03131103515625, 0.7114906311035156], "10": [129.49459838867188, 203.22927856445312, 0.9251471757888794], "11": [433.5702209472656, 468.2912292480469, 0.12677402794361115], "12": [286.076171875, 473.76873779296875, 0.20589792728424072], "13": [474.42822265625, 427.389404296875, 0.001791246933862567], "14": [291.7719421386719, 445.516357421875, 0.0034611495211720467], "15": [436.02984619140625, 475.5189208984375, 0.00018793570052366704], "16": [268.3726501464844, 480.0, 0.0003283258993178606]}} +{"t": 64.577012, "tracked": true, "track_id": 1, "bbox": [86.74895477294922, 35.69859313964844, 566.3972778320312, 479.93768310546875], "det_conf": 0.9068902730941772, "mean_kpt_conf": 0.92212360013615, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9318105796699422, "right_lift": -0.6978992018882235, "left_bend": 0.2841493527994463, "right_bend": 0.7801459383059943}, "keypoints": {"0": [325.88043212890625, 147.21902465820312, 0.9991719722747803], "1": [348.4084777832031, 119.24703979492188, 0.9988887906074524], "2": [304.1206359863281, 124.36166381835938, 0.9945077300071716], "3": [387.79608154296875, 122.57829284667969, 0.9793353080749512], "4": [280.941162109375, 131.748291015625, 0.681715190410614], "5": [457.12847900390625, 240.02374267578125, 0.9920269846916199], "6": [225.6671142578125, 242.93626403808594, 0.9973262548446655], "7": [522.2061157226562, 407.10150146484375, 0.8510734438896179], "8": [106.89228820800781, 358.6767272949219, 0.9374904036521912], "9": [495.81500244140625, 453.0606689453125, 0.7799791097640991], "10": [122.5582275390625, 213.70510864257812, 0.9318444132804871], "11": [423.4820556640625, 480.0, 0.17168520390987396], "12": [272.04498291015625, 480.0, 0.24197950959205627], "13": [477.47906494140625, 431.956298828125, 0.0013236425584182143], "14": [272.83807373046875, 444.6346130371094, 0.002181960502639413], "15": [451.87396240234375, 460.8294677734375, 0.00013146056153345853], "16": [248.9467010498047, 467.2950439453125, 0.00020380091154947877]}} +{"t": 64.638252, "tracked": true, "track_id": 1, "bbox": [85.68719482421875, 36.116641998291016, 564.1348876953125, 479.962890625], "det_conf": 0.9076189994812012, "mean_kpt_conf": 0.9227079044688832, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9299622006799843, "right_lift": -0.7055575966470793, "left_bend": 0.2730869487067927, "right_bend": 0.7804052016203049}, "keypoints": {"0": [325.54559326171875, 147.62144470214844, 0.9991809725761414], "1": [348.34149169921875, 119.82054138183594, 0.9989116191864014], "2": [304.0373840332031, 124.585205078125, 0.9944278001785278], "3": [387.9836120605469, 123.0740966796875, 0.9798222184181213], "4": [281.18011474609375, 131.47943115234375, 0.6732026934623718], "5": [457.2926025390625, 238.48794555664062, 0.9921791553497314], "6": [225.90521240234375, 242.35862731933594, 0.997340738773346], "7": [523.3963623046875, 405.69354248046875, 0.8584536910057068], "8": [107.76661682128906, 359.98126220703125, 0.9394285082817078], "9": [497.3453369140625, 455.5572509765625, 0.7843127846717834], "10": [122.10440063476562, 213.70925903320312, 0.9325267672538757], "11": [423.3852233886719, 480.0, 0.17301127314567566], "12": [271.5144958496094, 480.0, 0.24195025861263275], "13": [477.2319030761719, 430.1204833984375, 0.0013094134628772736], "14": [269.188232421875, 443.11334228515625, 0.0021371159236878157], "15": [451.4370422363281, 462.3275451660156, 0.0001298160059377551], "16": [242.7747344970703, 467.1144104003906, 0.00019975997565779835]}} +{"t": 64.706473, "tracked": true, "track_id": 1, "bbox": [85.60458374023438, 36.35102844238281, 561.8506469726562, 480.0], "det_conf": 0.9074960947036743, "mean_kpt_conf": 0.9242175167257135, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9292096321041227, "right_lift": -0.7020885023013702, "left_bend": 0.25320192407184866, "right_bend": 0.7814213852690578}, "keypoints": {"0": [326.1785888671875, 147.80215454101562, 0.9992038607597351], "1": [348.48468017578125, 119.85862731933594, 0.998913049697876], "2": [304.4056396484375, 124.75460815429688, 0.9946681261062622], "3": [387.4198303222656, 122.828125, 0.9788404703140259], "4": [281.0289001464844, 131.65304565429688, 0.6854871511459351], "5": [455.851318359375, 240.35543823242188, 0.9922367930412292], "6": [226.29039001464844, 242.69937133789062, 0.9974058270454407], "7": [522.3604736328125, 407.5870361328125, 0.858853280544281], "8": [107.84420776367188, 359.48199462890625, 0.9414763450622559], "9": [501.41766357421875, 454.8732604980469, 0.7851223349571228], "10": [123.18412780761719, 215.01318359375, 0.9341854453086853], "11": [421.1005554199219, 480.0, 0.17787329852581024], "12": [270.0008544921875, 480.0, 0.2503848671913147], "13": [474.839111328125, 433.8934631347656, 0.0012924991315230727], "14": [264.7136535644531, 446.2086181640625, 0.0021205914672464132], "15": [452.1561279296875, 461.1784973144531, 0.00012596162559930235], "16": [237.31361389160156, 467.40704345703125, 0.0001936070912051946]}} +{"t": 64.769645, "tracked": true, "track_id": 1, "bbox": [86.96729278564453, 36.41362762451172, 562.9580688476562, 480.0], "det_conf": 0.9059428572654724, "mean_kpt_conf": 0.9230659766630693, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9347981229573505, "right_lift": -0.7008074562289586, "left_bend": 0.2843122590834244, "right_bend": 0.7869504540757976}, "keypoints": {"0": [325.97955322265625, 147.5999755859375, 0.9991863369941711], "1": [348.2389221191406, 119.7869873046875, 0.998900294303894], "2": [304.1808776855469, 125.4429931640625, 0.9946198463439941], "3": [387.5802917480469, 123.73342895507812, 0.9791858792304993], "4": [281.41107177734375, 134.01148986816406, 0.6848087310791016], "5": [457.0872497558594, 240.70452880859375, 0.9921866655349731], "6": [226.11050415039062, 243.50048828125, 0.9973769187927246], "7": [521.437744140625, 410.0688171386719, 0.854498028755188], "8": [106.319091796875, 361.1855773925781, 0.9398844838142395], "9": [495.811767578125, 453.7966003417969, 0.7801769971847534], "10": [124.57743835449219, 215.82472229003906, 0.9329015612602234], "11": [422.9019775390625, 480.0, 0.17226268351078033], "12": [271.48089599609375, 480.0, 0.243606299161911], "13": [477.8515930175781, 431.4320068359375, 0.001293390174396336], "14": [270.2261657714844, 444.1673583984375, 0.0021493195090442896], "15": [453.45770263671875, 460.8392028808594, 0.00012952172255609185], "16": [243.77444458007812, 468.87811279296875, 0.0002015843929257244]}} +{"t": 64.8352, "tracked": true, "track_id": 1, "bbox": [86.38722229003906, 36.24571990966797, 565.1630859375, 480.0], "det_conf": 0.9051381945610046, "mean_kpt_conf": 0.9245941909876737, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9251678095311553, "right_lift": -0.7014932253352625, "left_bend": 0.3047459316450018, "right_bend": 0.788218992793607}, "keypoints": {"0": [325.04376220703125, 147.76361083984375, 0.9992029070854187], "1": [347.8536376953125, 120.28547668457031, 0.9989262223243713], "2": [303.50274658203125, 125.0284423828125, 0.9946984052658081], "3": [387.0768737792969, 124.72438049316406, 0.9798257946968079], "4": [280.23138427734375, 133.02255249023438, 0.6819632649421692], "5": [455.87921142578125, 240.523681640625, 0.9922743439674377], "6": [225.13107299804688, 243.48336791992188, 0.9974023103713989], "7": [524.218994140625, 407.10089111328125, 0.8593945503234863], "8": [105.93751525878906, 360.8066101074219, 0.9414094686508179], "9": [495.23529052734375, 452.5122985839844, 0.7900757789611816], "10": [124.70787048339844, 214.93740844726562, 0.9353630542755127], "11": [422.35205078125, 480.0, 0.1738545447587967], "12": [270.732421875, 480.0, 0.2449961155653], "13": [476.5211486816406, 431.87445068359375, 0.0012787518789991736], "14": [268.1578369140625, 443.2769775390625, 0.002106335712596774], "15": [453.7978820800781, 462.5009765625, 0.00012570328544825315], "16": [240.91891479492188, 465.8585510253906, 0.00019480699847918004]}} +{"t": 64.870606, "tracked": true, "track_id": 1, "bbox": [85.39688873291016, 36.230892181396484, 562.9998779296875, 480.0], "det_conf": 0.9051593542098999, "mean_kpt_conf": 0.9255858226255937, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9259866425051396, "right_lift": -0.6965119927298247, "left_bend": 0.25942649263143136, "right_bend": 0.7860004680707943}, "keypoints": {"0": [324.8122253417969, 147.775146484375, 0.9992031455039978], "1": [347.48809814453125, 120.41067504882812, 0.9989192485809326], "2": [303.3753662109375, 125.1937255859375, 0.9947117567062378], "3": [386.54302978515625, 124.84329223632812, 0.9793323278427124], "4": [280.2980651855469, 133.1552734375, 0.6880753040313721], "5": [454.91448974609375, 240.12867736816406, 0.9924147725105286], "6": [224.9107208251953, 242.72061157226562, 0.9974007606506348], "7": [522.3779296875, 405.5881042480469, 0.8646268248558044], "8": [105.70672607421875, 358.430419921875, 0.9428577423095703], "9": [499.53125, 455.687255859375, 0.7887902855873108], "10": [124.21028137207031, 214.62998962402344, 0.9351118803024292], "11": [421.3370056152344, 480.0, 0.1797265112400055], "12": [270.0250244140625, 480.0, 0.2509726285934448], "13": [476.67449951171875, 430.48333740234375, 0.0012948773801326752], "14": [266.9228515625, 442.7601318359375, 0.0021201162599027157], "15": [453.8987121582031, 461.81011962890625, 0.00012797120143659413], "16": [239.2293701171875, 466.65228271484375, 0.00019677876844070852]}} +{"t": 64.905328, "tracked": true, "track_id": 1, "bbox": [89.67817687988281, 35.523902893066406, 570.2972412109375, 479.94378662109375], "det_conf": 0.9038536548614502, "mean_kpt_conf": 0.9079967412081632, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9284841060057177, "right_lift": -0.6680281829067934, "left_bend": 0.2619238300662209, "right_bend": 0.7703393831723494}, "keypoints": {"0": [325.9979248046875, 148.02059936523438, 0.9990346431732178], "1": [347.950439453125, 120.06982421875, 0.9986286163330078], "2": [303.87890625, 125.40721130371094, 0.9944241642951965], "3": [386.2243347167969, 125.85116577148438, 0.9701449871063232], "4": [279.2497863769531, 135.654296875, 0.6845473647117615], "5": [456.8809509277344, 241.4768829345703, 0.98598712682724], "6": [228.92697143554688, 248.50027465820312, 0.9964784979820251], "7": [521.3889770507812, 402.75628662109375, 0.7743459939956665], "8": [113.2987060546875, 352.3024597167969, 0.9349865913391113], "9": [494.69183349609375, 459.1173095703125, 0.7205614447593689], "10": [131.06277465820312, 202.1254119873047, 0.9288247227668762], "11": [433.1072998046875, 467.5324401855469, 0.1357313096523285], "12": [285.57989501953125, 473.045654296875, 0.21915045380592346], "13": [476.029296875, 429.34490966796875, 0.0018117997096851468], "14": [292.2740478515625, 447.0267028808594, 0.0035084413830190897], "15": [439.01629638671875, 476.91265869140625, 0.00018272532906848937], "16": [268.4307861328125, 480.0, 0.00031982376822270453]}} +{"t": 64.969228, "tracked": true, "track_id": 1, "bbox": [85.1343002319336, 35.99751663208008, 560.2869262695312, 480.0], "det_conf": 0.9057314991950989, "mean_kpt_conf": 0.9224067276174371, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9346189373007735, "right_lift": -0.704573399295156, "left_bend": 0.31133891638923183, "right_bend": 0.7942307057791005}, "keypoints": {"0": [323.6347351074219, 147.73101806640625, 0.9991886019706726], "1": [346.5073547363281, 120.3697509765625, 0.9989233613014221], "2": [302.0892639160156, 125.32357788085938, 0.994682252407074], "3": [386.0726623535156, 124.98805236816406, 0.9799631237983704], "4": [278.9955139160156, 133.59844970703125, 0.6835976839065552], "5": [455.62762451171875, 240.7467803955078, 0.992224931716919], "6": [222.03829956054688, 242.4905548095703, 0.9973804354667664], "7": [519.9384765625, 409.75006103515625, 0.8538392782211304], "8": [103.13870239257812, 360.542724609375, 0.9394544959068298], "9": [491.34771728515625, 450.2685241699219, 0.7763614654541016], "10": [124.12103271484375, 214.3287811279297, 0.9308583736419678], "11": [421.67974853515625, 480.0, 0.17459526658058167], "12": [268.06231689453125, 480.0, 0.24669933319091797], "13": [477.9725341796875, 431.4957580566406, 0.0012856507673859596], "14": [266.0210876464844, 443.0826721191406, 0.0021320933010429144], "15": [454.53460693359375, 462.14434814453125, 0.00012883574527222663], "16": [240.53152465820312, 467.6980285644531, 0.00020059559028595686]}} +{"t": 65.003236, "tracked": true, "track_id": 1, "bbox": [88.64976501464844, 35.55678939819336, 567.2301635742188, 479.9713439941406], "det_conf": 0.9066583514213562, "mean_kpt_conf": 0.9104627208276228, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9259027549290928, "right_lift": -0.6766638634893577, "left_bend": 0.2480943751134468, "right_bend": 0.7708962412494716}, "keypoints": {"0": [323.6321716308594, 148.2257080078125, 0.9990425705909729], "1": [346.27349853515625, 120.56822204589844, 0.998676598072052], "2": [302.0718078613281, 125.14164733886719, 0.9941436648368835], "3": [385.319580078125, 126.59857177734375, 0.9721669554710388], "4": [277.89501953125, 134.5358428955078, 0.666793942451477], "5": [455.3468017578125, 240.89596557617188, 0.9869694709777832], "6": [227.1426239013672, 248.66793823242188, 0.9965757727622986], "7": [520.2516479492188, 399.9791564941406, 0.7957562804222107], "8": [112.42424011230469, 354.0959167480469, 0.9377199411392212], "9": [496.108642578125, 458.37542724609375, 0.7369624972343445], "10": [128.67396545410156, 203.9736785888672, 0.9302822351455688], "11": [432.2445983886719, 468.417724609375, 0.1490875482559204], "12": [283.6404113769531, 474.08868408203125, 0.23307788372039795], "13": [475.93072509765625, 430.5129089355469, 0.0018285643309354782], "14": [286.6938781738281, 448.3453369140625, 0.0034225413110107183], "15": [440.5638122558594, 477.70782470703125, 0.00017711154941935092], "16": [261.1025695800781, 480.0, 0.00030311179580166936]}} +{"t": 65.067256, "tracked": true, "track_id": 1, "bbox": [89.26394653320312, 35.58495330810547, 570.897705078125, 479.9839172363281], "det_conf": 0.9068638682365417, "mean_kpt_conf": 0.9088873917406256, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9203332794703724, "right_lift": -0.6553828311356313, "left_bend": 0.2808684706501785, "right_bend": 0.7671637699745274}, "keypoints": {"0": [321.9742126464844, 148.31939697265625, 0.9990668892860413], "1": [344.23388671875, 120.34565734863281, 0.9987493753433228], "2": [300.69647216796875, 125.28492736816406, 0.9939743876457214], "3": [384.10888671875, 125.48918151855469, 0.9749577045440674], "4": [277.7156677246094, 134.10911560058594, 0.6421814560890198], "5": [457.2170715332031, 241.48544311523438, 0.9872018098831177], "6": [226.97244262695312, 248.38186645507812, 0.996590256690979], "7": [525.0546264648438, 401.10589599609375, 0.7930552959442139], "8": [108.94377136230469, 350.79718017578125, 0.9369311928749084], "9": [494.43994140625, 459.8381042480469, 0.7432335615158081], "10": [127.83975219726562, 199.96681213378906, 0.9318193793296814], "11": [432.324462890625, 469.71624755859375, 0.14222180843353271], "12": [282.9688720703125, 474.81561279296875, 0.22362317144870758], "13": [476.10174560546875, 431.37493896484375, 0.0017507958691567183], "14": [289.61328125, 448.15618896484375, 0.003319062991067767], "15": [439.39239501953125, 477.14178466796875, 0.00016944709932431579], "16": [263.75982666015625, 480.0, 0.0002949430781882256]}} +{"t": 65.134032, "tracked": true, "track_id": 1, "bbox": [87.59087371826172, 35.44280242919922, 569.6819458007812, 479.9966735839844], "det_conf": 0.9058073163032532, "mean_kpt_conf": 0.9137872728434476, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9176754137387856, "right_lift": -0.6563469970813178, "left_bend": 0.2728218298842871, "right_bend": 0.7715615775450273}, "keypoints": {"0": [320.93792724609375, 148.44821166992188, 0.9991016387939453], "1": [342.58624267578125, 120.212158203125, 0.9987707734107971], "2": [299.4322814941406, 125.48023986816406, 0.9940766096115112], "3": [381.9394836425781, 124.29554748535156, 0.9741663932800293], "4": [276.12738037109375, 133.88800048828125, 0.6462170481681824], "5": [455.98675537109375, 239.14321899414062, 0.9878621101379395], "6": [224.99867248535156, 247.89047241210938, 0.9967858791351318], "7": [524.3799438476562, 397.1041259765625, 0.8120198845863342], "8": [107.34376525878906, 350.24517822265625, 0.9436560869216919], "9": [494.72943115234375, 458.72296142578125, 0.7606633305549622], "10": [128.1313018798828, 199.65020751953125, 0.9383402466773987], "11": [432.60760498046875, 468.63153076171875, 0.15356673300266266], "12": [282.0372619628906, 474.76593017578125, 0.23968179523944855], "13": [478.9082336425781, 430.436767578125, 0.001728070667013526], "14": [286.6407470703125, 448.9134826660156, 0.003275056602433324], "15": [442.9253234863281, 476.6011962890625, 0.00015920703299343586], "16": [258.83203125, 480.0, 0.00027667946415022016]}} +{"t": 65.200106, "tracked": true, "track_id": 1, "bbox": [84.78038024902344, 35.22428894042969, 564.090576171875, 480.0], "det_conf": 0.9086282849311829, "mean_kpt_conf": 0.9139553254300897, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9163592964852803, "right_lift": -0.6369103489910419, "left_bend": 0.2641799270080082, "right_bend": 0.7559952591255692}, "keypoints": {"0": [318.79840087890625, 147.92190551757812, 0.9990565180778503], "1": [339.8678894042969, 120.24407958984375, 0.9987284541130066], "2": [297.80401611328125, 126.14840698242188, 0.993730902671814], "3": [378.83111572265625, 125.34646606445312, 0.9754124879837036], "4": [275.6988830566406, 136.25277709960938, 0.6410395503044128], "5": [452.9665832519531, 239.8568572998047, 0.9884077906608582], "6": [224.96994018554688, 249.05294799804688, 0.9967706203460693], "7": [521.6512451171875, 397.066162109375, 0.8201426863670349], "8": [105.00950622558594, 348.15826416015625, 0.9431023597717285], "9": [492.6131591796875, 462.4344177246094, 0.7613280415534973], "10": [122.3243408203125, 196.59552001953125, 0.935789167881012], "11": [427.2626953125, 466.04840087890625, 0.16358038783073425], "12": [278.86297607421875, 471.95855712890625, 0.24888119101524353], "13": [471.06463623046875, 429.62103271484375, 0.001876756316050887], "14": [280.8534240722656, 448.4403991699219, 0.003445864887908101], "15": [435.1420593261719, 473.44415283203125, 0.00017259310698136687], "16": [250.27398681640625, 480.0, 0.00029316285508684814]}} +{"t": 65.233886, "tracked": true, "track_id": 1, "bbox": [83.36365509033203, 34.8476448059082, 563.5478515625, 480.0], "det_conf": 0.9134805798530579, "mean_kpt_conf": 0.9166712652553212, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9130996502846198, "right_lift": -0.6340923277204348, "left_bend": 0.24522172126034203, "right_bend": 0.7600219108072007}, "keypoints": {"0": [318.0849914550781, 148.1459197998047, 0.999065101146698], "1": [338.3224182128906, 120.07884216308594, 0.9987202882766724], "2": [296.9344177246094, 126.70855712890625, 0.9937161803245544], "3": [376.86492919921875, 124.45011901855469, 0.9741836786270142], "4": [275.18798828125, 137.07093811035156, 0.6475361585617065], "5": [451.6222839355469, 238.9732666015625, 0.9886549711227417], "6": [224.23910522460938, 249.76223754882812, 0.9967480897903442], "7": [520.9926147460938, 394.32366943359375, 0.8290707468986511], "8": [102.94715881347656, 349.2249755859375, 0.9447034001350403], "9": [497.2191162109375, 459.3680419921875, 0.7725725173950195], "10": [122.68092346191406, 198.3401641845703, 0.9384127855300903], "11": [425.056396484375, 465.6300048828125, 0.1583351045846939], "12": [276.5386657714844, 472.42230224609375, 0.23921041190624237], "13": [470.67816162109375, 423.9367980957031, 0.0018327187281101942], "14": [275.4560546875, 444.7088623046875, 0.003330481005832553], "15": [435.26123046875, 469.32501220703125, 0.00017161015421152115], "16": [241.2618865966797, 480.0, 0.000287730828858912]}} +{"t": 65.301584, "tracked": true, "track_id": 1, "bbox": [80.66751861572266, 34.314205169677734, 561.0999755859375, 480.0], "det_conf": 0.9206398725509644, "mean_kpt_conf": 0.9160674485293302, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9119559192957848, "right_lift": -0.649952090993301, "left_bend": 0.21601122866361713, "right_bend": 0.7757871861463455}, "keypoints": {"0": [316.6949462890625, 147.30426025390625, 0.9990825653076172], "1": [336.9871826171875, 118.57640075683594, 0.9987295269966125], "2": [295.0048828125, 124.92762756347656, 0.9940977096557617], "3": [375.2047424316406, 121.49273681640625, 0.9724146723747253], "4": [272.2788391113281, 133.67623901367188, 0.6718847751617432], "5": [449.85137939453125, 236.8662109375, 0.9882712960243225], "6": [218.93649291992188, 248.09344482421875, 0.9967261552810669], "7": [520.6719970703125, 394.2806396484375, 0.8185868859291077], "8": [98.30220031738281, 351.2632751464844, 0.9421668648719788], "9": [501.94366455078125, 465.8770751953125, 0.7581578493118286], "10": [122.72230529785156, 198.86654663085938, 0.9366236329078674], "11": [421.4910888671875, 467.1544189453125, 0.13920994102954865], "12": [270.97137451171875, 474.6007080078125, 0.2146252691745758], "13": [469.787109375, 420.32513427734375, 0.001696063787676394], "14": [272.332275390625, 442.7428894042969, 0.003139003412798047], "15": [430.5747375488281, 468.8120422363281, 0.00017054154886864126], "16": [238.208251953125, 480.0, 0.0002874662459362298]}} +{"t": 65.364235, "tracked": true, "track_id": 1, "bbox": [77.52005767822266, 33.42603302001953, 559.0156860351562, 480.0], "det_conf": 0.9203354120254517, "mean_kpt_conf": 0.9142053289846941, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.914756290909268, "right_lift": -0.6577588118970589, "left_bend": 0.25767635258880256, "right_bend": 0.777828408104985}, "keypoints": {"0": [313.47296142578125, 146.1103515625, 0.9989756345748901], "1": [334.34295654296875, 117.98568725585938, 0.9985917210578918], "2": [292.2456970214844, 124.34288024902344, 0.9937434792518616], "3": [372.370361328125, 122.87588500976562, 0.9728869795799255], "4": [269.6046447753906, 134.76812744140625, 0.6776025295257568], "5": [446.22418212890625, 238.70806884765625, 0.9885122776031494], "6": [212.43348693847656, 250.4800262451172, 0.9965521097183228], "7": [515.4649047851562, 395.48388671875, 0.8136231303215027], "8": [94.20034790039062, 353.7274169921875, 0.9319852590560913], "9": [488.5367126464844, 460.324951171875, 0.7553405165672302], "10": [118.25009155273438, 199.79644775390625, 0.9284449815750122], "11": [416.07879638671875, 468.2618713378906, 0.13694800436496735], "12": [265.1324157714844, 476.3804931640625, 0.2028365284204483], "13": [468.7212829589844, 417.98455810546875, 0.0018321848474442959], "14": [279.5191650390625, 440.39306640625, 0.003251565620303154], "15": [428.97198486328125, 466.2940979003906, 0.00019298541883472353], "16": [256.6290588378906, 477.8360900878906, 0.0003172140568494797]}} +{"t": 65.430439, "tracked": true, "track_id": 1, "bbox": [72.08934783935547, 32.72275924682617, 553.7525634765625, 480.0], "det_conf": 0.927348256111145, "mean_kpt_conf": 0.9097120328383013, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9157260155732488, "right_lift": -0.6732039574299393, "left_bend": 0.2602640755963246, "right_bend": 0.7761888977577561}, "keypoints": {"0": [309.3552551269531, 145.84268188476562, 0.9989603757858276], "1": [331.3241271972656, 118.20668029785156, 0.9985623955726624], "2": [288.01690673828125, 123.366455078125, 0.9940650463104248], "3": [368.7339782714844, 125.0455322265625, 0.9732431769371033], "4": [264.0561828613281, 134.11708068847656, 0.6955666542053223], "5": [439.4580383300781, 244.2041778564453, 0.9886643290519714], "6": [205.8515167236328, 250.87484741210938, 0.9964762330055237], "7": [510.51702880859375, 406.1505126953125, 0.7982091903686523], "8": [90.38369750976562, 355.99713134765625, 0.9234061241149902], "9": [485.46490478515625, 464.72406005859375, 0.7234546542167664], "10": [110.6937255859375, 199.600830078125, 0.9162241816520691], "11": [406.64471435546875, 472.5050354003906, 0.12957856059074402], "12": [255.88946533203125, 478.65802001953125, 0.1907709240913391], "13": [465.9439392089844, 423.24871826171875, 0.0017418598290532827], "14": [276.20733642578125, 441.9225769042969, 0.0030817680526524782], "15": [430.5539245605469, 467.07830810546875, 0.0001940609945449978], "16": [257.2918701171875, 474.9065856933594, 0.00031795617542229593]}} +{"t": 65.493969, "tracked": true, "track_id": 1, "bbox": [62.05207443237305, 32.64433288574219, 546.3925170898438, 480.0], "det_conf": 0.9208815097808838, "mean_kpt_conf": 0.9106811664321206, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9240942211924528, "right_lift": -0.6658460531115112, "left_bend": 0.2410934567827031, "right_bend": 0.7623187110028627}, "keypoints": {"0": [304.6480407714844, 145.9434814453125, 0.9988652467727661], "1": [326.5980224609375, 118.02845764160156, 0.9984638690948486], "2": [283.5083312988281, 123.71971130371094, 0.9932859539985657], "3": [365.21331787109375, 123.58535766601562, 0.97386634349823], "4": [260.51220703125, 133.75332641601562, 0.6779192686080933], "5": [435.34918212890625, 242.841552734375, 0.9890536665916443], "6": [203.11749267578125, 250.00079345703125, 0.9963611960411072], "7": [500.98773193359375, 401.5589904785156, 0.8129310607910156], "8": [90.48507690429688, 350.5194091796875, 0.9234368801116943], "9": [477.0570068359375, 464.1323547363281, 0.73819899559021], "10": [104.92021179199219, 199.7803955078125, 0.9151103496551514], "11": [399.0085144042969, 471.35906982421875, 0.14649860560894012], "12": [248.586669921875, 477.3472900390625, 0.208426371216774], "13": [456.30499267578125, 421.93597412109375, 0.0019372698152437806], "14": [264.8213195800781, 441.816162109375, 0.0032860799692571163], "15": [419.84844970703125, 459.63458251953125, 0.0002143644669558853], "16": [247.20025634765625, 470.501220703125, 0.00033958637504838407]}} +{"t": 65.528972, "tracked": true, "track_id": 1, "bbox": [56.76161193847656, 33.156917572021484, 549.1727905273438, 480.0], "det_conf": 0.9116427302360535, "mean_kpt_conf": 0.9206752668727528, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.930723413402095, "right_lift": -0.6987644706696218, "left_bend": 0.3599220868331309, "right_bend": 0.7828782738983634}, "keypoints": {"0": [301.3132019042969, 145.58074951171875, 0.9991627931594849], "1": [323.7519226074219, 117.88685607910156, 0.9988435506820679], "2": [280.1332702636719, 123.08320617675781, 0.9946750402450562], "3": [362.75341796875, 122.78996276855469, 0.979924201965332], "4": [257.06298828125, 131.98446655273438, 0.6902067065238953], "5": [436.6441345214844, 243.729248046875, 0.9926456212997437], "6": [194.40829467773438, 247.57110595703125, 0.9975663423538208], "7": [502.2574462890625, 410.707275390625, 0.8426241278648376], "8": [78.42984008789062, 360.86029052734375, 0.9341575503349304], "9": [463.5146484375, 451.7715148925781, 0.769679069519043], "10": [96.19151306152344, 207.11863708496094, 0.9279429316520691], "11": [397.1076354980469, 480.0, 0.1615322083234787], "12": [239.63629150390625, 480.0, 0.2264682799577713], "13": [462.5606689453125, 428.6607971191406, 0.0012426807079464197], "14": [257.3382568359375, 442.5126037597656, 0.002112938789650798], "15": [427.2960205078125, 457.4378662109375, 0.00012821720156352967], "16": [238.75735473632812, 463.9710693359375, 0.00020443458925001323]}} +{"t": 65.563182, "tracked": true, "track_id": 1, "bbox": [51.1199836730957, 33.294918060302734, 550.9894409179688, 480.0], "det_conf": 0.9029260873794556, "mean_kpt_conf": 0.9194560809568926, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9364498384329251, "right_lift": -0.6890069408701733, "left_bend": 0.3669218628062098, "right_bend": 0.7760668945857078}, "keypoints": {"0": [299.25592041015625, 145.6996612548828, 0.9991711378097534], "1": [321.65948486328125, 117.8548583984375, 0.998854398727417], "2": [278.118408203125, 122.464599609375, 0.9946295022964478], "3": [360.4937438964844, 122.04742431640625, 0.9798362255096436], "4": [254.71148681640625, 130.03323364257812, 0.6850990653038025], "5": [432.067138671875, 245.82518005371094, 0.9923479557037354], "6": [193.6006317138672, 246.43548583984375, 0.9975244402885437], "7": [494.9338684082031, 413.645263671875, 0.8370810747146606], "8": [75.79698181152344, 358.4285888671875, 0.9333660006523132], "9": [454.89776611328125, 452.9754638671875, 0.7676147222518921], "10": [91.98696899414062, 207.94161987304688, 0.9284923672676086], "11": [392.16943359375, 480.0, 0.15703953802585602], "12": [236.579345703125, 480.0, 0.2237108200788498], "13": [455.3908386230469, 432.9792175292969, 0.001208025962114334], "14": [250.7979736328125, 444.51263427734375, 0.002050320850685239], "15": [424.68865966796875, 456.8556213378906, 0.00012529545347206295], "16": [232.42037963867188, 462.09197998046875, 0.00019914950826205313]}} +{"t": 65.629136, "tracked": true, "track_id": 1, "bbox": [46.42127990722656, 32.20619583129883, 540.8333740234375, 480.0], "det_conf": 0.903401792049408, "mean_kpt_conf": 0.9086266322569414, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9422124130970837, "right_lift": -0.625982469694772, "left_bend": 0.26280559786941343, "right_bend": 0.7662317400511166}, "keypoints": {"0": [295.0028076171875, 145.16783142089844, 0.9989798665046692], "1": [316.85809326171875, 117.55734252929688, 0.9984673857688904], "2": [273.9382629394531, 121.77912902832031, 0.994429349899292], "3": [353.48248291015625, 124.55242919921875, 0.9681763648986816], "4": [249.7502899169922, 131.5230712890625, 0.7164357900619507], "5": [417.9562072753906, 247.27870178222656, 0.985101580619812], "6": [194.45452880859375, 247.97824096679688, 0.9967091083526611], "7": [476.2501220703125, 411.226806640625, 0.7525944113731384], "8": [67.60775756835938, 349.79931640625, 0.9342860579490662], "9": [446.5682373046875, 467.6870422363281, 0.7161665558815002], "10": [92.02482604980469, 198.49801635742188, 0.9335464835166931], "11": [386.4654846191406, 475.55718994140625, 0.1027400940656662], "12": [243.0380096435547, 478.9761047363281, 0.17631058394908905], "13": [427.9293212890625, 423.70489501953125, 0.0016654973151162267], "14": [256.50537109375, 438.65362548828125, 0.0032919372897595167], "15": [392.8790283203125, 467.5693664550781, 0.00019582867389544845], "16": [236.0888671875, 474.086669921875, 0.00034484826028347015]}} +{"t": 65.692672, "tracked": true, "track_id": 1, "bbox": [42.77088165283203, 31.69988441467285, 531.3246459960938, 480.0], "det_conf": 0.9053224921226501, "mean_kpt_conf": 0.9022574153813449, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.943189986713675, "right_lift": -0.6133632504288083, "left_bend": 0.31823234926945804, "right_bend": 0.770151965175945}, "keypoints": {"0": [288.66448974609375, 144.15203857421875, 0.9988929629325867], "1": [311.59527587890625, 117.46426391601562, 0.9984108209609985], "2": [267.99639892578125, 120.92762756347656, 0.9941646456718445], "3": [348.6302185058594, 127.19195556640625, 0.9710708260536194], "4": [243.68153381347656, 131.9350128173828, 0.7132415771484375], "5": [412.14111328125, 251.6331787109375, 0.9849602580070496], "6": [186.123291015625, 247.60313415527344, 0.9964518547058105], "7": [470.63616943359375, 417.686767578125, 0.7297003865242004], "8": [58.08000183105469, 347.04217529296875, 0.9221452474594116], "9": [433.73797607421875, 465.125244140625, 0.6932612061500549], "10": [87.44772338867188, 193.0074462890625, 0.92253178358078], "11": [379.1422119140625, 474.72393798828125, 0.09760522097349167], "12": [235.22947692871094, 476.54156494140625, 0.16533945500850677], "13": [422.8465881347656, 425.939697265625, 0.0017105996375903487], "14": [258.11907958984375, 437.28192138671875, 0.0033388424199074507], "15": [389.68780517578125, 467.7215576171875, 0.00020895579655189067], "16": [244.85848999023438, 470.66021728515625, 0.00036778568755835295]}} +{"t": 65.758595, "tracked": true, "track_id": 1, "bbox": [35.6216926574707, 30.791826248168945, 519.646484375, 480.0], "det_conf": 0.9095426201820374, "mean_kpt_conf": 0.8984326070005243, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9487304981253842, "right_lift": -0.6152378646653658, "left_bend": 0.256104393305145, "right_bend": 0.7713416031692218}, "keypoints": {"0": [283.5248107910156, 143.82598876953125, 0.9987937211990356], "1": [307.01141357421875, 117.50761413574219, 0.9982821941375732], "2": [263.56634521484375, 119.967041015625, 0.9937537312507629], "3": [344.31646728515625, 127.33294677734375, 0.9707622528076172], "4": [239.60134887695312, 129.4886474609375, 0.7235060334205627], "5": [404.9497985839844, 254.6553192138672, 0.9853299856185913], "6": [179.42176818847656, 247.7560272216797, 0.996272087097168], "7": [459.86138916015625, 419.47210693359375, 0.7215891480445862], "8": [53.84954833984375, 345.7551574707031, 0.9097659587860107], "9": [433.353271484375, 470.02178955078125, 0.6745321154594421], "10": [83.22195434570312, 192.82803344726562, 0.9101714491844177], "11": [368.3065185546875, 473.35894775390625, 0.0997423306107521], "12": [225.11538696289062, 474.5783386230469, 0.16272935271263123], "13": [414.6626892089844, 428.1722717285156, 0.0018577583832666278], "14": [253.70645141601562, 439.9566650390625, 0.003477382706478238], "15": [381.95953369140625, 464.4356689453125, 0.00023235850676428527], "16": [247.19602966308594, 468.0335998535156, 0.0003944285854231566]}} +{"t": 65.822186, "tracked": true, "track_id": 1, "bbox": [27.315690994262695, 30.950464248657227, 507.5457763671875, 479.50030517578125], "det_conf": 0.9156001806259155, "mean_kpt_conf": 0.9194008437069979, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9486962948524215, "right_lift": -0.63128413461606, "left_bend": 0.39886670785204736, "right_bend": 0.7812428364330029}, "keypoints": {"0": [279.8406677246094, 142.39935302734375, 0.9990472197532654], "1": [303.1380920410156, 116.569091796875, 0.9985817670822144], "2": [259.53704833984375, 119.64202880859375, 0.9948908090591431], "3": [339.9616394042969, 126.31283569335938, 0.9753010272979736], "4": [235.10348510742188, 130.1844482421875, 0.7458881139755249], "5": [401.19671630859375, 252.5863800048828, 0.9906862378120422], "6": [169.2118377685547, 245.76133728027344, 0.9974387884140015], "7": [455.9481201171875, 416.86309814453125, 0.8009801506996155], "8": [39.30445861816406, 351.5034484863281, 0.9290316104888916], "9": [418.316162109375, 444.8483581542969, 0.7522644996643066], "10": [70.13864135742188, 199.6608123779297, 0.9292990565299988], "11": [357.1217346191406, 480.0, 0.1380113810300827], "12": [207.8625030517578, 480.0, 0.2076047956943512], "13": [413.4453125, 431.29803466796875, 0.0013473340077325702], "14": [231.0706787109375, 439.3727111816406, 0.002352543408051133], "15": [385.3654479980469, 453.43853759765625, 0.0001522801030660048], "16": [217.87777709960938, 456.47259521484375, 0.00024434132501482964]}} +{"t": 65.860647, "tracked": true, "track_id": 1, "bbox": [22.327404022216797, 30.250244140625, 511.7599792480469, 479.4679870605469], "det_conf": 0.9058343172073364, "mean_kpt_conf": 0.9209649183533408, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9430861826128846, "right_lift": -0.6553531282127822, "left_bend": 0.40708657575759116, "right_bend": 0.7821126292038784}, "keypoints": {"0": [278.8514099121094, 140.5569610595703, 0.9990851879119873], "1": [302.3623352050781, 115.48033142089844, 0.9986118078231812], "2": [258.044189453125, 118.21981811523438, 0.9953227639198303], "3": [337.84783935546875, 126.9915771484375, 0.9749780893325806], "4": [232.31060791015625, 130.4759521484375, 0.7617612481117249], "5": [399.42718505859375, 249.8049774169922, 0.9912899732589722], "6": [165.6769561767578, 243.75955200195312, 0.9975505471229553], "7": [458.48065185546875, 417.27685546875, 0.8116834759712219], "8": [39.310546875, 353.40093994140625, 0.9328683614730835], "9": [420.60150146484375, 444.9473876953125, 0.7414809465408325], "10": [66.19419860839844, 198.3074188232422, 0.9259817004203796], "11": [356.90667724609375, 480.0, 0.14457644522190094], "12": [206.18551635742188, 480.0, 0.21558736264705658], "13": [416.05133056640625, 429.209228515625, 0.001305134268477559], "14": [227.15567016601562, 436.6250305175781, 0.002280769869685173], "15": [386.97235107421875, 456.3824768066406, 0.00015081455057952553], "16": [211.30882263183594, 456.60650634765625, 0.0002418112417217344]}} +{"t": 65.92511, "tracked": true, "track_id": 1, "bbox": [15.934210777282715, 28.66392707824707, 495.0326232910156, 479.3389892578125], "det_conf": 0.9042624831199646, "mean_kpt_conf": 0.9171845804561268, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9458718033930839, "right_lift": -0.6596734440037124, "left_bend": 0.3822457808138067, "right_bend": 0.7813716109717758}, "keypoints": {"0": [277.97039794921875, 138.23965454101562, 0.9990461468696594], "1": [301.2522277832031, 112.96597290039062, 0.9984973669052124], "2": [256.8963623046875, 114.50881958007812, 0.9953722357749939], "3": [334.84442138671875, 123.56509399414062, 0.9715837836265564], "4": [229.00997924804688, 124.90240478515625, 0.7816960215568542], "5": [393.05108642578125, 250.3746795654297, 0.990468442440033], "6": [163.07943725585938, 242.34410095214844, 0.9974091649055481], "7": [450.86956787109375, 418.8863830566406, 0.7887551188468933], "8": [38.155181884765625, 351.99609375, 0.9241201281547546], "9": [409.2349853515625, 453.9875793457031, 0.7213890552520752], "10": [63.599578857421875, 197.83004760742188, 0.9206929206848145], "11": [350.73162841796875, 480.0, 0.13134881854057312], "12": [202.80763244628906, 480.0, 0.20034949481487274], "13": [402.4591369628906, 434.48907470703125, 0.0013084623496979475], "14": [220.99098205566406, 440.43353271484375, 0.002250720513984561], "15": [374.0842590332031, 458.6144714355469, 0.0001552832400193438], "16": [208.44265747070312, 455.17059326171875, 0.00024360002134926617]}} +{"t": 65.993582, "tracked": true, "track_id": 1, "bbox": [11.19349193572998, 25.505353927612305, 499.3778991699219, 479.356201171875], "det_conf": 0.899649977684021, "mean_kpt_conf": 0.9145371480421587, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9315864577065732, "right_lift": -0.6676098818276014, "left_bend": 0.385059335168977, "right_bend": 0.7851186435589823}, "keypoints": {"0": [278.7593994140625, 136.11773681640625, 0.9990629553794861], "1": [301.80474853515625, 110.09524536132812, 0.9983662962913513], "2": [257.11773681640625, 110.89065551757812, 0.9959056377410889], "3": [333.2680969238281, 119.53558349609375, 0.9636071920394897], "4": [226.39637756347656, 119.59614562988281, 0.8209127187728882], "5": [392.1683349609375, 248.76014709472656, 0.9900159239768982], "6": [156.23179626464844, 243.13113403320312, 0.9972513318061829], "7": [457.0712890625, 415.0859069824219, 0.7634126543998718], "8": [30.914154052734375, 355.50457763671875, 0.9075857400894165], "9": [415.3176574707031, 452.6887512207031, 0.7088771462440491], "10": [57.143218994140625, 197.7255859375, 0.9149110317230225], "11": [352.16387939453125, 480.0, 0.10402177274227142], "12": [202.12368774414062, 480.0, 0.1574203073978424], "13": [406.4622802734375, 428.16619873046875, 0.0012520684394985437], "14": [231.18426513671875, 435.92169189453125, 0.0020938224624842405], "15": [374.807373046875, 456.900146484375, 0.00015560176689177752], "16": [226.8468017578125, 451.4752197265625, 0.00023710592358838767]}} +{"t": 66.056267, "tracked": true, "track_id": 1, "bbox": [7.81116247177124, 20.668869018554688, 511.7260437011719, 479.4913024902344], "det_conf": 0.9034785032272339, "mean_kpt_conf": 0.9228419932452115, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9205317907465862, "right_lift": -0.6734539889931107, "left_bend": 0.3454409086653305, "right_bend": 0.7716150088846614}, "keypoints": {"0": [278.318359375, 134.091064453125, 0.9991421699523926], "1": [301.385009765625, 107.77593994140625, 0.9984614849090576], "2": [256.0416564941406, 108.81869506835938, 0.9961464405059814], "3": [332.77392578125, 117.42189025878906, 0.9636847972869873], "4": [224.6383056640625, 118.37847900390625, 0.8248143792152405], "5": [393.2671203613281, 244.34251403808594, 0.9911105632781982], "6": [156.714599609375, 242.30740356445312, 0.9974319338798523], "7": [462.41314697265625, 407.2715759277344, 0.7991611957550049], "8": [33.050506591796875, 354.9681091308594, 0.9203997254371643], "9": [425.5032958984375, 452.554443359375, 0.7364884614944458], "10": [50.771331787109375, 200.7861785888672, 0.9244207739830017], "11": [356.2910461425781, 480.0, 0.11883197724819183], "12": [204.9307861328125, 480.0, 0.17471210658550262], "13": [413.1389465332031, 425.07122802734375, 0.001240957877598703], "14": [229.00039672851562, 434.48052978515625, 0.0020375882741063833], "15": [379.4211730957031, 457.3507080078125, 0.00014305497461464256], "16": [217.51171875, 451.98382568359375, 0.00021499757713172585]}} +{"t": 66.121081, "tracked": true, "track_id": 1, "bbox": [6.4940571784973145, 17.244543075561523, 516.4569702148438, 479.5870666503906], "det_conf": 0.9129506945610046, "mean_kpt_conf": 0.9252998070283369, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9221028358314479, "right_lift": -0.6750651136123428, "left_bend": 0.39346761334418434, "right_bend": 0.7855622294739925}, "keypoints": {"0": [278.69256591796875, 132.28787231445312, 0.9991673231124878], "1": [302.3033142089844, 105.6739501953125, 0.9985771179199219], "2": [255.5997314453125, 107.57461547851562, 0.996130108833313], "3": [334.9176940917969, 116.57904052734375, 0.9680077433586121], "4": [224.20704650878906, 119.12945556640625, 0.8161677718162537], "5": [398.0046081542969, 243.90130615234375, 0.9915544390678406], "6": [155.84698486328125, 241.0648956298828, 0.9975643157958984], "7": [468.6094970703125, 412.1551513671875, 0.8047962784767151], "8": [30.417266845703125, 355.83587646484375, 0.9243757128715515], "9": [431.94317626953125, 445.1006164550781, 0.7522894144058228], "10": [55.51625061035156, 196.32211303710938, 0.9296676516532898], "11": [363.87969970703125, 480.0, 0.11954829096794128], "12": [210.0941619873047, 480.0, 0.17657583951950073], "13": [422.207763671875, 425.6148986816406, 0.0011943773133680224], "14": [240.62191772460938, 434.7606201171875, 0.002013855380937457], "15": [388.07135009765625, 459.4378662109375, 0.00013190631580073386], "16": [233.37344360351562, 456.5989990234375, 0.00020519131794571877]}} +{"t": 66.187134, "tracked": true, "track_id": 1, "bbox": [7.70294713973999, 14.553810119628906, 528.0721435546875, 479.5650939941406], "det_conf": 0.9163346886634827, "mean_kpt_conf": 0.9247062368826433, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.912013907500416, "right_lift": -0.6851656130066869, "left_bend": 0.3787173412739115, "right_bend": 0.7904438541620746}, "keypoints": {"0": [281.08929443359375, 129.80308532714844, 0.9992275238037109], "1": [303.9171142578125, 102.052978515625, 0.9986094236373901], "2": [257.8581848144531, 104.30999755859375, 0.9964194297790527], "3": [335.9896240234375, 110.94660949707031, 0.9644050002098083], "4": [225.5794677734375, 114.47547912597656, 0.8249911069869995], "5": [403.72454833984375, 240.54612731933594, 0.9917358756065369], "6": [155.32183837890625, 242.22181701660156, 0.9976266026496887], "7": [478.3955078125, 406.5815124511719, 0.7988649606704712], "8": [31.390869140625, 358.7988586425781, 0.9212438464164734], "9": [439.9798583984375, 446.4256591796875, 0.7484694719314575], "10": [56.946746826171875, 198.01321411132812, 0.9301753640174866], "11": [372.80810546875, 480.0, 0.10819023847579956], "12": [214.8424072265625, 480.0, 0.1597907692193985], "13": [434.6595764160156, 420.17974853515625, 0.0011117614340037107], "14": [247.69300842285156, 432.6971740722656, 0.0018788448069244623], "15": [396.0549621582031, 455.376708984375, 0.00012198647891636938], "16": [240.57127380371094, 453.6638488769531, 0.0001895051682367921]}} +{"t": 66.252259, "tracked": true, "track_id": 1, "bbox": [10.471078872680664, 11.275744438171387, 550.7049560546875, 479.6709289550781], "det_conf": 0.9175959229469299, "mean_kpt_conf": 0.8976887952197682, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8962812951797917, "right_lift": -0.6721844175226583, "left_bend": 0.3471568545474369, "right_bend": 0.7848440783652797}, "keypoints": {"0": [286.484130859375, 126.97523498535156, 0.9992197751998901], "1": [308.54742431640625, 98.25146484375, 0.9984800219535828], "2": [261.58831787109375, 101.05555725097656, 0.996948778629303], "3": [339.57861328125, 108.41989135742188, 0.9468743801116943], "4": [226.05169677734375, 113.26034545898438, 0.8442004323005676], "5": [413.55078125, 239.67198181152344, 0.9870922565460205], "6": [162.33990478515625, 241.49009704589844, 0.9963766932487488], "7": [498.2648010253906, 410.8782653808594, 0.6857462525367737], "8": [41.87409973144531, 350.859375, 0.8939265608787537], "9": [457.2195739746094, 467.03814697265625, 0.6229368448257446], "10": [67.85917663574219, 187.46151733398438, 0.9027747511863708], "11": [394.21649169921875, 468.2636413574219, 0.06651272624731064], "12": [235.5074462890625, 474.00897216796875, 0.10870452225208282], "13": [450.7761535644531, 414.36395263671875, 0.0012622404610738158], "14": [269.7442932128906, 428.583740234375, 0.00238178507424891], "15": [402.9205322265625, 468.54510498046875, 0.0001588773593539372], "16": [258.2271728515625, 466.53692626953125, 0.00026569192414171994]}} +{"t": 66.287144, "tracked": true, "track_id": 1, "bbox": [13.673721313476562, 8.464001655578613, 561.8837280273438, 479.726806640625], "det_conf": 0.9229391813278198, "mean_kpt_conf": 0.9288748665289446, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.883948440086538, "right_lift": -0.6904505796273681, "left_bend": 0.4582557308932045, "right_bend": 0.8042917339229214}, "keypoints": {"0": [287.72711181640625, 126.04293823242188, 0.9994131326675415], "1": [311.49932861328125, 96.60957336425781, 0.9989965558052063], "2": [262.59503173828125, 99.91812133789062, 0.9969635605812073], "3": [346.3996276855469, 106.32196044921875, 0.9700267314910889], "4": [228.656494140625, 112.33340454101562, 0.7981295585632324], "5": [426.04998779296875, 233.5172576904297, 0.9922072291374207], "6": [163.63409423828125, 241.62867736816406, 0.9977445602416992], "7": [515.3609619140625, 402.3558654785156, 0.8068040609359741], "8": [35.69313049316406, 363.7456359863281, 0.9318575859069824], "9": [453.0719909667969, 446.6085510253906, 0.7798804044723511], "10": [68.29800415039062, 197.660400390625, 0.945600152015686], "11": [404.8842468261719, 480.0, 0.09081276506185532], "12": [237.60289001464844, 480.0, 0.1395416259765625], "13": [460.853515625, 413.2977294921875, 0.0008545902674086392], "14": [262.55255126953125, 425.2400817871094, 0.001541054924018681], "15": [409.50201416015625, 465.37469482421875, 8.540519775124267e-05], "16": [237.72689819335938, 457.8656311035156, 0.0001419691980117932]}} +{"t": 66.352677, "tracked": true, "track_id": 1, "bbox": [20.662553787231445, 5.214165210723877, 567.5859985351562, 479.6259460449219], "det_conf": 0.9131343364715576, "mean_kpt_conf": 0.9273977225477045, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8951105315936407, "right_lift": -0.7641419542403055, "left_bend": 0.5981914878717146, "right_bend": 0.7979403826670483}, "keypoints": {"0": [294.6331787109375, 122.89208984375, 0.9995142221450806], "1": [319.0668640136719, 92.5101318359375, 0.998994767665863], "2": [267.51953125, 96.1895980834961, 0.9975519776344299], "3": [355.408935546875, 100.59967041015625, 0.962600588798523], "4": [230.2872314453125, 108.24102783203125, 0.8072945475578308], "5": [440.17156982421875, 233.13429260253906, 0.9939448237419128], "6": [165.3719940185547, 235.46536254882812, 0.9976497292518616], "7": [530.3681640625, 414.2197570800781, 0.8130112886428833], "8": [54.4410400390625, 366.87725830078125, 0.9165261387825012], "9": [444.27337646484375, 427.5523986816406, 0.7804315090179443], "10": [65.16889953613281, 205.29983520507812, 0.9338553547859192], "11": [402.4271240234375, 480.0, 0.08594989031553268], "12": [223.75595092773438, 480.0, 0.12303071469068527], "13": [464.42529296875, 406.1962890625, 0.0006458898424170911], "14": [230.343994140625, 409.0965270996094, 0.001061471295543015], "15": [417.1206970214844, 450.2247314453125, 7.243812433443964e-05], "16": [206.7902374267578, 440.5505676269531, 0.00010919274063780904]}} +{"t": 66.420073, "tracked": true, "track_id": 1, "bbox": [25.153644561767578, 0.0, 571.9083862304688, 479.2384033203125], "det_conf": 0.9195594191551208, "mean_kpt_conf": 0.9202854904261503, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9006187348414216, "right_lift": -0.7059531100263662, "left_bend": 0.4810369467999604, "right_bend": 0.7737366498787798}, "keypoints": {"0": [303.5732421875, 115.66410827636719, 0.9993500113487244], "1": [327.5719299316406, 85.50491333007812, 0.9990302324295044], "2": [277.938232421875, 90.93287658691406, 0.9966471791267395], "3": [364.5480651855469, 95.65243530273438, 0.9781934022903442], "4": [245.62234497070312, 106.69441223144531, 0.7753146886825562], "5": [449.10443115234375, 225.92999267578125, 0.9924528002738953], "6": [177.4051513671875, 236.4700927734375, 0.9974199533462524], "7": [534.2784423828125, 402.43145751953125, 0.7959278225898743], "8": [54.964141845703125, 358.5125427246094, 0.910641074180603], "9": [452.9759521484375, 447.8211669921875, 0.7532761096954346], "10": [67.51631164550781, 194.1072235107422, 0.9248871207237244], "11": [412.0563659667969, 480.0, 0.08049186319112778], "12": [238.88412475585938, 480.0, 0.11672703176736832], "13": [474.11712646484375, 399.8891906738281, 0.0009049156797118485], "14": [264.42779541015625, 412.8021240234375, 0.001530428882688284], "15": [415.60076904296875, 455.433837890625, 0.00010541559458943084], "16": [243.4525146484375, 452.08135986328125, 0.00016817405412439257]}} +{"t": 66.483234, "tracked": true, "track_id": 1, "bbox": [28.323503494262695, 0.0, 585.7252807617188, 479.48956298828125], "det_conf": 0.9291284084320068, "mean_kpt_conf": 0.9236702377145941, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8912706561317247, "right_lift": -0.7011861169471237, "left_bend": 0.39881759148012375, "right_bend": 0.7669378288034296}, "keypoints": {"0": [312.1070556640625, 109.52593994140625, 0.9993740916252136], "1": [336.7777099609375, 80.44325256347656, 0.9990569949150085], "2": [286.9786376953125, 84.8514404296875, 0.9967701435089111], "3": [373.0137023925781, 92.70947265625, 0.9765846133232117], "4": [254.2066650390625, 101.49755859375, 0.7884125113487244], "5": [453.12506103515625, 217.7648162841797, 0.9923036694526672], "6": [184.8285369873047, 233.17037963867188, 0.997574508190155], "7": [540.2981567382812, 389.09814453125, 0.8143841028213501], "8": [59.68182373046875, 356.24725341796875, 0.9207717180252075], "9": [476.53143310546875, 453.265625, 0.7486326694488525], "10": [70.27494812011719, 184.359130859375, 0.9265075922012329], "11": [420.46893310546875, 475.5679931640625, 0.09063804894685745], "12": [249.18124389648438, 480.0, 0.13063114881515503], "13": [479.55810546875, 395.4905700683594, 0.0009564106003381312], "14": [270.1271057128906, 413.4566650390625, 0.0015896207187324762], "15": [424.283203125, 458.0772705078125, 0.00010812202526722103], "16": [247.1448211669922, 453.13543701171875, 0.0001693808735581115]}} +{"t": 66.550578, "tracked": true, "track_id": 1, "bbox": [28.058570861816406, 0.0, 596.0191650390625, 479.5762939453125], "det_conf": 0.9230138063430786, "mean_kpt_conf": 0.9270557002587752, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8877845267127885, "right_lift": -0.715926539475508, "left_bend": 0.3959657833458049, "right_bend": 0.7703875743168381}, "keypoints": {"0": [319.8502197265625, 103.13619995117188, 0.9994276165962219], "1": [345.4090576171875, 75.02444458007812, 0.9990589022636414], "2": [294.8370361328125, 77.66749572753906, 0.9971267580986023], "3": [380.8017272949219, 90.09030151367188, 0.9731748104095459], "4": [260.8103942871094, 95.07136535644531, 0.8048473596572876], "5": [458.29119873046875, 214.35313415527344, 0.9921695590019226], "6": [192.333251953125, 229.5250701904297, 0.9977220892906189], "7": [547.820556640625, 387.04443359375, 0.816695511341095], "8": [67.62994384765625, 357.39892578125, 0.9289684295654297], "9": [486.77838134765625, 450.54315185546875, 0.7551332712173462], "10": [76.81022644042969, 179.28936767578125, 0.9332883954048157], "11": [429.1792907714844, 477.72357177734375, 0.08947503566741943], "12": [259.316650390625, 480.0, 0.13250145316123962], "13": [483.41705322265625, 396.7825622558594, 0.0009188629919663072], "14": [277.3656311035156, 413.49267578125, 0.0015591392293572426], "15": [426.44732666015625, 464.6307373046875, 9.987906378228217e-05], "16": [249.762939453125, 453.498779296875, 0.0001579604431753978]}} +{"t": 66.618135, "tracked": true, "track_id": 1, "bbox": [31.01987075805664, 0.0, 613.2459106445312, 479.7925109863281], "det_conf": 0.919489860534668, "mean_kpt_conf": 0.9282535802234303, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8774473143273708, "right_lift": -0.7084695233694484, "left_bend": 0.35884898187613723, "right_bend": 0.7856361110684786}, "keypoints": {"0": [325.3245849609375, 98.82682800292969, 0.9994623064994812], "1": [351.48126220703125, 69.76039123535156, 0.9991760849952698], "2": [299.5072021484375, 73.70831298828125, 0.9972186088562012], "3": [389.51812744140625, 84.58665466308594, 0.9756439328193665], "4": [266.06414794921875, 92.04811096191406, 0.7975210547447205], "5": [466.0632019042969, 209.14718627929688, 0.9917786717414856], "6": [200.643798828125, 226.54006958007812, 0.99784255027771], "7": [558.621337890625, 378.460205078125, 0.8173995018005371], "8": [73.45309448242188, 354.2224426269531, 0.9380362629890442], "9": [511.0751953125, 444.0732421875, 0.7582300305366516], "10": [92.67503356933594, 180.222900390625, 0.9384803771972656], "11": [437.71038818359375, 478.59783935546875, 0.10301987081766129], "12": [267.4962463378906, 480.0, 0.1586606204509735], "13": [490.135009765625, 404.43048095703125, 0.0008585540344938636], "14": [281.0775451660156, 423.594482421875, 0.0015515870181843638], "15": [438.7630615234375, 466.5965270996094, 8.782208169577643e-05], "16": [249.67996215820312, 460.7308044433594, 0.00014519650721922517]}} +{"t": 66.651674, "tracked": true, "track_id": 1, "bbox": [32.37828826904297, 0.0, 619.4663696289062, 480.0], "det_conf": 0.920845627784729, "mean_kpt_conf": 0.924237771467729, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8690090365790011, "right_lift": -0.7111060960902003, "left_bend": 0.35237815794845007, "right_bend": 0.792586076103042}, "keypoints": {"0": [327.9273986816406, 97.70042419433594, 0.9994774460792542], "1": [354.28314208984375, 68.20040893554688, 0.9991697072982788], "2": [301.8836669921875, 71.5133056640625, 0.9974690675735474], "3": [391.845947265625, 82.15119934082031, 0.9725509881973267], "4": [267.0029602050781, 88.182861328125, 0.8157304525375366], "5": [468.29278564453125, 207.73829650878906, 0.9908289909362793], "6": [200.53274536132812, 224.40206909179688, 0.997793436050415], "7": [563.6932983398438, 375.2899169921875, 0.7892172932624817], "8": [74.55264282226562, 351.8194580078125, 0.9345786571502686], "9": [520.349365234375, 440.10540771484375, 0.7341488599777222], "10": [96.87452697753906, 178.54208374023438, 0.9356505870819092], "11": [441.8699035644531, 475.90533447265625, 0.09053134173154831], "12": [270.1885986328125, 480.0, 0.1462441086769104], "13": [492.99786376953125, 401.7590026855469, 0.0008278210880234838], "14": [283.0912780761719, 420.82098388671875, 0.0015582229243591428], "15": [442.138427734375, 465.7886047363281, 8.887593139661476e-05], "16": [254.95223999023438, 459.01812744140625, 0.000150231528095901]}} +{"t": 66.718302, "tracked": true, "track_id": 1, "bbox": [32.5014762878418, 0.0, 629.664306640625, 479.6368408203125], "det_conf": 0.9248818159103394, "mean_kpt_conf": 0.9292002699591897, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8616611371970115, "right_lift": -0.7048373917764758, "left_bend": 0.3925287069332183, "right_bend": 0.7956976023173036}, "keypoints": {"0": [330.1454772949219, 95.11073303222656, 0.9995369911193848], "1": [357.88763427734375, 64.75640869140625, 0.9992532134056091], "2": [304.01123046875, 67.09512329101562, 0.9975613355636597], "3": [396.95330810546875, 78.25283813476562, 0.973150372505188], "4": [268.0882263183594, 81.78492736816406, 0.8017029166221619], "5": [473.228271484375, 206.34628295898438, 0.9913355708122253], "6": [200.87063598632812, 222.0334014892578, 0.99788898229599], "7": [572.6111450195312, 375.0892333984375, 0.8040018677711487], "8": [69.74931335449219, 352.3171081542969, 0.9375258088111877], "9": [521.2989501953125, 435.897705078125, 0.7740542888641357], "10": [95.78034973144531, 176.23007202148438, 0.9451916217803955], "11": [447.68896484375, 480.0, 0.08453835546970367], "12": [273.1734619140625, 480.0, 0.13528381288051605], "13": [497.2037353515625, 402.70867919921875, 0.0007540455553680658], "14": [288.5926513671875, 419.7554016113281, 0.0013921380741521716], "15": [449.06524658203125, 468.50836181640625, 7.634671055711806e-05], "16": [262.8305358886719, 456.843505859375, 0.00012810526823159307]}} +{"t": 66.781531, "tracked": true, "track_id": 1, "bbox": [28.22753143310547, 0.0, 630.9898071289062, 479.6199645996094], "det_conf": 0.9278079867362976, "mean_kpt_conf": 0.9254209290851246, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8512761524640362, "right_lift": -0.6931268848683378, "left_bend": 0.395737978506709, "right_bend": 0.7862376061025811}, "keypoints": {"0": [330.45703125, 91.76327514648438, 0.9995450377464294], "1": [358.0962219238281, 61.94355773925781, 0.999230146408081], "2": [303.17529296875, 63.72843933105469, 0.9978122711181641], "3": [395.6837158203125, 77.13632202148438, 0.9687342643737793], "4": [264.52294921875, 79.97486877441406, 0.8184583783149719], "5": [470.0167236328125, 206.5436553955078, 0.9907976388931274], "6": [199.82955932617188, 218.49179077148438, 0.9975084066390991], "7": [574.43359375, 375.9443664550781, 0.79134601354599], "8": [68.10665893554688, 345.1548156738281, 0.9278475046157837], "9": [521.5651245117188, 439.888671875, 0.7514809370040894], "10": [90.87858581542969, 175.49530029296875, 0.9368696212768555], "11": [445.1641540527344, 480.0, 0.08272124081850052], "12": [272.15380859375, 480.0, 0.12814544141292572], "13": [496.2127380371094, 406.8642578125, 0.0007416610023938119], "14": [289.3067626953125, 420.1372985839844, 0.0013212708290666342], "15": [452.0971374511719, 469.9049377441406, 7.774015102768317e-05], "16": [262.53363037109375, 454.9497985839844, 0.0001263806625502184]}} +{"t": 66.846545, "tracked": true, "track_id": 1, "bbox": [25.78148651123047, 0.0, 633.5280151367188, 480.0], "det_conf": 0.9264510273933411, "mean_kpt_conf": 0.9273880991068754, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.853895711966126, "right_lift": -0.6972876493565312, "left_bend": 0.44277949612696865, "right_bend": 0.7800004307103056}, "keypoints": {"0": [327.64874267578125, 89.81156921386719, 0.999504804611206], "1": [354.6546936035156, 60.62669372558594, 0.999092698097229], "2": [300.526123046875, 62.15412902832031, 0.9976784586906433], "3": [390.62115478515625, 76.69451904296875, 0.9655846357345581], "4": [261.2924499511719, 79.26974487304688, 0.8251221179962158], "5": [467.18267822265625, 208.1049041748047, 0.9914625287055969], "6": [193.28060913085938, 218.38687133789062, 0.9975044131278992], "7": [571.1764526367188, 378.72808837890625, 0.796125590801239], "8": [66.09628295898438, 342.11053466796875, 0.922771155834198], "9": [509.4885559082031, 433.61614990234375, 0.7699317932128906], "10": [84.80458068847656, 169.62527465820312, 0.9364908933639526], "11": [439.6427307128906, 479.741943359375, 0.07917778939008713], "12": [266.2398681640625, 480.0, 0.11901303380727768], "13": [489.199951171875, 399.42529296875, 0.0008297963067889214], "14": [292.9695129394531, 411.3643798828125, 0.0014279457973316312], "15": [439.66815185546875, 462.6488037109375, 8.830872684484348e-05], "16": [278.43499755859375, 446.9207763671875, 0.00014037270739208907]}} +{"t": 66.911466, "tracked": true, "track_id": 1, "bbox": [25.227697372436523, 0.0, 627.9843139648438, 479.1121520996094], "det_conf": 0.9262012243270874, "mean_kpt_conf": 0.9171552929011259, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.842082913642804, "right_lift": -0.7009395849121384, "left_bend": 0.40273782134183445, "right_bend": 0.7839733594324715}, "keypoints": {"0": [324.1518859863281, 86.68339538574219, 0.9994370341300964], "1": [350.6595153808594, 59.486907958984375, 0.9989703893661499], "2": [298.240234375, 60.58868408203125, 0.9977529644966125], "3": [385.15557861328125, 77.48677062988281, 0.9652718305587769], "4": [260.3597717285156, 79.22001647949219, 0.849275529384613], "5": [457.9288635253906, 207.54275512695312, 0.9908396601676941], "6": [187.06895446777344, 217.65927124023438, 0.997359573841095], "7": [564.041748046875, 373.216552734375, 0.7700928449630737], "8": [65.36050415039062, 337.2720031738281, 0.9085134267807007], "9": [508.01324462890625, 440.33642578125, 0.7001729607582092], "10": [84.76750183105469, 169.86898803710938, 0.9110220074653625], "11": [421.9715576171875, 480.0, 0.09153901040554047], "12": [250.7954864501953, 480.0, 0.1346096396446228], "13": [487.04498291015625, 407.89630126953125, 0.0008915127255022526], "14": [294.5693054199219, 420.9861145019531, 0.0015552189433947206], "15": [444.53570556640625, 466.12017822265625, 0.00010584054689388722], "16": [289.52044677734375, 450.3003845214844, 0.00016792358655948192]}} +{"t": 66.945134, "tracked": true, "track_id": 1, "bbox": [23.75811195373535, 0.0, 624.7041625976562, 478.7000427246094], "det_conf": 0.9263156652450562, "mean_kpt_conf": 0.9183542782610113, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8320809037510626, "right_lift": -0.6936054854364254, "left_bend": 0.3779245460026297, "right_bend": 0.7805994089666195}, "keypoints": {"0": [322.87823486328125, 86.01077270507812, 0.9994669556617737], "1": [350.090087890625, 59.00309753417969, 0.9990354776382446], "2": [296.97552490234375, 59.57373046875, 0.9978480339050293], "3": [385.0640869140625, 77.54307556152344, 0.9651538729667664], "4": [259.0672912597656, 77.88616943359375, 0.8505064249038696], "5": [453.959228515625, 205.68115234375, 0.9905807375907898], "6": [186.71250915527344, 215.46685791015625, 0.9972821474075317], "7": [562.3408203125, 368.2729797363281, 0.7774749398231506], "8": [62.019805908203125, 335.52923583984375, 0.9110027551651001], "9": [516.7282104492188, 435.03961181640625, 0.7022096514701843], "10": [81.19953918457031, 169.55299377441406, 0.9113360643386841], "11": [419.249755859375, 480.0, 0.09026960283517838], "12": [249.71531677246094, 480.0, 0.13213421404361725], "13": [487.3055419921875, 406.0480041503906, 0.0008337838808074594], "14": [292.1699523925781, 419.28204345703125, 0.0014461625833064318], "15": [452.08758544921875, 465.61474609375, 0.00010110043513122946], "16": [285.4976501464844, 449.19110107421875, 0.00015925956540741026]}} +{"t": 66.981066, "tracked": true, "track_id": 1, "bbox": [22.79767608642578, 0.0, 617.261474609375, 478.7079772949219], "det_conf": 0.927870512008667, "mean_kpt_conf": 0.9203183054924011, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8296536816457639, "right_lift": -0.7053271758065945, "left_bend": 0.36211654053722675, "right_bend": 0.7802463502291849}, "keypoints": {"0": [322.9115295410156, 84.90202331542969, 0.9994565844535828], "1": [348.9078674316406, 58.08415222167969, 0.9988877177238464], "2": [296.70013427734375, 58.81678771972656, 0.9979720711708069], "3": [381.4901123046875, 75.85505676269531, 0.953960120677948], "4": [257.7505798339844, 77.09361267089844, 0.8710688948631287], "5": [448.49822998046875, 201.8027801513672, 0.9906889200210571], "6": [185.9670867919922, 213.6728057861328, 0.997127115726471], "7": [557.2131958007812, 363.36334228515625, 0.7888518571853638], "8": [64.69589233398438, 334.33587646484375, 0.9110304713249207], "9": [512.9200439453125, 436.37298583984375, 0.7034626007080078], "10": [80.87588500976562, 168.97366333007812, 0.9109950065612793], "11": [413.8898010253906, 478.84033203125, 0.09512186050415039], "12": [247.1614990234375, 480.0, 0.13443538546562195], "13": [485.8740539550781, 402.08514404296875, 0.0009100387105718255], "14": [291.8117370605469, 417.1747131347656, 0.001529716420918703], "15": [448.7123107910156, 463.6573791503906, 0.0001114677797886543], "16": [281.6287841796875, 448.1902160644531, 0.00016906284145079553]}} +{"t": 67.045943, "tracked": true, "track_id": 1, "bbox": [22.253164291381836, 0.0, 605.4320678710938, 479.2505798339844], "det_conf": 0.927282452583313, "mean_kpt_conf": 0.9137075543403625, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8297238975568878, "right_lift": -0.6931582751111726, "left_bend": 0.3223613768072696, "right_bend": 0.7743034787643253}, "keypoints": {"0": [321.3241271972656, 81.90237426757812, 0.9994183778762817], "1": [347.1872253417969, 54.84074401855469, 0.9989067316055298], "2": [294.48358154296875, 56.480499267578125, 0.9978647828102112], "3": [380.1277770996094, 72.9185791015625, 0.9563375115394592], "4": [255.94830322265625, 76.42547607421875, 0.8688780069351196], "5": [445.1450500488281, 197.49960327148438, 0.9896278381347656], "6": [186.10606384277344, 212.08560180664062, 0.9967020153999329], "7": [553.7243041992188, 358.9023132324219, 0.7764233946800232], "8": [62.305084228515625, 331.1413879394531, 0.9002988338470459], "9": [513.28955078125, 449.3146667480469, 0.6683670878410339], "10": [78.26835632324219, 165.17398071289062, 0.897958517074585], "11": [407.9464416503906, 475.7961120605469, 0.08589623868465424], "12": [243.71771240234375, 480.0, 0.11991859972476959], "13": [480.7111511230469, 394.2020263671875, 0.0009392734500579536], "14": [288.3055419921875, 412.4650573730469, 0.0015620393678545952], "15": [443.3221740722656, 460.57012939453125, 0.00013222720008343458], "16": [274.0974426269531, 447.78662109375, 0.00019876308215316385]}} +{"t": 67.107756, "tracked": true, "track_id": 1, "bbox": [21.107303619384766, 0.13447986543178558, 598.4874877929688, 479.3700866699219], "det_conf": 0.9213893413543701, "mean_kpt_conf": 0.910332587632266, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8277338811823893, "right_lift": -0.6942505115637752, "left_bend": 0.36442360166324067, "right_bend": 0.772717357483794}, "keypoints": {"0": [319.6916198730469, 80.95704650878906, 0.9994146823883057], "1": [346.1592102050781, 53.748626708984375, 0.9989022016525269], "2": [293.10003662109375, 55.23838806152344, 0.9979212880134583], "3": [380.11572265625, 71.62557983398438, 0.9583882093429565], "4": [255.24118041992188, 74.70222473144531, 0.8703228235244751], "5": [442.60235595703125, 197.353759765625, 0.9890861511230469], "6": [185.65966796875, 214.01771545410156, 0.9969022274017334], "7": [550.1036376953125, 355.93359375, 0.7533812522888184], "8": [61.6463623046875, 333.64019775390625, 0.8996270298957825], "9": [499.22509765625, 439.08062744140625, 0.6525251865386963], "10": [76.860107421875, 163.89633178710938, 0.8971874117851257], "11": [402.55694580078125, 480.0, 0.08936561644077301], "12": [239.6533966064453, 480.0, 0.12928415834903717], "13": [480.1094970703125, 403.54718017578125, 0.0009017357951961458], "14": [292.9908142089844, 421.7494812011719, 0.0015787099255248904], "15": [442.2349853515625, 461.893310546875, 0.0001278997224289924], "16": [277.42034912109375, 447.0469055175781, 0.00019973597954958677]}} +{"t": 67.145837, "tracked": true, "track_id": 1, "bbox": [21.46827507019043, 0.22379367053508759, 594.0233764648438, 479.32232666015625], "det_conf": 0.9155353307723999, "mean_kpt_conf": 0.9125088670037009, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8367267272753122, "right_lift": -0.6893204205637607, "left_bend": 0.35165917874537533, "right_bend": 0.773862481463971}, "keypoints": {"0": [319.2272644042969, 81.10809326171875, 0.9993928670883179], "1": [345.68267822265625, 53.38946533203125, 0.9988740086555481], "2": [292.87835693359375, 55.173248291015625, 0.9978086352348328], "3": [379.86468505859375, 70.331298828125, 0.9589309692382812], "4": [255.72279357910156, 73.80029296875, 0.8695300221443176], "5": [440.3031005859375, 198.35594177246094, 0.9890545606613159], "6": [185.08407592773438, 213.86080932617188, 0.9968365430831909], "7": [544.9808349609375, 358.29632568359375, 0.7578717470169067], "8": [59.20074462890625, 333.6387939453125, 0.8966400027275085], "9": [498.10772705078125, 439.1738586425781, 0.6726059913635254], "10": [76.32804870605469, 162.61643981933594, 0.9000521898269653], "11": [395.8749694824219, 480.0, 0.08391794562339783], "12": [234.49951171875, 480.0, 0.11978066712617874], "13": [471.96453857421875, 402.2813415527344, 0.0009094328270293772], "14": [288.63873291015625, 421.0643615722656, 0.0015501287998631597], "15": [435.3935546875, 458.83941650390625, 0.00012783851707354188], "16": [275.5871276855469, 446.6404724121094, 0.00019533374870661646]}} +{"t": 67.209987, "tracked": true, "track_id": 1, "bbox": [21.21968650817871, 0.22676923871040344, 592.9910278320312, 479.25787353515625], "det_conf": 0.9173709750175476, "mean_kpt_conf": 0.9134837822480635, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8535789633256634, "right_lift": -0.6996037517545968, "left_bend": 0.3062575784727789, "right_bend": 0.7761011598991321}, "keypoints": {"0": [318.2042541503906, 80.74394226074219, 0.9993352293968201], "1": [346.1460266113281, 52.77015686035156, 0.9988947510719299], "2": [292.2165832519531, 54.3798828125, 0.9974642992019653], "3": [382.5214538574219, 69.90866088867188, 0.9662215709686279], "4": [256.2099609375, 72.52865600585938, 0.8580881357192993], "5": [442.04852294921875, 197.9041748046875, 0.9899837970733643], "6": [183.16188049316406, 214.1627655029297, 0.9969114661216736], "7": [540.8768920898438, 359.8307189941406, 0.7753841280937195], "8": [57.37025451660156, 337.32647705078125, 0.8941982388496399], "9": [500.91583251953125, 450.7375183105469, 0.6768115162849426], "10": [73.28874206542969, 165.82760620117188, 0.8950284719467163], "11": [392.3829040527344, 479.73541259765625, 0.08545015752315521], "12": [228.59652709960938, 480.0, 0.11729477345943451], "13": [468.443603515625, 396.9908447265625, 0.0009330270695500076], "14": [281.36236572265625, 418.2296142578125, 0.0015306503046303988], "15": [425.0699157714844, 453.96966552734375, 0.0001343637559330091], "16": [266.57440185546875, 443.62469482421875, 0.00020022182434331626]}} +{"t": 67.276953, "tracked": true, "track_id": 1, "bbox": [21.281452178955078, 0.2934305667877197, 588.4796752929688, 479.3341979980469], "det_conf": 0.91363924741745, "mean_kpt_conf": 0.9010730710896578, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.867412938992908, "right_lift": -0.7138924336893212, "left_bend": 0.3434542869217612, "right_bend": 0.778047291648152}, "keypoints": {"0": [317.1197509765625, 79.93417358398438, 0.9992716908454895], "1": [345.9832458496094, 52.180419921875, 0.9988355040550232], "2": [291.3211364746094, 53.24725341796875, 0.9973529577255249], "3": [383.4248046875, 70.5599365234375, 0.9680998921394348], "4": [255.50942993164062, 72.03901672363281, 0.8567742109298706], "5": [442.4968566894531, 200.0677490234375, 0.9884856939315796], "6": [181.40911865234375, 217.0575408935547, 0.9967468976974487], "7": [535.67138671875, 362.4925537109375, 0.7203220725059509], "8": [56.34747314453125, 344.5546875, 0.8748773336410522], "9": [485.7085266113281, 442.5083923339844, 0.6321630477905273], "10": [70.01324462890625, 170.75982666015625, 0.8788744807243347], "11": [388.6545104980469, 477.90692138671875, 0.07156375795602798], "12": [223.86143493652344, 480.0, 0.10308156907558441], "13": [459.630126953125, 396.4670104980469, 0.0009193797595798969], "14": [275.4436340332031, 416.736083984375, 0.0015601306222379208], "15": [409.633056640625, 452.6100158691406, 0.0001413962454535067], "16": [259.77569580078125, 440.407958984375, 0.00021579132589977235]}} +{"t": 67.342039, "tracked": true, "track_id": 1, "bbox": [21.59383773803711, 0.398991197347641, 591.1705322265625, 479.29119873046875], "det_conf": 0.9219231009483337, "mean_kpt_conf": 0.895507888360457, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8618590435332021, "right_lift": -0.7142604426865469, "left_bend": 0.35142369495528947, "right_bend": 0.7729383426048844}, "keypoints": {"0": [317.0843505859375, 79.28346252441406, 0.9993059635162354], "1": [345.725341796875, 51.910430908203125, 0.9988712668418884], "2": [291.33453369140625, 53.05860900878906, 0.997519314289093], "3": [383.44384765625, 71.41615295410156, 0.9686465263366699], "4": [256.3354797363281, 73.15008544921875, 0.8572133183479309], "5": [441.873291015625, 202.07260131835938, 0.9874210357666016], "6": [185.5823211669922, 218.60633850097656, 0.9968403577804565], "7": [537.1229858398438, 363.9421691894531, 0.6906599402427673], "8": [59.83232116699219, 346.94012451171875, 0.8777221441268921], "9": [488.17523193359375, 439.94598388671875, 0.5993020534515381], "10": [70.30589294433594, 177.93905639648438, 0.8770848512649536], "11": [390.4826354980469, 480.0, 0.06824950873851776], "12": [228.6017608642578, 480.0, 0.10451275110244751], "13": [464.9283447265625, 401.91619873046875, 0.0008237458532676101], "14": [283.2179260253906, 420.50567626953125, 0.0015078929718583822], "15": [421.8034362792969, 454.0299072265625, 0.00013022539496887475], "16": [267.3197326660156, 441.23321533203125, 0.00021027488401159644]}} +{"t": 67.410051, "tracked": true, "track_id": 1, "bbox": [20.638832092285156, 0.3486993908882141, 594.9869995117188, 479.0935974121094], "det_conf": 0.9212316274642944, "mean_kpt_conf": 0.895236687226729, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8738006643518482, "right_lift": -0.7131934440863608, "left_bend": 0.3677241204658809, "right_bend": 0.7707691566317186}, "keypoints": {"0": [317.02996826171875, 79.1220703125, 0.9992874264717102], "1": [345.99273681640625, 51.22283935546875, 0.9988746047019958], "2": [291.0325012207031, 52.98042297363281, 0.9973758459091187], "3": [385.173828125, 70.90646362304688, 0.9697566032409668], "4": [256.309326171875, 73.91227722167969, 0.8475596308708191], "5": [443.3192138671875, 203.96408081054688, 0.9876542687416077], "6": [185.26918029785156, 221.3463134765625, 0.9967548251152039], "7": [533.6724853515625, 366.3192138671875, 0.6936110258102417], "8": [57.88677978515625, 350.95050048828125, 0.8721532225608826], "9": [481.95281982421875, 434.72052001953125, 0.6087397933006287], "10": [67.59735107421875, 179.5777130126953, 0.8758363127708435], "11": [388.62744140625, 478.59039306640625, 0.06955563277006149], "12": [224.71099853515625, 480.0, 0.10341943055391312], "13": [468.6962890625, 401.80670166015625, 0.0008310462580993772], "14": [280.41510009765625, 421.5390930175781, 0.0014867130666971207], "15": [425.6044006347656, 448.39141845703125, 0.0001267261541215703], "16": [260.5370788574219, 438.87701416015625, 0.00020176821271888912]}} +{"t": 67.474391, "tracked": true, "track_id": 1, "bbox": [19.83385467529297, 0.12570175528526306, 594.3780517578125, 478.8816833496094], "det_conf": 0.9195762276649475, "mean_kpt_conf": 0.8837742751294916, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8842098933557924, "right_lift": -0.7230996787174784, "left_bend": 0.35930910508230185, "right_bend": 0.7698601534561347}, "keypoints": {"0": [316.7231750488281, 78.54820251464844, 0.9992971420288086], "1": [346.8251037597656, 50.387481689453125, 0.9989033937454224], "2": [290.6798095703125, 51.53504943847656, 0.9974828362464905], "3": [387.21136474609375, 70.56661987304688, 0.9698227643966675], "4": [256.00823974609375, 71.98591613769531, 0.8482063412666321], "5": [442.068359375, 205.5745849609375, 0.9862724542617798], "6": [186.78640747070312, 220.86293029785156, 0.9964767098426819], "7": [530.3712158203125, 372.73358154296875, 0.6503479480743408], "8": [58.640533447265625, 355.0114440917969, 0.8556022047996521], "9": [478.3956604003906, 442.1347351074219, 0.5597548484802246], "10": [65.45635986328125, 182.59835815429688, 0.8593503832817078], "11": [382.7696838378906, 478.32537841796875, 0.056960850954055786], "12": [220.27178955078125, 480.0, 0.08687347173690796], "13": [462.96649169921875, 401.212158203125, 0.0007745668990537524], "14": [274.52532958984375, 419.25457763671875, 0.0014167501358315349], "15": [420.65167236328125, 448.2281799316406, 0.0001293790410272777], "16": [250.06192016601562, 436.7290954589844, 0.00020801454957108945]}} +{"t": 67.536707, "tracked": true, "track_id": 1, "bbox": [18.66542625427246, 0.0, 597.1548461914062, 478.887939453125], "det_conf": 0.9231104254722595, "mean_kpt_conf": 0.8813648819923401, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8841463086662265, "right_lift": -0.7209341064678143, "left_bend": 0.3637639579086576, "right_bend": 0.7646218715650334}, "keypoints": {"0": [317.3033752441406, 78.120361328125, 0.999300479888916], "1": [347.37872314453125, 49.218719482421875, 0.9989197254180908], "2": [291.1846618652344, 50.71990966796875, 0.9974626302719116], "3": [388.1442565917969, 68.32386779785156, 0.9705003499984741], "4": [256.7596435546875, 70.42375183105469, 0.8437476754188538], "5": [443.35638427734375, 205.20855712890625, 0.9857969880104065], "6": [188.55245971679688, 220.85757446289062, 0.9964182376861572], "7": [532.324951171875, 373.572265625, 0.6368864178657532], "8": [58.48095703125, 356.1714172363281, 0.8488426804542542], "9": [478.08575439453125, 443.94189453125, 0.5574519038200378], "10": [62.91581726074219, 186.84266662597656, 0.8596866130828857], "11": [385.4932556152344, 478.02984619140625, 0.05270812660455704], "12": [223.9078369140625, 480.0, 0.0809100940823555], "13": [466.94287109375, 401.373291015625, 0.0007575087947770953], "14": [283.0306396484375, 419.32904052734375, 0.001397343585267663], "15": [426.108154296875, 447.87396240234375, 0.00012755091302096844], "16": [261.36981201171875, 436.9174499511719, 0.0002072126226266846]}} +{"t": 67.571592, "tracked": true, "track_id": 1, "bbox": [18.723657608032227, 0.0, 595.4356079101562, 478.8426818847656], "det_conf": 0.9171707630157471, "mean_kpt_conf": 0.8838617151433771, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.892513130426262, "right_lift": -0.7212710892170278, "left_bend": 0.3955148562739008, "right_bend": 0.7667497561949804}, "keypoints": {"0": [317.28912353515625, 77.74320983886719, 0.9992917776107788], "1": [347.9956359863281, 48.516845703125, 0.9988765120506287], "2": [291.5628356933594, 49.009918212890625, 0.9973933696746826], "3": [389.09698486328125, 67.24024963378906, 0.9704177975654602], "4": [257.1085205078125, 66.97296142578125, 0.8432300686836243], "5": [442.8798828125, 207.08233642578125, 0.9855043292045593], "6": [189.02479553222656, 221.57093811035156, 0.9965927004814148], "7": [528.219970703125, 375.9593505859375, 0.6237935423851013], "8": [57.936798095703125, 358.0750732421875, 0.8512696027755737], "9": [463.683837890625, 441.89959716796875, 0.5810463428497314], "10": [63.51780700683594, 185.79367065429688, 0.8750628232955933], "11": [384.473388671875, 480.0, 0.04812915623188019], "12": [224.07595825195312, 480.0, 0.07637104392051697], "13": [462.1352844238281, 403.2825012207031, 0.0007521065417677164], "14": [286.7889404296875, 419.6986389160156, 0.0014185523614287376], "15": [416.1973571777344, 449.2745361328125, 0.0001239651464857161], "16": [264.9100341796875, 434.62982177734375, 0.00020501198014244437]}} +{"t": 67.634988, "tracked": true, "track_id": 1, "bbox": [18.352018356323242, 0.0, 595.6838989257812, 478.64984130859375], "det_conf": 0.9210417866706848, "mean_kpt_conf": 0.8802256042307074, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8962570394570769, "right_lift": -0.7137374661239586, "left_bend": 0.37643529012486826, "right_bend": 0.7700846491082591}, "keypoints": {"0": [318.55352783203125, 75.41043090820312, 0.9992850422859192], "1": [348.8840026855469, 46.117919921875, 0.9988678693771362], "2": [292.470458984375, 47.590087890625, 0.9974331259727478], "3": [390.231201171875, 65.33857727050781, 0.9698240160942078], "4": [258.19110107421875, 67.12112426757812, 0.8480812907218933], "5": [445.173583984375, 206.9584503173828, 0.9855077862739563], "6": [188.2783203125, 220.58741760253906, 0.9965016841888428], "7": [529.6250610351562, 377.61065673828125, 0.6150779128074646], "8": [56.96527099609375, 354.3984680175781, 0.8443928360939026], "9": [470.2510986328125, 444.88922119140625, 0.5616265535354614], "10": [66.24221801757812, 181.73236083984375, 0.8658835291862488], "11": [383.6795654296875, 480.0, 0.04768022522330284], "12": [222.07322692871094, 480.0, 0.07498054206371307], "13": [464.71490478515625, 402.64300537109375, 0.0007405515061691403], "14": [291.109375, 420.61822509765625, 0.0014096630038693547], "15": [417.8514404296875, 446.91705322265625, 0.0001249618362635374], "16": [273.5414123535156, 437.3085632324219, 0.00020766258239746094]}} +{"t": 67.668337, "tracked": true, "track_id": 1, "bbox": [17.743385314941406, 0.0, 595.59716796875, 478.6954040527344], "det_conf": 0.9203720092773438, "mean_kpt_conf": 0.8802426511591132, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9011248042226204, "right_lift": -0.7128728280605273, "left_bend": 0.3849877210935631, "right_bend": 0.7671657078587972}, "keypoints": {"0": [317.3653259277344, 73.67868041992188, 0.9992966651916504], "1": [348.6436462402344, 44.687774658203125, 0.9989338517189026], "2": [291.9290466308594, 45.60652160644531, 0.9973147511482239], "3": [391.4466552734375, 65.06478881835938, 0.9736080765724182], "4": [258.5686340332031, 65.17533874511719, 0.8332105278968811], "5": [446.86981201171875, 207.81349182128906, 0.9860864877700806], "6": [187.84182739257812, 220.20628356933594, 0.9966233968734741], "7": [529.4464111328125, 379.4433898925781, 0.6201505661010742], "8": [54.922393798828125, 355.3204345703125, 0.8443016409873962], "9": [468.4654541015625, 443.47052001953125, 0.5680439472198486], "10": [62.806854248046875, 183.0636444091797, 0.8650992512702942], "11": [385.62384033203125, 480.0, 0.049814339727163315], "12": [222.70523071289062, 480.0, 0.07800709456205368], "13": [464.3441162109375, 406.98382568359375, 0.0007251542410813272], "14": [291.14825439453125, 423.64154052734375, 0.0013673609355464578], "15": [417.94000244140625, 450.13897705078125, 0.00011743869254132733], "16": [275.5384826660156, 438.5440673828125, 0.00019521682406775653]}} +{"t": 67.703887, "tracked": true, "track_id": 1, "bbox": [18.15284538269043, 0.0, 595.0904541015625, 478.6768493652344], "det_conf": 0.9173721671104431, "mean_kpt_conf": 0.8812451145865701, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9049722114625307, "right_lift": -0.710111667264074, "left_bend": 0.3975666306040106, "right_bend": 0.7658083031510536}, "keypoints": {"0": [318.0671691894531, 72.48342895507812, 0.9993125200271606], "1": [348.8368225097656, 43.52264404296875, 0.9989537000656128], "2": [291.8677062988281, 45.07334899902344, 0.997377872467041], "3": [391.35479736328125, 64.50718688964844, 0.9730530977249146], "4": [258.0101013183594, 66.43013000488281, 0.83305424451828], "5": [446.6181945800781, 207.03897094726562, 0.9861325025558472], "6": [189.75157165527344, 219.58743286132812, 0.9965429902076721], "7": [528.5133666992188, 381.229248046875, 0.624988853931427], "8": [55.0994873046875, 355.39129638671875, 0.8475140929222107], "9": [462.7547607421875, 443.8907470703125, 0.5698180198669434], "10": [62.95240783691406, 182.55593872070312, 0.8669483661651611], "11": [384.4539489746094, 480.0, 0.04823869839310646], "12": [222.426513671875, 480.0, 0.07551595568656921], "13": [461.52685546875, 403.89111328125, 0.0007098780479282141], "14": [285.6585693359375, 419.931884765625, 0.0013354034163057804], "15": [414.63250732421875, 446.2030944824219, 0.00011855452612508088], "16": [262.906982421875, 435.34173583984375, 0.00019641118706203997]}} +{"t": 67.738936, "tracked": true, "track_id": 1, "bbox": [17.555015563964844, 0.0, 597.1762084960938, 478.76177978515625], "det_conf": 0.918690025806427, "mean_kpt_conf": 0.8811894871971824, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9021760670815342, "right_lift": -0.7120392245183261, "left_bend": 0.38584791173040056, "right_bend": 0.764728077136283}, "keypoints": {"0": [317.96417236328125, 71.5072021484375, 0.9993172883987427], "1": [348.78424072265625, 42.05909729003906, 0.9989720582962036], "2": [291.64093017578125, 44.34230041503906, 0.9973853230476379], "3": [392.18463134765625, 62.47615051269531, 0.9734290838241577], "4": [258.2083740234375, 65.77626037597656, 0.8321258425712585], "5": [447.6380615234375, 206.43795776367188, 0.9864169359207153], "6": [189.24256896972656, 219.80557250976562, 0.9965099692344666], "7": [530.1127319335938, 378.927978515625, 0.63055419921875], "8": [55.8170166015625, 355.1123046875, 0.8427343368530273], "9": [473.2904357910156, 437.978759765625, 0.5740793347358704], "10": [62.50212097167969, 184.96340942382812, 0.8615599870681763], "11": [384.1858825683594, 480.0, 0.053799983114004135], "12": [221.1995849609375, 480.0, 0.08194682002067566], "13": [464.2686767578125, 408.9783935546875, 0.0007289765635505319], "14": [286.8861389160156, 426.5415344238281, 0.0013442188501358032], "15": [420.9902038574219, 446.3207702636719, 0.00011625164916040376], "16": [268.83203125, 439.6630859375, 0.00018965628987643868]}} +{"t": 67.80346, "tracked": true, "track_id": 1, "bbox": [16.78421401977539, 0.05984196439385414, 597.0053100585938, 478.89703369140625], "det_conf": 0.9199932813644409, "mean_kpt_conf": 0.880727540362965, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9038098996710524, "right_lift": -0.7150144461120396, "left_bend": 0.41329064115230757, "right_bend": 0.7739420795173162}, "keypoints": {"0": [317.9438171386719, 69.89256286621094, 0.9993120431900024], "1": [349.0516052246094, 40.383209228515625, 0.9989407658576965], "2": [291.04510498046875, 42.31651306152344, 0.9974029660224915], "3": [392.41973876953125, 61.78309631347656, 0.9732391238212585], "4": [256.61151123046875, 64.56585693359375, 0.8377945423126221], "5": [448.7919921875, 207.7512969970703, 0.9862733483314514], "6": [188.33311462402344, 220.15113830566406, 0.9965733289718628], "7": [531.5463256835938, 382.53094482421875, 0.6102367043495178], "8": [55.300811767578125, 356.2099304199219, 0.8412005305290222], "9": [464.849365234375, 440.39581298828125, 0.5780894756317139], "10": [66.37281799316406, 183.36392211914062, 0.8689401149749756], "11": [383.7326965332031, 480.0, 0.04562636464834213], "12": [220.5951385498047, 480.0, 0.07215014845132828], "13": [457.8724670410156, 404.7846984863281, 0.0006983231869526207], "14": [288.2859191894531, 420.8157958984375, 0.0013367388164624572], "15": [406.6834411621094, 444.5831298828125, 0.0001148179144365713], "16": [269.3475341796875, 435.4831848144531, 0.00019256817176938057]}} +{"t": 67.838035, "tracked": true, "track_id": 1, "bbox": [15.61038589477539, 0.10684138536453247, 598.2403564453125, 478.7999572753906], "det_conf": 0.9236633777618408, "mean_kpt_conf": 0.8784320787949995, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8945871518024952, "right_lift": -0.7098483528499409, "left_bend": 0.3953522163921688, "right_bend": 0.7604558707337449}, "keypoints": {"0": [315.92138671875, 68.80279541015625, 0.9992795586585999], "1": [348.28070068359375, 39.53117370605469, 0.9989526271820068], "2": [289.5780334472656, 41.24688720703125, 0.9970816969871521], "3": [393.81878662109375, 62.34063720703125, 0.9763256907463074], "4": [256.4576110839844, 64.13308715820312, 0.8149194717407227], "5": [449.82861328125, 208.57687377929688, 0.9872463941574097], "6": [188.71282958984375, 221.12545776367188, 0.9961536526679993], "7": [535.26171875, 379.5960388183594, 0.6314168572425842], "8": [56.78523254394531, 354.0820617675781, 0.8188229203224182], "9": [471.18475341796875, 444.53125, 0.5903381109237671], "10": [61.671295166015625, 185.4311981201172, 0.8522158861160278], "11": [380.56402587890625, 480.0, 0.04646272957324982], "12": [217.8905029296875, 480.0, 0.06711477786302567], "13": [454.6529541015625, 402.632568359375, 0.0007120509399101138], "14": [291.5658264160156, 418.5208740234375, 0.0012620884226635098], "15": [402.79437255859375, 441.8766784667969, 0.00012057374260621145], "16": [277.2974853515625, 431.4790954589844, 0.00019222823902964592]}} +{"t": 67.900931, "tracked": true, "track_id": 1, "bbox": [15.65720272064209, 0.18328049778938293, 601.5617065429688, 478.4591979980469], "det_conf": 0.9224255681037903, "mean_kpt_conf": 0.8862038308923895, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9011060009749838, "right_lift": -0.7161453066479682, "left_bend": 0.401729588349753, "right_bend": 0.759532148957071}, "keypoints": {"0": [315.91497802734375, 68.32249450683594, 0.9993313550949097], "1": [348.3240661621094, 39.87176513671875, 0.9989901185035706], "2": [289.6797790527344, 41.05183410644531, 0.997246265411377], "3": [393.84423828125, 63.929351806640625, 0.9763363599777222], "4": [256.47088623046875, 64.76953125, 0.814163863658905], "5": [448.51141357421875, 208.77711486816406, 0.9874509572982788], "6": [191.07020568847656, 219.80015563964844, 0.9966236352920532], "7": [530.50390625, 379.174072265625, 0.6515494585037231], "8": [61.8790283203125, 352.35906982421875, 0.8562646508216858], "9": [466.76788330078125, 439.414306640625, 0.5999808311462402], "10": [64.730712890625, 185.42080688476562, 0.8703046441078186], "11": [378.86676025390625, 480.0, 0.05593491345643997], "12": [216.1436004638672, 480.0, 0.08606114238500595], "13": [450.15814208984375, 408.0647888183594, 0.0006970841204747558], "14": [274.9999084472656, 421.89886474609375, 0.0013008323730900884], "15": [402.0039367675781, 443.8879699707031, 0.00010980555089190602], "16": [252.4992218017578, 431.89886474609375, 0.00018073110550176352]}} +{"t": 67.963034, "tracked": true, "track_id": 1, "bbox": [15.622159004211426, 0.20640769600868225, 597.29736328125, 478.3507995605469], "det_conf": 0.9228867888450623, "mean_kpt_conf": 0.8782623193480752, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.906105142553844, "right_lift": -0.7181034743472295, "left_bend": 0.41602270154092585, "right_bend": 0.7597014957322302}, "keypoints": {"0": [314.3163146972656, 68.72364807128906, 0.9992969036102295], "1": [347.1737976074219, 39.500091552734375, 0.9990020394325256], "2": [288.4462890625, 41.46742248535156, 0.9969329833984375], "3": [394.3054504394531, 62.71592712402344, 0.9780199527740479], "4": [256.7351989746094, 64.74491882324219, 0.791749119758606], "5": [449.2828369140625, 208.5607452392578, 0.9876853227615356], "6": [191.21664428710938, 221.11367797851562, 0.9962298274040222], "7": [530.9666137695312, 383.5132141113281, 0.6403635740280151], "8": [58.09986877441406, 358.47052001953125, 0.8270531892776489], "9": [463.21844482421875, 440.6501770019531, 0.593181848526001], "10": [60.67143249511719, 184.76388549804688, 0.8513707518577576], "11": [375.28131103515625, 480.0, 0.04775990545749664], "12": [213.07989501953125, 480.0, 0.06948801130056381], "13": [442.34619140625, 403.8682861328125, 0.0006917494465596974], "14": [272.1406555175781, 418.49615478515625, 0.0012135341530665755], "15": [390.68804931640625, 438.7320556640625, 0.00011477336374809965], "16": [247.28712463378906, 427.5758361816406, 0.0001811092224670574]}} +{"t": 68.000345, "tracked": true, "track_id": 1, "bbox": [14.609106063842773, 0.2400488555431366, 598.4446411132812, 478.4264831542969], "det_conf": 0.9262135624885559, "mean_kpt_conf": 0.8791023167696866, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8954995464544611, "right_lift": -0.7122642549449837, "left_bend": 0.4181063442288451, "right_bend": 0.7606744093218805}, "keypoints": {"0": [312.4028015136719, 68.08735656738281, 0.9993365406990051], "1": [345.6609191894531, 39.43449401855469, 0.9990571141242981], "2": [287.4316101074219, 40.904876708984375, 0.997055172920227], "3": [393.70892333984375, 63.866546630859375, 0.9797280430793762], "4": [256.5343322753906, 64.39204406738281, 0.7914335131645203], "5": [451.5478515625, 210.0942840576172, 0.9879428744316101], "6": [188.7810516357422, 223.12184143066406, 0.9966290593147278], "7": [535.8875122070312, 379.7921142578125, 0.6346712112426758], "8": [56.6427001953125, 357.20916748046875, 0.8382816314697266], "9": [469.47369384765625, 437.867919921875, 0.5896814465522766], "10": [61.189208984375, 183.81080627441406, 0.8563088774681091], "11": [378.8525390625, 480.0, 0.0512227788567543], "12": [213.45343017578125, 480.0, 0.07772495597600937], "13": [444.2934875488281, 407.7791748046875, 0.0006715385825373232], "14": [270.9471435546875, 422.4946594238281, 0.0012272853637114167], "15": [393.3839111328125, 442.2577819824219, 0.00010667525930330157], "16": [250.0478057861328, 429.2238464355469, 0.00017374199524056166]}} +{"t": 68.065898, "tracked": true, "track_id": 1, "bbox": [11.889570236206055, 0.39985865354537964, 601.88623046875, 478.38677978515625], "det_conf": 0.9275261759757996, "mean_kpt_conf": 0.8790867220271718, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8959728383450073, "right_lift": -0.7043772928928742, "left_bend": 0.41197545601364055, "right_bend": 0.7533442726043497}, "keypoints": {"0": [308.85443115234375, 69.22056579589844, 0.9993534684181213], "1": [341.396240234375, 39.71351623535156, 0.999122679233551], "2": [284.0014953613281, 43.592742919921875, 0.996955394744873], "3": [391.39019775390625, 62.85536193847656, 0.9809759855270386], "4": [255.40687561035156, 68.04396057128906, 0.765160858631134], "5": [453.30389404296875, 207.95553588867188, 0.9884929060935974], "6": [189.34446716308594, 223.21676635742188, 0.9963758587837219], "7": [537.8788452148438, 378.5823059082031, 0.6589942574501038], "8": [57.238006591796875, 354.3092041015625, 0.8366540670394897], "9": [474.5660400390625, 436.01251220703125, 0.5976118445396423], "10": [59.71421813964844, 181.87103271484375, 0.850256621837616], "11": [382.3110046386719, 480.0, 0.057195696979761124], "12": [214.975341796875, 480.0, 0.08215875178575516], "13": [455.732666015625, 405.66497802734375, 0.0006965186912566423], "14": [271.0439453125, 423.0259094238281, 0.0012308646691963077], "15": [410.2314453125, 438.3936767578125, 0.0001091523517970927], "16": [248.22320556640625, 432.35107421875, 0.000174486922333017]}} +{"t": 68.134525, "tracked": true, "track_id": 1, "bbox": [12.371394157409668, 0.5568929314613342, 606.5643310546875, 478.3630676269531], "det_conf": 0.9266147613525391, "mean_kpt_conf": 0.8769909197633917, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.907164684844442, "right_lift": -0.7013503638223045, "left_bend": 0.41152249348480324, "right_bend": 0.750552212207684}, "keypoints": {"0": [301.4440002441406, 72.236083984375, 0.9993544220924377], "1": [334.71722412109375, 40.780364990234375, 0.9991661310195923], "2": [278.4898681640625, 46.69578552246094, 0.9964473843574524], "3": [390.3471984863281, 59.46514892578125, 0.9835788011550903], "4": [255.0889129638672, 67.19866943359375, 0.7055853605270386], "5": [457.89483642578125, 205.30532836914062, 0.9897816181182861], "6": [188.06634521484375, 222.6500244140625, 0.9963558912277222], "7": [537.0575561523438, 375.97491455078125, 0.6788148880004883], "8": [56.67889404296875, 351.9239807128906, 0.8325292468070984], "9": [469.70355224609375, 434.13287353515625, 0.6189085245132446], "10": [58.34625244140625, 182.531494140625, 0.8463778495788574], "11": [381.81964111328125, 480.0, 0.06660260260105133], "12": [210.06275939941406, 480.0, 0.09124907851219177], "13": [456.603271484375, 409.3838195800781, 0.000718594528734684], "14": [266.527587890625, 429.5631103515625, 0.001234104740433395], "15": [407.1340026855469, 436.5207214355469, 0.00010443816427141428], "16": [244.91229248046875, 436.45697021484375, 0.000163825141498819]}} +{"t": 68.196271, "tracked": true, "track_id": 1, "bbox": [12.041086196899414, 0.4970596432685852, 615.4318237304688, 478.3929443359375], "det_conf": 0.9293122291564941, "mean_kpt_conf": 0.8764035918495872, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9122370691292763, "right_lift": -0.6869004161888113, "left_bend": 0.4162936325837138, "right_bend": 0.7360965308694879}, "keypoints": {"0": [290.0292663574219, 76.16461181640625, 0.9994152784347534], "1": [325.2489318847656, 44.16357421875, 0.9992850422859192], "2": [271.0368957519531, 49.05094909667969, 0.9952694773674011], "3": [388.8475341796875, 61.31254577636719, 0.9868791699409485], "4": [255.60174560546875, 64.25856018066406, 0.557914137840271], "5": [460.5345458984375, 209.64938354492188, 0.9909762740135193], "6": [191.77383422851562, 223.45260620117188, 0.9961556792259216], "7": [536.8107299804688, 379.501220703125, 0.7242856025695801], "8": [54.521942138671875, 353.1783447265625, 0.8384930491447449], "9": [472.49786376953125, 432.04852294921875, 0.688130259513855], "10": [51.89195251464844, 183.47463989257812, 0.8636355400085449], "11": [384.1536865234375, 480.0, 0.06695001572370529], "12": [210.72805786132812, 480.0, 0.08633686602115631], "13": [456.4044189453125, 410.7100830078125, 0.0006765875150449574], "14": [256.84332275390625, 428.2837829589844, 0.0010912696598097682], "15": [413.97174072265625, 436.2662353515625, 8.646748756291345e-05], "16": [229.03448486328125, 432.05828857421875, 0.00013146984565537423]}} +{"t": 68.262639, "tracked": true, "track_id": 1, "bbox": [12.621103286743164, 0.11383004486560822, 619.4827880859375, 478.43328857421875], "det_conf": 0.9300153255462646, "mean_kpt_conf": 0.8755440359765833, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9133410688506426, "right_lift": -0.6808759016394077, "left_bend": 0.4395568743588621, "right_bend": 0.7358150319025936}, "keypoints": {"0": [284.119384765625, 76.14988708496094, 0.9994207620620728], "1": [319.7675476074219, 43.85585021972656, 0.9993076324462891], "2": [266.544189453125, 49.14796447753906, 0.9944093823432922], "3": [387.51422119140625, 60.2744140625, 0.9882454872131348], "4": [255.36331176757812, 63.25856018066406, 0.4751037061214447], "5": [462.165283203125, 209.29867553710938, 0.9913250207901001], "6": [194.46243286132812, 222.5050048828125, 0.9960315823554993], "7": [538.790771484375, 381.16998291015625, 0.742500364780426], "8": [55.35284423828125, 351.8284912109375, 0.8458347320556641], "9": [467.536376953125, 430.8935241699219, 0.7229028344154358], "10": [53.9423828125, 178.1971893310547, 0.8759028911590576], "11": [382.371826171875, 480.0, 0.0690251961350441], "12": [208.91064453125, 480.0, 0.08768846094608307], "13": [455.495849609375, 412.4900817871094, 0.0006683879182673991], "14": [255.43228149414062, 429.1088562011719, 0.0010835587745532393], "15": [414.79266357421875, 436.82196044921875, 7.758026185911149e-05], "16": [222.77679443359375, 431.6171875, 0.00011947307211812586]}} +{"t": 68.296312, "tracked": true, "track_id": 1, "bbox": [12.298245429992676, 0.0, 620.0560302734375, 478.5173034667969], "det_conf": 0.9323961734771729, "mean_kpt_conf": 0.8706895031712272, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9128131667501568, "right_lift": -0.6749749163180068, "left_bend": 0.40364610969876163, "right_bend": 0.7317380971351465}, "keypoints": {"0": [282.21954345703125, 75.71321105957031, 0.9993958473205566], "1": [318.5155334472656, 43.4302978515625, 0.9993160963058472], "2": [265.359619140625, 48.305023193359375, 0.9936535358428955], "3": [388.1955871582031, 59.33686828613281, 0.9882639646530151], "4": [255.42127990722656, 60.80464172363281, 0.4259284436702728], "5": [462.80645751953125, 207.73939514160156, 0.9914501309394836], "6": [193.88970947265625, 220.38314819335938, 0.9954900145530701], "7": [538.9344482421875, 377.90216064453125, 0.7625429630279541], "8": [54.530303955078125, 347.8688049316406, 0.8341167569160461], "9": [475.8685302734375, 433.59356689453125, 0.7239029407501221], "10": [52.308807373046875, 175.7227325439453, 0.8635238409042358], "11": [386.16827392578125, 480.0, 0.07970184832811356], "12": [210.99264526367188, 480.0, 0.09355287253856659], "13": [466.17950439453125, 417.9363708496094, 0.0006746831932105124], "14": [260.5283203125, 435.6679992675781, 0.0010211889166384935], "15": [430.1285705566406, 439.7610168457031, 7.596478826599196e-05], "16": [229.80715942382812, 434.6583251953125, 0.00011190740769961849]}} +{"t": 68.358905, "tracked": true, "track_id": 1, "bbox": [10.96022891998291, 0.0, 618.923095703125, 478.771240234375], "det_conf": 0.9269657135009766, "mean_kpt_conf": 0.8677132319320332, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9213112424808506, "right_lift": -0.6900010891696351, "left_bend": 0.4032680535602396, "right_bend": 0.7349981845726384}, "keypoints": {"0": [283.1979675292969, 73.82762145996094, 0.9993914365768433], "1": [319.83331298828125, 42.13948059082031, 0.9993078708648682], "2": [265.98681640625, 46.52281188964844, 0.9941787719726562], "3": [388.279541015625, 59.90892028808594, 0.988628089427948], "4": [254.2338409423828, 60.571319580078125, 0.4611850678920746], "5": [462.8188781738281, 209.910400390625, 0.9916301369667053], "6": [190.6187286376953, 220.37838745117188, 0.9957999587059021], "7": [535.9574584960938, 383.2100524902344, 0.7443987131118774], "8": [54.9844970703125, 349.677490234375, 0.8331981301307678], "9": [468.34283447265625, 440.53765869140625, 0.686539351940155], "10": [51.08277893066406, 181.68942260742188, 0.8505880236625671], "11": [382.41748046875, 480.0, 0.0807538852095604], "12": [204.691650390625, 480.0, 0.09839921444654465], "13": [460.88970947265625, 419.8140869140625, 0.0006664869142696261], "14": [249.2417449951172, 435.5240478515625, 0.0010402753250673413], "15": [420.32220458984375, 440.0247497558594, 7.74201107560657e-05], "16": [216.9239959716797, 433.47711181640625, 0.00011575465032365173]}} +{"t": 68.393004, "tracked": true, "track_id": 1, "bbox": [11.47659969329834, 0.0, 620.7471313476562, 478.9076843261719], "det_conf": 0.9276010394096375, "mean_kpt_conf": 0.8783307671546936, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9198055677597375, "right_lift": -0.6888115186788536, "left_bend": 0.4084389234135654, "right_bend": 0.7355441247736932}, "keypoints": {"0": [287.3656921386719, 73.26937866210938, 0.9994014501571655], "1": [322.9808044433594, 41.146270751953125, 0.9992803931236267], "2": [268.2730712890625, 46.59471130371094, 0.9947859644889832], "3": [388.45452880859375, 58.65888977050781, 0.987403392791748], "4": [253.8748779296875, 62.64186096191406, 0.5196672677993774], "5": [460.43768310546875, 207.5430908203125, 0.9919176697731018], "6": [191.67391967773438, 220.20602416992188, 0.9959136843681335], "7": [534.4127197265625, 380.95562744140625, 0.7582991719245911], "8": [55.2713623046875, 349.8106689453125, 0.8418092131614685], "9": [468.09967041015625, 435.78204345703125, 0.7094326019287109], "10": [51.8983154296875, 180.03163146972656, 0.8637276291847229], "11": [377.959716796875, 480.0, 0.07935536652803421], "12": [203.58912658691406, 480.0, 0.09584368020296097], "13": [456.5491943359375, 413.73309326171875, 0.0006979259778745472], "14": [252.28060913085938, 431.3912048339844, 0.0010839785682037473], "15": [411.8293762207031, 437.02630615234375, 8.134739618981257e-05], "16": [216.87677001953125, 434.973876953125, 0.00012041322770528495]}} +{"t": 68.427523, "tracked": true, "track_id": 1, "bbox": [11.795150756835938, 0.0, 620.1861572265625, 478.8993835449219], "det_conf": 0.9286634922027588, "mean_kpt_conf": 0.8814884586767717, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9128745067108877, "right_lift": -0.6848997497504198, "left_bend": 0.40112925560501833, "right_bend": 0.7296470970461814}, "keypoints": {"0": [290.17535400390625, 72.9530029296875, 0.9993870258331299], "1": [325.2126770019531, 40.984405517578125, 0.9992478489875793], "2": [270.35113525390625, 47.14556884765625, 0.9951269626617432], "3": [388.9461975097656, 58.98820495605469, 0.9865754246711731], "4": [254.28131103515625, 64.74491882324219, 0.552187979221344], "5": [461.79998779296875, 206.48040771484375, 0.991845428943634], "6": [191.85691833496094, 220.83343505859375, 0.9960421323776245], "7": [537.1779174804688, 375.0345458984375, 0.7610790133476257], "8": [59.6966552734375, 345.0605773925781, 0.8480648398399353], "9": [474.1455078125, 431.57257080078125, 0.7031950354576111], "10": [54.29292297363281, 181.41259765625, 0.8636213541030884], "11": [386.53515625, 480.0, 0.09322343021631241], "12": [211.97247314453125, 480.0, 0.11319662630558014], "13": [468.4545593261719, 417.0595703125, 0.0007389754755422473], "14": [266.41644287109375, 436.15240478515625, 0.0011624753242358565], "15": [425.38885498046875, 438.4460754394531, 8.559386333217844e-05], "16": [239.34913635253906, 439.115478515625, 0.00012812211934942752]}} +{"t": 68.462085, "tracked": true, "track_id": 1, "bbox": [12.181635856628418, 0.0, 623.0128173828125, 478.792724609375], "det_conf": 0.9229084253311157, "mean_kpt_conf": 0.8827923102812334, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9091230715880239, "right_lift": -0.6922780711803295, "left_bend": 0.38971349020478385, "right_bend": 0.7389687138891471}, "keypoints": {"0": [294.7217102050781, 71.61036682128906, 0.9994332194328308], "1": [329.7071533203125, 39.534576416015625, 0.9992939233779907], "2": [272.994384765625, 45.700714111328125, 0.996056079864502], "3": [390.99664306640625, 58.648895263671875, 0.9856847524642944], "4": [253.30197143554688, 65.313232421875, 0.6195036172866821], "5": [460.7736511230469, 205.313720703125, 0.9912460446357727], "6": [190.8395538330078, 220.139404296875, 0.9961387515068054], "7": [539.34765625, 376.81121826171875, 0.7402496933937073], "8": [56.04277038574219, 349.4532470703125, 0.84782475233078], "9": [479.373779296875, 435.6797790527344, 0.6744704246520996], "10": [53.777130126953125, 186.4536590576172, 0.8608141541481018], "11": [385.4056396484375, 480.0, 0.0783022791147232], "12": [211.03173828125, 480.0, 0.09938298910856247], "13": [465.16156005859375, 411.5074768066406, 0.0006761765689589083], "14": [259.89276123046875, 430.2994384765625, 0.0010962772648781538], "15": [423.4926452636719, 437.9233703613281, 8.655558485770598e-05], "16": [229.27523803710938, 438.45574951171875, 0.00013118682545609772]}} +{"t": 68.523036, "tracked": true, "track_id": 1, "bbox": [12.649879455566406, 0.0, 622.8355712890625, 478.82379150390625], "det_conf": 0.9187577366828918, "mean_kpt_conf": 0.8958071795376864, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8997096750936917, "right_lift": -0.6987404410364286, "left_bend": 0.4048233677553891, "right_bend": 0.7506305884815045}, "keypoints": {"0": [302.148193359375, 68.91241455078125, 0.9994294047355652], "1": [335.3492126464844, 37.04283142089844, 0.9992732405662537], "2": [277.93951416015625, 43.73161315917969, 0.996587872505188], "3": [391.433837890625, 56.04705810546875, 0.9845904111862183], "4": [253.2847137451172, 65.74032592773438, 0.6917966604232788], "5": [460.4967041015625, 201.0485076904297, 0.991905689239502], "6": [188.54696655273438, 219.79000854492188, 0.9966519474983215], "7": [542.7484741210938, 370.58941650390625, 0.7633501887321472], "8": [56.5316162109375, 348.7355651855469, 0.8646427392959595], "9": [478.41473388671875, 430.60650634765625, 0.6925045251846313], "10": [58.77781677246094, 185.31370544433594, 0.8731462955474854], "11": [390.0133361816406, 480.0, 0.09773822873830795], "12": [215.12887573242188, 480.0, 0.1235528215765953], "13": [472.62664794921875, 418.6810607910156, 0.0007024139631539583], "14": [269.1162109375, 439.4666442871094, 0.0011348407715559006], "15": [427.0069580078125, 441.6533203125, 8.529931074008346e-05], "16": [240.34152221679688, 443.6201171875, 0.00012895632244180888]}} +{"t": 68.558948, "tracked": true, "track_id": 1, "bbox": [11.947006225585938, 0.0, 624.41455078125, 478.82794189453125], "det_conf": 0.9242706894874573, "mean_kpt_conf": 0.8910755677656694, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9013069773626049, "right_lift": -0.7068217104083315, "left_bend": 0.39803456124961295, "right_bend": 0.7554074032074961}, "keypoints": {"0": [302.41162109375, 67.79313659667969, 0.9994600415229797], "1": [335.23297119140625, 35.69786071777344, 0.99930739402771], "2": [278.2931823730469, 42.9837646484375, 0.9968181848526001], "3": [391.43609619140625, 54.637542724609375, 0.9853125214576721], "4": [254.21261596679688, 65.63058471679688, 0.7009892463684082], "5": [463.5499267578125, 201.49737548828125, 0.9917848110198975], "6": [187.6254425048828, 220.43914794921875, 0.9968938827514648], "7": [547.8674926757812, 376.9344787597656, 0.7399646639823914], "8": [54.69575500488281, 353.26171875, 0.8629494905471802], "9": [482.0316467285156, 440.5633544921875, 0.660764217376709], "10": [57.57487487792969, 187.72543334960938, 0.8675867915153503], "11": [390.2479248046875, 480.0, 0.0830775648355484], "12": [213.25869750976562, 480.0, 0.11030846834182739], "13": [473.29571533203125, 415.39581298828125, 0.0006377617246471345], "14": [267.3360290527344, 436.4860534667969, 0.0010874734725803137], "15": [428.03741455078125, 440.5541076660156, 8.09132179711014e-05], "16": [240.74472045898438, 443.6213684082031, 0.00012702777166850865]}} +{"t": 68.622144, "tracked": true, "track_id": 1, "bbox": [11.437585830688477, 0.1784694492816925, 621.9951171875, 478.9049072265625], "det_conf": 0.9277575016021729, "mean_kpt_conf": 0.9002473300153558, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8944507036208753, "right_lift": -0.7031890606684402, "left_bend": 0.4100000708337969, "right_bend": 0.7593302600665002}, "keypoints": {"0": [304.1358337402344, 66.40434265136719, 0.9994613528251648], "1": [337.2802429199219, 35.46168518066406, 0.9992839694023132], "2": [280.07684326171875, 41.47267150878906, 0.9968698620796204], "3": [392.3252258300781, 56.70722961425781, 0.9847381114959717], "4": [254.5547332763672, 65.24150085449219, 0.7112582325935364], "5": [462.50201416015625, 202.26849365234375, 0.9919541478157043], "6": [187.55303955078125, 220.27099609375, 0.9970552921295166], "7": [547.2341918945312, 371.755126953125, 0.7621039748191833], "8": [56.953887939453125, 349.43487548828125, 0.8799705505371094], "9": [479.1658020019531, 434.7033996582031, 0.6957873702049255], "10": [62.65626525878906, 185.81434631347656, 0.8842377662658691], "11": [389.6016540527344, 480.0, 0.09161394089460373], "12": [212.69053649902344, 480.0, 0.1229807585477829], "13": [467.07537841796875, 415.0405578613281, 0.0006604906520806253], "14": [260.6988220214844, 434.33306884765625, 0.0011196399573236704], "15": [421.9555969238281, 441.326904296875, 8.076235826592892e-05], "16": [234.09861755371094, 440.03472900390625, 0.00012600487389136106]}} +{"t": 68.65572, "tracked": true, "track_id": 1, "bbox": [11.211947441101074, 0.26350727677345276, 621.1002197265625, 478.88067626953125], "det_conf": 0.9255442023277283, "mean_kpt_conf": 0.9003813591870394, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9004294940278856, "right_lift": -0.7050874487793463, "left_bend": 0.3980877414389748, "right_bend": 0.7493807265875595}, "keypoints": {"0": [304.8968811035156, 66.86111450195312, 0.9994277358055115], "1": [336.5113525390625, 35.632843017578125, 0.999230146408081], "2": [280.23541259765625, 43.05900573730469, 0.9967561364173889], "3": [390.03857421875, 56.11378479003906, 0.9836242198944092], "4": [254.81179809570312, 68.29096984863281, 0.7200489640235901], "5": [461.86474609375, 201.3699951171875, 0.9919650554656982], "6": [188.36752319335938, 222.20997619628906, 0.9969701766967773], "7": [544.36376953125, 372.1383056640625, 0.765730619430542], "8": [58.636322021484375, 351.203369140625, 0.8761885166168213], "9": [478.85113525390625, 435.690185546875, 0.6927841901779175], "10": [58.78489685058594, 187.24977111816406, 0.881469190120697], "11": [391.9666442871094, 480.0, 0.09307844191789627], "12": [216.63133239746094, 480.0, 0.12213870137929916], "13": [473.7080993652344, 411.69268798828125, 0.0007046067039482296], "14": [269.2367858886719, 434.0918273925781, 0.001177288475446403], "15": [426.0489807128906, 438.9654541015625, 8.768208499532193e-05], "16": [243.445556640625, 443.3899841308594, 0.00013557507190853357]}} +{"t": 68.691766, "tracked": true, "track_id": 1, "bbox": [11.381850242614746, 0.27779820561408997, 622.6744384765625, 478.724365234375], "det_conf": 0.9250378012657166, "mean_kpt_conf": 0.8988641446286981, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8973127326061339, "right_lift": -0.711142946262257, "left_bend": 0.3761872188136523, "right_bend": 0.760603586884639}, "keypoints": {"0": [304.7025451660156, 66.8863525390625, 0.9994465708732605], "1": [336.8570556640625, 35.92622375488281, 0.9992542862892151], "2": [280.4482727050781, 42.663238525390625, 0.996898889541626], "3": [390.6556396484375, 56.93730163574219, 0.9833977222442627], "4": [254.91844177246094, 67.31730651855469, 0.7321484088897705], "5": [461.7630615234375, 201.7405548095703, 0.9918501973152161], "6": [186.59963989257812, 222.84613037109375, 0.9970480799674988], "7": [545.3865966796875, 371.7388610839844, 0.757073700428009], "8": [55.927825927734375, 355.0226135253906, 0.8741703629493713], "9": [487.6406555175781, 436.9611511230469, 0.6784803867340088], "10": [60.511566162109375, 188.91339111328125, 0.8777369856834412], "11": [392.87371826171875, 480.0, 0.08939309418201447], "12": [216.17477416992188, 480.0, 0.11890198290348053], "13": [474.1698303222656, 411.0075988769531, 0.0006910852389410138], "14": [266.33868408203125, 434.3380126953125, 0.00116313761100173], "15": [428.92279052734375, 440.24041748046875, 8.60719446791336e-05], "16": [241.1907958984375, 443.83477783203125, 0.00013324175961315632]}} +{"t": 68.758689, "tracked": true, "track_id": 1, "bbox": [11.85464859008789, 0.17948280274868011, 621.63818359375, 478.6942443847656], "det_conf": 0.9236479997634888, "mean_kpt_conf": 0.8910226442597129, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.8997731433841409, "right_lift": -0.70886032800876, "left_bend": 0.38887636409842014, "right_bend": 0.7583343389311615}, "keypoints": {"0": [303.4596252441406, 67.80355834960938, 0.9994027614593506], "1": [336.104248046875, 36.2783203125, 0.9992233514785767], "2": [279.5327453613281, 42.878814697265625, 0.9965938925743103], "3": [391.0771484375, 55.65545654296875, 0.9837702512741089], "4": [254.87872314453125, 65.35096740722656, 0.7076970934867859], "5": [460.47772216796875, 201.94342041015625, 0.9913751482963562], "6": [188.3535614013672, 221.2188720703125, 0.9965506792068481], "7": [542.724365234375, 371.53656005859375, 0.7414140701293945], "8": [58.6376953125, 351.58050537109375, 0.8503261804580688], "9": [479.6395568847656, 436.575927734375, 0.671308696269989], "10": [62.431854248046875, 191.5202178955078, 0.863586962223053], "11": [390.3663330078125, 480.0, 0.08710353821516037], "12": [216.66232299804688, 480.0, 0.11121827363967896], "13": [473.66217041015625, 415.3968505859375, 0.0007220346014946699], "14": [278.33148193359375, 437.0995788574219, 0.00117961666546762], "15": [428.76251220703125, 440.98406982421875, 9.257442434318364e-05], "16": [258.945556640625, 443.748046875, 0.0001409497344866395]}} +{"t": 68.82088, "tracked": true, "track_id": 1, "bbox": [11.788064002990723, 0.1531907171010971, 621.3777465820312, 478.8323974609375], "det_conf": 0.9232350587844849, "mean_kpt_conf": 0.8903080062432722, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9020785566185328, "right_lift": -0.6921481708366419, "left_bend": 0.3948162532412216, "right_bend": 0.7405257160656289}, "keypoints": {"0": [300.62908935546875, 68.92979431152344, 0.9994250535964966], "1": [334.5906677246094, 36.44573974609375, 0.9992805123329163], "2": [277.3957824707031, 43.36155700683594, 0.9962282180786133], "3": [393.5670471191406, 54.97749328613281, 0.9851515889167786], "4": [254.81153869628906, 64.43571472167969, 0.6509265303611755], "5": [463.84014892578125, 202.36337280273438, 0.9917744994163513], "6": [190.91427612304688, 221.5457305908203, 0.9962831139564514], "7": [543.8920288085938, 369.6891174316406, 0.7587873339653015], "8": [57.000518798828125, 349.9661865234375, 0.8483402132987976], "9": [478.4330139160156, 434.0164794921875, 0.7007868885993958], "10": [55.60784912109375, 192.20204162597656, 0.866404116153717], "11": [388.5121765136719, 480.0, 0.09046834707260132], "12": [213.1040496826172, 480.0, 0.11098349839448929], "13": [463.64959716796875, 417.2333679199219, 0.0007031008135527372], "14": [262.2698669433594, 438.04095458984375, 0.0010849020909518003], "15": [416.4605712890625, 439.6996765136719, 8.535772940376773e-05], "16": [233.71444702148438, 442.0675354003906, 0.00012450190843082964]}} +{"t": 68.857082, "tracked": true, "track_id": 1, "bbox": [11.565009117126465, 0.1442001610994339, 618.4200439453125, 478.82598876953125], "det_conf": 0.922813892364502, "mean_kpt_conf": 0.8828942775726318, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9128126709196072, "right_lift": -0.6971256831077013, "left_bend": 0.3851136370809415, "right_bend": 0.7375015903213901}, "keypoints": {"0": [298.3849182128906, 69.73919677734375, 0.9993996620178223], "1": [332.5248718261719, 37.31813049316406, 0.99925297498703], "2": [276.1070861816406, 44.055084228515625, 0.9959287047386169], "3": [392.280029296875, 55.62593078613281, 0.9852724671363831], "4": [255.36151123046875, 64.25607299804688, 0.6312174797058105], "5": [463.22564697265625, 203.03871154785156, 0.991216778755188], "6": [191.31263732910156, 221.19476318359375, 0.9961193799972534], "7": [540.3232421875, 375.3681945800781, 0.7379734516143799], "8": [56.73359680175781, 352.0527648925781, 0.8388122916221619], "9": [473.66455078125, 441.5228576660156, 0.6782481074333191], "10": [52.62260437011719, 189.25833129882812, 0.8583957552909851], "11": [386.130126953125, 480.0, 0.07436974346637726], "12": [211.74130249023438, 480.0, 0.09330901503562927], "13": [458.5097351074219, 409.63812255859375, 0.0006944285705685616], "14": [259.6697692871094, 430.39105224609375, 0.0010911604622378945], "15": [409.1878967285156, 437.8092041015625, 9.073591354535893e-05], "16": [231.22128295898438, 439.5000915527344, 0.00013410724932327867]}} +{"t": 68.891403, "tracked": true, "track_id": 1, "bbox": [11.457160949707031, 0.14059431850910187, 617.7680053710938, 478.9343566894531], "det_conf": 0.9198534488677979, "mean_kpt_conf": 0.8848788304762407, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9170269747044254, "right_lift": -0.6984441128599701, "left_bend": 0.37285227116425934, "right_bend": 0.7350608528153465}, "keypoints": {"0": [293.0196533203125, 71.24580383300781, 0.9994117021560669], "1": [328.4710693359375, 38.88667297363281, 0.9993077516555786], "2": [272.7511901855469, 45.0946044921875, 0.995030403137207], "3": [392.57086181640625, 56.915496826171875, 0.9870620369911194], "4": [255.78988647460938, 63.04595947265625, 0.5370489954948425], "5": [465.09149169921875, 204.05474853515625, 0.9926853179931641], "6": [191.99057006835938, 220.39923095703125, 0.9957736134529114], "7": [539.991943359375, 376.27490234375, 0.7952197194099426], "8": [56.5677490234375, 352.5634765625, 0.8394151329994202], "9": [477.0301208496094, 442.371337890625, 0.7322779893875122], "10": [50.96299743652344, 191.36700439453125, 0.8604344725608826], "11": [385.17340087890625, 480.0, 0.09097164869308472], "12": [207.6446533203125, 480.0, 0.10111571103334427], "13": [461.6873779296875, 413.083740234375, 0.0007167578442022204], "14": [249.14349365234375, 433.03643798828125, 0.0010025869123637676], "15": [416.8236389160156, 439.13568115234375, 8.264905773103237e-05], "16": [214.46530151367188, 439.4530029296875, 0.0001129568918258883]}} +{"t": 68.951921, "tracked": true, "track_id": 1, "bbox": [12.225805282592773, 0.07024592906236649, 620.6452026367188, 479.01519775390625], "det_conf": 0.9196709990501404, "mean_kpt_conf": 0.887294658205726, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9198363828513314, "right_lift": -0.680543506590121, "left_bend": 0.3937846998537493, "right_bend": 0.7293618667654621}, "keypoints": {"0": [287.1605224609375, 70.6361083984375, 0.9994179010391235], "1": [322.11016845703125, 38.11054992675781, 0.9992802739143372], "2": [268.3041687011719, 45.50067138671875, 0.9944018721580505], "3": [389.37579345703125, 55.05107116699219, 0.9884299039840698], "4": [256.21173095703125, 62.9569091796875, 0.49741360545158386], "5": [465.3922424316406, 204.63034057617188, 0.9933081865310669], "6": [195.79360961914062, 218.89463806152344, 0.9963132739067078], "7": [538.6704711914062, 376.4468078613281, 0.7990249991416931], "8": [59.264007568359375, 345.7041931152344, 0.8617803454399109], "9": [472.10986328125, 436.83538818359375, 0.7526458501815796], "10": [54.87471008300781, 188.66244506835938, 0.8782250285148621], "11": [379.4878845214844, 480.0, 0.10603758692741394], "12": [205.48965454101562, 480.0, 0.12492524087429047], "13": [449.4629821777344, 423.4684753417969, 0.000715666392352432], "14": [252.2154998779297, 441.99530029296875, 0.0010881719645112753], "15": [402.6686096191406, 442.31201171875, 7.030199049040675e-05], "16": [219.99574279785156, 445.7444763183594, 0.00010224260768154636]}} +{"t": 68.987012, "tracked": true, "track_id": 1, "bbox": [12.231510162353516, 0.12433785945177078, 622.3034057617188, 479.0558166503906], "det_conf": 0.9180931448936462, "mean_kpt_conf": 0.8832534036853097, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9184666168663012, "right_lift": -0.6736148747768542, "left_bend": 0.4047691363713349, "right_bend": 0.7240987617576842}, "keypoints": {"0": [284.86968994140625, 72.44387817382812, 0.9993981122970581], "1": [320.4102783203125, 39.948150634765625, 0.999272882938385], "2": [267.1355895996094, 46.52644348144531, 0.9935550093650818], "3": [389.27679443359375, 56.957000732421875, 0.9882969260215759], "4": [256.84906005859375, 62.55474853515625, 0.4365473687648773], "5": [465.3780517578125, 206.0154266357422, 0.9926084876060486], "6": [198.04415893554688, 220.2420654296875, 0.995991051197052], "7": [539.4779052734375, 378.09759521484375, 0.7962069511413574], "8": [57.20744323730469, 348.603515625, 0.859916090965271], "9": [469.4088134765625, 437.81256103515625, 0.7673852443695068], "10": [51.497528076171875, 185.818115234375, 0.8866093158721924], "11": [383.3669738769531, 480.0, 0.08897187560796738], "12": [210.609130859375, 480.0, 0.10563592612743378], "13": [448.7862854003906, 417.3287353515625, 0.0006884978502057493], "14": [252.7413330078125, 434.6824951171875, 0.0010381838073953986], "15": [404.18951416015625, 440.09051513671875, 7.057402399368584e-05], "16": [217.9075469970703, 438.56512451171875, 0.00010294336243532598]}} +{"t": 69.050879, "tracked": true, "track_id": 1, "bbox": [13.251805305480957, 0.027963949367403984, 623.5836791992188, 478.9150085449219], "det_conf": 0.9202992916107178, "mean_kpt_conf": 0.8797404549338601, "diagnostics": {"tracked": true, "visible_keypoints": 11, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9156280484182717, "right_lift": -0.6568619045587177, "left_bend": 0.3895370950741666, "right_bend": 0.7213893719210592}, "keypoints": {"0": [282.593505859375, 72.90557861328125, 0.9993752837181091], "1": [317.7750244140625, 40.10807800292969, 0.9992807507514954], "2": [265.64007568359375, 47.30390930175781, 0.9925885200500488], "3": [388.71234130859375, 55.76039123535156, 0.988425612449646], "4": [257.9832763671875, 62.277557373046875, 0.38017737865448], "5": [465.533447265625, 204.2014923095703, 0.9924651384353638], "6": [200.67601013183594, 218.75274658203125, 0.9951817393302917], "7": [540.45849609375, 374.8456726074219, 0.8130859732627869], "8": [55.643035888671875, 345.0992431640625, 0.847175657749176], "9": [472.09332275390625, 439.9222106933594, 0.7861858010292053], "10": [52.261383056640625, 185.11361694335938, 0.8832031488418579], "11": [383.0558166503906, 480.0, 0.09285502880811691], "12": [211.07432556152344, 480.0, 0.10163994133472443], "13": [455.08935546875, 418.2870788574219, 0.0007115632761269808], "14": [256.5589294433594, 436.72967529296875, 0.0010020422050729394], "15": [416.69757080078125, 441.81134033203125, 7.096084300428629e-05], "16": [218.78274536132812, 442.1365661621094, 9.894135291688144e-05]}} +{"t": 69.119001, "tracked": true, "track_id": 1, "bbox": [14.321459770202637, 0.0, 621.9713134765625, 478.9754943847656], "det_conf": 0.9178921580314636, "mean_kpt_conf": 0.9337120354175568, "diagnostics": {"tracked": true, "visible_keypoints": 10, "torso_ready": true, "left_ready": true, "right_ready": true, "left_lift": -0.9245905441387657, "right_lift": -0.6617918087693074, "left_bend": 0.4041117013398487, "right_bend": 0.7204375109710338}, "keypoints": {"0": [282.78375244140625, 72.66966247558594, 0.9993294477462769], "1": [318.2916564941406, 40.051177978515625, 0.9992344379425049], "2": [266.34466552734375, 47.12409973144531, 0.9915653467178345], "3": [390.1761474609375, 56.275726318359375, 0.9880862236022949], "4": [259.4896240234375, 62.31689453125, 0.34250742197036743], "5": [467.844482421875, 203.26864624023438, 0.992316722869873], "6": [202.55184936523438, 219.45980834960938, 0.995109498500824], "7": [538.2288818359375, 374.09063720703125, 0.822530210018158], "8": [57.148956298828125, 347.815185546875, 0.8558692932128906], "9": [463.205322265625, 436.27294921875, 0.8010178208351135], "10": [52.145538330078125, 184.79006958007812, 0.8920613527297974], "11": [387.99853515625, 480.0, 0.09687775373458862], "12": [214.92550659179688, 480.0, 0.10607651621103287], "13": [457.4756164550781, 416.1901550292969, 0.0007312182569876313], "14": [255.0240936279297, 435.0039978027344, 0.0010208736639469862], "15": [415.2886047363281, 440.8966064453125, 7.087360427249223e-05], "16": [211.913330078125, 439.8009338378906, 9.86828890745528e-05]}} diff --git a/Camera_Recorder/camera_recorder_config.json b/Camera_Recorder/camera_recorder_config.json new file mode 100644 index 0000000..4bbe0c3 --- /dev/null +++ b/Camera_Recorder/camera_recorder_config.json @@ -0,0 +1,96 @@ +{ + "paths": { + "data_dir": "DataG1", + "raw_pose_dir": "RawPose", + "default_home_pose": "DataG1/arm_home.jsonl", + "joint_config": "joint.json", + "pose_mapping_config": "pose_mapping.json", + "default_model_candidates": [ + "Models/yolo11n-pose.pt", + "yolo11n-pose.pt", + "/home/zedx/Robotics_workspace/AI/YOLO/yolo11n-pose.pt" + ], + "model_fallback": "yolo11n-pose.pt" + }, + "runtime": { + "window_name": "G1 Camera Recorder", + "camera_backend": "CAP_V4L2", + "camera_probe_attempts": 3, + "camera_fps_threshold": 1.0, + "track_history_maxlen": 25, + "selected_track_history_key": "selected", + "display_env_var": "DISPLAY", + "dependency_messages": { + "opencv_missing": "OpenCV is not installed for this python. Install it or run the script in the same environment you use for /home/zedx/Robotics_workspace/AI/YOLO/YOLO_Test_3.py.", + "ultralytics_missing": "ultralytics is not installed for this python. Install it or run the script in the same environment you use for /home/zedx/Robotics_workspace/AI/YOLO/YOLO_Test_3.py." + } + }, + "defaults": { + "source": "ask", + "camera_scan_max": 10, + "output": "test_take", + "seconds": 0.0, + "record_hz": 20.0, + "conf": 0.25, + "kpt_conf": 0.35, + "imgsz": 640, + "smoothing": 0.35, + "window_width": 1100, + "window_height": 700, + "show": true, + "no_prompt": false + }, + "replay_defaults": { + "iface": "enp3s0", + "input": "test_take.jsonl", + "home": "arm_home.jsonl", + "speed": 0.35, + "max_arm_delta": 0.18, + "gap_warn_seconds": 0.35, + "abort_gap_seconds": 0.0, + "allow_track_switch": false, + "start_steps": 60, + "home_steps": 180, + "no_prompt": false + }, + "output": { + "dataset_suffix": ".jsonl", + "raw_pose_suffix": ".pose.jsonl", + "dataset_meta_format": "g1_camera_pose_v1", + "raw_meta_format": "g1_camera_pose_raw_v1", + "dataset_notes": "Lower body fixed to home pose; upper body derived heuristically from 2D YOLO keypoints." + }, + "selection": { + "area_confidence_bias": 0.6 + }, + "pose_ui": { + "joint_names": { + "5": "L_shoulder", + "6": "R_shoulder", + "7": "L_elbow", + "8": "R_elbow", + "9": "L_wrist", + "10": "R_wrist", + "11": "L_hip", + "12": "R_hip", + "13": "L_knee", + "14": "R_knee", + "15": "L_ankle", + "16": "R_ankle" + }, + "skeleton_edges": [ + [5, 7], + [7, 9], + [6, 8], + [8, 10], + [5, 6], + [5, 11], + [6, 12], + [11, 12], + [11, 13], + [13, 15], + [12, 14], + [14, 16] + ] + } +} diff --git a/Camera_Recorder/camera_recorder_config.py b/Camera_Recorder/camera_recorder_config.py new file mode 100644 index 0000000..d616131 --- /dev/null +++ b/Camera_Recorder/camera_recorder_config.py @@ -0,0 +1,55 @@ +from __future__ import annotations + +import json +from pathlib import Path +from typing import Any + + +SCRIPT_DIR = Path(__file__).resolve().parent + + +def load_config(config_path: str | Path = "camera_recorder_config.json") -> tuple[dict[str, Any], Path]: + path = Path(config_path) + if not path.is_absolute(): + if path.exists(): + path = path.resolve() + else: + path = (SCRIPT_DIR / path).resolve() + + with path.open("r", encoding="utf-8") as handle: + return json.load(handle), path.parent + + +def load_json_file(path: str | Path) -> dict[str, Any]: + with Path(path).open("r", encoding="utf-8") as handle: + return json.load(handle) + + +def resolve_path(config_dir: Path, raw_path: str | Path) -> Path: + path = Path(raw_path) + if path.is_absolute(): + return path + if path.exists(): + return path.resolve() + return (config_dir / path).resolve() + + +def resolve_default_model(config: dict[str, Any], config_dir: Path) -> str: + path_cfg = config["paths"] + for raw_path in path_cfg["default_model_candidates"]: + candidate = resolve_path(config_dir, raw_path) + if candidate.exists(): + return str(candidate) + return path_cfg["model_fallback"] + + +def load_mapper_configs(config: dict[str, Any], config_dir: Path) -> tuple[dict[str, Any], dict[str, Any], Path, Path]: + path_cfg = config["paths"] + joint_path = resolve_path(config_dir, path_cfg["joint_config"]) + pose_mapping_path = resolve_path(config_dir, path_cfg["pose_mapping_config"]) + return ( + load_json_file(joint_path), + load_json_file(pose_mapping_path), + joint_path, + pose_mapping_path, + ) diff --git a/Camera_Recorder/g1_camera_pose_mapper.py b/Camera_Recorder/g1_camera_pose_mapper.py new file mode 100644 index 0000000..3dd94d2 --- /dev/null +++ b/Camera_Recorder/g1_camera_pose_mapper.py @@ -0,0 +1,318 @@ +from __future__ import annotations + +import copy +import json +import math +from pathlib import Path +from typing import Any, Iterable, Mapping, Sequence + + +def clamp(value: float, low: float, high: float) -> float: + return max(low, min(high, float(value))) + + +def lerp(a: float, b: float, ratio: float) -> float: + return (1.0 - ratio) * float(a) + ratio * float(b) + + +def vec_sub(a: tuple[float, float], b: tuple[float, float]) -> tuple[float, float]: + return (a[0] - b[0], a[1] - b[1]) + + +def vec_mid(a: tuple[float, float], b: tuple[float, float]) -> tuple[float, float]: + return ((a[0] + b[0]) * 0.5, (a[1] + b[1]) * 0.5) + + +def vec_len(a: tuple[float, float]) -> float: + return math.hypot(a[0], a[1]) + + +def vec_norm(a: tuple[float, float], fallback: tuple[float, float]) -> tuple[float, float]: + length = vec_len(a) + if length <= 1e-6: + return fallback + return (a[0] / length, a[1] / length) + + +def vec_dot(a: tuple[float, float], b: tuple[float, float]) -> float: + return a[0] * b[0] + a[1] * b[1] + + +def angle_between(a: tuple[float, float], b: tuple[float, float], fallback_axis: tuple[float, float]) -> float: + na = vec_norm(a, fallback_axis) + nb = vec_norm(b, fallback_axis) + return math.acos(clamp(vec_dot(na, nb), -1.0, 1.0)) + + +def load_home_pose(path: str | Path, expected_joints: int) -> list[float]: + last_q: list[float] | None = None + with open(path, "r", encoding="utf-8") as handle: + for line in handle: + try: + data = json.loads(line) + except json.JSONDecodeError: + continue + q = data.get("q") + if isinstance(q, list) and len(q) == expected_joints: + last_q = [float(v) for v in q] + + if last_q is None: + raise ValueError(f"No valid {expected_joints}-joint pose found in {path}") + return last_q + + +class PoseToG1Mapper: + """ + Converts 2D YOLO pose keypoints into a replay-compatible G1 joint frame. + """ + + def __init__( + self, + home_q: Sequence[float], + joint_config: Mapping[str, Any], + pose_mapping_config: Mapping[str, Any], + *, + min_conf: float | None = None, + smoothing: float | None = None, + ) -> None: + self.joint_config = dict(joint_config) + self.pose_mapping_config = dict(pose_mapping_config) + self.num_motors = int(self.joint_config["g1_num_motor"]) + if len(home_q) != self.num_motors: + raise ValueError(f"Expected {self.num_motors} joints in home_q, got {len(home_q)}") + + self.home_q = [float(v) for v in home_q] + self.prev_q = list(self.home_q) + + waist_cfg = self.joint_config["waist_joint_indices"] + self.waist_yaw = int(waist_cfg["yaw"]) + self.waist_roll = int(waist_cfg["roll"]) + self.waist_pitch = int(waist_cfg["pitch"]) + + self.joint_limits = { + int(idx): (float(bounds[0]), float(bounds[1])) + for idx, bounds in self.joint_config["joint_limits"].items() + } + self.keypoint_ids = { + name: int(value) + for name, value in self.pose_mapping_config["body_keypoint_indices"].items() + } + self.serializable_indices = [int(idx) for idx in self.pose_mapping_config["serializable_keypoint_indices"]] + fallback_cfg = self.pose_mapping_config["fallback_vectors"] + self.axis_x_fallback = tuple(float(v) for v in fallback_cfg["axis_x"]) + self.torso_up_fallback = tuple(float(v) for v in fallback_cfg["torso_up"]) + self.diagnostics_defaults = copy.deepcopy(self.pose_mapping_config["diagnostics_defaults"]) + self.min_segment_length = float(self.pose_mapping_config["min_segment_length_px"]) + self.waist_map = self.pose_mapping_config["waist"] + self.arm_maps = self.pose_mapping_config["arms"] + + default_min_conf = float(self.pose_mapping_config["min_conf"]) + default_smoothing = float(self.pose_mapping_config["default_smoothing"]) + self.min_conf = float(default_min_conf if min_conf is None else min_conf) + self.smoothing = clamp(float(default_smoothing if smoothing is None else smoothing), 0.0, 1.0) + + def reset(self) -> None: + self.prev_q = list(self.home_q) + + def convert( + self, + keypoints: Mapping[int, Sequence[float]] | None, + ) -> tuple[list[float], dict[str, float | int | bool | None]]: + target_q = list(self.home_q) + tracked_joint_indices: set[int] = set() + + diagnostics: dict[str, float | int | bool | None] = copy.deepcopy(self.diagnostics_defaults) + + if not keypoints: + self.prev_q = list(self.home_q) + return list(self.home_q), diagnostics + + visible = {idx: self._point(keypoints.get(idx)) for idx in self.serializable_indices} + diagnostics["visible_keypoints"] = sum(1 for value in visible.values() if value is not None) + + left_shoulder = visible.get(self.keypoint_ids["left_shoulder"]) + right_shoulder = visible.get(self.keypoint_ids["right_shoulder"]) + left_hip = visible.get(self.keypoint_ids["left_hip"]) + right_hip = visible.get(self.keypoint_ids["right_hip"]) + + if left_shoulder and right_shoulder: + shoulder_center = vec_mid(left_shoulder, right_shoulder) + shoulder_axis = vec_norm(vec_sub(right_shoulder, left_shoulder), self.axis_x_fallback) + + if left_hip and right_hip: + hip_center = vec_mid(left_hip, right_hip) + torso_up = vec_norm(vec_sub(shoulder_center, hip_center), self.torso_up_fallback) + center_offset = clamp( + (shoulder_center[0] - hip_center[0]) / max(vec_len(vec_sub(right_shoulder, left_shoulder)), 1.0), + -1.0, + 1.0, + ) + yaw_gain = float(self.waist_map["yaw_center_gain"]) + target_q[self.waist_yaw] = self._joint(self.waist_yaw, self.home_q[self.waist_yaw] + yaw_gain * center_offset) + tracked_joint_indices.add(self.waist_yaw) + else: + torso_up = self.torso_up_fallback + + diagnostics["tracked"] = True + diagnostics["torso_ready"] = True + roll_gain = float(self.waist_map["roll_shoulder_gain"]) + target_q[self.waist_roll] = self._joint(self.waist_roll, self.home_q[self.waist_roll] + roll_gain * shoulder_axis[1]) + tracked_joint_indices.add(self.waist_roll) + + left_q, left_info = self._arm_from_pose( + side="left", + shoulder=left_shoulder, + elbow=visible.get(self.keypoint_ids["left_elbow"]), + wrist=visible.get(self.keypoint_ids["left_wrist"]), + torso_up=torso_up, + shoulder_axis=shoulder_axis, + ) + if left_q is not None: + for idx, value in left_q.items(): + target_q[idx] = value + tracked_joint_indices.add(idx) + diagnostics["left_ready"] = True + diagnostics["left_lift"] = left_info["lift"] + diagnostics["left_bend"] = left_info["bend"] + + right_q, right_info = self._arm_from_pose( + side="right", + shoulder=right_shoulder, + elbow=visible.get(self.keypoint_ids["right_elbow"]), + wrist=visible.get(self.keypoint_ids["right_wrist"]), + torso_up=torso_up, + shoulder_axis=shoulder_axis, + ) + if right_q is not None: + for idx, value in right_q.items(): + target_q[idx] = value + tracked_joint_indices.add(idx) + diagnostics["right_ready"] = True + diagnostics["right_lift"] = right_info["lift"] + diagnostics["right_bend"] = right_info["bend"] + + smoothed = [] + for idx, (prev, new) in enumerate(zip(self.prev_q, target_q)): + if idx not in tracked_joint_indices: + smoothed.append(self.home_q[idx]) + continue + blended = lerp(prev, new, self.smoothing) + if idx in self.joint_limits: + blended = self._joint(idx, blended) + smoothed.append(blended) + + self.prev_q = smoothed + return list(smoothed), diagnostics + + def _point(self, value: Sequence[float] | None) -> tuple[float, float] | None: + if value is None or len(value) < 3: + return None + x, y, conf = float(value[0]), float(value[1]), float(value[2]) + if conf < self.min_conf: + return None + return (x, -y) + + def _joint(self, idx: int, value: float) -> float: + low, high = self.joint_limits[idx] + return clamp(value, low, high) + + def _arm_from_pose( + self, + *, + side: str, + shoulder: tuple[float, float] | None, + elbow: tuple[float, float] | None, + wrist: tuple[float, float] | None, + torso_up: tuple[float, float], + shoulder_axis: tuple[float, float], + ) -> tuple[dict[int, float] | None, dict[str, float]]: + if not shoulder or not elbow or not wrist: + return None, {"lift": 0.0, "bend": 0.0} + + upper = vec_sub(elbow, shoulder) + fore = vec_sub(wrist, elbow) + hand = vec_sub(wrist, shoulder) + if vec_len(upper) < self.min_segment_length or vec_len(fore) < self.min_segment_length: + return None, {"lift": 0.0, "bend": 0.0} + + arm_cfg = self.arm_maps[side] + joint_indices = {name: int(idx) for name, idx in arm_cfg["joint_indices"].items()} + + upper_dir = vec_norm(upper, torso_up) + fore_dir = vec_norm(fore, upper_dir) + hand_dir = vec_norm(hand, upper_dir) + + side_sign = -1.0 if side == "left" else 1.0 + lift = clamp(vec_dot(upper_dir, torso_up), -1.0, 1.0) + outward = clamp(side_sign * vec_dot(upper_dir, shoulder_axis), -1.0, 1.0) + cross_body = clamp(-side_sign * vec_dot(hand_dir, shoulder_axis), -1.0, 1.0) + fore_lift = clamp(vec_dot(fore_dir, torso_up), -1.0, 1.0) + bend_ratio = angle_between(upper_dir, fore_dir, self.axis_x_fallback) / math.pi + horizontal = 1.0 - abs(lift) + + shoulder_pitch_cfg = arm_cfg["shoulder_pitch"] + shoulder_roll_cfg = arm_cfg["shoulder_roll"] + shoulder_yaw_cfg = arm_cfg["shoulder_yaw"] + elbow_cfg = arm_cfg["elbow"] + wrist_roll_cfg = arm_cfg["wrist_roll"] + wrist_pitch_cfg = arm_cfg["wrist_pitch"] + wrist_yaw_cfg = arm_cfg["wrist_yaw"] + + q = { + joint_indices["shoulder_pitch"]: self._joint( + joint_indices["shoulder_pitch"], + lerp(float(shoulder_pitch_cfg["down"]), float(shoulder_pitch_cfg["up"]), (lift + 1.0) * 0.5), + ), + joint_indices["shoulder_roll"]: self._joint( + joint_indices["shoulder_roll"], + self.home_q[joint_indices["shoulder_roll"]] + + float(shoulder_roll_cfg["outward_horizontal"]) * outward * horizontal + + float(shoulder_roll_cfg["lift_positive"]) * max(lift, 0.0) + + float(shoulder_roll_cfg["cross_body"]) * cross_body, + ), + joint_indices["shoulder_yaw"]: self._joint( + joint_indices["shoulder_yaw"], + self.home_q[joint_indices["shoulder_yaw"]] + + float(shoulder_yaw_cfg["cross_body"]) * cross_body + + float(shoulder_yaw_cfg["fore_lift"]) * fore_lift, + ), + joint_indices["elbow"]: self._joint( + joint_indices["elbow"], + float(elbow_cfg["base"]) + float(elbow_cfg["bend"]) * bend_ratio, + ), + joint_indices["wrist_roll"]: self._joint( + joint_indices["wrist_roll"], + self.home_q[joint_indices["wrist_roll"]] + + float(wrist_roll_cfg["outward"]) * outward + + float(wrist_roll_cfg["cross_body"]) * cross_body, + ), + joint_indices["wrist_pitch"]: self._joint( + joint_indices["wrist_pitch"], + self.home_q[joint_indices["wrist_pitch"]] + float(wrist_pitch_cfg["fore_lift"]) * fore_lift, + ), + joint_indices["wrist_yaw"]: self._joint( + joint_indices["wrist_yaw"], + self.home_q[joint_indices["wrist_yaw"]] + float(wrist_yaw_cfg["cross_body"]) * cross_body, + ), + } + + return q, {"lift": lift, "bend": bend_ratio} + + +def keypoints_to_serializable( + keypoints: Mapping[int, Sequence[float]] | None, + indices: Iterable[int], +) -> dict[str, list[float] | None]: + serializable: dict[str, list[float] | None] = {} + if not keypoints: + for idx in indices: + serializable[str(idx)] = None + return serializable + + for idx in indices: + point = keypoints.get(idx) + if point is None: + serializable[str(idx)] = None + continue + serializable[str(idx)] = [float(point[0]), float(point[1]), float(point[2])] + return serializable diff --git a/Camera_Recorder/g1_camera_pose_recorder.py b/Camera_Recorder/g1_camera_pose_recorder.py new file mode 100644 index 0000000..c6d63c5 --- /dev/null +++ b/Camera_Recorder/g1_camera_pose_recorder.py @@ -0,0 +1,712 @@ +#!/usr/bin/env python3 +from __future__ import annotations + +import argparse +import contextlib +from collections import defaultdict, deque +import glob +import json +import math +import os +import sys +import time +from pathlib import Path +from typing import Any + +from camera_recorder_config import load_config, load_mapper_configs, resolve_default_model, resolve_path +from g1_camera_pose_mapper import PoseToG1Mapper, keypoints_to_serializable, load_home_pose + + +cv2 = None +YOLO = None + + +def clamp(value: float, low: float, high: float) -> float: + return max(low, min(high, float(value))) + + +def ensure_runtime_dependencies(runtime_cfg: dict[str, Any]) -> None: + global cv2, YOLO + + messages = runtime_cfg["dependency_messages"] + + if cv2 is None: + try: + import cv2 as _cv2 + except ModuleNotFoundError as exc: + raise SystemExit(messages["opencv_missing"]) from exc + cv2 = _cv2 + + if YOLO is None: + try: + from ultralytics import YOLO as _YOLO + except ModuleNotFoundError as exc: + raise SystemExit(messages["ultralytics_missing"]) from exc + YOLO = _YOLO + + +def parse_source(source: str) -> int | str: + return int(source) if source.isdigit() else source + + +def wait_for_confirmation(prompt: str, enabled: bool = True) -> bool: + if not enabled or not sys.stdin.isatty(): + return True + try: + input(prompt) + return True + except KeyboardInterrupt: + print("\n[REC] Ctrl+C pressed.") + return False + + +def ensure_unique_path(user_path: str, default_dir: Path, suffix: str) -> Path: + path = Path(user_path) + if not path.suffix: + path = path.with_suffix(suffix) + + if len(path.parts) == 1: + default_dir.mkdir(parents=True, exist_ok=True) + candidate = default_dir / path.name + else: + candidate = path + candidate.parent.mkdir(parents=True, exist_ok=True) + + if not candidate.exists(): + return candidate + + index = 1 + while True: + alt = candidate.with_name(f"{candidate.stem}({index}){candidate.suffix}") + if not alt.exists(): + return alt + index += 1 + + +def ensure_unique_output_pair( + user_path: str, + dataset_dir: Path, + dataset_suffix: str, + raw_pose_dir: Path, + raw_pose_suffix: str, +) -> tuple[Path, Path]: + dataset_path = Path(user_path) + if not dataset_path.suffix: + dataset_path = dataset_path.with_suffix(dataset_suffix) + + if len(dataset_path.parts) == 1: + dataset_dir.mkdir(parents=True, exist_ok=True) + dataset_candidate = dataset_dir / dataset_path.name + else: + dataset_candidate = dataset_path + dataset_candidate.parent.mkdir(parents=True, exist_ok=True) + + raw_pose_dir.mkdir(parents=True, exist_ok=True) + + def raw_candidate_for(path: Path) -> Path: + return raw_pose_dir / f"{path.stem}{raw_pose_suffix}" + + raw_candidate = raw_candidate_for(dataset_candidate) + if not dataset_candidate.exists() and not raw_candidate.exists(): + return dataset_candidate, raw_candidate + + index = 1 + while True: + dataset_alt = dataset_candidate.with_name(f"{dataset_candidate.stem}({index}){dataset_candidate.suffix}") + raw_alt = raw_candidate_for(dataset_alt) + if not dataset_alt.exists() and not raw_alt.exists(): + return dataset_alt, raw_alt + index += 1 + + +def _opencv_error_log_level() -> Any: + if hasattr(cv2, "LOG_LEVEL_ERROR"): + return cv2.LOG_LEVEL_ERROR + if hasattr(cv2, "utils") and hasattr(cv2.utils, "logging"): + return cv2.utils.logging.LOG_LEVEL_ERROR + return None + + +@contextlib.contextmanager +def suppress_camera_probe_noise(): + old_level = None + try: + if hasattr(cv2, "getLogLevel"): + old_level = cv2.getLogLevel() + error_level = _opencv_error_log_level() + if error_level is not None and hasattr(cv2, "setLogLevel"): + cv2.setLogLevel(error_level) + except Exception: + old_level = None + + with open(os.devnull, "w", encoding="utf-8") as devnull: + with contextlib.redirect_stderr(devnull): + try: + yield + finally: + try: + if old_level is not None and hasattr(cv2, "setLogLevel"): + cv2.setLogLevel(old_level) + except Exception: + pass + + +def camera_indices_from_dev(max_index: int) -> list[int]: + indices = [] + for path in glob.glob("/dev/video*"): + suffix = path.replace("/dev/video", "") + if suffix.isdigit(): + index = int(suffix) + if index <= max_index: + indices.append(index) + return sorted(set(indices)) + + +def resolve_camera_backend(runtime_cfg: dict[str, Any]) -> int: + backend_name = runtime_cfg["camera_backend"] + return int(getattr(cv2, backend_name, getattr(cv2, "CAP_ANY", 0))) + + +def _try_open_camera(index: int, runtime_cfg: dict[str, Any]) -> dict[str, float | int] | None: + backend = resolve_camera_backend(runtime_cfg) + probe_attempts = int(runtime_cfg["camera_probe_attempts"]) + fps_threshold = float(runtime_cfg["camera_fps_threshold"]) + + cap = cv2.VideoCapture(index, backend) + if not cap.isOpened(): + cap.release() + return None + + ok = False + frame = None + for _ in range(probe_attempts): + ok, frame = cap.read() + if ok and frame is not None and frame.size > 0: + break + + if not ok or frame is None: + cap.release() + return None + + fps = float(cap.get(cv2.CAP_PROP_FPS) or 0.0) + if fps <= fps_threshold or math.isnan(fps): + fps = 0.0 + + info = { + "index": index, + "width": int(frame.shape[1]), + "height": int(frame.shape[0]), + "fps": fps, + } + cap.release() + return info + + +def list_available_cameras(max_index: int, runtime_cfg: dict[str, Any]) -> list[dict[str, float | int]]: + candidates = camera_indices_from_dev(max_index) + if not candidates: + candidates = list(range(max_index + 1)) + + cameras = [] + with suppress_camera_probe_noise(): + for index in candidates: + info = _try_open_camera(index, runtime_cfg) + if info is not None: + cameras.append(info) + return cameras + + +def choose_camera(cameras: list[dict[str, float | int]], runtime_cfg: dict[str, Any]) -> int: + if len(cameras) == 1: + return int(cameras[0]["index"]) + + fps_threshold = float(runtime_cfg["camera_fps_threshold"]) + + print("\nAvailable cameras:") + for option_num, cam in enumerate(cameras, start=1): + fps = float(cam["fps"]) + fps_text = f"{fps:.1f}fps" if fps > fps_threshold and not math.isnan(fps) else "fps unknown" + print( + f" {option_num}. camera {int(cam['index'])} " + f"({int(cam['width'])}x{int(cam['height'])}, {fps_text})" + ) + + if not sys.stdin.isatty(): + return int(cameras[0]["index"]) + + while True: + try: + choice = input("Choose camera option number: ").strip() + except KeyboardInterrupt as exc: + raise SystemExit("\n[REC] Camera selection cancelled by Ctrl+C.") from exc + if choice.isdigit(): + selected = int(choice) + if 1 <= selected <= len(cameras): + return int(cameras[selected - 1]["index"]) + print("Invalid choice. Enter a valid option number.") + + +def open_capture(source: int | str, runtime_cfg: dict[str, Any]): + backend = resolve_camera_backend(runtime_cfg) + if isinstance(source, int): + cap = cv2.VideoCapture(source, backend) + if cap.isOpened(): + return cap + return cv2.VideoCapture(source) + + +def extract_people(result, kpt_conf: float) -> list[dict[str, Any]]: + boxes = result.boxes + kpts = result.keypoints + if boxes is None or kpts is None or len(boxes) == 0: + return [] + + ids = boxes.id + if ids is not None: + track_ids = [int(value) for value in ids.int().cpu().tolist()] + else: + track_ids = [None] * len(boxes) + + xyxy = boxes.xyxy.cpu().tolist() + box_conf = boxes.conf.cpu().tolist() if boxes.conf is not None else [0.0] * len(boxes) + kpts_xy = kpts.xy.cpu().numpy() + kpts_conf = kpts.conf.cpu().numpy() if kpts.conf is not None else None + + people = [] + for index in range(len(boxes)): + x1, y1, x2, y2 = [float(v) for v in xyxy[index]] + kp_map: dict[int, tuple[float, float, float]] = {} + confs = [] + for kp_idx in range(len(kpts_xy[index])): + conf = float(kpts_conf[index][kp_idx]) if kpts_conf is not None else 1.0 + x, y = float(kpts_xy[index][kp_idx][0]), float(kpts_xy[index][kp_idx][1]) + kp_map[kp_idx] = (x, y, conf) + if conf >= kpt_conf: + confs.append(conf) + + area = max(1.0, (x2 - x1) * (y2 - y1)) + people.append( + { + "track_id": track_ids[index], + "bbox": [x1, y1, x2, y2], + "det_conf": float(box_conf[index]), + "mean_kpt_conf": float(sum(confs) / len(confs)) if confs else 0.0, + "area": area, + "keypoints": kp_map, + } + ) + return people + + +def select_person( + people: list[dict[str, Any]], + locked_track_id: int | None, + selection_cfg: dict[str, Any], +) -> dict[str, Any] | None: + if not people: + return None + + if locked_track_id is not None: + for person in people: + if person["track_id"] == locked_track_id: + return person + + bias = float(selection_cfg["area_confidence_bias"]) + return max( + people, + key=lambda person: float(person["area"]) * (bias + float(person["mean_kpt_conf"])), + ) + + +def draw_people( + frame, + people: list[dict[str, Any]], + selected_person: dict[str, Any] | None, + track_history: dict[str, deque[tuple[int, int]]], + kpt_conf: float, + pose_ui_cfg: dict[str, Any], + runtime_cfg: dict[str, Any], +) -> Any: + selected_key = str(runtime_cfg["selected_track_history_key"]) + selected_id = selected_person["track_id"] if selected_person else None + joint_names = {int(idx): label for idx, label in pose_ui_cfg["joint_names"].items()} + skeleton_edges = [tuple(int(v) for v in edge) for edge in pose_ui_cfg["skeleton_edges"]] + + for person in people: + bbox = person["bbox"] + keypoints = person["keypoints"] + is_selected = person is selected_person or ( + selected_id is not None and person["track_id"] == selected_id + ) + + line_color = (0, 220, 255) if is_selected else (110, 110, 110) + text_color = (255, 255, 255) if is_selected else (180, 180, 180) + point_color = (0, 64, 255) if is_selected else (140, 140, 140) + thickness = 2 if is_selected else 1 + + x1, y1, x2, y2 = [int(v) for v in bbox] + cv2.rectangle(frame, (x1, y1), (x2, y2), line_color, thickness) + + valid_points = [] + for a, b in skeleton_edges: + pa = keypoints.get(a) + pb = keypoints.get(b) + if pa is None or pb is None: + continue + if pa[2] < kpt_conf or pb[2] < kpt_conf: + continue + p1 = (int(pa[0]), int(pa[1])) + p2 = (int(pb[0]), int(pb[1])) + valid_points.extend([p1, p2]) + cv2.line(frame, p1, p2, line_color, thickness) + + for idx, label in joint_names.items(): + point = keypoints.get(idx) + if point is None or point[2] < kpt_conf: + continue + px, py = int(point[0]), int(point[1]) + valid_points.append((px, py)) + cv2.circle(frame, (px, py), 4 if is_selected else 3, point_color, -1) + if is_selected: + cv2.putText( + frame, + label, + (px + 5, py - 6), + cv2.FONT_HERSHEY_SIMPLEX, + 0.35, + text_color, + 1, + cv2.LINE_AA, + ) + + if is_selected and valid_points: + cx = int(sum(point[0] for point in valid_points) / len(valid_points)) + cy = int(sum(point[1] for point in valid_points) / len(valid_points)) + history = track_history[selected_key] + history.append((cx, cy)) + while len(history) > history.maxlen: + history.popleft() + for index in range(1, len(history)): + cv2.line(frame, history[index - 1], history[index], (0, 255, 0), 2) + + label = f"ID {person['track_id']}" if person["track_id"] is not None else "person" + cv2.putText( + frame, + label, + (x1 + 5, max(18, y1 - 8)), + cv2.FONT_HERSHEY_SIMPLEX, + 0.55, + text_color, + 2 if is_selected else 1, + cv2.LINE_AA, + ) + + return frame + + +def add_overlay( + frame, + *, + elapsed: float, + samples: int, + selected_person: dict[str, Any] | None, + diagnostics: dict[str, Any], + output_name: str, +) -> None: + lines = [ + f"REC {elapsed:6.2f}s samples={samples}", + f"target={output_name}", + ( + f"track={selected_person['track_id']} " + f"left={int(bool(diagnostics.get('left_ready')))} " + f"right={int(bool(diagnostics.get('right_ready')))}" + ) + if selected_person is not None + else "track=none waiting for pose", + "Press q or ESC to stop", + ] + + for idx, line in enumerate(lines): + y = 28 + idx * 24 + cv2.putText(frame, line, (12, y), cv2.FONT_HERSHEY_SIMPLEX, 0.65, (16, 16, 16), 4, cv2.LINE_AA) + cv2.putText(frame, line, (12, y), cv2.FONT_HERSHEY_SIMPLEX, 0.65, (255, 255, 255), 1, cv2.LINE_AA) + + +def build_parser(config: dict[str, Any], config_path: str) -> argparse.ArgumentParser: + defaults = config["defaults"] + parser = argparse.ArgumentParser( + description=( + "Capture human pose from a camera with YOLO and save a replay-compatible G1 dataset." + ) + ) + parser.add_argument("--config", default=config_path, help="Path to camera_recorder_config.json") + parser.add_argument( + "--source", + default=defaults["source"], + help="Video source: webcam index, path, or 'ask' to scan available cameras.", + ) + parser.add_argument( + "--camera-scan-max", + type=int, + default=int(defaults["camera_scan_max"]), + help="Max camera index to scan when --source ask is used.", + ) + parser.add_argument( + "--model", + default=None, + help="YOLO pose model path/name. Defaults to the first model candidate found in camera_recorder_config.json.", + ) + parser.add_argument( + "--output", + "--output-file", + "--output-name", + dest="output", + default=defaults["output"], + help="Output dataset name/path.", + ) + parser.add_argument( + "--home-pose", + "--home", + "--home-file", + default=config["paths"]["default_home_pose"], + dest="home_pose", + help="Home pose jsonl used for lower body and fallback upper body values.", + ) + parser.add_argument("--seconds", type=float, default=float(defaults["seconds"]), help="0 = record until q / ESC.") + parser.add_argument("--record-hz", type=float, default=float(defaults["record_hz"]), help="Max dataset sample rate.") + parser.add_argument("--conf", type=float, default=float(defaults["conf"]), help="Detection confidence threshold.") + parser.add_argument("--kpt-conf", type=float, default=float(defaults["kpt_conf"]), help="Keypoint confidence threshold.") + parser.add_argument("--imgsz", type=int, default=int(defaults["imgsz"]), help="Inference image size.") + parser.add_argument("--smoothing", type=float, default=float(defaults["smoothing"]), help="Low-pass blend for mapped joints.") + parser.add_argument("--window-width", type=int, default=int(defaults["window_width"]), help="GUI window width.") + parser.add_argument("--window-height", type=int, default=int(defaults["window_height"]), help="GUI window height.") + parser.add_argument("--show", dest="show", action="store_true", help="Show the live camera window.") + parser.add_argument("--no-show", dest="show", action="store_false", help="Disable the live GUI.") + parser.add_argument( + "--no-prompt", + action="store_true", + default=bool(defaults.get("no_prompt", False)), + help="Skip the Enter-to-begin confirmation prompt.", + ) + parser.set_defaults(show=bool(defaults["show"])) + return parser + + +def parse_args_and_config() -> tuple[argparse.Namespace, dict[str, Any], Path]: + pre_parser = argparse.ArgumentParser(add_help=False) + pre_parser.add_argument("--config", default="camera_recorder_config.json") + pre_args, _ = pre_parser.parse_known_args() + + config, config_dir = load_config(pre_args.config) + parser = build_parser(config, pre_args.config) + args = parser.parse_args() + return args, config, config_dir + + +def main() -> None: + args, config, config_dir = parse_args_and_config() + runtime_cfg = config["runtime"] + output_cfg = config["output"] + selection_cfg = config["selection"] + pose_ui_cfg = config["pose_ui"] + joint_cfg, pose_mapping_cfg, joint_cfg_path, pose_mapping_cfg_path = load_mapper_configs(config, config_dir) + + ensure_runtime_dependencies(runtime_cfg) + + data_dir = resolve_path(config_dir, config["paths"]["data_dir"]) + raw_pose_dir = resolve_path(config_dir, config["paths"]["raw_pose_dir"]) + model_path = args.model if args.model else resolve_default_model(config, config_dir) + home_pose_path = resolve_path(config_dir, args.home_pose) + + output_path, raw_output_path = ensure_unique_output_pair( + args.output, + data_dir, + output_cfg["dataset_suffix"], + raw_pose_dir, + output_cfg["raw_pose_suffix"], + ) + + display_env_var = str(runtime_cfg["display_env_var"]) + if args.show and os.name != "nt" and not os.environ.get(display_env_var): + print(f"{display_env_var} not found. Disabling GUI window.") + args.show = False + + home_q = load_home_pose(home_pose_path, int(joint_cfg["g1_num_motor"])) + mapper = PoseToG1Mapper( + home_q, + joint_cfg, + pose_mapping_cfg, + min_conf=args.kpt_conf, + smoothing=args.smoothing, + ) + model = YOLO(model_path) + + if str(args.source).lower() == "ask": + cameras = list_available_cameras(args.camera_scan_max, runtime_cfg) + if not cameras: + raise SystemExit("No camera found. Connect a camera or pass --source .") + source = choose_camera(cameras, runtime_cfg) + print(f"Using camera index: {source}") + else: + source = parse_source(str(args.source)) + + cap = open_capture(source, runtime_cfg) + if not cap.isOpened(): + raise SystemExit(f"Could not open source: {source}") + + if args.show: + cv2.namedWindow(str(runtime_cfg["window_name"]), cv2.WINDOW_NORMAL) + cv2.resizeWindow( + str(runtime_cfg["window_name"]), + max(320, args.window_width), + max(240, args.window_height), + ) + + meta = { + "meta": { + "format": output_cfg["dataset_meta_format"], + "created_unix": time.time(), + "motors": mapper.num_motors, + "source": str(source), + "model": str(model_path), + "record_hz": float(args.record_hz), + "home_pose": str(home_pose_path), + "raw_pose_file": str(raw_output_path.resolve()), + "config_file": str(resolve_path(config_dir, args.config)), + "joint_config_file": str(joint_cfg_path), + "pose_mapping_file": str(pose_mapping_cfg_path), + "notes": output_cfg["dataset_notes"], + } + } + raw_meta = { + "meta": { + "format": output_cfg["raw_meta_format"], + "created_unix": time.time(), + "source": str(source), + "model": str(model_path), + "kpt_conf": float(args.kpt_conf), + "dataset_file": str(output_path.resolve()), + "config_file": str(resolve_path(config_dir, args.config)), + "joint_config_file": str(joint_cfg_path), + "pose_mapping_file": str(pose_mapping_cfg_path), + } + } + + selected_track_id = None + history_key = str(runtime_cfg["selected_track_history_key"]) + history_len = int(runtime_cfg["track_history_maxlen"]) + track_history: dict[str, deque[tuple[int, int]]] = defaultdict(lambda: deque(maxlen=history_len)) + last_sample_wall = 0.0 + last_status_wall = 0.0 + samples = 0 + started_wall = time.time() + + print(f"[REC] Dataset -> {output_path}") + print(f"[REC] Raw pose -> {raw_output_path}") + print("[REC] Press q or ESC to stop.") + + if not wait_for_confirmation("👉 Press Enter to Begin recording... ", enabled=not args.no_prompt): + cap.release() + if args.show: + cv2.destroyAllWindows() + print("[REC] Recording cancelled before start.") + return + + with output_path.open("w", encoding="utf-8") as dataset_file, raw_output_path.open("w", encoding="utf-8") as raw_file: + dataset_file.write(json.dumps(meta) + "\n") + raw_file.write(json.dumps(raw_meta) + "\n") + + try: + while True: + ok, frame = cap.read() + if not ok: + break + + result = model.track( + source=frame, + conf=args.conf, + imgsz=args.imgsz, + persist=True, + verbose=False, + )[0] + people = extract_people(result, args.kpt_conf) + selected_person = select_person(people, selected_track_id, selection_cfg) + if selected_person is not None and selected_person["track_id"] is not None: + selected_track_id = int(selected_person["track_id"]) + elif not people: + selected_track_id = None + track_history[history_key].clear() + + keypoints = selected_person["keypoints"] if selected_person is not None else None + q_frame, diagnostics = mapper.convert(keypoints) + + now = time.time() + elapsed = now - started_wall + + sample_dt = 0.0 if args.record_hz <= 0 else (1.0 / args.record_hz) + should_store = sample_dt == 0.0 or (now - last_sample_wall) >= sample_dt + if should_store: + dataset_row = { + "t": round(elapsed, 6), + "q": [round(float(v), 6) for v in q_frame], + "tracked": bool(diagnostics["tracked"]), + "track_id": selected_person["track_id"] if selected_person is not None else None, + } + raw_row = { + "t": round(elapsed, 6), + "tracked": bool(diagnostics["tracked"]), + "track_id": selected_person["track_id"] if selected_person is not None else None, + "bbox": selected_person["bbox"] if selected_person is not None else None, + "det_conf": selected_person["det_conf"] if selected_person is not None else 0.0, + "mean_kpt_conf": selected_person["mean_kpt_conf"] if selected_person is not None else 0.0, + "diagnostics": diagnostics, + "keypoints": keypoints_to_serializable(keypoints, mapper.serializable_indices), + } + dataset_file.write(json.dumps(dataset_row) + "\n") + raw_file.write(json.dumps(raw_row) + "\n") + samples += 1 + last_sample_wall = now + + if args.show: + display = draw_people( + frame, + people, + selected_person, + track_history, + args.kpt_conf, + pose_ui_cfg, + runtime_cfg, + ) + add_overlay( + display, + elapsed=elapsed, + samples=samples, + selected_person=selected_person, + diagnostics=diagnostics, + output_name=output_path.name, + ) + cv2.imshow(str(runtime_cfg["window_name"]), display) + key = cv2.waitKey(1) & 0xFF + if key in (27, ord("q")): + break + elif now - last_status_wall >= 1.0: + status = "tracked" if diagnostics["tracked"] else "waiting" + print(f"[REC] {elapsed:6.2f}s samples={samples} state={status}") + last_status_wall = now + + if args.seconds > 0 and elapsed >= args.seconds: + break + + except KeyboardInterrupt: + print("\n[REC] Stopped by user.") + finally: + cap.release() + if args.show: + cv2.destroyAllWindows() + + print(f"[REC] Saved {samples} samples to {output_path}") + print(f"[REC] Saved raw pose log to {raw_output_path}") + + +if __name__ == "__main__": + main() diff --git a/Camera_Recorder/g1_camera_pose_replay.py b/Camera_Recorder/g1_camera_pose_replay.py new file mode 100644 index 0000000..cb7f8dd --- /dev/null +++ b/Camera_Recorder/g1_camera_pose_replay.py @@ -0,0 +1,313 @@ +#!/usr/bin/env python3 +""" +G1 REPLAY V14 (HOME RETURN + FULL BODY LOCK) +-------------------------------------------- +1. LOCK: Legs/Waist Rigid (Kp=300) to support weight. +2. REPLAY: Plays your recorded motion. +3. RETURN: Smoothly moves arms to 'arm_home.jsonl' pose at the end. + - Ignores leg data from home file (keeps them locked for balance). + - Slow 3-second transition for safety. + +Usage: + python3 g1_camera_pose_replay.py --iface enp3s0 --input my_teleop_data.jsonl --home arm_home.jsonl + + + python3 g1_camera_pose_replay.py +""" + +import time +import sys +import json +import argparse +import numpy as np +from pathlib import Path +from unitree_sdk2py.core.channel import ChannelPublisher, ChannelSubscriber, ChannelFactoryInitialize +from unitree_sdk2py.idl.default import unitree_hg_msg_dds__LowCmd_ +from unitree_sdk2py.idl.default import unitree_hg_msg_dds__LowState_ +from unitree_sdk2py.idl.unitree_hg.msg.dds_ import LowCmd_ +from unitree_sdk2py.idl.unitree_hg.msg.dds_ import LowState_ +from unitree_sdk2py.utils.crc import CRC + +# ✅ added (for pause/resume keys) +import termios +import tty +import select + +from camera_recorder_config import load_config + +G1_NUM_MOTOR = 29 +ENABLE_ARM_SDK_INDEX = 29 +DATA_DIR = Path("DataG1") +REPLAY_HZ = 60.0 + +# --- GAINS (ROBOT_ARM.PY STANDARD) --- +KP_HIGH = 300.0 # Core/Legs +KD_HIGH = 3.0 +KP_LOW = 80.0 # Arms/Ankles +KD_LOW = 3.0 +KP_WRIST = 40.0 +KD_WRIST = 1.5 + +WEAK_MOTORS = [4, 10, 15, 16, 17, 18, 22, 23, 24, 25] +WRIST_MOTORS = [19, 20, 21, 26, 27, 28] + +def resolve_input_path(in_path: str) -> str: + p = Path(in_path) + if len(p.parts) == 1: return str(DATA_DIR / p.name) + return str(p) + +def load_home_pose(home_path: str): + """Reads the last frame of arm_home.jsonl to get the target pose.""" + path = resolve_input_path(home_path) + try: + last_valid_q = None + with open(path, 'r') as f: + for line in f: + d = json.loads(line) + if 'q' in d and len(d['q']) == G1_NUM_MOTOR: + last_valid_q = d['q'] + if last_valid_q: + print(f"✅ Loaded Home Pose from {path}") + return last_valid_q + else: + print(f"⚠️ Warning: {path} found but contained no valid 'q' data.") + except FileNotFoundError: + print(f"⚠️ Warning: Home file {path} not found.") + + # Fallback: Zero Arms + print("⚠️ Using Default Home (Arms at 0.0)") + default_q = [0.0] * G1_NUM_MOTOR + return default_q + +# ✅ added: non-blocking key reader (x pause, z play) +class KeyPoller: + def __enter__(self): + self.enabled = sys.stdin.isatty() + if not self.enabled: + self.fd = None + self.old_settings = None + return self + self.fd = sys.stdin.fileno() + self.old_settings = termios.tcgetattr(self.fd) + tty.setcbreak(self.fd) # immediate key reads + return self + + def __exit__(self, exc_type, exc, tb): + if self.enabled and self.fd is not None and self.old_settings is not None: + termios.tcsetattr(self.fd, termios.TCSADRAIN, self.old_settings) + + def poll(self): + if not self.enabled or self.fd is None: + return None + if select.select([sys.stdin], [], [], 0)[0]: + return sys.stdin.read(1) + return None + +class ReplayWithHome: + def __init__(self): + self.low_state = None + self.low_cmd = unitree_hg_msg_dds__LowCmd_() + self.crc = CRC() + self.arm_pub = ChannelPublisher("rt/arm_sdk", LowCmd_) + self.arm_pub.Init() + self.state_sub = ChannelSubscriber("rt/lowstate", LowState_) + self.state_sub.Init(self.LowStateHandler, 10) + self.first_state = False + + def LowStateHandler(self, msg: LowState_): + self.low_state = msg + self.first_state = True + + def SendFrame(self, arm_target_q, body_lock_q): + self.low_cmd.motor_cmd[ENABLE_ARM_SDK_INDEX].q = 1.0 + + for i in range(G1_NUM_MOTOR): + self.low_cmd.motor_cmd[i].mode = 1 + self.low_cmd.motor_cmd[i].dq = 0 + self.low_cmd.motor_cmd[i].tau = 0 + + # --- POSITIONS --- + # Arms (15-28) -> Follow Target (Replay or Home) + # Body (0-14) -> Follow Lock (Statue Mode) + if i >= 15: + self.low_cmd.motor_cmd[i].q = arm_target_q[i] + else: + self.low_cmd.motor_cmd[i].q = body_lock_q[i] + + # --- GAINS --- + if i in WEAK_MOTORS: + self.low_cmd.motor_cmd[i].kp = KP_LOW + self.low_cmd.motor_cmd[i].kd = KD_LOW + elif i in WRIST_MOTORS: + self.low_cmd.motor_cmd[i].kp = KP_WRIST + self.low_cmd.motor_cmd[i].kd = KD_WRIST + else: + self.low_cmd.motor_cmd[i].kp = KP_HIGH # 300.0 + self.low_cmd.motor_cmd[i].kd = KD_HIGH + + self.low_cmd.crc = self.crc.Crc(self.low_cmd) + self.arm_pub.Write(self.low_cmd) + + def DisableSDK(self): + print("\n🔌 Disabling SDK...") + self.low_cmd.motor_cmd[ENABLE_ARM_SDK_INDEX].q = 0.0 + self.low_cmd.crc = self.crc.Crc(self.low_cmd) + for _ in range(10): + self.arm_pub.Write(self.low_cmd) + time.sleep(0.02) + + def Run(self, filename: str, home_filename: str, speed: float, no_prompt: bool): + print("Waiting for robot...", end="", flush=True) + while not self.first_state: time.sleep(0.1) + print(" Connected!") + + # 1. LOAD DATA + home_q = load_home_pose(home_filename) + full_body_lock_q = [self.low_state.motor_state[i].q for i in range(G1_NUM_MOTOR)] + + frames = [] + try: + with open(filename, 'r') as f: + for line in f: + d = json.loads(line) + if 'q' in d: frames.append(d) + except Exception as e: print(f"Error: {e}"); return + + print(f"🟢 Ready to play {len(frames)} frames.") + print(f"🔒 Body is LOCKED. Arms will return to 'arm_home' at end.") + print("🎮 Controls: x = PAUSE z = PLAY/RESUME q = QUIT") + if sys.stdin.isatty() and not no_prompt: + input("👉 Press Enter to Begin...") + + # 2. MOVE TO START + print("Moving to start...") + file_start_q = frames[0]['q'] + steps = 60 + for k in range(steps): + alpha = k / steps + interp_q = list(full_body_lock_q) + for j in range(15, 29): + interp_q[j] = (1-alpha)*full_body_lock_q[j] + alpha*file_start_q[j] + self.SendFrame(interp_q, full_body_lock_q) + time.sleep(1.0/REPLAY_HZ) + + # 3. PLAY REPLAY (with pause/resume) + print("▶️ Playing... (press x to pause)") + last_played_q = file_start_q + paused = False + + # Instead of using (time.time() - t_start) directly, we use a play clock + # that only advances when not paused. + play_elapsed = 0.0 + last_real = time.time() + + try: + with KeyPoller() as kp: + while True: + # --- key handling --- + key = kp.poll() + if key: + key = key.lower() + if key == 'x' and not paused: + paused = True + print("\n⏸️ PAUSED (press z to continue)") + elif key == 'z' and paused: + paused = False + last_real = time.time() # reset real-time anchor + print("\n▶️ RESUMED") + elif key == 'q': + print("\n🛑 QUIT") + break + + now_real = time.time() + + if paused: + # Hold last pose, do not advance play time + self.SendFrame(last_played_q, full_body_lock_q) + time.sleep(1.0 / REPLAY_HZ) + continue + + # advance play clock only when running + dt_real = now_real - last_real + last_real = now_real + play_elapsed += dt_real * speed + + target_frame = None + for f in frames: + if f['t'] - frames[0]['t'] >= play_elapsed: + target_frame = f + break + if target_frame is None: + break + + self.SendFrame(target_frame['q'], full_body_lock_q) + last_played_q = target_frame['q'] + time.sleep(1.0 / REPLAY_HZ) + + except KeyboardInterrupt: + print("\nStopped.") + + # 4. RETURN TO ARM HOME (Slow & Smooth) + print(f"\n🏡 Returning arms to {home_filename}...") + + # 3 Seconds duration for smoothness + home_steps = 180 + + for k in range(home_steps): + alpha = k / home_steps + # Interpolate: Last Pose -> Home Pose + interp_q = list(last_played_q) + for j in range(15, 29): + interp_q[j] = (1-alpha)*last_played_q[j] + alpha*home_q[j] + + # Send (Body still locked to original standing pose) + self.SendFrame(interp_q, full_body_lock_q) + time.sleep(1.0/REPLAY_HZ) + + print("✅ Home Reached.") + self.DisableSDK() + +if __name__ == "__main__": + pre_parser = argparse.ArgumentParser(add_help=False) + pre_parser.add_argument("--config", default="camera_recorder_config.json") + pre_args, _ = pre_parser.parse_known_args() + config, _ = load_config(pre_args.config) + replay_defaults = config.get("replay_defaults", {}) + + parser = argparse.ArgumentParser() + parser.add_argument("--config", default=pre_args.config, help="Path to camera_recorder_config.json") + parser.add_argument("iface_pos", nargs="?", default=None, help="Network interface") + parser.add_argument("--iface", default=None, help="Network interface") + parser.add_argument( + "--input", + "--input-file", + dest="input", + default=replay_defaults.get("input"), + help="Input recording file", + ) + parser.add_argument( + "--home", + "--home-file", + dest="home", + default=replay_defaults.get("home", "arm_home.jsonl"), + help="Home pose file", + ) + parser.add_argument("--speed", type=float, default=float(replay_defaults.get("speed", 1.0))) + parser.add_argument( + "--no-prompt", + action="store_true", + default=bool(replay_defaults.get("no_prompt", False)), + help="Skip the Enter-to-begin prompt", + ) + args = parser.parse_args() + + args.iface = args.iface or args.iface_pos or replay_defaults.get("iface") + + if not args.iface: + parser.error("Missing interface. Pass it on the command line or set replay_defaults.iface in camera_recorder_config.json.") + if not args.input: + parser.error("Missing input file. Pass --input or set replay_defaults.input in camera_recorder_config.json.") + + ChannelFactoryInitialize(0, args.iface) + path = resolve_input_path(args.input) + ReplayWithHome().Run(path, args.home, args.speed, args.no_prompt) diff --git a/Camera_Recorder/g1_camera_pose_replay_v2.py b/Camera_Recorder/g1_camera_pose_replay_v2.py new file mode 100644 index 0000000..f3e4bb1 --- /dev/null +++ b/Camera_Recorder/g1_camera_pose_replay_v2.py @@ -0,0 +1,764 @@ +#!/usr/bin/env python3 +""" +g1_camera_pose_replay_v2.py — Enhanced + +Original v2 features: + • Skip rows with invalid/missing 29-joint data + • Skip rows where tracked=false + • Lock to first valid track_id by default + • Clamp sudden arm jumps between accepted frames + • Hold last good pose when frames are skipped + • Preflight summary before moving the robot + +Enhancements in this version: + • Joint limit enforcement — loads joint.json limits, clamps out-of-range values + and reports violation count in preflight + • Frame interpolation — linearly interpolates between source frames at 60 Hz, + eliminating step-and-hold jitter at low recording rates + • Live progress bar — shows elapsed / total time and frame counter during playback + • Loop mode (--loop) — replay the file repeatedly until q is pressed + • Dry-run (--dry-run) — full preflight and validation without touching the robot + • Fix duplicate timestamps — skips frames with t <= last accepted t (was t < last_t) + • Progress feedback — shows % completion during start / home interpolation phases + • Cleaner preflight report — adds duration, playback ETA, limit violation counts +""" + +from __future__ import annotations + +import argparse +from dataclasses import dataclass, field +import json +import math +from pathlib import Path +import select +import sys +import termios +import time +import tty + +from unitree_sdk2py.core.channel import ChannelFactoryInitialize, ChannelPublisher, ChannelSubscriber +from unitree_sdk2py.idl.default import unitree_hg_msg_dds__LowCmd_ +from unitree_sdk2py.idl.default import unitree_hg_msg_dds__LowState_ +from unitree_sdk2py.idl.unitree_hg.msg.dds_ import LowCmd_ +from unitree_sdk2py.idl.unitree_hg.msg.dds_ import LowState_ +from unitree_sdk2py.utils.crc import CRC + +from camera_recorder_config import load_config +from g1_camera_pose_mapper import load_home_pose + + +# --------------------------------------------------------------------------- +# Constants +# --------------------------------------------------------------------------- + +G1_NUM_MOTOR = 29 +ENABLE_ARM_SDK_INDEX = 29 +DATA_DIR = Path("DataG1") +REPLAY_HZ = 60.0 +ARM_START = 15 +ARM_END = 29 + +KP_HIGH = 300.0 +KD_HIGH = 3.0 +KP_LOW = 80.0 +KD_LOW = 3.0 +KP_WRIST = 40.0 +KD_WRIST = 1.5 + +WEAK_MOTORS = {4, 10, 15, 16, 17, 18, 22, 23, 24, 25} +WRIST_MOTORS = {19, 20, 21, 26, 27, 28} + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +def resolve_input_path(in_path: str) -> str: + path = Path(in_path) + if not path.suffix: + path = path.with_suffix(".jsonl") + if len(path.parts) == 1: + return str(DATA_DIR / path.name) + return str(path) + + +def clamp(value: float, low: float, high: float) -> float: + return max(low, min(high, float(value))) + + +def lerp(a: float, b: float, t: float) -> float: + return (1.0 - t) * float(a) + t * float(b) + + +def interp_q(a: list[float], b: list[float], t: float) -> list[float]: + """Linearly interpolate between two full joint position vectors.""" + return [lerp(a[i], b[i], t) for i in range(len(a))] + + +def arm_delta(a: list[float], b: list[float]) -> float: + return max(abs(float(a[i]) - float(b[i])) for i in range(ARM_START, ARM_END)) + + +def clamp_arm_step( + target_q: list[float], prev_q: list[float], max_delta: float +) -> tuple[list[float], bool]: + clamped_q = list(target_q) + was_clamped = False + for i in range(ARM_START, ARM_END): + delta = float(target_q[i]) - float(prev_q[i]) + if abs(delta) > max_delta: + clamped_q[i] = float(prev_q[i]) + math.copysign(max_delta, delta) + was_clamped = True + return clamped_q, was_clamped + + +def apply_joint_limits( + q: list[float], limits: dict[int, tuple[float, float]] +) -> tuple[list[float], int]: + """Clamp q to physical joint limits. Returns (clamped_q, number_of_violations).""" + out = list(q) + violations = 0 + for idx, (lo, hi) in limits.items(): + val = float(out[idx]) + clamped = clamp(val, lo, hi) + if clamped != val: + violations += 1 + out[idx] = clamped + return out, violations + + +def load_joint_limits_from_config(config: dict) -> dict[int, tuple[float, float]]: + """Load joint limits from the joint.json path referenced in config.""" + joint_config_path = config.get("paths", {}).get("joint_config", "joint.json") + p = Path(joint_config_path) + if not p.is_absolute(): + p = Path(__file__).parent / p + try: + with open(p, "r", encoding="utf-8") as fh: + jdata = json.load(fh) + return { + int(k): (float(v[0]), float(v[1])) + for k, v in jdata.get("joint_limits", {}).items() + } + except Exception as exc: + print(f"⚠️ Could not load joint limits from {p}: {exc}") + return {} + + +# --------------------------------------------------------------------------- +# Data classes +# --------------------------------------------------------------------------- + +@dataclass +class PlaybackFrame: + t: float + q: list[float] + track_id: int | None = None + source_line: int = 0 + tracked: bool = True + clamped: bool = False + limit_violations: int = 0 + + +@dataclass +class PreflightReport: + meta: dict = field(default_factory=dict) + raw_rows: int = 0 + accepted_frames: int = 0 + skipped_bad_q: int = 0 + skipped_untracked: int = 0 + skipped_track_switch: int = 0 + skipped_non_monotonic: int = 0 + skipped_non_finite: int = 0 + clamped_frames: int = 0 + limit_violation_frames: int = 0 + total_limit_violations: int = 0 + locked_track_id: int | None = None + track_ids_seen: set[int] = field(default_factory=set) + max_raw_arm_delta: float = 0.0 + max_clean_arm_delta: float = 0.0 + max_gap_seconds: float = 0.0 + long_gap_count: int = 0 + first_time: float | None = None + last_time: float | None = None + + +# --------------------------------------------------------------------------- +# Home pose loader +# --------------------------------------------------------------------------- + +def load_home_pose_for_replay(home_path: str) -> list[float]: + path = resolve_input_path(home_path) + try: + q = load_home_pose(path, G1_NUM_MOTOR) + print(f"✅ Loaded home pose from {path}") + return q + except FileNotFoundError: + print(f"⚠️ Home file not found: {path}") + except ValueError: + print(f"⚠️ {path} contained no valid 29-joint pose.") + print("⚠️ Using default home (all zeros).") + return [0.0] * G1_NUM_MOTOR + + +# --------------------------------------------------------------------------- +# Dataset sanitization +# --------------------------------------------------------------------------- + +def sanitize_frames( + filename: str, + *, + max_arm_delta: float, + gap_warn_seconds: float, + lock_first_track: bool, + joint_limits: dict[int, tuple[float, float]], +) -> tuple[list[PlaybackFrame], PreflightReport]: + report = PreflightReport() + frames: list[PlaybackFrame] = [] + last_accepted_t: float | None = None + last_good: PlaybackFrame | None = None + + with open(filename, "r", encoding="utf-8") as fh: + for line_num, raw_line in enumerate(fh, start=1): + line = raw_line.strip() + if not line: + continue + try: + data = json.loads(line) + except json.JSONDecodeError: + continue + + # metadata line + if "meta" in data and "q" not in data: + report.meta = data.get("meta", {}) + continue + + report.raw_rows += 1 + + # ── q validation ────────────────────────────────────────────── + q = data.get("q") + if not isinstance(q, list) or len(q) != G1_NUM_MOTOR: + report.skipped_bad_q += 1 + continue + try: + qf = [float(v) for v in q] + except (TypeError, ValueError): + report.skipped_bad_q += 1 + continue + if any(not math.isfinite(v) for v in qf): + report.skipped_non_finite += 1 + continue + + # ── strict monotonic timestamp (skips equal too — fixes duplicates) ── + t = float(data.get("t", report.raw_rows / REPLAY_HZ)) + if last_accepted_t is not None and t <= last_accepted_t: + report.skipped_non_monotonic += 1 + continue + + # ── tracking ────────────────────────────────────────────────── + track_id_raw = data.get("track_id") + track_id = int(track_id_raw) if isinstance(track_id_raw, int) else None + if track_id is not None: + report.track_ids_seen.add(track_id) + + tracked = bool(data.get("tracked", True)) + if not tracked: + report.skipped_untracked += 1 + continue + + if lock_first_track and track_id is not None: + if report.locked_track_id is None: + report.locked_track_id = track_id + elif track_id != report.locked_track_id: + report.skipped_track_switch += 1 + continue + + # ── joint limit enforcement ─────────────────────────────────── + q_limited, violations = apply_joint_limits(qf, joint_limits) + if violations > 0: + report.limit_violation_frames += 1 + report.total_limit_violations += violations + + # ── arm jump clamping ───────────────────────────────────────── + q_clean = q_limited + was_clamped = False + if last_good is not None: + raw_delta = arm_delta(q_limited, last_good.q) + report.max_raw_arm_delta = max(report.max_raw_arm_delta, raw_delta) + q_clean, was_clamped = clamp_arm_step(q_limited, last_good.q, max_arm_delta) + report.max_clean_arm_delta = max( + report.max_clean_arm_delta, arm_delta(q_clean, last_good.q) + ) + gap = t - last_good.t + report.max_gap_seconds = max(report.max_gap_seconds, gap) + if gap_warn_seconds > 0 and gap > gap_warn_seconds: + report.long_gap_count += 1 + + if was_clamped: + report.clamped_frames += 1 + + if report.first_time is None: + report.first_time = t + report.last_time = t + last_accepted_t = t + + frame = PlaybackFrame( + t=t, + q=q_clean, + track_id=track_id, + source_line=line_num, + tracked=tracked, + clamped=was_clamped, + limit_violations=violations, + ) + frames.append(frame) + last_good = frame + + report.accepted_frames = len(frames) + return frames, report + + +# --------------------------------------------------------------------------- +# Preflight report +# --------------------------------------------------------------------------- + +def print_preflight(filename: str, report: PreflightReport, args) -> None: + duration = ( + (report.last_time - report.first_time) + if report.first_time is not None and report.last_time is not None + else 0.0 + ) + playback_eta = duration / max(args.speed, 1e-6) + + print("\n" + "=" * 66) + print("📋 CAMERA REPLAY PREFLIGHT") + print(f" File : {filename}") + if report.meta: + print(f" Format : {report.meta.get('format', 'unknown')}") + print(f" Model : {report.meta.get('model', 'unknown')}") + print(f" Recorded Hz : {report.meta.get('hz', 'unknown')}") + print(f" Duration : {duration:.2f} s ({report.accepted_frames} frames)") + print(f" Playback ETA : ~{playback_eta:.1f} s at {args.speed:.2f}×") + print("─" * 66) + print(f" Raw rows : {report.raw_rows}") + print(f" Accepted : {report.accepted_frames}") + print(f" Skipped bad q : {report.skipped_bad_q}") + print(f" Skipped non-finite: {report.skipped_non_finite}") + print(f" Skipped untracked: {report.skipped_untracked}") + print(f" Skipped track swap: {report.skipped_track_switch}") + print(f" Skipped bad time : {report.skipped_non_monotonic}") + print(f" Clamped frames : {report.clamped_frames} (max delta = {args.max_arm_delta:.3f} rad)") + if report.total_limit_violations: + print( + f" Limit violations : {report.limit_violation_frames} frames, " + f"{report.total_limit_violations} joints total ← clamped to safe range" + ) + else: + print(" Limit violations : none ✅") + print("─" * 66) + print(f" Locked track id : {report.locked_track_id}") + print(f" Track ids seen : {sorted(report.track_ids_seen) if report.track_ids_seen else 'none'}") + print(f" Max raw arm jump : {report.max_raw_arm_delta:.4f} rad") + print(f" Max clean arm jump: {report.max_clean_arm_delta:.4f} rad") + print(f" Max frame gap : {report.max_gap_seconds:.4f} s") + print(f" Gap warnings : {report.long_gap_count} (threshold = {args.gap_warn_seconds:.3f} s)") + if args.abort_gap_seconds <= 0: + print(" Gap abort : DISABLED (pass --abort-gap-seconds to enable)") + else: + print(f" Gap abort : {args.abort_gap_seconds:.3f} s") + print("=" * 66 + "\n") + + +# --------------------------------------------------------------------------- +# Keyboard poller +# --------------------------------------------------------------------------- + +class KeyPoller: + def __enter__(self): + self.enabled = sys.stdin.isatty() + self.fd = None + self.old_settings = None + if self.enabled: + self.fd = sys.stdin.fileno() + self.old_settings = termios.tcgetattr(self.fd) + tty.setcbreak(self.fd) + return self + + def __exit__(self, exc_type, exc, tb): + if self.enabled and self.fd is not None and self.old_settings is not None: + termios.tcsetattr(self.fd, termios.TCSADRAIN, self.old_settings) + + def poll(self) -> str | None: + if not self.enabled or self.fd is None: + return None + if select.select([sys.stdin], [], [], 0)[0]: + return sys.stdin.read(1) + return None + + +# --------------------------------------------------------------------------- +# Replay engine +# --------------------------------------------------------------------------- + +class ReplayWithHomeV2: + def __init__(self): + self.low_state = None + self.low_cmd = unitree_hg_msg_dds__LowCmd_() + self.crc = CRC() + self.arm_pub = ChannelPublisher("rt/arm_sdk", LowCmd_) + self.arm_pub.Init() + self.state_sub = ChannelSubscriber("rt/lowstate", LowState_) + self.state_sub.Init(self.LowStateHandler, 10) + self.first_state = False + + def LowStateHandler(self, msg: LowState_) -> None: + self.low_state = msg + self.first_state = True + + def SendFrame(self, arm_target_q: list[float], body_lock_q: list[float]) -> None: + self.low_cmd.motor_cmd[ENABLE_ARM_SDK_INDEX].q = 1.0 + for i in range(G1_NUM_MOTOR): + self.low_cmd.motor_cmd[i].mode = 1 + self.low_cmd.motor_cmd[i].dq = 0.0 + self.low_cmd.motor_cmd[i].tau = 0.0 + self.low_cmd.motor_cmd[i].q = arm_target_q[i] if i >= ARM_START else body_lock_q[i] + if i in WRIST_MOTORS: + self.low_cmd.motor_cmd[i].kp = KP_WRIST + self.low_cmd.motor_cmd[i].kd = KD_WRIST + elif i in WEAK_MOTORS: + self.low_cmd.motor_cmd[i].kp = KP_LOW + self.low_cmd.motor_cmd[i].kd = KD_LOW + else: + self.low_cmd.motor_cmd[i].kp = KP_HIGH + self.low_cmd.motor_cmd[i].kd = KD_HIGH + self.low_cmd.crc = self.crc.Crc(self.low_cmd) + self.arm_pub.Write(self.low_cmd) + + def DisableSDK(self) -> None: + print("\n🔌 Disabling SDK...") + self.low_cmd.motor_cmd[ENABLE_ARM_SDK_INDEX].q = 0.0 + self.low_cmd.crc = self.crc.Crc(self.low_cmd) + for _ in range(10): + self.arm_pub.Write(self.low_cmd) + time.sleep(0.02) + + def _interpolate_phase( + self, + label: str, + from_q: list[float], + to_q: list[float], + body_q: list[float], + steps: int, + ) -> None: + """Smoothly move arms from from_q → to_q over `steps` frames at REPLAY_HZ.""" + dt = 1.0 / REPLAY_HZ + for step in range(steps): + alpha = step / max(1, steps - 1) + self.SendFrame(interp_q(from_q, to_q, alpha), body_q) + if step % 15 == 0 or step == steps - 1: + pct = int(100.0 * alpha) + bar = ("█" * (pct // 5)).ljust(20) + print(f"\r {label} [{bar}] {pct:3d}%", end="", flush=True) + time.sleep(dt) + print() + + def _play_once( + self, + frames: list[PlaybackFrame], + body_lock_q: list[float], + speed: float, + kp: KeyPoller, + ) -> tuple[list[float], bool]: + """ + Play all frames once with frame interpolation and a live progress bar. + Returns (last_played_q, quit_requested). + """ + first_t = frames[0].t + final_t = frames[-1].t - first_t + frame_idx = 0 + play_elapsed = 0.0 + last_real = time.time() + last_played_q = list(frames[0].q) + paused = False + quit_req = False + dt = 1.0 / REPLAY_HZ + + while True: + key = kp.poll() + if key: + k = key.lower() + if k == "x" and not paused: + paused = True + print("\n⏸️ PAUSED (z = resume, q = quit)") + elif k == "z" and paused: + paused = False + last_real = time.time() + print("\n▶️ RESUMED") + elif k == "q": + quit_req = True + break + + now_real = time.time() + if paused: + self.SendFrame(last_played_q, body_lock_q) + time.sleep(dt) + continue + + dt_real = now_real - last_real + last_real = now_real + play_elapsed += dt_real * speed + + # advance frame index + while frame_idx + 1 < len(frames): + if frames[frame_idx + 1].t - first_t <= play_elapsed: + frame_idx += 1 + else: + break + + # ── interpolate between source frames (smooth 60 Hz output) ── + if frame_idx + 1 < len(frames): + fa = frames[frame_idx] + fb = frames[frame_idx + 1] + seg_len = max(fb.t - fa.t, 1e-9) + alpha = clamp((play_elapsed - (fa.t - first_t)) / seg_len, 0.0, 1.0) + out_q = interp_q(fa.q, fb.q, alpha) + else: + out_q = list(frames[frame_idx].q) + + last_played_q = out_q + self.SendFrame(out_q, body_lock_q) + + # ── live progress bar ───────────────────────────────────────── + pct = clamp(play_elapsed / max(final_t, 1e-9) * 100.0, 0.0, 100.0) + bar = ("█" * int(pct / 5)).ljust(20) + print( + f"\r ▶ [{bar}] {pct:5.1f}% " + f"{min(play_elapsed, final_t):.1f}/{final_t:.1f}s " + f"frame {frame_idx + 1}/{len(frames)} ", + end="", + flush=True, + ) + + if frame_idx >= len(frames) - 1 and play_elapsed >= final_t: + break + + time.sleep(dt) + + print() + return last_played_q, quit_req + + def Run(self, filename: str, home_filename: str, args, config: dict) -> None: + # ── Joint limits ────────────────────────────────────────────────── + joint_limits = load_joint_limits_from_config(config) + if joint_limits: + print(f"✅ Joint limits loaded for {len(joint_limits)} joints.") + else: + print("⚠️ No joint limits loaded — limit enforcement skipped.") + + # ── Sanitize dataset ────────────────────────────────────────────── + print(f"📂 Loading: {filename}") + frames, report = sanitize_frames( + filename, + max_arm_delta=args.max_arm_delta, + gap_warn_seconds=args.gap_warn_seconds, + lock_first_track=not args.allow_track_switch, + joint_limits=joint_limits, + ) + print_preflight(filename, report, args) + + if report.accepted_frames < 2: + raise SystemExit("❌ Not enough valid frames after filtering. Replay aborted.") + if args.abort_gap_seconds > 0 and report.max_gap_seconds > args.abort_gap_seconds: + raise SystemExit( + f"❌ Replay aborted: max gap {report.max_gap_seconds:.3f}s exceeds " + f"--abort-gap-seconds {args.abort_gap_seconds:.3f}s" + ) + + # ── Connect to robot ────────────────────────────────────────────── + print("Waiting for robot state...", end="", flush=True) + while not self.first_state: + time.sleep(0.1) + print(" Connected!\n") + + home_q = load_home_pose_for_replay(home_filename) + body_lock_q = [self.low_state.motor_state[i].q for i in range(G1_NUM_MOTOR)] + + print("🔒 Body LOCKED. Arms will follow filtered camera data.") + print("🎮 Controls: x = PAUSE z = RESUME q = QUIT\n") + if sys.stdin.isatty() and not args.no_prompt: + input("👉 Press Enter to Begin... ") + + # ── Move to start pose ──────────────────────────────────────────── + self._interpolate_phase( + "Moving to start pose", + body_lock_q, frames[0].q, + body_lock_q, args.start_steps, + ) + last_played_q = list(frames[0].q) + + # ── Playback (with optional loop) ───────────────────────────────── + loop_num = 0 + try: + with KeyPoller() as kp: + while True: + loop_num += 1 + if args.loop: + print(f"▶️ Loop {loop_num} (x = pause, q = quit)") + else: + print("▶️ Playing... (x = pause, q = quit)") + + last_played_q, quit_req = self._play_once( + frames, body_lock_q, args.speed, kp + ) + if quit_req or not args.loop: + break + time.sleep(0.3) + except KeyboardInterrupt: + print("\nStopped.") + + # ── Return to home ──────────────────────────────────────────────── + print(f"\n🏡 Returning to home ({home_filename})...") + self._interpolate_phase( + "Returning to home", + last_played_q, home_q, + body_lock_q, args.home_steps, + ) + print("✅ Home reached.") + self.DisableSDK() + + +# --------------------------------------------------------------------------- +# Dry-run path (preflight only, no SDK) +# --------------------------------------------------------------------------- + +def run_dry(filename: str, home_filename: str, args, config: dict) -> None: + joint_limits = load_joint_limits_from_config(config) + if joint_limits: + print(f"✅ Joint limits loaded for {len(joint_limits)} joints.") + else: + print("⚠️ No joint limits loaded.") + + print(f"📂 Loading: {filename}") + frames, report = sanitize_frames( + filename, + max_arm_delta=args.max_arm_delta, + gap_warn_seconds=args.gap_warn_seconds, + lock_first_track=not args.allow_track_switch, + joint_limits=joint_limits, + ) + print_preflight(filename, report, args) + + if report.accepted_frames < 2: + raise SystemExit("❌ Not enough valid frames after filtering.") + if args.abort_gap_seconds > 0 and report.max_gap_seconds > args.abort_gap_seconds: + raise SystemExit( + f"❌ Aborted: max gap {report.max_gap_seconds:.3f}s exceeds " + f"--abort-gap-seconds {args.abort_gap_seconds:.3f}s" + ) + print("✅ Dry-run complete. No robot connection made.") + + +# --------------------------------------------------------------------------- +# Entry point +# --------------------------------------------------------------------------- + +def main() -> None: + pre_parser = argparse.ArgumentParser(add_help=False) + pre_parser.add_argument("--config", default="camera_recorder_config.json") + pre_args, _ = pre_parser.parse_known_args() + config, _ = load_config(pre_args.config) + rd = config.get("replay_defaults", {}) + + parser = argparse.ArgumentParser( + description="Camera pose replay for G1 humanoid — enhanced v2", + formatter_class=argparse.ArgumentDefaultsHelpFormatter, + ) + parser.add_argument("--config", default=pre_args.config, help="Config JSON path") + parser.add_argument("iface_pos", nargs="?", default=None, help="Network interface (positional)") + parser.add_argument("--iface", default=None, help="Network interface") + parser.add_argument( + "--input", "--input-file", dest="input", + default=rd.get("input"), + help="Input JSONL recording file", + ) + parser.add_argument( + "--home", "--home-file", dest="home", + default=rd.get("home", "arm_home.jsonl"), + help="Home pose JSONL file", + ) + parser.add_argument( + "--speed", type=float, + default=float(rd.get("speed", 0.35)), + help="Replay speed multiplier", + ) + parser.add_argument( + "--max-arm-delta", type=float, + default=float(rd.get("max_arm_delta", 0.18)), + help="Max allowed arm-joint delta between source frames (rad)", + ) + parser.add_argument( + "--gap-warn-seconds", type=float, + default=float(rd.get("gap_warn_seconds", 0.35)), + help="Warn when source frame gap exceeds this (s)", + ) + parser.add_argument( + "--abort-gap-seconds", type=float, + default=float(rd.get("abort_gap_seconds", 0.0)), + help="Abort replay if frame gap exceeds this (s). 0 = disabled.", + ) + parser.add_argument( + "--allow-track-switch", action="store_true", + default=bool(rd.get("allow_track_switch", False)), + help="Do not lock to the first valid track_id", + ) + parser.add_argument( + "--start-steps", type=int, + default=int(rd.get("start_steps", 60)), + help="Frames to reach start pose (@ 60 Hz = seconds × 60)", + ) + parser.add_argument( + "--home-steps", type=int, + default=int(rd.get("home_steps", 180)), + help="Frames to return to home (@ 60 Hz = seconds × 60)", + ) + parser.add_argument( + "--no-prompt", action="store_true", + default=bool(rd.get("no_prompt", False)), + help="Skip the Enter-to-begin prompt", + ) + parser.add_argument( + "--loop", action="store_true", + default=bool(rd.get("loop", False)), + help="Loop replay until q is pressed", + ) + parser.add_argument( + "--dry-run", action="store_true", + default=False, + help="Run preflight validation only — no robot connection", + ) + args = parser.parse_args() + + args.iface = args.iface or args.iface_pos or rd.get("iface") + + if not args.dry_run and not args.iface: + parser.error( + "Missing interface. Pass it positionally, via --iface, " + "or set replay_defaults.iface in camera_recorder_config.json." + ) + if not args.input: + parser.error( + "Missing input file. Pass --input or set replay_defaults.input " + "in camera_recorder_config.json." + ) + + path = resolve_input_path(args.input) + + if args.dry_run: + run_dry(path, args.home, args, config) + else: + ChannelFactoryInitialize(0, args.iface) + ReplayWithHomeV2().Run(path, args.home, args, config) + + +if __name__ == "__main__": + main() diff --git a/Camera_Recorder/joint.json b/Camera_Recorder/joint.json new file mode 100644 index 0000000..2a938db --- /dev/null +++ b/Camera_Recorder/joint.json @@ -0,0 +1,27 @@ +{ + "g1_num_motor": 29, + "waist_joint_indices": { + "yaw": 12, + "roll": 13, + "pitch": 14 + }, + "joint_limits": { + "12": [-0.08, 0.092], + "13": [-0.164, 0.112], + "14": [-0.131, 0.109], + "15": [-3.052, 0.583], + "16": [-0.046, 2.248], + "17": [-0.987, 2.45], + "18": [-0.868, 1.403], + "19": [-1.431, 0.811], + "20": [-1.028, 0.764], + "21": [-1.143, 0.737], + "22": [-2.968, 0.625], + "23": [-1.427, 0.112], + "24": [-0.984, 0.928], + "25": [-0.826, 1.495], + "26": [-1.188, 1.162], + "27": [-1.365, 0.656], + "28": [-0.676, 0.92] + } +} diff --git a/Camera_Recorder/pose_mapping.json b/Camera_Recorder/pose_mapping.json new file mode 100644 index 0000000..d4610b7 --- /dev/null +++ b/Camera_Recorder/pose_mapping.json @@ -0,0 +1,113 @@ +{ + "min_conf": 0.35, + "default_smoothing": 0.35, + "serializable_keypoint_indices": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], + "body_keypoint_indices": { + "left_shoulder": 5, + "right_shoulder": 6, + "left_elbow": 7, + "right_elbow": 8, + "left_wrist": 9, + "right_wrist": 10, + "left_hip": 11, + "right_hip": 12 + }, + "diagnostics_defaults": { + "tracked": false, + "visible_keypoints": 0, + "torso_ready": false, + "left_ready": false, + "right_ready": false, + "left_lift": null, + "right_lift": null, + "left_bend": null, + "right_bend": null + }, + "fallback_vectors": { + "axis_x": [1.0, 0.0], + "torso_up": [0.0, 1.0] + }, + "min_segment_length_px": 5.0, + "waist": { + "yaw_center_gain": 0.08, + "roll_shoulder_gain": 0.12 + }, + "arms": { + "left": { + "joint_indices": { + "shoulder_pitch": 15, + "shoulder_roll": 16, + "shoulder_yaw": 17, + "elbow": 18, + "wrist_roll": 19, + "wrist_pitch": 20, + "wrist_yaw": 21 + }, + "shoulder_pitch": { + "down": 0.55, + "up": -3.0 + }, + "shoulder_roll": { + "outward_horizontal": 1.2, + "lift_positive": 0.35, + "cross_body": -0.3 + }, + "shoulder_yaw": { + "cross_body": 0.85, + "fore_lift": 0.2 + }, + "elbow": { + "base": 0.65, + "bend": 1.05 + }, + "wrist_roll": { + "outward": 0.35, + "cross_body": -0.2 + }, + "wrist_pitch": { + "fore_lift": 0.45 + }, + "wrist_yaw": { + "cross_body": 0.25 + } + }, + "right": { + "joint_indices": { + "shoulder_pitch": 22, + "shoulder_roll": 23, + "shoulder_yaw": 24, + "elbow": 25, + "wrist_roll": 26, + "wrist_pitch": 27, + "wrist_yaw": 28 + }, + "shoulder_pitch": { + "down": 0.6, + "up": -3.0 + }, + "shoulder_roll": { + "outward_horizontal": -1.2, + "lift_positive": -0.35, + "cross_body": 0.3 + }, + "shoulder_yaw": { + "cross_body": -0.85, + "fore_lift": -0.2 + }, + "elbow": { + "base": 0.65, + "bend": 1.05 + }, + "wrist_roll": { + "outward": -0.35, + "cross_body": 0.2 + }, + "wrist_pitch": { + "fore_lift": 0.45 + }, + "wrist_yaw": { + "cross_body": -0.25 + } + } + } +} diff --git a/Controller/Logger.py b/Controller/Logger.py new file mode 100644 index 0000000..e75e9c7 --- /dev/null +++ b/Controller/Logger.py @@ -0,0 +1,134 @@ +import logging +import os +from datetime import datetime + + + + +class Logs: + + def __init__(self, default_log_level=logging.DEBUG, main_log_file="main.log"): + self.default_log_level = default_log_level + self.log_format = '%(asctime)s - %(name)s - %(levelname)s - %(message)s' + self.mainloggerfile = self.resolve_log_path(main_log_file) + self.logger = None + + # Initialize the main logger + self.main_logger = logging.getLogger("MainLogger") + self.main_logger.setLevel(self.default_log_level) + self.main_logger.propagate = False # Prevent logging from printing to terminal + + if self.main_logger.hasHandlers(): + self.main_logger.handlers.clear() + + # Remove any StreamHandler (to avoid console logs) + for handler in list(self.main_logger.handlers): + if isinstance(handler, logging.StreamHandler): + self.main_logger.removeHandler(handler) + + os.makedirs(os.path.dirname(self.mainloggerfile), exist_ok=True) + main_handler = logging.FileHandler(self.mainloggerfile) + main_handler.setFormatter(logging.Formatter(self.log_format)) + main_handler.setLevel(self.default_log_level) + self.main_logger.addHandler(main_handler) + + + def resolve_log_path(self, path): + """Resolve relative or absolute path to absolute, ensuring it ends with `.log`.""" + if not path.lower().endswith(".log"): + path += ".log" + + if not os.path.isabs(path): + path = os.path.join(os.path.dirname(__file__), path) + + os.makedirs(os.path.dirname(path), exist_ok=True) + return os.path.abspath(path) + + + def construct_path(self, folder_name, file_name): + """Construct full path from folder and file, respecting relative or absolute paths.""" + if not file_name.lower().endswith(".log"): + file_name += ".log" + + if os.path.isabs(folder_name): + full_path = os.path.join(folder_name, file_name) + else: + base_dir = os.path.dirname(os.path.abspath(__file__)) + full_path = os.path.join(base_dir, folder_name, file_name) + + os.makedirs(os.path.dirname(full_path), exist_ok=True) + return os.path.abspath(full_path) + + + def log_to_file(self, message, TypeLog): + level_map = { + "DEBUG": logging.DEBUG, + "INFO": logging.INFO, + "WARNING": logging.WARNING, + "ERROR": logging.ERROR, + "CRITICAL": logging.CRITICAL + } + log_level = level_map.get(TypeLog.upper(), logging.WARNING) + self.main_logger.log(log_level, message) + + + def LogEngine(self, folder_name, log_name): + """Set up a named logger and resolve the file path correctly.""" + full_path = self.construct_path(folder_name, f"{log_name}.log") + + self.logger = logging.getLogger(log_name) + self.logger.setLevel(self.default_log_level) + self.logger.propagate = False # Prevent printing to terminal + + # Clear existing FileHandlers + for handler in self.logger.handlers[:]: + if isinstance(handler, logging.FileHandler): + self.logger.removeHandler(handler) + + handler = logging.FileHandler(full_path) + handler.setFormatter(logging.Formatter(self.log_format)) + handler.setLevel(self.default_log_level) + self.logger.addHandler(handler) + + + def LogsMessages(self, message, message_type="info", folder_name=None, file_name=None): + if folder_name and file_name: + full_path = self.construct_path(folder_name, file_name) + + temp_logger = logging.getLogger(f"{folder_name}_{file_name}") + temp_logger.setLevel(self.default_log_level) + temp_logger.propagate = False # Prevent printing to terminal + + if not any(isinstance(h, logging.FileHandler) and h.baseFilename == full_path + for h in temp_logger.handlers): + handler = logging.FileHandler(full_path) + handler.setFormatter(logging.Formatter(self.log_format)) + temp_logger.addHandler(handler) + + getattr(temp_logger, message_type.lower(), temp_logger.warning)(message) + elif self.logger: + log_method = getattr(self.logger, message_type.lower(), self.logger.warning) + log_method(message) + else: + self.log_to_file(message, message_type.upper()) + + def print_and_log(self, message, message_type="info", folder_name=None, file_name=None): + self.LogsMessages(message, message_type, folder_name, file_name) + print(message) + + + + + +# ============================== +# Usage Example +# ============================== +if __name__ == "__main__": + logger = Logs() + logger.LogEngine("ExxxxampleLogger", "ExampleLogger.log") + logger.LogsMessages("This is a hidden message") + logger.print_and_log("This is a test message.", message_type="info") + + # You can also directly specify folder and file for a log message + logger.print_and_log("Direct log to folder", message_type="info", folder_name="CustomLogs", file_name="event.log") + diff --git a/Controller/g1_arm_actions_cli.py b/Controller/g1_arm_actions_cli.py new file mode 100644 index 0000000..bcee357 --- /dev/null +++ b/Controller/g1_arm_actions_cli.py @@ -0,0 +1,172 @@ +#!/usr/bin/env python3 +""" +g1_arm_actions_cli.py + +Run Unitree G1 Arm ActionClient actions directly on the robot from CLI. + +Changes from your request: +- Network interface is OPTIONAL (no longer required). + If you pass it, it will use it; otherwise it uses default DDS interface. + +Usage: + # list actions + python3 g1_arm_actions_cli.py list + + # run by id + python3 g1_arm_actions_cli.py 6 + + # run by name (quotes recommended) + python3 g1_arm_actions_cli.py "face wave" + + # specify interface explicitly (optional) + python3 g1_arm_actions_cli.py "shake hand" --iface enp3s0 + + # force auto release + python3 g1_arm_actions_cli.py "hug" --auto-release --sleep 2 +""" + +import argparse +import sys +import time +from dataclasses import dataclass +from typing import Optional + +from unitree_sdk2py.core.channel import ChannelFactoryInitialize +from unitree_sdk2py.g1.arm.g1_arm_action_client import G1ArmActionClient, action_map + + +@dataclass +class TestOption: + name: str + id: int + + +OPTION_LIST = [ + TestOption(name="release arm", id=0), + TestOption(name="shake hand", id=1), + TestOption(name="high five", id=2), + TestOption(name="hug", id=3), + TestOption(name="high wave", id=4), + TestOption(name="clap", id=5), + TestOption(name="face wave", id=6), + TestOption(name="left kiss", id=7), + TestOption(name="heart", id=8), + TestOption(name="right heart", id=9), + TestOption(name="hands up", id=10), + TestOption(name="x-ray", id=11), + TestOption(name="right hand up", id=12), + TestOption(name="reject", id=13), + TestOption(name="right kiss", id=14), + TestOption(name="two-hand kiss", id=15), +] + +# Actions that your original script auto-released after ~2s +DEFAULT_AUTO_RELEASE_IDS = {1, 2, 3, 8, 9, 10, 11, 12, 13} + + +def find_option(query: str) -> Optional[TestOption]: + q = query.strip().lower() + + # try id + try: + as_int = int(q) + for opt in OPTION_LIST: + if opt.id == as_int: + return opt + except ValueError: + pass + + # try name + for opt in OPTION_LIST: + if opt.name.lower() == q: + return opt + + return None + + +def print_list(): + print("\nAvailable actions:") + for opt in OPTION_LIST: + print(f" {opt.id:>2} {opt.name}") + print("") + + +def execute_action(client: G1ArmActionClient, opt: TestOption): + if opt.name not in action_map: + raise RuntimeError(f"Action '{opt.name}' not found in action_map. Check SDK version.") + print(f"[RUN] {opt.name} (id={opt.id})") + client.ExecuteAction(action_map.get(opt.name)) + + +def init_dds(iface: Optional[str]): + # If iface provided, use it; otherwise default interface. + if iface: + ChannelFactoryInitialize(0, iface) + else: + ChannelFactoryInitialize(0) + + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument( + "action", + help='Action id/name, or "list". Examples: 6 | "face wave" | list', + ) + ap.add_argument("--iface", default=None, help="Optional network interface, e.g. enp3s0/eth0/wlan0") + ap.add_argument("--timeout", type=float, default=10.0, help="Action client timeout (seconds)") + ap.add_argument( + "--auto-release", + action="store_true", + help="After action, run 'release arm' automatically (like your demo for some actions).", + ) + ap.add_argument( + "--sleep", + type=float, + default=2.0, + help="Seconds to wait before auto-release (only used with auto-release).", + ) + ap.add_argument( + "--no-prompt", + action="store_true", + help="Skip the 'Press Enter to continue' safety prompt.", + ) + args = ap.parse_args() + + if args.action.strip().lower() == "list": + print_list() + return + + opt = find_option(args.action) + if not opt: + print(f"[ERR] No matching action for: {args.action!r}") + print_list() + sys.exit(2) + + print("WARNING: Please ensure there are no obstacles around the robot while running this script.") + if not args.no_prompt: + input("Press Enter to continue... ") + + # DDS init (optional iface) + init_dds(args.iface) + + # Arm action client + client = G1ArmActionClient() + client.SetTimeout(args.timeout) + client.Init() + + execute_action(client, opt) + + # Decide auto-release behavior + do_auto_release = args.auto_release or (opt.id in DEFAULT_AUTO_RELEASE_IDS) + + if do_auto_release and opt.id != 0: + time.sleep(max(0.0, args.sleep)) + print("[AUTO] release arm") + client.ExecuteAction(action_map.get("release arm")) + + time.sleep(0.5) + print("[DONE]") + + +if __name__ == "__main__": + main() diff --git a/Controller/g1_mode_controller.py b/Controller/g1_mode_controller.py new file mode 100644 index 0000000..0bf535f --- /dev/null +++ b/Controller/g1_mode_controller.py @@ -0,0 +1,697 @@ +#!/usr/bin/env python3 +""" +g1_mode_controller.py + +Interactive terminal controller for Unitree G1 locomotion + basic upper body (waist/arms). + +Key features: +- Menu is generated from a single OPTIONS dictionary (easy to extend). +- Ctrl+C / Quit = StopMove only (keep current posture; NO prep/damp). +- Status prints LIVE joints (deg) from LowState. +- WALK/RUN teleop uses the "old working" keyboard control (pynput). +- PREP mode = stand + balance (NO Start/FSM200). +- READY/START mode = PREP + Start (FSM 200). +- StandUp/Squat/Sit/Lie-to-Stand use SetFsmId() fallback for compatibility. + +Run: + python3 g1_mode_controller.py --iface enp3s0 +""" + +from __future__ import annotations + +import argparse +import sys +import time +from dataclasses import dataclass +from typing import Optional, Dict, Tuple, Callable, Any +from threading import Lock, Event +from collections import OrderedDict + +# ---------- Unitree SDK2 ---------- +from unitree_sdk2py.core.channel import ChannelFactoryInitialize, ChannelSubscriber +from unitree_sdk2py.g1.loco.g1_loco_client import LocoClient +from unitree_sdk2py.idl.unitree_hg.msg.dds_ import LowState_ # type: ignore +from unitree_sdk2py.comm.motion_switcher.motion_switcher_client import MotionSwitcherClient + +# Optional teleop keyboard: +try: + from pynput.keyboard import Listener, Key, KeyCode # type: ignore + HAVE_PYNPUT = True +except Exception: + HAVE_PYNPUT = False + + +# ---------------- Joint map (for status) ---------------- +JOINT_NAMES = { + 12: "WAIST_YAW", + 13: "WAIST_ROLL", + 14: "WAIST_PITCH", + 15: "L_SHOULDER_PITCH", + 16: "L_SHOULDER_ROLL", + 17: "L_SHOULDER_YAW", + 18: "L_ELBOW", + 19: "L_WRIST_ROLL", + 20: "L_WRIST_PITCH", + 21: "L_WRIST_YAW", + 22: "R_SHOULDER_PITCH", + 23: "R_SHOULDER_ROLL", + 24: "R_SHOULDER_YAW", + 25: "R_ELBOW", + 26: "R_WRIST_ROLL", + 27: "R_WRIST_PITCH", + 28: "R_WRIST_YAW", +} + + +def rad2deg(x: float) -> float: + return float(x) * 180.0 / 3.141592653589793 + + +# ---------------- Live State Monitor ---------------- + +class LiveStateMonitor: + """Subscribes LowState and keeps last joint positions.""" + def __init__(self): + self.lock = Lock() + self.last_q_rad: Dict[int, float] = {} + self.msg_count = 0 + self.last_rx_time = 0.0 + self.first_msg_evt = Event() + + def cb(self, msg: LowState_): + motor_state = getattr(msg, "motor_state", None) + if motor_state is None: + return + + with self.lock: + self.msg_count += 1 + self.last_rx_time = time.time() + + for idx in JOINT_NAMES.keys(): + try: + self.last_q_rad[idx] = float(motor_state[idx].q) + except Exception: + pass + + self.first_msg_evt.set() + + def snapshot_deg(self) -> Tuple[int, float, Dict[int, float]]: + with self.lock: + age = (time.time() - self.last_rx_time) if self.last_rx_time else 1e9 + qdeg = {i: rad2deg(q) for i, q in self.last_q_rad.items()} + return self.msg_count, age, qdeg + + +# ---------------- Upper body (waist/arms) publisher ---------------- + +@dataclass +class ArmRig: + pub: object + cmd: object + crc: object + waist_idx: int = 12 + + def set_joint(self, idx: int, q: float, kp: float = 60.0, kd: float = 1.5, tau: float = 0.0): + mc = self.cmd.motor_cmd[idx] + mc.q = float(q) + mc.dq = 0.0 + mc.tau = float(tau) + mc.kp = float(kp) + mc.kd = float(kd) + + def send(self): + self.cmd.crc = self.crc.Crc(self.cmd) + self.pub.Write(self.cmd) + + +def try_init_arm_sdk() -> Optional[ArmRig]: + try: + from unitree_sdk2py.core.channel import ChannelPublisher # type: ignore + from unitree_sdk2py.idl.unitree_hg.msg.dds_ import LowCmd_ # type: ignore + from unitree_sdk2py.idl.default import unitree_hg_msg_dds__LowCmd_ # type: ignore + from unitree_sdk2py.utils.crc import CRC # type: ignore + + pub = ChannelPublisher("rt/arm_sdk", LowCmd_) + pub.Init() + + cmd = unitree_hg_msg_dds__LowCmd_() + crc = CRC() + + # enable arm_sdk mode + cmd.motor_cmd[29].q = 1 + return ArmRig(pub=pub, cmd=cmd, crc=crc) + except Exception as e: + print("[arm_sdk] disabled:", e) + return None + + +# ---------------- Core helpers ---------------- + +def init_loco(timeout: float = 10.0) -> LocoClient: + bot = LocoClient() + bot.SetTimeout(timeout) + bot.Init() + return bot + + +def init_msc(timeout: float = 5.0) -> MotionSwitcherClient: + msc = MotionSwitcherClient() + msc.SetTimeout(timeout) + msc.Init() + return msc + + +def safe_call(name: str, fn: Callable[..., Any], *args, **kwargs) -> Any: + """ + Unitree python wrappers often return None on success. + This helper prints [OK] on no-exception; prints [ERR] on exception. + """ + try: + ret = fn(*args, **kwargs) + print(f"[OK] {name}: success (ret={ret})") + return ret + except Exception as e: + code = getattr(e, "code", None) + payload = getattr(e, "payload", None) + print(f"[ERR] {name} failed: {repr(e)} code={code} payload={payload}") + return None + + +def stop_only(bot: Optional[LocoClient]): + """Stop walking/teleop velocity but do NOT change mode/posture.""" + if bot is None: + return + safe_call("StopMove", bot.StopMove) + + +def move_cmd(bot: LocoClient, vx: float, vy: float, om: float): + """ + SDK variations exist. We try a safe call order. + """ + try: + bot.Move(vx, vy, om, True) + return + except Exception: + pass + + try: + bot.Move(vx, vy, om) + return + except Exception: + pass + + try: + bot.Move(vx, vy, om, continuous_move=True) # type: ignore + return + except Exception as e: + print("[ERR] Move failed in all signatures:", repr(e)) + + +def fsm_set(bot: LocoClient, fsm_id: int, label: str): + """ + Prefer direct methods if present; fallback to SetFsmId(fsm_id). + """ + if hasattr(bot, label): + fn = getattr(bot, label) + return safe_call(label, fn) + + # common fallback in some sdk builds + if hasattr(bot, "SetFsmId"): + return safe_call(f"{label} (FSM {fsm_id}) via SetFsmId({fsm_id})", bot.SetFsmId, fsm_id) + + print(f"[ERR] Neither {label} nor SetFsmId exists in this SDK build.") + return None + + +def balance_stand(bot: LocoClient, mode: int = 0): + """ + Some builds require BalanceStand(balance_mode). + Others expose SetBalanceMode(0/1). + """ + if hasattr(bot, "BalanceStand"): + try: + return safe_call(f"BalanceStand({mode})", bot.BalanceStand, mode) + except TypeError: + return safe_call("BalanceStand()", bot.BalanceStand) + + if hasattr(bot, "SetBalanceMode"): + return safe_call(f"SetBalanceMode({mode})", bot.SetBalanceMode, mode) + + print("[WARN] No BalanceStand/SetBalanceMode available in this SDK.") + return None + + +# ---------------- PREP / READY sequences ---------------- + +def prep_mode(bot: LocoClient): + """ + PREP = stand + balance (NO Start/FSM200). + Matches your tested behavior: + StopMove -> Damp -> StandUp(FSM4) -> ramp stand height -> BalanceStand(0) -> set final height. + """ + print("[PREP] stand + balance (NO Start/FSM200) ...") + safe_call("StopMove", bot.StopMove) + safe_call("Damp", bot.Damp) + + # StandUp FSM 4 + fsm_set(bot, 4, "StandUp") + + # Stand height ramp (0.02 .. 0.50) + if hasattr(bot, "SetStandHeight"): + for h in [x / 100.0 for x in range(2, 51, 2)]: + safe_call(f"SetStandHeight({h:.2f}m)", bot.SetStandHeight, float(h)) + time.sleep(0.03) + + # set a comfortable final height before balancing + safe_call("SetStandHeight(0.22m)", bot.SetStandHeight, 0.22) + else: + print("[WARN] bot.SetStandHeight not available in this SDK build.") + + # Balance (static stand) + balance_stand(bot, mode=0) + + # Re-send final height (common trick) + if hasattr(bot, "SetStandHeight"): + safe_call("SetStandHeight(0.22m)", bot.SetStandHeight, 0.22) + + print("[PREP] Done. (NO Start)") + + +def ready_start_mode(bot: LocoClient): + """ + READY/START = PREP + Start (FSM200). + """ + print("[READY] stand + balance + start (FSM 200) ...") + prep_mode(bot) + if hasattr(bot, "Start"): + safe_call("Start (FSM 200)", bot.Start) + else: + # some builds: SetFsmId(200) + fsm_set(bot, 200, "Start") + print("[READY] Done. (FSM200 expected)") + + +# ---------------- Teleop (old keyboard function) ---------------- + +def teleop_loop(bot: LocoClient, speed_limit: float): + if not HAVE_PYNPUT: + print("[ERR] pynput not installed. Install: pip install pynput") + return + + LIN_STEP = 0.05 + ANG_STEP = 0.2 + SEND_PERIOD = 0.10 # 10 Hz + + pressed = set() + + def on_press(k): + if isinstance(k, KeyCode) and k.char: + pressed.add(k.char.lower()) + else: + pressed.add(k) + + def on_release(k): + if isinstance(k, KeyCode) and k.char: + pressed.discard(k.char.lower()) + else: + pressed.discard(k) + + def key(name: str) -> bool: + if name == "space": + return Key.space in pressed + if name == "esc": + return Key.esc in pressed + return name in pressed + + def clamp(v: float) -> float: + return max(-speed_limit, min(speed_limit, v)) + + vx = vy = om = 0.0 + last_send = 0.0 + + print("\n--- TELEOP ---") + print("Hold keys: W/S (vx), Q/E (vy), A/D (yaw), Space (stop). ESC to exit.\n") + + listener = Listener(on_press=on_press, on_release=on_release) + listener.start() + + try: + while True: + if key("esc"): + stop_only(bot) + break + + if key("w") and not key("s"): + vx = clamp(vx + LIN_STEP) + elif key("s") and not key("w"): + vx = clamp(vx - LIN_STEP) + else: + vx = 0.0 + + if key("q") and not key("e"): + vy = clamp(vy + LIN_STEP) + elif key("e") and not key("q"): + vy = clamp(vy - LIN_STEP) + else: + vy = 0.0 + + if key("a") and not key("d"): + om = clamp(om + ANG_STEP) + elif key("d") and not key("a"): + om = clamp(om - ANG_STEP) + else: + om = 0.0 + + if key("space"): + vx = vy = om = 0.0 + + now = time.time() + if now - last_send >= SEND_PERIOD: + # enable gait mode if supported (some SDKs require it for walking) + if hasattr(bot, "SetBalanceMode"): + try: + bot.SetBalanceMode(1) + except Exception: + pass + + move_cmd(bot, vx, vy, om) + last_send = now + sys.stdout.write(f"\rvx={vx:+.2f} vy={vy:+.2f} yaw={om:+.2f} ") + sys.stdout.flush() + + time.sleep(0.005) + + except KeyboardInterrupt: + stop_only(bot) + print("\n--- teleop interrupted (StopMove only) ---\n") + finally: + listener.stop() + print("\n--- teleop ended ---\n") + + +# ---------------- Presets for arms ---------------- + +LEFT_DOWN = [ + (12, 0.0), + (15, +0.211), + (16, +0.181), + (17, -0.284), + (18, +0.672), + (19, -0.379), + (20, -0.852), + (21, -0.019), +] +RIGHT_DOWN = [ + (12, 0.0), + (22, +0.087), + (23, -0.271), + (24, +0.323), + (25, +0.691), + (26, +0.240), + (27, -0.771), + (28, -0.176), +] + +def apply_pose(arm: ArmRig, pose, kp: float = 60.0, kd: float = 1.5): + for j, q in pose: + arm.set_joint(j, q, kp=kp, kd=kd, tau=0.0) + arm.send() + + +# ---------------- Main ---------------- + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument("--iface", required=True, help="NIC connected to G1 (example: enp3s0)") + ap.add_argument("--timeout", type=float, default=10.0) + ap.add_argument("--topic", default="", help="LowState topic override (default tries rt/lf/lowstate then rt/lowstate)") + args = ap.parse_args() + + # DDS init ONCE + ChannelFactoryInitialize(0, args.iface) + + # Live monitor + monitor = LiveStateMonitor() + topics = [args.topic] if args.topic else ["rt/lf/lowstate", "rt/lowstate"] + sub = None + last_err = None + for t in topics: + try: + sub = ChannelSubscriber(t, LowState_) + sub.Init(monitor.cb, 200) + print(f"[OK] LowState subscribed: {t}") + break + except Exception as e: + last_err = e + print(f"[WARN] LowState subscribe failed for {t}: {e}", file=sys.stderr) + if sub is None: + print(f"[WARN] Could not subscribe LowState. Last error: {last_err}") + + # Init clients + print("Initializing LocoClient...") + bot: Optional[LocoClient] = None + try: + bot = init_loco(timeout=args.timeout) + except Exception as e: + print("[ERR] Loco init failed:", e) + + print("Initializing MotionSwitcherClient...") + msc: Optional[MotionSwitcherClient] = None + try: + msc = init_msc(timeout=5.0) + status, result = msc.CheckMode() + print(f"[MSC] Current mode: {result.get('name') or '(none)'}") + except Exception as e: + print("[WARN] MotionSwitcher init failed:", e) + + arm = try_init_arm_sdk() + + # Snapshot on start + if sub is not None and monitor.first_msg_evt.wait(timeout=2.0): + cnt, age, qdeg = monitor.snapshot_deg() + print("\n[STATE] Current joint snapshot (deg):") + print(f" lowstate_msgs={cnt} age={age:.2f}s") + for idx in sorted(qdeg.keys()): + print(f" [{idx:02d}] {JOINT_NAMES.get(idx,'?'):<18} {qdeg[idx]:+8.2f}°") + print() + + def need_bot() -> bool: + if bot is None: + print("[ERR] No LocoClient available.") + return False + return True + + def need_arm() -> bool: + if arm is None: + print("[ERR] arm_sdk not available.") + return False + return True + + # ----- Dictionary-driven menu ----- + OPTIONS: "OrderedDict[int, Dict[str, Any]]" = OrderedDict() + + OPTIONS[1] = {"label": "PREP mode (stand + balance) [NO start/FSM200]", + "fn": lambda: prep_mode(bot) if need_bot() else None} + + OPTIONS[2] = {"label": "READY/START mode (stand + balance + start, FSM 200)", + "fn": lambda: ready_start_mode(bot) if need_bot() else None} + + OPTIONS[3] = {"label": "ZeroTorque (FSM 0)", + "fn": lambda: fsm_set(bot, 0, "ZeroTorque") if need_bot() else None} + + OPTIONS[4] = {"label": "Damp (FSM 1)", + "fn": lambda: fsm_set(bot, 1, "Damp") if need_bot() else None} + + OPTIONS[5] = {"label": "StandUp (FSM 4)", + "fn": lambda: fsm_set(bot, 4, "StandUp") if need_bot() else None} + + OPTIONS[6] = {"label": "Squat (FSM 2)", + "fn": lambda: fsm_set(bot, 2, "Squat") if need_bot() else None} + + OPTIONS[7] = {"label": "Sit (FSM 3)", + "fn": lambda: fsm_set(bot, 3, "Sit") if need_bot() else None} + + OPTIONS[8] = {"label": "LowStand", + "fn": lambda: safe_call("LowStand", bot.LowStand) if (need_bot() and hasattr(bot, "LowStand")) else print("[ERR] LowStand not available")} + + OPTIONS[9] = {"label": "HighStand", + "fn": lambda: safe_call("HighStand", bot.HighStand) if (need_bot() and hasattr(bot, "HighStand")) else print("[ERR] HighStand not available")} + + OPTIONS[10] = {"label": "Lie-to-Stand (FSM 702) (if supported)", + "fn": lambda: fsm_set(bot, 702, "Lie2StandUp") if need_bot() else None} + + OPTIONS[11] = {"label": "Walk teleop (keyboard: W/S Q/E A/D, ESC exit)", + "fn": lambda: teleop_loop(bot, speed_limit=0.6) if need_bot() else None} + + OPTIONS[12] = {"label": "Run teleop (keyboard: W/S Q/E A/D, ESC exit)", + "fn": lambda: teleop_loop(bot, speed_limit=1.2) if need_bot() else None} + + OPTIONS[16] = {"label": "Status (LIVE joints)", + "fn": lambda: show_status(bot, arm, msc, sub, monitor)} + + OPTIONS[17] = {"label": "MotionSwitcher: Select mode 'ai' (supported)", + "fn": lambda: msc_select_ai(msc)} + + OPTIONS[18] = {"label": "MotionSwitcher: Release current mode", + "fn": lambda: msc_release(msc)} + + OPTIONS[19] = {"label": "MotionSwitcher: Show current mode", + "fn": lambda: msc_show(msc)} + + OPTIONS[20] = {"label": "Seated mode ON (Sit)", + "fn": lambda: fsm_set(bot, 3, "Sit") if need_bot() else None} + + OPTIONS[21] = {"label": "Seated mode OFF (StandUp + PREP)", + "fn": lambda: seated_off(bot) if need_bot() else None} + + OPTIONS[22] = {"label": "Reconnect (re-init Loco + MotionSwitcher)", + "fn": lambda: reconnect(args, lambda b: set_bot_ref(b), lambda m: set_msc_ref(m))} + + # Helpers need access to outer bot/msc refs: + def set_bot_ref(new_bot: Optional[LocoClient]): + nonlocal bot + bot = new_bot + + def set_msc_ref(new_msc: Optional[MotionSwitcherClient]): + nonlocal msc + msc = new_msc + + + def print_menu(): + print("\n" + "=" * 70) + print("G1 MODE CONTROLLER - select option:") + print("=" * 70) + for k, v in OPTIONS.items(): + print(f"{k:>3}) {v['label']}") + print(" 0) Quit (StopMove only)") + print("=" * 70) + + print_menu() + + while True: + try: + choice = input("\nSelect option (0-22): ").strip() + except KeyboardInterrupt: + stop_only(bot) + print("\n[EXIT] Ctrl+C → StopMove only. Keeping current posture. Bye.") + break + except EOFError: + stop_only(bot) + print("\n[EXIT] EOF → StopMove only. Keeping current posture. Bye.") + break + + if not choice: + continue + + if choice == "0": + stop_only(bot) + print("\n[EXIT] Quit → StopMove only. Keeping current posture. Bye.") + break + + try: + opt = int(choice) + except ValueError: + print("Please enter a number.") + continue + + if opt not in OPTIONS: + print("Unknown option.") + print_menu() + continue + + try: + OPTIONS[opt]["fn"]() + except KeyboardInterrupt: + stop_only(bot) + print("\n[INTERRUPT] Ctrl+C → StopMove only. Keeping current posture.") + except Exception as e: + print("[ERR] Action failed:", repr(e)) + + print_menu() + + +# --------- extra action helpers that need current refs --------- + +def show_status(bot, arm, msc, sub, monitor): + print("Status:") + print(f" LocoClient: {'OK' if bot is not None else 'NOT INITIALISED'}") + print(f" MotionSwitcher: {'OK' if msc is not None else 'DISABLED'}") + if msc is not None: + try: + _s, r = msc.CheckMode() + print(f" MSC mode: {r.get('name') or '(none)'}") + except Exception: + print(" MSC mode: (error reading)") + print(f" arm_sdk: {'OK' if arm is not None else 'DISABLED'}") + print(f" pynput: {'OK' if HAVE_PYNPUT else 'NOT INSTALLED'}") + + if sub is None: + print(" LowState: NOT SUBSCRIBED") + return + + cnt, age, qdeg = monitor.snapshot_deg() + print(f" LowState: OK msgs={cnt} age={age:.2f}s") + print(" Current joints (deg):") + for idx in sorted(qdeg.keys()): + print(f" [{idx:02d}] {JOINT_NAMES.get(idx,'?'):<18} {qdeg[idx]:+8.2f}°") + + +def msc_select_ai(msc: Optional[MotionSwitcherClient]): + if msc is None: + print("[ERR] MotionSwitcher not available.") + return + ret = safe_call("SelectMode('ai')", msc.SelectMode, "ai") + # ret could be (7004,None) etc; we just print it from safe_call. + + +def msc_release(msc: Optional[MotionSwitcherClient]): + if msc is None: + print("[ERR] MotionSwitcher not available.") + return + safe_call("ReleaseMode()", msc.ReleaseMode) + + +def msc_show(msc: Optional[MotionSwitcherClient]): + if msc is None: + print("[ERR] MotionSwitcher not available.") + return + try: + s, r = msc.CheckMode() + print(f"[MSC] Current mode: {r.get('name') or '(none)'}") + except Exception as e: + print("[ERR] CheckMode failed:", repr(e)) + + +def seated_off(bot: LocoClient): + print("[SEATED] Leaving seated: StandUp + PREP (no Start)...") + fsm_set(bot, 4, "StandUp") + prep_mode(bot) + + +def reconnect(args, set_bot, set_msc): + print("Reconnecting LocoClient...") + try: + b = init_loco(timeout=args.timeout) + set_bot(b) + print("[OK] LocoClient reconnected.") + except Exception as e: + print("[ERR] Loco reconnect failed:", repr(e)) + set_bot(None) + + print("Reconnecting MotionSwitcherClient...") + try: + m = init_msc(timeout=5.0) + set_msc(m) + try: + _s, r = m.CheckMode() + print(f"[MSC] Current mode: {r.get('name') or '(none)'}") + except Exception: + pass + print("[OK] MotionSwitcher reconnected.") + except Exception as e: + print("[ERR] MotionSwitcher reconnect failed:", repr(e)) + set_msc(None) + + +if __name__ == "__main__": + main() diff --git a/Controller/g1_replay_trigger_r2x.py b/Controller/g1_replay_trigger_r2x.py new file mode 100644 index 0000000..fb3468a --- /dev/null +++ b/Controller/g1_replay_trigger_r2x.py @@ -0,0 +1,381 @@ +#!/usr/bin/env python3 +""" +G1 REPLAY TRIGGER (R2 + X) - SINGLE FILE +--------------------------------------- +- Hold R2 + X to replay DataG1/photo_G3.jsonl (default). +- While playing: ignore any additional R2+X until replay finishes and returns home. +- Cancel combo: R2 + L1 cancels replay immediately and returns arms to home. + +Usage: + python3 g1_replay_trigger_r2x.py enp3s0 + python3 g1_replay_trigger_r2x.py enp3s0 --input photo_G3.jsonl --home arm_home.jsonl --speed 1.0 +""" + +import time +import sys +import json +import argparse +import struct +from pathlib import Path + +from unitree_sdk2py.core.channel import ChannelPublisher, ChannelSubscriber, ChannelFactoryInitialize +from unitree_sdk2py.idl.default import unitree_hg_msg_dds__LowCmd_ +from unitree_sdk2py.idl.default import unitree_hg_msg_dds__LowState_ +from unitree_sdk2py.idl.unitree_hg.msg.dds_ import LowCmd_ +from unitree_sdk2py.idl.unitree_hg.msg.dds_ import LowState_ +from unitree_sdk2py.utils.crc import CRC + +from Logger import Logs + +# ---------------- Logger (exactly as requested) ---------------- +controller_logs = Logs() +controller_logs.LogEngine("G1_Logs", "g1_replay_trigger_r2x.log") + +# ---------------- Constants ---------------- +G1_NUM_MOTOR = 29 +ENABLE_ARM_SDK_INDEX = 29 + +DATA_DIR = Path("DataG1") +REPLAY_HZ = 60.0 + +# --- GAINS (same as your replay) --- +KP_HIGH = 300.0 # Core/Legs +KD_HIGH = 3.0 +KP_LOW = 80.0 # Arms/Ankles +KD_LOW = 3.0 +KP_WRIST = 40.0 +KD_WRIST = 1.5 + +WEAK_MOTORS = [4, 10, 15, 16, 17, 18, 22, 23, 24, 25] +WRIST_MOTORS = [19, 20, 21, 26, 27, 28] + +# ---------------- Helpers ---------------- +def resolve_input_path(in_path: str) -> str: + p = Path(in_path) + if len(p.parts) == 1: + return str(DATA_DIR / p.name) + return str(p) + +def load_home_pose(home_path: str): + """Reads the last frame of arm_home.jsonl to get the target pose.""" + path = resolve_input_path(home_path) + try: + last_valid_q = None + with open(path, 'r') as f: + for line in f: + d = json.loads(line) + if 'q' in d and len(d['q']) == G1_NUM_MOTOR: + last_valid_q = d['q'] + if last_valid_q: + controller_logs.print_and_log(f"✅ Loaded Home Pose from {path}", "info") + return last_valid_q + else: + controller_logs.print_and_log(f"⚠️ Warning: {path} found but contained no valid 'q' data.", "warning") + except FileNotFoundError: + controller_logs.print_and_log(f"⚠️ Warning: Home file {path} not found.", "warning") + + controller_logs.print_and_log("⚠️ Using Default Home (Arms at 0.0)", "warning") + return [0.0] * G1_NUM_MOTOR + +# ---------------- Wireless Controller Parser (embedded) ---------------- +class unitreeRemoteController: + def __init__(self): + self.Lx = 0; self.Rx = 0; self.Ry = 0; self.Ly = 0 + self.L1 = 0; self.L2 = 0; self.R1 = 0; self.R2 = 0 + self.A = 0; self.B = 0; self.X = 0; self.Y = 0 + self.Up = 0; self.Down = 0; self.Left = 0; self.Right = 0 + self.Select = 0; self.F1 = 0; self.F3 = 0; self.Start = 0 + + def parse_botton(self, data1, data2): + self.R1 = (data1 >> 0) & 1; self.L1 = (data1 >> 1) & 1 + self.Start = (data1 >> 2) & 1; self.Select = (data1 >> 3) & 1 + self.R2 = (data1 >> 4) & 1; self.L2 = (data1 >> 5) & 1 + self.F1 = (data1 >> 6) & 1; self.F3 = (data1 >> 7) & 1 + self.A = (data2 >> 0) & 1; self.B = (data2 >> 1) & 1 + self.X = (data2 >> 2) & 1; self.Y = (data2 >> 3) & 1 + self.Up = (data2 >> 4) & 1; self.Right = (data2 >> 5) & 1 + self.Down = (data2 >> 6) & 1; self.Left = (data2 >> 7) & 1 + + def parse_key(self, data): + offsets = [4, 8, 12, 20] # Lx, Rx, Ry, Ly + self.Lx, self.Rx, self.Ry, self.Ly = [struct.unpack(' bool: + return (time.time() - self.last_state_time) < self.watchdog_timeout + + def CancelRequested(self) -> bool: + """Cancel combo: R2 + L1""" + s = self.controller_state + return bool(s.get("R2", 0) and s.get("L1", 0)) + + def SendFrame(self, arm_target_q, body_lock_q): + self.low_cmd.motor_cmd[ENABLE_ARM_SDK_INDEX].q = 1.0 + + for i in range(G1_NUM_MOTOR): + self.low_cmd.motor_cmd[i].mode = 1 + self.low_cmd.motor_cmd[i].dq = 0 + self.low_cmd.motor_cmd[i].tau = 0 + + if i >= 15: + self.low_cmd.motor_cmd[i].q = arm_target_q[i] + else: + self.low_cmd.motor_cmd[i].q = body_lock_q[i] + + if i in WEAK_MOTORS: + self.low_cmd.motor_cmd[i].kp = KP_LOW + self.low_cmd.motor_cmd[i].kd = KD_LOW + elif i in WRIST_MOTORS: + self.low_cmd.motor_cmd[i].kp = KP_WRIST + self.low_cmd.motor_cmd[i].kd = KD_WRIST + else: + self.low_cmd.motor_cmd[i].kp = KP_HIGH + self.low_cmd.motor_cmd[i].kd = KD_HIGH + + self.low_cmd.crc = self.crc.Crc(self.low_cmd) + self.arm_pub.Write(self.low_cmd) + + def DisableSDK(self): + controller_logs.print_and_log("🔌 Disabling SDK...", "info") + self.low_cmd.motor_cmd[ENABLE_ARM_SDK_INDEX].q = 0.0 + self.low_cmd.crc = self.crc.Crc(self.low_cmd) + for _ in range(10): + self.arm_pub.Write(self.low_cmd) + time.sleep(0.02) + + def ReturnArmsHome(self, last_arm_q, body_lock_q, home_q, home_steps=180): + """Always go home smoothly (arms only), body remains locked.""" + controller_logs.print_and_log("🏡 Returning arms to HOME...", "info") + for k in range(home_steps): + stale_for = (time.time() - self.last_state_time) + if stale_for > self.watchdog_disable_after: + controller_logs.print_and_log("🛑 WATCHDOG: connection lost during home. Disabling SDK.", "error") + self.DisableSDK() + return + + if not self.StateFresh(): + controller_logs.print_and_log("⚠️ WATCHDOG: state stale during home. Holding last pose...", "warning") + self.SendFrame(last_arm_q, body_lock_q) + time.sleep(1.0 / REPLAY_HZ) + continue + + alpha = k / home_steps + interp_q = list(last_arm_q) + for j in range(15, 29): + interp_q[j] = (1-alpha)*last_arm_q[j] + alpha*home_q[j] + self.SendFrame(interp_q, body_lock_q) + time.sleep(1.0 / REPLAY_HZ) + + controller_logs.print_and_log("✅ Home Reached.", "info") + + def RunReplay(self, filename: str, home_filename: str, speed: float): + self.is_playing = True + cancel_requested = False + + try: + controller_logs.print_and_log(f"🎬 Triggered replay: {filename}", "info") + + controller_logs.print_and_log("Waiting for robot...", "info") + while not self.first_state: + time.sleep(0.05) + controller_logs.print_and_log("✅ Robot Connected!", "info") + + home_q = load_home_pose(home_filename) + full_body_lock_q = [self.low_state.motor_state[i].q for i in range(G1_NUM_MOTOR)] + + frames = [] + with open(filename, 'r') as f: + for line in f: + d = json.loads(line) + if 'q' in d: + frames.append(d) + + if not frames: + controller_logs.print_and_log("❌ No frames found in input file.", "error") + return + + controller_logs.print_and_log(f"🟢 Ready to play {len(frames)} frames.", "info") + controller_logs.print_and_log("🔒 Body LOCKED. Arms replay then return HOME.", "info") + controller_logs.print_and_log("🛑 Cancel combo: Hold R2 + L1", "info") + + # Move to start + controller_logs.print_and_log("Moving to start...", "info") + file_start_q = frames[0]['q'] + last_played_q = file_start_q # will update + + steps = 60 + for k in range(steps): + if self.CancelRequested(): + controller_logs.print_and_log("🛑 CANCEL: R2+L1 detected أثناء الانتقال للبداية.", "warning") + cancel_requested = True + break + + if not self.StateFresh(): + controller_logs.print_and_log("⚠️ WATCHDOG: stale while moving to start. Holding...", "warning") + self.SendFrame(last_played_q, full_body_lock_q) + time.sleep(1.0 / REPLAY_HZ) + continue + + alpha = k / steps + interp_q = list(full_body_lock_q) + for j in range(15, 29): + interp_q[j] = (1-alpha)*full_body_lock_q[j] + alpha*file_start_q[j] + self.SendFrame(interp_q, full_body_lock_q) + last_played_q = interp_q + time.sleep(1.0 / REPLAY_HZ) + + # Play replay (unless canceled) + if not cancel_requested: + controller_logs.print_and_log("▶️ Playing...", "info") + play_elapsed = 0.0 + last_real = time.time() + + while True: + if self.CancelRequested(): + controller_logs.print_and_log("🛑 CANCEL: R2+L1 detected أثناء التشغيل.", "warning") + cancel_requested = True + break + + stale_for = (time.time() - self.last_state_time) + if stale_for > self.watchdog_disable_after: + controller_logs.print_and_log("🛑 WATCHDOG: connection lost. Disabling SDK.", "error") + self.DisableSDK() + return + + if not self.StateFresh(): + controller_logs.print_and_log("⚠️ WATCHDOG: timeout! Holding last pose...", "warning") + self.SendFrame(last_played_q, full_body_lock_q) + time.sleep(1.0 / REPLAY_HZ) + continue + + now_real = time.time() + dt_real = now_real - last_real + last_real = now_real + play_elapsed += dt_real * speed + + target_frame = None + for fr in frames: + if fr['t'] - frames[0]['t'] >= play_elapsed: + target_frame = fr + break + if target_frame is None: + break + + self.SendFrame(target_frame['q'], full_body_lock_q) + last_played_q = target_frame['q'] + time.sleep(1.0 / REPLAY_HZ) + + # Always go home (normal finish OR cancel) + self.ReturnArmsHome(last_played_q, full_body_lock_q, home_q, home_steps=180) + self.DisableSDK() + + except Exception as e: + controller_logs.print_and_log(f"❌ Exception in replay: {e}", "error") + try: + self.DisableSDK() + except Exception: + pass + finally: + self.is_playing = False + +# ---------------- Trigger Loop (R2 + X) ---------------- +def main(): + parser = argparse.ArgumentParser() + parser.add_argument("iface", help="Network interface") + parser.add_argument("--input", default="photo_G3.jsonl", help="Input recording file (default: photo_G3.jsonl)") + parser.add_argument("--home", default="arm_home.jsonl", help="Home pose file") + parser.add_argument("--speed", type=float, default=1.0) + parser.add_argument("--state_topic", default="rt/lowstate", help="Lowstate topic (default: rt/lowstate)") + parser.add_argument("--watchdog", type=float, default=0.25, help="Watchdog timeout seconds") + parser.add_argument("--watchdog_disable_after", type=float, default=1.0, help="Disable SDK if stale longer than this") + args = parser.parse_args() + + ChannelFactoryInitialize(0, args.iface) + + engine = ReplayWithHome( + watchdog_timeout=args.watchdog, + watchdog_disable_after=args.watchdog_disable_after + ) + engine.InitStateSubscriber(args.state_topic) + + target_path = resolve_input_path(args.input) + + controller_logs.print_and_log("✅ G1 R2+X Trigger Ready", "info") + controller_logs.print_and_log(f"🎯 Trigger file: {target_path}", "info") + controller_logs.print_and_log("🎮 Hold R2 + X to replay", "info") + controller_logs.print_and_log("🛑 Cancel while playing: Hold R2 + L1", "info") + + # Rising-edge trigger + require release before next trigger + combo_prev = False + + while True: + time.sleep(0.01) + + if not engine.first_state: + continue + + s = engine.controller_state + + # Trigger combo: R2 + X + combo_now = bool(s.get("R2", 0) and s.get("X", 0)) + + # ✅ IGNORE while playing (and also prevent retrigger until released) + if engine.is_playing: + combo_prev = combo_now + continue + + # Trigger only on rising edge (must release and press again) + if combo_now and not combo_prev: + controller_logs.print_and_log("[TRIGGER] R2 + X detected", "info") + engine.RunReplay(target_path, args.home, args.speed) + # After RunReplay returns, if user still holding, combo_prev will get updated next loop + # and won’t retrigger until they release and press again. + + combo_prev = combo_now + +if __name__ == "__main__": + main() diff --git a/Controller/hanger_boot_sequence.py b/Controller/hanger_boot_sequence.py new file mode 100644 index 0000000..9c14d59 --- /dev/null +++ b/Controller/hanger_boot_sequence.py @@ -0,0 +1,185 @@ +""" +hanger_boot_sequence.py – utility to bring a hanging Unitree G-1 from +power-on (Damp) to a balanced stand ready for walking. The helper will now +detect when the robot is already in that balanced stand (FSM-200) and simply +return the client immediately, avoiding a redundant second bring-up cycle. + +Call `hanger_boot_sequence()` from any script and it returns an initialised +`LocoClient` instance that is already in FSM-200. The helper now performs a +sanity-check after the leg-extension sweep: if the firmware still reports +“feet unloaded” (mode = 2) we pause, print a warning and wait for the +operator to tweak the hanger height and press . The sweep is then +repeated until mode 0 (feet loaded) is observed. All parameters are +optional and identical to those we used during development. +""" + +from __future__ import annotations + +import logging +import time +from typing import Optional + +from unitree_sdk2py.core.channel import ChannelFactoryInitialize +from unitree_sdk2py.g1.loco.g1_loco_client import LocoClient +from unitree_sdk2py.g1.loco.g1_loco_api import ( + ROBOT_API_ID_LOCO_GET_FSM_ID, + ROBOT_API_ID_LOCO_GET_FSM_MODE, +) + + +# --------------------------------------------------------------------------- +# Internal helpers +# --------------------------------------------------------------------------- + + +def _rpc_get_int(client: LocoClient, api_id: int) -> Optional[int]: + try: + code, data = client._Call(api_id, "{}") # type: ignore[attr-defined] + if code == 0 and data: + import json + + return json.loads(data).get("data") + except Exception: + pass + return None + + +def _fsm_id(client: LocoClient) -> Optional[int]: + return _rpc_get_int(client, ROBOT_API_ID_LOCO_GET_FSM_ID) + + +def _fsm_mode(client: LocoClient) -> Optional[int]: + return _rpc_get_int(client, ROBOT_API_ID_LOCO_GET_FSM_MODE) + + +def hanger_boot_sequence( + iface: str = "enp68s0f1", + step: float = 0.02, + max_height: float = 0.5, + logger: Optional[logging.Logger] = None, +) -> LocoClient: + """Run the hanger-to-stand sequence. + + Returns a LocoClient instance that is in FSM-200 and ready to receive + Move / Velocity commands. + """ + + if logger is None: + logging.basicConfig(level=logging.INFO, format="%(message)s") + logger = logging.getLogger("hanger_boot") + + # DDS initialisation --------------------------------------------------- + ChannelFactoryInitialize(0, iface) + + bot = LocoClient() + bot.SetTimeout(10.0) + bot.Init() + + # ------------------------------------------------------------------ + # Early-out: If the robot is already in a balanced stand (feet loaded + # and balance controller running) there is no need to repeat the whole + # hanger bring-up sequence. Re-running it would at best waste time and + # at worst jolt a robot that is happily standing on the ground. + # + # Our working definition of “balanced stand ready for walking” is: + # • FSM-ID 200 (Start – balance controller engaged) + # • SportModeState.mode != 2 (feet *loaded*) + # + # When this condition is met we simply log the situation and return the + # initialised LocoClient so callers can proceed to send velocity + # commands straight away. + # ------------------------------------------------------------------ + + try: + cur_id = _fsm_id(bot) + cur_mode = _fsm_mode(bot) + + if cur_id == 200 and cur_mode is not None and cur_mode != 2: + logger.info( + "Robot already in balanced stand (FSM 200, mode %s) – skipping boot sequence.", + cur_mode, + ) + + # Leave the existing balance mode unchanged – if the operator + # previously enabled continuous gait it will remain active; if + # the robot was static it will stay still. This avoids toggling + # modes unnecessarily and prevents inadvertent “stepping in + # place” when no motion is desired. + + return bot + except Exception: + # Fallback to the full sequence if any check fails (e.g. communication + # hiccup right after power-up). Better to run the safe, proven + # routine than to guess incorrectly. + pass + + def show(tag: str) -> None: + logger.info("%-12s → FSM %s mode %s", tag, _fsm_id(bot), _fsm_mode(bot)) + + # 1. Damp -------------------------------------------------------------- + bot.Damp(); show("damp") + + # 2. Stand-up ---------------------------------------------------------- + bot.SetFsmId(4); show("stand_up") # stand-up helper missing in wrapper + + # ------------------------------------------------------------------ + # 3. Increment stand-height until the firmware reports that the feet + # are *loaded* (SportModeState.mode == 0). If we reach the maximum + # extension without seeing the transition 2 -> 0 it usually means + # the hanging frame is too high or too low and the soles never make + # solid contact with the ground. In that case we pause, prompt the + # user to adjust the hanger height, then try the extension sweep + # again. + # ------------------------------------------------------------------ + + while True: # retry loop – exits as soon as mode-0 (feet loaded) seen + height = 0.0 + + while height < max_height: + height += step + bot.SetStandHeight(height) + show(f"height {height:.2f} m") + + # Break early once the firmware acknowledges feet contact + if _fsm_mode(bot) == 0 and height > 0.2: + break + + # Success condition – mode 0 means the robot is now supporting its + # weight on the ground and we can continue to balance stand. + if _fsm_mode(bot) == 0: + break + + # Otherwise we failed to load the feet. Tell the user and let them + # tweak the hanging frame before we repeat the sweep. + logger.warning( + "Feet still unloaded (mode %s) after reaching %.2f m.\n" + "Adjust hanger height (raise/lower until the soles are just in\n" + "contact with the ground) then press to try again…", + _fsm_mode(bot), + height, + ) + + try: + # Reduce stand height so the operator can reposition safely. + bot.SetStandHeight(0.0) + show("reset") + except Exception: + pass + + input() # wait for operator acknowledgement + + # 4. Balance stand ----------------------------------------------------- + bot.BalanceStand(0); show("balance") + bot.SetStandHeight(height); show("height✔") + + # 5. Start the balance controller (FSM 200) --------------------------- + # Leave the robot in balance-mode 0 (static) – callers can switch to + # continuous gait (balance-mode 1) when they actually want to walk. + + bot.Start(); show("start") + + # Caller can now send velocity commands. + return bot + + +__all__ = ["hanger_boot_sequence"] diff --git a/Controller/keyboard_controller.py b/Controller/keyboard_controller.py new file mode 100644 index 0000000..eff694f --- /dev/null +++ b/Controller/keyboard_controller.py @@ -0,0 +1,208 @@ +#!/usr/bin/env python3 +""" +keyboard_controller.py – simple WASD-style tele-op for Unitree G-1. + +The script: +1. Runs the hanger boot sequence so the robot starts balancing. +2. Enters a curses UI where you can drive with the keys below. + +Controls +--------- + W / S : forward / backward velocity + A / D : yaw left / right (turn) + Q / E : lateral left / right (optional, G-1 supports side-step) + Space : stop (zero velocities) + Z : Damp (soft) and exit + Esc : emergency stop & exit (ZeroTorque) + +Velocities are applied continuously – every key-press adjusts the target +values which are sent to the robot at 10 Hz. +""" + +from __future__ import annotations + +import argparse + +# ------------------------------------------------------------------------ +# Notes on the 2025-04-28 update +# ------------------------------------------------------------------------ +# +# * Continuous command _while a key is physically held_. As soon as the key is +# released the corresponding velocity is reset to **zero**. +# * Supports holding several keys together – e.g. **W + A** to move forward +# while turning left. +# +# This requires real “key-up” events which the `curses` module cannot provide. +# We now use the lightweight third-party `pynput` package to poll the current +# key state. It communicates with the X-server (Linux), Win32, or Quartz and +# therefore works for normal users on typical desktop sessions (no sudo). +# Curses is kept only for drawing the tiny on-screen HUD. +# +# When running under Wayland `pynput` might still fall back to reading +# `/dev/input/event*`; in that corner-case you’d again need the permissions or +# group/udev tweaks previously mentioned. +# ------------------------------------------------------------------------ + +import time + +# Third-party --------------------------------------------------------------- + +import curses + +# We now use the cross-platform `pynput` library which reads key events via the +# X server / Win32 API / Quartz, so it works unprivileged on desktop Linux, +# macOS and Windows. On Wayland sessions `pynput` falls back to /dev/input and +# may again need the permissions discussed earlier—but on X11 (the default on +# many distros) it works out-of-the-box. + +try: + from pynput.keyboard import Listener, Key, KeyCode # type: ignore +except ModuleNotFoundError as exc: # pragma: no cover + raise SystemExit( + "The 'pynput' package is required for keyboard_controller.py.\n" + "Install with: pip install pynput" + ) from exc + +from hanger_boot_sequence import hanger_boot_sequence + + +# --------------------------------------------------------------------------- +# Parameter defaults +# --------------------------------------------------------------------------- + +LIN_STEP = 0.05 # m/s per press +ANG_STEP = 0.2 # rad/s per press + +SEND_PERIOD = 0.1 # seconds (10 Hz) + + +def clamp(value: float, limit: float = 0.6) -> float: + return max(-limit, min(limit, value)) + + +def drive_loop(stdscr: "curses._CursesWindow", bot) -> None: + # Curses setup for a tiny on–screen HUD. + curses.cbreak() + stdscr.nodelay(True) # Make getch() non-blocking so the UI stays alive. + + # ------------------------------------------------------------------ + # Internal state + # ------------------------------------------------------------------ + vx = vy = omega = 0.0 # target velocities that will be sent to the robot + + last_send = 0.0 + + # ------------------------------------------------------------------ + # Keyboard listener setup (pynput) + # ------------------------------------------------------------------ + + pressed_keys: set[object] = set() # holds Key / single-char strings + + def _on_press(key): # noqa: D401 – tiny helper + """Callback – store the key object / char in *pressed_keys*.""" + if isinstance(key, KeyCode) and key.char is not None: + pressed_keys.add(key.char.lower()) + else: + pressed_keys.add(key) + + def _on_release(key): + if isinstance(key, KeyCode) and key.char is not None: + pressed_keys.discard(key.char.lower()) + else: + pressed_keys.discard(key) + + listener = Listener(on_press=_on_press, on_release=_on_release) + listener.start() + + def key(name: str) -> bool: # helper similar to keyboard.is_pressed + if name == "space": + return Key.space in pressed_keys + if name == "esc": + return Key.esc in pressed_keys + return name in pressed_keys + + try: + while True: + # ------------------------------------------------------------------ + # 1. Build/refresh the target velocity based on current key states. + # ------------------------------------------------------------------ + + if key("w") and not key("s"): + vx = clamp(vx + LIN_STEP) + elif key("s") and not key("w"): + vx = clamp(vx - LIN_STEP) + else: + vx = 0.0 + + if key("q") and not key("e"): + vy = clamp(vy + LIN_STEP) + elif key("e") and not key("q"): + vy = clamp(vy - LIN_STEP) + else: + vy = 0.0 + + if key("a") and not key("d"): + omega = clamp(omega + ANG_STEP) + elif key("d") and not key("a"): + omega = clamp(omega - ANG_STEP) + else: + omega = 0.0 + + # Space bar – an emergency stop of sorts that zeroes everything no + # matter what other keys are held. + if key("space"): + vx = vy = omega = 0.0 + + # ------------------------------------------------------------------ + # 2. Handle exit conditions. + # ------------------------------------------------------------------ + if key("z"): + bot.Damp() + break + + if key("esc"): + bot.StopMove() + bot.ZeroTorque() + break + + # ------------------------------------------------------------------ + # 3. Send the command at the configured rate and update HUD. + # ------------------------------------------------------------------ + now = time.time() + if now - last_send >= SEND_PERIOD: + bot.Move(vx, vy, omega, continous_move=True) + last_send = now + + stdscr.erase() + stdscr.addstr(0, 0, "Hold keys to drive – Z: quit ESC: e-stop") + stdscr.addstr(2, 0, f"vx: {vx:+.2f} vy: {vy:+.2f} omega: {omega:+.2f}") + stdscr.refresh() + + # A very small sleep keeps CPU usage civilised (<1 % on typical PCs). + time.sleep(0.005) + + finally: + # Ensure the listener thread is stopped before leaving curses context. + listener.stop() + + +def main() -> None: + parser = argparse.ArgumentParser() + parser.add_argument("--iface", default="enp3s0", help="network interface connected to robot") + args = parser.parse_args() + + # Boot sequence – returns initialised LocoClient in FSM-200 + bot = hanger_boot_sequence(iface=args.iface) + + curses.wrapper(drive_loop, bot) + + +if __name__ == "__main__": + try: + main() + except KeyboardInterrupt: + print("\nInterrupted – sending Damp …") + try: + bot.Damp() # type: ignore[name-defined] + except Exception: + pass diff --git a/Controller/saqr_g1_bridge.py b/Controller/saqr_g1_bridge.py new file mode 100644 index 0000000..ea2f8a3 --- /dev/null +++ b/Controller/saqr_g1_bridge.py @@ -0,0 +1,265 @@ +#!/usr/bin/env python3 +""" +saqr_g1_bridge.py + +Bridge between Saqr PPE detection and the Unitree G1 arm action client. + +Spawns Saqr (Project/Saqr/saqr.py) as a subprocess, parses its event stream, +and triggers the G1 'reject' arm action (id=13) whenever a tracked person +transitions to UNSAFE (= DANGER). SAFE and PARTIAL never trigger an action. + +Saqr event line format (from emit_event in saqr.py): + ID 0001 | NEW | UNSAFE | wearing: ... | missing: ... | unknown: ... + ID 0001 | STATUS_CHANGE | SAFE | wearing: ... | missing: ... | unknown: ... + +Usage: + # default: webcam, default DDS interface + python3 saqr_g1_bridge.py + + # specify camera and DDS interface + python3 saqr_g1_bridge.py --source 0 --iface enp3s0 + + # dry run (no robot movement, just print decisions) + python3 saqr_g1_bridge.py --dry-run + + # forward extra args to saqr.py after a `--` + python3 saqr_g1_bridge.py --iface eth0 -- --conf 0.4 --imgsz 640 +""" + +from __future__ import annotations + +import argparse +import os +import re +import signal +import subprocess +import sys +import threading +import time +from pathlib import Path +from typing import Dict, Optional + + +# ── Defaults ───────────────────────────────────────────────────────────────── +HERE = Path(__file__).resolve().parent +REPO_ROOT = HERE.parent.parent # .../yslootahtech +SAQR_DIR = REPO_ROOT / "Project" / "Saqr" +SAQR_SCRIPT = SAQR_DIR / "saqr.py" + +DANGER_STATUS = "UNSAFE" +REJECT_ACTION = "reject" +RELEASE_ACTION = "release arm" + +# ID NNNN | EVENT_TYPE | STATUS | wearing: ... | missing: ... | unknown: ... +EVENT_RE = re.compile( + r"^ID\s+(?P\d+)\s*\|\s*" + r"(?PNEW|STATUS_CHANGE)\s*\|\s*" + r"(?PSAFE|PARTIAL|UNSAFE)\s*\|" +) + + +# ── G1 arm controller (lazy import: SDK only loaded when not in dry-run) ───── +class ArmController: + def __init__(self, iface: Optional[str], timeout: float, dry_run: bool): + self.dry_run = dry_run + if dry_run: + print("[BRIDGE] DRY RUN — G1 SDK will not be loaded.", flush=True) + self.client = None + return + + from unitree_sdk2py.core.channel import ChannelFactoryInitialize + from unitree_sdk2py.g1.arm.g1_arm_action_client import ( + G1ArmActionClient, + action_map, + ) + self._action_map = action_map + + if iface: + ChannelFactoryInitialize(0, iface) + else: + ChannelFactoryInitialize(0) + + self.client = G1ArmActionClient() + self.client.SetTimeout(timeout) + self.client.Init() + print(f"[BRIDGE] G1ArmActionClient ready (iface={iface or 'default'})", + flush=True) + + def reject(self, release_after: float): + if self.dry_run: + print(f"[BRIDGE] (dry) would run '{REJECT_ACTION}' " + f"then release after {release_after:.1f}s", flush=True) + return + if REJECT_ACTION not in self._action_map: + print(f"[BRIDGE][ERR] '{REJECT_ACTION}' not in SDK action_map", + flush=True) + return + print(f"[BRIDGE] -> {REJECT_ACTION}", flush=True) + self.client.ExecuteAction(self._action_map[REJECT_ACTION]) + if release_after > 0: + time.sleep(release_after) + print(f"[BRIDGE] -> {RELEASE_ACTION}", flush=True) + self.client.ExecuteAction(self._action_map[RELEASE_ACTION]) + + +# ── Bridge ─────────────────────────────────────────────────────────────────── +class Bridge: + def __init__( + self, + arm: ArmController, + cooldown_s: float, + release_after_s: float, + ): + self.arm = arm + self.cooldown_s = cooldown_s + self.release_after_s = release_after_s + self.last_status: Dict[int, str] = {} + self.last_trigger_t: Dict[int, float] = {} + self._lock = threading.Lock() + + def handle_line(self, line: str): + line = line.rstrip() + if not line: + return + # Always echo Saqr output so the user still sees the live stream. + print(line, flush=True) + + m = EVENT_RE.match(line) + if not m: + return + + track_id = int(m.group("id")) + status = m.group("status") + + with self._lock: + prev = self.last_status.get(track_id) + self.last_status[track_id] = status + + if status != DANGER_STATUS: + return + + # Trigger only on transitions into UNSAFE, with per-id cooldown. + now = time.time() + last_t = self.last_trigger_t.get(track_id, 0.0) + transitioned = (prev != DANGER_STATUS) + cooled_down = (now - last_t) >= self.cooldown_s + + if not (transitioned and cooled_down): + return + + self.last_trigger_t[track_id] = now + + # Run the arm action outside the lock so we don't block parsing. + try: + self.arm.reject(release_after=self.release_after_s) + except Exception as e: + print(f"[BRIDGE][ERR] arm reject failed: {e}", flush=True) + + +# ── Saqr subprocess management ─────────────────────────────────────────────── +def build_saqr_cmd(saqr_extra_args: list[str]) -> list[str]: + if not SAQR_SCRIPT.exists(): + sys.exit(f"[BRIDGE][FATAL] saqr.py not found at: {SAQR_SCRIPT}") + # -u for unbuffered stdout (so events arrive line-by-line). + return [sys.executable, "-u", str(SAQR_SCRIPT), *saqr_extra_args] + + +def split_argv(argv: list[str]) -> tuple[list[str], list[str]]: + """Split bridge args from saqr passthrough args at the first '--'.""" + if "--" in argv: + idx = argv.index("--") + return argv[:idx], argv[idx + 1 :] + return argv, [] + + +def main(): + bridge_argv, saqr_extra = split_argv(sys.argv[1:]) + + ap = argparse.ArgumentParser( + description="Bridge Saqr PPE events to the G1 arm 'reject' action." + ) + ap.add_argument("--iface", default=None, + help="DDS network interface (e.g. enp3s0). Optional.") + ap.add_argument("--timeout", type=float, default=10.0, + help="G1 arm client timeout (seconds).") + ap.add_argument("--cooldown", type=float, default=8.0, + help="Per-track-id seconds before reject can re-trigger.") + ap.add_argument("--release-after", type=float, default=2.0, + help="Seconds before auto-running 'release arm' (0 = never).") + ap.add_argument("--dry-run", action="store_true", + help="Parse and decide but never call the SDK.") + + # Convenience pass-throughs to saqr.py (you can also use `-- ...`). + ap.add_argument("--source", default=None, + help="Saqr --source (0/realsense/path). Default: leave to saqr.") + ap.add_argument("--headless", action="store_true", + help="Pass --headless to saqr.") + ap.add_argument("--saqr-conf", type=float, default=None, + help="Pass --conf to saqr.") + ap.add_argument("--imgsz", type=int, default=None, + help="Pass --imgsz to saqr.") + ap.add_argument("--device", default=None, + help="Pass --device to saqr (e.g. cpu / 0 / cuda:0).") + + args = ap.parse_args(bridge_argv) + + # Build saqr args from convenience flags + raw passthrough. + saqr_args: list[str] = [] + if args.source is not None: + saqr_args += ["--source", args.source] + if args.headless: + saqr_args += ["--headless"] + if args.saqr_conf is not None: + saqr_args += ["--conf", str(args.saqr_conf)] + if args.imgsz is not None: + saqr_args += ["--imgsz", str(args.imgsz)] + if args.device is not None: + saqr_args += ["--device", args.device] + saqr_args += saqr_extra + + arm = ArmController(iface=args.iface, timeout=args.timeout, dry_run=args.dry_run) + bridge = Bridge( + arm=arm, + cooldown_s=args.cooldown, + release_after_s=args.release_after, + ) + + cmd = build_saqr_cmd(saqr_args) + print(f"[BRIDGE] launching: {' '.join(cmd)}", flush=True) + print(f"[BRIDGE] cwd: {SAQR_DIR}", flush=True) + + env = os.environ.copy() + env["PYTHONUNBUFFERED"] = "1" + + proc = subprocess.Popen( + cmd, + cwd=str(SAQR_DIR), + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT, + bufsize=1, + text=True, + env=env, + ) + + def _forward_signal(signum, _frame): + print(f"[BRIDGE] signal {signum} -> stopping saqr", flush=True) + try: + proc.send_signal(signum) + except Exception: + pass + + signal.signal(signal.SIGINT, _forward_signal) + signal.signal(signal.SIGTERM, _forward_signal) + + try: + assert proc.stdout is not None + for line in proc.stdout: + bridge.handle_line(line) + finally: + rc = proc.wait() + print(f"[BRIDGE] saqr exited rc={rc}", flush=True) + sys.exit(rc) + + +if __name__ == "__main__": + main() diff --git a/Controller/wireless_controller.py b/Controller/wireless_controller.py new file mode 100644 index 0000000..995487f --- /dev/null +++ b/Controller/wireless_controller.py @@ -0,0 +1,131 @@ +import time +import sys +import struct + +from unitree_sdk2py.core.channel import ChannelSubscriber, ChannelFactoryInitialize + +# Uncomment the following two lines when using Go2、Go2-W、B2、B2-W、H1 robot +# from unitree_sdk2py.idl.default import unitree_go_msg_dds__LowState_ +# from unitree_sdk2py.idl.unitree_go.msg.dds_ import LowState_ + +# Uncomment the following two lines when using G1、H1-2 robot +from unitree_sdk2py.idl.default import unitree_hg_msg_dds__LowState_ +from unitree_sdk2py.idl.unitree_hg.msg.dds_ import LowState_ + +class unitreeRemoteController: + def __init__(self): + # key + self.Lx = 0 + self.Rx = 0 + self.Ry = 0 + self.Ly = 0 + + # button + self.L1 = 0 + self.L2 = 0 + self.R1 = 0 + self.R2 = 0 + self.A = 0 + self.B = 0 + self.X = 0 + self.Y = 0 + self.Up = 0 + self.Down = 0 + self.Left = 0 + self.Right = 0 + self.Select = 0 + self.F1 = 0 + self.F3 = 0 + self.Start = 0 + + def parse_botton(self,data1,data2): + self.R1 = (data1 >> 0) & 1 + self.L1 = (data1 >> 1) & 1 + self.Start = (data1 >> 2) & 1 + self.Select = (data1 >> 3) & 1 + self.R2 = (data1 >> 4) & 1 + self.L2 = (data1 >> 5) & 1 + self.F1 = (data1 >> 6) & 1 + self.F3 = (data1 >> 7) & 1 + self.A = (data2 >> 0) & 1 + self.B = (data2 >> 1) & 1 + self.X = (data2 >> 2) & 1 + self.Y = (data2 >> 3) & 1 + self.Up = (data2 >> 4) & 1 + self.Right = (data2 >> 5) & 1 + self.Down = (data2 >> 6) & 1 + self.Left = (data2 >> 7) & 1 + + def parse_key(self,data): + lx_offset = 4 + self.Lx = struct.unpack('1: + ChannelFactoryInitialize(0, sys.argv[1]) + else: + ChannelFactoryInitialize(0) + + custom = Custom() + custom.Init() + + while True: + time.sleep(1) \ No newline at end of file diff --git a/Controller/wireless_controller_keys.py b/Controller/wireless_controller_keys.py new file mode 100644 index 0000000..af3dc4d --- /dev/null +++ b/Controller/wireless_controller_keys.py @@ -0,0 +1,276 @@ +import time +import sys +import struct +from Logger import Logs + +from unitree_sdk2py.core.channel import ChannelSubscriber, ChannelFactoryInitialize +from unitree_sdk2py.idl.default import unitree_hg_msg_dds__LowState_ +from unitree_sdk2py.idl.unitree_hg.msg.dds_ import LowState_ + +# Initialize Logger +controller_logs = Logs() +controller_logs.LogEngine("G1_Logs", "Wireless_Controller_keys.log") + + + +"""_summary_ + +1. Posture Switch (Modifier: Hold L2) + +These commands change the fundamental physical state or stance of the robot. + + L2 + R2: Debug Mode + + L2 + Y: Zero Torque / Zero Moment Mode + + L2 + B: ① Damping Mode + + L2 + UP: ② Lock Stand / Locked Standing + + L2 + LEFT: ④ Seated Mode + + L2 + X: ⑤ Lying and Standing (Lie -> Stand) + + L2 + A: ⑥ Squat Switch (Squat <-> Stand) + +2. Interactional Functions (Modifier: Hold SELECT or Double-Click) + +These are social or "demo" movements. + + SELECT + A: Handshake + + SELECT + Y: Wave Hand + + SELECT + X: Reject / Turn Around and Waves Hand + + SELECT + B: Face Wave + + Double-Click Y: Right Kiss + + Double-Click X: Left Kiss + + Double-Click A: Clap + + Double-Click B: Right Raise + + Double-Click UP: Flex Left + + Double-Click DOWN: Flex Right + + Double-Click LEFT: Flex Both + +3. Motion & Run Control (Modifier: Hold R2 or START) + +Commands related to locomotion and body leaning. + + R2 + DOWN: Slow Running + + R2 + UP: Fast Running + + R2 + A: ③ Running Mode + + R2 + B: ⑧ Climb Mode + + START + UP: Forward Lean + + START + DOWN: Backward Lean + +4. Main Operation & Special Modes (Modifier: Hold R1) + +Controls for complex body structures and specialized routines. + + R1 + X: ⑦ Main Operation Control (1-DOF Waist) + + R1 + Y: ⑧ Main Operation Control (3-DOF Waist) + + R1 + SELECT: Kung Fu + + R1 + A: Dance 1 + + R1 + B: Dance 2 + + R1 + X (alt): Dance 3 + + R1 + Y (alt): Roll Up + +5. System & Offset Settings + +Technical adjustments for calibration and UI feedback. + + Click START: Stand / Standing + + Double-Click START: Keep Stepping (Not Recommended) + + Double-Click L1: High Speed Mode + + Double-Click L2: Low Speed Mode + + F1 (Pressed 3 times): Sound/Vibration Switch + + F3 (Pressed 3 times): Sound/Vibration Toggle + + Hold R1 + Click →: Left Offset + + Hold R1 + Click ←: Right Offset + + Hold R1 + Click ↓: Forward Offset + + Hold R1 + Click ↑: Backward Offset + +6. Joysticks (Rockers) + + Left Rocker (Lx, Ly): Translational movement (Forward/Backward/Sideways). + + Right Rocker (Rx, Ry): Rotational movement (Yaw) or limb control in Operation Mode. + + + +""" + + + +class unitreeRemoteController: + def __init__(self): + # Joysticks + self.Lx = 0; self.Rx = 0; self.Ry = 0; self.Ly = 0 + # Buttons + self.L1 = 0; self.L2 = 0; self.R1 = 0; self.R2 = 0 + self.A = 0; self.B = 0; self.X = 0; self.Y = 0 + self.Up = 0; self.Down = 0; self.Left = 0; self.Right = 0 + self.Select = 0; self.F1 = 0; self.F3 = 0; self.Start = 0 + + def parse_botton(self, data1, data2): + self.R1 = (data1 >> 0) & 1; self.L1 = (data1 >> 1) & 1 + self.Start = (data1 >> 2) & 1; self.Select = (data1 >> 3) & 1 + self.R2 = (data1 >> 4) & 1; self.L2 = (data1 >> 5) & 1 + self.F1 = (data1 >> 6) & 1; self.F3 = (data1 >> 7) & 1 + self.A = (data2 >> 0) & 1; self.B = (data2 >> 1) & 1 + self.X = (data2 >> 2) & 1; self.Y = (data2 >> 3) & 1 + self.Up = (data2 >> 4) & 1; self.Right = (data2 >> 5) & 1 + self.Down = (data2 >> 6) & 1; self.Left = (data2 >> 7) & 1 + + def parse_key(self, data): + offsets = [4, 8, 12, 20] # Lx, Rx, Ry, Ly + self.Lx, self.Rx, self.Ry, self.Ly = [struct.unpack(' 0.1: + controller_logs.print_and_log(f"[STICK] {stick}: {s[stick]:.2f}", "debug") + break + +if __name__ == '__main__': + if len(sys.argv) > 1: ChannelFactoryInitialize(0, sys.argv[1]) + else: ChannelFactoryInitialize(0) + + custom = Custom() + custom.Init() + controller_logs.print_and_log("G1 Logger Ready. Monitoring inputs...", "info") + while True: time.sleep(0.01) \ No newline at end of file diff --git a/Doc/scripts/validate_map.py b/Doc/scripts/validate_map.py new file mode 100644 index 0000000..7f10b27 --- /dev/null +++ b/Doc/scripts/validate_map.py @@ -0,0 +1,251 @@ +""" +validate_map.py — Phase 1 acceptance harness for a SLAM-saved .ply map. + +Run: + python3 -m Doc.scripts.validate_map /path/to/map.ply + [--min-points 10000] [--max-clusters 1] [--min-z-span 1.0] + +On pass, writes `.validated.json` next to the .ply. The GUI's +production-gate (in SLAM_GUI) checks for this sidecar before allowing +LIVE_NAV / EXTEND_MAP / LOCALIZE_MAP workflows on the map. + +Checks performed: + 1. Point count >= min_points + 2. DBSCAN cluster count <= max_clusters (default 1 — fragmented maps + indicate SLAM tracking loss; should be remediated with MapRefiner + before validation) + 3. Z-axis span (ceiling height) >= min_z_span + 4. X/Y bounding-box has at least min_xy_span on the smaller axis + (rejects degenerate "point-on-a-line" scans) + +Design notes: + - Like MapRefiner, the DBSCAN call runs in a subprocess so an Open3D + segfault doesn't crash the validator. + - The validation sidecar is intentionally small JSON so it can be + inspected, edited, or version-controlled if you need to override + a check. +""" +from __future__ import annotations + +import argparse +import hashlib +import json +import os +import pickle +import subprocess +import sys +import tempfile +import time +from pathlib import Path + +import numpy as np + + +# Subprocess worker — mirrors MapRefiner's crash-safe pattern. +def _worker_dbscan(): + import open3d as o3d # only imported inside subprocess + in_path = sys.argv[3] + out_path = sys.argv[4] + with open(in_path, "rb") as f: + payload = pickle.load(f) + pcd = o3d.geometry.PointCloud() + pcd.points = o3d.utility.Vector3dVector(payload["points"]) + with o3d.utility.VerbosityContextManager(o3d.utility.VerbosityLevel.Error): + labels = np.array(pcd.cluster_dbscan( + eps=payload["eps"], + min_points=payload["min_points"], + print_progress=False, + )) + with open(out_path, "wb") as f: + pickle.dump({"labels": labels}, f) + + +if len(sys.argv) > 2 and sys.argv[1] == "_worker" and sys.argv[2] == "dbscan": + _worker_dbscan() + sys.exit(0) + + +def _run_dbscan_subprocess(points: np.ndarray, eps: float, min_pts: int, + timeout_s: int = 90) -> np.ndarray | None: + """Run DBSCAN in an isolated subprocess. Returns labels or None on + timeout/error.""" + with tempfile.TemporaryDirectory() as tmp: + in_p = os.path.join(tmp, "in.pkl") + out_p = os.path.join(tmp, "out.pkl") + with open(in_p, "wb") as fh: + pickle.dump( + {"points": points, "eps": eps, "min_points": min_pts}, + fh, + ) + try: + r = subprocess.run( + [sys.executable, __file__, "_worker", "dbscan", in_p, out_p], + timeout=timeout_s, + capture_output=True, + ) + except subprocess.TimeoutExpired: + print(f"[validate_map] DBSCAN timed out after {timeout_s}s", + file=sys.stderr) + return None + if r.returncode != 0 or not os.path.exists(out_p): + err = r.stderr.decode(errors="replace")[-300:] if r.stderr else "(no stderr)" + print(f"[validate_map] DBSCAN subprocess exit {r.returncode}: {err}", + file=sys.stderr) + return None + with open(out_p, "rb") as fh: + return pickle.load(fh)["labels"] + + +def _read_ply_xyz(path: str) -> np.ndarray: + """Read XYZ from PLY (ASCII or binary little-endian). No Open3D dep + in the parent process — keeps the validator robust against Open3D + segfaults during read.""" + with open(path, "rb") as f: + header_lines = [] + while True: + line = f.readline() + if not line: + raise ValueError("Unexpected EOF in PLY header") + header_lines.append(line) + if line.strip() == b"end_header": + break + header = b"".join(header_lines) + text = header.decode("ascii", errors="replace") + is_binary = "format binary_little_endian" in text + n_vertex = 0 + props = [] + in_vertex = False + for line in text.splitlines(): + if line.startswith("element vertex"): + n_vertex = int(line.split()[-1]) + in_vertex = True + continue + if line.startswith("element ") and in_vertex: + break + if in_vertex and line.startswith("property"): + parts = line.split() + props.append((parts[1], parts[2])) + if n_vertex == 0: + raise ValueError("No vertex element in PLY") + + if is_binary: + type_map = { + "float": ("f4", 4), "float32": ("f4", 4), "double": ("f8", 8), + "uchar": ("u1", 1), "char": ("i1", 1), + "ushort": ("u2", 2), "short": ("i2", 2), + "uint": ("u4", 4), "int": ("i4", 4), + } + dtype_list = [] + for t, name in props: + if t not in type_map: + raise ValueError(f"Unknown PLY type: {t}") + dtype_list.append((name, "<" + type_map[t][0])) + arr = np.frombuffer(f.read(), dtype=np.dtype(dtype_list), count=n_vertex) + return np.column_stack([arr["x"], arr["y"], arr["z"]]).astype(np.float64) + # ASCII fallback + x_idx = next(i for i, (_, n) in enumerate(props) if n == "x") + y_idx = next(i for i, (_, n) in enumerate(props) if n == "y") + z_idx = next(i for i, (_, n) in enumerate(props) if n == "z") + xyz = np.zeros((n_vertex, 3), dtype=np.float64) + for i in range(n_vertex): + row = f.readline().decode("ascii").split() + xyz[i] = [float(row[x_idx]), float(row[y_idx]), float(row[z_idx])] + return xyz + + +def _md5(path: str) -> str: + h = hashlib.md5() + with open(path, "rb") as fh: + for chunk in iter(lambda: fh.read(1 << 20), b""): + h.update(chunk) + return h.hexdigest() + + +def validate( + ply_path: str, + *, + min_points: int = 10_000, + max_clusters: int = 1, + min_z_span: float = 1.0, + min_xy_span: float = 1.5, + dbscan_eps: float = 0.30, + dbscan_min_pts: int = 50, +) -> dict: + """Run all checks. Returns a dict with `passed: bool` plus per-check + diagnostics. Caller decides whether to write the sidecar.""" + result: dict = { + "path": str(ply_path), + "validated_at": time.strftime("%Y-%m-%dT%H:%M:%S"), + "checks": {}, + "passed": False, + } + + pts = _read_ply_xyz(ply_path) + n = len(pts) + result["checks"]["point_count"] = {"value": int(n), "min": min_points, "ok": n >= min_points} + + if n < min_points: + result["passed"] = False + return result + + x_span = float(pts[:, 0].max() - pts[:, 0].min()) + y_span = float(pts[:, 1].max() - pts[:, 1].min()) + z_span = float(pts[:, 2].max() - pts[:, 2].min()) + smaller_xy = min(x_span, y_span) + result["checks"]["z_span_m"] = {"value": z_span, "min": min_z_span, "ok": z_span >= min_z_span} + result["checks"]["xy_span_m"] = {"value": smaller_xy, "min": min_xy_span, "ok": smaller_xy >= min_xy_span} + + labels = _run_dbscan_subprocess(pts, dbscan_eps, dbscan_min_pts) + if labels is None: + result["checks"]["clusters"] = {"value": None, "max": max_clusters, "ok": False, "error": "dbscan failed"} + result["passed"] = False + return result + n_clusters = int(len({int(l) for l in labels if l >= 0})) + result["checks"]["clusters"] = {"value": n_clusters, "max": max_clusters, "ok": n_clusters <= max_clusters} + + result["md5"] = _md5(ply_path) + result["passed"] = all(c.get("ok", False) for c in result["checks"].values()) + return result + + +def write_sidecar(ply_path: str, validation: dict) -> str: + """Write `.validated.json`. The path format matches what + SLAM_GUI's `_map_is_validated` checks for.""" + out = Path(ply_path).with_suffix(Path(ply_path).suffix + ".validated.json") + out.write_text(json.dumps(validation, indent=2), encoding="utf-8") + return str(out) + + +def main() -> int: + p = argparse.ArgumentParser(description="Validate a SLAM-saved .ply map.") + p.add_argument("ply", help="Path to the .ply map file.") + p.add_argument("--min-points", type=int, default=10_000) + p.add_argument("--max-clusters", type=int, default=1) + p.add_argument("--min-z-span", type=float, default=1.0) + p.add_argument("--min-xy-span", type=float, default=1.5) + p.add_argument("--force", action="store_true", help="Write sidecar even if checks fail.") + args = p.parse_args() + + if not os.path.exists(args.ply): + print(f"File not found: {args.ply}", file=sys.stderr) + return 2 + + res = validate( + args.ply, + min_points=args.min_points, + max_clusters=args.max_clusters, + min_z_span=args.min_z_span, + min_xy_span=args.min_xy_span, + ) + + print(json.dumps(res, indent=2)) + if res["passed"] or args.force: + out = write_sidecar(args.ply, res) + print(f"sidecar written: {out}") + return 0 + print("validation FAILED — sidecar NOT written (use --force to override)", file=sys.stderr) + return 1 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/Lidar/.bak-before-prod-sync/SLAM_Filter.py b/Lidar/.bak-before-prod-sync/SLAM_Filter.py new file mode 100644 index 0000000..bc13f1c --- /dev/null +++ b/Lidar/.bak-before-prod-sync/SLAM_Filter.py @@ -0,0 +1,395 @@ +# SLAM_Filter.py +from __future__ import annotations + +import json +import os +import time +from dataclasses import dataclass +from pathlib import Path +from typing import Any, Dict +import numpy as np + + +def load_slam_config() -> dict: + import json, os + from pathlib import Path + + cfg_path = os.environ.get("SLAM_CONFIG", "").strip() + p = Path(cfg_path) if cfg_path else (Path(__file__).resolve().parent / "SLAM_Config.json") + + if not p.exists(): + raise FileNotFoundError(f"Missing config file: {p}") + + text = p.read_text(encoding="utf-8").strip() + if not text: + raise RuntimeError("SLAM_Config.json is empty.") + + return json.loads(text) + + + +@dataclass +class FilterConfig: + voxel_size: float + hit_threshold: int + decay_seconds: float + max_voxels: int + + @staticmethod + def from_config_file() -> "FilterConfig": + cfg = load_slam_config() + return FilterConfig( + voxel_size=float(cfg["filter"]["voxel_size"]), + hit_threshold=int(cfg["filter"]["hits_threshold"]), + decay_seconds=float(cfg["filter"]["persistence"]["decay_seconds"]), + max_voxels=int(cfg["filter"]["persistence"]["max_voxels"]), + ) + + +class VoxelPersistenceFilter: + """ + Voxel hit-count persistence filter. + No hardcoded params: everything comes from SLAM_Config.jsonl. + """ + + def __init__(self, cfg: FilterConfig | None = None): + self.cfg = cfg if cfg is not None else FilterConfig.from_config_file() + self._count: dict[tuple[int, int, int], int] = {} + self._last: dict[tuple[int, int, int], float] = {} + self._sum: dict[tuple[int, int, int], np.ndarray] = {} + self._n: dict[tuple[int, int, int], int] = {} + + def reset(self): + self._count.clear() + self._last.clear() + self._sum.clear() + self._n.clear() + + def _voxel_keys(self, pts: np.ndarray) -> np.ndarray: + vs = float(self.cfg.voxel_size) + return np.floor(pts / vs).astype(np.int32) + + def update(self, points_world: np.ndarray, now: float | None = None) -> None: + if points_world is None or len(points_world) == 0: + return + + now = time.time() if now is None else float(now) + keys = self._voxel_keys(points_world) + uniq, inv = np.unique(keys, axis=0, return_inverse=True) + + # Vectorized per-voxel means; previous np.where-in-loop was O(N*U). + sums = np.zeros((len(uniq), 3), dtype=np.float64) + counts = np.zeros((len(uniq),), dtype=np.int64) + np.add.at(sums, inv, points_world.astype(np.float64, copy=False)) + np.add.at(counts, inv, 1) + means = sums / np.maximum(counts[:, None], 1) + + for i, k in enumerate(uniq): + k_t = (int(k[0]), int(k[1]), int(k[2])) + self._count[k_t] = self._count.get(k_t, 0) + 1 + self._last[k_t] = now + if k_t not in self._sum: + self._sum[k_t] = means[i].astype(np.float64, copy=True) + self._n[k_t] = 1 + else: + self._sum[k_t] += means[i] + self._n[k_t] += 1 + + self._decay(now) + + if len(self._count) > int(self.cfg.max_voxels): + self._aggressive_prune() + + def _decay(self, now: float) -> None: + ttl = float(self.cfg.decay_seconds) + to_del = [] + for k, t_last in self._last.items(): + if (now - t_last) > ttl: + to_del.append(k) + for k in to_del: + self._count.pop(k, None) + self._last.pop(k, None) + self._sum.pop(k, None) + self._n.pop(k, None) + + def _aggressive_prune(self) -> None: + items = sorted(self._count.items(), key=lambda kv: kv[1], reverse=True) + keep_n = int(int(self.cfg.max_voxels) * 0.8) + keep = set(k for k, _ in items[:keep_n]) + + for k in list(self._count.keys()): + if k not in keep: + self._count.pop(k, None) + self._last.pop(k, None) + self._sum.pop(k, None) + self._n.pop(k, None) + + def get_stable_points(self) -> np.ndarray: + thr = int(self.cfg.hit_threshold) + pts = [] + for k, c in self._count.items(): + if c >= thr: + s = self._sum.get(k) + n = self._n.get(k, 1) + if s is not None: + pts.append(s / max(n, 1)) + if not pts: + return np.zeros((0, 3), dtype=np.float32) + return np.asarray(pts, dtype=np.float32) + + def seed_stable_points( + self, + points_world: np.ndarray, + now: float | None = None, + hit_count: int | None = None, + clear_existing: bool = True, + ) -> None: + """ + Seed filter state from already-stable world-frame points. + Useful after global pose correction (loop-closure optimization). + """ + if points_world is None or len(points_world) == 0: + if clear_existing: + self.reset() + return + if clear_existing: + self.reset() + + now_v = time.time() if now is None else float(now) + hc = int(hit_count if hit_count is not None else self.cfg.hit_threshold) + hc = max(1, hc) + + pts = np.asarray(points_world, dtype=np.float32) + keys = self._voxel_keys(pts) + uniq, inv = np.unique(keys, axis=0, return_inverse=True) + + for i, k in enumerate(uniq): + k_t = (int(k[0]), int(k[1]), int(k[2])) + idx = np.where(inv == i)[0] + mean = pts[idx].mean(axis=0) + + self._count[k_t] = max(self._count.get(k_t, 0), hc) + self._last[k_t] = now_v + self._sum[k_t] = mean.copy() + self._n[k_t] = 1 + + self._decay(now_v) + if len(self._count) > int(self.cfg.max_voxels): + self._aggressive_prune() + + def stats(self) -> dict: + thr = int(self.cfg.hit_threshold) + stable = sum(1 for c in self._count.values() if c >= thr) + return { + "voxels_total": len(self._count), + "voxels_stable": stable, + "hit_threshold": thr, + "voxel_size": float(self.cfg.voxel_size), + "decay_seconds": float(self.cfg.decay_seconds), + "max_voxels": int(self.cfg.max_voxels), + } + + +@dataclass +class IndoorMapQualityConfig: + enabled: bool = True + near_min_range_m: float = 0.15 + ray_consistency_enabled: bool = True + ray_bin_deg: float = 1.0 + ray_elev_bin_deg: float = 4.0 + ray_max_behind_m: float = 0.25 + ray_keep_n: int = 1 + world_z_clip_enabled: bool = False + world_z_min_m: float = -2.0 + world_z_max_m: float = 3.0 + outlier_filter_enabled: bool = False + outlier_voxel_m: float = 0.12 + outlier_min_points: int = 2 + # Robot body exclusion box (sensor frame) — removes self-returns from robot body. + # Tuned for Unitree G1 Edu with chest-mounted Livox MID-360. + body_exclusion_enabled: bool = False + body_x_min_m: float = -0.20 + body_x_max_m: float = 0.35 + body_y_min_m: float = -0.25 + body_y_max_m: float = 0.25 + body_z_min_m: float = -1.30 + body_z_max_m: float = 0.15 + + @staticmethod + def from_dict(d: Dict[str, Any] | None) -> "IndoorMapQualityConfig": + src = d or {} + return IndoorMapQualityConfig( + enabled=bool(src.get("enabled", True)), + near_min_range_m=max(0.0, float(src.get("near_min_range_m", 0.15))), + ray_consistency_enabled=bool(src.get("ray_consistency_enabled", True)), + ray_bin_deg=max(0.2, float(src.get("ray_bin_deg", 1.0))), + ray_elev_bin_deg=max(0.0, float(src.get("ray_elev_bin_deg", 4.0))), + ray_max_behind_m=max(0.0, float(src.get("ray_max_behind_m", 0.25))), + ray_keep_n=max(1, int(src.get("ray_keep_n", 1))), + world_z_clip_enabled=bool(src.get("world_z_clip_enabled", False)), + world_z_min_m=float(src.get("world_z_min_m", -2.0)), + world_z_max_m=float(src.get("world_z_max_m", 3.0)), + outlier_filter_enabled=bool(src.get("outlier_filter_enabled", False)), + outlier_voxel_m=max(0.02, float(src.get("outlier_voxel_m", 0.12))), + outlier_min_points=max(1, int(src.get("outlier_min_points", 2))), + body_exclusion_enabled=bool(src.get("body_exclusion_enabled", False)), + body_x_min_m=float(src.get("body_x_min_m", -0.20)), + body_x_max_m=float(src.get("body_x_max_m", 0.35)), + body_y_min_m=float(src.get("body_y_min_m", -0.25)), + body_y_max_m=float(src.get("body_y_max_m", 0.25)), + body_z_min_m=float(src.get("body_z_min_m", -1.30)), + body_z_max_m=float(src.get("body_z_max_m", 0.15)), + ) + + +class IndoorMapQualityFilter: + """ + Lightweight indoor map-quality filters intended for real-time use. + """ + + def __init__(self, cfg: IndoorMapQualityConfig): + self.cfg = cfg + + @staticmethod + def _finite(points: np.ndarray) -> np.ndarray: + if points is None or len(points) == 0: + return np.zeros((0, 3), dtype=np.float32) + pts = np.asarray(points, dtype=np.float32) + m = np.isfinite(pts).all(axis=1) + return pts[m] + + def _remove_sparse_voxels(self, points: np.ndarray) -> np.ndarray: + if points is None or len(points) == 0: + return np.zeros((0, 3), dtype=np.float32) + voxel = float(self.cfg.outlier_voxel_m) + keys = np.floor(points / voxel).astype(np.int32) + uniq, inv, counts = np.unique(keys, axis=0, return_inverse=True, return_counts=True) + del uniq # only counts/inv are needed + keep = counts[inv] >= int(self.cfg.outlier_min_points) + return points[keep] + + def _ray_consistency_filter(self, points: np.ndarray) -> np.ndarray: + """ + Keep nearest returns per azimuth bin (+small behind margin) to suppress + echoes and duplicated points that appear behind wall lines. + Uses a vectorized fast path for keep_n=1 to keep CPU usage low. + """ + if points is None or len(points) == 0: + return np.zeros((0, 3), dtype=np.float32) + if not self.cfg.ray_consistency_enabled: + return points + + pts = np.asarray(points, dtype=np.float32) + if len(pts) < 80: + return pts + + xy = pts[:, :2] + r = np.linalg.norm(xy, axis=1) + valid = np.isfinite(r) & (r > 1e-4) + if not np.all(valid): + pts = pts[valid] + r = r[valid] + if len(pts) < 40: + return pts + + bin_rad = np.deg2rad(float(self.cfg.ray_bin_deg)) + az = np.arctan2(pts[:, 1], pts[:, 0]) + bins_az = np.floor((az + np.pi) / max(1e-6, bin_rad)).astype(np.int32) + elev_bin_deg = float(self.cfg.ray_elev_bin_deg) + if elev_bin_deg > 0.0: + elev_rad = np.deg2rad(max(0.2, elev_bin_deg)) + elev = np.arctan2(pts[:, 2], np.maximum(r, 1e-4)) + bins_el = np.floor((elev + 0.5 * np.pi) / elev_rad).astype(np.int32) + n_az = int(np.max(bins_az)) + 1 if len(bins_az) > 0 else 1 + bins = bins_az + (np.maximum(0, bins_el) * max(1, n_az)) + else: + bins = bins_az + margin = float(self.cfg.ray_max_behind_m) + keep_n = int(self.cfg.ray_keep_n) + n_bins = int(np.max(bins)) + 1 if len(bins) > 0 else 0 + if n_bins <= 0: + return pts + + if keep_n <= 1: + # Fast vectorized mode: nearest hit per bin + margin. + min_r = np.full((n_bins,), np.inf, dtype=np.float32) + np.minimum.at(min_r, bins, r.astype(np.float32, copy=False)) + keep = r <= (min_r[bins] + margin) + else: + # Fallback for multi-return mode (rare; higher CPU). + order = np.lexsort((r, bins)) + bins_s = bins[order] + r_s = r[order] + keep_sorted = np.zeros((len(order),), dtype=bool) + i = 0 + n = int(len(order)) + while i < n: + j = i + 1 + b = int(bins_s[i]) + while j < n and int(bins_s[j]) == b: + j += 1 + + rr = r_s[i:j] + if len(rr) <= keep_n: + keep_sorted[i:j] = True + else: + base = float(rr[min(len(rr) - 1, keep_n - 1)]) + cutoff = base + margin + local = rr <= cutoff + local[:keep_n] = True + keep_sorted[i:j] = local + i = j + keep = np.zeros((len(pts),), dtype=bool) + keep[order] = keep_sorted + + out = pts[keep] + # Safety fallback: if filter is too aggressive, keep original frame. + if len(out) < max(40, int(0.15 * len(pts))): + return pts + return out + + def _exclude_body_box(self, points: np.ndarray) -> np.ndarray: + """Remove points inside the robot body bounding box (sensor frame). + Prevents G1 arm/torso self-returns from polluting the map. + """ + inside = ( + (points[:, 0] >= self.cfg.body_x_min_m) & (points[:, 0] <= self.cfg.body_x_max_m) & + (points[:, 1] >= self.cfg.body_y_min_m) & (points[:, 1] <= self.cfg.body_y_max_m) & + (points[:, 2] >= self.cfg.body_z_min_m) & (points[:, 2] <= self.cfg.body_z_max_m) + ) + return points[~inside] + + def apply_sensor(self, points_sensor: np.ndarray) -> np.ndarray: + pts = self._finite(points_sensor) + if not self.cfg.enabled or len(pts) == 0: + return pts + + r2 = np.einsum("ij,ij->i", pts, pts) + min_r2 = float(self.cfg.near_min_range_m) ** 2 + pts = pts[r2 >= min_r2] + if len(pts) == 0: + return pts + + if self.cfg.body_exclusion_enabled: + pts = self._exclude_body_box(pts) + if len(pts) == 0: + return pts + + pts = self._ray_consistency_filter(pts) + if len(pts) == 0: + return pts + + if self.cfg.outlier_filter_enabled: + pts = self._remove_sparse_voxels(pts) + return pts + + def apply_world(self, points_world: np.ndarray) -> np.ndarray: + pts = self._finite(points_world) + if not self.cfg.enabled or len(pts) == 0: + return pts + if self.cfg.world_z_clip_enabled: + zmin = float(self.cfg.world_z_min_m) + zmax = float(self.cfg.world_z_max_m) + if zmax > zmin: + pts = pts[(pts[:, 2] >= zmin) & (pts[:, 2] <= zmax)] + return pts diff --git a/Lidar/.bak-before-prod-sync/SLAM_GUI.py b/Lidar/.bak-before-prod-sync/SLAM_GUI.py new file mode 100644 index 0000000..516f01f --- /dev/null +++ b/Lidar/.bak-before-prod-sync/SLAM_GUI.py @@ -0,0 +1,2427 @@ +# SLAM_GUI.py +from __future__ import annotations + +import json +import os +import sys +import signal +import time +from pathlib import Path + +import numpy as np + +from PyQt6.QtWidgets import ( + QApplication, QMainWindow, QVBoxLayout, QHBoxLayout, + QLabel, QLineEdit, QPushButton, QFileDialog, QMessageBox, + QFrame, QSplitter, QCheckBox, QGraphicsDropShadowEffect, QScrollArea +) +from PyQt6.QtCore import Qt, QTimer, QThread, pyqtSignal + +import pyqtgraph.opengl as gl + +from SLAM_engine import SlamEngineClient, load_slam_config + + +def apply_card_shadow(widget: QFrame): + shadow = QGraphicsDropShadowEffect(widget) + shadow.setBlurRadius(22) + shadow.setOffset(0, 6) + shadow.setColor(Qt.GlobalColor.black) + widget.setGraphicsEffect(shadow) + + +def pill_button(bg: str, fg: str = "white") -> str: + return f""" + QPushButton {{ + background-color: {bg}; + color: {fg}; + font-weight: 800; + border: 1px solid rgba(255,255,255,0.08); + border-radius: 10px; + padding: 10px 12px; + }} + QPushButton:hover {{ border: 1px solid rgba(255,255,255,0.18); }} + QPushButton:disabled {{ + background-color: rgba(255,255,255,0.08); + color: rgba(255,255,255,0.35); + border: 1px solid rgba(255,255,255,0.05); + }} + """ + + +def card_style() -> str: + return """ + QFrame#Card { + background-color: rgba(255,255,255,0.04); + border: 1px solid rgba(255,255,255,0.06); + border-radius: 14px; + } + QLabel#CardTitle { color: rgba(255,255,255,0.75); font-weight: 800; } + QLineEdit { + background-color: rgba(0,0,0,0.30); + border: 1px solid rgba(255,255,255,0.10); + border-radius: 10px; + padding: 10px 10px; + color: white; + font-weight: 600; + } + QLineEdit:disabled { + color: rgba(255,255,255,0.40); + background-color: rgba(255,255,255,0.05); + border: 1px solid rgba(255,255,255,0.05); + } + QCheckBox { color: white; font-weight: 700; spacing: 10px; } + QCheckBox:disabled { color: rgba(255,255,255,0.40); } + """ + + +class SLAMGLViewWidget(gl.GLViewWidget): + mapClicked = pyqtSignal(float, float, float) + mapPickDrag = pyqtSignal(float, float, float, bool) + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + self.pick_mode = False + self.pick_plane_z = 0.0 + self._pick_dragging = False + self.pick_points = None + self.pick_screen_max_px = 140.0 + + @staticmethod + def _qmat_to_np_candidates(m) -> list[np.ndarray]: + try: + data = np.array(m.copyDataTo(), dtype=np.float64) + if data.size != 16: + return [np.eye(4, dtype=np.float64)] + mats = [ + data.reshape((4, 4), order="F"), + data.reshape((4, 4), order="C"), + ] + out: list[np.ndarray] = [] + for mm in mats: + if np.isfinite(mm).all(): + out.append(np.asarray(mm, dtype=np.float64)) + return out if out else [np.eye(4, dtype=np.float64)] + except Exception: + return [np.eye(4, dtype=np.float64)] + + def _screen_to_world_on_plane(self, sx: float, sy: float, plane_z: float = 0.0): + w = max(2, int(self.width())) + h = max(2, int(self.height())) + x_ndc = (2.0 * float(sx) / float(w)) - 1.0 + y_ndc = 1.0 - (2.0 * float(sy) / float(h)) + + try: + cam = self.cameraPosition() + ctr = self.opts["center"] + cam_p = np.asarray([float(cam.x()), float(cam.y()), float(cam.z())], dtype=np.float64) + ctr_p = np.asarray([float(ctr.x()), float(ctr.y()), float(ctr.z())], dtype=np.float64) + fwd = ctr_p - cam_p + nf = float(np.linalg.norm(fwd)) + if nf < 1e-9: + raise ValueError("degenerate camera forward") + fwd = fwd / nf + up_world = np.asarray([0.0, 0.0, 1.0], dtype=np.float64) + right = np.cross(fwd, up_world) + nr = float(np.linalg.norm(right)) + if nr < 1e-6: + up_world = np.asarray([0.0, 1.0, 0.0], dtype=np.float64) + right = np.cross(fwd, up_world) + nr = float(np.linalg.norm(right)) + if nr < 1e-9: + raise ValueError("degenerate camera right") + right = right / nr + up = np.cross(right, fwd) + nu = float(np.linalg.norm(up)) + if nu < 1e-9: + raise ValueError("degenerate camera up") + up = up / nu + fov_rad = float(np.deg2rad(float(self.opts.get("fov", 60.0)))) + sx_scale = float(np.tan(0.5 * fov_rad)) + sy_scale = sx_scale * (float(h) / float(w)) + ray = fwd + (x_ndc * sx_scale * right) + (y_ndc * sy_scale * up) + nray = float(np.linalg.norm(ray)) + if nray < 1e-9: + raise ValueError("degenerate pick ray") + ray = ray / nray + if abs(float(ray[2])) < 1e-9: + return None + t = (float(plane_z) - float(cam_p[2])) / float(ray[2]) + if t < 0.0: + return None + pt = cam_p + (t * ray) + if np.isfinite(pt).all(): + return np.asarray(pt, dtype=np.float64) + except Exception: + pass + + # Fallback: matrix unproject solver + viewport = self.getViewport() + region = viewport + proj_cands = self._qmat_to_np_candidates(self.projectionMatrix(region, viewport)) + view_cands = self._qmat_to_np_candidates(self.viewMatrix()) + near = np.array([x_ndc, y_ndc, -1.0, 1.0], dtype=np.float64) + far = np.array([x_ndc, y_ndc, 1.0, 1.0], dtype=np.float64) + best_pt = None + best_err = 1e18 + for proj in proj_cands: + for view in view_cands: + for m in (proj @ view, view @ proj): + try: + inv = np.linalg.inv(m) + except Exception: + continue + p0 = inv @ near + p1 = inv @ far + if abs(float(p0[3])) < 1e-9 or abs(float(p1[3])) < 1e-9: + continue + p0 = p0[:3] / p0[3] + p1 = p1[:3] / p1[3] + ray = p1 - p0 + if abs(float(ray[2])) < 1e-9: + continue + t = (float(plane_z) - float(p0[2])) / float(ray[2]) + if t < 0.0: + continue + pt = p0 + (t * ray) + if not np.isfinite(pt).all(): + continue + clip = m @ np.array([float(pt[0]), float(pt[1]), float(pt[2]), 1.0], dtype=np.float64) + if abs(float(clip[3])) < 1e-9: + continue + ndc = clip[:3] / clip[3] + sx2 = ((float(ndc[0]) + 1.0) * 0.5) * float(w) + sy2 = ((1.0 - float(ndc[1])) * 0.5) * float(h) + err = (sx2 - float(sx)) ** 2 + (sy2 - float(sy)) ** 2 + if err < best_err: + best_err = float(err) + best_pt = np.asarray(pt, dtype=np.float64) + return best_pt + + def _screen_pick_from_points(self, sx: float, sy: float): + pts = self.pick_points + if pts is None: + return None + arr = np.asarray(pts, dtype=np.float64) + if arr.ndim != 2 or arr.shape[1] != 3 or len(arr) == 0: + return None + w = max(2, int(self.width())) + h = max(2, int(self.height())) + try: + cam = self.cameraPosition() + ctr = self.opts["center"] + cam_p = np.asarray([float(cam.x()), float(cam.y()), float(cam.z())], dtype=np.float64) + ctr_p = np.asarray([float(ctr.x()), float(ctr.y()), float(ctr.z())], dtype=np.float64) + fwd = ctr_p - cam_p + nf = float(np.linalg.norm(fwd)) + if nf < 1e-9: + return None + fwd = fwd / nf + up_world = np.asarray([0.0, 0.0, 1.0], dtype=np.float64) + right = np.cross(fwd, up_world) + nr = float(np.linalg.norm(right)) + if nr < 1e-6: + up_world = np.asarray([0.0, 1.0, 0.0], dtype=np.float64) + right = np.cross(fwd, up_world) + nr = float(np.linalg.norm(right)) + if nr < 1e-9: + return None + right = right / nr + up = np.cross(right, fwd) + nu = float(np.linalg.norm(up)) + if nu < 1e-9: + return None + up = up / nu + fov_rad = float(np.deg2rad(float(self.opts.get("fov", 60.0)))) + sx_scale = float(np.tan(0.5 * fov_rad)) + sy_scale = sx_scale * (float(h) / float(w)) + rel = arr - cam_p.reshape((1, 3)) + zc = rel @ fwd + keep = zc > 1e-6 + if not np.any(keep): + return None + rel = rel[keep] + zc = zc[keep] + pts_k = arr[keep] + xc = rel @ right + yc = rel @ up + x_ndc = xc / (zc * sx_scale) + y_ndc = yc / (zc * sy_scale) + sxv = ((x_ndc + 1.0) * 0.5) * float(w) + syv = ((1.0 - y_ndc) * 0.5) * float(h) + d2 = (sxv - float(sx)) ** 2 + (syv - float(sy)) ** 2 + idx = int(np.argmin(d2)) + if float(d2[idx]) > float(self.pick_screen_max_px) * float(self.pick_screen_max_px): + return None + p = pts_k[idx] + if np.isfinite(p).all(): + return p.astype(np.float64) + return None + except Exception: + return None + + def mousePressEvent(self, ev): + lpos = ev.position() if hasattr(ev, "position") else ev.localPos() + self.mousePos = lpos + if self.pick_mode and ev.button() == Qt.MouseButton.LeftButton: + pt = self._screen_pick_from_points(float(lpos.x()), float(lpos.y())) + if pt is None: + pt = self._screen_to_world_on_plane(float(lpos.x()), float(lpos.y()), float(self.pick_plane_z)) + if pt is not None: + self._pick_dragging = False + self.mapPickDrag.emit(float(pt[0]), float(pt[1]), float(pt[2]), True) + self.mapClicked.emit(float(pt[0]), float(pt[1]), float(pt[2])) + ev.accept() + return + super().mousePressEvent(ev) + + def mouseMoveEvent(self, ev): + lpos = ev.position() if hasattr(ev, "position") else ev.localPos() + if not hasattr(self, "mousePos"): + self.mousePos = lpos + diff = lpos - self.mousePos + self.mousePos = lpos + + buttons = ev.buttons() + mods = ev.modifiers() + + if self.pick_mode and self._pick_dragging and (buttons & Qt.MouseButton.LeftButton): + pt = self._screen_to_world_on_plane(float(lpos.x()), float(lpos.y()), float(self.pick_plane_z)) + if pt is not None: + self.mapPickDrag.emit(float(pt[0]), float(pt[1]), float(pt[2]), False) + ev.accept() + return + + # Keep default left-drag behavior. + if buttons & Qt.MouseButton.LeftButton: + if mods & Qt.KeyboardModifier.ControlModifier: + self.pan(diff.x(), diff.y(), 0, relative="view") + else: + self.orbit(-diff.x(), diff.y()) + return + + # Add right-drag panning so touchpads/mice without middle-click can move map. + if buttons & Qt.MouseButton.RightButton: + if mods & Qt.KeyboardModifier.ControlModifier: + self.pan(diff.x(), 0, diff.y(), relative="view-upright") + else: + self.pan(diff.x(), diff.y(), 0, relative="view-upright") + return + + # Keep default middle-drag panning behavior. + if buttons & Qt.MouseButton.MiddleButton: + if mods & Qt.KeyboardModifier.ControlModifier: + self.pan(diff.x(), 0, diff.y(), relative="view-upright") + else: + self.pan(diff.x(), diff.y(), 0, relative="view-upright") + + def mouseReleaseEvent(self, ev): + lpos = ev.position() if hasattr(ev, "position") else ev.localPos() + if self.pick_mode and ev.button() == Qt.MouseButton.LeftButton and self._pick_dragging: + self._pick_dragging = False + pt = self._screen_to_world_on_plane(float(lpos.x()), float(lpos.y()), float(self.pick_plane_z)) + if pt is not None: + self.mapPickDrag.emit(float(pt[0]), float(pt[1]), float(pt[2]), True) + self.mapClicked.emit(float(pt[0]), float(pt[1]), float(pt[2])) + ev.accept() + return + super().mouseReleaseEvent(ev) + + +class RefLoaderThread(QThread): + loaded = pyqtSignal(object, object, str) # pts, colors, filename + failed = pyqtSignal(str) + + def __init__(self, filename: str, display_voxel: float, color_mode: str = "GRAY"): + super().__init__() + self.filename = filename + self.display_voxel = float(display_voxel) + self.color_mode = str(color_mode).upper().strip() + + @staticmethod + def _height_colors_fast(pts: np.ndarray, alpha: float = 0.40) -> np.ndarray: + if pts is None or len(pts) == 0: + return np.zeros((0, 4), dtype=np.float32) + z = pts[:, 2] + zmin = float(np.min(z)) + zmax = float(np.max(z)) + span = max(1e-6, zmax - zmin) + norm = np.clip((z - zmin) / span, 0.0, 1.0).astype(np.float32) + colors = np.zeros((len(pts), 4), dtype=np.float32) + colors[:, 0] = norm + colors[:, 1] = 1.0 - np.abs(norm - 0.5) * 2.0 + colors[:, 2] = 1.0 - norm + colors[:, 3] = alpha + return colors + + def run(self): + try: + import open3d as o3d + pcd = o3d.io.read_point_cloud(self.filename) + if self.display_voxel > 0: + pcd = pcd.voxel_down_sample(self.display_voxel) + pts = np.asarray(pcd.points).astype(np.float32) + if len(pts) < 2: + raise RuntimeError("Ref map is empty.") + + mode = self.color_mode if self.color_mode in ("GRAY", "HEIGHT", "ORIGINAL") else "GRAY" + colors = np.zeros((len(pts), 4), dtype=np.float32) + colors[:, 3] = 0.40 + if mode == "HEIGHT": + colors = self._height_colors_fast(pts, alpha=0.40) + elif mode == "ORIGINAL": + src = np.asarray(pcd.colors) + if src is not None and len(src) == len(pts) and len(src) > 0: + src_rgb = np.asarray(src, dtype=np.float32) + colors[:, :3] = np.clip(src_rgb[:, :3], 0.0, 1.0) + else: + colors[:, :3] = 0.7 + else: + colors[:, :3] = 0.7 + self.loaded.emit(pts, colors, self.filename) + except Exception as e: + self.failed.emit(str(e)) + + +class UltimateDashboard(QMainWindow): + def __init__(self): + super().__init__() + + self.cfg = load_slam_config() + title = self.cfg["app"]["title"] + accent = self.cfg["gui"]["colors"]["accent"] + maps_dir_cfg = str(self.cfg["app"]["maps_dir"]) + maps_dir_path = Path(maps_dir_cfg).expanduser() + if not maps_dir_path.is_absolute(): + cfg_path = os.environ.get("SLAM_CONFIG", "").strip() + base_dir = Path(cfg_path).expanduser().resolve().parent if cfg_path else Path(__file__).resolve().parent + maps_dir_path = (base_dir / maps_dir_path).resolve() + maps_dir = str(maps_dir_path) + + self.setWindowTitle(title) + self.resize(1600, 900) + + Path(maps_dir).mkdir(parents=True, exist_ok=True) + + self._self_check_popup_shown = False + self.client = SlamEngineClient() + self.client.start_process() + self.show_self_check_popup(self.client.get_self_check(), source="engine") + + self.save_armed = False + self.ref_map_path = None + self._ref_thread = None + self.ref_color_mode = "GRAY" + self.density_mode = "MEDIUM" + self.min_stable_points = int(self.cfg["map"]["min_points_to_save"]) + self.loop_closure_enabled = bool(self.cfg.get("loop_closure", {}).get("enabled", False)) + self.loc_machine_enabled = bool(self.cfg.get("state_machine", {}).get("enabled", True)) + self.submap_mode_enabled = bool(self.cfg.get("submap_mapping", {}).get("enabled", True)) + self.autosave_enabled = bool(self.cfg.get("autosave", {}).get("enabled", False)) + self.autosave_interval_sec = float(self.cfg.get("autosave", {}).get("interval_sec", 90.0)) + self.nav_cfg = dict(self.cfg.get("navigation_export", {})) + self.map_quality_cfg = dict(self.cfg.get("map_quality", {})) + self._last_error_popup_text = "" + self._last_error_popup_t = 0.0 + self._error_popup_cooldown_sec = 2.0 + self._worker_dead_notified = False + self._last_saved_popup_text = "" + self._last_saved_popup_t = 0.0 + self._saved_popup_cooldown_sec = 1.0 + self.current_stable_points = 0 + self.worker_mode = "IDLE" + self.is_connected = False + self.recording_enabled = False + self.recording_frames = 0 + self.recording_dropped = 0 + self.workflow_profile = "BALANCED" + self.workflow_selected = False + self.last_replay_report = None + self.replay_baseline_path = str(Path(maps_dir) / "SLAM_replay_baseline.json") + self.approx_pick_armed = False + self.approx_guess_z = float(self.cfg.get("localization", {}).get("approx_guess_default_z_m", 0.0)) + self.last_loc_confidence = 0.0 + self.last_loc_match_ratio = 0.0 + self.require_start_pick = True + self.start_pick_ready = False + self.start_pick_xyz = None + self._pick_help_shown_for_ref = None + self.ref_pick_points = None + self.ref_pick_snap_radius_m = float( + self.cfg.get("localization", {}).get("pick_snap_radius_m", 1.2) + ) + self.ref_pick_max_points = int( + self.cfg.get("localization", {}).get("pick_snap_max_points", 60000) + ) + + root = QSplitter(Qt.Orientation.Horizontal) + self.setCentralWidget(root) + + # Sidebar + sidebar = QFrame() + sidebar.setMinimumWidth(320) + sidebar.setMaximumWidth(760) + sidebar.setStyleSheet("background-color: rgba(0,0,0,0.35);") + side_layout = QVBoxLayout(sidebar) + side_layout.setContentsMargins(18, 18, 18, 18) + side_layout.setSpacing(14) + + side_scroll = QScrollArea() + side_scroll.setWidgetResizable(True) + side_scroll.setFrameShape(QFrame.Shape.NoFrame) + side_scroll.setHorizontalScrollBarPolicy(Qt.ScrollBarPolicy.ScrollBarAlwaysOff) + side_scroll.setWidget(sidebar) + side_scroll.setMinimumWidth(330) + side_scroll.setMaximumWidth(780) + + lbl = QLabel("SLAM COMMANDER") + lbl.setStyleSheet(f"color:{accent}; font-size:20px; font-weight:900;") + side_layout.addWidget(lbl) + + # Network card + net_card = QFrame(); net_card.setObjectName("Card"); net_card.setStyleSheet(card_style()); apply_card_shadow(net_card) + net_layout = QVBoxLayout(net_card); net_layout.setContentsMargins(14,14,14,14); net_layout.setSpacing(10) + net_title = QLabel("NETWORK SETTINGS"); net_title.setObjectName("CardTitle"); net_layout.addWidget(net_title) + + self.txt_iface = QLineEdit(self.cfg["network"]["default_interface"]) + self.txt_ip = QLineEdit(self.cfg["network"]["default_host_ip"]) + net_layout.addWidget(self.txt_iface); net_layout.addWidget(self.txt_ip) + + row1 = QHBoxLayout() + self.btn_connect = QPushButton("🔌 CONNECT"); self.btn_connect.setStyleSheet(pill_button("#1677ff")); self.btn_connect.clicked.connect(self.on_connect) + self.btn_connect.setEnabled(False) + self.btn_connect.setToolTip("Choose a workflow first.") + self.btn_start = QPushButton("▶ START"); self.btn_start.setStyleSheet(pill_button("#21a453")); self.btn_start.clicked.connect(self.on_start) + self.btn_localize_only = QPushButton("🎯 LOCALIZE-ONLY") + self.btn_localize_only.setStyleSheet(pill_button("#7a4cff")) + self.btn_localize_only.clicked.connect(self.on_start_localize_only) + row1.addWidget(self.btn_connect); row1.addWidget(self.btn_start); row1.addWidget(self.btn_localize_only); net_layout.addLayout(row1) + + row2 = QHBoxLayout() + self.btn_pause = QPushButton("⏸ PAUSE"); self.btn_pause.setStyleSheet(pill_button("#c78a12", fg="black")); self.btn_pause.clicked.connect(self.on_pause) + self.btn_stop = QPushButton("⛔ STOP"); self.btn_stop.setStyleSheet(pill_button("#d0302f")); self.btn_stop.clicked.connect(self.on_stop) + row2.addWidget(self.btn_pause); row2.addWidget(self.btn_stop); net_layout.addLayout(row2) + + self.btn_reset = QPushButton("🧹 RESET (NO SAVE)"); self.btn_reset.setStyleSheet(pill_button("#3a3a3a")); self.btn_reset.clicked.connect(self.on_reset) + net_layout.addWidget(self.btn_reset) + + side_layout.addWidget(net_card) + + # Workflow card + wf_card = QFrame(); wf_card.setObjectName("Card"); wf_card.setStyleSheet(card_style()); apply_card_shadow(wf_card) + wf_layout = QVBoxLayout(wf_card); wf_layout.setContentsMargins(14,14,14,14); wf_layout.setSpacing(10) + wf_title = QLabel("WORKFLOW (BEFORE RUN)"); wf_title.setObjectName("CardTitle"); wf_layout.addWidget(wf_title) + + self.btn_wf_map_new = QPushButton("🧭 MAP NEW PLACE") + self.btn_wf_map_new.setStyleSheet(pill_button("#2b2b2b")) + self.btn_wf_map_new.clicked.connect(self.on_workflow_map_new) + wf_layout.addWidget(self.btn_wf_map_new) + + self.btn_wf_extend = QPushButton("📌 EXTEND SAVED MAP") + self.btn_wf_extend.setStyleSheet(pill_button("#2b2b2b")) + self.btn_wf_extend.clicked.connect(self.on_workflow_extend_map) + wf_layout.addWidget(self.btn_wf_extend) + + self.btn_wf_localize = QPushButton("📍 NAVIGATE IN MAPPED PLACE") + self.btn_wf_localize.setStyleSheet(pill_button("#2b2b2b")) + self.btn_wf_localize.clicked.connect(self.on_workflow_localize_existing) + wf_layout.addWidget(self.btn_wf_localize) + + self.btn_wf_live_nav = QPushButton("🤖 LIVE NAV WITH MAP") + self.btn_wf_live_nav.setStyleSheet(pill_button("#2b2b2b")) + self.btn_wf_live_nav.clicked.connect(self.on_workflow_live_nav) + wf_layout.addWidget(self.btn_wf_live_nav) + + self.btn_wf_live_nav_nomap = QPushButton("🛰 LIVE NAV (NO MAP)") + self.btn_wf_live_nav_nomap.setStyleSheet(pill_button("#2b2b2b")) + self.btn_wf_live_nav_nomap.clicked.connect(self.on_workflow_live_nav_nomap) + wf_layout.addWidget(self.btn_wf_live_nav_nomap) + + self.btn_wf_quick = QPushButton("🧪 QUICK DEMO") + self.btn_wf_quick.setStyleSheet(pill_button("#2b2b2b")) + self.btn_wf_quick.clicked.connect(self.on_workflow_quick_demo) + wf_layout.addWidget(self.btn_wf_quick) + + self.lbl_workflow = QLabel("Workflow: NOT_SELECTED") + self.lbl_workflow.setStyleSheet("color:white; font-family:monospace; font-weight:800;") + wf_layout.addWidget(self.lbl_workflow) + + side_layout.addWidget(wf_card) + + # Map card + map_card = QFrame(); map_card.setObjectName("Card"); map_card.setStyleSheet(card_style()); apply_card_shadow(map_card) + map_layout = QVBoxLayout(map_card); map_layout.setContentsMargins(14,14,14,14); map_layout.setSpacing(10) + map_title = QLabel("MAP CONTROLS"); map_title.setObjectName("CardTitle"); map_layout.addWidget(map_title) + + self.txt_name = QLineEdit("Work") + map_layout.addWidget(self.txt_name) + + self.chk_save = QCheckBox("✅ SAVE ARMED (WILL SAVE ON STOP)") + self.chk_save.stateChanged.connect(self.on_toggle_save) + map_layout.addWidget(self.chk_save) + + self.btn_save_now = QPushButton("💾 SAVE NOW") + self.btn_save_now.setStyleSheet(pill_button("#2b2b2b")) + self.btn_save_now.clicked.connect(self.on_save_now) + map_layout.addWidget(self.btn_save_now) + + auto_title = QLabel("AUTOSAVE") + auto_title.setObjectName("CardTitle") + map_layout.addWidget(auto_title) + + auto_row = QHBoxLayout() + self.chk_autosave = QCheckBox("ON") + self.chk_autosave.setChecked(self.autosave_enabled) + self.txt_autosave_sec = QLineEdit(str(int(self.autosave_interval_sec))) + self.txt_autosave_sec.setMaximumWidth(90) + self.btn_apply_autosave = QPushButton("APPLY") + self.btn_apply_autosave.setStyleSheet(pill_button("#2b2b2b")) + self.btn_apply_autosave.clicked.connect(self.on_apply_autosave) + auto_row.addWidget(self.chk_autosave) + auto_row.addWidget(self.txt_autosave_sec) + auto_row.addWidget(self.btn_apply_autosave) + map_layout.addLayout(auto_row) + + rec_title = QLabel("RECORD / REPLAY") + rec_title.setObjectName("CardTitle") + map_layout.addWidget(rec_title) + + rec_row1 = QHBoxLayout() + self.btn_record_start = QPushButton("⏺ START REC") + self.btn_record_start.setStyleSheet(pill_button("#2b2b2b")) + self.btn_record_start.clicked.connect(self.on_record_start) + self.btn_record_stop = QPushButton("⏹ STOP REC") + self.btn_record_stop.setStyleSheet(pill_button("#2b2b2b")) + self.btn_record_stop.clicked.connect(self.on_record_stop) + rec_row1.addWidget(self.btn_record_start) + rec_row1.addWidget(self.btn_record_stop) + map_layout.addLayout(rec_row1) + + rec_row2 = QHBoxLayout() + self.btn_replay_run = QPushButton("▶ RUN REPLAY") + self.btn_replay_run.setStyleSheet(pill_button("#2b2b2b")) + self.btn_replay_run.clicked.connect(self.on_replay_run) + self.btn_replay_set_base = QPushButton("📌 SET BASELINE") + self.btn_replay_set_base.setStyleSheet(pill_button("#2b2b2b")) + self.btn_replay_set_base.clicked.connect(self.on_replay_set_baseline) + rec_row2.addWidget(self.btn_replay_run) + rec_row2.addWidget(self.btn_replay_set_base) + map_layout.addLayout(rec_row2) + + min_pts_title = QLabel("MIN STABLE POINTS") + min_pts_title.setObjectName("CardTitle") + map_layout.addWidget(min_pts_title) + + min_pts_row = QHBoxLayout() + self.txt_min_stable = QLineEdit(str(self.min_stable_points)) + self.txt_min_stable.returnPressed.connect(self.on_apply_min_stable_points) + self.btn_apply_min_stable = QPushButton("APPLY") + self.btn_apply_min_stable.setStyleSheet(pill_button("#2b2b2b")) + self.btn_apply_min_stable.clicked.connect(self.on_apply_min_stable_points) + min_pts_row.addWidget(self.txt_min_stable) + min_pts_row.addWidget(self.btn_apply_min_stable) + map_layout.addLayout(min_pts_row) + + self.btn_export_nav = QPushButton("🧭 EXPORT NAV") + self.btn_export_nav.setStyleSheet(pill_button("#2b2b2b")) + self.btn_export_nav.clicked.connect(self.on_export_nav) + map_layout.addWidget(self.btn_export_nav) + + nav_title = QLabel("NAV TUNING") + nav_title.setObjectName("CardTitle") + map_layout.addWidget(nav_title) + + nav_row1 = QHBoxLayout() + self.txt_nav_zmin = QLineEdit(str(self.nav_cfg.get("z_min_m", -0.4))) + self.txt_nav_zmax = QLineEdit(str(self.nav_cfg.get("z_max_m", 1.2))) + self.txt_nav_zmin.setPlaceholderText("z min") + self.txt_nav_zmax.setPlaceholderText("z max") + nav_row1.addWidget(self.txt_nav_zmin) + nav_row1.addWidget(self.txt_nav_zmax) + map_layout.addLayout(nav_row1) + + nav_row2 = QHBoxLayout() + self.txt_nav_res = QLineEdit(str(self.nav_cfg.get("resolution_m", 0.05))) + self.txt_nav_inf = QLineEdit(str(self.nav_cfg.get("inflation_radius_m", 0.2))) + self.txt_nav_res.setPlaceholderText("res") + self.txt_nav_inf.setPlaceholderText("inflate") + self.btn_apply_nav = QPushButton("APPLY NAV") + self.btn_apply_nav.setStyleSheet(pill_button("#2b2b2b")) + self.btn_apply_nav.clicked.connect(self.on_apply_nav_config) + nav_row2.addWidget(self.txt_nav_res) + nav_row2.addWidget(self.txt_nav_inf) + nav_row2.addWidget(self.btn_apply_nav) + map_layout.addLayout(nav_row2) + + goal_row = QHBoxLayout() + self.txt_goal_x = QLineEdit("0.0") + self.txt_goal_y = QLineEdit("0.0") + self.txt_goal_x.setPlaceholderText("goal x") + self.txt_goal_y.setPlaceholderText("goal y") + self.btn_goal_apply = QPushButton("SET GOAL") + self.btn_goal_apply.setStyleSheet(pill_button("#2b2b2b")) + self.btn_goal_apply.clicked.connect(self.on_set_nav_goal) + self.btn_goal_clear = QPushButton("CLEAR") + self.btn_goal_clear.setStyleSheet(pill_button("#2b2b2b")) + self.btn_goal_clear.clicked.connect(self.on_clear_nav_goal) + goal_row.addWidget(self.txt_goal_x) + goal_row.addWidget(self.txt_goal_y) + goal_row.addWidget(self.btn_goal_apply) + goal_row.addWidget(self.btn_goal_clear) + map_layout.addLayout(goal_row) + + mission_row1 = QHBoxLayout() + self.txt_mission = QLineEdit("1.0,0.0; 2.0,0.0") + self.txt_mission.setPlaceholderText("x,y; x,y; ...") + self.btn_mission_start = QPushButton("MISSION START") + self.btn_mission_start.setStyleSheet(pill_button("#2b2b2b")) + self.btn_mission_start.clicked.connect(self.on_mission_start) + mission_row1.addWidget(self.txt_mission) + mission_row1.addWidget(self.btn_mission_start) + map_layout.addLayout(mission_row1) + + mission_row2 = QHBoxLayout() + self.btn_mission_pause = QPushButton("PAUSE M") + self.btn_mission_pause.setStyleSheet(pill_button("#2b2b2b")) + self.btn_mission_pause.clicked.connect(lambda: self._send_mission_cmd("pause")) + self.btn_mission_resume = QPushButton("RESUME M") + self.btn_mission_resume.setStyleSheet(pill_button("#2b2b2b")) + self.btn_mission_resume.clicked.connect(lambda: self._send_mission_cmd("resume")) + self.btn_mission_stop = QPushButton("STOP M") + self.btn_mission_stop.setStyleSheet(pill_button("#2b2b2b")) + self.btn_mission_stop.clicked.connect(lambda: self._send_mission_cmd("stop")) + mission_row2.addWidget(self.btn_mission_pause) + mission_row2.addWidget(self.btn_mission_resume) + mission_row2.addWidget(self.btn_mission_stop) + map_layout.addLayout(mission_row2) + + den_title = QLabel("POINT DENSITY") + den_title.setObjectName("CardTitle") + map_layout.addWidget(den_title) + + den_row = QHBoxLayout() + self.btn_den_low = QPushButton("LOW") + self.btn_den_med = QPushButton("MEDIUM") + self.btn_den_high = QPushButton("HIGH") + self.btn_den_low.clicked.connect(lambda: self.set_density_mode("LOW")) + self.btn_den_med.clicked.connect(lambda: self.set_density_mode("MEDIUM")) + self.btn_den_high.clicked.connect(lambda: self.set_density_mode("HIGH")) + den_row.addWidget(self.btn_den_low) + den_row.addWidget(self.btn_den_med) + den_row.addWidget(self.btn_den_high) + map_layout.addLayout(den_row) + self.refresh_density_buttons() + + self.chk_loop_closure = QCheckBox("🔁 LOOP CLOSURE SAFE") + self.chk_loop_closure.setChecked(self.loop_closure_enabled) + self.chk_loop_closure.stateChanged.connect(self.on_toggle_loop_closure) + map_layout.addWidget(self.chk_loop_closure) + + self.chk_loc_machine = QCheckBox("🧠 LOC STATE MACHINE") + self.chk_loc_machine.setChecked(self.loc_machine_enabled) + self.chk_loc_machine.stateChanged.connect(self.on_toggle_loc_machine) + map_layout.addWidget(self.chk_loc_machine) + + self.chk_submap_mode = QCheckBox("🗺️ SUBMAP (LOCAL+GLOBAL)") + self.chk_submap_mode.setChecked(self.submap_mode_enabled) + self.chk_submap_mode.stateChanged.connect(self.on_toggle_submap_mode) + map_layout.addWidget(self.chk_submap_mode) + + quality_title = QLabel("MAP QUALITY") + quality_title.setObjectName("CardTitle") + map_layout.addWidget(quality_title) + + q_row1 = QHBoxLayout() + self.txt_near_range = QLineEdit(str(self.map_quality_cfg.get("near_min_range_m", 0.15))) + self.chk_outlier = QCheckBox("Outlier") + self.chk_outlier.setChecked(bool(self.map_quality_cfg.get("outlier_filter_enabled", False))) + q_row1.addWidget(self.txt_near_range) + q_row1.addWidget(self.chk_outlier) + map_layout.addLayout(q_row1) + + q_row2 = QHBoxLayout() + self.chk_clip_z = QCheckBox("Clip Z") + self.chk_clip_z.setChecked(bool(self.map_quality_cfg.get("world_z_clip_enabled", False))) + self.txt_world_zmin = QLineEdit(str(self.map_quality_cfg.get("world_z_min_m", -2.0))) + self.txt_world_zmax = QLineEdit(str(self.map_quality_cfg.get("world_z_max_m", 3.0))) + q_row2.addWidget(self.chk_clip_z) + q_row2.addWidget(self.txt_world_zmin) + q_row2.addWidget(self.txt_world_zmax) + map_layout.addLayout(q_row2) + + q_row3 = QHBoxLayout() + self.txt_outlier_voxel = QLineEdit(str(self.map_quality_cfg.get("outlier_voxel_m", 0.12))) + self.txt_outlier_min = QLineEdit(str(self.map_quality_cfg.get("outlier_min_points", 2))) + self.btn_apply_quality = QPushButton("APPLY Q") + self.btn_apply_quality.setStyleSheet(pill_button("#2b2b2b")) + self.btn_apply_quality.clicked.connect(self.on_apply_map_quality) + q_row3.addWidget(self.txt_outlier_voxel) + q_row3.addWidget(self.txt_outlier_min) + q_row3.addWidget(self.btn_apply_quality) + map_layout.addLayout(q_row3) + + side_layout.addWidget(map_card) + + # Localization card + loc_card = QFrame(); loc_card.setObjectName("Card"); loc_card.setStyleSheet(card_style()); apply_card_shadow(loc_card) + loc_layout = QVBoxLayout(loc_card); loc_layout.setContentsMargins(14,14,14,14); loc_layout.setSpacing(10) + loc_title = QLabel("LOCALIZATION"); loc_title.setObjectName("CardTitle"); loc_layout.addWidget(loc_title) + + rowl = QHBoxLayout() + self.btn_load_ref = QPushButton("🗺️ LOAD REF MAP"); self.btn_load_ref.setStyleSheet(pill_button("#2b2b2b")); self.btn_load_ref.clicked.connect(self.on_load_ref) + self.btn_localize = QPushButton("📍 LOCALIZE NOW"); self.btn_localize.setStyleSheet(pill_button("#2b2b2b")); self.btn_localize.clicked.connect(self.on_localize) + rowl.addWidget(self.btn_load_ref); rowl.addWidget(self.btn_localize) + loc_layout.addLayout(rowl) + + self.btn_clear_ref = QPushButton("🧽 CLEAR REF"); self.btn_clear_ref.setStyleSheet(pill_button("#2b2b2b")); self.btn_clear_ref.clicked.connect(self.on_clear_ref) + loc_layout.addWidget(self.btn_clear_ref) + + ref_color_title = QLabel("REF MAP COLOR") + ref_color_title.setObjectName("CardTitle") + loc_layout.addWidget(ref_color_title) + + ref_color_row = QHBoxLayout() + self.btn_ref_gray = QPushButton("GRAY") + self.btn_ref_height = QPushButton("HEIGHT") + self.btn_ref_orig = QPushButton("ORIGINAL") + self.btn_ref_gray.clicked.connect(lambda: self.set_ref_color_mode("GRAY")) + self.btn_ref_height.clicked.connect(lambda: self.set_ref_color_mode("HEIGHT")) + self.btn_ref_orig.clicked.connect(lambda: self.set_ref_color_mode("ORIGINAL")) + ref_color_row.addWidget(self.btn_ref_gray) + ref_color_row.addWidget(self.btn_ref_height) + ref_color_row.addWidget(self.btn_ref_orig) + loc_layout.addLayout(ref_color_row) + self.refresh_ref_color_buttons() + + approx_title = QLabel("START POINTER") + approx_title.setObjectName("CardTitle") + loc_layout.addWidget(approx_title) + + approx_row1 = QHBoxLayout() + self.txt_approx_z = QLineEdit(f"{self.approx_guess_z:.2f}") + self.txt_approx_z.setPlaceholderText("z") + self.txt_approx_z.setVisible(False) + self.btn_pick_approx = QPushButton("🧭 CLICK START POINTER") + self.btn_pick_approx.setStyleSheet(pill_button("#2b2b2b")) + self.btn_pick_approx.clicked.connect(self.on_set_approx_pick) + approx_row1.addWidget(self.btn_pick_approx) + loc_layout.addLayout(approx_row1) + + self.btn_clear_approx = QPushButton("✖ CLEAR APPROX") + self.btn_clear_approx.setStyleSheet(pill_button("#2b2b2b")) + self.btn_clear_approx.clicked.connect(self.on_clear_approx) + loc_layout.addWidget(self.btn_clear_approx) + + self.chk_require_start_pick = QCheckBox("Require start-point pick before START") + self.chk_require_start_pick.setChecked(True) + self.chk_require_start_pick.stateChanged.connect(self.on_toggle_require_start_pick) + loc_layout.addWidget(self.chk_require_start_pick) + + self.lbl_pick_status = QLabel("Start pick: pending") + self.lbl_pick_status.setStyleSheet("color:#ffcc00; font-family:monospace; font-weight:800;") + loc_layout.addWidget(self.lbl_pick_status) + + side_layout.addWidget(loc_card) + + perf_card = QFrame(); perf_card.setObjectName("Card"); perf_card.setStyleSheet(card_style()); apply_card_shadow(perf_card) + perf_layout = QVBoxLayout(perf_card); perf_layout.setContentsMargins(14,14,14,14); perf_layout.setSpacing(6) + perf_title = QLabel("PERFORMANCE"); perf_title.setObjectName("CardTitle"); perf_layout.addWidget(perf_title) + self.lbl_perf_fps = QLabel("FPS in/out: 0.0 / 0.0") + self.lbl_perf_fps.setStyleSheet("color:white; font-family:monospace; font-weight:700;") + self.lbl_perf_icp = QLabel("ICP: 0.0 ms CPU: 0.0%") + self.lbl_perf_icp.setStyleSheet("color:white; font-family:monospace; font-weight:700;") + self.lbl_perf_queue = QLabel("Queue lag: 0 Growth: 0.0 pts/s") + self.lbl_perf_queue.setStyleSheet("color:white; font-family:monospace; font-weight:700;") + self.lbl_mode = QLabel("Mode: IDLE Rec: OFF") + self.lbl_mode.setStyleSheet("color:white; font-family:monospace; font-weight:700;") + self.lbl_nav = QLabel("Nav: goal none cmd 0.00/0.00") + self.lbl_nav.setStyleSheet("color:white; font-family:monospace; font-weight:700;") + self.lbl_loc_match = QLabel("Match: n/a") + self.lbl_loc_match.setStyleSheet("color:white; font-family:monospace; font-weight:700;") + perf_layout.addWidget(self.lbl_perf_fps) + perf_layout.addWidget(self.lbl_perf_icp) + perf_layout.addWidget(self.lbl_perf_queue) + perf_layout.addWidget(self.lbl_mode) + perf_layout.addWidget(self.lbl_nav) + perf_layout.addWidget(self.lbl_loc_match) + side_layout.addWidget(perf_card) + + side_layout.addStretch(1) + + # Status labels + self.lbl_status = QLabel("Status: IDLE") + self.lbl_status.setStyleSheet(f"color:{accent}; font-family:monospace; font-weight:900;") + + self.lbl_points = QLabel("Stable points: 0") + self.lbl_points.setStyleSheet("color:white; font-family:monospace; font-weight:800;") + + self.lbl_pose = QLabel("Pos: 0.00, 0.00, 0.00") + self.lbl_pose.setStyleSheet("color:white; font-family:monospace; font-weight:800;") + + self.lbl_loc = QLabel("Localization: NO_REF") + self.lbl_loc.setStyleSheet("color:white; font-family:monospace; font-weight:800;") + + self.lbl_loc_state = QLabel("Loc health: TRACKING") + self.lbl_loc_state.setStyleSheet("color:white; font-family:monospace; font-weight:800;") + + self.lbl_density = QLabel(f"Density: {self.density_mode}") + self.lbl_density.setStyleSheet("color:white; font-family:monospace; font-weight:800;") + + self.lbl_min_stable = QLabel(f"Min stable: {self.min_stable_points}") + self.lbl_min_stable.setStyleSheet("color:white; font-family:monospace; font-weight:800;") + + side_layout.addWidget(self.lbl_status) + side_layout.addWidget(self.lbl_points) + side_layout.addWidget(self.lbl_pose) + side_layout.addWidget(self.lbl_loc) + side_layout.addWidget(self.lbl_loc_state) + side_layout.addWidget(self.lbl_density) + side_layout.addWidget(self.lbl_min_stable) + + root.addWidget(side_scroll) + + # 3D view + self.view = SLAMGLViewWidget() + self.view.opts["distance"] = float(self.cfg["gui"]["view"]["distance"]) + self.view.setBackgroundColor("#0a0c10") + root.addWidget(self.view) + root.setChildrenCollapsible(False) + root.setHandleWidth(10) + root.setStretchFactor(0, 0) + root.setStretchFactor(1, 1) + root.setSizes([380, 1220]) + + grid = gl.GLGridItem() + grid.setSize(x=float(self.cfg["gui"]["view"]["grid_size"]), y=float(self.cfg["gui"]["view"]["grid_size"]), z=0) + self.view.addItem(grid) + + self.axis = gl.GLAxisItem() + self.axis.setSize(2,2,2) + self.view.addItem(self.axis) + + self.scatter = gl.GLScatterPlotItem(pos=np.zeros((1,3),dtype=np.float32), size=2) + self.scatter.setGLOptions("opaque") + self.view.addItem(self.scatter) + + # Reference map overlay (shown after user loads a map) + self.ref_scatter = gl.GLScatterPlotItem(pos=np.zeros((1,3),dtype=np.float32), size=1.2) + self.ref_scatter.setGLOptions("translucent") + self.view.addItem(self.ref_scatter) + self.ref_match_scatter = gl.GLScatterPlotItem(pos=np.zeros((1,3),dtype=np.float32), size=1.4) + self.ref_match_scatter.setGLOptions("translucent") + self.view.addItem(self.ref_match_scatter) + self.start_ptr_scatter = gl.GLScatterPlotItem(pos=np.zeros((1,3),dtype=np.float32), size=1.8) + self.start_ptr_scatter.setGLOptions("translucent") + self.view.addItem(self.start_ptr_scatter) + self.view.mapPickDrag.connect(self.on_view_map_pick_drag) + + self.timer = QTimer() + self.timer.timeout.connect(self.update_loop) + self.timer.start(50) + + self.max_draw = int(self.cfg["gui"]["render"]["max_draw_points"]) + self.max_ref_draw = max(50000, self.max_draw // 2) + self.decimate_step = int(self.cfg["gui"]["render"]["decimate_step"]) + self.maps_dir = maps_dir + self.ref_display_voxel = float(self.cfg["localization"]["ref_display_voxel"]) + + # Workflow UI control groups: non-relevant controls are disabled/greyed. + self._workflow_widget_groups = { + "runtime": [ + self.txt_min_stable, self.btn_apply_min_stable, + self.btn_den_low, self.btn_den_med, self.btn_den_high, + ], + "mapping": [ + self.txt_name, self.chk_save, self.btn_save_now, + self.chk_autosave, self.txt_autosave_sec, self.btn_apply_autosave, + self.chk_loop_closure, + self.txt_near_range, self.chk_outlier, self.chk_clip_z, + self.txt_world_zmin, self.txt_world_zmax, + self.txt_outlier_voxel, self.txt_outlier_min, self.btn_apply_quality, + ], + "recording": [ + self.btn_record_start, self.btn_record_stop, + self.btn_replay_run, self.btn_replay_set_base, + ], + "localization": [ + self.btn_localize_only, self.btn_load_ref, self.btn_localize, self.btn_clear_ref, + self.chk_loc_machine, + self.btn_ref_gray, self.btn_ref_height, self.btn_ref_orig, + self.txt_approx_z, self.btn_pick_approx, self.btn_clear_approx, + self.chk_require_start_pick, self.lbl_pick_status, + ], + "submap_nav": [ + self.chk_submap_mode, + ], + "nav_export": [ + self.btn_export_nav, self.txt_nav_zmin, self.txt_nav_zmax, + self.txt_nav_res, self.txt_nav_inf, self.btn_apply_nav, + ], + "nav_live": [ + self.txt_goal_x, self.txt_goal_y, self.btn_goal_apply, self.btn_goal_clear, + self.txt_mission, self.btn_mission_start, + self.btn_mission_pause, self.btn_mission_resume, self.btn_mission_stop, + ], + } + self._workflow_managed_widgets = [] + seen = set() + for group_widgets in self._workflow_widget_groups.values(): + for widget in group_widgets: + k = id(widget) + if k in seen: + continue + seen.add(k) + self._workflow_managed_widgets.append(widget) + self._apply_workflow_ui_rules(self.workflow_profile, update_label=True) + self._refresh_pick_status() + self._hide_start_pointer_visual() + + def set_status(self, text: str, color: str): + self.lbl_status.setText(text) + self.lbl_status.setStyleSheet(f"color:{color}; font-family:monospace; font-weight:900;") + + def show_error_popup(self, message: str): + msg = str(message).strip() or "Unknown error" + now = time.monotonic() + if msg == self._last_error_popup_text and (now - self._last_error_popup_t) < self._error_popup_cooldown_sec: + return + self._last_error_popup_text = msg + self._last_error_popup_t = now + QMessageBox.critical(self, "SLAM Error", msg) + + def show_saved_popup(self, message: str): + msg = str(message).strip() + if not msg: + return + now = time.monotonic() + if msg == self._last_saved_popup_text and (now - self._last_saved_popup_t) < self._saved_popup_cooldown_sec: + return + self._last_saved_popup_text = msg + self._last_saved_popup_t = now + QMessageBox.information(self, "Map Saved", msg) + + def show_self_check_popup(self, report: dict | None, source: str = "startup"): + if self._self_check_popup_shown and source != "worker": + return + rep = report or {} + errs = list(rep.get("errors", []) or []) + warns = list(rep.get("warnings", []) or []) + info = list(rep.get("info", []) or []) + if not errs and not warns: + if source == "engine": + self._self_check_popup_shown = True + return + msg_lines = [] + if errs: + msg_lines.append("Errors:") + msg_lines.extend(f"- {x}" for x in errs) + if warns: + msg_lines.append("Warnings:") + msg_lines.extend(f"- {x}" for x in warns) + if info: + msg_lines.append("Info:") + msg_lines.extend(f"- {x}" for x in info[:3]) + text = "\n".join(msg_lines) + if errs: + QMessageBox.critical(self, "SLAM Startup Check", text) + else: + QMessageBox.warning(self, "SLAM Startup Check", text) + if source == "engine": + self._self_check_popup_shown = True + + @staticmethod + def _read_float(line: QLineEdit, default: float) -> float: + txt = line.text().strip() + try: + return float(txt) + except Exception: + line.setText(str(default)) + return float(default) + + def request_map_export_if_armed(self) -> bool: + if not self.save_armed: + return False + base = self.txt_name.text().strip() or "map_robot" + self.client.export_map(base) + return True + + def _read_min_stable_input(self, show_error: bool = False): + txt = self.txt_min_stable.text().strip() + try: + value = int(txt) + except Exception: + if show_error: + self.show_error_popup("Minimum stable points must be an integer.") + return None + return int(np.clip(value, 50, 5_000_000)) + + def _apply_min_stable_value(self, value: int, set_status_msg: bool = True): + self.min_stable_points = int(value) + self.txt_min_stable.setText(str(self.min_stable_points)) + self.lbl_min_stable.setText(f"Min stable: {self.min_stable_points}") + try: + self.client.set_min_stable_points(self.min_stable_points) + except Exception: + pass + if set_status_msg: + self.set_status(f"Min stable set: {self.min_stable_points}", "#ffcc00") + + def ensure_min_stable_synced(self, show_error: bool = False, set_status_msg: bool = False) -> bool: + value = self._read_min_stable_input(show_error=show_error) + if value is None: + return False + if int(value) != int(self.min_stable_points): + self._apply_min_stable_value(int(value), set_status_msg=set_status_msg) + return True + + def _set_widgets_enabled(self, widgets, enabled: bool): + for w in widgets: + if w is None: + continue + w.setEnabled(bool(enabled)) + + def _apply_workflow_ui_rules(self, profile: str | None = None, update_label: bool = False): + p = str(profile if profile is not None else self.workflow_profile).upper().strip() + if p not in ("MAP_NEW", "EXTEND_MAP", "LOCALIZE_MAP", "LIVE_NAV_MAP", "LIVE_NAV_NO_MAP", "QUICK_DEMO", "BALANCED"): + p = "BALANCED" + self.workflow_profile = p + if update_label: + if self.workflow_selected: + self.lbl_workflow.setText(f"Workflow: {self.workflow_profile}") + else: + self.lbl_workflow.setText("Workflow: NOT_SELECTED") + + # Start from fully enabled, then gray-out non-relevant controls per workflow. + self._set_widgets_enabled(self._workflow_managed_widgets, True) + # Submap LOCAL+GLOBAL is intentionally limited to map-based localization/nav workflows. + self._set_widgets_enabled( + self._workflow_widget_groups["submap_nav"], + p in ("LOCALIZE_MAP", "LIVE_NAV_MAP"), + ) + + if p == "MAP_NEW": + self._set_widgets_enabled(self._workflow_widget_groups["localization"], False) + self._set_widgets_enabled(self._workflow_widget_groups["nav_live"], False) + elif p == "EXTEND_MAP": + # Extending an existing map needs localization (to anchor incoming + # scans to the loaded frame) AND mapping (to add the new points). + self._set_widgets_enabled(self._workflow_widget_groups["nav_live"], False) + elif p == "LOCALIZE_MAP": + self._set_widgets_enabled(self._workflow_widget_groups["mapping"], False) + self._set_widgets_enabled(self._workflow_widget_groups["recording"], False) + self._set_widgets_enabled(self._workflow_widget_groups["nav_export"], False) + self._set_widgets_enabled(self._workflow_widget_groups["nav_live"], False) + elif p == "LIVE_NAV_MAP": + self._set_widgets_enabled(self._workflow_widget_groups["mapping"], False) + self._set_widgets_enabled(self._workflow_widget_groups["recording"], False) + elif p == "LIVE_NAV_NO_MAP": + self._set_widgets_enabled(self._workflow_widget_groups["localization"], False) + elif p == "QUICK_DEMO": + # Quick demo keeps most options active, but submap remains map-workflow only. + pass + else: + # BALANCED keeps broad controls active; submap remains map-workflow only. + pass + if p not in ("LOCALIZE_MAP", "LIVE_NAV_MAP") and self.approx_pick_armed: + self._set_approx_pick_mode(False) + self._refresh_pick_status() + + def apply_runtime_settings(self): + try: + self.client.set_density(self.density_mode) + except Exception: + pass + if not self.ensure_min_stable_synced(show_error=False, set_status_msg=False): + try: + self.client.set_min_stable_points(self.min_stable_points) + except Exception: + pass + try: + self.client.set_loop_closure(bool(self.loop_closure_enabled)) + except Exception: + pass + try: + self.client.set_loc_state_machine(bool(self.loc_machine_enabled)) + except Exception: + pass + try: + self.client.set_submap_mode( + bool(self.submap_mode_enabled), + {"apply_profiles": ["LOCALIZE_MAP", "LIVE_NAV_MAP"]}, + ) + except Exception: + pass + try: + self.client.set_stability_profile(str(self.workflow_profile)) + except Exception: + pass + self.on_apply_autosave(set_status_msg=False, quiet=True) + self.on_apply_nav_config(set_status_msg=False, quiet=True) + self.on_apply_map_quality(set_status_msg=False, quiet=True) + + def _apply_workflow_profile(self, profile: str, set_status_msg: bool = True): + p = str(profile).upper().strip() + self.workflow_selected = True + self._apply_workflow_ui_rules(p, update_label=True) + self.btn_connect.setEnabled(True) + self.btn_connect.setToolTip("") + try: + self.client.set_stability_profile(self.workflow_profile) + except Exception: + pass + if set_status_msg: + self.set_status(f"Workflow selected: {self.workflow_profile}", "#ffcc00") + + def _pick_and_load_ref_map(self) -> bool: + fname, _ = QFileDialog.getOpenFileName(self, "Load Reference Map", self.maps_dir, "Point Clouds (*.ply *.pcd)") + if not fname: + return False + self.ref_map_path = fname + self.start_pick_ready = False + self.start_pick_xyz = None + self._pick_help_shown_for_ref = None + self._refresh_pick_status() + self.client.load_ref_map(fname) + self.lbl_loc.setText(f"Localization: ref={Path(fname).name}") + self._start_ref_loader(fname, show_status=False) + return True + + def _workflow_requires_ref_map(self) -> bool: + return str(self.workflow_profile).upper().strip() in ("LOCALIZE_MAP", "LIVE_NAV_MAP") + + def on_workflow_map_new(self): + self._apply_workflow_profile("MAP_NEW", set_status_msg=False) + self._set_approx_pick_mode(False) + self.start_pick_ready = False + self.start_pick_xyz = None + self._refresh_pick_status() + self.set_density_mode("MEDIUM") + # Keep loop closure off by default for stability; user can enable manually later. + self.chk_loop_closure.setChecked(False) + self.chk_submap_mode.setChecked(False) + # Mapping-new should run in pure SLAM frame (no stale reference alignment). + if self.ref_map_path: + self.on_clear_ref() + self.set_status("Workflow MAP_NEW ready: CONNECT -> START mapping (loop closure OFF by default).", "#ffcc00") + + def on_workflow_extend_map(self): + """Extend an existing saved map: load .ply, seed stable map, continue mapping.""" + fname, _ = QFileDialog.getOpenFileName( + self, "Extend Saved Map", self.maps_dir, "Point Clouds (*.ply *.pcd)" + ) + if not fname: + return + self._apply_workflow_profile("EXTEND_MAP", set_status_msg=False) + self._set_approx_pick_mode(False) + self.start_pick_ready = False + self.start_pick_xyz = None + self._refresh_pick_status() + self.set_density_mode("MEDIUM") + # Loop closure on by default for extend — drift accumulated during the + # original scan plus drift in the new segment both benefit from it. + self.chk_loop_closure.setChecked(True) + self.chk_submap_mode.setChecked(False) + # Wire ref_map_path so the GUI shows the loaded map in the viewer. + self.ref_map_path = fname + self.lbl_loc.setText(f"Localization: ref={Path(fname).name}") + self._start_ref_loader(fname, show_status=False) + # Send the extend command (also sets ref internally and seeds stable/filter). + try: + self.client.load_for_extend(fname) + except Exception as e: + self.show_error_popup(f"Extend load failed: {e}") + return + self.set_status( + f"Workflow EXTEND_MAP ready (loaded {Path(fname).name}): CONNECT -> START.", + "#ffcc00", + ) + QMessageBox.information( + self, + "Extend Saved Map", + "1) Click CONNECT\n2) Click START\n\n" + "New scans will be added to the loaded map. Save as usual on STOP — " + "the merged map is written to a new file (auto-incremented name).", + ) + + def on_workflow_localize_existing(self): + self._apply_workflow_profile("LOCALIZE_MAP", set_status_msg=False) + self._set_approx_pick_mode(False) + self.start_pick_ready = False + self.start_pick_xyz = None + self._refresh_pick_status() + self.set_density_mode("MEDIUM") + self.chk_loop_closure.setChecked(False) + self.chk_loc_machine.setChecked(True) + # Reference-anchored default: keep uploaded map static, use submap only if user enables it. + self.chk_submap_mode.setChecked(False) + self.set_status( + "Workflow LOCALIZE_MAP ready: LOAD REF -> click start pointer -> CONNECT -> START.", + "#ffcc00", + ) + QMessageBox.information( + self, + "Navigate In Mapped Place", + "1) Click LOAD REF MAP\n2) Click CLICK START POINTER, then click current location on map\n3) Click CONNECT\n4) Click START\n\nLocalization will start automatically from your picked start location.", + ) + + def on_workflow_live_nav(self): + self._apply_workflow_profile("LIVE_NAV_MAP", set_status_msg=False) + self._set_approx_pick_mode(False) + self.start_pick_ready = False + self.start_pick_xyz = None + self._refresh_pick_status() + self.set_density_mode("HIGH") + self.chk_loop_closure.setChecked(False) + self.chk_loc_machine.setChecked(True) + # Reference-anchored default: keep uploaded map static, use submap only if user enables it. + self.chk_submap_mode.setChecked(False) + try: + self.client.set_nav_runtime_cfg({"enabled": True, "dynamic_decay_sec": 1.6, "dynamic_min_hits": 2}) + except Exception: + pass + self.set_status( + "Workflow LIVE_NAV_MAP ready: LOAD REF -> click start pointer -> CONNECT -> START.", + "#ffcc00", + ) + QMessageBox.information( + self, + "Live Nav With Map", + "1) Click LOAD REF MAP\n2) Click CLICK START POINTER, then click current location on map\n3) Click CONNECT\n4) Click START\n\nLocalization will start automatically from your picked start location.", + ) + + def on_workflow_live_nav_nomap(self): + self._apply_workflow_profile("LIVE_NAV_NO_MAP", set_status_msg=False) + self._set_approx_pick_mode(False) + self.start_pick_ready = False + self.start_pick_xyz = None + self._refresh_pick_status() + self.set_density_mode("HIGH") + self.chk_loop_closure.setChecked(False) + self.chk_submap_mode.setChecked(False) + if self.ref_map_path: + # Force no-reference mode for live mapless navigation. + self.on_clear_ref() + try: + self.client.set_nav_runtime_cfg({"enabled": True, "dynamic_decay_sec": 1.4, "dynamic_min_hits": 2}) + except Exception: + pass + self.set_status("Workflow LIVE_NAV_NO_MAP ready: CONNECT -> START -> set GOAL/MISSION.", "#ffcc00") + + def on_workflow_quick_demo(self): + self._apply_workflow_profile("QUICK_DEMO", set_status_msg=False) + self._set_approx_pick_mode(False) + self.start_pick_ready = False + self.start_pick_xyz = None + self._refresh_pick_status() + self.set_density_mode("HIGH") + self.set_status("Workflow QUICK_DEMO ready (fast build, lower persistence).", "#ffcc00") + + # actions + def on_connect(self): + if not self.workflow_selected: + self.show_error_popup("Select a workflow first, then CONNECT.") + self.set_status("Status: select workflow first", "#ffcc00") + return + if self._workflow_requires_ref_map() and not self.ref_map_path: + self.show_error_popup("Load a reference map first for this workflow.") + self.set_status("Status: load ref map first", "#ffcc00") + return + # Update config-derived IP at runtime by environment is not needed; just re-create engine process + ip = self.txt_ip.text().strip() + if not ip: + self.set_status("Status: IP required", "#ffcc00") + return + + # write into process config by setting env and recreating client config file? keep behavior: just connect + # engine reads config ip; for runtime typed IP, we pass command CONNECT and worker uses eng_cfg.host_ip. + # easiest: set env override and restart client + self.client.stop_process() + # update env config override is not a numeric param; it’s user input. + # We rebuild a new client, then mutate host_ip for this session: + self.client = SlamEngineClient() + self.client.eng_cfg.host_ip = ip + self.client.start_process() + self.show_self_check_popup(self.client.get_self_check(), source="engine") + self._worker_dead_notified = False + self.worker_mode = "IDLE" + self.is_connected = False + self.recording_enabled = False + self.recording_frames = 0 + self.recording_dropped = 0 + self.lbl_mode.setText(f"Mode: {self.worker_mode} Rec: {'ON' if self.recording_enabled else 'OFF'}") + self.client.connect() + self.apply_runtime_settings() + if self._workflow_requires_ref_map() and self.ref_map_path: + self.client.load_ref_map(self.ref_map_path) + if self.start_pick_ready and isinstance(self.start_pick_xyz, tuple) and len(self.start_pick_xyz) == 3: + px, py, pz = self.start_pick_xyz + try: + self.client.set_approx_pose(float(px), float(py), float(pz)) + except Exception: + pass + else: + self._prompt_pick_before_start_if_needed() + self.set_status("Status: CONNECTING...", self.cfg["gui"]["colors"]["accent"]) + + def on_start(self): + if not self.is_connected: + self.show_error_popup("Click CONNECT first.") + return + self._set_approx_pick_mode(False) + self.apply_runtime_settings() + if self._workflow_requires_ref_map(): + if not self.ref_map_path: + self.show_error_popup("Load a reference map first, then CONNECT and START.") + self.set_status("Status: load ref map first", "#ffcc00") + return + if self.require_start_pick and not self.start_pick_ready: + self.show_error_popup("Set approximate start location on the map first.") + self._prompt_pick_before_start_if_needed() + self.set_status("Status: click map to set start location", "#ffcc00") + return + if self.start_pick_ready and isinstance(self.start_pick_xyz, tuple) and len(self.start_pick_xyz) == 3: + px, py, pz = self.start_pick_xyz + try: + self.client.set_approx_pose(float(px), float(py), float(pz)) + except Exception: + pass + self.client.start_localize_only() + self.worker_mode = "LOCALIZE_ONLY" + self.lbl_mode.setText(f"Mode: {self.worker_mode} Rec: {'ON' if self.recording_enabled else 'OFF'}") + self.set_status("Status: LOCALIZE_ONLY (AUTO LOCALIZING FROM LIVE SCAN)", "#ffcc00") + return + self.client.start_mapping() + self.worker_mode = "MAPPING" + self.lbl_mode.setText(f"Mode: {self.worker_mode} Rec: {'ON' if self.recording_enabled else 'OFF'}") + self.set_status("Status: MAPPING", self.cfg["gui"]["colors"]["accent"]) + + def on_start_localize_only(self): + if not self.ref_map_path: + self.show_error_popup("Load a reference map first for LOCALIZE-ONLY mode.") + return + if not self.is_connected: + self.show_error_popup("Click CONNECT first.") + return + if self.require_start_pick and not self.start_pick_ready: + self.show_error_popup("Set approximate start location on the map first.") + self._prompt_pick_before_start_if_needed() + return + self.apply_runtime_settings() + if self.start_pick_ready and isinstance(self.start_pick_xyz, tuple) and len(self.start_pick_xyz) == 3: + px, py, pz = self.start_pick_xyz + try: + self.client.set_approx_pose(float(px), float(py), float(pz)) + except Exception: + pass + self.client.start_localize_only() + self.worker_mode = "LOCALIZE_ONLY" + self.lbl_mode.setText(f"Mode: {self.worker_mode} Rec: {'ON' if self.recording_enabled else 'OFF'}") + self.set_status("Status: LOCALIZE_ONLY", "#ffcc00") + + def on_pause(self): + self.client.pause_mapping() + self.worker_mode = "PAUSED" + self.lbl_mode.setText(f"Mode: {self.worker_mode} Rec: {'ON' if self.recording_enabled else 'OFF'}") + self.set_status("Status: PAUSED", "#ffcc00") + + def on_stop(self): + if not self.ensure_min_stable_synced(show_error=True, set_status_msg=False): + return + self.client.stop_mapping() + self.worker_mode = "STOPPED" + self.lbl_mode.setText(f"Mode: {self.worker_mode} Rec: {'ON' if self.recording_enabled else 'OFF'}") + if self.request_map_export_if_armed(): + self.set_status("Status: STOPPED (SAVING MAP...)", "#ffcc00") + else: + self.set_status("Status: STOPPED", "white") + + def on_record_start(self): + base = self.txt_name.text().strip() or "slam_recording" + self.client.record_start(base) + self.recording_enabled = True + self.lbl_mode.setText(f"Mode: {self.worker_mode} Rec: ON") + self.set_status("Recording started.", "#ffcc00") + + def on_record_stop(self): + base = self.txt_name.text().strip() or "slam_recording" + self.client.record_stop(True, base) + self.recording_enabled = False + self.lbl_mode.setText(f"Mode: {self.worker_mode} Rec: OFF") + self.set_status("Recording stopped.", "#ffcc00") + + def on_replay_run(self): + fname, _ = QFileDialog.getOpenFileName(self, "Run Replay", self.maps_dir, "Replay Files (*.npz)") + if not fname: + return + try: + from SLAM_Replay import load_replay_npz, run_replay, compare_reports + + frames, poses = load_replay_npz(fname) + report = run_replay(frames, poses=poses, export_nav=False) + self.last_replay_report = report + out = {"report": report} + passed = None + base_path = Path(self.replay_baseline_path) + if base_path.exists(): + baseline = json.loads(base_path.read_text(encoding="utf-8")) + base_rep = baseline.get("report", baseline) if isinstance(baseline, dict) else {} + out["comparison"] = compare_reports(report, base_rep, tol_ratio=0.15) + passed = bool(out["comparison"].get("passed", False)) + msg = json.dumps(out, indent=2) + QMessageBox.information(self, "Replay Report", msg) + if passed is None: + self.set_status("Replay complete (no baseline).", self.cfg["gui"]["colors"]["accent"]) + elif passed: + self.set_status("Replay regression: PASS", self.cfg["gui"]["colors"]["accent"]) + else: + self.set_status("Replay regression: FAIL", "#ff4444") + except Exception as e: + self.show_error_popup(f"Replay failed: {e}") + + def on_replay_set_baseline(self): + if not isinstance(self.last_replay_report, dict): + self.show_error_popup("Run replay first, then set baseline.") + return + try: + base = {"report": self.last_replay_report} + Path(self.replay_baseline_path).write_text(json.dumps(base, indent=2), encoding="utf-8") + self.set_status(f"Baseline saved: {Path(self.replay_baseline_path).name}", "#ffcc00") + except Exception as e: + self.show_error_popup(f"Failed to write baseline: {e}") + + def on_save_now(self): + if not self.ensure_min_stable_synced(show_error=True, set_status_msg=False): + return + base = self.txt_name.text().strip() or "map_robot" + self.client.export_map(base) + self.set_status("Saving map now...", "#ffcc00") + + def on_reset(self): + self.save_armed = False + self.chk_save.blockSignals(True); self.chk_save.setChecked(False); self.chk_save.blockSignals(False) + self.client.reset_mapping() + self.worker_mode = "IDLE" + self.recording_enabled = False + self.recording_frames = 0 + self.recording_dropped = 0 + self.lbl_mode.setText("Mode: IDLE Rec: OFF") + self.scatter.setData(pos=np.zeros((1,3),dtype=np.float32)) + self.set_status("Status: RESET", "#ffcc00") + self.lbl_points.setText("Stable points: 0") + self.current_stable_points = 0 + + def on_toggle_save(self, state: int): + self.save_armed = bool(state) + self.set_status("Save armed" if self.save_armed else "Save disarmed", + self.cfg["gui"]["colors"]["accent"] if self.save_armed else "white") + + def on_apply_autosave(self, _checked: bool = False, set_status_msg: bool = True, quiet: bool = False): + sec = self._read_float(self.txt_autosave_sec, self.autosave_interval_sec) + sec = max(5.0, sec) + self.autosave_interval_sec = sec + self.autosave_enabled = bool(self.chk_autosave.isChecked()) + self.txt_autosave_sec.setText(str(int(sec))) + base = self.txt_name.text().strip() or "autosave_map" + try: + self.client.set_autosave(self.autosave_enabled, self.autosave_interval_sec, base) + except Exception: + if not quiet: + self.show_error_popup("Failed to send autosave settings to worker.") + return + if set_status_msg: + mode = "ON" if self.autosave_enabled else "OFF" + self.set_status(f"Autosave {mode} ({int(self.autosave_interval_sec)}s)", "#ffcc00") + + def on_export_nav(self): + if not self.ensure_min_stable_synced(show_error=True, set_status_msg=False): + return + self.on_apply_nav_config(set_status_msg=False, quiet=True) + base = self.txt_name.text().strip() or "map_robot" + self.client.export_nav(base) + self.set_status("Exporting nav map...", "#ffcc00") + + def on_apply_min_stable_points(self): + value = self._read_min_stable_input(show_error=True) + if value is None: + return + self._apply_min_stable_value(int(value), set_status_msg=True) + + def on_toggle_loop_closure(self, state: int): + self.loop_closure_enabled = bool(state) + try: + self.client.set_loop_closure(self.loop_closure_enabled) + except Exception: + pass + self.set_status( + "Loop closure SAFE ON" if self.loop_closure_enabled else "Loop closure OFF", + "#ffcc00", + ) + + def on_toggle_loc_machine(self, state: int): + self.loc_machine_enabled = bool(state) + try: + self.client.set_loc_state_machine(self.loc_machine_enabled) + except Exception: + pass + self.set_status( + "Localization state machine ON" if self.loc_machine_enabled else "Localization state machine OFF", + "#ffcc00", + ) + + def on_toggle_submap_mode(self, state: int): + self.submap_mode_enabled = bool(state) + try: + self.client.set_submap_mode( + self.submap_mode_enabled, + {"apply_profiles": ["LOCALIZE_MAP", "LIVE_NAV_MAP"]}, + ) + except Exception: + pass + self.set_status( + "Submap LOCAL+GLOBAL ON" if self.submap_mode_enabled else "Submap LOCAL+GLOBAL OFF", + "#ffcc00", + ) + + def on_apply_nav_config(self, _checked: bool = False, set_status_msg: bool = True, quiet: bool = False): + zmin = self._read_float(self.txt_nav_zmin, float(self.nav_cfg.get("z_min_m", -0.4))) + zmax = self._read_float(self.txt_nav_zmax, float(self.nav_cfg.get("z_max_m", 1.2))) + res = max(0.01, self._read_float(self.txt_nav_res, float(self.nav_cfg.get("resolution_m", 0.05)))) + inf = max(0.0, self._read_float(self.txt_nav_inf, float(self.nav_cfg.get("inflation_radius_m", 0.2)))) + patch = { + "z_min_m": zmin, + "z_max_m": zmax, + "resolution_m": res, + "inflation_radius_m": inf, + "min_points": int(self.min_stable_points), + } + self.nav_cfg.update(patch) + try: + self.client.set_nav_export_cfg(patch) + except Exception: + if not quiet: + self.show_error_popup("Failed to send nav tuning to worker.") + return + if set_status_msg: + self.set_status("Nav tuning applied.", "#ffcc00") + + def on_set_nav_goal(self): + x = self._read_float(self.txt_goal_x, 0.0) + y = self._read_float(self.txt_goal_y, 0.0) + try: + self.client.set_nav_goal(x, y) + self.set_status(f"Nav goal set ({x:.2f}, {y:.2f})", "#ffcc00") + except Exception: + self.show_error_popup("Failed to send nav goal.") + + def on_clear_nav_goal(self): + try: + self.client.clear_nav_goal() + self.set_status("Nav goal cleared.", "white") + except Exception: + self.show_error_popup("Failed to clear nav goal.") + + def on_mission_start(self): + raw = self.txt_mission.text().strip() + if not raw: + self.show_error_popup("Mission waypoints are empty.") + return + waypoints = [] + try: + chunks = [x.strip() for x in raw.split(";") if x.strip()] + for ch in chunks: + parts = [p.strip() for p in ch.split(",")] + if len(parts) < 2: + continue + waypoints.append({"x": float(parts[0]), "y": float(parts[1])}) + except Exception: + self.show_error_popup("Mission format should be: x,y; x,y; ...") + return + if not waypoints: + self.show_error_popup("No valid mission waypoints parsed.") + return + try: + self.client.mission_start(waypoints) + self.set_status(f"Mission started ({len(waypoints)} wp)", "#ffcc00") + except Exception: + self.show_error_popup("Failed to start mission.") + + def _send_mission_cmd(self, mode: str): + m = str(mode).lower().strip() + try: + if m == "pause": + self.client.mission_pause() + self.set_status("Mission paused.", "#ffcc00") + elif m == "resume": + self.client.mission_resume() + self.set_status("Mission resumed.", "#ffcc00") + elif m == "stop": + self.client.mission_stop() + self.set_status("Mission stopped.", "white") + except Exception: + self.show_error_popup("Failed to send mission command.") + + def on_apply_map_quality(self, _checked: bool = False, set_status_msg: bool = True, quiet: bool = False): + patch = { + "enabled": True, + "near_min_range_m": max(0.0, self._read_float(self.txt_near_range, 0.15)), + "world_z_clip_enabled": bool(self.chk_clip_z.isChecked()), + "world_z_min_m": self._read_float(self.txt_world_zmin, -2.0), + "world_z_max_m": self._read_float(self.txt_world_zmax, 3.0), + "outlier_filter_enabled": bool(self.chk_outlier.isChecked()), + "outlier_voxel_m": max(0.02, self._read_float(self.txt_outlier_voxel, 0.12)), + "outlier_min_points": max(1, int(self._read_float(self.txt_outlier_min, 2))), + } + self.map_quality_cfg.update(patch) + try: + self.client.set_map_quality_cfg(patch) + except Exception: + if not quiet: + self.show_error_popup("Failed to send map-quality settings to worker.") + return + if set_status_msg: + self.set_status("Map-quality filter applied.", "#ffcc00") + + def refresh_density_buttons(self): + for mode, btn in ( + ("LOW", self.btn_den_low), + ("MEDIUM", self.btn_den_med), + ("HIGH", self.btn_den_high), + ): + if mode == self.density_mode: + btn.setStyleSheet(pill_button("#0f8f4b")) + else: + btn.setStyleSheet(pill_button("#2b2b2b")) + + def set_density_mode(self, mode: str): + self.density_mode = str(mode).upper().strip() + if self.density_mode not in ("LOW", "MEDIUM", "HIGH"): + self.density_mode = "MEDIUM" + self.refresh_density_buttons() + self.lbl_density.setText(f"Density: {self.density_mode}") + try: + self.client.set_density(self.density_mode) + except Exception: + pass + self.set_status(f"Density set: {self.density_mode}", "#ffcc00") + + def refresh_ref_color_buttons(self): + for mode, btn in ( + ("GRAY", self.btn_ref_gray), + ("HEIGHT", self.btn_ref_height), + ("ORIGINAL", self.btn_ref_orig), + ): + if mode == self.ref_color_mode: + btn.setStyleSheet(pill_button("#0f8f4b")) + else: + btn.setStyleSheet(pill_button("#2b2b2b")) + + def _start_ref_loader(self, filename: str, show_status: bool = True): + if self._ref_thread is not None and self._ref_thread.isRunning(): + self._ref_thread.quit() + self._ref_thread.wait(200) + self._ref_thread = RefLoaderThread( + filename, + display_voxel=self.ref_display_voxel, + color_mode=self.ref_color_mode, + ) + self._ref_thread.loaded.connect(self.on_ref_loaded) + self._ref_thread.failed.connect(lambda e: QMessageBox.critical(self, "REF load failed", e)) + self._ref_thread.start() + if show_status: + self.set_status(f"Ref loading ({self.ref_color_mode})...", "#ffcc00") + + def set_ref_color_mode(self, mode: str): + m = str(mode).upper().strip() + if m not in ("GRAY", "HEIGHT", "ORIGINAL"): + m = "GRAY" + self.ref_color_mode = m + self.refresh_ref_color_buttons() + if self.ref_map_path: + self._start_ref_loader(self.ref_map_path, show_status=False) + self.set_status(f"Ref color: {self.ref_color_mode}", "#ffcc00") + + def on_load_ref(self): + if not self._pick_and_load_ref_map(): + return + self.set_status("Ref loaded.", "#ffcc00") + + def on_ref_loaded(self, pts, cols, filename: str): + draw_pts = pts + draw_cols = cols + if len(draw_pts) > self.max_ref_draw: + step = max(2, len(draw_pts) // self.max_ref_draw) + draw_pts = draw_pts[::step] + if draw_cols is not None and len(draw_cols) == len(pts): + draw_cols = draw_cols[::step] + + if draw_cols is not None: + self.ref_scatter.setData(pos=draw_pts, color=draw_cols, size=1.2) + else: + self.ref_scatter.setData(pos=draw_pts, size=1.2) + try: + pick_pts = np.asarray(pts, dtype=np.float32) + if pick_pts.ndim == 2 and pick_pts.shape[1] == 3 and len(pick_pts) > 0: + max_n = max(2000, int(self.ref_pick_max_points)) + if len(pick_pts) > max_n: + step = max(1, int(np.ceil(float(len(pick_pts)) / float(max_n)))) + pick_pts = pick_pts[::step][:max_n] + self.ref_pick_points = np.asarray(pick_pts, dtype=np.float32) + self.view.pick_points = self.ref_pick_points + else: + self.ref_pick_points = None + self.view.pick_points = None + except Exception: + self.ref_pick_points = None + self.view.pick_points = None + + # Auto-localize only when stable map is ready; otherwise avoid error popups. + if self.worker_mode == "LOCALIZE_ONLY": + self.client.start_localize_only() + self.set_status("Ref shown. Localize-only running...", "#ffcc00") + elif self._workflow_requires_ref_map(): + if self.require_start_pick and not self.start_pick_ready: + self._set_approx_pick_mode(True) + if self._pick_help_shown_for_ref != str(filename): + self._pick_help_shown_for_ref = str(filename) + QMessageBox.information( + self, + "Set Start Location", + "Reference map loaded.\n\nClick CLICK START POINTER, then click your current robot location on the map, then press START.", + ) + self.set_status("Ref shown. Click start pointer, then click map to set start location.", "#ffcc00") + else: + self.set_status("Ref shown. Click CONNECT then START (auto localize).", "#ffcc00") + elif int(self.current_stable_points) >= int(self.min_stable_points): + self.client.localize_now() + self.set_status("Ref shown. Localizing...", "#ffcc00") + else: + self.set_status( + f"Ref shown. Need stable points {self.current_stable_points}/{self.min_stable_points} before localize.", + "#ffcc00", + ) + self.lbl_loc.setText( + f"Localization: ref={Path(filename).name} ({len(pts)} pts, {self.ref_color_mode})" + ) + self._refresh_pick_status() + + def on_localize(self): + if not self.ref_map_path: + self.show_error_popup("Load a reference map first.") + return + if not self._workflow_requires_ref_map() and self.worker_mode != "LOCALIZE_ONLY": + if not self.ensure_min_stable_synced(show_error=True, set_status_msg=False): + return + self.client.localize_now() + self.set_status("Localization forced...", "#ffcc00") + + def _refresh_pick_status(self): + if self.start_pick_ready and isinstance(self.start_pick_xyz, tuple) and len(self.start_pick_xyz) == 3: + x, y, z = self.start_pick_xyz + self.lbl_pick_status.setText( + f"Start pick: set ({self._fmt_coord(x)}, {self._fmt_coord(y)}, {self._fmt_coord(z)})" + ) + self.lbl_pick_status.setStyleSheet("color:#00ff88; font-family:monospace; font-weight:800;") + else: + txt = "Start pick: optional (not required)" if not self.require_start_pick else "Start pick: pending" + self.lbl_pick_status.setText(txt) + self.lbl_pick_status.setStyleSheet("color:#ffcc00; font-family:monospace; font-weight:800;") + + @staticmethod + def _fmt_coord(v: float, ndigits: int = 3) -> str: + vv = float(v) + if abs(vv) < (10 ** (-(ndigits + 1))): + vv = 0.0 + return f"{vv:.{int(ndigits)}f}" + + def _hide_start_pointer_visual(self): + self.start_ptr_scatter.setData( + pos=np.zeros((1, 3), dtype=np.float32), + color=np.zeros((1, 4), dtype=np.float32), + size=1.0, + ) + + def _set_start_pointer_visual(self, x: float, y: float, z: float): + pos = np.asarray([[float(x), float(y), float(z)]], dtype=np.float32) + col = np.asarray([[1.00, 0.82, 0.08, 0.96]], dtype=np.float32) + self.start_ptr_scatter.setData(pos=pos, color=col, size=19.0) + + def _snap_pick_to_ref(self, x: float, y: float, z: float) -> tuple[float, float, float]: + pts = self.ref_pick_points + if pts is None: + return float(x), float(y), float(z) + arr = np.asarray(pts, dtype=np.float32) + if arr.ndim != 2 or arr.shape[1] != 3 or len(arr) == 0: + return float(x), float(y), float(z) + q = np.asarray([float(x), float(y)], dtype=np.float32) + rel = arr[:, :2] - q.reshape((1, 2)) + d2 = np.einsum("ij,ij->i", rel, rel) + idx = int(np.argmin(d2)) + if float(d2[idx]) <= float(self.ref_pick_snap_radius_m) * float(self.ref_pick_snap_radius_m): + p = arr[idx] + return float(p[0]), float(p[1]), float(p[2]) + return float(x), float(y), float(z) + + def on_toggle_require_start_pick(self, state: int): + self.require_start_pick = bool(state) + if not self.require_start_pick: + self._set_approx_pick_mode(False) + elif self._workflow_requires_ref_map() and self.ref_map_path and (not self.start_pick_ready): + self._set_approx_pick_mode(True) + self._refresh_pick_status() + self.set_status( + "Start-point pick required." if self.require_start_pick else "Start-point pick optional.", + "#ffcc00", + ) + + def _prompt_pick_before_start_if_needed(self): + if (not self._workflow_requires_ref_map()) or (not self.require_start_pick): + return + if self.start_pick_ready: + return + self._set_approx_pick_mode(True) + QMessageBox.information( + self, + "Set Start Location", + "Before START, click CLICK START POINTER, then click the reference map at robot current location.", + ) + + def _set_approx_pick_mode(self, armed: bool): + self.approx_pick_armed = bool(armed) + self.view.pick_mode = bool(armed) + if bool(armed): + self.btn_pick_approx.setStyleSheet(pill_button("#0f8f4b")) + self.btn_pick_approx.setText("🧭 CLICK START POINTER (ON)") + self.set_status("Click on map to set start pointer. Click again to move it. Press button to stop.", "#ffcc00") + else: + self.btn_pick_approx.setStyleSheet(pill_button("#2b2b2b")) + self.btn_pick_approx.setText("🧭 CLICK START POINTER") + + def on_set_approx_pick(self): + if not self.ref_map_path: + self.show_error_popup("Load a reference map first.") + return + if self.approx_pick_armed: + self._set_approx_pick_mode(False) + self.set_status("Start pointer pick disabled.", "#ffcc00") + return + self.view.pick_plane_z = float(self.approx_guess_z) + self._set_approx_pick_mode(True) + if self.start_pick_ready and isinstance(self.start_pick_xyz, tuple) and len(self.start_pick_xyz) == 3: + sx, sy, _ = self.start_pick_xyz + self._set_start_pointer_visual(float(sx), float(sy), float(self.approx_guess_z)) + + def on_clear_approx(self): + self._set_approx_pick_mode(False) + self.start_pick_ready = False + self.start_pick_xyz = None + try: + self.client.clear_approx_pose() + except Exception: + pass + self._refresh_pick_status() + self._hide_start_pointer_visual() + self.set_status("Approximate position cleared.", "#ffcc00") + + def on_view_map_pick_drag(self, x: float, y: float, z: float, final: bool): + if not self.approx_pick_armed: + return + if not self.ref_map_path: + return + z_guess = float(z) if np.isfinite(float(z)) else float(self.approx_guess_z) + sx, sy, sz = self._snap_pick_to_ref(float(x), float(y), float(z_guess)) + self.approx_guess_z = float(sz) + self.txt_approx_z.setText(f"{self.approx_guess_z:.2f}") + self._set_start_pointer_visual(float(sx), float(sy), float(sz)) + self.start_pick_ready = True + self.start_pick_xyz = (float(sx), float(sy), float(sz)) + self._refresh_pick_status() + if not bool(final): + return + try: + self.client.set_approx_pose(float(sx), float(sy), float(sz)) + self.set_status( + f"Start pointer set at ({self._fmt_coord(sx)}, {self._fmt_coord(sy)}, {self._fmt_coord(sz)}). Click map again to adjust.", + "#ffcc00", + ) + except Exception: + self.show_error_popup("Failed to send approximate position to worker.") + + def on_clear_ref(self): + if self._ref_thread is not None and self._ref_thread.isRunning(): + self._ref_thread.quit() + self._ref_thread.wait(200) + self.ref_map_path = None + self.ref_pick_points = None + self.view.pick_points = None + self._set_approx_pick_mode(False) + self.start_pick_ready = False + self.start_pick_xyz = None + self._pick_help_shown_for_ref = None + self.client.clear_ref() + try: + self.client.clear_approx_pose() + except Exception: + pass + self.ref_scatter.setData( + pos=np.zeros((1, 3), dtype=np.float32), + color=np.zeros((1, 4), dtype=np.float32), + size=1.0, + ) + self.ref_match_scatter.setData( + pos=np.zeros((1, 3), dtype=np.float32), + color=np.zeros((1, 4), dtype=np.float32), + size=1.0, + ) + self.lbl_loc.setText("Localization: NO_REF") + self._refresh_pick_status() + self.lbl_loc_match.setText("Match: n/a") + self.set_status("Ref cleared.", "white") + + def update_loop(self): + # handle status msgs + try: + while True: + level, msg = self.client.status_q.get_nowait() + if level == "ERROR": + self.set_status(f"ERR: {msg}", "#ff4444") + if "CONNECT" in str(msg).upper() or "LIVOX" in str(msg).upper(): + self.is_connected = False + self.show_error_popup(str(msg)) + elif level == "WARN": + self.set_status(f"WARN: {msg}", "#ffcc00") + elif level == "INFO" and isinstance(msg, str): + up = msg.upper() + if "CONNECTED TO LIVOX" in up: + self.is_connected = True + self.set_status("Status: CONNECTED", self.cfg["gui"]["colors"]["accent"]) + elif "MAPPING STARTED" in up: + self.set_status("Status: MAPPING", self.cfg["gui"]["colors"]["accent"]) + elif "LOCALIZE_ONLY STARTED" in up: + self.set_status("Status: LOCALIZE_ONLY", "#ffcc00") + elif "MAPPING PAUSED" in up: + self.set_status("Status: PAUSED", "#ffcc00") + elif "MAPPING STOPPED" in up: + self.set_status("Status: STOPPED", "white") + elif "SAVED:" in up: + saved_path = str(msg).split("SAVED:", 1)[1].strip() if "SAVED:" in str(msg) else "" + if saved_path: + self.set_status(f"Status: MAP SAVED ({Path(saved_path).name})", self.cfg["gui"]["colors"]["accent"]) + self.show_saved_popup(f"Map saved:\n{saved_path}") + else: + self.set_status("Status: MAP SAVED", self.cfg["gui"]["colors"]["accent"]) + elif isinstance(msg, dict) and "NAV_EXPORTED" in msg: + nav = msg.get("NAV_EXPORTED", {}) + pgm = str(nav.get("pgm", "")) + self.set_status("Status: NAV EXPORTED", self.cfg["gui"]["colors"]["accent"]) + if pgm: + QMessageBox.information(self, "Navigation Export", f"Saved navigation files:\n{pgm}") + elif isinstance(msg, dict) and "SESSION" in msg: + sess = msg.get("SESSION", {}) + if bool(sess.get("prior_loaded", False)): + ref = str(sess.get("ref", "reference")) + self.set_status(f"Session prior loaded: {ref}", "#ffcc00") + elif isinstance(msg, dict) and "SELF_CHECK" in msg: + rep = msg.get("SELF_CHECK", {}) + src = str(msg.get("source", "worker")) + self.show_self_check_popup(rep if isinstance(rep, dict) else {}, source=src) + elif isinstance(msg, dict) and "LOOP" in msg: + loop = msg.get("LOOP", {}) + if bool(loop.get("optimized", False)): + self.set_status("Status: LOOP CLOSED", self.cfg["gui"]["colors"]["accent"]) + rej = loop.get("rejected", {}) + if isinstance(rej, dict) and rej: + tr = float(rej.get("translation_m", 0.0)) + ang = float(rej.get("rotation_deg", 0.0)) + self.set_status(f"Loop reject safe guard ({tr:.2f}m, {ang:.1f}deg)", "#ffcc00") + elif isinstance(msg, dict) and "LOOP_MODE" in msg: + info = msg.get("LOOP_MODE", {}) + enabled = bool(info.get("enabled", self.loop_closure_enabled)) + self.loop_closure_enabled = enabled + self.chk_loop_closure.blockSignals(True) + self.chk_loop_closure.setChecked(enabled) + self.chk_loop_closure.blockSignals(False) + elif isinstance(msg, dict) and "LOC_MACHINE" in msg: + info = msg.get("LOC_MACHINE", {}) + enabled = bool(info.get("enabled", self.loc_machine_enabled)) + self.loc_machine_enabled = enabled + self.chk_loc_machine.blockSignals(True) + self.chk_loc_machine.setChecked(enabled) + self.chk_loc_machine.blockSignals(False) + elif isinstance(msg, dict) and "SUBMAP_MODE" in msg: + info = msg.get("SUBMAP_MODE", {}) + enabled = bool(info.get("enabled", self.submap_mode_enabled)) + self.submap_mode_enabled = enabled + self.chk_submap_mode.blockSignals(True) + self.chk_submap_mode.setChecked(enabled) + self.chk_submap_mode.blockSignals(False) + elif isinstance(msg, dict) and "LOC_STATE" in msg: + loc_info = msg.get("LOC_STATE", {}) + state = str(loc_info.get("state", "TRACKING")).upper().strip() + enabled = bool(loc_info.get("enabled", self.loc_machine_enabled)) + self.loc_machine_enabled = enabled + self.chk_loc_machine.blockSignals(True) + self.chk_loc_machine.setChecked(enabled) + self.chk_loc_machine.blockSignals(False) + self.lbl_loc_state.setText(f"Loc health: {state}") + if state == "LOST": + self.set_status("Status: LOST (RECOVERING)", "#ff4444") + elif state == "RECOVERY": + self.set_status("Status: RECOVERY (AUTO RELOCALIZE)", "#ffcc00") + elif state == "DEGRADED": + self.set_status("Status: DEGRADED", "#ffcc00") + elif isinstance(msg, dict) and "DENSITY" in msg: + den = msg.get("DENSITY", {}) + mode = str(den.get("mode", self.density_mode)).upper().strip() + stride = int(den.get("stride", 1)) + self.density_mode = mode if mode in ("LOW", "MEDIUM", "HIGH") else self.density_mode + self.refresh_density_buttons() + self.lbl_density.setText(f"Density: {self.density_mode} (stride {stride})") + elif isinstance(msg, dict) and "MIN_STABLE_POINTS" in msg: + info = msg.get("MIN_STABLE_POINTS", {}) + try: + value = int(info.get("value", self.min_stable_points)) + except Exception: + value = self.min_stable_points + self.min_stable_points = value + self.txt_min_stable.setText(str(value)) + self.lbl_min_stable.setText(f"Min stable: {value}") + elif isinstance(msg, dict) and "AUTOSAVE" in msg: + info = msg.get("AUTOSAVE", {}) + self.autosave_enabled = bool(info.get("enabled", self.autosave_enabled)) + self.autosave_interval_sec = float(info.get("interval_sec", self.autosave_interval_sec)) + self.chk_autosave.blockSignals(True) + self.chk_autosave.setChecked(self.autosave_enabled) + self.chk_autosave.blockSignals(False) + self.txt_autosave_sec.setText(str(int(self.autosave_interval_sec))) + elif isinstance(msg, dict) and "AUTOSAVED" in msg: + auto = msg.get("AUTOSAVED", {}) + path = str(auto.get("path", "")) + pts = int(auto.get("points", 0)) + if path: + self.set_status(f"Autosaved: {Path(path).name} ({pts} pts)", self.cfg["gui"]["colors"]["accent"]) + elif isinstance(msg, dict) and "MODE" in msg: + info = msg.get("MODE", {}) + self.worker_mode = str(info.get("mode", self.worker_mode)).upper().strip() + self.lbl_mode.setText( + f"Mode: {self.worker_mode} Rec: {'ON' if self.recording_enabled else 'OFF'}" + ) + elif isinstance(msg, dict) and "RECORDING" in msg: + info = msg.get("RECORDING", {}) + self.recording_enabled = bool(info.get("enabled", self.recording_enabled)) + self.recording_frames = int(info.get("frames", self.recording_frames)) + self.recording_dropped = int(info.get("dropped", self.recording_dropped)) + self.lbl_mode.setText( + f"Mode: {self.worker_mode} Rec: {'ON' if self.recording_enabled else 'OFF'}" + ) + elif isinstance(msg, dict) and "RECORD_SAVED" in msg: + rec = msg.get("RECORD_SAVED", {}) + path = str(rec.get("path", "")) + frames = int(rec.get("frames", 0)) + dropped = int(rec.get("dropped", 0)) + if path: + self.set_status(f"Recording saved ({frames} frames)", self.cfg["gui"]["colors"]["accent"]) + QMessageBox.information( + self, + "Recording Saved", + f"Saved replay file:\n{path}\n\nFrames: {frames}\nDropped: {dropped}", + ) + elif isinstance(msg, dict) and "NAV_CONFIG" in msg: + info = msg.get("NAV_CONFIG", {}) + self.txt_nav_zmin.setText(str(info.get("z_min_m", self.txt_nav_zmin.text()))) + self.txt_nav_zmax.setText(str(info.get("z_max_m", self.txt_nav_zmax.text()))) + self.txt_nav_res.setText(str(info.get("resolution_m", self.txt_nav_res.text()))) + self.txt_nav_inf.setText(str(info.get("inflation_radius_m", self.txt_nav_inf.text()))) + elif isinstance(msg, dict) and "NAV_GOAL" in msg: + info = msg.get("NAV_GOAL", None) + if isinstance(info, dict): + self.set_status( + f"Nav goal set: ({float(info.get('x', 0.0)):.2f}, {float(info.get('y', 0.0)):.2f})", + "#ffcc00", + ) + else: + self.set_status("Nav goal cleared.", "white") + elif isinstance(msg, dict) and "MISSION" in msg: + info = msg.get("MISSION", {}) + if bool(info.get("completed", False)): + self.set_status("Mission completed.", self.cfg["gui"]["colors"]["accent"]) + elif isinstance(msg, dict) and "MAP_QUALITY" in msg: + info = msg.get("MAP_QUALITY", {}) + self.txt_near_range.setText(str(info.get("near_min_range_m", self.txt_near_range.text()))) + self.chk_outlier.setChecked(bool(info.get("outlier_filter_enabled", self.chk_outlier.isChecked()))) + self.chk_clip_z.setChecked(bool(info.get("world_z_clip_enabled", self.chk_clip_z.isChecked()))) + self.txt_world_zmin.setText(str(info.get("world_z_min_m", self.txt_world_zmin.text()))) + self.txt_world_zmax.setText(str(info.get("world_z_max_m", self.txt_world_zmax.text()))) + self.txt_outlier_voxel.setText(str(info.get("outlier_voxel_m", self.txt_outlier_voxel.text()))) + self.txt_outlier_min.setText(str(info.get("outlier_min_points", self.txt_outlier_min.text()))) + elif isinstance(msg, dict) and "FILTER_TUNING" in msg: + info = msg.get("FILTER_TUNING", {}) + prof = str(info.get("profile", self.workflow_profile)).upper().strip() + self._apply_workflow_ui_rules(prof, update_label=True) + elif isinstance(msg, dict) and "WORKFLOW_PROFILE" in msg: + info = msg.get("WORKFLOW_PROFILE", {}) + prof = str(info.get("name", self.workflow_profile)).upper().strip() + self._apply_workflow_ui_rules(prof, update_label=True) + elif isinstance(msg, dict) and "LOCALIZE" in msg: + loc = msg["LOCALIZE"] + fit = float(loc.get("fitness", 0.0)) + rmse = float(loc.get("rmse", 0.0)) + conf = float(loc.get("confidence", 0.0)) + self.last_loc_confidence = float(conf) + ok = bool(loc.get("accepted", False)) + src = str(loc.get("source", "")).upper().strip() + state = str(loc.get("state", self.lbl_loc_state.text().split(":")[-1].strip())).upper().strip() + bi = float(loc.get("inlier_bidir", 0.0)) + prefix = f"{src} " if src else "" + self.lbl_loc.setText( + f"Localization: {prefix}fit={fit:.3f} rmse={rmse:.3f} bi={bi:.2f} conf={conf:.2f} {'OK' if ok else 'NO'}" + ) + self.lbl_loc_state.setText(f"Loc health: {state}") + if ok: + self.set_status(f"Status: LOCALIZED ({src or 'RUN'})", self.cfg["gui"]["colors"]["accent"]) + else: + self.set_status(f"Status: LOCALIZE WEAK ({src or 'RUN'})", "#ffcc00") + elif isinstance(msg, dict) and "APPROX_POSE" in msg: + info = msg.get("APPROX_POSE", {}) + if bool(info.get("set", False)): + ax = float(info.get("x", 0.0)) + ay = float(info.get("y", 0.0)) + az = float(info.get("z", self.approx_guess_z)) + self.approx_guess_z = az + self.txt_approx_z.setText(f"{az:.2f}") + self.start_pick_ready = True + self.start_pick_xyz = (ax, ay, az) + self._set_start_pointer_visual(ax, ay, az) + self._refresh_pick_status() + self.set_status( + f"Approx pose armed at ({self._fmt_coord(ax)}, {self._fmt_coord(ay)}, {self._fmt_coord(az)})", + "#ffcc00", + ) + else: + self.start_pick_ready = False + self.start_pick_xyz = None + self._hide_start_pointer_visual() + self._refresh_pick_status() + self.set_status("Approx pose cleared.", "#ffcc00") + except Exception: + pass + + if self.client.proc is not None and not self.client.proc.is_alive(): + if not self._worker_dead_notified: + self._worker_dead_notified = True + code = self.client.proc.exitcode + code_txt = "unknown" if code is None else str(code) + self.worker_mode = "DEAD" + self.is_connected = False + self.lbl_mode.setText(f"Mode: {self.worker_mode} Rec: OFF") + self.set_status(f"ERR: Worker stopped (exit {code_txt})", "#ff4444") + if int(code or 0) == -11: + # Native crash fallback: keep advanced loop closure off on next restart. + was_loop_on = bool(self.loop_closure_enabled) + self.loop_closure_enabled = False + self.chk_loop_closure.blockSignals(True) + self.chk_loop_closure.setChecked(False) + self.chk_loop_closure.blockSignals(False) + extra = "Advanced loop closure was disabled for safety.\n" if was_loop_on else "" + self.show_error_popup( + "SLAM worker process stopped (exit code -11).\n" + "Native ICP/localization path crashed.\n" + f"{extra}" + "Click CONNECT to restart." + ) + else: + self.show_error_popup(f"SLAM worker process stopped (exit code {code_txt}). Click CONNECT to restart.") + else: + self._worker_dead_notified = False + + latest = None + try: + while True: + latest = self.client.data_q.get_nowait() + except Exception: + pass + if not latest: + return + + tag, payload = latest + if tag != "FRAME": + return + + pts = payload.get("stable_points", None) + cols = payload.get("stable_colors", None) + pose = payload.get("pose", None) + perf = payload.get("perf", {}) if isinstance(payload, dict) else {} + map_lock = payload.get("map_lock", {}) if isinstance(payload, dict) else {} + continuity = payload.get("continuity", {}) if isinstance(payload, dict) else {} + submap = payload.get("submap", {}) if isinstance(payload, dict) else {} + mode = str(payload.get("mode", self.worker_mode)).upper().strip() if isinstance(payload, dict) else self.worker_mode + nav = payload.get("nav", {}) if isinstance(payload, dict) else {} + safety = payload.get("safety", {}) if isinstance(payload, dict) else {} + rec = payload.get("recording", {}) if isinstance(payload, dict) else {} + wf = str(payload.get("workflow_profile", self.workflow_profile)).upper().strip() if isinstance(payload, dict) else self.workflow_profile + ref_match_points = payload.get("ref_match_points", None) if isinstance(payload, dict) else None + ref_match_colors = payload.get("ref_match_colors", None) if isinstance(payload, dict) else None + ref_match_stats = payload.get("ref_match", {}) if isinstance(payload, dict) else {} + self.last_loc_confidence = float(payload.get("loc_confidence", self.last_loc_confidence)) if isinstance(payload, dict) else self.last_loc_confidence + + if pts is not None and len(pts) > 1: + draw_pts = pts + draw_cols = cols + if len(draw_pts) > self.max_draw: + step = max(2, len(draw_pts) // self.max_draw) + if self.decimate_step > 1: + step = max(step, self.decimate_step) + draw_pts = draw_pts[::step] + if draw_cols is not None and len(draw_cols) == len(pts): + draw_cols = draw_cols[::step] + + if draw_cols is not None: + self.scatter.setData(pos=draw_pts, color=draw_cols) + else: + self.scatter.setData(pos=draw_pts) + + self.lbl_points.setText(f"Stable points: {len(pts)}") + self.current_stable_points = int(len(pts)) + + if ref_match_points is not None: + try: + mpts = np.asarray(ref_match_points, dtype=np.float32) + if mpts.ndim == 2 and mpts.shape[1] == 3 and len(mpts) > 1: + mcols = None + if ref_match_colors is not None: + mcols_arr = np.asarray(ref_match_colors, dtype=np.float32) + if mcols_arr.ndim == 2 and mcols_arr.shape[1] == 4 and len(mcols_arr) == len(mpts): + mcols = mcols_arr + if len(mpts) > self.max_ref_draw: + mstep = max(2, len(mpts) // self.max_ref_draw) + mpts = mpts[::mstep] + if mcols is not None: + mcols = mcols[::mstep] + if mcols is not None: + self.ref_match_scatter.setData(pos=mpts, color=mcols, size=1.5) + else: + self.ref_match_scatter.setData(pos=mpts, size=1.5) + else: + self.ref_match_scatter.setData( + pos=np.zeros((1, 3), dtype=np.float32), + color=np.zeros((1, 4), dtype=np.float32), + size=1.0, + ) + except Exception: + pass + elif str(mode).upper().strip() != "LOCALIZE_ONLY": + self.ref_match_scatter.setData( + pos=np.zeros((1, 3), dtype=np.float32), + color=np.zeros((1, 4), dtype=np.float32), + size=1.0, + ) + + if pose is not None: + try: + x, y, z = float(pose[0, 3]), float(pose[1, 3]), float(pose[2, 3]) + self.lbl_pose.setText(f"Pos: {x:.2f}, {y:.2f}, {z:.2f}") + self.axis.resetTransform() + self.axis.translate(x, y, z) + except Exception: + pass + + if isinstance(perf, dict) and perf: + try: + in_fps = float(perf.get("input_fps", 0.0)) + out_fps = float(perf.get("publish_fps", 0.0)) + icp_ms = float(perf.get("icp_ms", 0.0)) + cpu_pct = float(perf.get("cpu_percent", 0.0)) + qlag = int(perf.get("queue_lag", 0)) + growth = float(perf.get("stable_growth_per_sec", 0.0)) + freeze_count = int(map_lock.get("freeze_count", 0)) if isinstance(map_lock, dict) else 0 + c_rej_total = int(continuity.get("reject_count", 0)) if isinstance(continuity, dict) else 0 + c_rej_streak = int(continuity.get("reject_streak", 0)) if isinstance(continuity, dict) else 0 + self.lbl_perf_fps.setText(f"FPS in/out: {in_fps:.1f} / {out_fps:.1f}") + self.lbl_perf_icp.setText(f"ICP: {icp_ms:.1f} ms CPU: {cpu_pct:.1f}%") + hold_txt = f" Hold: {freeze_count}" if freeze_count > 0 else "" + self.lbl_perf_queue.setText( + f"Queue lag: {qlag} Growth: {growth:.1f} pts/s{hold_txt} Cont: {c_rej_streak}/{c_rej_total}" + ) + except Exception: + pass + + if isinstance(rec, dict): + self.recording_enabled = bool(rec.get("enabled", self.recording_enabled)) + self.recording_frames = int(rec.get("frames", self.recording_frames)) + self.recording_dropped = int(rec.get("dropped", self.recording_dropped)) + + if mode: + self.worker_mode = mode + if wf: + self._apply_workflow_ui_rules(wf, update_label=True) + mode_suffix = "" + if isinstance(map_lock, dict) and bool(map_lock.get("freeze_active", False)): + mode_suffix = " [ROTATE HOLD]" + submap_suffix = "" + if isinstance(submap, dict): + if bool(submap.get("enabled", False)) and bool(submap.get("active", False)): + lg = int(submap.get("local_points", 0)) + gg = int(submap.get("global_points", 0)) + submap_suffix = f" Submap L/G:{lg}/{gg}" + elif bool(submap.get("enabled", False)): + submap_suffix = " Submap ON" + self.lbl_mode.setText( + f"Mode: {self.worker_mode} Rec: {'ON' if self.recording_enabled else 'OFF'} ({self.recording_frames}){mode_suffix}{submap_suffix}" + ) + + if isinstance(nav, dict): + goal = nav.get("goal", None) + cmd = nav.get("cmd", {}) if isinstance(nav.get("cmd", {}), dict) else {} + lin = float(cmd.get("linear_mps", 0.0)) + ang = float(cmd.get("angular_rps", 0.0)) + if goal and isinstance(goal, (list, tuple)) and len(goal) >= 2: + gx = float(goal[0]); gy = float(goal[1]) + self.lbl_nav.setText(f"Nav: goal {gx:.2f},{gy:.2f} cmd {lin:.2f}/{ang:.2f}") + else: + self.lbl_nav.setText(f"Nav: goal none cmd {lin:.2f}/{ang:.2f}") + + if isinstance(ref_match_stats, dict) and ref_match_stats: + matched_ratio = float(ref_match_stats.get("matched_ratio", self.last_loc_match_ratio)) + self.last_loc_match_ratio = matched_ratio + matched = int(ref_match_stats.get("matched", 0)) + near = int(ref_match_stats.get("near", 0)) + unmatched = int(ref_match_stats.get("unmatched", 0)) + confirmed = int(ref_match_stats.get("confirmed", 0)) + self.lbl_loc_match.setText( + f"Match: {matched_ratio * 100.0:.0f}% C:{confirmed} M:{matched} N:{near} U:{unmatched} Conf:{self.last_loc_confidence:.2f}" + ) + elif not self._workflow_requires_ref_map(): + self.lbl_loc_match.setText("Match: n/a") + + if isinstance(safety, dict) and bool(safety.get("emergency", False)): + reasons = safety.get("reasons", []) + rs = ",".join(str(x) for x in reasons[:2]) if isinstance(reasons, list) else "safety" + self.set_status(f"SAFETY STOP: {rs}", "#ff4444") + + def closeEvent(self, event): + try: + if self.recording_enabled: + self.client.record_stop(True, self.txt_name.text().strip() or "slam_recording") + # If save is armed, request one final export before shutting down worker. + self.client.stop_mapping() + if self.request_map_export_if_armed(): + end_t = time.monotonic() + 1.2 + while time.monotonic() < end_t: + QApplication.processEvents() + time.sleep(0.05) + self.client.stop_process() + except Exception: + pass + event.accept() + + +def main(): + signal.signal(signal.SIGINT, signal.SIG_DFL) + app = QApplication(sys.argv) + app.setStyle("Fusion") + w = UltimateDashboard() + w.show() + sys.exit(app.exec()) + + +if __name__ == "__main__": + main() diff --git a/Lidar/.bak-before-prod-sync/SLAM_MAP.py b/Lidar/.bak-before-prod-sync/SLAM_MAP.py new file mode 100644 index 0000000..b3570de --- /dev/null +++ b/Lidar/.bak-before-prod-sync/SLAM_MAP.py @@ -0,0 +1,118 @@ +# SLAM_MAP.py +from __future__ import annotations + +import json +import os +from dataclasses import dataclass +from pathlib import Path +import numpy as np + + +def load_slam_config() -> dict: + import json, os + from pathlib import Path + + cfg_path = os.environ.get("SLAM_CONFIG", "").strip() + p = Path(cfg_path) if cfg_path else (Path(__file__).resolve().parent / "SLAM_Config.json") + + if not p.exists(): + raise FileNotFoundError(f"Missing config file: {p}") + + text = p.read_text(encoding="utf-8").strip() + if not text: + raise RuntimeError("SLAM_Config.json is empty.") + + return json.loads(text) + + +@dataclass +class MapConfig: + display_voxel: float + save_voxel: float + data_folder: str + save_extension: str + + @staticmethod + def from_config_file() -> "MapConfig": + cfg = load_slam_config() + maps_dir = str(cfg["app"]["maps_dir"]) + return MapConfig( + display_voxel=float(cfg["map"]["display_voxel"]), + save_voxel=float(cfg["map"]["save_voxel"]), + data_folder=maps_dir, + save_extension=str(cfg["map"]["save_extension"]), + ) + + +def _voxel_downsample_numpy(points: np.ndarray, voxel: float) -> np.ndarray: + if points is None or len(points) == 0: + return np.zeros((0, 3), dtype=np.float32) + if voxel <= 0: + return points.astype(np.float32, copy=False) + + keys = np.floor(points / voxel).astype(np.int32) + uniq, inv = np.unique(keys, axis=0, return_inverse=True) + + out = np.zeros((len(uniq), 3), dtype=np.float64) + cnt = np.zeros((len(uniq),), dtype=np.int64) + np.add.at(out, inv, points.astype(np.float64, copy=False)) + np.add.at(cnt, inv, 1) + out /= np.maximum(cnt[:, None], 1) + return out.astype(np.float32) + + +class StableMapLayer: + def __init__(self, cfg: MapConfig | None = None): + self.cfg = cfg if cfg is not None else MapConfig.from_config_file() + Path(self.cfg.data_folder).mkdir(parents=True, exist_ok=True) + self._points = np.zeros((0, 3), dtype=np.float32) + + def reset(self): + self._points = np.zeros((0, 3), dtype=np.float32) + + def set_points(self, pts: np.ndarray): + self._points = pts.astype(np.float32, copy=True) if pts is not None else np.zeros((0, 3), dtype=np.float32) + + def get_points(self) -> np.ndarray: + return self._points + + def get_display_points(self) -> np.ndarray: + return _voxel_downsample_numpy(self._points, float(self.cfg.display_voxel)) + + def get_save_points(self) -> np.ndarray: + return _voxel_downsample_numpy(self._points, float(self.cfg.save_voxel)) + + def export_map(self, base_name: str) -> str: + """ + Save stable map into maps_dir (no subfolders). + """ + import open3d as o3d + + pts = self.get_save_points() + if pts is None or len(pts) < 20: + raise RuntimeError("Not enough stable points to save.") + + base = (base_name or "").strip() or "map_robot" + ext = self.cfg.save_extension.strip() or ".ply" + if base.endswith(ext): + base = base[: -len(ext)] + + filename = f"{base}{ext}" + n = 1 + folder = Path(self.cfg.data_folder) + while (folder / filename).exists(): + filename = f"{base}({n}){ext}" + n += 1 + + full = str(folder / filename) + pcd = o3d.geometry.PointCloud() + pcd.points = o3d.utility.Vector3dVector(pts.astype(np.float64, copy=False)) + o3d.io.write_point_cloud(full, pcd) + return full + + def load_map(self, filepath: str) -> np.ndarray: + import open3d as o3d + pcd = o3d.io.read_point_cloud(filepath) + pts = np.asarray(pcd.points).astype(np.float32) + self.set_points(pts) + return pts diff --git a/Lidar/.bak-before-prod-sync/SLAM_NavRuntime.py b/Lidar/.bak-before-prod-sync/SLAM_NavRuntime.py new file mode 100644 index 0000000..4bae5c7 --- /dev/null +++ b/Lidar/.bak-before-prod-sync/SLAM_NavRuntime.py @@ -0,0 +1,514 @@ +from __future__ import annotations + +import heapq +import math +from dataclasses import dataclass +from typing import Any, Dict, Iterable, List, Optional, Tuple + +import numpy as np + + +def _safe_float(v: Any, default: float) -> float: + try: + return float(v) + except Exception: + return float(default) + + +def _safe_int(v: Any, default: int) -> int: + try: + return int(v) + except Exception: + return int(default) + + +def _as_bool(v: Any, default: bool) -> bool: + if v is None: + return default + if isinstance(v, bool): + return v + if isinstance(v, (int, float)): + return bool(v) + return str(v).strip().lower() in ("1", "true", "yes", "on") + + +def _inflate_binary(mask: np.ndarray, radius_cells: int) -> np.ndarray: + if radius_cells <= 0: + return mask.copy() + h, w = mask.shape + out = mask.copy() + rr = int(radius_cells) * int(radius_cells) + offsets: List[Tuple[int, int]] = [] + for dy in range(-radius_cells, radius_cells + 1): + for dx in range(-radius_cells, radius_cells + 1): + if (dy * dy + dx * dx) <= rr: + offsets.append((dy, dx)) + for dy, dx in offsets: + ys = max(0, -dy) + ye = min(h, h - dy) + xs = max(0, -dx) + xe = min(w, w - dx) + yd = max(0, dy) + xd = max(0, dx) + out[yd : yd + (ye - ys), xd : xd + (xe - xs)] |= mask[ys:ye, xs:xe] + return out + + +@dataclass +class LiveCostmapConfig: + enabled: bool = True + resolution_m: float = 0.10 + z_min_m: float = -0.40 + z_max_m: float = 1.20 + padding_m: float = 0.80 + inflation_radius_m: float = 0.25 + dynamic_decay_sec: float = 1.5 + dynamic_min_hits: int = 2 + blocked_cost: int = 220 + max_width_cells: int = 900 + max_height_cells: int = 900 + + @staticmethod + def from_dict(d: Dict[str, Any] | None) -> "LiveCostmapConfig": + src = d or {} + return LiveCostmapConfig( + enabled=_as_bool(src.get("enabled", True), True), + resolution_m=max(0.02, _safe_float(src.get("resolution_m", 0.10), 0.10)), + z_min_m=_safe_float(src.get("z_min_m", -0.40), -0.40), + z_max_m=_safe_float(src.get("z_max_m", 1.20), 1.20), + padding_m=max(0.0, _safe_float(src.get("padding_m", 0.80), 0.80)), + inflation_radius_m=max(0.0, _safe_float(src.get("inflation_radius_m", 0.25), 0.25)), + dynamic_decay_sec=max(0.2, _safe_float(src.get("dynamic_decay_sec", 1.5), 1.5)), + dynamic_min_hits=max(1, _safe_int(src.get("dynamic_min_hits", 2), 2)), + blocked_cost=int(np.clip(_safe_int(src.get("blocked_cost", 220), 220), 100, 255)), + max_width_cells=max(100, _safe_int(src.get("max_width_cells", 900), 900)), + max_height_cells=max(100, _safe_int(src.get("max_height_cells", 900), 900)), + ) + + def patched(self, patch: Dict[str, Any] | None) -> "LiveCostmapConfig": + src = patch or {} + return LiveCostmapConfig.from_dict( + { + "enabled": src.get("enabled", self.enabled), + "resolution_m": src.get("resolution_m", self.resolution_m), + "z_min_m": src.get("z_min_m", self.z_min_m), + "z_max_m": src.get("z_max_m", self.z_max_m), + "padding_m": src.get("padding_m", self.padding_m), + "inflation_radius_m": src.get("inflation_radius_m", self.inflation_radius_m), + "dynamic_decay_sec": src.get("dynamic_decay_sec", self.dynamic_decay_sec), + "dynamic_min_hits": src.get("dynamic_min_hits", self.dynamic_min_hits), + "blocked_cost": src.get("blocked_cost", self.blocked_cost), + "max_width_cells": src.get("max_width_cells", self.max_width_cells), + "max_height_cells": src.get("max_height_cells", self.max_height_cells), + } + ) + + +class LiveCostmapRuntime: + """ + Maintains real-time static + dynamic + inflated obstacle layers. + Static layer comes from SLAM stable points; dynamic layer comes from live points. + """ + + def __init__(self, cfg: LiveCostmapConfig): + self.cfg = cfg + self._dynamic_cells: Dict[Tuple[int, int], Tuple[int, float]] = {} + self._grid: Optional[Dict[str, Any]] = None + + def reset(self) -> None: + self._dynamic_cells.clear() + self._grid = None + + def _clip_nav_band(self, points: Optional[np.ndarray]) -> np.ndarray: + if points is None: + return np.zeros((0, 3), dtype=np.float32) + pts = np.asarray(points, dtype=np.float32) + if pts.ndim != 2 or pts.shape[1] < 3 or len(pts) == 0: + return np.zeros((0, 3), dtype=np.float32) + zmin = float(self.cfg.z_min_m) + zmax = float(self.cfg.z_max_m) + m = (pts[:, 2] >= zmin) & (pts[:, 2] <= zmax) + return pts[m, :3] + + @staticmethod + def _grid_indices(xy: np.ndarray, min_xy: np.ndarray, res: float, w: int, h: int) -> Tuple[np.ndarray, np.ndarray]: + gx = np.floor((xy[:, 0] - min_xy[0]) / res).astype(np.int32) + gy = np.floor((xy[:, 1] - min_xy[1]) / res).astype(np.int32) + gx = np.clip(gx, 0, w - 1) + gy = np.clip(gy, 0, h - 1) + return gx, gy + + def world_to_grid(self, x: float, y: float) -> Optional[Tuple[int, int]]: + if self._grid is None: + return None + origin = np.asarray(self._grid["origin_xy"], dtype=np.float64) + res = float(self._grid["resolution_m"]) + shape = tuple(self._grid["shape_hw"]) + h, w = int(shape[0]), int(shape[1]) + gx = int(math.floor((float(x) - origin[0]) / res)) + gy = int(math.floor((float(y) - origin[1]) / res)) + if gx < 0 or gy < 0 or gx >= w or gy >= h: + return None + return gx, gy + + def grid_to_world(self, gx: int, gy: int) -> Optional[Tuple[float, float]]: + if self._grid is None: + return None + origin = np.asarray(self._grid["origin_xy"], dtype=np.float64) + res = float(self._grid["resolution_m"]) + x = origin[0] + (float(gx) + 0.5) * res + y = origin[1] + (float(gy) + 0.5) * res + return float(x), float(y) + + def cost_at_world(self, x: float, y: float) -> int: + if self._grid is None: + return 0 + idx = self.world_to_grid(x, y) + if idx is None: + return 255 + gx, gy = idx + cost = np.asarray(self._grid["costmap"], dtype=np.uint8) + return int(cost[gy, gx]) + + def occupied_near(self, x: float, y: float, radius_m: float, cost_thresh: Optional[int] = None) -> bool: + if self._grid is None: + return False + thresh = int(self.cfg.blocked_cost if cost_thresh is None else cost_thresh) + idx = self.world_to_grid(x, y) + if idx is None: + return True + gx, gy = idx + cost = np.asarray(self._grid["costmap"], dtype=np.uint8) + h, w = cost.shape + rc = int(math.ceil(max(0.0, float(radius_m)) / float(self._grid["resolution_m"]))) + ys = max(0, gy - rc) + ye = min(h, gy + rc + 1) + xs = max(0, gx - rc) + xe = min(w, gx + rc + 1) + return bool(np.any(cost[ys:ye, xs:xe] >= thresh)) + + def _compute_bounds(self, static_pts: np.ndarray, live_pts: np.ndarray) -> Optional[Tuple[np.ndarray, np.ndarray]]: + has_static = len(static_pts) > 0 + has_live = len(live_pts) > 0 + if not has_static and not has_live: + return None + if has_static and has_live: + all_xy = np.vstack((static_pts[:, :2], live_pts[:, :2])) + elif has_static: + all_xy = static_pts[:, :2] + else: + all_xy = live_pts[:, :2] + pad = float(self.cfg.padding_m) + mn = all_xy.min(axis=0) - pad + mx = all_xy.max(axis=0) + pad + return mn.astype(np.float64), mx.astype(np.float64) + + def _clamp_grid_size(self, mn: np.ndarray, mx: np.ndarray, res: float) -> Tuple[np.ndarray, np.ndarray, float, int, int]: + span = np.maximum(mx - mn, res) + w = int(np.ceil(span[0] / res)) + 1 + h = int(np.ceil(span[1] / res)) + 1 + res_out = float(res) + if w > int(self.cfg.max_width_cells) or h > int(self.cfg.max_height_cells): + sx = float(w) / float(self.cfg.max_width_cells) + sy = float(h) / float(self.cfg.max_height_cells) + scale = max(sx, sy) + res_out = res_out * scale + span = np.maximum(mx - mn, res_out) + w = int(np.ceil(span[0] / res_out)) + 1 + h = int(np.ceil(span[1] / res_out)) + 1 + return mn, mx, float(res_out), int(w), int(h) + + def update( + self, + stable_points_world: Optional[np.ndarray], + live_points_world: Optional[np.ndarray], + now: float, + ) -> Optional[Dict[str, Any]]: + if not self.cfg.enabled: + return None + + static_pts = self._clip_nav_band(stable_points_world) + live_pts = self._clip_nav_band(live_points_world) + + bounds = self._compute_bounds(static_pts, live_pts) + if bounds is None: + # decay dynamic memory even when there is no input + self._dynamic_cells = { + k: v + for k, v in self._dynamic_cells.items() + if (float(now) - float(v[1])) <= float(self.cfg.dynamic_decay_sec) + } + return None + + mn, mx = bounds + mn, mx, res, w, h = self._clamp_grid_size(mn, mx, float(self.cfg.resolution_m)) + + static_occ = np.zeros((h, w), dtype=bool) + if len(static_pts) > 0: + gx, gy = self._grid_indices(static_pts[:, :2], mn, res, w, h) + static_occ[gy, gx] = True + + # age out dynamic memory first + max_age = float(self.cfg.dynamic_decay_sec) + new_dyn: Dict[Tuple[int, int], Tuple[int, float]] = {} + for (cx, cy), (hits, ts) in self._dynamic_cells.items(): + if (float(now) - float(ts)) <= max_age and 0 <= cx < w and 0 <= cy < h: + new_dyn[(cx, cy)] = (int(hits), float(ts)) + self._dynamic_cells = new_dyn + + if len(live_pts) > 0: + gx_l, gy_l = self._grid_indices(live_pts[:, :2], mn, res, w, h) + for gx, gy in zip(gx_l.tolist(), gy_l.tolist()): + if static_occ[gy, gx]: + continue + k = (int(gx), int(gy)) + old_hits, _ = self._dynamic_cells.get(k, (0, float(now))) + self._dynamic_cells[k] = (int(old_hits) + 1, float(now)) + + dynamic_occ = np.zeros((h, w), dtype=bool) + min_hits = int(self.cfg.dynamic_min_hits) + for (gx, gy), (hits, ts) in self._dynamic_cells.items(): + if hits >= min_hits and (float(now) - float(ts)) <= max_age: + if 0 <= gx < w and 0 <= gy < h: + dynamic_occ[gy, gx] = True + + occ = static_occ | dynamic_occ + inf_cells = int(np.ceil(float(self.cfg.inflation_radius_m) / res)) + inflated = _inflate_binary(occ, inf_cells) + + cost = np.zeros((h, w), dtype=np.uint8) + cost[inflated] = 180 + cost[dynamic_occ] = 220 + cost[static_occ] = 255 + + out = { + "costmap": cost, + "static_mask": static_occ, + "dynamic_mask": dynamic_occ, + "inflated_mask": inflated, + "origin_xy": mn.astype(np.float32), + "resolution_m": float(res), + "shape_hw": [int(h), int(w)], + "static_cells": int(np.count_nonzero(static_occ)), + "dynamic_cells": int(np.count_nonzero(dynamic_occ)), + "inflated_cells": int(np.count_nonzero(inflated)), + } + self._grid = out + return { + "shape": [int(h), int(w)], + "resolution_m": float(res), + "origin_xy": [float(mn[0]), float(mn[1])], + "static_cells": int(out["static_cells"]), + "dynamic_cells": int(out["dynamic_cells"]), + "inflated_cells": int(out["inflated_cells"]), + } + + @property + def grid(self) -> Optional[Dict[str, Any]]: + return self._grid + + +class GlobalAStarPlanner: + def __init__(self, blocked_cost: int = 220): + self.blocked_cost = int(np.clip(int(blocked_cost), 100, 255)) + + @staticmethod + def _heur(a: Tuple[int, int], b: Tuple[int, int]) -> float: + return float(math.hypot(float(a[0] - b[0]), float(a[1] - b[1]))) + + @staticmethod + def _neighbors(x: int, y: int, w: int, h: int) -> Iterable[Tuple[int, int, float]]: + for dy in (-1, 0, 1): + for dx in (-1, 0, 1): + if dx == 0 and dy == 0: + continue + nx = x + dx + ny = y + dy + if 0 <= nx < w and 0 <= ny < h: + step = 1.41421356 if (dx != 0 and dy != 0) else 1.0 + yield nx, ny, step + + def plan( + self, + costmap: np.ndarray, + origin_xy: np.ndarray, + resolution_m: float, + start_xy: Tuple[float, float], + goal_xy: Tuple[float, float], + max_expansions: int = 120000, + ) -> List[Tuple[float, float]]: + cost = np.asarray(costmap, dtype=np.uint8) + if cost.ndim != 2: + return [] + h, w = cost.shape + origin = np.asarray(origin_xy, dtype=np.float64) + res = float(resolution_m) + + def to_grid(x: float, y: float) -> Optional[Tuple[int, int]]: + gx = int(math.floor((float(x) - origin[0]) / res)) + gy = int(math.floor((float(y) - origin[1]) / res)) + if gx < 0 or gy < 0 or gx >= w or gy >= h: + return None + return gx, gy + + def to_world(gx: int, gy: int) -> Tuple[float, float]: + return ( + float(origin[0] + (float(gx) + 0.5) * res), + float(origin[1] + (float(gy) + 0.5) * res), + ) + + s = to_grid(float(start_xy[0]), float(start_xy[1])) + g = to_grid(float(goal_xy[0]), float(goal_xy[1])) + if s is None or g is None: + return [] + if int(cost[s[1], s[0]]) >= self.blocked_cost or int(cost[g[1], g[0]]) >= self.blocked_cost: + return [] + + open_heap: List[Tuple[float, float, Tuple[int, int]]] = [] + heapq.heappush(open_heap, (self._heur(s, g), 0.0, s)) + came_from: Dict[Tuple[int, int], Tuple[int, int]] = {} + g_score: Dict[Tuple[int, int], float] = {s: 0.0} + closed: Dict[Tuple[int, int], bool] = {} + + expansions = 0 + while open_heap: + _, cur_g, cur = heapq.heappop(open_heap) + if closed.get(cur, False): + continue + closed[cur] = True + if cur == g: + break + expansions += 1 + if expansions >= int(max_expansions): + import sys + print( + f"[A*] expansion limit {max_expansions} reached; no path found " + f"from {start_xy} to {goal_xy}", + file=sys.stderr, + ) + return [] + + cx, cy = cur + for nx, ny, step in self._neighbors(cx, cy, w, h): + if int(cost[ny, nx]) >= self.blocked_cost: + continue + ng = float(cur_g + step + (float(cost[ny, nx]) / 255.0) * 2.0) + node = (nx, ny) + if ng < float(g_score.get(node, 1e18)): + g_score[node] = ng + came_from[node] = cur + f = ng + self._heur(node, g) + heapq.heappush(open_heap, (f, ng, node)) + + if g not in came_from and g != s: + return [] + + path_cells: List[Tuple[int, int]] = [g] + cur = g + visited_back: set = {g} + while cur != s: + nxt = came_from.get(cur) + if nxt is None or nxt in visited_back: + return [] + visited_back.add(nxt) + cur = nxt + path_cells.append(cur) + path_cells.reverse() + return [to_world(px, py) for (px, py) in path_cells] + + +@dataclass +class LocalPlannerConfig: + lookahead_m: float = 0.8 + max_linear_mps: float = 0.6 + max_angular_rps: float = 1.3 + goal_tolerance_m: float = 0.30 + collision_probe_m: float = 0.6 + + @staticmethod + def from_dict(d: Dict[str, Any] | None) -> "LocalPlannerConfig": + src = d or {} + return LocalPlannerConfig( + lookahead_m=max(0.1, _safe_float(src.get("lookahead_m", 0.8), 0.8)), + max_linear_mps=max(0.05, _safe_float(src.get("max_linear_mps", 0.6), 0.6)), + max_angular_rps=max(0.1, _safe_float(src.get("max_angular_rps", 1.3), 1.3)), + goal_tolerance_m=max(0.05, _safe_float(src.get("goal_tolerance_m", 0.30), 0.30)), + collision_probe_m=max(0.1, _safe_float(src.get("collision_probe_m", 0.6), 0.6)), + ) + + +class LocalReactivePlanner: + def __init__(self, cfg: LocalPlannerConfig): + self.cfg = cfg + + @staticmethod + def _yaw_from_pose(pose: np.ndarray) -> float: + # ZYX yaw from rotation matrix + return float(math.atan2(float(pose[1, 0]), float(pose[0, 0]))) + + @staticmethod + def _wrap_pi(a: float) -> float: + while a > math.pi: + a -= 2.0 * math.pi + while a < -math.pi: + a += 2.0 * math.pi + return a + + def compute_command( + self, + pose_world: np.ndarray, + path_world: List[Tuple[float, float]], + runtime: LiveCostmapRuntime, + ) -> Dict[str, Any]: + cmd = { + "linear_mps": 0.0, + "angular_rps": 0.0, + "goal_reached": False, + "blocked": False, + } + if pose_world is None or np.asarray(pose_world).shape != (4, 4): + return cmd + if not path_world: + return cmd + + p = np.asarray(pose_world, dtype=np.float64) + x = float(p[0, 3]) + y = float(p[1, 3]) + yaw = self._yaw_from_pose(p) + + goal_x, goal_y = float(path_world[-1][0]), float(path_world[-1][1]) + dist_goal = float(math.hypot(goal_x - x, goal_y - y)) + if dist_goal <= float(self.cfg.goal_tolerance_m): + cmd["goal_reached"] = True + return cmd + + target = path_world[-1] + for wx, wy in path_world: + d = float(math.hypot(float(wx) - x, float(wy) - y)) + if d >= float(self.cfg.lookahead_m): + target = (float(wx), float(wy)) + break + + dx = float(target[0] - x) + dy = float(target[1] - y) + target_yaw = float(math.atan2(dy, dx)) + yaw_err = self._wrap_pi(target_yaw - yaw) + + ang = float(np.clip(1.5 * yaw_err, -float(self.cfg.max_angular_rps), float(self.cfg.max_angular_rps))) + lin_scale = max(0.0, 1.0 - min(1.0, abs(yaw_err) / math.pi)) + lin = float(self.cfg.max_linear_mps) * lin_scale + + # Probe short horizon for immediate collision. + n_probe = 6 + step = float(self.cfg.collision_probe_m) / float(n_probe) + for i in range(1, n_probe + 1): + px = x + float(i) * step * math.cos(yaw) + py = y + float(i) * step * math.sin(yaw) + if runtime.cost_at_world(px, py) >= int(runtime.cfg.blocked_cost): + lin = 0.0 + cmd["blocked"] = True + break + + cmd["linear_mps"] = float(lin) + cmd["angular_rps"] = float(ang) + return cmd diff --git a/Lidar/.bak-before-prod-sync/SLAM_Navigation.py b/Lidar/.bak-before-prod-sync/SLAM_Navigation.py new file mode 100644 index 0000000..887e3b5 --- /dev/null +++ b/Lidar/.bak-before-prod-sync/SLAM_Navigation.py @@ -0,0 +1,207 @@ +from __future__ import annotations + +from dataclasses import dataclass +from pathlib import Path +from typing import Any, Dict, Tuple + +import numpy as np + + +def _safe_float(v: Any, default: float) -> float: + try: + return float(v) + except Exception: + return float(default) + + +def _safe_int(v: Any, default: int) -> int: + try: + return int(v) + except Exception: + return int(default) + + +def _as_bool(v: Any, default: bool) -> bool: + if v is None: + return default + if isinstance(v, bool): + return v + if isinstance(v, (int, float)): + return bool(v) + return str(v).strip().lower() in ("1", "true", "yes", "on") + + +@dataclass +class NavigationExportConfig: + enabled: bool = True + min_points: int = 400 + resolution_m: float = 0.05 + z_min_m: float = 0.05 # 5 cm above floor — avoids ground returns, captures low obstacles + z_max_m: float = 1.40 # 1.4 m — covers G1 Edu body (1.25 m) with margin + inflation_radius_m: float = 0.20 + padding_m: float = 0.40 + + @staticmethod + def from_dict(d: Dict[str, Any] | None) -> "NavigationExportConfig": + src = d or {} + return NavigationExportConfig( + enabled=_as_bool(src.get("enabled", True), True), + min_points=max(50, _safe_int(src.get("min_points", 400), 400)), + resolution_m=max(0.01, _safe_float(src.get("resolution_m", 0.05), 0.05)), + z_min_m=_safe_float(src.get("z_min_m", -0.40), -0.40), + z_max_m=_safe_float(src.get("z_max_m", 1.20), 1.20), + inflation_radius_m=max(0.0, _safe_float(src.get("inflation_radius_m", 0.20), 0.20)), + padding_m=max(0.0, _safe_float(src.get("padding_m", 0.40), 0.40)), + ) + + def patched(self, patch: Dict[str, Any] | None) -> "NavigationExportConfig": + src = patch or {} + cur = self + return NavigationExportConfig( + enabled=_as_bool(src.get("enabled", cur.enabled), cur.enabled), + min_points=max(50, _safe_int(src.get("min_points", cur.min_points), cur.min_points)), + resolution_m=max(0.01, _safe_float(src.get("resolution_m", cur.resolution_m), cur.resolution_m)), + z_min_m=_safe_float(src.get("z_min_m", cur.z_min_m), cur.z_min_m), + z_max_m=_safe_float(src.get("z_max_m", cur.z_max_m), cur.z_max_m), + inflation_radius_m=max( + 0.0, + _safe_float(src.get("inflation_radius_m", cur.inflation_radius_m), cur.inflation_radius_m), + ), + padding_m=max(0.0, _safe_float(src.get("padding_m", cur.padding_m), cur.padding_m)), + ) + + +def _inflate_binary(mask: np.ndarray, radius_cells: int) -> np.ndarray: + if radius_cells <= 0: + return mask.copy() + h, w = mask.shape + out = mask.copy() + offsets = [] + rr = radius_cells * radius_cells + for dy in range(-radius_cells, radius_cells + 1): + for dx in range(-radius_cells, radius_cells + 1): + if (dy * dy + dx * dx) <= rr: + offsets.append((dy, dx)) + for dy, dx in offsets: + ys = max(0, -dy) + ye = min(h, h - dy) + xs = max(0, -dx) + xe = min(w, w - dx) + yd = max(0, dy) + xd = max(0, dx) + out[yd : yd + (ye - ys), xd : xd + (xe - xs)] |= mask[ys:ye, xs:xe] + return out + + +def _sanitize_basename(name: str) -> str: + base = (name or "").strip() or "map" + for bad in ("/", "\\", ":", "*", "?", "\"", "<", ">", "|"): + base = base.replace(bad, "_") + return base + + +class NavigationExporter: + def __init__(self, cfg: NavigationExportConfig, data_folder: str): + self.cfg = cfg + self.data_folder = Path(data_folder) + self.data_folder.mkdir(parents=True, exist_ok=True) + + def update_config(self, cfg: NavigationExportConfig) -> None: + self.cfg = cfg + + def _filter_nav_points(self, points: np.ndarray) -> np.ndarray: + pts = np.asarray(points, dtype=np.float32) + if pts.ndim != 2 or pts.shape[1] < 3: + raise RuntimeError("Invalid point array for navigation export.") + zmin, zmax = float(self.cfg.z_min_m), float(self.cfg.z_max_m) + m = (pts[:, 2] >= zmin) & (pts[:, 2] <= zmax) + return pts[m] + + def count_nav_points(self, points: np.ndarray) -> int: + try: + return int(len(self._filter_nav_points(points))) + except Exception: + return 0 + + def _build_grid(self, points: np.ndarray) -> Tuple[np.ndarray, np.ndarray, np.ndarray]: + pts = self._filter_nav_points(points) + if len(pts) < int(self.cfg.min_points): + raise RuntimeError(f"Not enough points for nav export ({len(pts)}).") + + res = float(self.cfg.resolution_m) + pad = float(self.cfg.padding_m) + + min_xy = pts[:, :2].min(axis=0) - pad + max_xy = pts[:, :2].max(axis=0) + pad + span = np.maximum(max_xy - min_xy, res) + w = int(np.ceil(span[0] / res)) + 1 + h = int(np.ceil(span[1] / res)) + 1 + + occ = np.zeros((h, w), dtype=bool) + gx = np.clip(((pts[:, 0] - min_xy[0]) / res).astype(np.int32), 0, w - 1) + gy = np.clip(((pts[:, 1] - min_xy[1]) / res).astype(np.int32), 0, h - 1) + occ[gy, gx] = True + + rad_cells = int(np.ceil(float(self.cfg.inflation_radius_m) / res)) + inf = _inflate_binary(occ, rad_cells) + + return occ, inf, min_xy + + def export(self, base_name: str, points: np.ndarray) -> Dict[str, Any]: + if not self.cfg.enabled: + raise RuntimeError("Navigation export is disabled in config.") + + occ, inf, min_xy = self._build_grid(points) + base = _sanitize_basename(base_name) + folder = self.data_folder + + pgm_name = f"{base}_nav.pgm" + yaml_name = f"{base}_nav.yaml" + cost_name = f"{base}_costmap.npy" + n = 1 + while (folder / pgm_name).exists() or (folder / yaml_name).exists() or (folder / cost_name).exists(): + pgm_name = f"{base}_nav({n}).pgm" + yaml_name = f"{base}_nav({n}).yaml" + cost_name = f"{base}_costmap({n}).npy" + n += 1 + + # ROS map image: 0=occupied, 254=free + img = np.where(inf, 0, 254).astype(np.uint8) + img = np.flipud(img) # image origin top-left, map origin bottom-left + + pgm_path = folder / pgm_name + with open(pgm_path, "wb") as f: + h, w = img.shape + f.write(f"P5\n{w} {h}\n255\n".encode("ascii")) + f.write(img.tobytes()) + + yaml_path = folder / yaml_name + # Write proper YAML — NOT json.dumps (quoted keys break ROS2 Nav2 map_server) + ox, oy = float(min_xy[0]), float(min_xy[1]) + yaml_lines = [ + f"image: {pgm_name}", + f"resolution: {float(self.cfg.resolution_m):.6f}", + f"origin: [{ox:.6f}, {oy:.6f}, 0.000000]", + "negate: 0", + "occupied_thresh: 0.65", + "free_thresh: 0.196", + "mode: trinary", # required by Nav2 map_server + ] + yaml_path.write_text("\n".join(yaml_lines) + "\n", encoding="utf-8") + + cost = np.zeros_like(img, dtype=np.uint8) + occ_img = np.flipud(occ) + inf_img = np.flipud(inf) + cost[inf_img] = 180 + cost[occ_img] = 255 + cost_path = folder / cost_name + np.save(cost_path, cost) + + return { + "pgm": str(pgm_path), + "yaml": str(yaml_path), + "costmap": str(cost_path), + "shape": [int(img.shape[0]), int(img.shape[1])], + "occupied_cells": int(np.count_nonzero(occ)), + "inflated_cells": int(np.count_nonzero(inf)), + } diff --git a/Lidar/.bak-before-prod-sync/SLAM_Safety.py b/Lidar/.bak-before-prod-sync/SLAM_Safety.py new file mode 100644 index 0000000..210f983 --- /dev/null +++ b/Lidar/.bak-before-prod-sync/SLAM_Safety.py @@ -0,0 +1,108 @@ +from __future__ import annotations + +from dataclasses import dataclass +from typing import Any, Dict, Optional + +import numpy as np + + + +def _safe_float(v: Any, default: float) -> float: + try: + return float(v) + except Exception: + return float(default) + + +@dataclass +class SafetyConfig: + enabled: bool = True + stop_radius_m: float = 0.50 # G1 Edu shoulder width ~0.45 m; 0.50 m gives safe margin + stale_localization_sec: float = 1.5 + emergency_hold_sec: float = 0.8 + + @staticmethod + def from_dict(d: Dict[str, Any] | None) -> "SafetyConfig": + src = d or {} + return SafetyConfig( + enabled=bool(src.get("enabled", True)), + stop_radius_m=max(0.05, _safe_float(src.get("stop_radius_m", 0.50), 0.50)), + stale_localization_sec=max(0.2, _safe_float(src.get("stale_localization_sec", 1.5), 1.5)), + emergency_hold_sec=max(0.0, _safe_float(src.get("emergency_hold_sec", 0.8), 0.8)), + ) + + +class SafetySupervisor: + def __init__(self, cfg: SafetyConfig): + self.cfg = cfg + self._last_localize_ok_t = 0.0 + self._last_emergency_t = -1e9 + + def mark_localization(self, ok: bool, now: float) -> None: + if ok: + self._last_localize_ok_t = float(now) + + def evaluate( + self, + now: float, + pose_world: Optional[np.ndarray], + loc_state: str, + nav_runtime: Any, + nav_cmd: Dict[str, Any], + ) -> Dict[str, Any]: + if not self.cfg.enabled: + return { + "enabled": False, + "emergency": False, + "reasons": [], + "cmd": dict(nav_cmd), + } + + reasons = [] + motion_requested = ( + abs(float(nav_cmd.get("linear_mps", 0.0))) > 1e-3 + or abs(float(nav_cmd.get("angular_rps", 0.0))) > 1e-3 + ) + lost = str(loc_state).upper().strip() == "LOST" + if lost and motion_requested: + reasons.append("localization_lost") + + stale = False + if self._last_localize_ok_t > 0.0: + stale = (float(now) - float(self._last_localize_ok_t)) > float(self.cfg.stale_localization_sec) + if stale and motion_requested: + reasons.append("localization_stale") + + collision = False + if pose_world is None or np.asarray(pose_world).shape != (4, 4): + if motion_requested: + collision = True + reasons.append("pose_invalid") + else: + x = float(pose_world[0, 3]) + y = float(pose_world[1, 3]) + try: + collision = bool(nav_runtime.occupied_near(x, y, float(self.cfg.stop_radius_m))) if motion_requested else False + except Exception: + collision = False + if collision: + reasons.append("collision_zone") + + emergency = bool((lost and motion_requested) or (stale and motion_requested) or collision) + if emergency: + self._last_emergency_t = float(now) + + hold_active = (float(now) - float(self._last_emergency_t)) <= float(self.cfg.emergency_hold_sec) + cmd_out = dict(nav_cmd) + if emergency or hold_active: + cmd_out["linear_mps"] = 0.0 + cmd_out["angular_rps"] = 0.0 + cmd_out["blocked"] = True + + return { + "enabled": True, + "emergency": bool(emergency), + "hold": bool(hold_active), + "reasons": reasons, + "cmd": cmd_out, + } diff --git a/Lidar/.bak-before-prod-sync/SLAM_Submap.py b/Lidar/.bak-before-prod-sync/SLAM_Submap.py new file mode 100644 index 0000000..bf15e0f --- /dev/null +++ b/Lidar/.bak-before-prod-sync/SLAM_Submap.py @@ -0,0 +1,413 @@ +from __future__ import annotations + +import os +import pickle +import sys +import threading +from collections import deque +from dataclasses import dataclass +from pathlib import Path +from typing import Any, Deque, Dict, Iterable, Optional, Tuple + +import numpy as np + + +def _as_bool(v: Any, default: bool) -> bool: + if v is None: + return default + if isinstance(v, bool): + return v + if isinstance(v, (int, float)): + return bool(v) + return str(v).strip().lower() in ("1", "true", "yes", "on") + + +def _safe_int(v: Any, default: int) -> int: + try: + return int(v) + except Exception: + return int(default) + + +def _safe_float(v: Any, default: float) -> float: + try: + return float(v) + except Exception: + return float(default) + + +def _safe_profiles(v: Any, default: Tuple[str, ...]) -> Tuple[str, ...]: + if isinstance(v, (list, tuple)): + out = [] + for item in v: + s = str(item).upper().strip() + if s: + out.append(s) + if out: + return tuple(out) + return tuple(default) + + +def _voxel_downsample(points: np.ndarray, voxel_m: float) -> np.ndarray: + pts = np.asarray(points, dtype=np.float32) + if pts.ndim != 2 or pts.shape[1] != 3 or len(pts) == 0: + return np.zeros((0, 3), dtype=np.float32) + v = float(voxel_m) + if v <= 0.0: + return pts + keys = np.floor(pts / v).astype(np.int32) + _, idx = np.unique(keys, axis=0, return_index=True) + return pts[np.sort(idx)] + + +def _pose_delta(pose_a: np.ndarray, pose_b: np.ndarray) -> Tuple[float, float]: + dp = pose_a[:3, 3] - pose_b[:3, 3] + trans = float(np.linalg.norm(dp)) + r = pose_a[:3, :3] @ pose_b[:3, :3].T + ang = float(np.degrees(np.arccos(np.clip((np.trace(r) - 1.0) * 0.5, -1.0, 1.0)))) + return trans, ang + + +@dataclass +class SubmapConfig: + enabled: bool = True + local_window_frames: int = 18 + local_voxel_m: float = 0.08 + global_voxel_m: float = 0.14 + merge_period_sec: float = 0.8 + merge_min_translation_m: float = 0.25 + merge_min_rotation_deg: float = 6.0 + max_global_points: int = 350000 + display_max_points: int = 250000 + apply_profiles: Tuple[str, ...] = ("LOCALIZE_MAP", "LIVE_NAV_MAP") + + @staticmethod + def from_dict(d: Dict[str, Any] | None) -> "SubmapConfig": + src = d or {} + return SubmapConfig( + enabled=_as_bool(src.get("enabled", True), True), + local_window_frames=max(4, _safe_int(src.get("local_window_frames", 18), 18)), + local_voxel_m=max(0.02, _safe_float(src.get("local_voxel_m", 0.08), 0.08)), + global_voxel_m=max(0.02, _safe_float(src.get("global_voxel_m", 0.14), 0.14)), + merge_period_sec=max(0.1, _safe_float(src.get("merge_period_sec", 0.8), 0.8)), + merge_min_translation_m=max( + 0.01, _safe_float(src.get("merge_min_translation_m", 0.25), 0.25) + ), + merge_min_rotation_deg=max( + 0.1, _safe_float(src.get("merge_min_rotation_deg", 6.0), 6.0) + ), + max_global_points=max(20000, _safe_int(src.get("max_global_points", 350000), 350000)), + display_max_points=max(10000, _safe_int(src.get("display_max_points", 250000), 250000)), + apply_profiles=_safe_profiles( + src.get("apply_profiles", ("LOCALIZE_MAP", "LIVE_NAV_MAP")), + ("LOCALIZE_MAP", "LIVE_NAV_MAP"), + ), + ) + + +class SubmapCheckpointer: + """ + Periodically saves LocalGlobalSubmapMapper state to disk so the accumulated + map survives restarts and crashes. + + Usage + ----- + ckpt = SubmapCheckpointer(save_dir, interval_s=60.0) + # in your main loop: + ckpt.maybe_save(mapper) + # on startup: + ckpt.load_into(mapper) # returns True if data was restored + # on shutdown: + ckpt.stop() + """ + + _FILENAME = "submap_checkpoint.pkl" + _PROTO = 5 # pickle protocol (requires Python ≥ 3.8) + + def __init__(self, save_dir: str, interval_s: float = 60.0) -> None: + self._dir = Path(save_dir) + self._dir.mkdir(parents=True, exist_ok=True) + self._interval = max(5.0, float(interval_s)) + self._dst = self._dir / self._FILENAME + self._tmp = self._dir / (self._FILENAME + ".tmp") + self._last_save_t: float = 0.0 + self._lock = threading.Lock() + + def _payload(self, mapper: "LocalGlobalSubmapMapper") -> dict: + """Snapshot all persistent fields from the mapper.""" + return { + "global_pts": np.array(mapper._global_pts, dtype=np.float32, copy=True), + "frames": [np.array(f, dtype=np.float32, copy=True) for f in mapper._frames], + "last_merge_t": float(mapper._last_merge_t), + "last_merge_pose": ( + np.array(mapper._last_merge_pose, dtype=np.float64, copy=True) + if mapper._last_merge_pose is not None + else None + ), + "merge_count": int(mapper._merge_count), + "insert_count": int(mapper._insert_count), + } + + def maybe_save(self, mapper: "LocalGlobalSubmapMapper") -> bool: + """Save if the configured interval has elapsed. Thread-safe. Returns True on save.""" + import time + now = time.time() + with self._lock: + if (now - self._last_save_t) < self._interval: + return False + self._last_save_t = now + + return self._write(self._payload(mapper)) + + def save(self, mapper: "LocalGlobalSubmapMapper") -> bool: + """Force an immediate save. Returns True on success.""" + return self._write(self._payload(mapper)) + + def _write(self, payload: dict) -> bool: + """Atomic write: pickle to .tmp then rename to avoid corrupt checkpoints.""" + try: + with open(self._tmp, "wb") as f: + pickle.dump(payload, f, protocol=self._PROTO) + os.replace(self._tmp, self._dst) # atomic on POSIX + return True + except Exception as exc: + print(f"[SubmapCheckpointer] save failed: {exc}", file=sys.stderr) + return False + + def load_into(self, mapper: "LocalGlobalSubmapMapper") -> bool: + """ + Restore checkpoint into mapper. Returns True if data was loaded. + Must be called before the mapper receives any frames. + """ + if not self._dst.exists(): + return False + try: + with open(self._dst, "rb") as f: + payload = pickle.load(f) + global_pts = np.asarray(payload["global_pts"], dtype=np.float32) + frames_raw = payload.get("frames", []) + mapper._global_pts = global_pts + mapper._frames = deque( + [np.asarray(fr, dtype=np.float32) for fr in frames_raw], + maxlen=int(mapper._frames.maxlen or mapper.cfg.local_window_frames), + ) + mapper._last_merge_t = float(payload.get("last_merge_t", 0.0)) + lmp = payload.get("last_merge_pose") + mapper._last_merge_pose = ( + np.asarray(lmp, dtype=np.float64) if lmp is not None else None + ) + mapper._merge_count = int(payload.get("merge_count", 0)) + mapper._insert_count = int(payload.get("insert_count", 0)) + mapper._rebuild_local() + mapper._global_pts = mapper._trim(mapper._global_pts, int(mapper.cfg.max_global_points)) + return True + except Exception as exc: + print(f"[SubmapCheckpointer] load failed (starting fresh): {exc}", file=sys.stderr) + return False + + def delete(self) -> None: + """Remove the checkpoint file (e.g., after a deliberate RESET).""" + try: + if self._dst.exists(): + self._dst.unlink() + if self._tmp.exists(): + self._tmp.unlink() + except Exception: + pass + + def stop(self) -> None: + """No-op — kept for API symmetry; saves are driven by maybe_save() calls.""" + pass + + +class LocalGlobalSubmapMapper: + """ + Maintains a short-horizon local submap and periodically merges it into a + long-horizon global submap. + """ + + def __init__(self, cfg: SubmapConfig): + self.cfg = cfg + self._frames: Deque[np.ndarray] = deque(maxlen=int(cfg.local_window_frames)) + self._local_pts = np.zeros((0, 3), dtype=np.float32) + self._global_pts = np.zeros((0, 3), dtype=np.float32) + self._last_merge_t = 0.0 + self._last_merge_pose: Optional[np.ndarray] = None + self._merge_count = 0 + self._insert_count = 0 + + def set_config(self, cfg: SubmapConfig, keep_points: bool = True) -> None: + old_frames = list(self._frames) if keep_points else [] + old_global = np.array(self._global_pts, dtype=np.float32, copy=True) if keep_points else np.zeros((0, 3), dtype=np.float32) + old_last_pose = np.array(self._last_merge_pose, dtype=np.float64, copy=True) if (keep_points and self._last_merge_pose is not None) else None + old_last_merge_t = float(self._last_merge_t) if keep_points else 0.0 + old_merge_count = int(self._merge_count) if keep_points else 0 + old_insert_count = int(self._insert_count) if keep_points else 0 + + self.cfg = cfg + self._frames = deque(maxlen=int(cfg.local_window_frames)) + if keep_points and old_frames: + for fr in old_frames[-int(cfg.local_window_frames):]: + self._frames.append(np.asarray(fr, dtype=np.float32)) + self._local_pts = np.zeros((0, 3), dtype=np.float32) + self._global_pts = np.asarray(old_global, dtype=np.float32) if keep_points else np.zeros((0, 3), dtype=np.float32) + self._last_merge_pose = old_last_pose + self._last_merge_t = old_last_merge_t + self._merge_count = old_merge_count + self._insert_count = old_insert_count + self._rebuild_local() + self._global_pts = self._trim(self._global_pts, int(self.cfg.max_global_points)) + + def reset(self) -> None: + self._frames.clear() + self._local_pts = np.zeros((0, 3), dtype=np.float32) + self._global_pts = np.zeros((0, 3), dtype=np.float32) + self._last_merge_t = 0.0 + self._last_merge_pose = None + self._merge_count = 0 + self._insert_count = 0 + + def apply_correction(self, transform: np.ndarray) -> bool: + """ + Apply a rigid transform to all currently held submap data. + Useful when localization updates the global frame estimate and we + want old submap points to remain consistent with new incoming points. + """ + if not self.has_points: + return False + tf = np.asarray(transform, dtype=np.float64) + if tf.shape != (4, 4): + return False + R = np.asarray(tf[:3, :3], dtype=np.float64) + t = np.asarray(tf[:3, 3], dtype=np.float64) + try: + if len(self._global_pts) > 0: + self._global_pts = np.asarray((self._global_pts @ R.T) + t, dtype=np.float32) + if len(self._frames) > 0: + frames_tx = deque(maxlen=int(self._frames.maxlen or len(self._frames))) + for fr in self._frames: + fr_np = np.asarray(fr, dtype=np.float32) + if len(fr_np) == 0: + frames_tx.append(fr_np) + else: + frames_tx.append(np.asarray((fr_np @ R.T) + t, dtype=np.float32)) + self._frames = frames_tx + if self._last_merge_pose is not None and np.asarray(self._last_merge_pose).shape == (4, 4): + self._last_merge_pose = tf @ np.asarray(self._last_merge_pose, dtype=np.float64) + self._rebuild_local() + self._global_pts = self._trim(self._global_pts, int(self.cfg.max_global_points)) + return True + except Exception: + return False + + @property + def has_points(self) -> bool: + return bool(len(self._local_pts) > 0 or len(self._global_pts) > 0) + + def _trim(self, pts: np.ndarray, max_n: int) -> np.ndarray: + n = int(len(pts)) + if n <= int(max_n): + return pts + stride = max(2, int(np.ceil(float(n) / float(max_n)))) + out = pts[::stride] + if len(out) > int(max_n): + out = out[: int(max_n)] + return np.asarray(out, dtype=np.float32) + + def _rebuild_local(self) -> None: + if len(self._frames) == 0: + self._local_pts = np.zeros((0, 3), dtype=np.float32) + return + cat = np.concatenate(list(self._frames), axis=0) + ds = _voxel_downsample(cat, float(self.cfg.local_voxel_m)) + self._local_pts = self._trim(ds, max(5000, int(self.cfg.display_max_points))) + + def _should_merge(self, now: float, pose_world: Optional[np.ndarray]) -> bool: + if len(self._local_pts) == 0: + return False + if len(self._global_pts) == 0: + return True + if (float(now) - float(self._last_merge_t)) >= float(self.cfg.merge_period_sec): + return True + if pose_world is None or self._last_merge_pose is None: + return False + try: + pose = np.asarray(pose_world, dtype=np.float64) + if pose.shape != (4, 4): + return False + trans, ang = _pose_delta(pose, self._last_merge_pose) + return bool( + trans >= float(self.cfg.merge_min_translation_m) + or ang >= float(self.cfg.merge_min_rotation_deg) + ) + except Exception: + return False + + def integrate( + self, + points_world: np.ndarray, + now: float, + pose_world: Optional[np.ndarray] = None, + ) -> Dict[str, Any]: + pts = np.asarray(points_world, dtype=np.float32) + if pts.ndim != 2 or pts.shape[1] != 3 or len(pts) == 0: + return self.status(active=False, reason="empty") + + ds = _voxel_downsample(pts, float(self.cfg.local_voxel_m)) + if len(ds) == 0: + return self.status(active=False, reason="empty_downsample") + + self._frames.append(ds) + self._insert_count += 1 + self._rebuild_local() + + merged = False + if self._should_merge(float(now), pose_world): + if len(self._global_pts) == 0: + combo = np.array(self._local_pts, dtype=np.float32, copy=True) + else: + combo = np.concatenate([self._global_pts, self._local_pts], axis=0) + self._global_pts = _voxel_downsample(combo, float(self.cfg.global_voxel_m)) + self._global_pts = self._trim(self._global_pts, int(self.cfg.max_global_points)) + self._last_merge_t = float(now) + if pose_world is not None: + pose = np.asarray(pose_world, dtype=np.float64) + if pose.shape == (4, 4): + self._last_merge_pose = np.array(pose, dtype=np.float64, copy=True) + merged = True + self._merge_count += 1 + + out = self.status(active=True, reason="ok") + out["merged"] = bool(merged) + return out + + def get_display_points(self) -> np.ndarray: + if len(self._global_pts) == 0 and len(self._local_pts) == 0: + return np.zeros((0, 3), dtype=np.float32) + if len(self._global_pts) == 0: + return np.asarray(self._local_pts, dtype=np.float32) + if len(self._local_pts) == 0: + return self._trim(np.asarray(self._global_pts, dtype=np.float32), int(self.cfg.display_max_points)) + combo = np.concatenate([self._global_pts, self._local_pts], axis=0) + disp = _voxel_downsample(combo, float(self.cfg.local_voxel_m)) + return self._trim(disp, int(self.cfg.display_max_points)) + + def status( + self, + active: bool, + reason: str = "ok", + profile: str = "", + profile_allowed: bool = True, + ) -> Dict[str, Any]: + return { + "enabled": bool(self.cfg.enabled), + "active": bool(active), + "reason": str(reason), + "profile": str(profile).upper().strip(), + "profile_allowed": bool(profile_allowed), + "local_points": int(len(self._local_pts)), + "global_points": int(len(self._global_pts)), + "window_frames": int(len(self._frames)), + "merge_count": int(self._merge_count), + "insert_count": int(self._insert_count), + } diff --git a/Lidar/.bak-before-prod-sync/SLAM_Transforms.py b/Lidar/.bak-before-prod-sync/SLAM_Transforms.py new file mode 100644 index 0000000..4d3cdab --- /dev/null +++ b/Lidar/.bak-before-prod-sync/SLAM_Transforms.py @@ -0,0 +1,102 @@ +from __future__ import annotations + +from typing import Optional, Tuple + +import numpy as np + + +def to_world_points(points_sensor: np.ndarray, pose: Optional[np.ndarray]) -> np.ndarray: + """ + Convert sensor-frame points to world frame using pose (world_T_sensor). + Falls back to input points when pose is unavailable/invalid. + """ + if pose is None: + return np.asarray(points_sensor, dtype=np.float32) + try: + pts = np.asarray(points_sensor, dtype=np.float32) + pose_np = np.asarray(pose, dtype=np.float32) + if pts.ndim != 2 or pts.shape[1] != 3 or pose_np.shape != (4, 4): + return pts + rot = pose_np[:3, :3] + trans = pose_np[:3, 3] + return (pts @ rot.T) + trans + except Exception: + return np.asarray(points_sensor, dtype=np.float32) + + +def apply_transform_points(points: Optional[np.ndarray], transform: np.ndarray) -> Optional[np.ndarray]: + if points is None: + return None + pts = np.asarray(points, dtype=np.float32) + if len(pts) == 0: + return pts + try: + tf = np.asarray(transform, dtype=np.float32) + if tf.shape != (4, 4): + return pts + rot = tf[:3, :3] + trans = tf[:3, 3] + return (pts @ rot.T) + trans + except Exception: + return pts + + +def tf_delta(prev_tf: np.ndarray, new_tf: np.ndarray) -> Tuple[float, float]: + try: + a = np.asarray(prev_tf, dtype=np.float64) + b = np.asarray(new_tf, dtype=np.float64) + if a.shape != (4, 4) or b.shape != (4, 4): + return 0.0, 0.0 + dp = b[:3, 3] - a[:3, 3] + trans = float(np.linalg.norm(dp)) + r = b[:3, :3] @ a[:3, :3].T + ang = float(np.degrees(np.arccos(np.clip((np.trace(r) - 1.0) * 0.5, -1.0, 1.0)))) + return trans, ang + except Exception: + return 0.0, 0.0 + + +def blend_rigid_tf(prev_tf: np.ndarray, new_tf: np.ndarray, alpha_t: float, alpha_r: float) -> np.ndarray: + try: + a = np.asarray(prev_tf, dtype=np.float64) + b = np.asarray(new_tf, dtype=np.float64) + if a.shape != (4, 4) or b.shape != (4, 4): + return np.asarray(new_tf, dtype=np.float64) + at = float(np.clip(alpha_t, 0.0, 1.0)) + ar = float(np.clip(alpha_r, 0.0, 1.0)) + out = np.eye(4, dtype=np.float64) + out[:3, 3] = ((1.0 - at) * a[:3, 3]) + (at * b[:3, 3]) + rm = ((1.0 - ar) * a[:3, :3]) + (ar * b[:3, :3]) + u, _, vt = np.linalg.svd(rm, full_matrices=False) + r = u @ vt + if np.linalg.det(r) < 0: + u[:, -1] *= -1.0 + r = u @ vt + out[:3, :3] = r + return out + except Exception: + return np.asarray(new_tf, dtype=np.float64) + + +def yaw_deg_from_tf(tf: np.ndarray) -> float: + try: + m = np.asarray(tf, dtype=np.float64) + if m.shape != (4, 4): + return 0.0 + yaw = np.degrees(np.arctan2(float(m[1, 0]), float(m[0, 0]))) + return float(yaw) + except Exception: + return 0.0 + + +def tf_from_xyzyaw(x: float, y: float, z: float, yaw_deg: float) -> np.ndarray: + yaw = np.deg2rad(float(yaw_deg)) + cy = float(np.cos(yaw)) + sy = float(np.sin(yaw)) + tf = np.eye(4, dtype=np.float64) + tf[:3, :3] = np.array( + [[cy, -sy, 0.0], [sy, cy, 0.0], [0.0, 0.0, 1.0]], + dtype=np.float64, + ) + tf[:3, 3] = np.array([float(x), float(y), float(z)], dtype=np.float64) + return tf diff --git a/Lidar/.bak-before-prod-sync/SLAM_engine.py b/Lidar/.bak-before-prod-sync/SLAM_engine.py new file mode 100644 index 0000000..5742853 --- /dev/null +++ b/Lidar/.bak-before-prod-sync/SLAM_engine.py @@ -0,0 +1,318 @@ +# SLAM_engine.py +from __future__ import annotations + +import json +import os +import time +import multiprocessing as mp +from dataclasses import dataclass +from pathlib import Path +from typing import Any, Optional + +from SLAM_Validation import run_startup_self_check + +# ------------------------- config loader (jsonl) ------------------------- +def load_slam_config() -> dict: + """ + Loads config from: + 1) env SLAM_CONFIG (full path) + 2) ./SLAM_Config.json (same folder as this script) + """ + import json + import os + from pathlib import Path + + cfg_path = os.environ.get("SLAM_CONFIG", "").strip() + if cfg_path: + p = Path(cfg_path) + else: + p = Path(__file__).resolve().parent / "SLAM_Config.json" + + if not p.exists(): + raise FileNotFoundError(f"Missing config file: {p}") + + text = p.read_text(encoding="utf-8").strip() + if not text: + raise RuntimeError("SLAM_Config.json is empty.") + + return json.loads(text) + + +def _config_base_dir() -> Path: + cfg_path = os.environ.get("SLAM_CONFIG", "").strip() + if cfg_path: + return Path(cfg_path).expanduser().resolve().parent + return Path(__file__).resolve().parent + + +def _resolve_from_config_dir(path_value: str | os.PathLike[str]) -> str: + p = Path(path_value).expanduser() + if p.is_absolute(): + return str(p) + return str((_config_base_dir() / p).resolve()) + + + +# ------------------------- dataclasses ------------------------- +@dataclass +class EngineConfig: + config_file: str + host_ip: str + max_range: float + slam_voxel_size: float + pre_downsample_stride: int + keyframe_enabled: bool + keyframe_min_translation_m: float + keyframe_min_rotation_deg: float + tag_filter: bool = True + + +@dataclass +class FilterConfig: + voxel_size: float + hits_threshold: int + window_sec: float + strict_sec: float + use_strict: bool + decay_seconds: float + max_voxels: int + + +@dataclass +class MapConfig: + data_folder: str + display_voxel: float + save_voxel: float + min_points_to_save: int + save_extension: str + + +@dataclass +class LocalizationConfig: + enabled: bool + period_sec: float + min_new_points: int + min_points_for_localize: int + voxel_localize: float + max_corr_mult: float + icp_max_iter: int + accept_fitness: float + accept_rmse: float + ref_display_voxel: float + + +@dataclass +class RuntimeConfig: + publish_hz: float + frame_keep_latest: bool + frame_queue_maxsize: int + status_queue_maxsize: int + cmd_queue_maxsize: int + + +# ------------------------- helpers ------------------------- +def _drain_keep_latest(q: mp.Queue) -> None: + try: + while True: + q.get_nowait() + except Exception: + return + + +def _safe_put(q: mp.Queue, item: Any, keep_latest: bool = False) -> None: + try: + if keep_latest: + _drain_keep_latest(q) + q.put_nowait(item) + except Exception: + pass + + +def build_configs_from_json(cfg: dict) -> tuple[EngineConfig, FilterConfig, MapConfig, LocalizationConfig, RuntimeConfig]: + maps_dir = _resolve_from_config_dir(str(cfg["app"]["maps_dir"])) + + eng = EngineConfig( + config_file=_resolve_from_config_dir(str(cfg["livox"]["config_file"])), + host_ip=cfg["network"]["default_host_ip"], + max_range=float(cfg["slam"]["max_range"]), + slam_voxel_size=float(cfg["slam"]["slam_voxel_size"]), + pre_downsample_stride=int(cfg["slam"]["pre_downsample_stride"]), + keyframe_enabled=bool(cfg["slam"]["keyframe"]["enabled"]), + keyframe_min_translation_m=float(cfg["slam"]["keyframe"]["min_translation_m"]), + keyframe_min_rotation_deg=float(cfg["slam"]["keyframe"]["min_rotation_deg"]), + tag_filter=bool(cfg.get("livox", {}).get("tag_filter", True)), + ) + + filt = FilterConfig( + voxel_size=float(cfg["filter"]["voxel_size"]), + hits_threshold=int(cfg["filter"]["hits_threshold"]), + window_sec=float(cfg["filter"]["window_sec"]), + strict_sec=float(cfg["filter"]["strict_sec"]), + use_strict=bool(cfg["filter"]["use_strict"]), + decay_seconds=float(cfg["filter"]["persistence"]["decay_seconds"]), + max_voxels=int(cfg["filter"]["persistence"]["max_voxels"]), + ) + + mp_cfg = MapConfig( + data_folder=str(maps_dir), + display_voxel=float(cfg["map"]["display_voxel"]), + save_voxel=float(cfg["map"]["save_voxel"]), + min_points_to_save=int(cfg["map"]["min_points_to_save"]), + save_extension=str(cfg["map"]["save_extension"]), + ) + + loc = LocalizationConfig( + enabled=bool(cfg["localization"]["enabled"]), + period_sec=float(cfg["localization"]["period_sec"]), + min_new_points=int(cfg["localization"]["min_new_points"]), + min_points_for_localize=int(cfg["localization"]["min_points_for_localize"]), + voxel_localize=float(cfg["localization"]["voxel_localize"]), + max_corr_mult=float(cfg["localization"]["max_corr_mult"]), + icp_max_iter=int(cfg["localization"]["icp_max_iter"]), + accept_fitness=float(cfg["localization"]["accept_fitness"]), + accept_rmse=float(cfg["localization"]["accept_rmse"]), + ref_display_voxel=float(cfg["localization"]["ref_display_voxel"]), + ) + + run = RuntimeConfig( + publish_hz=float(cfg["runtime"]["publish_hz"]), + frame_keep_latest=bool(cfg["runtime"]["queue"]["frame_keep_latest"]), + frame_queue_maxsize=int(cfg["runtime"]["queue"]["frame_queue_maxsize"]), + status_queue_maxsize=int(cfg["runtime"]["queue"]["status_queue_maxsize"]), + cmd_queue_maxsize=int(cfg["runtime"]["queue"]["cmd_queue_maxsize"]), + ) + return eng, filt, mp_cfg, loc, run + + +# ------------------------- client ------------------------- +class SlamEngineClient: + def __init__(self): + self.cfg_json = load_slam_config() + self.self_check = run_startup_self_check(self.cfg_json, _config_base_dir()) + self.eng_cfg, self.filt_cfg, self.map_cfg, self.loc_cfg, self.run_cfg = build_configs_from_json(self.cfg_json) + + ctx = mp.get_context("spawn") + self.data_q: mp.Queue = ctx.Queue(maxsize=self.run_cfg.frame_queue_maxsize) + self.status_q: mp.Queue = ctx.Queue(maxsize=self.run_cfg.status_queue_maxsize) + self.cmd_q: mp.Queue = ctx.Queue(maxsize=self.run_cfg.cmd_queue_maxsize) + self.proc: Optional[mp.Process] = None + + def start_process(self): + if self.proc is not None and self.proc.is_alive(): + return + + ctx = mp.get_context("spawn") + self.data_q = ctx.Queue(maxsize=self.run_cfg.frame_queue_maxsize) + self.status_q = ctx.Queue(maxsize=self.run_cfg.status_queue_maxsize) + self.cmd_q = ctx.Queue(maxsize=self.run_cfg.cmd_queue_maxsize) + + from SLAM_worker import slam_worker + + self.proc = ctx.Process( + target=slam_worker, + args=(self.data_q, self.status_q, self.cmd_q, self.eng_cfg, self.filt_cfg, self.map_cfg, self.loc_cfg, self.run_cfg), + daemon=True, + ) + self.proc.start() + + def stop_process(self): + try: + self.send("SHUTDOWN") + except Exception: + pass + if self.proc is not None: + self.proc.join(timeout=1.0) + if self.proc.is_alive(): + self.proc.terminate() + self.proc.join(timeout=1.0) + + def send(self, cmd: Any): + if self.proc is None or not self.proc.is_alive(): + self.start_process() + self.cmd_q.put(cmd) + + def connect(self): self.send("CONNECT") + def start_mapping(self): self.send("START") + def pause_mapping(self): self.send("PAUSE") + def stop_mapping(self): self.send("STOP") + def reset_mapping(self): self.send("RESET") + def export_map(self, filename_base: str): self.send(("EXPORT", filename_base)) + def export_nav(self, filename_base: str): self.send(("EXPORT_NAV", filename_base)) + def load_ref_map(self, path: str): self.send(("LOAD_REF", path)) + def load_for_extend(self, path: str): self.send(("LOAD_FOR_EXTEND", path)) + def localize_now(self): self.send("LOCALIZE") + def clear_ref(self): self.send("CLEAR_REF") + def set_density(self, mode: str): self.send(("SET_DENSITY", str(mode))) + def set_min_stable_points(self, value: int): self.send(("SET_MIN_STABLE_POINTS", int(value))) + def set_loop_closure(self, enabled: bool): self.send(("SET_LOOP_CLOSURE", bool(enabled))) + def set_loc_state_machine(self, enabled: bool): self.send(("SET_LOC_STATE_MACHINE", bool(enabled))) + def set_submap_mode(self, enabled: bool, cfg_patch: Optional[dict] = None): + payload = {"enabled": bool(enabled)} + if isinstance(cfg_patch, dict) and cfg_patch: + payload.update(dict(cfg_patch)) + self.send(("SET_SUBMAP_MODE", payload)) + def set_approx_pose(self, x: float, y: float, z: float = 0.0, yaw_deg: Optional[float] = None): + payload = {"x": float(x), "y": float(y), "z": float(z)} + if yaw_deg is not None: + payload["yaw_deg"] = float(yaw_deg) + self.send(("SET_APPROX_POSE", payload)) + def clear_approx_pose(self): + self.send("CLEAR_APPROX_POSE") + def set_autosave(self, enabled: bool, interval_sec: float, base_name: str): + self.send( + ( + "SET_AUTOSAVE", + { + "enabled": bool(enabled), + "interval_sec": float(interval_sec), + "base_name": str(base_name), + }, + ) + ) + def set_nav_export_cfg(self, cfg_patch: dict): + self.send(("SET_NAV_CONFIG", dict(cfg_patch))) + def set_nav_runtime_cfg(self, cfg_patch: dict): + self.send(("SET_NAV_RUNTIME", dict(cfg_patch))) + def set_map_quality_cfg(self, cfg_patch: dict): + self.send(("SET_MAP_QUALITY", dict(cfg_patch))) + def set_filter_tuning(self, cfg_patch: dict): + self.send(("SET_FILTER_TUNING", dict(cfg_patch))) + def set_stability_profile(self, profile: str): + self.send(("SET_STABILITY_PROFILE", str(profile))) + def set_nav_goal(self, x: float, y: float): + self.send(("SET_NAV_GOAL", {"x": float(x), "y": float(y)})) + def clear_nav_goal(self): + self.send("CLEAR_NAV_GOAL") + def start_localize_only(self): + self.send("START_LOCALIZE_ONLY") + def stop_localize_only(self): + self.send("STOP_LOCALIZE_ONLY") + def record_start(self, base_name: str): + self.send(("RECORD_START", {"base_name": str(base_name)})) + def record_stop(self, save: bool = True, base_name: str = ""): + payload = {"save": bool(save)} + if base_name: + payload["base_name"] = str(base_name) + self.send(("RECORD_STOP", payload)) + def mission_start(self, waypoints: list[dict]): + self.send(("MISSION_START", {"waypoints": list(waypoints)})) + def mission_pause(self): + self.send("MISSION_PAUSE") + def mission_resume(self): + self.send("MISSION_RESUME") + def mission_stop(self): + self.send("MISSION_STOP") + def get_self_check(self) -> dict: + return dict(self.self_check) + def sensor_prior(self, sensor: str, pose: Any, confidence: float = 1.0, timestamp: Optional[float] = None): + self.send( + ( + "SENSOR_PRIOR", + { + "sensor": str(sensor), + "pose": pose, + "confidence": float(confidence), + "timestamp": float(time.time()) if timestamp is None else float(timestamp), + }, + ) + ) diff --git a/Lidar/.bak-before-prod-sync/SLAM_worker.py b/Lidar/.bak-before-prod-sync/SLAM_worker.py new file mode 100644 index 0000000..7325746 --- /dev/null +++ b/Lidar/.bak-before-prod-sync/SLAM_worker.py @@ -0,0 +1,3849 @@ +# SLAM_worker.py +from __future__ import annotations + +import time +import queue +import traceback +import threading +import multiprocessing as mp +from collections import deque +from pathlib import Path +from typing import Optional, Any, Dict, List, Tuple + +import numpy as np + +from SLAM_engine import ( + EngineConfig, + FilterConfig, + MapConfig, + LocalizationConfig, + RuntimeConfig, + load_slam_config, +) +from SLAM_Validation import run_startup_self_check + + +def _now() -> float: + return time.time() + + +def _as_bool(v: Any, default: bool = False) -> bool: + if v is None: + return default + if isinstance(v, bool): + return v + if isinstance(v, (int, float)): + return bool(v) + return str(v).strip().lower() in ("1", "true", "yes", "on") + + +def _drain_keep_latest(q: mp.Queue) -> None: + try: + while True: + q.get_nowait() + except Exception: + return + + +def _safe_put(q: mp.Queue, item: Any, keep_latest: bool = False) -> None: + try: + if keep_latest: + _drain_keep_latest(q) + q.put_nowait(item) + except Exception: + pass + + +def slam_worker( + data_q: mp.Queue, + status_q: mp.Queue, + cmd_q: mp.Queue, + eng_cfg: EngineConfig, + filt_cfg: FilterConfig, + map_cfg: MapConfig, + loc_cfg: LocalizationConfig, + run_cfg: RuntimeConfig, +): + # suppress noisy warning from ctypes->numpy conversion + import warnings + warnings.filterwarnings( + "ignore", + message="A builtin ctypes object gave a PEP3118 format string", + category=RuntimeWarning, + ) + + try: + from livox2_python import Livox2 + from kiss_icp.config import load_config + from kiss_icp.pipeline import KissICP + from SLAM_Diagnostics import WorkerDiagnostics + from SLAM_LocalizationService import LocalizationFrameState + from SLAM_Transforms import ( + apply_transform_points as _apply_transform_points, + blend_rigid_tf as _blend_rigid_tf_impl, + tf_delta as _tf_delta_impl, + tf_from_xyzyaw as _tf_from_xyzyaw_impl, + to_world_points as _to_world_points, + yaw_deg_from_tf as _yaw_deg_from_tf_impl, + ) + + from SLAM_Filter import VoxelPersistenceFilter + from SLAM_Filter import FilterConfig as VFilterCfg + from SLAM_Filter import IndoorMapQualityConfig, IndoorMapQualityFilter + + from SLAM_MAP import StableMapLayer + from SLAM_MAP import MapConfig as StableMapCfg + + from SLAM_LoopClosure import LoopClosureConfig, LoopClosureBackend + from SLAM_PlaceRecognition import PlaceRecognitionConfig, PlaceRecognitionIndex + from SLAM_StateMachine import LocalizationStateConfig, LocalizationStateMachine + from SLAM_Submap import SubmapConfig, LocalGlobalSubmapMapper, SubmapCheckpointer + from SLAM_Session import SessionMemoryConfig, SessionTransformStore + from SLAM_Navigation import NavigationExportConfig, NavigationExporter + from SLAM_Fusion import FusionConfig as SensorFusionConfig, SensorPoseFusion + from SLAM_NavRuntime import ( + LiveCostmapConfig, + LiveCostmapRuntime, + GlobalAStarPlanner, + LocalPlannerConfig, + LocalReactivePlanner, + ) + from SLAM_Mission import MissionConfig, WaypointMissionManager + from SLAM_Safety import SafetyConfig, SafetySupervisor + + except Exception as e: + _safe_put(status_q, ("ERROR", f"Import failed: {e}")) + return + + # Notable event keys that survive to the fault log; high-frequency + # status snapshots (LOC_STATE / MODE / FILTER_TUNING) are excluded so + # the log stays readable. + _FAULT_LOG_INFO_KEYS = { + "LOOP", "MAP_LOCK", "MAP_CLEANUP", "RELOC", "AUTOSAVED", "SAVED", + "EXPORT", "NAV_EXPORTED", "WORKFLOW_PROFILE", "AUTOSAVE", + "PLACE_RECOG", "RECORD_SAVED", "SUBMAP_MODE", "LOC_MACHINE", + "MIN_STABLE_POINTS", "LOOP_MODE", + } + + def st(level: str, msg: Any): + _safe_put(status_q, (level, msg)) + # Persist non-routine events to the fault log so post-hoc + # diagnostics (drift root-causing, "did loop closure fire") work + # without the GUI being open at the time. + if diagnostics is None: + return + try: + lvl = str(level).upper().strip() + if lvl in ("WARN", "ERROR"): + diagnostics.note(f"{lvl}: {msg}") + elif lvl == "INFO" and isinstance(msg, dict): + for k in msg.keys(): + key_up = str(k).upper() + if key_up in _FAULT_LOG_INFO_KEYS: + diagnostics.log_state(key_up, msg.get(k)) + break + except Exception: + pass + + Path(map_cfg.data_folder).mkdir(parents=True, exist_ok=True) + diagnostics = None + try: + fault_log_path = Path(map_cfg.data_folder) / "SLAM_worker_fault.log" + diagnostics = WorkerDiagnostics(fault_log_path) + except Exception as e: + diagnostics = None + _safe_put(status_q, ("WARN", f"Diagnostics disabled: {e}")) + try: + full_cfg = load_slam_config() + except Exception: + full_cfg = {} + loc_cfg_raw = full_cfg.get("localization", {}) if isinstance(full_cfg, dict) else {} + guard_cfg = full_cfg.get("mapping_guard", {}) if isinstance(full_cfg, dict) else {} + loc_pt2plane_unsafe = _as_bool( + (loc_cfg_raw or {}).get("allow_point_to_plane_unsafe", False), + False, + ) + loc_use_point_to_plane = _as_bool( + (loc_cfg_raw or {}).get("use_point_to_plane", False), + False, + ) and bool(loc_pt2plane_unsafe) + if _as_bool((loc_cfg_raw or {}).get("use_point_to_plane", False), False) and not loc_pt2plane_unsafe: + _safe_put( + status_q, + ( + "WARN", + "Localization point-to-plane disabled for stability. Set localization.allow_point_to_plane_unsafe=true to force it.", + ), + ) + loc_live_period_sec = max(0.25, float((loc_cfg_raw or {}).get("live_period_sec", 0.55))) + loc_tracking_window_enabled = _as_bool( + (loc_cfg_raw or {}).get("tracking_window_enabled", True), + True, + ) + loc_tracking_window_radius_m = max( + 2.0, + float((loc_cfg_raw or {}).get("tracking_window_radius_m", 8.0)), + ) + loc_tracking_window_min_ref_points = max( + 120, + int((loc_cfg_raw or {}).get("tracking_window_min_ref_points", 450)), + ) + loc_tracking_window_max_ref_points = max( + int(loc_tracking_window_min_ref_points), + int((loc_cfg_raw or {}).get("tracking_window_max_ref_points", 140000)), + ) + loc_global_reloc_anchor_voxel_m = max( + 0.4, + float((loc_cfg_raw or {}).get("global_reloc_anchor_voxel_m", 1.4)), + ) + loc_global_reloc_max_anchors = max( + 8, + int((loc_cfg_raw or {}).get("global_reloc_max_anchors", 24)), + ) + loc_global_reloc_yaw_step_deg = float( + np.clip( + float((loc_cfg_raw or {}).get("global_reloc_yaw_step_deg", 60.0)), + 15.0, + 120.0, + ) + ) + loc_global_reloc_corr_mult = max( + 1.2, + float((loc_cfg_raw or {}).get("global_reloc_corr_mult", 1.9)), + ) + loc_global_reloc_coarse_iter = max( + 4, + int((loc_cfg_raw or {}).get("global_reloc_coarse_iter", 8)), + ) + loc_global_reloc_refine_iter = max( + 8, + int((loc_cfg_raw or {}).get("global_reloc_refine_iter", 20)), + ) + loc_global_reloc_min_corr = max( + 15, + int((loc_cfg_raw or {}).get("global_reloc_min_corr", 25)), + ) + loc_bidir_enabled = _as_bool((loc_cfg_raw or {}).get("bidirectional_check_enabled", True), True) + loc_bidir_min_ratio = float( + np.clip(float((loc_cfg_raw or {}).get("bidirectional_min_ratio", 0.18)), 0.01, 1.0) + ) + loc_bidir_max_rmse = max(0.05, float((loc_cfg_raw or {}).get("bidirectional_max_rmse", 0.55))) + loc_guess_ttl_sec = max(2.0, float((loc_cfg_raw or {}).get("approx_guess_ttl_sec", 60.0))) + loc_guess_crop_radius_m = max( + 2.0, + float((loc_cfg_raw or {}).get("approx_guess_crop_radius_m", 9.0)), + ) + loc_guess_default_z_m = float((loc_cfg_raw or {}).get("approx_guess_default_z_m", 0.0)) + loc_guess_strict_local = _as_bool( + (loc_cfg_raw or {}).get("approx_guess_strict_local", True), + True, + ) + loc_guess_local_radius_m = max( + 1.0, + min( + float(loc_guess_crop_radius_m), + float((loc_cfg_raw or {}).get("approx_guess_local_radius_m", 4.5)), + ), + ) + loc_guess_global_fallback_after_failures = max( + 1, + int((loc_cfg_raw or {}).get("approx_guess_global_fallback_after_failures", 6)), + ) + loc_guess_yaw_step_deg = float( + np.clip( + float((loc_cfg_raw or {}).get("approx_guess_yaw_step_deg", 30.0)), + 10.0, + 120.0, + ) + ) + loc_guess_max_start_offset_m = max( + 1.0, + float((loc_cfg_raw or {}).get("approx_guess_max_start_offset_m", 6.0)), + ) + loc_guess_bootstrap_min_hits = max( + 1, + int((loc_cfg_raw or {}).get("approx_guess_bootstrap_min_hits", 2)), + ) + loc_guess_bootstrap_min_fitness = float( + np.clip( + float((loc_cfg_raw or {}).get("approx_guess_bootstrap_min_fitness", 0.34)), + 0.0, + 1.0, + ) + ) + loc_guess_bootstrap_min_bidir = float( + np.clip( + float((loc_cfg_raw or {}).get("approx_guess_bootstrap_min_bidir", 0.24)), + 0.0, + 1.0, + ) + ) + loc_live_track_strict = _as_bool( + (loc_cfg_raw or {}).get("live_track_strict", True), + True, + ) + loc_live_track_min_fit = float( + np.clip( + float((loc_cfg_raw or {}).get("live_track_min_fitness", 0.42)), + 0.0, + 1.0, + ) + ) + loc_live_track_min_bidir = float( + np.clip( + float((loc_cfg_raw or {}).get("live_track_min_bidir", 0.28)), + 0.0, + 1.0, + ) + ) + loc_live_track_max_step_trans_m = max( + 0.02, + float((loc_cfg_raw or {}).get("live_track_max_step_translation_m", 0.20)), + ) + loc_live_track_max_step_rot_deg = max( + 0.5, + float((loc_cfg_raw or {}).get("live_track_max_step_rotation_deg", 12.0)), + ) + loc_live_stack_enabled = _as_bool((loc_cfg_raw or {}).get("live_stack_enabled", True), True) + loc_live_stack_frames = max(1, int((loc_cfg_raw or {}).get("live_stack_frames", 8))) + loc_live_stack_voxel_m = max( + 0.04, + float((loc_cfg_raw or {}).get("live_stack_voxel_m", max(0.06, float(loc_cfg.voxel_localize) * 0.7))), + ) + loc_live_stack_max_points = max(800, int((loc_cfg_raw or {}).get("live_stack_max_points", 22000))) + loc_live_stack_min_frames = max(1, int((loc_cfg_raw or {}).get("live_stack_min_frames", 2))) + + vis_cfg = full_cfg.get("localization_visualization", {}) if isinstance(full_cfg, dict) else {} + loc_vis_enabled = _as_bool((vis_cfg or {}).get("enabled", True), True) + loc_vis_period_sec = max(0.10, float((vis_cfg or {}).get("period_sec", 0.35))) + loc_vis_voxel_m = max(0.08, float((vis_cfg or {}).get("voxel_m", 0.24))) + loc_vis_max_points = max(4000, int((vis_cfg or {}).get("max_points", 28000))) + loc_vis_local_radius_m = max(2.0, float((vis_cfg or {}).get("local_radius_m", 12.0))) + loc_vis_match_dist_m = max(0.03, float((vis_cfg or {}).get("match_dist_m", 0.30))) + loc_vis_near_dist_m = max(loc_vis_match_dist_m + 0.02, float((vis_cfg or {}).get("near_dist_m", 0.60))) + loc_vis_confirm_frames = max(1, int((vis_cfg or {}).get("confirm_frames", 3))) + loc_vis_decay_per_frame = max(1, int((vis_cfg or {}).get("decay_per_frame", 1))) + + lidar = None + slam = None + filt = None + stable = None + + loop_cfg = LoopClosureConfig.from_dict(full_cfg.get("loop_closure", {})) + loop_backend = LoopClosureBackend(loop_cfg) + + loc_state_cfg = LocalizationStateConfig.from_dict(full_cfg.get("state_machine", {})) + loc_state = LocalizationStateMachine(loc_state_cfg) + + session_cfg = SessionMemoryConfig.from_dict(full_cfg.get("session_memory", {})) + session_store = SessionTransformStore(map_cfg.data_folder, session_cfg) + + nav_cfg = NavigationExportConfig.from_dict(full_cfg.get("navigation_export", {})) + nav_exporter = NavigationExporter(nav_cfg, map_cfg.data_folder) + nav_rt_cfg = LiveCostmapConfig.from_dict(full_cfg.get("navigation_runtime", full_cfg.get("navigation_export", {}))) + nav_runtime = LiveCostmapRuntime(nav_rt_cfg) + nav_global_planner = GlobalAStarPlanner(blocked_cost=int(nav_rt_cfg.blocked_cost)) + nav_local_planner = LocalReactivePlanner(LocalPlannerConfig.from_dict(full_cfg.get("local_planner", {}))) + + fusion_cfg = SensorFusionConfig.from_dict(full_cfg.get("fusion", {})) + sensor_fusion = SensorPoseFusion(fusion_cfg) + + mission_cfg = MissionConfig.from_dict(full_cfg.get("mission", {})) + mission = WaypointMissionManager(mission_cfg) + + safety_cfg = SafetyConfig.from_dict(full_cfg.get("safety", {})) + safety = SafetySupervisor(safety_cfg) + + map_quality_cfg = IndoorMapQualityConfig.from_dict(full_cfg.get("map_quality", {})) + map_quality = IndoorMapQualityFilter(map_quality_cfg) + + submap_cfg = SubmapConfig.from_dict(full_cfg.get("submap_mapping", {})) + submap_mapper = LocalGlobalSubmapMapper(submap_cfg) + submap_mode_enabled = bool(submap_cfg.enabled) + _submap_raw = full_cfg.get("submap_mapping", {}) or {} + _ckpt_enabled = _as_bool(_submap_raw.get("checkpoint_enabled", True), True) + _ckpt_interval = max(10.0, float(_submap_raw.get("checkpoint_interval_sec", 60.0))) + submap_ckpt = SubmapCheckpointer(str(map_cfg.data_folder), interval_s=_ckpt_interval) if _ckpt_enabled else None + if submap_ckpt is not None and submap_mode_enabled: + if submap_ckpt.load_into(submap_mapper): + st("INFO", f"Submap checkpoint restored from {map_cfg.data_folder}") + place_cfg = PlaceRecognitionConfig.from_dict(full_cfg.get("place_recognition", {})) + place_recog = PlaceRecognitionIndex(place_cfg, Path(__file__).resolve().parent) + + livox_dbg_cfg = full_cfg.get("livox_debug", {}) or {} + livox_debug_enabled = _as_bool(livox_dbg_cfg.get("enabled", False), False) + livox_print_every_n = max(1, int(livox_dbg_cfg.get("print_every_n_frames", 20))) + + pose_guard_enabled = _as_bool((guard_cfg or {}).get("enabled", True), True) + pose_guard_max_trans = max(0.08, float((guard_cfg or {}).get("max_frame_translation_m", 0.45))) + pose_guard_max_rot_deg = max(2.0, float((guard_cfg or {}).get("max_frame_rotation_deg", 30.0))) + pose_guard_ref_dt = max(0.01, float((guard_cfg or {}).get("reference_dt_sec", 0.06))) + + map_lock_cfg = full_cfg.get("mapping_lock", {}) if isinstance(full_cfg, dict) else {} + map_lock_enabled = _as_bool((map_lock_cfg or {}).get("enabled", True), True) + map_lock_period_sec = max(0.5, float((map_lock_cfg or {}).get("period_sec", 1.5))) + map_lock_voxel_m = max(0.05, float((map_lock_cfg or {}).get("voxel_m", 0.22))) + map_lock_max_corr_m = max(0.3, float((map_lock_cfg or {}).get("max_corr_m", 1.2))) + map_lock_min_stable_pts = max(200, int((map_lock_cfg or {}).get("min_stable_points", 700))) + map_lock_accept_fitness = float(np.clip(float((map_lock_cfg or {}).get("accept_fitness", 0.28)), 0.0, 1.0)) + map_lock_accept_rmse = max(0.05, float((map_lock_cfg or {}).get("accept_rmse", 0.40))) + map_lock_max_trans_m = max(0.02, float((map_lock_cfg or {}).get("max_step_translation_m", 0.35))) + map_lock_max_rot_deg = max(1.0, float((map_lock_cfg or {}).get("max_step_rotation_deg", 15.0))) + map_lock_apply_damping = _as_bool((map_lock_cfg or {}).get("apply_damping", True), True) + map_lock_apply_alpha_t = float(np.clip(float((map_lock_cfg or {}).get("apply_alpha_translation", 0.42)), 0.05, 1.0)) + map_lock_apply_alpha_r = float(np.clip(float((map_lock_cfg or {}).get("apply_alpha_rotation", 0.50)), 0.05, 1.0)) + map_lock_apply_max_trans_m = max(0.01, float((map_lock_cfg or {}).get("apply_max_translation_m", 0.08))) + map_lock_apply_max_rot_deg = max(0.5, float((map_lock_cfg or {}).get("apply_max_rotation_deg", 5.0))) + map_lock_window_radius_m = max(0.0, float((map_lock_cfg or {}).get("window_radius_m", 8.0))) + map_lock_min_live_pts = max(60, int((map_lock_cfg or {}).get("min_live_points", 140))) + map_lock_icp_max_iter = max(5, int((map_lock_cfg or {}).get("icp_max_iter", 20))) + map_lock_block_on_reject = _as_bool((map_lock_cfg or {}).get("block_on_reject", True), True) + map_lock_retry_after_sec = float((map_lock_cfg or {}).get("retry_after_reject_sec", 0.20)) + map_lock_retry_after_sec = float(np.clip(map_lock_retry_after_sec, 0.05, max(0.05, map_lock_period_sec))) + map_lock_block_on_severe = _as_bool((map_lock_cfg or {}).get("block_on_severe_reject", True), True) + map_lock_severe_fit = float(np.clip(float((map_lock_cfg or {}).get("severe_fit", 0.14)), 0.0, 1.0)) + map_lock_severe_rmse = max(0.10, float((map_lock_cfg or {}).get("severe_rmse", 0.75))) + map_lock_severe_trans_m = max( + float(map_lock_max_trans_m), + float((map_lock_cfg or {}).get("severe_trans_m", 0.45)), + ) + map_lock_severe_rot_deg = max( + float(map_lock_max_rot_deg), + float((map_lock_cfg or {}).get("severe_rot_deg", 22.0)), + ) + rotate_cfg = full_cfg.get("rotate_guard", {}) if isinstance(full_cfg, dict) else {} + rotate_mode_enabled = _as_bool((rotate_cfg or {}).get("enabled", True), True) + rotate_in_place_max_trans_m = max(0.01, float((rotate_cfg or {}).get("in_place_max_trans_m", 0.05))) + rotate_in_place_min_rot_deg = max(0.5, float((rotate_cfg or {}).get("in_place_min_rot_deg", 4.0))) + rotate_pose_guard_max_rot_deg = max( + float(pose_guard_max_rot_deg), + float((rotate_cfg or {}).get("pose_guard_max_rot_deg", 34.0)), + ) + rotate_skip_continuity = _as_bool((rotate_cfg or {}).get("skip_continuity", True), True) + rotate_map_lock_period_sec = max(0.05, float((rotate_cfg or {}).get("map_lock_period_sec", 0.25))) + rotate_map_lock_accept_fitness = float( + np.clip(float((rotate_cfg or {}).get("map_lock_accept_fitness", max(0.05, map_lock_accept_fitness - 0.06))), 0.0, 1.0) + ) + rotate_map_lock_accept_rmse = max( + float(map_lock_accept_rmse), + float((rotate_cfg or {}).get("map_lock_accept_rmse", map_lock_accept_rmse + 0.10)), + ) + rotate_map_lock_max_step_rot_deg = max( + float(map_lock_max_rot_deg), + float((rotate_cfg or {}).get("map_lock_max_step_rot_deg", 14.0)), + ) + rotate_map_lock_apply_alpha_t = float( + np.clip( + float((rotate_cfg or {}).get("map_lock_apply_alpha_translation", max(0.05, map_lock_apply_alpha_t * 0.55))), + 0.03, + 1.0, + ) + ) + rotate_map_lock_apply_alpha_r = float( + np.clip( + float((rotate_cfg or {}).get("map_lock_apply_alpha_rotation", max(0.05, map_lock_apply_alpha_r * 0.70))), + 0.03, + 1.0, + ) + ) + rotate_map_lock_apply_max_trans_m = max( + 0.005, + float((rotate_cfg or {}).get("map_lock_apply_max_translation_m", max(0.01, map_lock_apply_max_trans_m * 0.45))), + ) + rotate_map_lock_apply_max_rot_deg = max( + 0.5, + float((rotate_cfg or {}).get("map_lock_apply_max_rotation_deg", max(1.0, map_lock_apply_max_rot_deg * 0.70))), + ) + rotate_freeze_mapping = _as_bool((rotate_cfg or {}).get("freeze_mapping_while_rotating", True), True) + rotate_freeze_min_stable_pts = max(0, int((rotate_cfg or {}).get("freeze_min_stable_points", 250))) + rotate_map_lock_block_on_reject = _as_bool((rotate_cfg or {}).get("block_on_reject", False), False) + rotate_map_lock_block_on_severe = _as_bool((rotate_cfg or {}).get("block_on_severe", True), True) + continuity_cfg = full_cfg.get("continuity_guard", {}) if isinstance(full_cfg, dict) else {} + continuity_enabled = _as_bool((continuity_cfg or {}).get("enabled", True), True) + continuity_voxel_m = max(0.05, float((continuity_cfg or {}).get("voxel_m", 0.24))) + continuity_min_points = max(40, int((continuity_cfg or {}).get("min_points", 120))) + continuity_match_radius_m = max(0.08, float((continuity_cfg or {}).get("match_radius_m", 0.45))) + continuity_min_inlier_ratio = float(np.clip(float((continuity_cfg or {}).get("min_inlier_ratio", 0.35)), 0.01, 1.0)) + continuity_max_median_m = max(0.05, float((continuity_cfg or {}).get("max_median_m", 0.30))) + continuity_max_p90_m = max(0.08, float((continuity_cfg or {}).get("max_p90_m", 0.60))) + continuity_recover_after_rejects = max(2, int((continuity_cfg or {}).get("recover_after_rejects", 10))) + cleanup_cfg = full_cfg.get("map_cleanup", {}) if isinstance(full_cfg, dict) else {} + cleanup_enabled = _as_bool((cleanup_cfg or {}).get("enabled", True), True) + cleanup_period_sec = max(0.5, float((cleanup_cfg or {}).get("period_sec", 1.8))) + cleanup_voxel_m = max(0.05, float((cleanup_cfg or {}).get("voxel_m", 0.16))) + cleanup_cluster_radius_m = max(0.12, float((cleanup_cfg or {}).get("cluster_radius_m", 0.42))) + cleanup_min_cluster_points = max(20, int((cleanup_cfg or {}).get("min_cluster_points", 120))) + cleanup_keep_largest_n = max(1, int((cleanup_cfg or {}).get("keep_largest_n", 1))) + cleanup_strict_largest_only = _as_bool((cleanup_cfg or {}).get("strict_largest_only", True), True) + cleanup_min_total_points = max(150, int((cleanup_cfg or {}).get("min_total_points", 800))) + + autosave_cfg = full_cfg.get("autosave", {}) or {} + autosave_enabled = _as_bool(autosave_cfg.get("enabled", False), False) + autosave_interval_sec = max(5.0, float(autosave_cfg.get("interval_sec", 90.0))) + autosave_base_name = str(autosave_cfg.get("base_name", "autosave_map")) + last_autosave_t = 0.0 + + self_check_report = run_startup_self_check(full_cfg, Path(__file__).resolve().parent) + + connected = False + mapping_enabled = False + localize_only_enabled = False + worker_mode = "IDLE" + running = True + state_lock = threading.RLock() + + # localization + ref_map_path: Optional[str] = None + + # publish control + pub_hz = float(run_cfg.publish_hz) + last_pub = 0.0 + + # keyframe gating + last_key_pose = None + last_frame_t = 0.0 + last_guard_pose = None + last_guard_t = 0.0 + guard_reject_count = 0 + guard_last_warn_t = 0.0 + odom_to_map_transform = np.eye(4, dtype=np.float64) + map_lock_last_t = 0.0 + map_lock_accept_count = 0 + map_lock_reject_count = 0 + map_lock_last_warn_t = 0.0 + continuity_prev_pts = None + continuity_reject_count = 0 + continuity_consecutive_rejects = 0 + continuity_last_warn_t = 0.0 + rotate_freeze_count = 0 + rotate_last_warn_t = 0.0 + cleanup_last_t = 0.0 + cleanup_removed_total = 0 + cleanup_last_info: Dict[str, Any] = {"status": "na"} + + # localization cadence/state + last_localize_t = 0.0 + last_localize_points = 0 + last_localize_transform = np.eye(4, dtype=np.float64) + last_localize_confidence = 0.0 + ref_pcd_cache = None + ref_points_cache: Optional[np.ndarray] = None + ref_nav_points_cache: Optional[np.ndarray] = None + ref_nav_cache_src_n: int = 0 + ref_cache_path: Optional[str] = None + slam_to_ref_transform = np.eye(4, dtype=np.float64) + slam_to_ref_valid = False + approx_pose_guess_tf: Optional[np.ndarray] = None + approx_pose_guess_until_t: float = 0.0 + approx_pose_guess_fail_count: int = 0 + approx_pose_guess_success_count: int = 0 + ref_match_points_cache: Optional[np.ndarray] = None + ref_match_confirm_hits: Optional[np.ndarray] = None + ref_match_last_pub_t: float = 0.0 + ref_match_last_stats: Dict[str, Any] = {} + loc_live_stack: deque[np.ndarray] = deque(maxlen=int(loc_live_stack_frames)) + loc_frames = LocalizationFrameState() + + # runtime point-density control (LOW/MEDIUM/HIGH) + base_stride = max(1, int(eng_cfg.pre_downsample_stride)) + density_mode = "MEDIUM" + live_stride = base_stride + runtime_filter_voxel = float(filt_cfg.voxel_size) + runtime_filter_hit_threshold = int(max(1, filt_cfg.hits_threshold)) + runtime_filter_decay = float(filt_cfg.strict_sec if filt_cfg.use_strict else filt_cfg.window_sec) + stability_profile = "BALANCED" + + # telemetry/performance + perf_input_count = 0 + perf_publish_count = 0 + perf_last_rate_t = _now() + perf_last_cpu_wall_t = _now() + perf_last_cpu_proc_t = time.process_time() + perf_input_fps = 0.0 + perf_publish_fps = 0.0 + perf_icp_ms = 0.0 + perf_cpu_pct = 0.0 + perf_queue_lag = 0 + perf_stable_growth = 0.0 + perf_prev_stable_count = 0 + perf_prev_stable_t = _now() + + # recording / replay capture + recording_enabled = False + recording_frames: List[np.ndarray] = [] + recording_poses: List[np.ndarray] = [] + recording_base_name = "slam_recording" + recording_max_frames = max(100, int((full_cfg.get("replay", {}) or {}).get("max_record_frames", 6000))) + recording_drop_count = 0 + + # nav runtime / planner / mission + nav_goal_xy: Optional[Tuple[float, float]] = None + nav_last_update_t = 0.0 + nav_last_plan_t = 0.0 + nav_plan_period_sec = max(0.15, float((full_cfg.get("navigation_runtime", {}) or {}).get("plan_period_sec", 0.35))) + nav_path_world: List[Tuple[float, float]] = [] + latest_live_pts: Optional[np.ndarray] = None + latest_live_localize_pts: Optional[np.ndarray] = None + raw_points_q: queue.Queue = queue.Queue(maxsize=max(2, int(run_cfg.frame_queue_maxsize))) + + def _sync_loc_vars_from_service() -> None: + nonlocal odom_to_map_transform, last_localize_transform, last_localize_confidence + nonlocal slam_to_ref_transform, slam_to_ref_valid + odom_to_map_transform = np.array(loc_frames.odom_to_map, dtype=np.float64, copy=True) + last_localize_transform = np.array(loc_frames.last_alignment, dtype=np.float64, copy=True) + last_localize_confidence = float(loc_frames.confidence) + slam_to_ref_transform = np.array(loc_frames.odom_to_ref, dtype=np.float64, copy=True) + slam_to_ref_valid = bool(loc_frames.ref_valid) + + def _worker_diag_state() -> Dict[str, Any]: + return { + "connected": bool(connected), + "mapping_enabled": bool(mapping_enabled), + "localize_only_enabled": bool(localize_only_enabled), + "worker_mode": str(worker_mode), + "ref_map_path": str(ref_map_path) if ref_map_path else "", + "last_localize_points": int(last_localize_points), + "last_localize_t": float(last_localize_t), + "density_mode": str(density_mode), + "stability_profile": str(stability_profile), + "submap_enabled": bool(submap_mode_enabled), + "loop_closure_enabled": bool(loop_cfg.enabled), + "loc_frames": loc_frames.snapshot(), + } + + def _clear_raw_points_queue() -> None: + try: + while True: + raw_points_q.get_nowait() + except Exception: + return + + # ---------------- init stack ---------------- + def init_slam_stack(): + nonlocal slam, filt, stable + + cfg = load_config(config_file=None, max_range=float(eng_cfg.max_range)) + cfg.mapping.voxel_size = float(eng_cfg.slam_voxel_size) + slam = KissICP(cfg) + + vf_cfg = VFilterCfg( + voxel_size=float(runtime_filter_voxel), + hit_threshold=int(runtime_filter_hit_threshold), + decay_seconds=float(runtime_filter_decay), + max_voxels=int(filt_cfg.max_voxels), + ) + filt = VoxelPersistenceFilter(vf_cfg) + + sm_cfg = StableMapCfg( + display_voxel=float(map_cfg.display_voxel), + save_voxel=float(map_cfg.save_voxel), + data_folder=str(map_cfg.data_folder), + save_extension=str(map_cfg.save_extension), + ) + stable = StableMapLayer(sm_cfg) + + def _run_locked(fn, *args, **kwargs): + with state_lock: + return fn(*args, **kwargs) + + def reset_all(): + nonlocal mapping_enabled, localize_only_enabled, worker_mode, last_key_pose + nonlocal last_guard_pose, last_guard_t, guard_reject_count, guard_last_warn_t + nonlocal last_frame_t + nonlocal odom_to_map_transform, map_lock_last_t, map_lock_accept_count, map_lock_reject_count, map_lock_last_warn_t + nonlocal continuity_prev_pts, continuity_reject_count, continuity_consecutive_rejects, continuity_last_warn_t + nonlocal rotate_freeze_count, rotate_last_warn_t + nonlocal cleanup_last_t, cleanup_removed_total, cleanup_last_info + nonlocal last_localize_t, last_localize_points, last_localize_transform, last_localize_confidence + nonlocal ref_pcd_cache, ref_points_cache, ref_nav_points_cache, ref_nav_cache_src_n, ref_cache_path, slam_to_ref_transform, slam_to_ref_valid + nonlocal approx_pose_guess_tf, approx_pose_guess_until_t, approx_pose_guess_fail_count, approx_pose_guess_success_count + nonlocal ref_match_points_cache, ref_match_confirm_hits, ref_match_last_pub_t, ref_match_last_stats + nonlocal loc_live_stack + nonlocal last_autosave_t + nonlocal perf_input_count, perf_publish_count, perf_last_rate_t + nonlocal perf_last_cpu_wall_t, perf_last_cpu_proc_t + nonlocal perf_input_fps, perf_publish_fps, perf_icp_ms, perf_cpu_pct + nonlocal perf_queue_lag, perf_stable_growth, perf_prev_stable_count, perf_prev_stable_t + nonlocal recording_enabled, recording_frames, recording_poses, recording_drop_count + nonlocal nav_goal_xy, nav_last_update_t, nav_last_plan_t, nav_path_world, latest_live_pts, latest_live_localize_pts + init_slam_stack() + mapping_enabled = False + localize_only_enabled = False + worker_mode = "IDLE" + last_frame_t = 0.0 + last_key_pose = None + last_guard_pose = None + last_guard_t = 0.0 + guard_reject_count = 0 + guard_last_warn_t = 0.0 + loc_frames.reset() + _sync_loc_vars_from_service() + map_lock_last_t = 0.0 + map_lock_accept_count = 0 + map_lock_reject_count = 0 + map_lock_last_warn_t = 0.0 + continuity_prev_pts = None + continuity_reject_count = 0 + continuity_consecutive_rejects = 0 + continuity_last_warn_t = 0.0 + rotate_freeze_count = 0 + rotate_last_warn_t = 0.0 + cleanup_last_t = 0.0 + cleanup_removed_total = 0 + cleanup_last_info = {"status": "na"} + last_localize_t = 0.0 + last_localize_points = 0 + ref_pcd_cache = None + ref_points_cache = None + ref_nav_points_cache = None + ref_nav_cache_src_n = 0 + ref_cache_path = None + approx_pose_guess_tf = None + approx_pose_guess_until_t = 0.0 + approx_pose_guess_fail_count = 0 + approx_pose_guess_success_count = 0 + ref_match_points_cache = None + ref_match_confirm_hits = None + ref_match_last_pub_t = 0.0 + ref_match_last_stats = {} + loc_live_stack.clear() + loop_backend.reset() + loc_state.reset() + submap_mapper.reset() + if submap_ckpt is not None: + submap_ckpt.delete() + sensor_fusion.reset() + _imu_integrator.reset() + mission.reset() + nav_runtime.reset() + last_autosave_t = 0.0 + perf_input_count = 0 + perf_publish_count = 0 + perf_last_rate_t = _now() + perf_last_cpu_wall_t = _now() + perf_last_cpu_proc_t = time.process_time() + perf_input_fps = 0.0 + perf_publish_fps = 0.0 + perf_icp_ms = 0.0 + perf_cpu_pct = 0.0 + perf_queue_lag = 0 + perf_stable_growth = 0.0 + perf_prev_stable_count = 0 + perf_prev_stable_t = _now() + recording_enabled = False + recording_frames = [] + recording_poses = [] + recording_drop_count = 0 + nav_goal_xy = None + nav_last_update_t = 0.0 + nav_last_plan_t = 0.0 + nav_path_world = [] + latest_live_pts = None + latest_live_localize_pts = None + _clear_raw_points_queue() + st("INFO", "RESET done: SLAM + Filter + Stable map cleared. (no save)") + + init_slam_stack() + + # ---------------- helpers ---------------- + def height_colors_fast(pts: np.ndarray, alpha: float = 0.9) -> np.ndarray: + if pts is None or len(pts) == 0: + return np.zeros((0, 4), dtype=np.float32) + z = pts[:, 2] + colors = np.zeros((len(pts), 4), dtype=np.float32) + colors[:, 3] = alpha + norm = np.clip((z + 1.5) / 3.0, 0, 1) + colors[:, 0] = norm + colors[:, 1] = 1.0 - np.abs(norm - 0.5) * 2.0 + colors[:, 2] = 1.0 - norm + return colors + + def pose_delta_ok(pose, last_pose) -> bool: + if last_pose is None: + return True + dp = pose[:3, 3] - last_pose[:3, 3] + trans = float(np.linalg.norm(dp)) + R = pose[:3, :3] @ last_pose[:3, :3].T + ang = float(np.degrees(np.arccos(np.clip((np.trace(R) - 1) / 2, -1, 1)))) + return (trans >= float(eng_cfg.keyframe_min_translation_m)) or (ang >= float(eng_cfg.keyframe_min_rotation_deg)) + + def to_world_points(points_sensor: np.ndarray, pose: Optional[np.ndarray]) -> np.ndarray: + """ + Convert sensor-frame points to world frame using pose (world_T_sensor). + Falls back to input points when pose is unavailable/invalid. + """ + return _to_world_points(points_sensor, pose) + + def apply_transform_points(points: Optional[np.ndarray], transform: np.ndarray) -> Optional[np.ndarray]: + return _apply_transform_points(points, transform) + + def _tf_delta(prev_tf: np.ndarray, new_tf: np.ndarray) -> Tuple[float, float]: + return _tf_delta_impl(prev_tf, new_tf) + + def _blend_rigid_tf(prev_tf: np.ndarray, new_tf: np.ndarray, alpha_t: float, alpha_r: float) -> np.ndarray: + return _blend_rigid_tf_impl(prev_tf, new_tf, alpha_t, alpha_r) + + def _yaw_deg_from_tf(tf: np.ndarray) -> float: + return _yaw_deg_from_tf_impl(tf) + + def _tf_from_xyzyaw(x: float, y: float, z: float, yaw_deg: float) -> np.ndarray: + return _tf_from_xyzyaw_impl(x, y, z, yaw_deg) + + def voxel_downsample_np(points: np.ndarray, voxel_m: float) -> np.ndarray: + pts = np.asarray(points, dtype=np.float32) + if pts.ndim != 2 or pts.shape[1] != 3 or len(pts) == 0: + return np.zeros((0, 3), dtype=np.float32) + v = float(voxel_m) + if v <= 0.0: + return pts + keys = np.floor(pts / v).astype(np.int32) + _, first_idx = np.unique(keys, axis=0, return_index=True) + return pts[np.sort(first_idx)] + + def _rigid_fit_svd(src_pts: np.ndarray, dst_pts: np.ndarray) -> Optional[np.ndarray]: + """Estimate rigid transform (dst = T * src) with SVD.""" + if src_pts is None or dst_pts is None: + return None + if len(src_pts) < 3 or len(dst_pts) < 3: + return None + a = np.asarray(src_pts, dtype=np.float64) + b = np.asarray(dst_pts, dtype=np.float64) + if a.shape != b.shape or a.ndim != 2 or a.shape[1] != 3: + return None + c_a = np.mean(a, axis=0) + c_b = np.mean(b, axis=0) + aa = a - c_a + bb = b - c_b + H = aa.T @ bb + try: + U, _, Vt = np.linalg.svd(H, full_matrices=False) + except Exception: + return None + R = Vt.T @ U.T + if np.linalg.det(R) < 0: + Vt[2, :] *= -1.0 + R = Vt.T @ U.T + t = c_b - (R @ c_a) + T = np.eye(4, dtype=np.float64) + T[:3, :3] = R + T[:3, 3] = t + return T + + def _icp_point_to_point_np( + src_pts: np.ndarray, + tgt_pts: np.ndarray, + init_tf: Optional[np.ndarray], + max_corr_m: float, + max_iter: int, + min_corr: int = 30, + ) -> Dict[str, Any]: + """ + Pure NumPy/SciPy point-to-point ICP to avoid Open3D native crashes. + Returns {transform, fitness, rmse, inliers}. + """ + src0 = np.asarray(src_pts, dtype=np.float64) + tgt = np.asarray(tgt_pts, dtype=np.float64) + if src0.ndim != 2 or tgt.ndim != 2 or src0.shape[1] != 3 or tgt.shape[1] != 3: + return {"transform": np.eye(4, dtype=np.float64), "fitness": 0.0, "rmse": 9e9, "inliers": 0} + if len(src0) < 3 or len(tgt) < 3: + return {"transform": np.eye(4, dtype=np.float64), "fitness": 0.0, "rmse": 9e9, "inliers": 0} + + try: + from scipy.spatial import cKDTree + except Exception: + return {"transform": np.eye(4, dtype=np.float64), "fitness": 0.0, "rmse": 9e9, "inliers": 0} + + T = np.eye(4, dtype=np.float64) if init_tf is None else np.asarray(init_tf, dtype=np.float64).copy() + if T.shape != (4, 4): + T = np.eye(4, dtype=np.float64) + tree = cKDTree(tgt) + max_corr = float(max(0.05, max_corr_m)) + min_corr_n = int(max(10, min_corr)) + last_rmse = 9e9 + last_inliers = 0 + + for _ in range(int(max(1, max_iter))): + src_w = (src0 @ T[:3, :3].T) + T[:3, 3] + d, idx = tree.query(src_w, k=1) + keep = np.isfinite(d) & (d <= max_corr) + n_in = int(np.count_nonzero(keep)) + if n_in < min_corr_n: + break + src_corr = src_w[keep] + tgt_corr = tgt[np.asarray(idx[keep], dtype=np.int32)] + delta = _rigid_fit_svd(src_corr, tgt_corr) + if delta is None: + break + T = np.asarray(delta, dtype=np.float64) @ T + prev_rmse = float(last_rmse) + rmse = float(np.sqrt(np.mean(np.square(d[keep])))) + last_rmse = rmse + last_inliers = n_in + # Tiny improvement => converged. + if abs(prev_rmse - rmse) < 1e-5: + break + + fitness = float(last_inliers) / max(1.0, float(len(src0))) + return {"transform": T, "fitness": float(fitness), "rmse": float(last_rmse), "inliers": int(last_inliers)} + + def _bidir_match_stats( + src_pts: np.ndarray, + tgt_pts: np.ndarray, + transform: np.ndarray, + max_corr_m: float, + ) -> Dict[str, Any]: + stats = { + "ok": False, + "live_to_ref_inlier": 0.0, + "ref_to_live_inlier": 0.0, + "bidir_inlier": 0.0, + "bidir_rmse": 9e9, + } + try: + from scipy.spatial import cKDTree + except Exception: + return stats + try: + src = np.asarray(src_pts, dtype=np.float64) + tgt = np.asarray(tgt_pts, dtype=np.float64) + tf = np.asarray(transform, dtype=np.float64) + if src.ndim != 2 or tgt.ndim != 2 or src.shape[1] != 3 or tgt.shape[1] != 3: + return stats + if len(src) < 8 or len(tgt) < 8 or tf.shape != (4, 4): + return stats + src_w = (src @ tf[:3, :3].T) + tf[:3, 3] + max_corr = max(0.05, float(max_corr_m)) + tree_t = cKDTree(tgt) + d_st, _ = tree_t.query(src_w, k=1) + in_st = np.isfinite(d_st) & (d_st <= max_corr) + in_st_ratio = float(np.count_nonzero(in_st)) / max(1.0, float(len(src_w))) + + tree_s = cKDTree(src_w) + d_ts, _ = tree_s.query(tgt, k=1) + in_ts = np.isfinite(d_ts) & (d_ts <= max_corr) + in_ts_ratio = float(np.count_nonzero(in_ts)) / max(1.0, float(len(tgt))) + + inlier_mix = np.concatenate([d_st[in_st], d_ts[in_ts]], axis=0) + rmse = float(np.sqrt(np.mean(np.square(inlier_mix)))) if len(inlier_mix) > 0 else 9e9 + + stats.update( + { + "ok": True, + "live_to_ref_inlier": float(in_st_ratio), + "ref_to_live_inlier": float(in_ts_ratio), + "bidir_inlier": float(min(in_st_ratio, in_ts_ratio)), + "bidir_rmse": float(rmse), + } + ) + return stats + except Exception: + return stats + + def _build_ref_match_visual( + live_ref_pts: Optional[np.ndarray], + pose_ref: Optional[np.ndarray], + now_t: float, + ) -> Tuple[Optional[np.ndarray], Optional[np.ndarray], Dict[str, Any]]: + nonlocal ref_match_points_cache, ref_match_confirm_hits, ref_match_last_pub_t, ref_match_last_stats + stats: Dict[str, Any] = {"enabled": bool(loc_vis_enabled), "updated": False} + if not loc_vis_enabled: + ref_match_last_stats = stats + return None, None, stats + if ref_points_cache is None or len(ref_points_cache) == 0: + stats["reason"] = "no_ref" + ref_match_last_stats = stats + return None, None, stats + if (float(now_t) - float(ref_match_last_pub_t)) < float(loc_vis_period_sec): + return None, None, dict(ref_match_last_stats) + + ref_match_last_pub_t = float(now_t) + if ref_match_points_cache is None or ref_match_confirm_hits is None: + ref_ds = voxel_downsample_np(np.asarray(ref_points_cache, dtype=np.float32), float(loc_vis_voxel_m)) + if len(ref_ds) > int(loc_vis_max_points): + step = max(2, int(np.ceil(float(len(ref_ds)) / float(loc_vis_max_points)))) + ref_ds = ref_ds[::step] + ref_match_points_cache = np.asarray(ref_ds, dtype=np.float32) + ref_match_confirm_hits = np.zeros((len(ref_match_points_cache),), dtype=np.int16) + + pts_ref = np.asarray(ref_match_points_cache, dtype=np.float32) + if len(pts_ref) == 0: + stats["reason"] = "empty_ref_sample" + ref_match_last_stats = stats + return pts_ref, np.zeros((0, 4), dtype=np.float32), stats + + local_mask = np.ones((len(pts_ref),), dtype=bool) + center = None + if pose_ref is not None: + pose_np = np.asarray(pose_ref, dtype=np.float64) + if pose_np.shape == (4, 4): + center = np.asarray(pose_np[:3, 3], dtype=np.float32) + if center is not None and np.isfinite(center).all(): + rel = pts_ref - center.reshape((1, 3)) + d2 = np.einsum("ij,ij->i", rel, rel) + local_mask = d2 <= (float(loc_vis_local_radius_m) * float(loc_vis_local_radius_m)) + + colors = np.zeros((len(pts_ref), 4), dtype=np.float32) + colors[:, :3] = np.array([0.45, 0.45, 0.45], dtype=np.float32) + colors[:, 3] = 0.16 + + live = None if live_ref_pts is None else np.asarray(live_ref_pts, dtype=np.float32) + matched = np.zeros((len(pts_ref),), dtype=bool) + near = np.zeros((len(pts_ref),), dtype=bool) + unmatched = np.zeros((len(pts_ref),), dtype=bool) + try: + if live is not None and live.ndim == 2 and live.shape[1] == 3 and len(live) >= 20 and np.any(local_mask): + from scipy.spatial import cKDTree + tree = cKDTree(np.asarray(live, dtype=np.float64)) + idx = np.where(local_mask)[0] + d, _ = tree.query(np.asarray(pts_ref[idx], dtype=np.float64), k=1) + d = np.asarray(d, dtype=np.float64) + match_idx = idx[d <= float(loc_vis_match_dist_m)] + near_idx = idx[(d > float(loc_vis_match_dist_m)) & (d <= float(loc_vis_near_dist_m))] + unmatch_idx = idx[d > float(loc_vis_near_dist_m)] + matched[match_idx] = True + near[near_idx] = True + unmatched[unmatch_idx] = True + except Exception as _vis_exc: + st("WARN", f"[loc_vis] match visual update failed: {_vis_exc}") + + if ref_match_confirm_hits is None or len(ref_match_confirm_hits) != len(pts_ref): + ref_match_confirm_hits = np.zeros((len(pts_ref),), dtype=np.int16) + hits = np.asarray(ref_match_confirm_hits, dtype=np.int16) + hits[matched] = np.clip(hits[matched] + 1, 0, 32000) + decay_mask = local_mask & (~matched) + if np.any(decay_mask): + hits[decay_mask] = np.maximum(0, hits[decay_mask] - int(loc_vis_decay_per_frame)) + confirmed = local_mask & (hits >= int(loc_vis_confirm_frames)) + ref_match_confirm_hits = hits + + colors[unmatched, :3] = np.array([0.95, 0.15, 0.15], dtype=np.float32) + colors[unmatched, 3] = 0.22 + colors[near, :3] = np.array([0.96, 0.86, 0.16], dtype=np.float32) + colors[near, 3] = 0.24 + colors[matched, :3] = np.array([0.15, 0.85, 0.20], dtype=np.float32) + colors[matched, 3] = 0.24 + colors[confirmed, :3] = np.array([0.05, 1.00, 0.28], dtype=np.float32) + colors[confirmed, 3] = 0.34 + + local_n = int(np.count_nonzero(local_mask)) + stats.update( + { + "updated": True, + "ref_points": int(len(pts_ref)), + "local_points": int(local_n), + "matched": int(np.count_nonzero(matched)), + "near": int(np.count_nonzero(near)), + "unmatched": int(np.count_nonzero(unmatched)), + "confirmed": int(np.count_nonzero(confirmed)), + "matched_ratio": float(np.count_nonzero(matched)) / max(1.0, float(local_n)), + } + ) + ref_match_last_stats = dict(stats) + return pts_ref, colors, stats + + def compute_map_lock_correction( + points_sensor: np.ndarray, + pose_map: Optional[np.ndarray], + now_t: float, + overrides: Optional[Dict[str, Any]] = None, + ) -> Tuple[Optional[np.ndarray], Dict[str, Any]]: + nonlocal map_lock_last_t + info: Dict[str, Any] = {"status": "skip", "ran": False} + ov = overrides if isinstance(overrides, dict) else {} + period_sec_local = max(0.05, float(ov.get("period_sec", map_lock_period_sec))) + max_corr_local = max(0.20, float(ov.get("max_corr_m", map_lock_max_corr_m))) + accept_fit_local = float(np.clip(float(ov.get("accept_fitness", map_lock_accept_fitness)), 0.0, 1.0)) + accept_rmse_local = max(0.05, float(ov.get("accept_rmse", map_lock_accept_rmse))) + max_step_trans_local = max(0.01, float(ov.get("max_step_translation_m", map_lock_max_trans_m))) + max_step_rot_local = max(0.5, float(ov.get("max_step_rotation_deg", map_lock_max_rot_deg))) + icp_iter_local = max(5, int(ov.get("icp_max_iter", map_lock_icp_max_iter))) + + if (not map_lock_enabled) or (pose_map is None): + return None, info + if (now_t - float(map_lock_last_t)) < float(period_sec_local): + return None, info + map_lock_last_t = float(now_t) + + try: + stable_all = stable.get_points() + except Exception: + stable_all = None + n_stable = 0 if stable_all is None else int(len(stable_all)) + if stable_all is None or n_stable < int(map_lock_min_stable_pts): + info.update({"status": "skip", "reason": "few_stable", "stable_points": int(n_stable)}) + return None, info + + src_sensor = np.asarray(points_sensor, dtype=np.float32) + if src_sensor.ndim != 2 or src_sensor.shape[1] != 3 or len(src_sensor) < int(map_lock_min_live_pts): + info.update({"status": "skip", "reason": "few_live", "live_points": int(len(src_sensor))}) + return None, info + + pose_np = np.asarray(pose_map, dtype=np.float64) + if pose_np.shape != (4, 4): + info.update({"status": "skip", "reason": "bad_pose"}) + return None, info + + src_world = to_world_points(src_sensor, pose_np) + tgt_world = np.asarray(stable_all, dtype=np.float32) + + if float(map_lock_window_radius_m) > 0.0 and len(tgt_world) > 0: + center = np.asarray(pose_np[:3, 3], dtype=np.float32) + rel = tgt_world - center + d2 = np.einsum("ij,ij->i", rel, rel) + win2 = float(map_lock_window_radius_m) * float(map_lock_window_radius_m) + keep = d2 <= win2 + min_local = max(120, int(map_lock_min_stable_pts) // 3) + if int(np.count_nonzero(keep)) >= min_local: + tgt_world = tgt_world[keep] + + src_ds = voxel_downsample_np(src_world, float(map_lock_voxel_m)) + tgt_ds = voxel_downsample_np(tgt_world, float(map_lock_voxel_m)) + if len(src_ds) < 60 or len(tgt_ds) < 120: + info.update( + { + "status": "skip", + "reason": "few_downsampled", + "src_points": int(len(src_ds)), + "tgt_points": int(len(tgt_ds)), + } + ) + return None, info + + # Robust in-process point-to-point ICP (avoids Open3D native crashes seen in map-lock path). + try: + from scipy.spatial import cKDTree + except Exception: + info.update({"status": "skip", "reason": "scipy_missing"}) + return None, info + + src_icp = np.asarray(src_ds, dtype=np.float64) + tgt_icp = np.asarray(tgt_ds, dtype=np.float64) + tree = cKDTree(tgt_icp) + max_corr = float(max_corr_local) + min_corr = max(40, int(0.15 * len(src_icp))) + + def _rigid_fit(src_pts: np.ndarray, dst_pts: np.ndarray) -> Optional[np.ndarray]: + if len(src_pts) < 3 or len(dst_pts) < 3: + return None + c_src = np.mean(src_pts, axis=0) + c_dst = np.mean(dst_pts, axis=0) + src0 = src_pts - c_src + dst0 = dst_pts - c_dst + H = src0.T @ dst0 + try: + U, _, Vt = np.linalg.svd(H, full_matrices=False) + except Exception: + return None + R = Vt.T @ U.T + if np.linalg.det(R) < 0: + Vt[-1, :] *= -1.0 + R = Vt.T @ U.T + t = c_dst - (R @ c_src) + T = np.eye(4, dtype=np.float64) + T[:3, :3] = R + T[:3, 3] = t + return T + + corr = np.eye(4, dtype=np.float64) + converged = False + for _ in range(int(icp_iter_local)): + src_w = (src_icp @ corr[:3, :3].T) + corr[:3, 3] + dist, idx = tree.query(src_w, k=1) + mask = np.isfinite(dist) & (dist <= max_corr) + if int(np.count_nonzero(mask)) < min_corr: + break + src_in = src_w[mask] + dst_in = tgt_icp[idx[mask]] + delta = _rigid_fit(src_in, dst_in) + if delta is None: + break + corr = delta @ corr + step_t = float(np.linalg.norm(delta[:3, 3])) + step_r = float( + np.degrees( + np.arccos(np.clip((np.trace(delta[:3, :3]) - 1.0) * 0.5, -1.0, 1.0)) + ) + ) + if step_t < 0.001 and step_r < 0.08: + converged = True + break + + src_final = (src_icp @ corr[:3, :3].T) + corr[:3, 3] + dist_f, _ = tree.query(src_final, k=1) + mask_f = np.isfinite(dist_f) & (dist_f <= max_corr) + inliers = int(np.count_nonzero(mask_f)) + if inliers < min_corr: + info.update( + { + "ran": True, + "status": "rejected", + "reason": "few_inliers", + "src_points": int(len(src_icp)), + "tgt_points": int(len(tgt_icp)), + } + ) + return None, info + fit = float(inliers) / float(max(1, len(src_icp))) + rmse = float(np.sqrt(np.mean((dist_f[mask_f]) ** 2))) + dpos = float(np.linalg.norm(corr[:3, 3])) + drot = float(np.degrees(np.arccos(np.clip((np.trace(corr[:3, :3]) - 1.0) * 0.5, -1.0, 1.0)))) + + ok = bool( + fit >= float(accept_fit_local) + and rmse <= float(accept_rmse_local) + and dpos <= float(max_step_trans_local) + and drot <= float(max_step_rot_local) + ) + info.update( + { + "ran": True, + "status": "accepted" if ok else "rejected", + "fitness": fit, + "rmse": rmse, + "dpos_m": dpos, + "drot_deg": drot, + "src_points": int(len(src_ds)), + "tgt_points": int(len(tgt_ds)), + "converged": bool(converged), + "inliers": int(inliers), + "period_sec": float(period_sec_local), + "accept_fit": float(accept_fit_local), + "accept_rmse": float(accept_rmse_local), + } + ) + return (corr if ok else None), info + + def check_frame_continuity(points_world: np.ndarray) -> Tuple[bool, Dict[str, Any], Optional[np.ndarray]]: + info: Dict[str, Any] = {"enabled": bool(continuity_enabled), "status": "skip"} + pts = np.asarray(points_world, dtype=np.float32) + pts_ds = voxel_downsample_np(pts, float(continuity_voxel_m)) + if (not continuity_enabled) or pts_ds is None or len(pts_ds) < int(continuity_min_points): + info.update({"status": "skip", "reason": "disabled_or_few_points", "points": int(len(pts_ds))}) + return True, info, pts_ds + if continuity_prev_pts is None or len(continuity_prev_pts) < int(continuity_min_points): + info.update({"status": "bootstrap", "points": int(len(pts_ds))}) + return True, info, pts_ds + + try: + from scipy.spatial import cKDTree + tree = cKDTree(np.asarray(continuity_prev_pts, dtype=np.float64)) + dist, _ = tree.query(np.asarray(pts_ds, dtype=np.float64), k=1) + except Exception as e: + info.update({"status": "skip", "reason": f"tree_error:{e}"}) + return True, info, pts_ds + + mask = np.isfinite(dist) + if int(np.count_nonzero(mask)) < int(continuity_min_points): + info.update({"status": "skip", "reason": "few_matches"}) + return True, info, pts_ds + d = dist[mask] + inlier_ratio = float(np.mean(d <= float(continuity_match_radius_m))) + median_d = float(np.median(d)) + p90_d = float(np.percentile(d, 90.0)) + ok = bool( + inlier_ratio >= float(continuity_min_inlier_ratio) + and median_d <= float(continuity_max_median_m) + and p90_d <= float(continuity_max_p90_m) + ) + info.update( + { + "status": "ok" if ok else "reject", + "points": int(len(pts_ds)), + "inlier_ratio": float(inlier_ratio), + "median_m": float(median_d), + "p90_m": float(p90_d), + } + ) + return ok, info, pts_ds + + def cleanup_map_islands(points_world: np.ndarray) -> Tuple[np.ndarray, Dict[str, Any]]: + pts = np.asarray(points_world, dtype=np.float32) + info: Dict[str, Any] = { + "enabled": bool(cleanup_enabled), + "status": "skip", + "before": int(len(pts)), + "after": int(len(pts)), + "removed": 0, + } + if (not cleanup_enabled) or len(pts) < int(cleanup_min_total_points): + info["reason"] = "disabled_or_few_points" + return pts, info + + pts_ds = voxel_downsample_np(pts, float(cleanup_voxel_m)) + if len(pts_ds) < int(cleanup_min_cluster_points): + info["reason"] = "few_downsampled" + return pts, info + + try: + from scipy.spatial import cKDTree + tree = cKDTree(np.asarray(pts_ds, dtype=np.float64)) + except Exception as e: + info["reason"] = f"tree_error:{e}" + return pts, info + + n = int(len(pts_ds)) + visited = np.zeros((n,), dtype=bool) + comp_id = np.full((n,), -1, dtype=np.int32) + sizes: List[int] = [] + + for i in range(n): + if visited[i]: + continue + q = [i] + visited[i] = True + members: List[int] = [] + while q: + j = int(q.pop()) + members.append(j) + neigh = tree.query_ball_point(pts_ds[j], r=float(cleanup_cluster_radius_m)) + for k in neigh: + kk = int(k) + if not visited[kk]: + visited[kk] = True + q.append(kk) + cid = len(sizes) + sizes.append(len(members)) + for m in members: + comp_id[m] = int(cid) + + if not sizes: + info["reason"] = "no_components" + return pts, info + + order = sorted(range(len(sizes)), key=lambda c: int(sizes[c]), reverse=True) + keep_ids = set(order[: int(cleanup_keep_largest_n)]) + if not cleanup_strict_largest_only: + for cid, sz in enumerate(sizes): + if int(sz) >= int(cleanup_min_cluster_points): + keep_ids.add(int(cid)) + if len(keep_ids) == len(sizes): + info.update({"status": "ok", "components": int(len(sizes)), "kept_components": int(len(keep_ids))}) + return pts, info + + # Map original points to nearest downsampled component and keep only selected components. + _, nn = tree.query(np.asarray(pts, dtype=np.float64), k=1) + keep_mask = np.isin(comp_id[np.asarray(nn, dtype=np.int32)], np.asarray(list(keep_ids), dtype=np.int32)) + cleaned = pts[keep_mask] + removed = int(len(pts) - len(cleaned)) + info.update( + { + "status": "ok", + "components": int(len(sizes)), + "kept_components": int(len(keep_ids)), + "before": int(len(pts)), + "after": int(len(cleaned)), + "removed": int(removed), + } + ) + return cleaned, info + + def push_loc_state() -> None: + st("INFO", {"LOC_STATE": loc_state.snapshot()}) + if diagnostics is not None: + diagnostics.log_state("LOC_STATE", _worker_diag_state()) + + def push_worker_mode() -> None: + st( + "INFO", + { + "MODE": { + "mode": str(worker_mode), + "mapping": bool(mapping_enabled), + "localize_only": bool(localize_only_enabled), + } + }, + ) + if diagnostics is not None: + diagnostics.log_state("MODE", _worker_diag_state()) + + def _place_profile_allowed() -> bool: + profile = str(stability_profile).upper().strip() + return bool(place_recog.profile_allowed(profile)) + + # ---------------- localization ---------------- + def do_localize( + force: bool = False, + source: str = "MANUAL", + src_override: Optional[np.ndarray] = None, + ) -> Optional[Dict[str, Any]]: + nonlocal ref_map_path, last_localize_t, last_localize_points, last_localize_transform, last_localize_confidence + nonlocal ref_pcd_cache, ref_points_cache, ref_nav_points_cache, ref_nav_cache_src_n, ref_cache_path + nonlocal slam_to_ref_transform, slam_to_ref_valid + nonlocal approx_pose_guess_tf, approx_pose_guess_until_t, approx_pose_guess_fail_count, approx_pose_guess_success_count + now = _now() + src_tag = str(source).upper().strip() + use_live_src = src_override is not None + if not loc_cfg.enabled: + if force: + st("ERROR", "LOCALIZE disabled in config.") + loc_state.update(None, now) + push_loc_state() + return None + if not ref_map_path: + if force: + st("ERROR", "LOCALIZE: load a reference map first.") + loc_state.update(None, now) + push_loc_state() + return None + + try: + period = max(0.1, float(loc_cfg.period_sec)) + if use_live_src: + # Live relocalization should be frequent but not every frame to avoid jitter. + period = min(period, float(loc_live_period_sec)) + if (not force) and ((now - last_localize_t) < period): + return None + + req_loc = int(loc_cfg.min_points_for_localize) + if use_live_src: + cur = np.asarray(src_override, dtype=np.float32) + cur_n = int(len(cur)) + req_live = max(80, min(req_loc, 1000)) + if cur_n < req_live: + if force: + st("ERROR", f"LOCALIZE: not enough live points ({cur_n}/{req_live}).") + loc_state.update(None, now) + push_loc_state() + return None + else: + cur = stable.get_save_points() + cur_n = 0 if cur is None else int(len(cur)) + if cur is None or cur_n < req_loc: + if force: + st("ERROR", f"LOCALIZE: not enough stable points ({cur_n}/{req_loc}). Start mapping first.") + loc_state.update(None, now) + push_loc_state() + return None + if (not force) and ((cur_n - int(last_localize_points)) < int(loc_cfg.min_new_points)): + return None + + import open3d as o3d + + if ref_pcd_cache is None or ref_cache_path != ref_map_path: + ref_pcd_cache = o3d.io.read_point_cloud(ref_map_path) + if hasattr(ref_pcd_cache, "points"): + ref_points_cache = np.asarray(ref_pcd_cache.points, dtype=np.float32).copy() + else: + ref_points_cache = np.asarray(ref_pcd_cache, dtype=np.float32).reshape((-1, 3)).copy() + ref_nav_points_cache = None + ref_nav_cache_src_n = 0 + ref_cache_path = ref_map_path + if ref_points_cache is None: + if hasattr(ref_pcd_cache, "points"): + ref_points_cache = np.asarray(ref_pcd_cache.points, dtype=np.float32).copy() + else: + ref_points_cache = np.asarray(ref_pcd_cache, dtype=np.float32).reshape((-1, 3)).copy() + ref_nav_points_cache = None + ref_nav_cache_src_n = 0 + ref_np_full = np.asarray(ref_points_cache, dtype=np.float32) + if len(ref_np_full) < int(loc_cfg.min_points_for_localize): + if force: + st("ERROR", "LOCALIZE: reference map has too few points.") + loc_state.update(None, now) + push_loc_state() + return None + if bool(place_cfg.enabled) and _place_profile_allowed(): + if (not bool(place_recog.index_ready)) or (str(place_recog.ref_path or "") != str(ref_map_path)): + pr_info = place_recog.build(ref_np_full, ref_map_path) + st("INFO", {"PLACE_RECOG": pr_info}) + + cur_np_full = np.asarray(cur, dtype=np.float32) + if cur_np_full.ndim != 2 or cur_np_full.shape[1] != 3: + loc_state.update(None, now) + push_loc_state() + return None + + # Once localized, keep tracking in a local window around the last pose + # to avoid jumping to similar structures elsewhere in a large map. + tracking_locked = bool( + use_live_src + and slam_to_ref_valid + and src_tag not in ("ON_LOAD", "RECOVERY") + and str(loc_state.state).upper().strip() in ("TRACKING", "DEGRADED") + ) + ref_np_track = np.asarray(ref_np_full, dtype=np.float32) + tracking_window_used = False + tracking_window_reason = "full_ref" + if tracking_locked and loc_tracking_window_enabled and len(ref_np_track) > 0: + try: + center = np.asarray(last_localize_transform[:3, 3], dtype=np.float32) + if np.isfinite(center).all(): + rel = ref_np_track - center + d2 = np.einsum("ij,ij->i", rel, rel) + win2 = float(loc_tracking_window_radius_m) * float(loc_tracking_window_radius_m) + keep = d2 <= win2 + n_keep = int(np.count_nonzero(keep)) + if n_keep >= int(loc_tracking_window_min_ref_points): + ref_np_track = ref_np_track[keep] + tracking_window_used = True + tracking_window_reason = "window" + else: + tracking_window_reason = "window_too_few" + except Exception: + tracking_window_reason = "window_error" + if len(ref_np_track) > int(loc_tracking_window_max_ref_points): + step = max(2, int(np.ceil(float(len(ref_np_track)) / float(loc_tracking_window_max_ref_points)))) + ref_np_track = ref_np_track[::step] + if tracking_window_used: + tracking_window_reason = "window_decimated" + else: + tracking_window_reason = "full_ref_decimated" + + voxel = float(loc_cfg.voxel_localize) + if use_live_src: + voxel = min(voxel, 0.16) + max_corr = max(0.5, float(loc_cfg.max_corr_mult) * voxel) + if use_live_src: + max_corr = min(max_corr, 0.95) + accept_fit_target = float(loc_cfg.accept_fitness) + accept_rmse_target = float(loc_cfg.accept_rmse) + guess_bootstrap = bool( + approx_pose_guess_tf is not None + and float(now) <= float(approx_pose_guess_until_t) + and (not slam_to_ref_valid) + ) + guess_strict_local_active = bool( + guess_bootstrap and (not slam_to_ref_valid) and bool(loc_guess_strict_local) + ) + if use_live_src: + # Slightly stricter acceptance in live mode to reduce wobble while turning. + accept_fit_target = max(0.34, min(0.98, accept_fit_target + 0.08)) + accept_rmse_target = min(accept_rmse_target, 0.26) + if guess_bootstrap: + # If user provided approximate location, allow slight environmental changes. + max_corr = min(1.15, max_corr * 1.15) + accept_fit_target = max(0.22, accept_fit_target - 0.04) + accept_rmse_target = max(accept_rmse_target, 0.34) + + init = np.array(last_localize_transform, dtype=np.float64, copy=True) + approx_guess_used = False + approx_guess_active = bool(guess_bootstrap) + if approx_guess_active and not slam_to_ref_valid: + init = np.asarray(approx_pose_guess_tf, dtype=np.float64).copy() + approx_guess_used = True + # Bootstrap with local reference crop around approximate click. + try: + center_guess = np.asarray(init[:3, 3], dtype=np.float32) + rel = ref_np_track - center_guess.reshape((1, 3)) + d2 = np.einsum("ij,ij->i", rel, rel) + local_r2 = float(loc_guess_local_radius_m) * float(loc_guess_local_radius_m) + wide_r2 = float(loc_guess_crop_radius_m) * float(loc_guess_crop_radius_m) + keep_local = d2 <= local_r2 + n_local = int(np.count_nonzero(keep_local)) + min_local_n = int(loc_tracking_window_min_ref_points) + if n_local >= min_local_n: + ref_np_track = ref_np_track[keep_local] + tracking_window_used = True + tracking_window_reason = "approx_local_crop" + else: + keep_wide = d2 <= wide_r2 + n_wide = int(np.count_nonzero(keep_wide)) + min_wide_n = max(120, min_local_n // 2) if guess_strict_local_active else min_local_n + if n_wide >= min_wide_n: + ref_np_track = ref_np_track[keep_wide] + tracking_window_used = True + tracking_window_reason = "approx_wide_crop" + else: + tracking_window_reason = "approx_crop_too_few" + except Exception: + tracking_window_reason = "approx_crop_error" + + src_d = voxel_downsample_np(cur_np_full, voxel) + tgt_d = voxel_downsample_np(ref_np_track, voxel) + if len(src_d) < 40 or len(tgt_d) < 40: + if force: + st("ERROR", "LOCALIZE: not enough downsampled points for ICP.") + loc_state.update(None, now) + push_loc_state() + return None + + # Coarse-to-fine ICP improves convergence when the initial offset is large. + coarse_voxel = max(voxel, 0.35) + src_c = voxel_downsample_np(cur_np_full, coarse_voxel) + coarse_tgt_src = ref_np_track if (tracking_locked or approx_guess_used) else ref_np_full + tgt_c = voxel_downsample_np(coarse_tgt_src, coarse_voxel) + def _run_local_icp_chain(init_tf: np.ndarray) -> Dict[str, Any]: + seed = np.asarray(init_tf, dtype=np.float64).copy() + if len(src_c) > 40 and len(tgt_c) > 40: + coarse = _icp_point_to_point_np( + src_c, + tgt_c, + seed, + max_corr_m=max_corr * 1.6, + max_iter=max(15, int(loc_cfg.icp_max_iter) // 2), + min_corr=30, + ) + seed = np.array(coarse.get("transform", seed), dtype=np.float64, copy=True) + return _icp_point_to_point_np( + src_d, + tgt_d, + seed, + max_corr_m=max_corr, + max_iter=max(10, int(loc_cfg.icp_max_iter)), + min_corr=35, + ) + + reg = _run_local_icp_chain(init) + yaw_hypotheses = 0 + place_query: Dict[str, Any] = {"ok": False, "reason": "disabled"} + if approx_guess_active and not slam_to_ref_valid and float(loc_guess_yaw_step_deg) < 180.0: + base_yaw = float(_yaw_deg_from_tf(init)) + yaw_offsets = np.arange(-180.0, 180.0, float(loc_guess_yaw_step_deg), dtype=np.float64) + best_reg = dict(reg) + for yaw_off in yaw_offsets: + if abs(float(yaw_off)) < 1e-6: + continue + cand = np.asarray(init, dtype=np.float64).copy() + rz = _tf_from_xyzyaw(0.0, 0.0, 0.0, base_yaw + float(yaw_off)) + cand[:3, :3] = np.asarray(rz[:3, :3], dtype=np.float64) + rr = _run_local_icp_chain(cand) + yaw_hypotheses += 1 + better = (float(rr.get("fitness", 0.0)) > float(best_reg.get("fitness", 0.0))) or ( + float(rr.get("fitness", 0.0)) == float(best_reg.get("fitness", 0.0)) + and float(rr.get("rmse", 9e9)) < float(best_reg.get("rmse", 9e9)) + ) + if better: + best_reg = rr + reg = dict(best_reg) + used_recovery = False + + def accepted(rr: Dict[str, Any]) -> bool: + return bool( + float(rr.get("fitness", 0.0)) >= float(accept_fit_target) + and float(rr.get("rmse", 9e9)) <= float(accept_rmse_target) + ) + + # Global relocalization fallback: + # only for bootstrap/lost states, not for normal LIVE tracking. + allow_global_reloc = bool( + (not slam_to_ref_valid) + or src_tag in ("ON_LOAD", "RECOVERY") + or str(loc_state.state).upper().strip() in ("LOST", "RECOVERY") + ) + global_reloc_blocked_by_guess = False + if guess_strict_local_active and (not slam_to_ref_valid): + if int(approx_pose_guess_fail_count) < int(loc_guess_global_fallback_after_failures): + allow_global_reloc = False + global_reloc_blocked_by_guess = True + if (not accepted(reg)) and allow_global_reloc: + src_np = np.asarray(src_d, dtype=np.float64) + # Search against the full reference map to recover from wrong initial position. + tgt_global = voxel_downsample_np(ref_np_full, max(float(voxel), 0.24)) + tgt_np = np.asarray(tgt_global, dtype=np.float64) + if len(src_np) > 20 and len(tgt_np) > 40: + c_src = np.mean(src_np, axis=0) + anchors = np.zeros((0, 3), dtype=np.float64) + use_place_retrieval = bool(place_cfg.enabled and _place_profile_allowed()) + if use_place_retrieval: + approx_center = None + if approx_pose_guess_tf is not None: + try: + approx_center = np.asarray(approx_pose_guess_tf[:3, 3], dtype=np.float32) + except Exception: + approx_center = None + place_query = place_recog.query(cur_np_full, approx_center=approx_center) + if bool(place_query.get("ok", False)): + anchors = np.asarray( + [c.get("center", [0.0, 0.0, 0.0]) for c in place_query.get("candidates", [])], + dtype=np.float64, + ).reshape((-1, 3)) + if len(anchors) == 0: + anchors = voxel_downsample_np( + np.asarray(tgt_np, dtype=np.float32), + max(float(loc_global_reloc_anchor_voxel_m), float(voxel) * 3.0), + ) + anchors = np.asarray(anchors, dtype=np.float64) + if len(anchors) == 0: + anchors = np.asarray([np.mean(tgt_np, axis=0)], dtype=np.float64) + if len(anchors) > int(loc_global_reloc_max_anchors): + step = max(1, int(np.ceil(float(len(anchors)) / float(loc_global_reloc_max_anchors)))) + anchors = anchors[::step][: int(loc_global_reloc_max_anchors)] + + yaw_step = float(loc_global_reloc_yaw_step_deg) + yaw_candidates = list(np.arange(-180.0, 180.0, yaw_step, dtype=np.float64)) + if 0.0 not in yaw_candidates: + yaw_candidates.append(0.0) + + best = dict(reg) + for anchor in anchors: + anchor_v = np.asarray(anchor, dtype=np.float64) + for yaw_deg in yaw_candidates: + yaw = np.deg2rad(float(yaw_deg)) + cy = float(np.cos(yaw)) + sy = float(np.sin(yaw)) + rz = np.array( + [[cy, -sy, 0.0], [sy, cy, 0.0], [0.0, 0.0, 1.0]], + dtype=np.float64, + ) + init_global = np.eye(4, dtype=np.float64) + init_global[:3, :3] = rz + init_global[:3, 3] = anchor_v - (rz @ c_src) + rr = _icp_point_to_point_np( + src_np, + tgt_np, + init_global, + max_corr_m=float(max_corr) * float(loc_global_reloc_corr_mult), + max_iter=int(loc_global_reloc_coarse_iter), + min_corr=int(loc_global_reloc_min_corr), + ) + better = (float(rr.get("fitness", 0.0)) > float(best.get("fitness", 0.0))) or ( + float(rr.get("fitness", 0.0)) == float(best.get("fitness", 0.0)) + and float(rr.get("rmse", 9e9)) < float(best.get("rmse", 9e9)) + ) + if better: + best = rr + + # Refine the best global candidate. + best_tf = np.asarray(best.get("transform", np.eye(4, dtype=np.float64)), dtype=np.float64) + best_refined = _icp_point_to_point_np( + src_np, + tgt_np, + best_tf, + max_corr_m=float(max_corr) * max(1.2, float(loc_global_reloc_corr_mult) * 0.8), + max_iter=int(loc_global_reloc_refine_iter), + min_corr=max(20, int(loc_global_reloc_min_corr)), + ) + if (float(best_refined.get("fitness", 0.0)) > float(best.get("fitness", 0.0))) or ( + float(best_refined.get("fitness", 0.0)) == float(best.get("fitness", 0.0)) + and float(best_refined.get("rmse", 9e9)) < float(best.get("rmse", 9e9)) + ): + best = best_refined + + if (float(best.get("fitness", 0.0)) > float(reg.get("fitness", 0.0))) or ( + float(best.get("fitness", 0.0)) == float(reg.get("fitness", 0.0)) + and float(best.get("rmse", 9e9)) < float(reg.get("rmse", 9e9)) + ): + reg = best + used_recovery = True + + reg_tf = np.asarray(reg.get("transform", np.eye(4, dtype=np.float64)), dtype=np.float64) + fit = float(reg.get("fitness", 0.0)) + rmse = float(reg.get("rmse", 9e9)) + acc = accepted(reg) + temporal_guard_reject = False + bootstrap_pending = False + bootstrap_ok = False + guess_offset_m = -1.0 + if approx_guess_active and (approx_pose_guess_tf is not None): + try: + guess_center = np.asarray(approx_pose_guess_tf[:3, 3], dtype=np.float64) + guess_offset_m = float(np.linalg.norm(np.asarray(reg_tf[:3, 3], dtype=np.float64) - guess_center)) + except Exception: + guess_offset_m = -1.0 + if guess_strict_local_active and guess_offset_m >= 0.0: + if guess_offset_m > float(loc_guess_max_start_offset_m): + acc = False + bidir = _bidir_match_stats(src_d, tgt_d, reg_tf, max_corr_m=max_corr) + if bool(loc_bidir_enabled) and bool(bidir.get("ok", False)): + if ( + float(bidir.get("bidir_inlier", 0.0)) < float(loc_bidir_min_ratio) + or float(bidir.get("bidir_rmse", 9e9)) > float(loc_bidir_max_rmse) + ): + acc = False + if use_live_src and slam_to_ref_valid and src_tag not in ("RECOVERY", "ON_LOAD"): + dtr_m, drot_deg = _tf_delta(last_localize_transform, reg_tf) + max_step_t = float(loc_live_track_max_step_trans_m) if (localize_only_enabled and loc_live_track_strict) else 0.35 + max_step_r = float(loc_live_track_max_step_rot_deg) if (localize_only_enabled and loc_live_track_strict) else 22.0 + if (dtr_m > max_step_t or drot_deg > max_step_r) and (fit < (accept_fit_target + 0.10)): + acc = False + temporal_guard_reject = True + if use_live_src and slam_to_ref_valid and src_tag not in ("RECOVERY", "ON_LOAD") and acc: + # Keep tracking lock conservative to prevent map-frame drift. + if localize_only_enabled and loc_live_track_strict: + live_fit_min = max(float(loc_live_track_min_fit), float(accept_fit_target) + 0.02) + else: + live_fit_min = max(0.38, float(accept_fit_target) + 0.04) + if fit < live_fit_min: + acc = False + temporal_guard_reject = True + elif bool(loc_bidir_enabled) and bool(bidir.get("ok", False)): + if localize_only_enabled and loc_live_track_strict: + live_bidir_min = max(float(loc_live_track_min_bidir), float(loc_bidir_min_ratio)) + else: + live_bidir_min = max(0.24, float(loc_bidir_min_ratio) + 0.06) + if float(bidir.get("bidir_inlier", 0.0)) < live_bidir_min: + acc = False + temporal_guard_reject = True + if approx_guess_active and (not slam_to_ref_valid): + bootstrap_ok = bool(acc) + if bootstrap_ok and (fit < float(loc_guess_bootstrap_min_fitness)): + bootstrap_ok = False + if bootstrap_ok and bool(bidir.get("ok", False)): + if float(bidir.get("bidir_inlier", 0.0)) < float(loc_guess_bootstrap_min_bidir): + bootstrap_ok = False + if bootstrap_ok and guess_offset_m >= 0.0: + if guess_offset_m > float(loc_guess_max_start_offset_m): + bootstrap_ok = False + if bootstrap_ok: + approx_pose_guess_success_count += 1 + # Seed next bootstrap attempt from this best candidate. + loc_frames.last_alignment = np.array(reg_tf, dtype=np.float64, copy=True) + _sync_loc_vars_from_service() + if int(approx_pose_guess_success_count) < int(loc_guess_bootstrap_min_hits): + bootstrap_pending = True + acc = False + else: + approx_pose_guess_success_count = 0 + fit_floor = max(1e-6, float(loc_state_cfg.lost_fitness)) + fit_span = max(1e-6, float(accept_fit_target) - fit_floor) + fit_score = float(np.clip((fit - fit_floor) / fit_span, 0.0, 1.0)) + rmse_cap = max(1e-6, float(accept_rmse_target) * 1.5) + rmse_score = float(np.clip((rmse_cap - rmse) / rmse_cap, 0.0, 1.0)) + confidence = float(np.clip(0.62 * fit_score + 0.38 * rmse_score, 0.0, 1.0)) + if acc: + confidence = max(confidence, 0.75) + if acc and use_live_src and slam_to_ref_valid and src_tag != "RECOVERY": + # Low-pass localization transform in live mode to reduce visual map shake. + alpha = 0.45 if fit >= (accept_fit_target + 0.08) else 0.30 + reg_tf = _blend_rigid_tf(last_localize_transform, reg_tf, alpha_t=alpha, alpha_r=alpha) + + sigma_xy = float(max(0.02, rmse * (1.3 - fit_score))) + sigma_z = float(max(0.03, rmse * (1.6 - fit_score))) + sigma_yaw = float(max(0.02, (1.0 - fit_score) * 0.35)) + + result: Dict[str, Any] = { + "fitness": fit, + "rmse": rmse, + "max_corr": float(max_corr), + "accepted": acc, + "transform": np.array(reg_tf, dtype=np.float64), + "source": src_tag, + "src_points": int(len(src_d)), + "ref_points": int(len(tgt_d)), + "ref_points_full": int(len(ref_np_full)), + "tracking_window_used": bool(tracking_window_used), + "tracking_window_reason": str(tracking_window_reason), + "recovery_used": bool(used_recovery), + "temporal_guard_reject": bool(temporal_guard_reject), + "yaw_hypotheses": int(yaw_hypotheses), + "confidence": float(confidence), + "covariance_diag": [sigma_xy, sigma_xy, sigma_z, sigma_yaw, sigma_yaw, sigma_yaw], + "live_only": bool(use_live_src), + "global_reloc_allowed": bool(allow_global_reloc), + "global_reloc_blocked_by_guess": bool(global_reloc_blocked_by_guess), + "bidir_ok": bool(bidir.get("ok", False)), + "inlier_live_to_ref": float(bidir.get("live_to_ref_inlier", 0.0)), + "inlier_ref_to_live": float(bidir.get("ref_to_live_inlier", 0.0)), + "inlier_bidir": float(bidir.get("bidir_inlier", 0.0)), + "bidir_rmse": float(bidir.get("bidir_rmse", 9e9)), + "approx_guess_used": bool(approx_guess_used), + "approx_guess_fail_count": int(approx_pose_guess_fail_count), + "approx_guess_success_count": int(approx_pose_guess_success_count), + "approx_guess_offset_m": float(guess_offset_m), + "bootstrap_pending": bool(bootstrap_pending), + "place_retrieval_ok": bool(place_query.get("ok", False)), + "place_retrieval_reason": str(place_query.get("reason", "na")), + "place_retrieval_backend": str(place_query.get("backend", place_recog.backend_active)), + "place_retrieval_top_score": float(place_query.get("top_score", 0.0)), + "place_retrieval_candidates": int(len(place_query.get("candidates", []))), + } + + last_localize_t = now + if not use_live_src: + last_localize_points = cur_n + if result["accepted"]: + prev_tf = np.array(slam_to_ref_transform, dtype=np.float64, copy=True) if slam_to_ref_valid else None + loc_frames.set_reference_alignment(reg_tf, confidence) + _sync_loc_vars_from_service() + if use_live_src and prev_tf is not None and submap_mode_enabled and submap_mapper.has_points: + try: + delta_tf = np.asarray(slam_to_ref_transform, dtype=np.float64) @ np.linalg.inv(prev_tf) + dt_m, dr_deg = _tf_delta(np.eye(4, dtype=np.float64), delta_tf) + if dt_m > 1.20 or dr_deg > 45.0: + # Large relocalization jump: reset local/global buffer to avoid ghost structures. + submap_mapper.reset() + elif dt_m > 1e-4 or dr_deg > 1e-3: + submap_mapper.apply_correction(delta_tf) + except Exception as _sub_exc: + st("WARN", f"[submap] correction after relocalization failed: {_sub_exc}") + approx_pose_guess_tf = None + approx_pose_guess_until_t = 0.0 + approx_pose_guess_fail_count = 0 + approx_pose_guess_success_count = 0 + session_store.record_success( + ref_map_path, + last_localize_transform, + float(result["fitness"]), + float(result["rmse"]), + ) + else: + if approx_guess_active and (not slam_to_ref_valid): + if not bootstrap_pending: + approx_pose_guess_fail_count += 1 + loc_frames.update_confidence(max(0.0, min(1.0, loc_frames.confidence * 0.85))) + _sync_loc_vars_from_service() + safety.mark_localization(bool(result["accepted"]), now) + loc_state.update(result, now) + result["state"] = str(loc_state.state) + st("INFO", {"LOCALIZE": result}) + push_loc_state() + return result + + except Exception as e: + safety.mark_localization(False, now) + loc_state.update(None, now) + push_loc_state() + if diagnostics is not None: + diagnostics.log_exception("LOCALIZE failed", e, _worker_diag_state()) + st("ERROR", f"LOCALIZE failed: {e}") + return None + + def maybe_auto_localize(src_live: Optional[np.ndarray] = None): + if not loc_cfg.enabled: + return + if not ref_map_path: + return + if src_live is not None and localize_only_enabled: + do_localize(force=False, source="LIVE_ONLY", src_override=src_live) + else: + do_localize(force=False, source="AUTO") + t = _now() + if loc_state.should_recover(t): + loc_state.enter_recovery(t) + push_loc_state() + do_localize(force=True, source="RECOVERY", src_override=src_live if localize_only_enabled else None) + + def apply_density_mode(mode: str): + nonlocal density_mode, live_stride + m = str(mode).upper().strip() + if m == "LOW": + density_mode = "LOW" + live_stride = max(2, base_stride * 4) + elif m == "HIGH": + density_mode = "HIGH" + live_stride = 1 + else: + density_mode = "MEDIUM" + live_stride = base_stride + st("INFO", {"DENSITY": {"mode": density_mode, "stride": int(live_stride)}}) + + def _rebuild_filter_runtime(keep_existing: bool = True) -> None: + nonlocal filt + seed_pts = None + if keep_existing and stable is not None: + try: + seed_pts = stable.get_points() + except Exception: + seed_pts = None + + vf_cfg = VFilterCfg( + voxel_size=float(runtime_filter_voxel), + hit_threshold=int(runtime_filter_hit_threshold), + decay_seconds=float(runtime_filter_decay), + max_voxels=int(filt_cfg.max_voxels), + ) + new_f = VoxelPersistenceFilter(vf_cfg) + if seed_pts is not None and len(seed_pts) > 0 and hasattr(new_f, "seed_stable_points"): + try: + new_f.seed_stable_points( + seed_pts, + now=_now(), + hit_count=int(runtime_filter_hit_threshold), + clear_existing=True, + ) + except Exception: + pass + filt = new_f + + def apply_filter_tuning(payload: Any) -> None: + nonlocal runtime_filter_voxel, runtime_filter_hit_threshold, runtime_filter_decay + if not isinstance(payload, dict): + st("WARN", "SET_FILTER_TUNING ignored: payload must be dict.") + return + try: + runtime_filter_voxel = max(0.02, float(payload.get("voxel_size", runtime_filter_voxel))) + except Exception: + pass + try: + runtime_filter_hit_threshold = max(1, int(payload.get("hit_threshold", runtime_filter_hit_threshold))) + except Exception: + pass + try: + runtime_filter_decay = max(0.5, float(payload.get("decay_seconds", runtime_filter_decay))) + except Exception: + pass + + _rebuild_filter_runtime(keep_existing=True) + st( + "INFO", + { + "FILTER_TUNING": { + "voxel_size": float(runtime_filter_voxel), + "hit_threshold": int(runtime_filter_hit_threshold), + "decay_seconds": float(runtime_filter_decay), + "profile": str(stability_profile), + } + }, + ) + + def apply_stability_profile(profile_name: Any) -> None: + nonlocal stability_profile + p = str(profile_name or "BALANCED").upper().strip() + presets = { + # Keep map history much longer during exploration so points do not fade while moving away. + "MAP_NEW": {"hit_threshold": 2, "decay_seconds": 1800.0, "voxel_size": 0.10, "recommended_density": "MEDIUM"}, + "EXTEND_MAP": {"hit_threshold": 2, "decay_seconds": 1800.0, "voxel_size": 0.10, "recommended_density": "MEDIUM"}, + "LOCALIZE_MAP": {"hit_threshold": 3, "decay_seconds": 45.0, "voxel_size": 0.20, "recommended_density": "MEDIUM"}, + "LIVE_NAV_MAP": {"hit_threshold": 2, "decay_seconds": 18.0, "voxel_size": 0.20, "recommended_density": "MEDIUM"}, + "LIVE_NAV_NO_MAP": {"hit_threshold": 2, "decay_seconds": 14.0, "voxel_size": 0.18, "recommended_density": "HIGH"}, + "QUICK_DEMO": {"hit_threshold": 2, "decay_seconds": 8.0, "voxel_size": 0.20, "recommended_density": "HIGH"}, + "BALANCED": { + "voxel_size": float(max(0.02, filt_cfg.voxel_size)), + "hit_threshold": int(max(1, filt_cfg.hits_threshold)), + "decay_seconds": float(max(0.5, filt_cfg.strict_sec if filt_cfg.use_strict else filt_cfg.window_sec)), + "recommended_density": "MEDIUM", + }, + } + if p not in presets: + st("WARN", f"Unknown stability profile: {p}.") + return + stability_profile = p + preset = presets[p] + apply_filter_tuning( + { + "voxel_size": float(preset.get("voxel_size", runtime_filter_voxel)), + "hit_threshold": int(preset["hit_threshold"]), + "decay_seconds": float(preset["decay_seconds"]), + } + ) + apply_density_mode(str(preset.get("recommended_density", density_mode))) + st( + "INFO", + { + "WORKFLOW_PROFILE": { + "name": str(stability_profile), + "recommended_density": str(preset.get("recommended_density", density_mode)), + } + }, + ) + + def _submap_profile_allowed() -> bool: + profile = str(stability_profile).upper().strip() + allowed = {str(x).upper().strip() for x in tuple(submap_cfg.apply_profiles)} + return profile in allowed + + def apply_min_stable_points(value: Any) -> None: + try: + v = int(value) + except Exception: + st("WARN", f"SET_MIN_STABLE_POINTS ignored: invalid value {value!r}") + return + v = int(np.clip(v, 50, 5_000_000)) + map_cfg.min_points_to_save = v + loc_cfg.min_points_for_localize = v + nav_cfg.min_points = v + try: + nav_exporter.update_config(nav_cfg) + except Exception: + pass + st("INFO", {"MIN_STABLE_POINTS": {"value": int(v)}}) + + def apply_loop_closure_mode(enabled: Any) -> None: + e = _as_bool(enabled, False) + loop_cfg.enabled = bool(e) + loop_backend.cfg.enabled = bool(e) + st("INFO", {"LOOP_MODE": {"enabled": bool(e)}}) + + def apply_loc_state_machine_mode(enabled: Any) -> None: + e = _as_bool(enabled, True) + loc_state_cfg.enabled = bool(e) + loc_state.set_enabled(bool(e)) + st("INFO", {"LOC_MACHINE": {"enabled": bool(e)}}) + push_loc_state() + + def apply_submap_mode(payload: Any) -> None: + nonlocal submap_cfg, submap_mapper, submap_mode_enabled + merged = { + "enabled": bool(submap_mode_enabled), + "local_window_frames": int(submap_cfg.local_window_frames), + "local_voxel_m": float(submap_cfg.local_voxel_m), + "global_voxel_m": float(submap_cfg.global_voxel_m), + "merge_period_sec": float(submap_cfg.merge_period_sec), + "merge_min_translation_m": float(submap_cfg.merge_min_translation_m), + "merge_min_rotation_deg": float(submap_cfg.merge_min_rotation_deg), + "max_global_points": int(submap_cfg.max_global_points), + "display_max_points": int(submap_cfg.display_max_points), + "apply_profiles": list(submap_cfg.apply_profiles), + } + if isinstance(payload, dict): + merged.update(payload) + elif payload is not None: + merged["enabled"] = _as_bool(payload, bool(submap_mode_enabled)) + new_cfg = SubmapConfig.from_dict(merged) + keep_pts = True + if isinstance(payload, dict): + keep_pts = _as_bool(payload.get("keep_points", True), True) + submap_cfg = new_cfg + submap_mode_enabled = bool(new_cfg.enabled) + submap_mapper.set_config(new_cfg, keep_points=bool(keep_pts and submap_mode_enabled)) + if not submap_mode_enabled: + submap_mapper.reset() + st( + "INFO", + { + "SUBMAP_MODE": { + "enabled": bool(submap_mode_enabled), + "profile_allowed": bool(_submap_profile_allowed()), + "apply_profiles": list(submap_cfg.apply_profiles), + "local_window_frames": int(submap_cfg.local_window_frames), + "local_voxel_m": float(submap_cfg.local_voxel_m), + "global_voxel_m": float(submap_cfg.global_voxel_m), + } + }, + ) + + def apply_approx_pose(payload: Any) -> None: + nonlocal approx_pose_guess_tf, approx_pose_guess_until_t + nonlocal approx_pose_guess_fail_count, approx_pose_guess_success_count + nonlocal last_localize_transform + if payload is None: + approx_pose_guess_tf = None + approx_pose_guess_until_t = 0.0 + approx_pose_guess_fail_count = 0 + approx_pose_guess_success_count = 0 + st("INFO", {"APPROX_POSE": {"set": False}}) + return + if not isinstance(payload, dict): + st("WARN", "SET_APPROX_POSE ignored: payload must be dict.") + return + try: + x = float(payload.get("x")) + y = float(payload.get("y")) + except Exception: + st("WARN", "SET_APPROX_POSE ignored: x,y are required.") + return + z = float(payload.get("z", loc_guess_default_z_m)) + yaw_deg = payload.get("yaw_deg", None) + if yaw_deg is None: + yaw_deg = _yaw_deg_from_tf(last_localize_transform) + else: + yaw_deg = float(yaw_deg) + tf = _tf_from_xyzyaw(x, y, z, yaw_deg) + approx_pose_guess_tf = np.asarray(tf, dtype=np.float64) + approx_pose_guess_until_t = float(_now() + float(loc_guess_ttl_sec)) + approx_pose_guess_fail_count = 0 + approx_pose_guess_success_count = 0 + st( + "INFO", + { + "APPROX_POSE": { + "set": True, + "x": float(x), + "y": float(y), + "z": float(z), + "yaw_deg": float(yaw_deg), + "ttl_sec": float(loc_guess_ttl_sec), + } + }, + ) + + def apply_autosave(payload: Any) -> None: + nonlocal autosave_enabled, autosave_interval_sec, autosave_base_name + if not isinstance(payload, dict): + st("WARN", "SET_AUTOSAVE ignored: payload must be dict.") + return + autosave_enabled = _as_bool(payload.get("enabled", autosave_enabled), autosave_enabled) + try: + autosave_interval_sec = max(5.0, float(payload.get("interval_sec", autosave_interval_sec))) + except Exception: + pass + base_in = str(payload.get("base_name", autosave_base_name)).strip() + if base_in: + autosave_base_name = base_in + st( + "INFO", + { + "AUTOSAVE": { + "enabled": bool(autosave_enabled), + "interval_sec": float(autosave_interval_sec), + "base_name": str(autosave_base_name), + } + }, + ) + + def apply_nav_config(payload: Any) -> None: + nonlocal nav_cfg, nav_rt_cfg, nav_runtime, nav_global_planner + if not isinstance(payload, dict): + st("WARN", "SET_NAV_CONFIG ignored: payload must be dict.") + return + candidate = nav_cfg.patched(payload) + if float(candidate.z_max_m) <= float(candidate.z_min_m): + st("WARN", "SET_NAV_CONFIG ignored: z_max_m must be greater than z_min_m.") + return + nav_cfg = candidate + nav_exporter.update_config(nav_cfg) + nav_rt_cfg = nav_rt_cfg.patched( + { + "resolution_m": float(nav_cfg.resolution_m), + "z_min_m": float(nav_cfg.z_min_m), + "z_max_m": float(nav_cfg.z_max_m), + "padding_m": float(nav_cfg.padding_m), + "inflation_radius_m": float(nav_cfg.inflation_radius_m), + } + ) + nav_runtime = LiveCostmapRuntime(nav_rt_cfg) + nav_global_planner = GlobalAStarPlanner(blocked_cost=int(nav_rt_cfg.blocked_cost)) + st( + "INFO", + { + "NAV_CONFIG": { + "min_points": int(nav_cfg.min_points), + "resolution_m": float(nav_cfg.resolution_m), + "z_min_m": float(nav_cfg.z_min_m), + "z_max_m": float(nav_cfg.z_max_m), + "inflation_radius_m": float(nav_cfg.inflation_radius_m), + "padding_m": float(nav_cfg.padding_m), + } + }, + ) + + def apply_map_quality_config(payload: Any) -> None: + nonlocal map_quality_cfg, map_quality + if not isinstance(payload, dict): + st("WARN", "SET_MAP_QUALITY ignored: payload must be dict.") + return + merged = { + "enabled": map_quality_cfg.enabled, + "near_min_range_m": map_quality_cfg.near_min_range_m, + "ray_consistency_enabled": map_quality_cfg.ray_consistency_enabled, + "ray_bin_deg": map_quality_cfg.ray_bin_deg, + "ray_elev_bin_deg": map_quality_cfg.ray_elev_bin_deg, + "ray_max_behind_m": map_quality_cfg.ray_max_behind_m, + "ray_keep_n": map_quality_cfg.ray_keep_n, + "world_z_clip_enabled": map_quality_cfg.world_z_clip_enabled, + "world_z_min_m": map_quality_cfg.world_z_min_m, + "world_z_max_m": map_quality_cfg.world_z_max_m, + "outlier_filter_enabled": map_quality_cfg.outlier_filter_enabled, + "outlier_voxel_m": map_quality_cfg.outlier_voxel_m, + "outlier_min_points": map_quality_cfg.outlier_min_points, + } + merged.update(payload) + map_quality_cfg = IndoorMapQualityConfig.from_dict(merged) + map_quality = IndoorMapQualityFilter(map_quality_cfg) + st( + "INFO", + { + "MAP_QUALITY": { + "enabled": bool(map_quality_cfg.enabled), + "near_min_range_m": float(map_quality_cfg.near_min_range_m), + "ray_consistency_enabled": bool(map_quality_cfg.ray_consistency_enabled), + "ray_bin_deg": float(map_quality_cfg.ray_bin_deg), + "ray_elev_bin_deg": float(map_quality_cfg.ray_elev_bin_deg), + "ray_max_behind_m": float(map_quality_cfg.ray_max_behind_m), + "ray_keep_n": int(map_quality_cfg.ray_keep_n), + "world_z_clip_enabled": bool(map_quality_cfg.world_z_clip_enabled), + "world_z_min_m": float(map_quality_cfg.world_z_min_m), + "world_z_max_m": float(map_quality_cfg.world_z_max_m), + "outlier_filter_enabled": bool(map_quality_cfg.outlier_filter_enabled), + "outlier_voxel_m": float(map_quality_cfg.outlier_voxel_m), + "outlier_min_points": int(map_quality_cfg.outlier_min_points), + } + }, + ) + + def apply_nav_runtime_config(payload: Any) -> None: + nonlocal nav_rt_cfg, nav_runtime, nav_global_planner, nav_path_world, nav_last_plan_t, nav_last_update_t + if not isinstance(payload, dict): + st("WARN", "SET_NAV_RUNTIME ignored: payload must be dict.") + return + nav_rt_cfg = nav_rt_cfg.patched(payload) + nav_runtime = LiveCostmapRuntime(nav_rt_cfg) + nav_global_planner = GlobalAStarPlanner(blocked_cost=int(nav_rt_cfg.blocked_cost)) + nav_path_world = [] + nav_last_plan_t = 0.0 + nav_last_update_t = 0.0 + st( + "INFO", + { + "NAV_RUNTIME": { + "enabled": bool(nav_rt_cfg.enabled), + "resolution_m": float(nav_rt_cfg.resolution_m), + "z_min_m": float(nav_rt_cfg.z_min_m), + "z_max_m": float(nav_rt_cfg.z_max_m), + "inflation_radius_m": float(nav_rt_cfg.inflation_radius_m), + "dynamic_decay_sec": float(nav_rt_cfg.dynamic_decay_sec), + "dynamic_min_hits": int(nav_rt_cfg.dynamic_min_hits), + "blocked_cost": int(nav_rt_cfg.blocked_cost), + } + }, + ) + + def apply_nav_goal(payload: Any) -> None: + nonlocal nav_goal_xy, nav_path_world, nav_last_plan_t + if not isinstance(payload, dict): + st("WARN", "SET_NAV_GOAL ignored: payload must be dict.") + return + try: + x = float(payload.get("x")) + y = float(payload.get("y")) + except Exception: + st("WARN", "SET_NAV_GOAL ignored: x/y required.") + return + nav_goal_xy = (x, y) + nav_path_world = [] + nav_last_plan_t = 0.0 + st("INFO", {"NAV_GOAL": {"x": float(x), "y": float(y)}}) + + def clear_nav_goal() -> None: + nonlocal nav_goal_xy, nav_path_world + nav_goal_xy = None + nav_path_world = [] + st("INFO", {"NAV_GOAL": None}) + + def mission_start(payload: Any) -> None: + nonlocal nav_goal_xy, nav_path_world, nav_last_plan_t + if not isinstance(payload, dict): + st("WARN", "MISSION_START ignored: payload must be dict.") + return + raw = payload.get("waypoints", []) + waypoints: List[Tuple[float, float]] = [] + if isinstance(raw, list): + for wp in raw: + if isinstance(wp, dict): + try: + waypoints.append((float(wp.get("x")), float(wp.get("y")))) + except Exception: + continue + elif isinstance(wp, (list, tuple)) and len(wp) >= 2: + try: + waypoints.append((float(wp[0]), float(wp[1]))) + except Exception: + continue + mission.start(waypoints=waypoints) + goal = mission.current_goal() + nav_goal_xy = None if goal is None else (float(goal[0]), float(goal[1])) + nav_path_world = [] + nav_last_plan_t = 0.0 + st("INFO", {"MISSION": mission.snapshot()}) + + def mission_pause() -> None: + mission.pause() + st("INFO", {"MISSION": mission.snapshot()}) + + def mission_resume() -> None: + mission.resume() + st("INFO", {"MISSION": mission.snapshot()}) + + def mission_stop() -> None: + nonlocal nav_goal_xy, nav_path_world + mission.stop() + nav_goal_xy = None + nav_path_world = [] + st("INFO", {"MISSION": mission.snapshot()}) + + def _safe_record_base(name: str) -> str: + base = (name or "").strip() or "slam_recording" + for bad in ("/", "\\", ":", "*", "?", "\"", "<", ">", "|"): + base = base.replace(bad, "_") + return base + + def record_start(payload: Any) -> None: + nonlocal recording_enabled, recording_frames, recording_poses, recording_base_name, recording_drop_count + base = recording_base_name + if isinstance(payload, dict): + b = str(payload.get("base_name", "")).strip() + if b: + base = b + recording_base_name = _safe_record_base(base) + recording_frames = [] + recording_poses = [] + recording_drop_count = 0 + recording_enabled = True + st( + "INFO", + { + "RECORDING": { + "enabled": True, + "base_name": str(recording_base_name), + "max_frames": int(recording_max_frames), + } + }, + ) + + def record_stop(payload: Any) -> None: + nonlocal recording_enabled, recording_frames, recording_poses, recording_base_name + save = True + base = recording_base_name + if isinstance(payload, dict): + save = _as_bool(payload.get("save", True), True) + b = str(payload.get("base_name", "")).strip() + if b: + base = b + recording_enabled = False + if (not save) or len(recording_frames) == 0: + st( + "INFO", + { + "RECORDING": { + "enabled": False, + "frames": int(len(recording_frames)), + "saved": False, + } + }, + ) + recording_frames = [] + recording_poses = [] + return + base = _safe_record_base(base) + stamp = time.strftime("%Y%m%d_%H%M%S", time.localtime()) + out_path = Path(map_cfg.data_folder) / f"{base}_{stamp}.npz" + try: + frames_obj = np.empty((len(recording_frames),), dtype=object) + for i, fr in enumerate(recording_frames): + frames_obj[i] = np.asarray(fr, dtype=np.float32) + if len(recording_poses) == len(recording_frames) and len(recording_poses) > 0: + poses_np = np.stack(recording_poses, axis=0).astype(np.float32) + np.savez_compressed(out_path, frames=frames_obj, poses=poses_np) + else: + np.savez_compressed(out_path, frames=frames_obj) + st( + "INFO", + { + "RECORD_SAVED": { + "path": str(out_path), + "frames": int(len(recording_frames)), + "dropped": int(recording_drop_count), + } + }, + ) + except Exception as e: + st("ERROR", f"RECORD save failed: {e}") + recording_frames = [] + recording_poses = [] + + def _queue_lag() -> int: + try: + return int(data_q.qsize()) + except Exception: + return -1 + + def _update_perf_rollup(now_t: float, stable_count: int) -> None: + nonlocal perf_input_count, perf_publish_count, perf_last_rate_t + nonlocal perf_last_cpu_wall_t, perf_last_cpu_proc_t + nonlocal perf_input_fps, perf_publish_fps, perf_cpu_pct + nonlocal perf_queue_lag, perf_stable_growth, perf_prev_stable_count, perf_prev_stable_t + + dt_rates = float(now_t - perf_last_rate_t) + if dt_rates >= 0.8: + perf_input_fps = float(perf_input_count) / max(dt_rates, 1e-6) + perf_publish_fps = float(perf_publish_count) / max(dt_rates, 1e-6) + perf_input_count = 0 + perf_publish_count = 0 + perf_last_rate_t = now_t + + dt_cpu = float(now_t - perf_last_cpu_wall_t) + if dt_cpu >= 0.8: + cpu_now = float(time.process_time()) + perf_cpu_pct = 100.0 * float(cpu_now - perf_last_cpu_proc_t) / max(dt_cpu, 1e-6) + perf_last_cpu_proc_t = cpu_now + perf_last_cpu_wall_t = now_t + + dt_growth = float(now_t - perf_prev_stable_t) + if dt_growth >= 0.8: + perf_stable_growth = float(stable_count - perf_prev_stable_count) / max(dt_growth, 1e-6) + perf_prev_stable_count = int(stable_count) + perf_prev_stable_t = now_t + + perf_queue_lag = _queue_lag() + + def maybe_autosave(now_t: float) -> None: + nonlocal last_autosave_t + if not autosave_enabled or not mapping_enabled: + return + if (now_t - float(last_autosave_t)) < float(autosave_interval_sec): + return + try: + if cleanup_enabled: + full_pts = stable.get_points() + if full_pts is not None and len(full_pts) >= int(cleanup_min_total_points): + cleaned, _ = cleanup_map_islands(full_pts) + if cleaned is not None and len(cleaned) >= int(map_cfg.min_points_to_save): + stable.set_points(cleaned) + pts = stable.get_save_points() + n = 0 if pts is None else int(len(pts)) + req = int(map_cfg.min_points_to_save) + if n < req: + last_autosave_t = now_t + return + out_path = stable.export_map(str(autosave_base_name)) + last_autosave_t = now_t + st("INFO", {"AUTOSAVED": {"path": str(out_path), "points": int(n)}}) + except Exception as e: + last_autosave_t = now_t + st("WARN", f"AUTOSAVE failed: {e}") + + # Checkpoint the submap alongside autosave + if submap_ckpt is not None and submap_mode_enabled: + submap_ckpt.save(submap_mapper) + + # ---------------- lidar frame processor ---------------- + def process_points(points: np.ndarray): + nonlocal last_pub, mapping_enabled, localize_only_enabled, worker_mode, last_key_pose, last_frame_t + nonlocal last_guard_pose, last_guard_t, guard_reject_count, guard_last_warn_t + nonlocal odom_to_map_transform, map_lock_last_t, map_lock_accept_count, map_lock_reject_count, map_lock_last_warn_t + nonlocal continuity_prev_pts, continuity_reject_count, continuity_consecutive_rejects, continuity_last_warn_t + nonlocal rotate_freeze_count, rotate_last_warn_t + nonlocal cleanup_last_t, cleanup_removed_total, cleanup_last_info + nonlocal slam_to_ref_transform, slam_to_ref_valid, last_localize_transform + nonlocal perf_input_count, perf_publish_count, perf_icp_ms + nonlocal recording_enabled, recording_frames, recording_poses, recording_drop_count + nonlocal nav_goal_xy, nav_last_update_t, nav_last_plan_t, nav_path_world + nonlocal latest_live_pts, latest_live_localize_pts + nonlocal ref_points_cache, ref_nav_points_cache, ref_nav_cache_src_n + + if points is None or len(points) == 0: + return + + perf_input_count += 1 + + pts = points.astype(np.float32, copy=True) + pts[:, 1] *= -1 + pts[:, 2] *= -1 + + # Reject invalid values and out-of-range returns before SLAM. + finite_mask = np.isfinite(pts).all(axis=1) + if not np.all(finite_mask): + pts = pts[finite_mask] + if len(pts) == 0: + return + + r2 = np.einsum("ij,ij->i", pts, pts) + min_r = float(map_quality_cfg.near_min_range_m if map_quality_cfg.enabled else 0.15) + min_r2 = min_r * min_r + max_r = float(eng_cfg.max_range) + max_r2 = max_r * max_r if max_r > 0 else np.inf + range_mask = (r2 >= min_r2) & (r2 <= max_r2) + if not np.all(range_mask): + pts = pts[range_mask] + if len(pts) < 40: + return + + # pre-downsample stride from config + stride = int(live_stride) + if stride > 1: + pts = pts[::stride] + if map_quality_cfg.enabled: + pts = map_quality.apply_sensor(pts) + if len(pts) < 40: + return + latest_live_pts = np.array(pts, dtype=np.float32, copy=True) + latest_live_localize_pts = None + + pose = None + stable_pts_display = None + stable_cols = None + fusion_info: Dict[str, Any] = {} + nav_runtime_info = None + nav_info: Dict[str, Any] = {} + safety_info: Dict[str, Any] = {} + map_lock_info: Dict[str, Any] = {"status": "skip", "ran": False} + continuity_info: Dict[str, Any] = {"status": "na"} + cleanup_info: Dict[str, Any] = dict(cleanup_last_info) if isinstance(cleanup_last_info, dict) else {"status": "na"} + rotate_freeze_active = False + submap_info: Dict[str, Any] = submap_mapper.status( + active=False, + reason="idle", + profile=str(stability_profile), + profile_allowed=_submap_profile_allowed(), + ) + ref_match_points_pub = None + ref_match_colors_pub = None + ref_match_stats: Dict[str, Any] = {} + stable_points_in_global_frame = False + mode_now = str(worker_mode) + + if mapping_enabled: + now_t = _now() + dt = 0.1 if last_frame_t <= 0 else float(np.clip(now_t - last_frame_t, 0.02, 0.25)) + last_frame_t = now_t + ts = np.linspace(0.0, dt, len(pts), dtype=np.float64) + + t_icp0 = _now() + slam.register_frame(pts, ts) + perf_icp_ms = 1000.0 * (_now() - t_icp0) + odom_pose = slam.last_pose if hasattr(slam, "last_pose") else getattr(slam, "pose", None) + if odom_pose is not None: + odom_pose, fusion_info = sensor_fusion.fuse_pose(np.asarray(odom_pose, dtype=np.float64), now=now_t) + try: + pose = np.asarray(odom_to_map_transform, dtype=np.float64) @ np.asarray(odom_pose, dtype=np.float64) + except Exception: + pose = np.asarray(odom_pose, dtype=np.float64) + + # Reject obviously unstable jumps to avoid "wall on wall" artifacts. + unstable_jump = False + trans_step_for_mode = 0.0 + rot_step_for_mode = 0.0 + rotating_in_place = False + if pose_guard_enabled and pose is not None: + pose_np = np.asarray(pose, dtype=np.float64) + if last_guard_pose is not None: + dpos = pose_np[:3, 3] - last_guard_pose[:3, 3] + trans_step = float(np.linalg.norm(dpos)) + rrel = pose_np[:3, :3] @ last_guard_pose[:3, :3].T + rot_step = float(np.degrees(np.arccos(np.clip((np.trace(rrel) - 1.0) * 0.5, -1.0, 1.0)))) + trans_step_for_mode = float(trans_step) + rot_step_for_mode = float(rot_step) + if rotate_mode_enabled and trans_step_for_mode <= float(rotate_in_place_max_trans_m) and rot_step_for_mode >= float(rotate_in_place_min_rot_deg): + rotating_in_place = True + scale = max(1.0, float(dt) / max(1e-3, float(pose_guard_ref_dt))) + max_t = float(pose_guard_max_trans) * scale + max_r = float(pose_guard_max_rot_deg) * scale + if rotating_in_place: + max_r = max(max_r, float(rotate_pose_guard_max_rot_deg) * scale) + if trans_step > max_t or rot_step > max_r: + unstable_jump = True + guard_reject_count += 1 + pose = np.array(last_guard_pose, dtype=np.float64, copy=True) + stable_pts_display = stable.get_display_points() + if (now_t - guard_last_warn_t) > 1.0: + guard_last_warn_t = now_t + st( + "WARN", + ( + "MOTION_GUARD rejected frame: " + f"dpos={trans_step:.2f}m>{max_t:.2f}m or drot={rot_step:.1f}deg>{max_r:.1f}deg " + f"(count={guard_reject_count})" + ), + ) + else: + last_guard_pose = np.array(pose_np, dtype=np.float64, copy=True) + last_guard_t = now_t + else: + last_guard_pose = np.array(pose_np, dtype=np.float64, copy=True) + last_guard_t = now_t + elif pose is not None and rotate_mode_enabled and last_key_pose is not None: + # Fallback rotate-in-place detector when pose-guard is disabled. + try: + dpos = np.asarray(pose, dtype=np.float64)[:3, 3] - np.asarray(last_key_pose, dtype=np.float64)[:3, 3] + trans_step_for_mode = float(np.linalg.norm(dpos)) + rrel = np.asarray(pose, dtype=np.float64)[:3, :3] @ np.asarray(last_key_pose, dtype=np.float64)[:3, :3].T + rot_step_for_mode = float(np.degrees(np.arccos(np.clip((np.trace(rrel) - 1.0) * 0.5, -1.0, 1.0)))) + rotating_in_place = bool( + trans_step_for_mode <= float(rotate_in_place_max_trans_m) + and rot_step_for_mode >= float(rotate_in_place_min_rot_deg) + ) + except Exception: + rotating_in_place = False + + if not unstable_jump: + map_lock_block_frame = False + # Periodic scan-to-map correction keeps the accumulated map anchored + # and reduces duplicated structures when traversing long paths. + if pose is not None: + ml_overrides = None + if rotating_in_place and rotate_mode_enabled: + ml_overrides = { + "period_sec": float(rotate_map_lock_period_sec), + "accept_fitness": float(rotate_map_lock_accept_fitness), + "accept_rmse": float(rotate_map_lock_accept_rmse), + "max_step_rotation_deg": float(rotate_map_lock_max_step_rot_deg), + } + corr_lock, map_lock_info = compute_map_lock_correction(pts, pose, now_t, overrides=ml_overrides) + if corr_lock is not None: + corr_np = np.asarray(corr_lock, dtype=np.float64) + corr_apply = np.asarray(corr_np, dtype=np.float64, copy=True) + if map_lock_apply_damping: + alpha_t = float(map_lock_apply_alpha_t) + alpha_r = float(map_lock_apply_alpha_r) + max_t_apply = float(map_lock_apply_max_trans_m) + max_r_apply = float(map_lock_apply_max_rot_deg) + if rotating_in_place and rotate_mode_enabled: + alpha_t = float(rotate_map_lock_apply_alpha_t) + alpha_r = float(rotate_map_lock_apply_alpha_r) + max_t_apply = float(rotate_map_lock_apply_max_trans_m) + max_r_apply = float(rotate_map_lock_apply_max_rot_deg) + corr_apply = _blend_rigid_tf( + np.eye(4, dtype=np.float64), + corr_apply, + alpha_t=float(alpha_t), + alpha_r=float(alpha_r), + ) + tvec = np.asarray(corr_apply[:3, 3], dtype=np.float64) + tnorm = float(np.linalg.norm(tvec)) + if tnorm > float(max_t_apply) and tnorm > 1e-9: + corr_apply[:3, 3] = tvec * (float(max_t_apply) / tnorm) + dpos_apply, drot_apply = _tf_delta(np.eye(4, dtype=np.float64), corr_apply) + if drot_apply > float(max_r_apply) and drot_apply > 1e-6: + corr_apply = _blend_rigid_tf( + np.eye(4, dtype=np.float64), + corr_apply, + alpha_t=1.0, + alpha_r=float(max_r_apply) / float(drot_apply), + ) + else: + dpos_apply, drot_apply = _tf_delta(np.eye(4, dtype=np.float64), corr_apply) + map_lock_info["applied_dpos_m"] = float(dpos_apply) + map_lock_info["applied_drot_deg"] = float(drot_apply) + map_lock_info["damped"] = bool(map_lock_apply_damping) + pose = corr_apply @ np.asarray(pose, dtype=np.float64) + loc_frames.apply_map_correction(corr_apply) + _sync_loc_vars_from_service() + if last_guard_pose is not None: + last_guard_pose = corr_apply @ np.asarray(last_guard_pose, dtype=np.float64) + if last_key_pose is not None: + last_key_pose = corr_apply @ np.asarray(last_key_pose, dtype=np.float64) + map_lock_accept_count += 1 + elif bool(map_lock_info.get("ran", False)): + map_lock_reject_count += 1 + block_on_reject_now = bool(map_lock_block_on_reject) + if rotating_in_place and rotate_mode_enabled: + block_on_reject_now = bool(rotate_map_lock_block_on_reject) + if block_on_reject_now: + map_lock_block_frame = True + # Retry map-lock quickly after a reject to recover alignment faster. + map_lock_last_t = float(now_t - map_lock_period_sec + map_lock_retry_after_sec) + if (now_t - map_lock_last_warn_t) > 1.0: + map_lock_last_warn_t = now_t + fit_r = float(map_lock_info.get("fitness", 0.0)) + rmse_r = float(map_lock_info.get("rmse", 9e9)) + dpos_r = float(map_lock_info.get("dpos_m", 0.0)) + drot_r = float(map_lock_info.get("drot_deg", 0.0)) + st( + "WARN", + ( + "MAP_LOCK rejected; skipping frame integration: " + f"fit={fit_r:.2f}, rmse={rmse_r:.2f}, " + f"dpos={dpos_r:.2f}m, drot={drot_r:.1f}deg" + ), + ) + block_on_severe_now = bool(map_lock_block_on_severe) + if rotating_in_place and rotate_mode_enabled: + block_on_severe_now = bool(rotate_map_lock_block_on_severe) + if block_on_severe_now: + fit_r = float(map_lock_info.get("fitness", 0.0)) + rmse_r = float(map_lock_info.get("rmse", 9e9)) + dpos_r = float(map_lock_info.get("dpos_m", 0.0)) + drot_r = float(map_lock_info.get("drot_deg", 0.0)) + severe_reject = bool( + fit_r <= float(map_lock_severe_fit) + or rmse_r >= float(map_lock_severe_rmse) + or dpos_r >= float(map_lock_severe_trans_m) + or drot_r >= float(map_lock_severe_rot_deg) + ) + if severe_reject: + map_lock_block_frame = True + if (now_t - map_lock_last_warn_t) > 1.0: + map_lock_last_warn_t = now_t + st( + "WARN", + ( + "MAP_LOCK severe reject; skipping frame integration: " + f"fit={fit_r:.2f}, rmse={rmse_r:.2f}, " + f"dpos={dpos_r:.2f}m, drot={drot_r:.1f}deg" + ), + ) + + # keyframe gating from config + if map_lock_block_frame: + stable_pts_display = stable.get_display_points() + elif eng_cfg.keyframe_enabled and pose is not None and not pose_delta_ok(pose, last_key_pose): + # skip filter/map update + stable_pts_display = stable.get_display_points() + else: + if pose is not None: + last_key_pose = pose + + points_world = to_world_points(pts, pose) + stable_now = stable.get_points() + stable_now_n = 0 if stable_now is None else int(len(stable_now)) + rotate_freeze_active = bool( + rotate_mode_enabled + and rotate_freeze_mapping + and rotating_in_place + and stable_now_n >= int(rotate_freeze_min_stable_pts) + ) + if rotate_freeze_active: + rotate_freeze_count += 1 + continuity_consecutive_rejects = 0 + continuity_pts_ds = voxel_downsample_np(points_world, float(continuity_voxel_m)) + continuity_prev_pts = ( + np.array(continuity_pts_ds, dtype=np.float32, copy=True) + if continuity_pts_ds is not None and len(continuity_pts_ds) > 0 + else continuity_prev_pts + ) + continuity_info = { + "status": "skip_rotate_freeze", + "trans_step_m": float(trans_step_for_mode), + "rot_step_deg": float(rot_step_for_mode), + "stable_points": int(stable_now_n), + "freeze_count": int(rotate_freeze_count), + } + stable_pts_display = stable.get_display_points() + if (now_t - rotate_last_warn_t) > 1.0: + rotate_last_warn_t = now_t + st( + "INFO", + ( + "ROTATE_FREEZE active; skipping map integration during in-place turn " + f"(stable={stable_now_n}, dpos={trans_step_for_mode:.3f}m, drot={rot_step_for_mode:.1f}deg)" + ), + ) + else: + if rotating_in_place and rotate_mode_enabled and rotate_skip_continuity: + continuity_ok = True + continuity_pts_ds = voxel_downsample_np(points_world, float(continuity_voxel_m)) + continuity_info = { + "status": "skip_rotating_in_place", + "trans_step_m": float(trans_step_for_mode), + "rot_step_deg": float(rot_step_for_mode), + } + else: + continuity_ok, continuity_info, continuity_pts_ds = check_frame_continuity(points_world) + if not continuity_ok: + continuity_reject_count += 1 + continuity_consecutive_rejects += 1 + if continuity_consecutive_rejects >= int(continuity_recover_after_rejects): + continuity_ok = True + continuity_consecutive_rejects = 0 + continuity_info = { + "status": "resync_after_rejects", + "reject_streak": int(continuity_recover_after_rejects), + "trans_step_m": float(trans_step_for_mode), + "rot_step_deg": float(rot_step_for_mode), + } + continuity_prev_pts = ( + np.array(continuity_pts_ds, dtype=np.float32, copy=True) + if continuity_pts_ds is not None and len(continuity_pts_ds) > 0 + else continuity_prev_pts + ) + st( + "WARN", + ( + "CONTINUITY auto-resync after repeated rejects; " + f"recover_after={int(continuity_recover_after_rejects)}" + ), + ) + if not continuity_ok: + stable_pts_display = stable.get_display_points() + # Trigger a quick map-lock retry after continuity rejection. + map_lock_last_t = float(now_t - map_lock_period_sec + map_lock_retry_after_sec) + if (now_t - continuity_last_warn_t) > 1.0: + continuity_last_warn_t = now_t + st( + "WARN", + ( + "CONTINUITY rejected; skipping frame integration: " + f"inlier={float(continuity_info.get('inlier_ratio', 0.0)):.2f}, " + f"med={float(continuity_info.get('median_m', 0.0)):.2f}m, " + f"p90={float(continuity_info.get('p90_m', 0.0)):.2f}m " + f"(count={int(continuity_reject_count)})" + ), + ) + else: + continuity_consecutive_rejects = 0 + continuity_prev_pts = ( + np.array(continuity_pts_ds, dtype=np.float32, copy=True) + if continuity_pts_ds is not None and len(continuity_pts_ds) > 0 + else None + ) + if map_quality_cfg.enabled: + points_world = map_quality.apply_world(points_world) + filt.update(points_world) + stable_pts = filt.get_stable_points() + stable.set_points(stable_pts) + if ( + cleanup_enabled + and stable_pts is not None + and len(stable_pts) >= int(cleanup_min_total_points) + and (now_t - float(cleanup_last_t)) >= float(cleanup_period_sec) + ): + cleanup_last_t = float(now_t) + cleaned_pts, cleanup_info = cleanup_map_islands(stable_pts) + cleanup_last_info = dict(cleanup_info) + removed_now = int(cleanup_info.get("removed", 0)) + if removed_now > 0: + cleanup_removed_total += int(removed_now) + stable.set_points(cleaned_pts) + if hasattr(filt, "seed_stable_points"): + try: + filt.seed_stable_points( + cleaned_pts, + now=now_t, + hit_count=int(runtime_filter_hit_threshold), + clear_existing=True, + ) + except Exception as _cln_exc: + st("WARN", f"[cleanup] filter re-seed after cleanup failed: {_cln_exc}") + st( + "INFO", + { + "MAP_CLEANUP": { + **cleanup_info, + "removed_total": int(cleanup_removed_total), + } + }, + ) + else: + cleanup_info = dict(cleanup_last_info) if isinstance(cleanup_last_info, dict) else {"status": "na"} + stable_pts_display = stable.get_display_points() + + # Lightweight loop closure + pose-graph optimization. + if pose is not None and loop_cfg.enabled: + loop_res = loop_backend.process_frame(pts, np.asarray(pose, dtype=np.float64)) + if loop_res.loop_detected or loop_res.optimized or ("rejected" in loop_res.info): + st( + "INFO", + { + "LOOP": { + "detected": bool(loop_res.loop_detected), + "optimized": bool(loop_res.optimized), + **loop_res.info, + } + }, + ) + if loop_res.optimized: + corr = np.asarray(loop_res.correction, dtype=np.float64) + # Apply correction to map and reseed filter for consistency. + stable_all = stable.get_points() + corrected = apply_transform_points(stable_all, corr) + if corrected is not None: + stable.set_points(corrected) + if hasattr(filt, "seed_stable_points"): + filt.seed_stable_points( + corrected, + now=_now(), + hit_count=int(filt_cfg.hits_threshold), + clear_existing=True, + ) + stable_pts_display = stable.get_display_points() + loc_frames.apply_loop_correction(corr, update_reference=True) + _sync_loc_vars_from_service() + if last_guard_pose is not None: + last_guard_pose = corr @ np.asarray(last_guard_pose, dtype=np.float64) + if last_key_pose is not None: + last_key_pose = corr @ np.asarray(last_key_pose, dtype=np.float64) + pose = corr @ np.asarray(pose, dtype=np.float64) + maybe_auto_localize() + maybe_autosave(now_t) + if submap_ckpt is not None and submap_mode_enabled: + submap_ckpt.maybe_save(submap_mapper) + elif localize_only_enabled: + now_t = _now() + dt = 0.1 if last_frame_t <= 0 else float(np.clip(now_t - last_frame_t, 0.02, 0.25)) + last_frame_t = now_t + ts = np.linspace(0.0, dt, len(pts), dtype=np.float64) + t_icp0 = _now() + slam.register_frame(pts, ts) + perf_icp_ms = 1000.0 * (_now() - t_icp0) + odom_pose = slam.last_pose if hasattr(slam, "last_pose") else getattr(slam, "pose", None) + if odom_pose is not None: + odom_pose, fusion_info = sensor_fusion.fuse_pose(np.asarray(odom_pose, dtype=np.float64), now=now_t) + pose = np.asarray(odom_pose, dtype=np.float64) + else: + pose = None + + live_for_localize = np.asarray(pts, dtype=np.float32) + if pose is not None: + live_for_localize = to_world_points(pts, pose) + + if loc_live_stack_enabled: + frame_ds = voxel_downsample_np(live_for_localize, float(loc_live_stack_voxel_m)) + if frame_ds is not None and len(frame_ds) > 0: + loc_live_stack.append(np.asarray(frame_ds, dtype=np.float32)) + if len(loc_live_stack) >= int(loc_live_stack_min_frames): + cat = np.concatenate(list(loc_live_stack), axis=0) + stack_pts = voxel_downsample_np(cat, float(loc_live_stack_voxel_m)) + if len(stack_pts) > int(loc_live_stack_max_points): + step = max(2, int(np.ceil(float(len(stack_pts)) / float(loc_live_stack_max_points)))) + stack_pts = stack_pts[::step][: int(loc_live_stack_max_points)] + if stack_pts is not None and len(stack_pts) > 0: + live_for_localize = np.asarray(stack_pts, dtype=np.float32) + + latest_live_localize_pts = np.array(live_for_localize, dtype=np.float32, copy=True) + maybe_auto_localize(src_live=live_for_localize) + loc_state_name = str(loc_state.state).upper().strip() + submap_active = bool( + submap_mode_enabled + and _submap_profile_allowed() + and slam_to_ref_valid + and loc_state_name in ("TRACKING", "DEGRADED") + and float(last_localize_confidence) >= 0.45 + ) + if submap_active: + if pose is not None and np.asarray(pose).shape == (4, 4): + pose_ref = np.asarray(slam_to_ref_transform, dtype=np.float64) @ np.asarray(pose, dtype=np.float64) + pts_ref = to_world_points(pts, pose_ref) + else: + pts_ref = apply_transform_points(pts, slam_to_ref_transform) + pose_ref = ( + np.asarray(slam_to_ref_transform, dtype=np.float64) + if np.asarray(slam_to_ref_transform).shape == (4, 4) + else None + ) + if pts_ref is not None and len(pts_ref) > 0: + submap_info = submap_mapper.integrate(pts_ref, now=now_t, pose_world=pose_ref) + stable_pts_display = submap_mapper.get_display_points() + stable_points_in_global_frame = True + else: + stable_pts_display = live_for_localize + submap_info = submap_mapper.status( + active=False, + reason="empty_live", + profile=str(stability_profile), + profile_allowed=True, + ) + else: + if (not submap_mode_enabled) or (not _submap_profile_allowed()) or (not slam_to_ref_valid): + if submap_mapper.has_points and ((not _submap_profile_allowed()) or (not submap_mode_enabled) or (not slam_to_ref_valid)): + submap_mapper.reset() + stable_pts_display = live_for_localize + submap_info = submap_mapper.status( + active=False, + reason="disabled_or_not_localized", + profile=str(stability_profile), + profile_allowed=_submap_profile_allowed(), + ) + # Keep pose in odom frame; publish path maps it to reference when localized. + else: + stable_pts_display = stable.get_display_points() + + if recording_enabled: + if len(recording_frames) < int(recording_max_frames): + recording_frames.append(np.array(pts, dtype=np.float32, copy=True)) + if pose is not None and np.asarray(pose).shape == (4, 4): + recording_poses.append(np.array(pose, dtype=np.float32, copy=True)) + else: + recording_drop_count += 1 + recording_enabled = False + st( + "WARN", + ( + "RECORDING auto-stopped: reached max frames " + f"({int(recording_max_frames)})." + ), + ) + + # publish throttling + t = _now() + if pub_hz > 0: + if (t - last_pub) < (1.0 / pub_hz): + return + last_pub = t + + stable_pts_pub = stable_pts_display + pose_pub = pose + if slam_to_ref_valid and not stable_points_in_global_frame: + stable_pts_pub = apply_transform_points(stable_pts_display, slam_to_ref_transform) + if pose is not None: + try: + pose_pub = slam_to_ref_transform @ np.asarray(pose, dtype=np.float64) + except Exception: + pose_pub = pose + + if stable_pts_pub is not None and len(stable_pts_pub) > 0: + if localize_only_enabled: + # Blue live overlay for map localization workflows. + stable_cols = np.zeros((len(stable_pts_pub), 4), dtype=np.float32) + stable_cols[:, 0] = 0.18 + stable_cols[:, 1] = 0.58 + stable_cols[:, 2] = 1.00 + stable_cols[:, 3] = 0.72 + else: + alpha_live = 0.90 + stable_cols = height_colors_fast(stable_pts_pub, alpha=float(alpha_live)) + + live_world_for_nav = None + if localize_only_enabled: + if slam_to_ref_valid: + if pose is not None and np.asarray(pose).shape == (4, 4): + try: + pose_ref_live = np.asarray(slam_to_ref_transform, dtype=np.float64) @ np.asarray(pose, dtype=np.float64) + live_world_for_nav = to_world_points(pts, pose_ref_live) + except Exception: + live_world_for_nav = apply_transform_points(pts, slam_to_ref_transform) + else: + live_world_for_nav = apply_transform_points(pts, slam_to_ref_transform) + else: + if pose_pub is not None: + live_world_for_nav = to_world_points(pts, np.asarray(pose_pub, dtype=np.float64)) + elif slam_to_ref_valid: + live_world_for_nav = apply_transform_points(pts, slam_to_ref_transform) + + if localize_only_enabled: + pose_ref_for_vis = None + if slam_to_ref_valid and pose_pub is not None and np.asarray(pose_pub).shape == (4, 4): + pose_ref_for_vis = np.asarray(pose_pub, dtype=np.float64) + elif slam_to_ref_valid: + pose_ref_for_vis = np.asarray(slam_to_ref_transform, dtype=np.float64) + ref_match_points_pub, ref_match_colors_pub, ref_match_stats = _build_ref_match_visual( + live_world_for_nav, + pose_ref_for_vis, + _now(), + ) + else: + ref_match_stats = {"enabled": bool(loc_vis_enabled), "updated": False, "reason": "not_localize_mode"} + + nav_static_points = stable_pts_pub + if localize_only_enabled and ref_points_cache is not None and len(ref_points_cache) > 0: + try: + src_n = int(len(ref_points_cache)) + if ref_nav_points_cache is None or int(ref_nav_cache_src_n) != src_n: + nav_voxel = max(0.08, float(nav_rt_cfg.resolution_m) * 1.25) + nav_pts = voxel_downsample_np(np.asarray(ref_points_cache, dtype=np.float32), float(nav_voxel)) + if nav_pts is None: + nav_pts = np.zeros((0, 3), dtype=np.float32) + if len(nav_pts) > 300000: + step = max(2, int(np.ceil(float(len(nav_pts)) / 300000.0))) + nav_pts = nav_pts[::step] + ref_nav_points_cache = np.asarray(nav_pts, dtype=np.float32) + ref_nav_cache_src_n = src_n + if ref_nav_points_cache is not None and len(ref_nav_points_cache) > 0: + nav_static_points = ref_nav_points_cache + except Exception as _nav_exc: + st("WARN", f"[nav] static point cache update failed: {_nav_exc}") + + if (t - nav_last_update_t) >= 0.10: + nav_runtime_info = nav_runtime.update(nav_static_points, live_world_for_nav, t) + nav_last_update_t = t + + mission_snapshot = mission.snapshot() + if pose_pub is not None and np.asarray(pose_pub).shape == (4, 4): + mission_snapshot = mission.update_pose(float(pose_pub[0, 3]), float(pose_pub[1, 3])) + goal_from_mission = mission.current_goal() + if goal_from_mission is not None: + nav_goal_xy = (float(goal_from_mission[0]), float(goal_from_mission[1])) + elif mission_snapshot.get("completed", False): + nav_goal_xy = None + nav_path_world = [] + + if nav_goal_xy is not None and pose_pub is not None and nav_runtime.grid is not None: + if (t - nav_last_plan_t) >= float(nav_plan_period_sec) or len(nav_path_world) <= 2: + grid = nav_runtime.grid + try: + nav_path_world = nav_global_planner.plan( + np.asarray(grid["costmap"], dtype=np.uint8), + np.asarray(grid["origin_xy"], dtype=np.float32), + float(grid["resolution_m"]), + (float(pose_pub[0, 3]), float(pose_pub[1, 3])), + (float(nav_goal_xy[0]), float(nav_goal_xy[1])), + ) + except Exception as _astar_exc: + st("WARN", f"[nav] A* planning failed: {_astar_exc}") + nav_path_world = [] + nav_last_plan_t = t + elif mission.current_goal() is None: + nav_path_world = [] + + nav_cmd = {"linear_mps": 0.0, "angular_rps": 0.0, "goal_reached": False, "blocked": False} + if pose_pub is not None and len(nav_path_world) > 0: + nav_cmd = nav_local_planner.compute_command(np.asarray(pose_pub, dtype=np.float64), nav_path_world, nav_runtime) + if bool(nav_cmd.get("goal_reached", False)): + mission_snapshot = mission.update_pose(float(pose_pub[0, 3]), float(pose_pub[1, 3])) + next_goal = mission.current_goal() + nav_goal_xy = None if next_goal is None else (float(next_goal[0]), float(next_goal[1])) + nav_path_world = [] + + safety_info = safety.evaluate(t, pose_pub, str(loc_state.state), nav_runtime, nav_cmd) + + grid_now = nav_runtime.grid + nav_info = { + "mode": mode_now, + "goal": [float(nav_goal_xy[0]), float(nav_goal_xy[1])] if nav_goal_xy is not None else None, + "path_points": int(len(nav_path_world)), + "path_preview": ( + [[float(x), float(y)] for (x, y) in nav_path_world[:: max(1, len(nav_path_world) // 60)]] + if len(nav_path_world) > 0 + else [] + ), + "cmd": dict(safety_info.get("cmd", nav_cmd)), + "mission": mission_snapshot, + "costmap": ( + { + "shape": [int(grid_now["shape_hw"][0]), int(grid_now["shape_hw"][1])], + "resolution_m": float(grid_now["resolution_m"]), + "origin_xy": [float(grid_now["origin_xy"][0]), float(grid_now["origin_xy"][1])], + "static_cells": int(grid_now["static_cells"]), + "dynamic_cells": int(grid_now["dynamic_cells"]), + "inflated_cells": int(grid_now["inflated_cells"]), + } + if isinstance(grid_now, dict) + else nav_runtime_info + ), + } + + stable_count = 0 if stable_pts_pub is None else int(len(stable_pts_pub)) + _update_perf_rollup(t, stable_count) + perf_payload = { + "input_fps": float(perf_input_fps), + "publish_fps": float(perf_publish_fps), + "icp_ms": float(perf_icp_ms), + "queue_lag": int(perf_queue_lag), + "stable_growth_per_sec": float(perf_stable_growth), + "cpu_percent": float(perf_cpu_pct), + } + + payload = { + "stable_points": stable_pts_pub, + "stable_colors": stable_cols, + "pose": pose_pub, + "filter": filt.stats() if hasattr(filt, "stats") else {}, + "workflow_profile": str(stability_profile), + "map_lock": { + "enabled": bool(map_lock_enabled), + "accept_count": int(map_lock_accept_count), + "reject_count": int(map_lock_reject_count), + "rotating_in_place": bool(rotating_in_place) if mapping_enabled else False, + "freeze_active": bool(rotate_freeze_active) if mapping_enabled else False, + "freeze_count": int(rotate_freeze_count), + "last": dict(map_lock_info) if isinstance(map_lock_info, dict) else {}, + }, + "continuity": { + "enabled": bool(continuity_enabled), + "reject_count": int(continuity_reject_count), + "reject_streak": int(continuity_consecutive_rejects), + "recover_after_rejects": int(continuity_recover_after_rejects), + "last": dict(continuity_info) if isinstance(continuity_info, dict) else {}, + }, + "submap": dict(submap_info) if isinstance(submap_info, dict) else {}, + "ref_match_points": ref_match_points_pub, + "ref_match_colors": ref_match_colors_pub, + "ref_match": dict(ref_match_stats) if isinstance(ref_match_stats, dict) else {}, + "cleanup": { + "enabled": bool(cleanup_enabled), + "removed_total": int(cleanup_removed_total), + "last": dict(cleanup_info) if isinstance(cleanup_info, dict) else {}, + }, + "localized": bool(slam_to_ref_valid), + "loc_state": str(loc_state.state), + "loc_confidence": float(last_localize_confidence), + "fusion": fusion_info, + "perf": perf_payload, + "mode": str(worker_mode), + "nav": nav_info, + "safety": safety_info, + "recording": { + "enabled": bool(recording_enabled), + "frames": int(len(recording_frames)), + "dropped": int(recording_drop_count), + }, + } + perf_publish_count += 1 + _safe_put(data_q, ("FRAME", payload), keep_latest=bool(run_cfg.frame_keep_latest)) + + # ---------------- lidar callback (lightweight) ---------------- + # Keep SDK callback minimal: enqueue latest frame and process in worker loop. + # ---------------- IMU orientation integrator ---------------- + # Complementary filter: gyro integrates at full 200 Hz; accelerometer + # corrects roll/pitch drift at a low gain (alpha ≈ 0.97). + # Yaw is gyro-only (no magnetometer) — drifts slowly, but far less than + # KISS-ICP yaw on fast rotations. + # Only used when fusion.enabled = true in config. + + class _ImuIntegrator: + __slots__ = ("R", "last_t", "alpha", "last_pose_translation") + + def __init__(self, alpha: float = 0.97) -> None: + self.R = np.eye(3, dtype=np.float64) + self.last_t: float = 0.0 + self.alpha = float(np.clip(alpha, 0.80, 0.999)) + self.last_pose_translation = np.zeros(3, dtype=np.float64) + + def reset(self) -> None: + self.R = np.eye(3, dtype=np.float64) + self.last_t = 0.0 + self.last_pose_translation[:] = 0.0 + + def update(self, gyro: np.ndarray, acc: np.ndarray, t: float) -> np.ndarray: + """Returns a 4×4 pose. Translation comes from last known LiDAR pose.""" + if self.last_t <= 0.0: + self.last_t = t + return np.eye(4, dtype=np.float64) + dt = float(t - self.last_t) + if dt <= 0.0 or dt > 0.5: + self.last_t = t + return np.eye(4, dtype=np.float64) + self.last_t = t + + # 1 — Gyro integration via Rodrigues + omega = np.asarray(gyro, dtype=np.float64) + angle = float(np.linalg.norm(omega)) * dt + if angle > 1e-9: + axis = omega / (float(np.linalg.norm(omega)) + 1e-15) + K = np.array([[0.0, -axis[2], axis[1]], + [axis[2], 0.0, -axis[0]], + [-axis[1], axis[0], 0.0]], dtype=np.float64) + dR = np.eye(3, dtype=np.float64) + np.sin(angle) * K + (1.0 - np.cos(angle)) * (K @ K) + self.R = self.R @ dR + + # 2 — Accelerometer correction for roll/pitch (complementary filter) + a = np.asarray(acc, dtype=np.float64) + a_norm = float(np.linalg.norm(a)) + if 7.5 < a_norm < 12.5: # only trust near 1 g; reject dynamic spikes + a_unit = a / a_norm + g_in_sensor = self.R.T @ np.array([0.0, 0.0, -1.0]) # expected gravity direction + cross = np.cross(a_unit, g_in_sensor) + cross_norm = float(np.linalg.norm(cross)) + if cross_norm > 1e-6: + corr_angle = float(np.arcsin(np.clip(cross_norm, -1.0, 1.0))) * (1.0 - self.alpha) + axis_c = cross / cross_norm + Kc = np.array([[0.0, -axis_c[2], axis_c[1]], + [axis_c[2], 0.0, -axis_c[0]], + [-axis_c[1], axis_c[0], 0.0]], dtype=np.float64) + dR_c = np.eye(3, dtype=np.float64) + np.sin(corr_angle) * Kc + (1.0 - np.cos(corr_angle)) * (Kc @ Kc) + self.R = dR_c @ self.R + + # Re-orthogonalise to prevent numerical drift + try: + U, _, Vt = np.linalg.svd(self.R, full_matrices=False) + self.R = U @ Vt + except np.linalg.LinAlgError: + self.R = np.eye(3, dtype=np.float64) + + T = np.eye(4, dtype=np.float64) + T[:3, :3] = self.R + T[:3, 3] = self.last_pose_translation # inject LiDAR translation so fusion doesn't shift position + return T + + _imu_integrator = _ImuIntegrator(alpha=float( + ((full_cfg.get("fusion", {}) or {}).get("imu_complementary_alpha", 0.97)) + )) + + def on_imu(gyro: np.ndarray, acc: np.ndarray, timestamp: float) -> None: + if not fusion_cfg.enabled: + return + try: + # Keep the integrator's translation in sync with the latest LiDAR pose + with state_lock: + cur_tf = np.array(odom_to_map_transform, dtype=np.float64, copy=True) + _imu_integrator.last_pose_translation = cur_tf[:3, 3].copy() + imu_pose = _imu_integrator.update(gyro, acc, timestamp) + sensor_fusion.update_prior( + sensor="imu", + pose=imu_pose, + confidence=0.85, + timestamp=timestamp, + ) + except Exception as _imu_exc: + pass # IMU is advisory; never let it crash the worker + + # This avoids running heavy ICP/Open3D inside the Livox SDK thread. + def on_points(points: np.ndarray): + if points is None or len(points) == 0: + return + try: + pts = np.asarray(points, dtype=np.float32) + if pts.ndim != 2 or pts.shape[1] != 3: + return + except Exception: + return + _safe_put(raw_points_q, np.array(pts, dtype=np.float32, copy=True), keep_latest=True) + + # ---------------- commands ---------------- + def do_connect(): + nonlocal lidar, connected + if connected: + st("INFO", "Already connected.") + return + + cfg_path = Path(eng_cfg.config_file) + if not cfg_path.exists(): + st("ERROR", f"Config missing: {cfg_path}") + return + + try: + lidar = Livox2( + str(cfg_path), + host_ip=str(eng_cfg.host_ip), + debug=bool(livox_debug_enabled), + print_every_n_frames=int(livox_print_every_n), + tag_filter=bool(getattr(eng_cfg, "tag_filter", True)), + ) + lidar.handle_points = on_points + lidar.handle_imu = on_imu + connected = True + st("INFO", f"CONNECTED to Livox (host_ip={eng_cfg.host_ip})") + except Exception as e: + connected = False + err = str(e) + up = err.upper() + if ("SDKINIT" in up) or ("BIND" in up) or ("SOCKET" in up) or ("ADDRESS ALREADY IN USE" in up): + err = ( + f"{err}\n" + "Hint: likely UDP port conflict or wrong host IP.\n" + "1) Close other Livox/SLAM apps using ports 56101-56501.\n" + "2) Ensure GUI host IP matches this PC NIC on LiDAR network.\n" + "3) Verify mid360_config.json host_net_info *_ip and *_port values." + ) + st("ERROR", f"Connect failed: {err}") + + def do_start(): + nonlocal mapping_enabled, localize_only_enabled, worker_mode + nonlocal last_guard_pose, last_guard_t, guard_reject_count + nonlocal continuity_prev_pts, continuity_reject_count, continuity_consecutive_rejects, continuity_last_warn_t + nonlocal rotate_freeze_count, rotate_last_warn_t + nonlocal cleanup_last_t, cleanup_last_info + nonlocal last_frame_t, loc_live_stack, latest_live_localize_pts + if not connected: + st("ERROR", "START denied: not connected.") + return + if self_check_report.get("errors"): + st("ERROR", "START denied: startup self-check has errors. Fix config paths first.") + return + mapping_enabled = True + localize_only_enabled = False + last_frame_t = 0.0 + loc_live_stack.clear() + latest_live_localize_pts = None + last_guard_pose = None + last_guard_t = 0.0 + guard_reject_count = 0 + continuity_prev_pts = None + continuity_reject_count = 0 + continuity_consecutive_rejects = 0 + continuity_last_warn_t = 0.0 + rotate_freeze_count = 0 + rotate_last_warn_t = 0.0 + cleanup_last_t = 0.0 + cleanup_last_info = {"status": "na"} + if not _submap_profile_allowed(): + submap_mapper.reset() + worker_mode = "MAPPING" + st("INFO", "MAPPING STARTED.") + push_worker_mode() + + def do_start_localize_only(): + nonlocal mapping_enabled, localize_only_enabled, worker_mode, last_localize_t, last_localize_confidence + nonlocal last_key_pose, last_guard_pose, last_guard_t, guard_reject_count, last_frame_t + nonlocal odom_to_map_transform, continuity_prev_pts, continuity_consecutive_rejects + nonlocal continuity_reject_count, rotate_freeze_count, loc_live_stack + nonlocal slam_to_ref_valid, latest_live_localize_pts + if not connected: + st("ERROR", "LOCALIZE_ONLY denied: not connected.") + return + if not ref_map_path: + st("ERROR", "LOCALIZE_ONLY denied: load reference map first.") + return + # Start localize-only from a fresh odometry frame to avoid stale-map offsets. + init_slam_stack() + mapping_enabled = False + localize_only_enabled = True + last_frame_t = 0.0 + loc_frames.reset() + _sync_loc_vars_from_service() + last_key_pose = None + last_guard_pose = None + last_guard_t = 0.0 + guard_reject_count = 0 + continuity_prev_pts = None + continuity_consecutive_rejects = 0 + continuity_reject_count = 0 + rotate_freeze_count = 0 + loc_live_stack.clear() + latest_live_localize_pts = None + submap_mapper.reset() + worker_mode = "LOCALIZE_ONLY" + last_localize_t = 0.0 + st("INFO", "LOCALIZE_ONLY STARTED.") + push_worker_mode() + + def do_pause(): + nonlocal mapping_enabled, localize_only_enabled, worker_mode + nonlocal loc_live_stack, latest_live_localize_pts + mapping_enabled = False + localize_only_enabled = False + loc_live_stack.clear() + latest_live_localize_pts = None + worker_mode = "PAUSED" + st("INFO", "MAPPING PAUSED.") + push_worker_mode() + + def do_stop(): + nonlocal mapping_enabled, localize_only_enabled, worker_mode + nonlocal loc_live_stack, latest_live_localize_pts + mapping_enabled = False + localize_only_enabled = False + loc_live_stack.clear() + latest_live_localize_pts = None + worker_mode = "STOPPED" + st("INFO", "MAPPING STOPPED.") + push_worker_mode() + + def do_export(filename_base: str): + try: + # Final cleanup pass: flush any stray islands that arrived since the last + # periodic cleanup (which runs every cleanup_period_sec seconds). + if cleanup_enabled: + full_pts = stable.get_points() + if full_pts is not None and len(full_pts) >= int(cleanup_min_total_points): + cleaned, _ = cleanup_map_islands(full_pts) + if cleaned is not None and len(cleaned) >= int(map_cfg.min_points_to_save): + stable.set_points(cleaned) + pts = stable.get_save_points() + n = 0 if pts is None else len(pts) + req = int(map_cfg.min_points_to_save) + if pts is None or n < req: + st("ERROR", f"EXPORT refused: stable points {n}/{req}. Keep mapping and try again.") + return + out_path = stable.export_map(filename_base) + st("INFO", f"SAVED: {out_path}") + except Exception as e: + st("ERROR", f"EXPORT failed: {e}") + + def do_export_nav(filename_base: str): + try: + pts = stable.get_save_points() + n_total = 0 if pts is None else len(pts) + req = int(nav_cfg.min_points) + if pts is None or n_total < req: + st("ERROR", f"EXPORT_NAV refused: stable points {n_total}/{req}.") + return + n_band = int(nav_exporter.count_nav_points(pts)) + if n_band < req: + st( + "ERROR", + ( + "EXPORT_NAV refused: nav-band points " + f"{n_band}/{req} in z[{float(nav_cfg.z_min_m):.2f}, {float(nav_cfg.z_max_m):.2f}] m." + ), + ) + return + result = nav_exporter.export(filename_base, pts) + st("INFO", {"NAV_EXPORTED": result}) + except Exception as e: + st("ERROR", f"EXPORT_NAV failed: {e}") + + def do_load_ref(path_value: str): + nonlocal ref_map_path, ref_pcd_cache, ref_points_cache, ref_nav_points_cache, ref_nav_cache_src_n, ref_cache_path + nonlocal last_localize_t, last_localize_points, last_localize_transform, last_localize_confidence + nonlocal slam_to_ref_transform, slam_to_ref_valid + nonlocal approx_pose_guess_tf, approx_pose_guess_until_t + nonlocal approx_pose_guess_fail_count, approx_pose_guess_success_count + nonlocal ref_match_points_cache, ref_match_confirm_hits, ref_match_last_pub_t, ref_match_last_stats + nonlocal loc_live_stack, last_frame_t, latest_live_localize_pts + ref_map_path = str(path_value) + ref_pcd_cache = None + ref_points_cache = None + ref_nav_points_cache = None + ref_nav_cache_src_n = 0 + ref_cache_path = None + ref_match_points_cache = None + ref_match_confirm_hits = None + ref_match_last_pub_t = 0.0 + ref_match_last_stats = {} + place_recog.reset() + last_frame_t = 0.0 + loc_live_stack.clear() + latest_live_localize_pts = None + submap_mapper.reset() + last_localize_t = 0.0 + last_localize_points = 0 + loc_frames.reset_reference() + _sync_loc_vars_from_service() + approx_pose_guess_tf = None + approx_pose_guess_until_t = 0.0 + approx_pose_guess_fail_count = 0 + approx_pose_guess_success_count = 0 + loc_state.reset() + st("INFO", f"REF loaded: {Path(ref_map_path).name}") + st("INFO", {"PLACE_RECOG": place_recog.snapshot()}) + prior_tf = session_store.get_transform(ref_map_path) + if prior_tf is not None: + loc_frames.last_alignment = np.array(prior_tf, dtype=np.float64, copy=True) + _sync_loc_vars_from_service() + st("INFO", {"SESSION": {"prior_loaded": True, "ref": Path(ref_map_path).name}}) + # In map-localization workflows we wait for fresh live scans after START, + # instead of trying to localize immediately from stale/non-live points. + if mapping_enabled and (not localize_only_enabled): + do_localize(force=False, source="ON_LOAD") + push_loc_state() + + def do_manual_localize(): + src_live = latest_live_localize_pts if localize_only_enabled else None + if localize_only_enabled and (src_live is None or int(len(src_live)) < 80): + st("INFO", "LOCALIZE: waiting for live scan...") + return + do_localize(force=True, source="MANUAL", src_override=src_live) + + def do_load_for_extend(path_value: str): + """Load a saved .ply AND seed the stable map + filter so the next + START extends the loaded map instead of building one from scratch. + + Implementation: + 1. Reuses do_load_ref() so localization can still anchor to the + loaded map's frame. + 2. Reads the .ply into numpy via open3d. + 3. Seeds stable.set_points(...) so the GUI shows the loaded map + immediately. + 4. Seeds the persistence filter with hit_count = current threshold + so the loaded points count as "already stable" — incoming + scans add to them rather than re-build them. + """ + if not str(path_value): + st("ERROR", "EXTEND denied: no path provided.") + return + do_load_ref(str(path_value)) + try: + import open3d as o3d # local import — open3d is heavy + pcd = o3d.io.read_point_cloud(str(path_value)) + pts = np.asarray(pcd.points, dtype=np.float32) + except Exception as e: + st("ERROR", f"EXTEND load failed: {e}") + return + if pts is None or len(pts) == 0: + st("ERROR", "EXTEND denied: loaded file has no points.") + return + try: + stable.set_points(pts) + if hasattr(filt, "seed_stable_points"): + filt.seed_stable_points( + pts, + now=_now(), + hit_count=int(runtime_filter_hit_threshold), + clear_existing=True, + ) + except Exception as e: + st("WARN", f"EXTEND seed partial failure: {e}") + st("INFO", {"EXTEND_LOAD": {"path": str(path_value), "points": int(len(pts))}}) + + def do_clear_ref(): + nonlocal ref_map_path, ref_pcd_cache, ref_points_cache, ref_nav_points_cache, ref_nav_cache_src_n, ref_cache_path + nonlocal last_localize_t, last_localize_points, last_localize_transform, last_localize_confidence + nonlocal slam_to_ref_transform, slam_to_ref_valid + nonlocal localize_only_enabled, worker_mode + nonlocal approx_pose_guess_tf, approx_pose_guess_until_t + nonlocal approx_pose_guess_fail_count, approx_pose_guess_success_count + nonlocal ref_match_points_cache, ref_match_confirm_hits, ref_match_last_pub_t, ref_match_last_stats + nonlocal loc_live_stack, last_frame_t, latest_live_localize_pts + ref_map_path = None + ref_pcd_cache = None + ref_points_cache = None + ref_nav_points_cache = None + ref_nav_cache_src_n = 0 + ref_cache_path = None + ref_match_points_cache = None + ref_match_confirm_hits = None + ref_match_last_pub_t = 0.0 + ref_match_last_stats = {} + place_recog.reset() + last_frame_t = 0.0 + loc_live_stack.clear() + latest_live_localize_pts = None + submap_mapper.reset() + last_localize_t = 0.0 + last_localize_points = 0 + loc_frames.reset_reference() + _sync_loc_vars_from_service() + approx_pose_guess_tf = None + approx_pose_guess_until_t = 0.0 + approx_pose_guess_fail_count = 0 + approx_pose_guess_success_count = 0 + localize_only_enabled = False + if not mapping_enabled: + worker_mode = "IDLE" + loc_state.reset() + st("INFO", "REF cleared.") + push_worker_mode() + push_loc_state() + + st("INFO", "Worker ready. CONNECT then START.") + st("INFO", {"SELF_CHECK": self_check_report, "source": "worker"}) + apply_density_mode("MEDIUM") + apply_stability_profile("BALANCED") + apply_min_stable_points(map_cfg.min_points_to_save) + apply_loop_closure_mode(loop_cfg.enabled) + apply_loc_state_machine_mode(loc_state_cfg.enabled) + apply_submap_mode( + { + "enabled": submap_mode_enabled, + "local_window_frames": submap_cfg.local_window_frames, + "local_voxel_m": submap_cfg.local_voxel_m, + "global_voxel_m": submap_cfg.global_voxel_m, + "merge_period_sec": submap_cfg.merge_period_sec, + "merge_min_translation_m": submap_cfg.merge_min_translation_m, + "merge_min_rotation_deg": submap_cfg.merge_min_rotation_deg, + "max_global_points": submap_cfg.max_global_points, + "display_max_points": submap_cfg.display_max_points, + "apply_profiles": list(submap_cfg.apply_profiles), + "keep_points": False, + } + ) + apply_autosave( + { + "enabled": autosave_enabled, + "interval_sec": autosave_interval_sec, + "base_name": autosave_base_name, + } + ) + apply_nav_config( + { + "min_points": nav_cfg.min_points, + "resolution_m": nav_cfg.resolution_m, + "z_min_m": nav_cfg.z_min_m, + "z_max_m": nav_cfg.z_max_m, + "inflation_radius_m": nav_cfg.inflation_radius_m, + "padding_m": nav_cfg.padding_m, + } + ) + apply_map_quality_config( + { + "enabled": map_quality_cfg.enabled, + "near_min_range_m": map_quality_cfg.near_min_range_m, + "ray_consistency_enabled": map_quality_cfg.ray_consistency_enabled, + "ray_bin_deg": map_quality_cfg.ray_bin_deg, + "ray_elev_bin_deg": map_quality_cfg.ray_elev_bin_deg, + "ray_max_behind_m": map_quality_cfg.ray_max_behind_m, + "ray_keep_n": map_quality_cfg.ray_keep_n, + "world_z_clip_enabled": map_quality_cfg.world_z_clip_enabled, + "world_z_min_m": map_quality_cfg.world_z_min_m, + "world_z_max_m": map_quality_cfg.world_z_max_m, + "outlier_filter_enabled": map_quality_cfg.outlier_filter_enabled, + "outlier_voxel_m": map_quality_cfg.outlier_voxel_m, + "outlier_min_points": map_quality_cfg.outlier_min_points, + } + ) + apply_nav_runtime_config( + { + "enabled": nav_rt_cfg.enabled, + "resolution_m": nav_rt_cfg.resolution_m, + "z_min_m": nav_rt_cfg.z_min_m, + "z_max_m": nav_rt_cfg.z_max_m, + "padding_m": nav_rt_cfg.padding_m, + "inflation_radius_m": nav_rt_cfg.inflation_radius_m, + "dynamic_decay_sec": nav_rt_cfg.dynamic_decay_sec, + "dynamic_min_hits": nav_rt_cfg.dynamic_min_hits, + "blocked_cost": nav_rt_cfg.blocked_cost, + } + ) + st("INFO", {"MISSION": mission.snapshot()}) + push_loc_state() + push_worker_mode() + + while running: + try: + cmd = None + try: + cmd = cmd_q.get(timeout=0.02) + except queue.Empty: + cmd = None + + if cmd: + if isinstance(cmd, tuple): + name = str(cmd[0]).upper().strip() + payload = cmd[1] if len(cmd) > 1 else None + else: + name = str(cmd).upper().strip() + payload = None + + if name == "CONNECT": + _run_locked(do_connect) + elif name == "START": + _run_locked(do_start) + elif name == "START_LOCALIZE_ONLY": + _run_locked(do_start_localize_only) + elif name == "STOP_LOCALIZE_ONLY": + _run_locked(do_stop) + elif name == "PAUSE": + _run_locked(do_pause) + elif name == "STOP": + _run_locked(do_stop) + elif name == "RESET": + _run_locked(reset_all) + elif name == "EXPORT": + _run_locked(do_export, str(payload or "map_robot")) + elif name == "EXPORT_NAV": + _run_locked(do_export_nav, str(payload or "map_robot")) + elif name == "LOAD_REF": + _run_locked(do_load_ref, str(payload)) + elif name == "LOAD_FOR_EXTEND": + _run_locked(do_load_for_extend, str(payload)) + elif name == "LOCALIZE": + _run_locked(do_manual_localize) + elif name == "CLEAR_REF": + _run_locked(do_clear_ref) + elif name == "SET_DENSITY": + _run_locked(apply_density_mode, str(payload or "MEDIUM")) + elif name == "SET_MIN_STABLE_POINTS": + _run_locked(apply_min_stable_points, payload) + elif name == "SET_LOOP_CLOSURE": + _run_locked(apply_loop_closure_mode, payload) + elif name == "SET_LOC_STATE_MACHINE": + _run_locked(apply_loc_state_machine_mode, payload) + elif name == "SET_SUBMAP_MODE": + _run_locked(apply_submap_mode, payload) + elif name == "SET_APPROX_POSE": + _run_locked(apply_approx_pose, payload if isinstance(payload, dict) else None) + elif name == "CLEAR_APPROX_POSE": + _run_locked(apply_approx_pose, None) + elif name == "SET_AUTOSAVE": + _run_locked(apply_autosave, payload if isinstance(payload, dict) else {}) + elif name == "SET_NAV_CONFIG": + _run_locked(apply_nav_config, payload if isinstance(payload, dict) else {}) + elif name == "SET_NAV_RUNTIME": + _run_locked(apply_nav_runtime_config, payload if isinstance(payload, dict) else {}) + elif name == "SET_NAV_GOAL": + _run_locked(apply_nav_goal, payload if isinstance(payload, dict) else {}) + elif name == "CLEAR_NAV_GOAL": + _run_locked(clear_nav_goal) + elif name == "SET_MAP_QUALITY": + _run_locked(apply_map_quality_config, payload if isinstance(payload, dict) else {}) + elif name == "SET_FILTER_TUNING": + _run_locked(apply_filter_tuning, payload if isinstance(payload, dict) else {}) + elif name == "SET_STABILITY_PROFILE": + _run_locked(apply_stability_profile, payload) + elif name == "RECORD_START": + _run_locked(record_start, payload if isinstance(payload, dict) else {}) + elif name == "RECORD_STOP": + _run_locked(record_stop, payload if isinstance(payload, dict) else {}) + elif name == "MISSION_START": + _run_locked(mission_start, payload if isinstance(payload, dict) else {}) + elif name == "MISSION_PAUSE": + _run_locked(mission_pause) + elif name == "MISSION_RESUME": + _run_locked(mission_resume) + elif name == "MISSION_STOP": + _run_locked(mission_stop) + elif name == "SENSOR_PRIOR": + if isinstance(payload, dict): + def _apply_sensor_prior(): + ok = sensor_fusion.update_prior( + sensor=str(payload.get("sensor", "unknown")), + pose=payload.get("pose"), + confidence=float(payload.get("confidence", 1.0)), + timestamp=float(payload.get("timestamp", _now())), + ) + if not ok: + st("WARN", "SENSOR_PRIOR ignored: invalid payload.") + _run_locked(_apply_sensor_prior) + else: + st("WARN", "SENSOR_PRIOR ignored: payload must be dict.") + elif name == "SHUTDOWN": + running = False + else: + st("WARN", f"Unknown command: {name}") + + latest_pts = None + try: + while True: + latest_pts = raw_points_q.get_nowait() + except queue.Empty: + pass + + if latest_pts is not None: + _run_locked(process_points, latest_pts) + + except KeyboardInterrupt: + break + except Exception as e: + if diagnostics is not None: + diagnostics.log_exception("Worker loop error", e, _worker_diag_state()) + st("ERROR", f"Loop error: {e}\n{traceback.format_exc()}") + + try: + if lidar is not None and hasattr(lidar, "shutdown"): + lidar.shutdown() + except Exception: + pass + + try: + if recording_enabled and len(recording_frames) > 0: + record_stop({"save": True, "base_name": recording_base_name}) + except Exception: + pass + + try: + if diagnostics is not None: + diagnostics.close() + except Exception: + pass + + st("INFO", "Worker shutdown.") diff --git a/Lidar/.bak-before-prod-sync/livox2_python.py b/Lidar/.bak-before-prod-sync/livox2_python.py new file mode 100644 index 0000000..4a809c2 --- /dev/null +++ b/Lidar/.bak-before-prod-sync/livox2_python.py @@ -0,0 +1,367 @@ +"""Wrapper for Livox-SDK **2** (push-mode, no broadcast). + +Tested against Livox-SDK2 1.2.x – build it first: + + git clone https://github.com/Livox-SDK/Livox-SDK2.git + cd Livox-SDK2 && mkdir build && cd build + cmake .. -DCMAKE_BUILD_TYPE=Release && make -j$(nproc) + sudo make install # installs liblivox_lidar_sdk.so → /usr/local/lib + +Create a JSON config (see livox_lidar_quick_start/mid360_config.json) that +points the LiDAR to *your* host-IP (192.168.123.222) and save it e.g. +as ``mid360_config.json`` in this repo. Pass that path to ``Livox2``. +""" + +from __future__ import annotations + +import ctypes as _C +import json +import os +import sys +import threading +import time +from ctypes import ( + POINTER, + c_char_p, + c_uint8, + c_uint16, + c_uint32, + c_float, + c_bool, +) +from pathlib import Path +from typing import Optional + +import numpy as np + +# ---------------- dynamic library ------------------------------------------------ + + +def _load_lib(): + for name in ( + "liblivox_lidar_sdk_shared.so", + "liblivox_lidar_sdk.so", + "livox_lidar_sdk.dll", # Windows + ): + try: + return _C.cdll.LoadLibrary(name) + except OSError: + continue + raise OSError( + "liblivox_lidar_sdk shared library not found. Build & install " + "Livox-SDK2 first (see wrapper docstring)." + ) + + +_lib = _load_lib() + +# ---------------- ctypes mapping -------------------------------------------------- + + +class _LivoxLidarEthernetPacket(_C.Structure): + _pack_ = 1 + _fields_ = [ + ("version", c_uint8), + ("length", c_uint16), + ("time_interval", c_uint16), + ("dot_num", c_uint16), + ("udp_cnt", c_uint16), + ("frame_cnt", c_uint8), + ("data_type", c_uint8), + ("time_type", c_uint8), + ("rsvd", c_uint8 * 12), + ("crc32", c_uint32), + ("timestamp", c_uint8 * 8), + ("data", c_uint8 * 1), + ] + + +class _ImuRawPoint(_C.Structure): + """MID-360 IMU sample (data_type == 0). 200 Hz, 6-DOF BMI088.""" + _pack_ = 1 + _fields_ = [ + ("gyro_x", c_float), # rad/s + ("gyro_y", c_float), + ("gyro_z", c_float), + ("acc_x", c_float), # m/s² + ("acc_y", c_float), + ("acc_z", c_float), + ] + + +class _CartesianHighPoint(_C.Structure): + _pack_ = 1 + _fields_ = [ + ("x", _C.c_int32), + ("y", _C.c_int32), + ("z", _C.c_int32), + ("reflectivity", c_uint8), + ("tag", c_uint8), + ] + + +# Callback typedef +_PointCb = _C.CFUNCTYPE(None, c_uint32, c_uint8, POINTER(_LivoxLidarEthernetPacket), _C.c_void_p) + +# Info change callback +class _LivoxLidarInfo(_C.Structure): + _fields_ = [ + ("dev_type", c_uint8), + ("sn", _C.c_char * 16), + ("lidar_ip", _C.c_char * 16), + ] + + +_InfoChangeCb = _C.CFUNCTYPE(None, c_uint32, POINTER(_LivoxLidarInfo), _C.c_void_p) + +# --------------------------------------------------------------------------- +# Additional API we use for push-mode +# --------------------------------------------------------------------------- + + +_lib.SetLivoxLidarInfoChangeCallback.argtypes = (_InfoChangeCb, _C.c_void_p) + +_lib.SetLivoxLidarWorkMode.argtypes = (c_uint32, c_uint8, _C.c_void_p, _C.c_void_p) +_lib.SetLivoxLidarWorkMode.restype = c_uint32 + +_lib.EnableLivoxLidarPointSend.argtypes = (c_uint32, _C.c_void_p, _C.c_void_p) +_lib.EnableLivoxLidarPointSend.restype = c_uint32 + +_lib.SetLivoxLidarPclDataType.argtypes = (c_uint32, c_uint8, _C.c_void_p, _C.c_void_p) + +# Point-cloud observer (interface side; lets SDK join multicast) +_lib.LivoxLidarAddPointCloudObserver.argtypes = (_PointCb, _C.c_void_p) +_lib.LivoxLidarAddPointCloudObserver.restype = c_uint16 + +# ---------------- function prototypes ------------------------------------------- + + +_lib.LivoxLidarSdkInit.argtypes = (c_char_p, c_char_p, _C.c_void_p) +_lib.LivoxLidarSdkInit.restype = c_bool + +_lib.LivoxLidarSdkStart.argtypes = () +_lib.LivoxLidarSdkStart.restype = c_bool + +_lib.LivoxLidarSdkUninit.argtypes = () +_lib.LivoxLidarSdkUninit.restype = None + +_lib.SetLivoxLidarPointCloudCallBack.argtypes = (_PointCb, _C.c_void_p) + +# ---------------- Pythonic wrapper ---------------------------------------------- + + +class Livox2: + """Minimal wrapper around Livox-SDK2 push-mode pipeline.""" + + def __init__(self, config_path: str | Path, host_ip: str, + *, frame_time: float = 0.20, frame_packets: int = 120, + debug: bool = True, print_every_n_frames: int = 1, + tag_filter: bool = True): + self._config_path = os.fspath(config_path).encode() + self._tag_filter = bool(tag_filter) + + if not _lib.LivoxLidarSdkInit(self._config_path, host_ip.encode(), None): + raise RuntimeError("LivoxLidarSdkInit failed – check config path & JSON") + + # Register callback *before* starting threads (matches vendor sample) + self._cb = _PointCb(self._on_packet) + _lib.SetLivoxLidarPointCloudCallBack(self._cb, None) + + # start SDK threads + _lib.LivoxLidarSdkStart() + + # Register info-change callback to learn lidar handle once, then start it. + self._info_cb = _InfoChangeCb(self._on_info_change) + _lib.SetLivoxLidarInfoChangeCallback(self._info_cb, None) + + self._running = True + + # Aggregation parameters for pseudo-frames + self._frame_time = float(frame_time) + self._frame_packets = int(frame_packets) + self._debug = bool(debug) + self._print_every_n_frames = max(1, int(print_every_n_frames)) + self._frame_print_counter = 0 + self._frame_state: dict = {} + self._frame_lock = threading.Lock() + + # ------------------------------------------------------------------ + def spin(self): + try: + while self._running: + time.sleep(0.01) + except KeyboardInterrupt: + pass + finally: + self.shutdown() + + def shutdown(self): + if self._running: + _lib.LivoxLidarSdkUninit() + self._running = False + + # ------------------------------------------------------------------ + def handle_points(self, xyz: np.ndarray): # noqa: D401 + if self._debug: + print(f"frame {len(xyz)} pts") + + def handle_imu(self, gyro: np.ndarray, acc: np.ndarray, timestamp: float) -> None: # noqa: D401 + """Override to receive IMU data. + + Parameters + ---------- + gyro : (3,) float32 – angular velocity in rad/s (x, y, z) + acc : (3,) float32 – linear acceleration in m/s² (x, y, z) + timestamp : float – time.time() when packet was received + """ + + # ------------------------------------------------------------------ + def _on_packet(self, handle: int, dev_type: int, pkt_ptr, _client): + pkt = pkt_ptr.contents + n = pkt.dot_num + if n == 0: + return + + if pkt.data_type == 0: # IMU samples (200 Hz, BMI088) + _ArrI = _ImuRawPoint * n + samples = _C.cast(pkt.data, POINTER(_ArrI)).contents + arr = np.ctypeslib.as_array(samples) + # Average all samples in the packet (typically 1–5 at 200 Hz) + gyro = np.array( + [arr["gyro_x"].mean(), arr["gyro_y"].mean(), arr["gyro_z"].mean()], + dtype=np.float32, + ) + acc = np.array( + [arr["acc_x"].mean(), arr["acc_y"].mean(), arr["acc_z"].mean()], + dtype=np.float32, + ) + try: + self.handle_imu(gyro, acc, time.time()) + except Exception as exc: + print(f"[Livox2] Exception in handle_imu: {exc}", file=sys.stderr) + return + + if pkt.data_type == 1: # Cartesian High + _Arr = _CartesianHighPoint * n + points = _C.cast(pkt.data, POINTER(_Arr)).contents + arr = np.ctypeslib.as_array(points) + xyz = np.stack((arr["x"], arr["y"], arr["z"]), axis=1).astype(np.float32) / 1000.0 + elif pkt.data_type == 2: # Cartesian Low (int16, cm) + class _LowPoint(_C.Structure): + _fields_ = [ + ("x", _C.c_int16), + ("y", _C.c_int16), + ("z", _C.c_int16), + ("reflectivity", c_uint8), + ("tag", c_uint8), + ] + + _ArrL = _LowPoint * n + pts = _C.cast(pkt.data, POINTER(_ArrL)).contents + arr = np.ctypeslib.as_array(pts) + xyz = np.stack((arr["x"], arr["y"], arr["z"]), axis=1).astype(np.float32) / 100.0 + else: + return + + # Per Unitree G1 lidar guide: tags 1..15 mark low-confidence / noise points + # (range or intensity flag bits set). Keep tag == 0 (clean) or tag >= 16 + # (multi-return etc.). Drops dust, drag points, glass interferers. + if self._tag_filter: + tag = np.asarray(arr["tag"]) + mask = (tag == 0) | (tag >= 16) + if not mask.all(): + xyz = xyz[mask] + if len(xyz) == 0: + return + + # -------------------------------------------------------------- + # Aggregate packets belonging to the same "frame" (full 360°) + # -------------------------------------------------------------- + # Each UDP packet contains only a tiny slice of a full scan – for the + # MID-360 that's merely 96 points. Feeding such sparse subsets into a + # SLAM backend like KISS-ICP is ineffective and typically produces an + # empty map. The packet header provides a monotonically increasing + # `frame_cnt` field which we can use to group packets that belong to + # the same rotation. We buffer points until the counter changes, then + # emit the *previous* frame in one batch via ``handle_points``. + # + # A small dictionary maps → current frame accumulator so + # that multi-lidar setups would still work (although untested). + # -------------------------------------------------------------- + + # ------------------------------------------------------------------ + # Aggregate packets for ~1 full rotation (≈50 ms @ 20 Hz) + # Lock only protects buffer state; handle_points is called outside. + # ------------------------------------------------------------------ + frame_xyz = None + elapsed = 0.0 + with self._frame_lock: + buf, last_t = self._frame_state.get(handle, ([], time.time())) + buf.append(xyz) + now = time.time() + elapsed = now - last_t + # Heuristic flush conditions: either 0.2 s have passed (≈4 full scans + # at 20 Hz) *or* we already gathered ≥ 120 packets (~12 k points). + if elapsed >= self._frame_time or len(buf) >= self._frame_packets: + frame_xyz = np.concatenate(buf, axis=0) + self._frame_state[handle] = ([], now) + else: + self._frame_state[handle] = (buf, last_t) + + if frame_xyz is not None: + self._frame_print_counter += 1 + if self._debug and (self._frame_print_counter % self._print_every_n_frames == 0): + print(f"[Livox2] frame {frame_xyz.shape[0]} pts (Δt={elapsed*1000:.1f} ms)") + try: + self.handle_points(frame_xyz) + except Exception as exc: + print("Exception in handle_points:", exc, file=sys.stderr) + + # ------------------------------------------------------------------ + def _on_info_change(self, handle: int, info_ptr, _client): + if self._debug: + print(f"[Livox2] InfoChange handle={handle}") + + # Set work mode to NORMAL (1) to begin emitting points. + kNormal = 1 + _lib.SetLivoxLidarWorkMode(handle, kNormal, None, None) + + # Ensure point-cloud sending is enabled + _lib.EnableLivoxLidarPointSend(handle, None, None) + + # Ensure data type is Cartesian High (1) + _lib.SetLivoxLidarPclDataType(handle, 1, None, None) + + +if __name__ == "__main__": + cfg = Path("mid360_config.json") + if not cfg.exists(): + # generate a bare-bones config for 192.168.123.222 + host_ip = os.environ.get("HOST_IP", "192.168.123.222") + data = { + "MID360": { + "lidar_net_info": { + "cmd_data_port": 56100, + "push_msg_port": 56200, + "point_data_port": 56300, + "imu_data_port": 56400, + "log_data_port": 56500, + }, + "host_net_info": [ + { + "host_ip": host_ip, + "multicast_ip": "224.1.1.5", + "cmd_data_port": 56101, + "push_msg_port": 56201, + "point_data_port": 56301, + "imu_data_port": 56401, + "log_data_port": 56501, + } + ], + } + } + cfg.write_text(json.dumps(data, indent=2)) + print("[Livox2] Wrote default mid360_config.json with host_ip", host_ip) + + lidar = Livox2(cfg, host_ip="192.168.123.222") + lidar.spin() diff --git a/Lidar/DataMap/SLAM_session_memory.json b/Lidar/DataMap/SLAM_session_memory.json new file mode 100644 index 0000000..385ae79 --- /dev/null +++ b/Lidar/DataMap/SLAM_session_memory.json @@ -0,0 +1,36 @@ +{ + "entries": { + "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Lidar/DataMap/Work.ply": { + "ref_map": "/home/zedx/Robotics_workspace/yslootahtech/G1_Lootah/Lidar/DataMap/Work.ply", + "timestamp": 1774532907.4036179, + "fitness": 0.9957550030321407, + "rmse": 0.23353287961998817, + "transform": [ + [ + 0.45460289796821224, + -0.8848542833763506, + -0.1018287893939065, + -1.9883602903057822 + ], + [ + 0.8887660711216834, + 0.4581630305179823, + -0.013472501234199874, + -0.6910650879555422 + ], + [ + 0.058575387167564615, + -0.08437733497275234, + 0.9947107063669648, + -0.21780082820430277 + ], + [ + 0.0, + 0.0, + 0.0, + 1.0 + ] + ] + } + } +} \ No newline at end of file diff --git a/Lidar/DataMap/Work26.ply b/Lidar/DataMap/Work26.ply new file mode 100644 index 0000000..7d914bc Binary files /dev/null and b/Lidar/DataMap/Work26.ply differ diff --git a/Lidar/DataMap/Work266.ply b/Lidar/DataMap/Work266.ply new file mode 100644 index 0000000..bcf2076 Binary files /dev/null and b/Lidar/DataMap/Work266.ply differ